rand/benches/Cargo.toml
Diggory Hardy 9e030aa221
Migrate remaining benchmarks to Criterion (#1490)
Translate everything still using the old test harness to Criterion.
2024-09-06 09:07:47 +01:00

56 lines
791 B
TOML

[package]
name = "benches"
version = "0.1.0"
edition = "2021"
publish = false
[dependencies]
[dev-dependencies]
rand = { path = "..", features = ["small_rng", "nightly"] }
rand_pcg = { path = "../rand_pcg" }
rand_chacha = { path = "../rand_chacha" }
rand_distr = { path = "../rand_distr" }
criterion = "0.5"
criterion-cycles-per-byte = "0.6"
[[bench]]
name = "array"
harness = false
[[bench]]
name = "bool"
harness = false
[[bench]]
name = "distr"
harness = false
[[bench]]
name = "generators"
harness = false
[[bench]]
name = "seq_choose"
harness = false
[[bench]]
name = "shuffle"
harness = false
[[bench]]
name = "standard"
harness = false
[[bench]]
name = "uniform"
harness = false
[[bench]]
name = "uniform_float"
harness = false
[[bench]]
name = "weighted"
harness = false