diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/main.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main.rs b/src/main.rs index 8b7fdca..fd01af8 100644 --- a/src/main.rs +++ b/src/main.rs | |||
@@ -45,10 +45,10 @@ fn main() { | |||
45 | } | 45 | } |
46 | 46 | ||
47 | fn parse_arguments() -> Configuration { | 47 | fn parse_arguments() -> Configuration { |
48 | let matches = App::new("Taizen") | 48 | let matches = App::new(env!("CARGO_PKG_NAME")) |
49 | .version("0.1.0") | 49 | .version(env!("CARGO_PKG_VERSION")) |
50 | .author("NerdyPepper") | 50 | .author(env!("CARGO_PKG_AUTHORS")) |
51 | .about("TUI MediaWiki browser") | 51 | .about(env!("CARGO_PKG_DESCRIPTION")) |
52 | .arg( | 52 | .arg( |
53 | Arg::with_name("URL") | 53 | Arg::with_name("URL") |
54 | .help("The URL of the wiki to be viewed") | 54 | .help("The URL of the wiki to be viewed") |