aboutsummaryrefslogtreecommitdiff
path: root/clap/examples/19_auto_authors.rs
diff options
context:
space:
mode:
Diffstat (limited to 'clap/examples/19_auto_authors.rs')
-rw-r--r--clap/examples/19_auto_authors.rs15
1 files changed, 15 insertions, 0 deletions
diff --git a/clap/examples/19_auto_authors.rs b/clap/examples/19_auto_authors.rs
new file mode 100644
index 0000000..afbb985
--- /dev/null
+++ b/clap/examples/19_auto_authors.rs
@@ -0,0 +1,15 @@
+#[macro_use]
+extern crate clap;
+
+use clap::App;
+
+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 this app with -h will display whatever author(s) are in your
+ // Cargo.toml
+}