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;
9
10#[cfg(all(feature = "compio", not(target_arch = "wasm32")))]
11pub mod compio;
12
13pub mod dummy;
14
15#[cfg(all(feature = "lite", not(target_arch = "wasm32")))]
16pub mod lite;
17
18#[cfg(all(feature = "smol", not(target_arch = "wasm32")))]
19pub mod smol;