monocore 0.2.1

`monocore` is a secure MicroVM provisioning system for running untrusted code in isolated environments.
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::*;