From eabaee272c2e9f64c88dc460e3ca4c70ccffd16e Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Wed, 20 Oct 2021 01:23:06 +0100 Subject: [PATCH] fix futures-util feature gate --- Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index b7e6ae380..e53f4411b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -111,7 +111,7 @@ brotli2 = "0.3.2" criterion = { version = "0.3", features = ["html_reports"] } env_logger = "0.8" flate2 = "1.0.13" -zstd = "0.7" +futures-util = { version = "0.3.7", default-features = false, features = ["std"] } rand = "0.8" rcgen = "0.8" rustls-pemfile = "0.2" @@ -119,6 +119,7 @@ tls-openssl = { package = "openssl", version = "0.10.9" } tls-rustls = { package = "rustls", version = "0.20.0" } webpki = "0.22" webpki-roots = "0.22" +zstd = "0.7" [profile.dev] # Disabling debug info speeds up builds a bunch and we don't rely on it for debugging that much.