Macro clap::crate_description [−][src]
macro_rules! crate_description { () => { ... }; }
Expand description
Allows you to pull the description from your Cargo.toml at compile time.
Examples
let m = App::new("app") .about(crate_description!()) .get_matches();