[package]
edition = "2024"
name = "ax-rnd"
version = "0.1.5"
authors = ["Bagus Dwi Harianto robbymangkualam2000@gmail.com"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "AxRng is a fast, small random number generator (rng) library and CLI tool written in Rust."
readme = "README.md"
keywords = [
"rng",
"random",
"uuid",
"token",
"shuffle",
]
categories = [
"algorithms",
"no-std",
"command-line-utilities",
]
license = "MIT"
repository = "https://github.com/robby031/ax-rnd"
[features]
default = ["std"]
std = []
[lib]
name = "ax_rnd"
path = "src/lib.rs"
[[bin]]
name = "ax_rnd"
path = "src/main.rs"
[[example]]
name = "manual_bench"
path = "examples/manual_bench.rs"
[[test]]
name = "statistical"
path = "tests/statistical.rs"
[[test]]
name = "tests"
path = "tests/tests.rs"
[[bench]]
name = "axrnd_bench"
path = "benches/axrnd_bench.rs"
harness = false
[[bench]]
name = "competitors_bench"
path = "benches/competitors_bench.rs"
harness = false
[dependencies]
[dev-dependencies.criterion]
version = "0.5"
[dev-dependencies.fastrand]
version = "2"
[dev-dependencies.rand]
version = "0.9"
[profile.bench]
debug = 2
[profile.release]
debug = 2