async_wasi/
lib.rs

1#![doc(
2    html_logo_url = "https://github.com/cncf/artwork/blob/master/projects/wasm-edge-runtime/icon/color/wasm-edge-runtime-icon-color.png?raw=true",
3    html_favicon_url = "https://raw.githubusercontent.com/cncf/artwork/49169bdbc88a7ce3c4a722c641cc2d548bd5c340/projects/wasm-edge-runtime/icon/color/wasm-edge-runtime-icon-color.svg"
4)]
5
6//! The [async-wasi](https://crates.io/crates/async-wasi) crate implements WASI spec for the asynchronous scenarios.
7//!
8//! See also
9//!
10//! * [WasmEdge Runtime](https://wasmedge.org/)
11//!
12
13#[allow(clippy::too_many_arguments)]
14pub mod snapshots;
15
16pub use snapshots::WasiCtx;