mirror of
https://github.com/NLnetLabs/dnst.git
synced 2026-09-23 18:25:02 +02:00
51 lines
1.2 KiB
TOML
51 lines
1.2 KiB
TOML
[package]
|
|
name = "dnst"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
default-run = "dnst"
|
|
rust-version = "1.79"
|
|
|
|
[[bin]]
|
|
name = "ldns"
|
|
path = "src/bin/ldns.rs"
|
|
|
|
[features]
|
|
default = ["openssl", "ring"]
|
|
|
|
# Cryptographic backends
|
|
openssl = ["domain/openssl"]
|
|
ring = ["domain/ring"]
|
|
|
|
[dependencies]
|
|
bytes = "1.8.0"
|
|
chrono = "0.4.38"
|
|
clap = { version = "4.3.4", features = ["cargo", "derive"] }
|
|
domain = { git = "https://github.com/NLnetLabs/domain.git", branch = "crypto-and-keyset-fixes", features = [
|
|
"bytes",
|
|
"net",
|
|
"resolv",
|
|
"tsig",
|
|
"unstable-client-transport",
|
|
"unstable-sign",
|
|
"unstable-validator",
|
|
"zonefile",
|
|
] }
|
|
lexopt = "0.3.0"
|
|
tokio = "1.40.0"
|
|
|
|
# This is a workaround. lazy_static 1.0.0 fails to compile, but sharded-slab
|
|
# still uses it. And sharded-slab is used by tracing-subscriber, which is
|
|
# used by domain, which is used by us.
|
|
_unused_lazy_static = { package = "lazy_static", version = "1.0.2" }
|
|
serde_json = "1.0.137"
|
|
serde = "1.0.217"
|
|
jiff = "0.2.6"
|
|
|
|
[dev-dependencies]
|
|
test_bin = "0.4.0"
|
|
tempfile = "3.14.0"
|
|
regex = "1.11.1"
|
|
domain = { git = "https://github.com/NLnetLabs/domain.git", branch = "crypto-and-keyset-fixes", features = [
|
|
"unstable-stelline",
|
|
] }
|