microsandbox-runtime 0.7.2

Runtime library for the microsandbox sandbox process and microVM entry points.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Contracts and host-side helpers used by clients that launch `msb`.

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

pub mod boot_error;
pub mod control;
#[cfg(windows)]
pub mod disk_lock_handoff;
pub mod ipc;
pub mod launch;
pub mod launch_protocol;
pub mod logging;
pub mod maintenance;
#[cfg(target_os = "linux")]
pub mod memory_handoff;
pub mod startup_progress;