rusht 1.3.0

Shell commands written in Rust
Documentation
1
2
3
4
5
6
7
8
9
10

#[derive(Parser, Debug, Clone)]
#[command(about = env!("CARGO_PKG_DESCRIPTION"))]
pub struct Args {
}

#[test]
fn test_cli_args() {
    Args::try_parse_from(&["cmd", "--help"]).unwrap();
}