From 80cd30086a6d14c26e8d174e6ac48797d8e36621 Mon Sep 17 00:00:00 2001 From: Sergio Benitez Date: Sun, 8 Aug 2021 14:06:51 -0700 Subject: [PATCH] Don't enable unused 'futures' features. --- core/lib/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/lib/Cargo.toml b/core/lib/Cargo.toml index 85c91f26..c9d1f334 100644 --- a/core/lib/Cargo.toml +++ b/core/lib/Cargo.toml @@ -34,7 +34,7 @@ rmp-serde = { version = "0.15.0", optional = true } uuid_ = { package = "uuid", version = "0.8", optional = true, features = ["serde"] } # Non-optional, core dependencies from here on out. -futures = "0.3.0" +futures = { version = "0.3.0", default-features = false, features = ["std"] } yansi = "0.5" log = { version = "0.4", features = ["std"] } num_cpus = "1.0"