[package]
edition = "2024"
name = "rand_jitter_kernel"
version = "0.2.0"
authors = ["Markus Theil <theil.markus@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "provides interface to Linux kernel jitterentropy_rng"
readme = "README.md"
keywords = [
"rand",
"random",
"rng",
"jitterentropy",
]
categories = ["cryptography"]
license = "MIT"
repository = "https://github.com/thillux/rand_jitter_kernel"
[lib]
name = "rand_jitter_kernel"
path = "src/lib.rs"
[[test]]
name = "rngs"
path = "tests/rngs.rs"
[dependencies.libc]
version = ">=0.2.180"
[dependencies.rand_core]
version = "0.10.0"
[dev-dependencies.rand]
version = "0.10.0"
[dev-dependencies.rand_chacha]
version = "0.10.0"
[dev-dependencies.rand_xoshiro]
version = "0.8.0"
[lints.clippy.all]
level = "deny"
priority = 0
[lints.clippy.cargo]
level = "deny"
priority = 0
[lints.clippy.pedantic]
level = "deny"
priority = 0
[lints.rust]
missing_debug_implementations = "deny"
missing_docs = "deny"