lucet-wasi 0.6.1

Fastly's runtime for the WebAssembly System Interface (WASI)
Documentation
use lucet_module::bindings::Bindings;

pub fn bindings() -> Bindings {
    Bindings::from_str(include_str!("../bindings.json")).expect("lucet-wasi bindings.json is valid")
}

#[cfg(test)]
#[test]
fn test_bindings_parses() {
    let _ = bindings();
}