macro_rules! crate_description {
() => { ... };
}
Available on crate feature
cargo
only.Expand description
Allows you to pull the description from your Cargo.toml at compile time.
ยงExamples
let m = Command::new("cmd")
.about(crate_description!())
.get_matches();