[package]
edition = "2024"
rust-version = "1.85"
name = "desec"
version = "0.0.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "deSEC.io DNS API client library"
homepage = "https://github.com/desec-community/desec-rs"
readme = "README.md"
keywords = [
"dns",
"desec",
"dnssec",
]
categories = ["network-programming"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/desec-community/desec-rs"
resolver = "2"
[features]
default = ["rustls-tls"]
probes = []
rustls-tls = ["reqwest/rustls"]
[lib]
name = "desec"
path = "src/lib.rs"
[[test]]
name = "account"
path = "tests/account.rs"
[[test]]
name = "domains"
path = "tests/domains.rs"
[[test]]
name = "dyndns"
path = "tests/dyndns.rs"
[[test]]
name = "live"
path = "tests/live.rs"
[[test]]
name = "pagination"
path = "tests/pagination.rs"
[[test]]
name = "rrsets"
path = "tests/rrsets.rs"
[[test]]
name = "tokens"
path = "tests/tokens.rs"
[[test]]
name = "transport"
path = "tests/transport.rs"
[dependencies.async-stream]
version = "0.3.6"
[dependencies.chrono]
version = "0.4.45"
features = [
"clock",
"serde",
"std",
]
default-features = false
[dependencies.futures-core]
version = "0.3.33"
[dependencies.reqwest]
version = "0.13.4"
features = [
"charset",
"http2",
"json",
]
default-features = false
[dependencies.serde]
version = "1.0.229"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.151"
[dependencies.thiserror]
version = "2.0.19"
[dependencies.tokio]
version = "1.53.1"
features = [
"sync",
"time",
]
default-features = false
[dependencies.tracing]
version = "0.1.44"
[dependencies.url]
version = "2.5.8"
[dependencies.uuid]
version = "1.24.0"
features = ["serde"]
[dev-dependencies.futures-util]
version = "0.3.33"
features = ["std"]
default-features = false
[dev-dependencies.tokio]
version = "1.53.1"
features = [
"macros",
"rt-multi-thread",
"test-util",
]
[dev-dependencies.tracing-subscriber]
version = "0.3.20"
features = ["env-filter"]
[dev-dependencies.wiremock]
version = "0.6.5"
[lints.clippy]
expect_used = "deny"
unwrap_used = "deny"
[lints.rust]
unused_must_use = "deny"