hickory-dns/Cargo.toml

109 lines
2.7 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
2023-03-24 16:08:16 +00:00
exclude = ["fuzz"]
[workspace.package]
2023-06-02 15:33:57 +00:00
version = "0.23.0-alpha.3"
authors = ["The contributors to Trust-DNS"]
edition = "2021"
rust-version = "1.64.0"
homepage = "https://trust-dns.org/"
repository = "https://github.com/bluejekyll/trust-dns"
keywords = ["DNS", "BIND", "dig", "named", "dnssec"]
categories = ["network-programming"]
license = "MIT/Apache-2.0"
[workspace.dependencies]
# trustdns
2023-06-02 15:33:57 +00:00
trust-dns-client = { version = "0.23.0-alpha.3", path = "crates/client", default-features = false }
trust-dns-recursor = { version = "0.23.0-alpha.3", path = "crates/recursor", default-features = false }
trust-dns-resolver = { version = "0.23.0-alpha.3", path = "crates/resolver", default-features = false }
trust-dns-server = { version = "0.23.0-alpha.3", path = "crates/server", default-features = false }
trust-dns-proto = { version = "0.23.0-alpha.3", path = "crates/proto", default-features = false }
# logging
tracing = "0.1.30"
tracing-subscriber = "0.3"
thiserror = "1.0.20"
# async/await
async-recursion = "1.0.0"
async-trait = "0.1.43"
2023-05-08 22:40:35 +00:00
futures = { version = "0.3.5", default-features = false }
futures-channel = { version = "0.3.5", default-features = false }
futures-executor = { version = "0.3.5", default-features = false }
futures-io = { version = "0.3.5", default-features = false }
futures-util = { version = "0.3.5", default-features = false }
async-std = "1.6"
tokio = "1.21"
tokio-native-tls = "0.3.0"
tokio-openssl = "0.6.0"
tokio-rustls = "0.24.0"
parking_lot = "0.12"
# ssl
native-tls = "0.2"
2023-03-27 13:43:33 +00:00
openssl = "0.10.48"
rustls = "0.21.0"
rustls-pemfile = "1.0.0"
webpki = { version = "0.100.1", package = "rustls-webpki" }
webpki-roots = "0.23.0"
ring = "0.16"
# net proto
quinn = { version = "0.10", default-features = false }
h2 = "0.3.0"
http = "0.2"
# others
backtrace = "0.3.50"
bytes = "1"
cfg-if = "1"
2023-05-08 22:40:35 +00:00
clap = { version = "4.0", default-features = false }
console = "0.15.0"
data-encoding = "2.2.0"
enum-as-inner = "0.6"
idna = "0.3.0"
ipconfig = "0.3.0"
ipnet = "2.3.0"
js-sys = "0.3.44"
2023-05-24 15:38:52 +00:00
once_cell = "1.17.1"
lru-cache = "0.1.2"
pin-utils = "0.1.0"
radix_trie = "0.2.0"
rand = "0.8"
regex = "1.3.4"
resolv-conf = "0.7.0"
2023-05-09 20:56:23 +00:00
rusqlite = "0.29.0"
serde = "1.0"
smallvec = "1.6"
2023-05-09 18:44:27 +00:00
socket2 = "0.5"
time = "0.3"
tinyvec = "1.1.1"
toml = "0.7"
url = "2.3.1"
wasm-bindgen-crate = { version = "0.2.58", package = "wasm-bindgen" }
[patch.crates-io]
# tokio = { path = "../tokio/tokio" }
# mio = { git = "https://github.com/tokio-rs/mio.git" }
# h2 = { git = "https://github.com/hyperium/h2.git" }