Macro clap::crate_version
source · macro_rules! crate_version {
() => { ... };
}
Expand description
Allows you pull the version for an from your Cargo.toml as MAJOR.MINOR.PATCH_PKGVERSION_PRE
§Example
let m = App::new("app")
.version(crate_version!())
.get_matches();