Chore: disable unused default features for various crates

This commit is contained in:
Basti Ortiz
2021-08-25 15:20:40 +08:00
committed by Benjamin Saunders
parent 858a26a6c6
commit 60b9f9ff70
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -40,7 +40,7 @@ slab = "0.4"
thiserror = "1.0.21"
tinyvec = { version = "1.1", features = ["alloc"] }
tracing = "0.1.10"
webpki = { version = "0.21", optional = true }
webpki = { version = "0.21", default-features = false, optional = true }
[dev-dependencies]
assert_matches = "1.1"
+2 -2
View File
@@ -30,7 +30,7 @@ maintenance = { status = "experimental" }
[dependencies]
bytes = "1"
futures-util = { version = "0.3.11", features = ["io"] }
futures-util = { version = "0.3.11", default-features = false, features = ["io"] }
futures-channel = "0.3.11"
fxhash = "0.2.1"
libc = "0.2.69"
@@ -42,7 +42,7 @@ socket2 = "0.4"
thiserror = "1.0.21"
tracing = "0.1.10"
tokio = { version = "1.0.1", features = ["net", "rt", "time"] }
webpki = { version = "0.21", optional = true }
webpki = { version = "0.21", default-features = false, optional = true }
[target.'cfg(unix)'.dependencies]
lazy_static = "1"