Skip to main content

stackless_core/
lib.rs

1//! stackless-core: definition model, state store, and lifecycle engine.
2//!
3//! Substrate-agnostic by construction (ARCHITECTURE.md ยง8): nothing in
4//! this crate names a concrete substrate; providers implement the
5//! `Substrate` trait and register by name in the binary.
6
7pub mod checkpoint;
8pub mod def;
9pub mod engine;
10pub mod fault;
11pub mod lockfile;
12pub mod names;
13pub mod paths;
14pub mod process;
15pub mod state;
16pub mod substrate;
17pub mod types;