[package]
edition = "2024"
rust-version = "1.85.0"
name = "rapidrand"
version = "0.1.2"
authors = ["Liam Gray <gmail@liamg.me>"]
build = false
exclude = ["Cargo.lock"]
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An extremely fast pseudo-random number generator."
documentation = "https://docs.rs/rapidrand"
readme = "README.md"
keywords = [
"rand",
"rng",
"random",
"no-std",
"rapidhash",
]
categories = [
"algorithms",
"no-std",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/hoxxep/rapidrand"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
default = ["rand"]
rand = ["dep:rand_core"]
[lib]
name = "rapidrand"
path = "src/lib.rs"
[[test]]
name = "rng"
path = "tests/rng.rs"
[dependencies.rand_core]
version = "0.10"
optional = true
default-features = false
[dev-dependencies.rand]
version = "0.10"
[lints.rust]
unused_must_use = "deny"