cargo-run 0.4.0

A CLI tool to run custom scripts in Rust, defined in Scripts.toml
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();
}