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
16
17
18
#![doc = include_str!("../README.md")]

//! # WASI Config Service
//!
//! This module implements a runtime service for `wasi:config`
//! (<https://github.com/WebAssembly/wasi-config>).

#![forbid(unsafe_code)]

#[cfg(target_arch = "wasm32")]
mod guest;
#[cfg(target_arch = "wasm32")]
pub use guest::*;

#[cfg(not(target_arch = "wasm32"))]
mod host;
#[cfg(not(target_arch = "wasm32"))]
pub use host::*;