cargo-run 0.6.0

A powerful, fast, and developer-friendly CLI tool for managing project scripts in Rust. Workspace-aware, cargo-script ready, with hooks, parallel execution, watch mode, and CI/CD templates.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! The cargo-run library (binary names: `cargo-script`, `cgs`).
//!
//! This crate exposes the building blocks used by the binaries — script
//! parsing, execution, workspace orchestration, cargo-script integration,
//! template rendering, hooks, parallel/watch execution and JSON output —
//! so that downstream tooling can embed cargo-run programmatically.

pub mod commands;
pub mod start;
pub mod error;
pub mod output;