cargo-run 0.1.0

A CLI tool to run custom scripts in Rust, defined in Scripts.toml
Documentation
1
2
3
4
5
6
7
8
9
//! 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.
fn main() {
    start::run();
}