clap/clap_derive/examples/from_crate.rs
Marti Raudsepp 594c535ba2 Fix various typos in docs & code
Most errors detected and fixed with Topy (https://github.com/intgr/topy),
all verified by hand.
2020-07-19 03:10:28 +03:00

15 lines
429 B
Rust

//! How to derive the author, description, and version from Cargo.toml
use clap::Clap;
#[derive(Clap, Debug)]
#[clap(author, about, version)]
// ^^^^^^ <- derive author from Cargo.toml
// ^^^^^ <- derive description from Cargo.toml
// ^^^^^^^ <- derive version from Cargo.toml
struct Opt {}
fn main() {
let opt = Opt::parse();
println!("{:?}", opt);
}