-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
35 lines (32 loc) · 1.24 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
[package]
name = "nameshed"
version = "0.1.0"
edition = "2021"
[dependencies]
arc-swap = "1.7.0"
bytes = "1.0"
chrono = "0.4.11"
clap = { version = "2.33.0", features = [ "wrap_help" ] }
dirs = "4.0"
domain = { version = "0.10.2", features = ["zonefile", "serde", "ring", "sign", "net", "tsig", "unstable-client-transport", "unstable-server-transport", "unstable-zonetree", "unstable-xfr", "tokio-stream"] }
fern = "0.6.0"
futures = "0.3.17"
futures-util = "0.3"
log = "0.4"
log-reroute = "0.1.5"
octseq = { version = "0.5.2", default-features = false }
parking_lot = "0.11.2"
tokio = { version = "1.21", features = [ "io-util", "net", "rt", "rt-multi-thread", "sync" ] }
serde = { version = "1.0", features = ["derive"] }
toml = "0.5"
tokio-rustls = { version = "0.23.4", optional = true }
tokio-stream = { version = "0.1.1" }
rustls-pemfile = { version = "1.0", optional = true }
tracing = { version = "0.1.40" }
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
[target.'cfg(unix)'.dependencies]
nix = "0.22.0"
syslog = "5.0.0"
[features]
default = []
tls = ["tokio-rustls", "rustls-pemfile"]