cargo-cunew 1.0.0

Bootstrap Copper projects from bundled templates.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use clap::Parser;

fn main() {
    let args = cargo_cunew::normalize_cargo_subcommand_args(std::env::args());
    let cli = cargo_cunew::Cli::parse_from(args);

    if let Err(error) = cargo_cunew::run(cli) {
        eprintln!("error: {error:#}");
        std::process::exit(1);
    }
}