wasm_rs_async_executor/
lib.rs

1//! # Async Executor for WebAssembly
2//!
3//! There are a number of async task executors available, however, most of them rely on primitives
4//! that might not be available or optimal for WebAssembly deployment at the time.
5//!
6//! This crate currently provides one [**single-threaded** async executor](`single_threaded`)
7pub mod single_threaded;