From 295345480b21631fd26ee98fe7f23c3ff27269fc Mon Sep 17 00:00:00 2001 From: Benjamin Saunders Date: Sun, 19 Dec 2021 14:28:06 -0800 Subject: [PATCH] Don't depend on futures-io by default --- quinn/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quinn/Cargo.toml b/quinn/Cargo.toml index 98d4bd8167..d107e2f6dd 100644 --- a/quinn/Cargo.toml +++ b/quinn/Cargo.toml @@ -14,7 +14,7 @@ edition = "2018" all-features = true [features] -default = ["native-certs", "tls-rustls", "ring", "futures-io"] +default = ["native-certs", "tls-rustls", "ring"] # Records how long locks are held, and warns if they are held >= 1ms lock_tracking = [] # Provides `ClientConfig::with_native_roots()` convenience method