Skip to main content

cargo_run/
lib.rs

1//! The cargo-run library (binary names: `cargo-script`, `cgs`).
2//!
3//! This crate exposes the building blocks used by the binaries — script
4//! parsing, execution, workspace orchestration, cargo-script integration,
5//! template rendering, hooks, parallel/watch execution and JSON output —
6//! so that downstream tooling can embed cargo-run programmatically.
7
8pub mod commands;
9pub mod start;
10pub mod error;
11pub mod output;