microsandbox-core 0.2.6

`microsandbox-core` is a tool for managing lightweight sandboxes and images.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Runtime management and configuration.

mod builder;
mod ffi;
mod rlimit;
mod vm;

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

pub use builder::*;
#[allow(unused)]
pub use ffi::*;
pub use rlimit::*;
pub use vm::*;