From 0cf5d17e383d240a27d463c89bec5d3a19854e4f Mon Sep 17 00:00:00 2001 From: Alessandro Decina Date: Sun, 14 Feb 2021 08:21:25 +0000 Subject: [PATCH] deps: enable only the std feature for the futures crate --- aya/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aya/Cargo.toml b/aya/Cargo.toml index 28471b14..2c36f2bc 100644 --- a/aya/Cargo.toml +++ b/aya/Cargo.toml @@ -12,7 +12,7 @@ bitflags = "1.2.1" bytes = "1" lazy_static = "1" 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 } async-std = { version = "1.9.0", optional = true } async-io = { version = "1.3", optional = true }