-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
34 lines (31 loc) · 906 Bytes
/
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
[package]
name = "bancuh-dns"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
addr = "0.15.6"
anyhow = "1.0.75"
async-trait = "0.1.74"
clap = { version = "4.4.11", features = ["derive", "env"] }
hickory-resolver = "0.24.0"
hickory-server = "0.24.0"
idna = "0.5.0"
itertools = "0.12.0"
lazy_static = "1.4.0"
rand = "0.8.5"
regex = "1.10.2"
reqwest = { version = "0.11", default-features = false, features = ["json"] }
rocksdb = "0.21.0"
serde = { version ="1.0", features = ["derive"] }
serde_yaml = "0.9.27"
thiserror = "1.0.51"
tokio = { version = "1", features = ["full"] }
tokio-util = { version = "0.7.10", features = ["rt"] }
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
url = "2.5.0"
[features]
default = ["rustls-tls"]
default-tls = ["reqwest/default-tls"]
rustls-tls = ["reqwest/rustls-tls"]