File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ authors = ["Masanori Ueno <masanori0213@gmail.com>"]
55license = " GPL-3.0"
66edition = " 2021"
77repository = " https://github.com/masan4444/phpup"
8- description = " Fast and Simple PHP version manager"
8+ description = " Cross-Platform PHP version manager"
99keywords = [" php" , " version" , " manager" ]
1010categories = [" command-line-utilities" , " development-tools" ]
1111
Original file line number Diff line number Diff line change @@ -2,7 +2,12 @@ use crate::commands::{self, Command};
22use crate :: config:: Config ;
33
44#[ derive( clap:: Parser , Debug ) ]
5- #[ clap( name = "PHP-UP" , bin_name = "phpup" ) ]
5+ #[ clap(
6+ name = env!( "CARGO_PKG_NAME" ) ,
7+ version = env!( "CARGO_PKG_VERSION" ) ,
8+ bin_name = "phpup" ,
9+ about = env!( "CARGO_PKG_DESCRIPTION" )
10+ ) ]
611pub struct Cli {
712 #[ clap( flatten) ]
813 pub config : Config ,
You can’t perform that action at this time.
0 commit comments