-
-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(Authors Macro): adds a crate_authors macro
Adds a crate_authors! macro that fetches crate authors from a (recently added) cargo enviromental variable populated from the Cargo file. Like the crate_version macro. Closes #447
- Loading branch information
Showing
3 changed files
with
54 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
#[macro_use] | ||
extern crate clap; | ||
|
||
use clap::App; | ||
|
||
#[cfg(feature = "unstable")] | ||
fn main() { | ||
App::new("myapp") | ||
.about("does awesome things") | ||
// use crate_authors! to pull the author(s) names from the Cargo.toml | ||
.author(crate_authors!()) | ||
.get_matches(); | ||
|
||
// running the this app with the -h will display whatever author(s) are in your | ||
// Cargo.toml | ||
} | ||
|
||
#[cfg(not(feature = "unstable"))] | ||
fn main() { | ||
// if clap is not compiled with the unstable feature, it is disabled. | ||
println!("unstable feature disabled."); | ||
println!("Pass --features unstable to cargo when trying this example."); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -350,7 +350,7 @@ macro_rules! arg_enum { | |
}; | ||
} | ||
|
||
/// Allows you pull the version for an from your Cargo.toml at compile time as | ||
/// Allows you pull the version from your Cargo.toml at compile time as | ||
/// MAJOR.MINOR.PATCH_PKGVERSION_PRE | ||
/// | ||
/// # Examples | ||
|
@@ -372,6 +372,28 @@ macro_rules! crate_version { | |
}; | ||
} | ||
|
||
/// Allows you pull the authors for the app from your Cargo.toml at compile time as | ||
/// "author1 lastname. <[email protected]>", "author2 lastname. <[email protected]>" | ||
/// | ||
/// # Examples | ||
/// | ||
/// ```no_run | ||
/// # #[macro_use] | ||
/// # extern crate clap; | ||
/// # use clap::App; | ||
/// # fn main() { | ||
/// let m = App::new("app") | ||
/// .author(crate_authors!()) | ||
/// .get_matches(); | ||
/// # } | ||
/// ``` | ||
#[cfg_attr(feature = "unstable", macro_export)] | ||
macro_rules! crate_authors { | ||
() => { | ||
env!("CARGO_PKG_AUTHORS") | ||
}; | ||
} | ||
|
||
/// App, Arg, SubCommand and Group builder macro (Usage-string like input) must be compiled with | ||
/// the `unstable` feature in order to use. | ||
#[cfg_attr(feature = "unstable", macro_export)] | ||
|