From 549d0e97cc351175401c672f8c568d351be54795 Mon Sep 17 00:00:00 2001 From: Joe Ardent Date: Tue, 23 Oct 2018 16:41:42 -0700 Subject: [PATCH] Ready for release 1. See VERSIONING.md for details. --- Cargo.toml | 14 ++++++++++++++ src/main.rs | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) 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> {