hickory-dns/Cargo.toml

119 lines
2.9 KiB
TOML
Raw Normal View History

[workspace]
members = [
"crates/proto",
"crates/resolver",
2022-02-13 18:02:17 +00:00
"crates/recursor",
"crates/client",
"crates/server",
"crates/async-std-resolver",
"bin",
"util",
"tests/compatibility-tests",
"tests/integration-tests",
]
2020-11-09 21:38:29 +00:00
exclude = ["fuzz"]
2022-02-05 18:39:29 +00:00
[patch.crates-io]
2020-11-09 21:38:29 +00:00
# tokio = { path = "../tokio/tokio" }
# mio = { git = "https://github.com/tokio-rs/mio.git" }
2020-12-25 02:49:11 +00:00
# h2 = { git = "https://github.com/hyperium/h2.git" }
[workspace.dependencies]
# trustdns
trust-dns-client = { version = "0.22.0", path = "crates/client" }
trust-dns-recursor = { version = "0.22.0", path = "crates/recursor" }
trust-dns-resolver = { version = "0.22.0", path = "crates/resolver" }
trust-dns-server = { version = "0.22.0", path = "crates/server" }
trust-dns-proto = { version = "0.22.0", path = "crates/proto" }
# logging
tracing = "0.1.30"
tracing-subscriber = { version = "0.3", features = [
"std",
"fmt",
"env-filter",
] }
thiserror = "1.0.20"
# async/await
async-recursion = "1.0.0"
async-trait = "0.1.43"
futures = { version = "0.3.5", default-features = false, features = [
"std",
"executor",
] }
futures-channel = { version = "0.3.5", default-features = false, features = [
"std",
] }
futures-executor = { version = "0.3.5", default-features = false, features = [
"std",
] }
futures-io = { version = "0.3.5", default-features = false, features = ["std"] }
futures-util = { version = "0.3.5", default-features = false, features = [
"std",
] }
async-std = { version = "1.6", features = ["unstable"] }
tokio = { version = "1.0", default-features = false, features = ["io-util"] }
tokio-native-tls = "0.3.0"
tokio-openssl = "0.6.0"
tokio-rustls = { version = "0.23.0", features = ["early-data"] }
parking_lot = "0.12"
# ssl
native-tls = "0.2"
openssl = { version = "0.10", features = ["v102", "v110"] }
rustls = "0.20.0"
rustls-pemfile = "1.0.0"
webpki = "0.22.0"
webpki-roots = "0.22.1"
ring = { version = "0.16", features = ["std"] }
# net proto
quinn = "0.9"
quinn-udp = "0.3.2"
h2 = { version = "0.3.0", features = ["stream"] }
http = "0.2"
# others
backtrace = "0.3.50"
bytes = "1"
cfg-if = "1"
clap = { version = "4.0", default-features = false, features = [
"std",
"cargo",
"help",
"derive",
"suggestions",
] }
console = "0.15.0"
data-encoding = "2.2.0"
enum-as-inner = "0.5"
idna = "0.3.0"
ipconfig = "0.3.0"
ipnet = "2.3.0"
js-sys = "0.3.44"
lazy_static = "1.2.0"
libfuzzer-sys = "0.4"
lru-cache = "0.1.2"
pin-utils = "0.1.0"
radix_trie = "0.2.0"
rand = "0.8"
regex = "1.3.4"
resolv-conf = { version = "0.7.0", features = ["system"] }
rusqlite = { version = "0.28.0", features = ["bundled", "time"] }
serde = { version = "1.0", features = ["derive"] }
smallvec = "1.6"
socket2 = "0.4.2"
time = "0.3"
tinyvec = { version = "1.1.1", features = ["alloc"] }
toml = "0.7"
url = "2.3.1"
wasm-bindgen-crate = { version = "0.2.58", package = "wasm-bindgen" }