-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
48 lines (42 loc) · 1.17 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[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", rev = "250b52eeb9f6b0801b5c04d14e6674f96e774246", features = [
"bytes",
"net",
"resolv",
"tsig",
"unstable-client-transport",
"unstable-sign",
"unstable-validate",
"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" }
[dev-dependencies]
test_bin = "0.4.0"
tempfile = "3.14.0"
regex = "1.11.1"
domain = { git = "https://github.com/NLnetLabs/domain.git", rev = "250b52eeb9f6b0801b5c04d14e6674f96e774246", features = [
"unstable-stelline",
] }