You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
845 B
29 lines
845 B
[package]
|
|
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 funtions. 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."""
|
|
|
|
[tests]
|
|
skip = ["client::async_client::tests::async_client"]
|
|
skip-exact = true
|
|
comments = ["skip a test that requires internet connectivity"]
|
|
|
|
[features]
|
|
hide = [
|
|
# outdated dependencies
|
|
"rustls",
|
|
"dns-over-https",
|
|
"dns-over-https-openssl",
|
|
"dns-over-https-rustls",
|
|
"dns-over-quic",
|
|
"dns-over-rustls",
|
|
"dnssec-ring",
|
|
"native-certs",
|
|
"webpki-roots",
|
|
]
|
|
|