#wasi #abi #sandbox

wasmer-wasi-near

WASI implementation library for Wasmer WebAssembly runtime

1 stable release

1.0.1 Feb 5, 2021

#856 in WebAssembly

28 downloads per month
Used in 2 crates

MIT license

470KB
9K SLoC

wasmer-wasi Build Status Join Wasmer Slack MIT License crates.io

This crate provides the necessary imports to use WASI easily from Wasmer.

Usage

use wasmer::{Store, Module, Instance};
use wasmer_wasi::WasiState;

let store = Store::default();
let module = Module::from_file(&store, "my_wasi_module.wasm")?;

// Create the WasiEnv
let wasi_env = WasiState::new("command name")
    .args(&["world"])
    .env("KEY", "VALUE")
    .finalize()?;

let import_object = wasi_env.import_object(&module)?;
let instance = Instance::new(&module, &import_object)?;

wasi_env.set_memory(instance.exports.get_memory("memory")?.clone());

let start = instance.exports.get_function("_start")?;
start.call(&[])?;

Note: you can find a full working example using WASI here.

Dependencies

~11MB
~206K SLoC