Skip to content

Commit 55a4a9a

Browse files
authored
Merge pull request #213 from paolobarbolini/std
Remove feature gate on the std feature
2 parents 7a1edb6 + a7b1a59 commit 55a4a9a

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/worker/mod.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
mod immediate;
2-
#[cfg(feature = "std")]
32
mod multithreaded;
43

5-
#[cfg(all(feature = "std", not(any(target_arch = "asmjs", target_arch = "wasm32"))))]
4+
#[cfg(not(any(target_arch = "asmjs", target_arch = "wasm32")))]
65
pub use self::multithreaded::MultiThreadedWorker as PlatformWorker;
7-
#[cfg(any(not(feature = "std"), target_arch = "asmjs", target_arch = "wasm32"))]
6+
#[cfg(any(target_arch = "asmjs", target_arch = "wasm32"))]
87
pub use self::immediate::ImmediateWorker as PlatformWorker;
98

109
use alloc::sync::Arc;

0 commit comments

Comments
 (0)