cordon 0.3.0

Embeddable sandboxing a-la-carte
Documentation
mod libc_util;

mod error;
mod id_map;
mod mount_table;
pub mod spawn;
pub mod systemd;

mod command;

pub use id_map::IdMap;
pub use mount_table::{MountTable, MountpointType};

pub use command::{Child, Command, ExitStatus, Namespace};

/// In test builds, use alloc_counter to verify at runtime that the functions which must be
/// async-signal-safe do not allocate.
#[cfg(debug_assertions)]
#[global_allocator]
static ALLOC: alloc_counter::AllocCounterSystem = alloc_counter::AllocCounterSystem;