pcg_rand 0.8.0

An implementation of the PCG family of random number generators in pure Rust
Documentation
[package]
name = "pcg_rand"
version = "0.8.0"
authors = ["Jeb Brooks <robojeb@robojeb.xyz>"]

homepage = "https://github.com/robojeb/pcg_rand"
repository = "https://github.com/robojeb/pcg_rand"
documentation = "https://docs.rs/pcg_rand/"

license = "Apache-2.0"

keywords = ["rand", "pcg"]

readme = "README.md"

description = "An implementation of the PCG family of random number generators in pure Rust"

[lib]
name = "pcg_rand"
path = "src/lib.rs"

[[bin]]
name = "pcg_demo"
path = "src/main.rs"

[dependencies]
rand = { version="0.4.2", features=["i128_support"]}
num-traits = { version="0.2.3", features=["i128"]}