2
0
Fork 1
mirror of https://github.com/async-rs/async-std.git synced 2025-01-30 09:15:33 +00:00
This commit is contained in:
dignifiedquire 2020-06-03 18:50:12 +02:00
parent 8943ba82dd
commit 8389041414

View file

@ -64,7 +64,10 @@ mod timer {
pub type Timer = smol::Timer;
}
#[cfg(any(all(target_arch = "wasm32", feature = "default"), feature = "unstable"))]
#[cfg(any(
all(target_arch = "wasm32", feature = "default"),
all(feature = "unstable", not(feature = "default"))
))]
mod timer {
use std::pin::Pin;
use std::task::Poll;