wasmi_wasi 0.36.4

WASI library support for the wasmi interpreter
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Re-export the commonly used wasi-cap-std-sync crate here. This saves
//! consumers of this library from having to keep additional dependencies
//! in sync.

pub mod snapshots;

pub use wasi_cap_std_sync::*;

#[doc(inline)]
pub use self::snapshots::preview_1::{
    add_wasi_snapshot_preview1_to_linker as add_to_linker,
    add_wasi_snapshot_preview1_to_linker_builder as add_to_linker_builder,
    AddWasi,
};