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 --- src/lib.rs | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) (limited to 'src/lib.rs') diff --git a/src/lib.rs b/src/lib.rs index 1ca07e80..6c0e03e8 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -195,19 +195,13 @@ pub mod widget; pub mod window; #[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( docsrs, doc(cfg(any( feature = "tokio", - feature = "tokio_old", feature = "async-std" feature = "smol" ))) -- cgit