[[bin]]
name = "stac-client"
path = "src/main.rs"
[dependencies.chrono]
features = ["serde"]
version = "0.4"
[dependencies.geo-types]
version = "0.7"
[dependencies.rand]
optional = true
version = "0.8"
[dependencies.reqwest]
features = ["json"]
version = "0.11"
[dependencies.serde]
features = ["derive"]
version = "1.0"
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "1.0"
[dependencies.tokio]
features = ["full"]
version = "1.0"
[dependencies.url]
version = "2.4"
[dev-dependencies.mockito]
version = "1.2"
[dev-dependencies.tempfile]
version = "3.10"
[dev-dependencies.tokio-test]
version = "0.4"
[[example]]
name = "authentication"
path = "examples/authentication.rs"
[[example]]
name = "basic"
path = "examples/basic.rs"
[[example]]
name = "download"
path = "examples/download.rs"
[[example]]
name = "resilience"
path = "examples/resilience.rs"
[features]
auth = []
default = []
pagination = []
resilience = ["rand"]
[lib]
name = "stac_client"
path = "src/lib.rs"
[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["web-programming::http-client", "api-bindings", "science"]
description = "A friendly, async client for the SpatioTemporal Asset Catalog (STAC) specification, written in Rust."
documentation = "https://docs.rs/stac-client"
edition = "2021"
homepage = "https://github.com/Wayfinder-Foundry/stac-client-rs"
keywords = ["stac", "geospatial", "client", "json", "api"]
license = "MIT OR Apache-2.0"
name = "stac-client"
readme = "README.md"
repository = "https://github.com/Wayfinder-Foundry/stac-client-rs"
version = "0.3.0"
[[test]]
name = "auth"
path = "tests/auth.rs"
[[test]]
name = "endpoints"
path = "tests/endpoints.rs"
[[test]]
name = "error_api"
path = "tests/error_api.rs"
[[test]]
name = "integration_search_get"
path = "tests/integration_search_get.rs"
[[test]]
name = "pagination"
path = "tests/pagination.rs"
[[test]]
name = "rate_limited"
path = "tests/rate_limited.rs"
[[test]]
name = "resilience"
path = "tests/resilience.rs"