mitoxide_wasm/
lib.rs

1//! # Mitoxide WASM Runtime
2//!
3//! WASM module loading and execution support for Mitoxide.
4
5#![warn(missing_docs)]
6
7/// WASM module loading and validation
8pub mod module;
9
10/// WASM execution runtime
11pub mod runtime;
12
13/// WASM-specific error types
14pub mod error;
15
16/// Test utilities for WASM modules
17pub mod test_utils;
18
19pub use module::{WasmModule, ModuleMetadata, WasmCapability, WasmImport};
20pub use runtime::{WasmRuntime, WasmContext, WasmConfig};
21pub use error::WasmError;