smallrand 1.0.1

Random number generation with absolutely minimal dependencies and no unsafe code.
Documentation
[dependencies]

[features]
allow-getrandom = ["getrandom"]
default = ["std", "allow-getrandom"]
std = []

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

[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
description = """
Random number generation with absolutely minimal dependencies and no unsafe code.
"""
edition = "2021"
exclude = [".github/workflows/*"]
keywords = ["random", "prng", "rand", "xoshiro", "chacha"]
license = "MIT-0"
name = "smallrand"
readme = "readme.md"
repository = "https://github.com/hpenne/smallrand"
rust-version = "1.75"
version = "1.0.1"

[target."cfg(not(unix))".dependencies.getrandom]
optional = true
version = "0.3.2"