hickory-dns/util/Cargo.toml
Benjamin Fry 408d0baca0
Prepare 0.24 release with branding change to Hickory DNS (#2054)
* update all READMEs with notices about the name change

* update changelog for 0.24

* bump crate versions to 0.24

* update version notice information

* update readmes to back reference trust-dns

* rename all crates to hickory counterparts

* replace all Trust-DNS references in code and comments with Hickory DNS

* rename all Trust-DNS references to Hickory DNS in non-code

* rename all trust-dns-resolver references to hickory-resolver

* rename all trust-dns-client references to hickory-client

* rename all trust-dns-proto references to hickory-proto

* rename all trust-dns-server references to hickory-server

* rename all trust-dns-compatibility references to hickory-compatability

* rename all trust-dns-integration references to hickory-integration

* rename all trust-dns-util references to hickory-util

* Update MIT licenses to reference Hickory DNS

* update all trust-dns references to hickory-dns

* update all bluejekyll github references to hickorydns org

* Update name in Changelog

* make sure hickory-dns logs during tests

* add changelogs for recent main additions

* fix references to trust-dns and hickory in architecture

* update a few trust-dns references in READMEs

* fixup some dangling trust_dns references

* replace fka with formerly in change log

* replace all hickoydns org references to hickory-dns

* replace all http links with https

* update logos

* update hickorydns to hickory-dns for all other org references

* fix Notices of Trust-DNS to Hickory in each Readme
2023-10-13 18:39:28 -07:00

123 lines
3.3 KiB
TOML

[package]
name = "hickory-util"
# A short blurb about the package. This is not rendered in any format when
# uploaded to crates.io (aka this is not markdown)
description = """
Utilities that complement Hickory DNS.
"""
# These URLs point to more information about the repository
documentation = "https://docs.rs/crate/hickory-util"
# This points to a file in the repository (relative to this Cargo.toml). The
# contents of this file are stored and indexed in the registry.
readme = "README.md"
version.workspace = true
authors.workspace = true
edition.workspace = true
rust-version.workspace = true
homepage.workspace = true
repository.workspace = true
keywords.workspace = true
categories.workspace = true
license.workspace = true
[badges]
#github-actions = { repository = "bluejekyll/hickory", branch = "main", workflow = "test" }
codecov = { repository = "hickory-dns/hickory-dns", branch = "main", service = "github" }
maintenance = { status = "actively-developed" }
[features]
dns-over-rustls = [
"rustls",
"hickory-proto/dns-over-rustls",
"hickory-client/dns-over-rustls",
"hickory-resolver/dns-over-rustls",
]
dns-over-https-rustls = [
"dns-over-https",
"dns-over-rustls",
"hickory-proto/dns-over-https-rustls",
"hickory-client/dns-over-https-rustls",
"hickory-resolver/dns-over-https-rustls",
]
dns-over-https = [
"hickory-proto/dns-over-https",
"hickory-client/dns-over-https",
"hickory-resolver/dns-over-https",
]
dns-over-quic = ["dns-over-rustls", "hickory-resolver/dns-over-quic"]
dns-over-h3 = ["dns-over-rustls", "hickory-resolver/dns-over-h3"]
webpki-roots = [
"dep:webpki-roots",
"hickory-proto/webpki-roots",
"hickory-client/webpki-roots",
"hickory-resolver/webpki-roots",
]
native-certs = [
"dep:rustls-native-certs",
"hickory-proto/native-certs",
"hickory-client/native-certs",
"hickory-resolver/native-certs",
]
dnssec = []
dnssec-openssl = [
"dnssec",
"openssl",
"hickory-client/dnssec-openssl",
"hickory-proto/dnssec-openssl",
"hickory-resolver/dnssec-openssl",
]
dnssec-ring = [
"dnssec",
"hickory-client/dnssec-ring",
"hickory-proto/dnssec-ring",
"hickory-resolver/dnssec-ring",
]
[[bin]]
name = "dnskey-to-pem"
required-features = ["dnssec-openssl"]
[[bin]]
name = "get-root-ksks"
required-features = ["dnssec-openssl"]
[[bin]]
name = "pem-to-public-dnskey"
required-features = ["dnssec-openssl"]
[dependencies]
clap = { workspace = true, default-features = false, features = [
"std",
"cargo",
"derive",
"color",
"suggestions",
"help",
"usage",
] }
console.workspace = true
data-encoding.workspace = true
openssl = { workspace = true, features = ["v102", "v110"], optional = true }
rustls = { workspace = true, features = [
"dangerous_configuration",
], optional = true }
rustls-native-certs = { workspace = true, optional = true }
tracing.workspace = true
tracing-subscriber = { workspace = true, features = [
"std",
"fmt",
"env-filter",
] }
hickory-client.workspace = true
hickory-proto.workspace = true
hickory-recursor.workspace = true
hickory-resolver = { workspace = true, features = ["system-config"] }
tokio = { workspace = true, features = ["rt-multi-thread", "macros", "time"] }
webpki-roots = { workspace = true, optional = true }