1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Because if we can't trust, we can't make.
#![forbid(unsafe_code)]
#![feature(const_fn)]
#![feature(unboxed_closures)]
#![feature(fn_traits)]
#![feature(clamp)]
#![feature(panic_info_message)]

#[macro_use]
extern crate log;
extern crate env_logger;

pub mod child;
pub mod context;

pub mod messages;
mod runtime_manager;
pub mod spawn;
pub mod supervisor;
pub mod tramp;

pub mod bastion;
pub mod config;
pub mod runtime_system;