From 1501a93915b3704a1d57da4c390a8ebca4e35c8b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A9ctor=20Ram=C3=B3n=20Jim=C3=A9nez?= Date: Thu, 30 Apr 2020 05:51:41 +0200 Subject: [PATCH] Disable `time` module on Wasm for now --- futures/src/lib.rs | 5 ++++- src/lib.rs | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/futures/src/lib.rs b/futures/src/lib.rs index d1a149f7..46fc59fc 100644 --- a/futures/src/lib.rs +++ b/futures/src/lib.rs @@ -14,7 +14,10 @@ mod runtime; pub mod executor; pub mod subscription; -#[cfg(any(feature = "tokio", feature = "async-std"))] +#[cfg(all( + any(feature = "tokio", feature = "async-std"), + not(target_arch = "wasm32") +))] #[cfg_attr(docsrs, doc(cfg(any(feature = "tokio", feature = "async-std"))))] pub mod time; diff --git a/src/lib.rs b/src/lib.rs index d1e5fb94..7885ee12 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -190,7 +190,10 @@ pub mod settings; pub mod widget; pub mod window; -#[cfg(any(feature = "tokio", feature = "async-std"))] +#[cfg(all( + any(feature = "tokio", feature = "async-std"), + not(target_arch = "wasm32") +))] #[cfg_attr(docsrs, doc(cfg(any(feature = "tokio", feature = "async-std"))))] pub mod time;