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
12
//! Main entry point for the cgs shortname CLI tool.
//! 
//! This module initializes and runs the CLI using the `cargo-script` library.
use cargo_run::start;

/// Main function that runs the CLI tool.
///
/// This function serves as the entry point for the application, initializing
/// and running the command-line interface (CLI) by calling `start::run()`.
fn main() {
    start::run_with_error_handling();
}