nucleus/lib.rs
1#![cfg_attr(not(test), deny(clippy::unwrap_used))]
2
3//! Extremely lightweight Docker alternative for agents and production services.
4//!
5//! Nucleus provides isolated execution using Linux cgroups, namespaces, seccomp,
6//! Landlock, and optional gVisor integration. It implements a subset of the OCI
7//! runtime spec and can be used both as a CLI tool and as a library.
8
9pub mod audit;
10pub mod checkpoint;
11pub mod container;
12pub mod error;
13pub mod filesystem;
14pub mod image;
15pub mod isolation;
16pub mod network;
17pub mod oci;
18pub mod resources;
19pub mod security;
20pub mod telemetry;
21pub mod topology;
22
23pub use error::{NucleusError, Result, StateTransition};