[][src]Macro clap::crate_description

macro_rules! crate_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();