mise 2026.9.2

Dev tools, env vars, and tasks in one CLI
//! Configuration history: automatic checkpoints of tracked files, the
//! operations that change them, and the recovery they make possible.
//!
//! - [`store`] — the on-disk layout, the checkpoint record, and the index.
//! - [`shadow`] — the bare repository mise owns.
//! - [`tracked`] — what a capture covers and under which policies.
//! - [`checkpoint`] — the one entry point every capture goes through.
//! - [`scope`] — the operation a mutating command records into.
//! - [`journal`] — the write-ahead journal of what an operation changed.

pub(crate) mod checkpoint;
pub(crate) mod config;
pub(crate) mod describe_command;
pub(crate) mod enrollment;
pub(crate) mod health;
pub(crate) mod journal;
pub(crate) mod manifest;
pub(crate) mod notify;
pub(crate) mod recovery;
pub(crate) mod replay;
pub(crate) mod scope;
pub(crate) mod select;
pub(crate) mod shadow;
pub(crate) mod store;
pub(crate) mod sync;
pub(crate) mod tracked;
pub(crate) mod watch;

pub(crate) use scope::OperationScope;