omnia-wasi-config 0.31.0

WASI config interface implementation for the Omnia runtime
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! # WASI Config WIT implementation

// Bindings for the `wasi:config` world.
// See (<https://github.com/WebAssembly/wasi-config/>)
mod generated {
    #![allow(missing_docs)]

    wit_bindgen::generate!({
        world: "imports",
        path: "wit",
        generate_all,
    });
}

pub use self::generated::wasi::config::*;