Remove feature flags from workspace dependencies

This commit is contained in:
YISH 2023-03-20 20:10:21 +08:00 committed by Benjamin Fry
parent ac45ad93e7
commit d6b2e8bfcf
2 changed files with 386 additions and 422 deletions

755
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -31,53 +31,40 @@ 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",
] }
tracing-subscriber = "0.3"
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"] }
futures = "0.3.5"
futures-channel = "0.3.5"
futures-executor = "0.3.5"
futures-io = "0.3.5"
futures-util = "0.3.5"
async-std = "1.6"
tokio = "1.0"
tokio-native-tls = "0.3.0"
tokio-openssl = "0.6.0"
tokio-rustls = { version = "0.23.0", features = ["early-data"] }
tokio-rustls = "0.23.0"
parking_lot = "0.12"
# ssl
native-tls = "0.2"
openssl = { version = "0.10", features = ["v102", "v110"] }
openssl = "=0.10.41"
rustls = "0.20.0"
rustls-pemfile = "1.0.0"
webpki = "0.22.0"
webpki-roots = "0.22.1"
ring = { version = "0.16", features = ["std"] }
ring = "0.16"
# net proto
quinn = "0.9"
quinn-udp = "0.3.2"
h2 = { version = "0.3.0", features = ["stream"] }
h2 = "0.3.0"
http = "0.2"
@ -85,13 +72,7 @@ http = "0.2"
backtrace = "0.3.50"
bytes = "1"
cfg-if = "1"
clap = { version = "4.0", default-features = false, features = [
"std",
"cargo",
"help",
"derive",
"suggestions",
] }
clap = "4.0"
console = "0.15.0"
data-encoding = "2.2.0"
enum-as-inner = "0.5"
@ -106,13 +87,13 @@ 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"] }
resolv-conf = "0.7.0"
rusqlite = "0.28.0"
serde = "1.0"
smallvec = "1.6"
socket2 = "0.4.2"
time = "0.3"
tinyvec = { version = "1.1.1", features = ["alloc"] }
tinyvec = "1.1.1"
toml = "0.7"
url = "2.3.1"
wasm-bindgen-crate = { version = "0.2.58", package = "wasm-bindgen" }