arkhe-rand 0.13.0

BLAKE3-keyed PRNG with split() determinism — Lemire unbiased range + Fisher-Yates shuffle. Shell-side use (kernel/runtime forbids RNG for deterministic replay).
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.80"
name = "arkhe-rand"
version = "0.13.0"
authors = ["Arkhe Contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "BLAKE3-keyed PRNG with split() determinism — Lemire unbiased range + Fisher-Yates shuffle. Shell-side use (kernel/runtime forbids RNG for deterministic replay)."
homepage = "https://github.com/aceamro/ArkheForge"
documentation = "https://docs.rs/arkhe-rand"
readme = "README.md"
keywords = [
    "rng",
    "blake3",
    "no-std",
    "deterministic",
]
categories = [
    "no-std",
    "algorithms",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/aceamro/ArkheForge"

[features]
default = ["os-entropy"]
os-entropy = ["dep:getrandom"]

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

[[test]]
name = "golden_vector"
path = "tests/golden_vector.rs"

[[test]]
name = "proptest_basic"
path = "tests/proptest_basic.rs"

[dependencies.blake3]
version = "1.5"
default-features = false

[dependencies.getrandom]
version = "0.2"
optional = true
default-features = false

[dependencies.zeroize]
version = "1.8"
features = ["derive"]

[dev-dependencies.proptest]
version = "1.5"

[lints.clippy]
dbg_macro = "deny"
expect_used = "deny"
panic = "deny"
todo = "deny"
unimplemented = "deny"
unwrap_used = "deny"