mirror of
https://github.com/NLnetLabs/dnst.git
synced 2026-09-26 11:44:55 +02:00
32 lines
722 B
TOML
32 lines
722 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 = "multiple-key-signing", 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"
|