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(); }