randical/Cargo.toml
Joe Ardent c67c1c459c Removes need for beta or nightly toolchain.
Previously, it was using 'edition = "2018"' in the manifest, which
enabled nifty new features like "not having to say 'extern crate'". See
https://rust-lang-nursery.github.io/edition-guide/editions/index.html.
2018-10-24 18:10:05 -07:00

22 lines
509 B
TOML

[package]
name = "randical"
version = "0.1.1"
authors = ["Joe Ardent <code@ardent.nebcorp.com>"]
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"