From 29f67410a771fe2481b7241a72dc5d3f866da7b9 Mon Sep 17 00:00:00 2001 From: Jakob Hellermann Date: Mon, 2 Dec 2019 00:34:31 +0100 Subject: [PATCH] use 'default-features' = false on futures-util (#7) --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index cd9302f..33e8035 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,7 +15,7 @@ license = "MIT" futures-channel = "0.3" futures-core = "0.3" futures-io = "0.3" -futures-util = "0.3" +futures-util = { version = "0.3", default-features = false } [dev-dependencies] criterion = "0.3"