clap 3.0.0

A simple to use, efficient, and full-featured Command Line Argument Parser
Documentation
use clap::Parser;

#[derive(Parser)]
#[clap(author, version, about)]
struct Cli {
    /// Network port to use
    #[clap(parse(try_from_str))]
    port: usize,
}

fn main() {
    let cli = Cli::parse();

    println!("PORT = {}", cli.port);
}

#[test]
fn verify_app() {
    use clap::IntoApp;
    Cli::into_app().debug_assert()
}