wasmi_wasi 0.1.0

WASI library support for the wasmi interpreter
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
mod guest_memory;
pub mod snapshots;

pub use self::guest_memory::WasmiGuestMemory;
pub use snapshots::preview_1::define_wasi;
pub use wasi_cap_std_sync::{
    ambient_authority,
    clocks,
    file::{filetype_from, get_fd_flags, File},
    net,
    sched,
    stdio,
    Dir,
    TcpListener,
    WasiCtxBuilder,
};
pub use wasi_common::{Error, WasiCtx, WasiDir, WasiFile};
pub use wasmi::Linker;