[package]
edition = "2021"
rust-version = "1.89"
name = "oxicrypto-rand"
version = "0.1.0"
authors = ["COOLJAPAN OU (Team Kitasan)"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure Rust CSPRNG for OxiCrypto (ChaCha20 seeded from getrandom)"
readme = false
keywords = [
"cryptography",
"rng",
"csprng",
"chacha20",
"pure-rust",
]
categories = ["cryptography"]
license = "Apache-2.0"
repository = "https://github.com/cool-japan/oxicrypto"
[features]
default = []
std = [
"rand_chacha/std",
"oxicrypto-core/std",
]
[lib]
name = "oxicrypto_rand"
path = "src/lib.rs"
[[test]]
name = "statistical"
path = "tests/statistical.rs"
[dependencies.getrandom]
version = "0.4.2"
features = [
"std",
"sys_rng",
]
[dependencies.oxicrypto-core]
version = "0.1.0"
[dependencies.rand_chacha]
version = "0.10.0"
default-features = false
[dependencies.rand_core]
version = "0.10.1"
default-features = false