[package]
edition = "2021"
rust-version = "1.71.1"
name = "nsproxy-hickory-client"
version = "0.25.4"
authors = ["The contributors to Hickory DNS"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
Hickory DNS is a safe and secure DNS library. This is the Client library with DNSSEC 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
functions. Hickory DNS is based on the Tokio and Futures libraries, which means
it should be easily integrated into other software that also use those
libraries.
"""
homepage = "https://hickory-dns.org/"
documentation = "https://docs.rs/hickory-client"
readme = "README.md"
keywords = [
"dns",
"dnssec",
]
categories = ["network-programming"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/hickory-dns/hickory-dns"
[package.metadata.docs.rs]
all-features = true
default-target = "x86_64-unknown-linux-gnu"
targets = [
"x86_64-apple-darwin",
"x86_64-pc-windows-msvc",
]
rustdoc-args = [
"--cfg",
"docsrs",
]
[package.metadata.cargo-all-features]
skip_optional_dependencies = true
max_combination_size = 2
denylist = [
"__tls",
"__https",
"__quic",
"__h3",
"__dnssec",
]
[features]
__dnssec = []
backtrace = ["nsproxy-hickory-proto/backtrace"]
dnssec-aws-lc-rs = [
"nsproxy-hickory-proto/dnssec-aws-lc-rs",
"__dnssec",
]
dnssec-ring = [
"nsproxy-hickory-proto/dnssec-ring",
"__dnssec",
]
h3-aws-lc-rs = ["nsproxy-hickory-proto/h3-aws-lc-rs"]
h3-ring = ["nsproxy-hickory-proto/h3-ring"]
https-aws-lc-rs = ["nsproxy-hickory-proto/https-aws-lc-rs"]
https-ring = ["nsproxy-hickory-proto/https-ring"]
mdns = ["nsproxy-hickory-proto/mdns"]
quic-aws-lc-rs = ["nsproxy-hickory-proto/quic-aws-lc-rs"]
quic-ring = ["nsproxy-hickory-proto/quic-ring"]
rustls-platform-verifier = ["nsproxy-hickory-proto/rustls-platform-verifier"]
serde = [
"dep:serde",
"nsproxy-hickory-proto/serde",
]
tls-aws-lc-rs = ["nsproxy-hickory-proto/tls-aws-lc-rs"]
tls-ring = ["nsproxy-hickory-proto/tls-ring"]
webpki-roots = ["nsproxy-hickory-proto/webpki-roots"]
[lib]
name = "hickory_client"
path = "src/lib.rs"
[dependencies.cfg-if]
version = "1"
[dependencies.data-encoding]
version = "2.2.0"
default-features = false
[dependencies.futures-channel]
version = "0.3.5"
features = ["std"]
default-features = false
[dependencies.futures-util]
version = "0.3.5"
features = ["std"]
default-features = false
[dependencies.nsproxy-hickory-proto]
version = "0.25"
features = [
"std",
"text-parsing",
"tokio",
]
default-features = false
[dependencies.once_cell]
version = "1.20.0"
features = ["critical-section"]
default-features = false
[dependencies.radix_trie]
version = "0.2.0"
[dependencies.rand]
version = "0.9"
features = ["alloc"]
default-features = false
[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true
[dependencies.thiserror]
version = "2"
default-features = false
[dependencies.tokio]
version = "1.21"
features = [
"rt",
"net",
]
[dependencies.tracing]
version = "0.1.30"
default-features = false
[dev-dependencies.futures]
version = "0.3.5"
features = [
"std",
"executor",
]
default-features = false
[dev-dependencies.tokio]
version = "1.21"
features = [
"rt",
"macros",
]
[dev-dependencies.tracing-subscriber]
version = "0.3"
features = [
"env-filter",
"fmt",
"std",
]
default-features = false
[dev-dependencies.webpki-roots]
version = "0.26"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(nightly)"]