[package]
edition = "2024"
rust-version = "1.90"
name = "data-gov-catalog"
version = "0.4.0"
authors = ["David Spadea"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Async client for the data.gov Catalog API (DCAT-US 3 search)"
homepage = "https://github.com/dspadea/data-gov-rs"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/dspadea/data-gov-rs"
[features]
default = ["native-tls"]
native-tls = ["reqwest/native-tls"]
rustls-tls = ["reqwest/rustls"]
[lib]
name = "data_gov_catalog"
path = "src/lib.rs"
[[test]]
name = "client_tests"
path = "tests/client_tests.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[dependencies.reqwest]
version = "0.13.2"
features = [
"json",
"query",
]
default-features = false
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "^1.0"
[dev-dependencies.tokio]
version = "1.48.0"
features = ["full"]
[dev-dependencies.wiremock]
version = "0.6"