rng-cli 0.1.0

A random data generator CLI tool. Prints an infinite stream of data generated from a selected PRNG algorithm to stdout. Basically a CLI frontend for the `rand` crate.
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies
#
# If you believe there's an error in this file please file an
# issue against the rust-lang/cargo repository. If you're
# editing this file be aware that the upstream Cargo.toml
# will likely look very different (and much more reasonable)

[package]
edition = "2018"
name = "rng-cli"
version = "0.1.0"
authors = ["Linus Färnstrand <faern@faern.net>"]
description = "    A random data generator CLI tool. Prints an infinite stream of data generated from a selected\n    PRNG algorithm to stdout. Basically a CLI frontend for the `rand` crate.\n"
readme = "README.md"
keywords = ["rng", "prng", "random", "rand", "cli"]
categories = ["command-line-utilities", "algorithms", "cryptography"]
license = "Apache-2.0/MIT"
repository = "https://github.com/faern/rng-cli"

[[bin]]
name = "rng"
path = "src/main.rs"
[dependencies.rand]
version = "0.7.0"

[dependencies.rand_chacha]
version = "0.2.0"

[dependencies.rand_hc]
version = "0.2.0"

[dependencies.rand_pcg]
version = "0.2.0"

[dependencies.rand_xorshift]
version = "0.2.0"

[dependencies.structopt]
version = "0.2.18"