cargo-x 0.3.7

A very simple third-party cargo subcommand to execute a custom command.
Documentation
1
2
3
4
5
6
fn main() {
    cargo_x::start().unwrap_or_else(|err| {
        eprintln!("{}", err);
        std::process::exit(1);
    });
}