-
Notifications
You must be signed in to change notification settings - Fork 13
/
Cargo.toml
44 lines (43 loc) · 1.21 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
[workspace]
members = [
"bin",
# main server code
"dora-core",
"dora-cfg",
"ddns-test",
# healthcheck/diagnostics,etc
"external-api",
# libs
"libs/*",
# plugins
"plugins/*",
]
resolver = "2"
# default-members = ["bin"]
[workspace.dependencies]
trust-dns-proto = { version = "0.22.0", default-features = false, features = [
"dnssec",
"serde-config",
] }
socket2 = { version = "0.5.6", features = [
"all",
] } # TODO: update when tokio sockets impl AsFd, then update unix-udp-sock
anyhow = { version = "1.0", features = ["backtrace"] }
async-trait = "0.1"
bytes = "1.1"
clap = { version = "4.5.4", features = ["derive", "env"] }
dhcproto = "0.11.0"
futures = { version = "0.3", default-features = false, features = ["std"] }
ipnet = { features = ["serde"], version = "2.4.0" }
pnet = { features = ["serde", "std"], version = "0.34.0" }
prometheus = "0.13.0"
prometheus-static-metric = "0.5"
tokio = { version = "1.37.0", features = ["full"] }
tracing = "0.1.40"
tracing-futures = "0.2.5"
tracing-subscriber = { features = ["env-filter", "json"], version = "0.3" }
thiserror = "1.0"
rand = "0.8.5"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.8"