rand_dev 0.3.0

Reproducible randomness source for tests
Documentation
[package]
name = "rand_dev"
version = "0.3.0"
license = "MIT OR Apache-2.0"
edition = "2024"

description = "Reproducible randomness source for tests"
categories = ["development-tools", "development-tools::debugging", "development-tools::testing"]
keywords = ["tests", "reproducibility", "rand"]
repository = "https://github.com/survived/rand_dev"

[dependencies]
rand_core = { version = "0.10" }
rand_chacha = "0.10"
getrandom = { version = "0.4.2", default-features = false, features = ["sys_rng"] }
const-hex = { version = "1", default-features = false, features = ["alloc"] }

rand = { version = "0.10", optional = true }

[dev-dependencies]
rand = "0.10"

[features]
default = []

rand-v010 = ["dep:rand"]