async_rt/rt/
mod.rs

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