arcature-cli 2026.1.1

Developer lifecycle CLI for Arcature applications.
Documentation
//! The Platform manifest module (RV2.8).
//!
//! Owns the Certified Stack Contract โ€” the Platform manifest that records
//! a certified set of Arcature crate versions tested together (ADR-0005
//! Decision ยง5). The manifest lives at `platform/<platform>.toml` and is
//! validated by CI.
//!
//! - [`model`] โ€” [`PlatformManifest`], [`PlatformVersion`] data types and
//!   TOML serialization.
//! - [`validate`] โ€” [`validate_platform`]: check the manifest against the
//!   real workspace state.
//!
//! No new dependency. No network (ADR-0005 invariant 15).

mod model;
mod validate;

pub(crate) use model::{PlatformManifest, PlatformVersion};
pub(crate) use validate::{PlatformValidationReport, validate_platform};