logo
macro_rules! crate_description {
    () => { ... };
}
This is supported on crate feature cargo only.
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();