cribler 0.3.0

Statistical randomness-test toolkit (chi-squared, serial, runs, KS, birthday spacing, NIST SP 800-22, paranoid meta-test). Batteries-included layer over cribler_core.
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 = "2024"
name = "cribler"
version = "0.3.0"
authors = ["cet"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Statistical randomness-test toolkit (chi-squared, serial, runs, KS, birthday spacing, NIST SP 800-22, paranoid meta-test). Batteries-included layer over cribler_core."
readme = "README.md"
keywords = [
    "random",
    "rng",
    "statistics",
    "testing",
    "nist",
]
categories = [
    "algorithms",
    "science",
    "development-tools::testing",
]
license = "MIT"
repository = "https://github.com/cet-t/cribler"

[features]
rand = ["dep:rand_core"]
serde = [
    "dep:serde",
    "cribler_core/serde",
]
urng = [
    "dep:urng",
    "dep:pastey",
]

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

[[example]]
name = "test"
path = "examples/test.rs"
required-features = [
    "rand",
    "urng",
    "serde",
]

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

[dependencies.cribler_core]
version = "0.2"

[dependencies.hashbrown]
version = "0.17.1"
features = ["serde"]

[dependencies.pastey]
version = "0.2.3"
optional = true

[dependencies.rand_core]
version = "0.10"
optional = true

[dependencies.serde]
version = "1.0.229"
features = ["derive"]
optional = true

[dependencies.thiserror]
version = "2.0.19"

[dependencies.urng]
version = "0.12.0"
optional = true

[dev-dependencies.anyhow]
version = "1.0.104"

[dev-dependencies.rand]
version = "0.10"
features = ["std_rng"]
default-features = false

[dev-dependencies.rand_core]
version = "0.10"

[dev-dependencies.rand_sfc]
version = "0.2.0"

[dev-dependencies.serde_json]
version = "1.0"

[dev-dependencies.urng]
version = "0.12.0"

[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1