//! Rust script runner — compile and execute Rust files as scripts with output capture.
//!
//! Provides a three-level builder hierarchy for constructing execution plans
//! (`Source`, `Program`, `Plan`), execution entry points (`run`, `run_file`,
//! `run_source`, `run_project`), and a captured output type with assertion
//! methods for use in Rust test functions.
mod_interface!
pub use run_cli;