//! Local execution backend.
//!
//! Runs the whole build in-process via a DAG scheduler. Each step is
//! executed inside a lightweight VM by the [`runner::vm::VmRunner`], which
//! drives the [`hm_vm`] subsystem (a [`hm_vm::VmBackend`] + snapshot
//! registry). Caching is owned by `hm-vm`, not the scheduler.
pub use LocalBackend;
pub use RunnerRegistry; // intra-crate: local/backend.rs via crate::local::
pub use VmRunner; // intra-crate: local/backend.rs via crate::local::
pub use chain_count;
pub use run;
pub use ; // intra-crate: cloud/backend.rs via crate::local::