diff --git a/Cargo.toml b/Cargo.toml index 423d342..fff859d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,6 +4,20 @@ version = "0.1.0" authors = ["Joe Ardent "] edition = "2018" +description = "A simple UNIX commandline utility to generate sequences of random values of different types." + +repository = "https://github.com/nebkor/randical" + +readme = "README.md" + +keywords = ["unix", "commandline", "bin", "cli", "random"] + +categories = ["command-line-utilities"] + +license = "GPL-3.0-or-later" + +maintenance = { status = "actively-developed" } + [dependencies] rand = "~0.5.5" clap = "~2.32.0" diff --git a/src/main.rs b/src/main.rs index 628cedf..008c626 100644 --- a/src/main.rs +++ b/src/main.rs @@ -4,7 +4,7 @@ use clap::{App, Arg, ArgMatches}; use rand::prelude::*; -const VERSION: &'static str = env!("CARGO_PKG_VERSION"); +const VERSION: &'static str = "1"; const DEFAULT_NUM_VALS: usize = 1; fn get_args() -> ArgMatches<'static> {