wasi-common 0.21.0

WASI implementation in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod ctx;
mod entry;
mod helpers;
mod host;
mod hostcalls_impl;
mod memory;
mod sys;
pub mod wasi;
pub mod wasi32;

pub mod hostcalls {
    wig::define_hostcalls!("phases/old/snapshot_0/witx/wasi_unstable.witx");
}

pub use ctx::{WasiCtx, WasiCtxBuilder};