microsandbox-runtime 0.7.0

Runtime library for the microsandbox sandbox process and microVM entry points.
//! VM runner implementation linked into the `msb` process.

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

#[cfg(windows)]
pub(crate) mod bootstrap_fs;
pub(crate) mod clock;
pub mod console;
pub(crate) mod control;
pub mod cpu;
pub mod exec_log;
pub mod heartbeat;
pub(crate) mod logging;
pub mod metrics;
pub mod policy;
pub(crate) mod progress;
pub mod relay;
pub(crate) mod startup;
pub mod vm;
pub(crate) mod workload_control;
pub(crate) mod writeback;