StructOpt

Parse Command Line Arguments with Structs

StructOpt is a library that parses command line arguments by defining a struct with derive macros.

Features:

Usage:

#[derive(StructOpt)]
struct Cli {
    #[structopt(short, long)]
    verbose: bool,
}
Back to Framework List