deps: enable only the std feature for the futures crate

pull/1/head
Alessandro Decina 4 years ago
parent 3abe9bb859
commit 0cf5d17e38

@ -12,7 +12,7 @@ bitflags = "1.2.1"
bytes = "1" bytes = "1"
lazy_static = "1" lazy_static = "1"
parking_lot = { version = "0.11.1", features = ["send_guard"] } parking_lot = { version = "0.11.1", features = ["send_guard"] }
futures = { version = "0.3.12", optional = true } futures = { version = "0.3.12", optional = true, default-features = false, features = ["std"] }
tokio = { version = "1.2.0", features = ["macros", "rt", "rt-multi-thread", "net"], optional = true } tokio = { version = "1.2.0", features = ["macros", "rt", "rt-multi-thread", "net"], optional = true }
async-std = { version = "1.9.0", optional = true } async-std = { version = "1.9.0", optional = true }
async-io = { version = "1.3", optional = true } async-io = { version = "1.3", optional = true }

Loading…
Cancel
Save