[package]
edition = "2021"
rust-version = "1.75"
name = "smallrand"
version = "1.1.0"
build = false
exclude = [".github/workflows/*"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
Random number generation with absolutely minimal dependencies and no unsafe code.
"""
readme = "readme.md"
keywords = [
"random",
"prng",
"rand",
"xoshiro",
"chacha",
]
license = "MIT-0"
repository = "https://github.com/hpenne/smallrand"
[features]
allow-getrandom = ["getrandom"]
default = [
"std",
"allow-getrandom",
]
std = []
[lib]
name = "smallrand"
path = "src/lib.rs"
[dependencies]
[target."cfg(not(unix))".dependencies.getrandom]
version = "0.4.2"
optional = true