hickory-dns/Cargo.toml

112 lines
2.7 KiB
TOML
Raw Normal View History

[workspace]
resolver = "2"
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",
]
2023-03-24 16:08:16 +00:00
exclude = ["fuzz"]
[workspace.package]
version = "0.23.1"
authors = ["The contributors to Trust-DNS"]
edition = "2021"
2023-09-23 08:44:36 +00:00
rust-version = "1.67.0"
homepage = "https://trust-dns.org/"
repository = "https://github.com/bluejekyll/trust-dns"
keywords = ["DNS", "BIND", "dig", "named", "dnssec"]
categories = ["network-programming"]
license = "MIT OR Apache-2.0"
[workspace.dependencies]
# trustdns
trust-dns-client = { version = "0.23.1", path = "crates/client", default-features = false }
trust-dns-recursor = { version = "0.23.1", path = "crates/recursor", default-features = false }
trust-dns-resolver = { version = "0.23.1", path = "crates/resolver", default-features = false }
trust-dns-server = { version = "0.23.1", path = "crates/server", default-features = false }
trust-dns-proto = { version = "0.23.1", 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"
tokio-util = "0.7.9"
parking_lot = "0.12"
# ssl
native-tls = "0.2"
openssl = "0.10.55"
2023-09-22 12:36:44 +00:00
rustls = "0.21.6"
rustls-native-certs = "0.6.3"
rustls-pemfile = "1.0.0"
2023-08-02 01:22:56 +00:00
webpki-roots = "0.25.0"
ring = "0.16"
# net proto
quinn = { version = "0.10", default-features = false }
h2 = "0.3.0"
2023-07-07 15:42:31 +00:00
h3 = "0.0.2"
h3-quinn = "0.0.3"
http = "0.2"
# others
backtrace = "0.3.50"
2023-09-18 13:50:24 +00:00
basic-toml = "0.1"
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"
2023-06-10 13:45:02 +00:00
idna = "0.4.0"
ipconfig = "0.3.0"
ipnet = "2.3.0"
js-sys = "0.3.44"
once_cell = "1.18.0"
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"
url = "2.4.0"
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" }