Files
NLnetLabs-dnst/Cargo.toml
T
Ximon Eighteen 9eb17c2528 Rename variable diagnostic_comments to extra_comments because comments must always output (e.g. for DNSKEY).
Add sorting to match LDNS signzone zone file ordered output.

Moves per type comment output into impls of new trait `Commented`.
2024-11-22 11:43:20 +01:00

32 lines
735 B
TOML

[package]
name = "dnst"
version = "0.1.0"
edition = "2021"
default-run = "dnst"
[[bin]]
name = "ldns"
path = "src/bin/ldns.rs"
[dependencies]
bytes = { version = "1.1", default-features = false }
clap = { version = "4.3.4", features = ["cargo", "derive"] }
domain = { git = "https://github.com/NLnetLabs/domain", branch = "support-zonefile-fmt-with-padding", features = [
"bytes",
"openssl",
"ring",
"unstable-sign",
"unstable-validate",
"unstable-validator",
"unstable-zonetree",
"zonefile",
] }
lexopt = "0.3.0"
# for implementation of nsec3 hash until domain has it stabilized
octseq = { version = "0.5.2", features = ["std"] }
ring = { version = "0.17" }
[dev-dependencies]
tempfile = "3.14.0"