arcature-cli 2026.1.0

Developer lifecycle CLI for Arcature applications.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Certified Stack Contract — machine-readable cross-ecosystem certification.
//!
//! The contract (`contract.toml`) is the single source of truth for the
//! foundation stack Arcature certifies. `arc doctor` loads it and reports each
//! component's actual version against the certified version. Certification is
//! information and testing policy, not ecosystem lock-in: Cargo overrides are
//! not prevented; an override outside the certified matrix is reported as
//! `UNVERIFIED OVERRIDE`.

mod contract;
mod diagnostic;

pub(crate) use contract::load;
pub(crate) use diagnostic::{check_cargo_lock, check_frontend};