Skip to main content

nucleus/
lib.rs

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