microsandbox-runtime 0.3.6

Runtime library for the microsandbox sandbox process and microVM entry points.
//! `microsandbox-runtime` provides the runtime library for the sandbox
//! process entry point. This crate contains the unified VM + relay logic
//! that runs inside the single sandbox process.

#![warn(missing_docs)]

mod error;

//--------------------------------------------------------------------------------------------------
// Exports
//--------------------------------------------------------------------------------------------------

pub mod console;
pub mod heartbeat;
pub mod logging;
pub mod metrics;
pub mod policy;
pub mod relay;
pub mod vm;

pub use error::*;