lithos 0.18.4

A containerization framework for linux
Documentation
//! This is internal module not intended to be used as a library
//!
//! See [Documentation](http://lithos.readthedocs.io) for the actual usage.
//!
extern crate argparse;
extern crate blake2;
extern crate base64;
extern crate crypto;
extern crate humantime;
extern crate fern;
extern crate ipnetwork;
extern crate libc;
extern crate libcantal;
extern crate libmount;
extern crate nix;
extern crate quire;
extern crate rand;
extern crate serde;
extern crate serde_json;
extern crate serde_str;
extern crate signal;
extern crate sha2;
extern crate syslog;
#[macro_use] extern crate failure;
#[macro_use] extern crate log;
#[macro_use] extern crate serde_derive;

pub mod master_config;
pub mod sandbox_config;
pub mod container_config;
pub mod child_config;
pub mod mount;
pub mod utils;
pub mod network;
pub mod setup;
pub mod pipe;
pub mod limits;
pub mod cgroup;
pub mod itertools;
pub mod timer_queue;
pub mod id_map;
pub mod metrics;
pub mod range;
pub mod knot_options;
pub mod tree_options;
pub mod nacl;

pub const MAX_CONFIG_LOGS: u32 = 100;