From 67f878b8906a7ad2bd708e7c2bc4aa9f1d232d0e Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Wed, 12 Jan 2022 20:03:18 +0700 Subject: Remove support for old `tokio` crate --- futures/src/lib.rs | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'futures/src/lib.rs') diff --git a/futures/src/lib.rs b/futures/src/lib.rs index ddb56341..dbcb8aca 100644 --- a/futures/src/lib.rs +++ b/futures/src/lib.rs @@ -20,12 +20,7 @@ pub mod executor; pub mod subscription; #[cfg(all( - any( - feature = "tokio", - feature = "tokio_old", - feature = "async-std", - feature = "smol" - ), + any(feature = "tokio", feature = "async-std", feature = "smol"), not(target_arch = "wasm32") ))] #[cfg_attr( -- cgit