[dependencies.rand_core]
version = "=0.9.0-beta.1"
[dependencies.serde]
features = ["derive"]
optional = true
version = "1"
[dev-dependencies.bincode]
version = "1.1.4"
[dev-dependencies.rand_core]
features = ["os_rng"]
version = "=0.9.0-beta.1"
[features]
os_rng = ["rand_core/os_rng"]
serde = ["dep:serde"]
[lib]
name = "rand_pcg"
path = "src/lib.rs"
[package]
authors = ["The Rand Project Developers"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["algorithms", "no-std"]
description = """
Selected PCG random number generators
"""
documentation = "https://docs.rs/rand_pcg"
edition = "2021"
homepage = "https://rust-random.github.io/book"
keywords = ["random", "rng", "pcg"]
license = "MIT OR Apache-2.0"
name = "rand_pcg"
readme = "README.md"
repository = "https://github.com/rust-random/rand"
rust-version = "1.63"
version = "0.9.0-beta.1"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--generate-link-to-definition"]
[[test]]
name = "lcg128cmdxsm64"
path = "tests/lcg128cmdxsm64.rs"
[[test]]
name = "lcg128xsl64"
path = "tests/lcg128xsl64.rs"
[[test]]
name = "lcg64xsh32"
path = "tests/lcg64xsh32.rs"
[[test]]
name = "mcg128xsl64"
path = "tests/mcg128xsl64.rs"