File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed
Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ name = "tmc-langs-cli"
33version = " 0.1.0"
44authors = [" Daniel Martinez <daniel.x.martinez@helsinki.fi>" ]
55edition = " 2018"
6+ description = " CLI client for TMC"
67
78[dependencies ]
89tmc-langs-core = { path = " ../tmc-langs-core" }
Original file line number Diff line number Diff line change @@ -17,10 +17,10 @@ use walkdir::WalkDir;
1717fn main ( ) {
1818 env_logger:: init ( ) ;
1919
20- let matches = App :: new ( "TestMyCode" )
21- . version ( "0.1.0" )
22- . author ( "Daniel Martinez <daniel.x.martinez@helsinki.fi" )
23- . about ( "CLI client for TMC" )
20+ let matches = App :: new ( env ! ( "CARGO_PKG_NAME" ) )
21+ . version ( env ! ( "CARGO_PKG_VERSION" ) )
22+ . author ( env ! ( "CARGO_PKG_AUTHORS" ) )
23+ . about ( env ! ( "CARGO_PKG_DESCRIPTION" ) )
2424
2525 . subcommand ( SubCommand :: with_name ( "checkstyle" )
2626 . about ( "Run checkstyle or similar plugin to project if applicable." )
You can’t perform that action at this time.
0 commit comments