From 106bcb73bcfe1c3887795a6fa2b106c665df3d56 Mon Sep 17 00:00:00 2001 From: Matan Kushner Date: Mon, 1 Apr 2019 23:28:29 -0400 Subject: [PATCH] Add authors to help message --- src/main.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index aa0f7cf3..a9ac24a5 100644 --- a/src/main.rs +++ b/src/main.rs @@ -4,9 +4,11 @@ use clap::App; fn main() { let matches = App::new("Starship") - .about("The cross-platform prompt for astronauts.") + .about("The cross-platform prompt for astronauts. ✨🚀") // pull the version number from Cargo.toml .version(crate_version!()) + // pull the authors from Cargo.toml + .author(crate_authors!()) .get_matches(); }