1 2 3 4 5 6 7 8
#[cfg(all(feature = "threadpool", not(target_arch = "wasm32")))] pub mod threadpool; #[cfg(all(feature = "tokio", not(target_arch = "wasm32")))] pub mod tokio; #[cfg(target_arch = "wasm32")] pub mod wasm;