Ready for release 1. See VERSIONING.md for details.
This commit is contained in:
parent
48f78adfd4
commit
549d0e97cc
2 changed files with 15 additions and 1 deletions
14
Cargo.toml
14
Cargo.toml
|
@ -4,6 +4,20 @@ version = "0.1.0"
|
||||||
authors = ["Joe Ardent <code@ardent.nebcorp.com>"]
|
authors = ["Joe Ardent <code@ardent.nebcorp.com>"]
|
||||||
edition = "2018"
|
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]
|
[dependencies]
|
||||||
rand = "~0.5.5"
|
rand = "~0.5.5"
|
||||||
clap = "~2.32.0"
|
clap = "~2.32.0"
|
||||||
|
|
|
@ -4,7 +4,7 @@ use clap::{App, Arg, ArgMatches};
|
||||||
|
|
||||||
use rand::prelude::*;
|
use rand::prelude::*;
|
||||||
|
|
||||||
const VERSION: &'static str = env!("CARGO_PKG_VERSION");
|
const VERSION: &'static str = "1";
|
||||||
const DEFAULT_NUM_VALS: usize = 1;
|
const DEFAULT_NUM_VALS: usize = 1;
|
||||||
|
|
||||||
fn get_args() -> ArgMatches<'static> {
|
fn get_args() -> ArgMatches<'static> {
|
||||||
|
|
Loading…
Reference in a new issue