romu 0.6.0

A pseudo random number generator using the Romu algorithm.
Documentation
[package]

name = "romu"

description = "A pseudo random number generator using the Romu algorithm."

authors = ["Nils Hasenbanck <nils@hasenbanck.de>"]

keywords = ["rand", "random", "no-std", "romu"]

categories = ["algorithms", "no-std"]

license = "Apache-2.0"

readme = "README.md"

documentation = "https://docs.rs/romu"

repository = "https://github.com/hasenbanck/romu/"

version = "0.6.0"

edition = "2021"

rust-version = "1.57"



[dependencies]

getrandom = { version = "0.2", optional = true }



[dev-dependencies]

criterion = "0.5"



[features]

default = ["std", "tls", "getrandom"]

std = []

tls = ["std"]

unstable_tls = ["std", "tls"]

unstable_simd = []



[profile.release]

opt-level = 3

codegen-units = 1

lto = "fat"



[profile.bench]

opt-level = 3

codegen-units = 1

lto = "fat"



[[bench]]

name = "random"

harness = false



[package.metadata.docs.rs]

rustdoc-args = ["--cfg", "docsrs"]