meerkat-runtime 0.7.3

v9 runtime control-plane for Meerkat agent lifecycle
Documentation
//! AuthMachine runtime surface.
//!
//! Per-binding auth-lease lifecycle machine. Each typed `LeaseKey`
//! (`realm`, `binding`, optional `profile`) has its own `AuthMachine`
//! instance, managed by the lease-key registry in
//! `meerkat-runtime/src/handles/auth_lease.rs`.
//!
//! See `dsl.rs` for the machine definition. See
//! `meerkat-machine-schema/src/catalog/dsl/auth_machine.rs` for the
//! schema-catalog mirror (the two must stay structurally identical;
//! the xtask drift-check enforces this).

#[allow(
    dead_code,
    clippy::assign_op_pattern,
    clippy::cmp_owned,
    clippy::unused_self,
    clippy::unnecessary_map_on_constructor
)]
pub mod dsl;