-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
46 lines (43 loc) · 1.1 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
[package]
name = "race-dns-proxy"
version = "0.1.0"
edition = "2021"
[dependencies]
hickory-proto = { version = "0.24", features = [
"tokio-runtime",
"dns-over-https",
"backtrace",
] }
hickory-client = { version = "0.24", default-features = false, features = [
"dns-over-https-rustls",
"backtrace",
] }
hickory-server = { version = "0.24", features = ["dns-over-https-rustls"] }
tokio = { version = "1.43", features = ["full"] }
futures = "0.3"
anyhow = "1.0"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "time"] }
tracing-appender = "0.2"
clap = { version = "4.5.26", features = ["derive"] }
async-trait = "0.1"
rustls = "0.21"
webpki-roots = "0.26"
time = { version = "0.3", features = [
"serde-well-known",
"std",
"macros",
"local-offset",
] }
toml = "0.8"
serde = { version = "1", features = ["derive"] }
mimalloc = { version = "0.1.43", optional = true }
futures-util = { version = "0.3.31", default-features = false, features = [
"std",
] }
[features]
default = ["mimalloc"]
[profile.release]
opt-level = 3
debug = false
strip = "symbols"