summaryrefslogtreecommitdiffstats
path: root/src/main.rs
diff options
context:
space:
mode:
authorMatan Kushner <hello@matchai.me>2019-04-01 23:28:29 -0400
committerMatan Kushner <hello@matchai.me>2019-04-01 23:28:29 -0400
commit106bcb73bcfe1c3887795a6fa2b106c665df3d56 (patch)
tree5c3a9bae5023229581e9671dd98706dce73b6a79 /src/main.rs
parentca3f439012f3d1125e1863d383bb155f9f1f59d5 (diff)
Add authors to help message
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index aa0f7cf35..a9ac24a5a 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();
}