[package]
edition = "2024"
rust-version = "1.85"
name = "rand_core"
version = "0.10.0"
authors = ["The Rand Project Developers"]
build = false
exclude = ["/.github"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core random number generation traits and tools for implementation."
homepage = "https://rust-random.github.io/book"
documentation = "https://docs.rs/rand_core"
readme = "README.md"
keywords = [
"random",
"rng",
]
categories = [
"algorithms",
"no-std",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-random/rand_core"
[package.metadata.docs.rs]
rustdoc-args = ["--generate-link-to-definition"]
[lib]
name = "rand_core"
path = "src/lib.rs"
[[test]]
name = "block"
path = "tests/block.rs"
[[test]]
name = "mod"
path = "tests/mod.rs"
[[test]]
name = "utils"
path = "tests/utils.rs"
[lints.clippy]
undocumented_unsafe_blocks = "warn"
[lints.rust]
missing_debug_implementations = "warn"
missing_docs = "warn"