stackless-core 0.1.7

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

pub mod checkpoint;
pub mod def;
pub mod engine;
pub mod fault;
pub mod lockfile;
pub mod names;
pub mod paths;
pub mod process;
pub mod state;
pub mod substrate;
pub mod types;