harn-vm 0.10.96

Async bytecode virtual machine for the Harn programming language
Documentation
//! Prepared-run authority reconciliation.
//!
//! [`PreparedRun`] is the external seam: callers provide a value-free
//! [`RunIntent`] and observed [`HostFacts`], then receive either a ready
//! [`AuthorityLease`], one batched approval request, or actionable blocking
//! diagnostics. Execution consumes the lease through the same canonical
//! evaluators used during preparation and persists terminal authority evidence.

mod contracts;
mod discovery;
mod engine;
mod identity;
mod receipt;

pub use contracts::*;
pub use discovery::*;
pub use engine::*;
pub use identity::*;
pub use receipt::*;

#[cfg(test)]
mod tests;