trust-dns-client 0.20.1

Trust-DNS is a safe and secure DNS library. This is the Client library with DNSec support. DNSSec with NSEC validation for negative records, is complete. The client supports dynamic DNS with SIG0 authenticated requests, implementing easy to use high level funtions. Trust-DNS is based on the Tokio and Futures libraries, which means it should be easily integrated into other software that also use those libraries.
Documentation
[badges.codecov]
branch = "main"
repository = "bluejekyll/trust-dns"
service = "github"

[badges.maintenance]
status = "actively-developed"
[dependencies.cfg-if]
version = "1"

[dependencies.chrono]
version = "0.4"

[dependencies.data-encoding]
version = "2.2.0"

[dependencies.futures-channel]
default-features = false
features = ["std"]
version = "0.3.5"

[dependencies.futures-util]
default-features = false
features = ["std"]
version = "0.3.5"

[dependencies.lazy_static]
version = "1.0"

[dependencies.log]
version = "0.4"

[dependencies.openssl]
features = ["v102", "v110"]
optional = true
version = "0.10"

[dependencies.radix_trie]
version = "0.2.0"

[dependencies.rand]
version = "0.8"

[dependencies.ring]
features = ["std"]
optional = true
version = "0.16"

[dependencies.rustls]
optional = true
version = "0.19"

[dependencies.serde]
features = ["derive"]
optional = true
version = "1.0"

[dependencies.thiserror]
version = "1.0.20"

[dependencies.tokio]
features = ["rt"]
version = "1.0"

[dependencies.trust-dns-https]
optional = true
version = "0.20.1"

[dependencies.trust-dns-proto]
features = ["dnssec"]
version = "0.20.1"

[dependencies.webpki]
optional = true
version = "0.21"
[dev-dependencies.futures]
default-features = false
features = ["std", "executor"]
version = "0.3.5"

[dev-dependencies.openssl]
features = ["v102", "v110"]
optional = false
version = "0.10"

[features]
backtrace = ["trust-dns-proto/backtrace"]
dns-over-https = ["trust-dns-https"]
dns-over-https-openssl = ["dns-over-https", "dns-over-openssl"]
dns-over-https-rustls = ["dns-over-https", "dns-over-rustls"]
dns-over-openssl = ["dns-over-tls", "dnssec-openssl", "openssl"]
dns-over-rustls = ["dns-over-tls", "dnssec-ring", "rustls", "webpki"]
dns-over-tls = []
dnssec = []
dnssec-openssl = ["dnssec", "openssl", "trust-dns-proto/dnssec-openssl"]
dnssec-ring = ["dnssec", "ring", "trust-dns-proto/dnssec-ring"]
mdns = ["trust-dns-proto/mdns"]
serde-config = ["serde"]

[lib]
name = "trust_dns_client"
path = "src/lib.rs"

[package]
authors = ["Benjamin Fry <benjaminfry@me.com>"]
categories = ["network-programming"]
description = "Trust-DNS is a safe and secure DNS library. This is the Client library with DNSec support.\n DNSSec with NSEC validation for negative records, is complete. The client supports\n dynamic DNS with SIG0 authenticated requests, implementing easy to use high level\n funtions. Trust-DNS is based on the Tokio and Futures libraries, which means\n it should be easily integrated into other software that also use those\n libraries.\n"
documentation = "https://docs.rs/trust-dns"
edition = "2018"
homepage = "http://www.trust-dns.org/index.html"
keywords = ["DNS", "BIND", "dig", "named", "dnssec"]
license = "MIT/Apache-2.0"
name = "trust-dns-client"
readme = "README.md"
repository = "https://github.com/bluejekyll/trust-dns"
version = "0.20.1"