systemg 0.60.0

An agent-friendly general process composer.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! The `restart` command, rebuilt from first principles.
//!
//! - [`crate::restart::plan`] — resolves selectors into an exhaustive
//!   [`crate::restart::RestartPlan`], with a [`crate::restart::preflight`] that
//!   refuses illegal operations before any side effect.

pub mod plan;
pub mod reconcile;

pub use plan::{
    Preflight, RestartPlan, World, manifest_rejected, preflight, reconcile_incomplete,
    recycle_failed, recycle_refused, resolve_plan,
};
pub use reconcile::ManifestDiff;