//! Version pins this crate is tested against.
/// Muse Code release the live suite last passed against
/// (`muse --version` reports `Muse Code 1.0.2 (1.0.2-R2040.1)`). The
/// 0.1.0 and 0.2.1 captures remain committed and still parse — 1.0.1's
/// wire is a near-superset (its one observed break, `profile_id: null`
/// on `run.model.configured`, is modeled as `Option`).
pub const TESTED_MUSE_VERSION: &str = "1.0.2";
/// Full build string of the tested binary.
pub const TESTED_MUSE_BUILD: &str = "1.0.2-R2040.1";
/// Envelope `schema_version` the models target.
pub const STREAM_SCHEMA_VERSION: u32 = 1;
/// The tested-against CLI release — the workspace-uniform accessor
/// (`tested_cli_version()` exists in every crate here); alias of
/// [`TESTED_MUSE_VERSION`]. Kept in lockstep with the README by CI.
/// The full build string of the tested release; alias of
/// [`TESTED_MUSE_BUILD`].