wasmer-wasix 0.702.0

WASI and WASIX implementation library for Wasmer WebAssembly runtime
1
2
3
4
5
6
7
8
9
10
11
12
mod runner;

pub mod wasi;
mod wasi_common;

pub use self::{
    runner::Runner,
    wasi_common::{
        ExistingMountConflictBehavior, MAPPED_CURRENT_DIR_DEFAULT_PATH, MappedCommand,
        MappedDirectory, MountedDirectory,
    },
};