async-rt 0.1.10

A small library designed to utilize async executors through an common API while extending features.
Documentation
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;