//! WebAssembly plugin runtime for Martensite.
//!
//! This crate embeds a Wasmtime sandbox and exposes a zero-allocation shared
//! memory ring buffer so that third-party widgets can push paint commands at
//! 60 Hz / 120 Hz without host-trampoline overhead. Plugins run with a fuel
//! budget and epoch-based interruption, and every host call is validated against
//! an explicit capability set.
//!
//! The crate is written entirely in safe Rust.
/// Zero-allocation shared-memory ring buffer for paint commands.
/// Wasmtime sandbox, WASIp1 context, and plugin instance lifecycle.
/// Capability-based security model and builder API.
pub use ;
pub use ;
pub use ;