1
0
mirror of https://github.com/Llewellynvdm/starship.git synced 2024-06-11 21:02:20 +00:00

Run rustfmt

This commit is contained in:
Matan Kushner 2019-04-01 23:30:53 -04:00
parent 106bcb73bc
commit 4e1ae06622
No known key found for this signature in database
GPG Key ID: 4B98C3A8949CA8A4

View File

@ -4,11 +4,10 @@ use clap::App;
fn main() { fn main() {
let matches = App::new("Starship") 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 // pull the version number from Cargo.toml
.version(crate_version!()) .version(crate_version!())
// pull the authors from Cargo.toml // pull the authors from Cargo.toml
.author(crate_authors!()) .author(crate_authors!())
.get_matches(); .get_matches();
} }