omnia-wasi-keyvalue 0.31.0

WASI key-value store interface for the Omnia runtime
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! # WASI Key-Value Guest

// Bindings for the `wasi:keyvalue` world.
// See (<https://github.com/WebAssembly/wasi-keyvalue/>)
mod generated {
    #![allow(missing_docs)]
    wit_bindgen::generate!({
    world: "imports",
    path: "wit",
    generate_all,
    });
}

pub mod cache;

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