2024-04-26 14:20:51 +02:00
|
|
|
[package]
|
2024-04-27 08:40:53 +01:00
|
|
|
name = "benches"
|
2024-04-26 14:20:51 +02:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2024-04-27 08:40:53 +01:00
|
|
|
publish = false
|
2024-04-26 14:20:51 +02:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
rand = { path = "..", features = ["small_rng", "nightly"] }
|
|
|
|
rand_pcg = { path = "../rand_pcg" }
|
|
|
|
rand_chacha = { path = "../rand_chacha" }
|
|
|
|
criterion = "0.5"
|
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "uniform"
|
2024-04-27 08:43:47 +01:00
|
|
|
path = "src/uniform.rs"
|
2024-04-26 14:20:51 +02:00
|
|
|
harness = false
|
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "seq_choose"
|
2024-04-27 08:43:47 +01:00
|
|
|
path = "src/seq_choose.rs"
|
2024-04-26 14:20:51 +02:00
|
|
|
harness = false
|
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "shuffle"
|
2024-04-27 08:43:47 +01:00
|
|
|
path = "src/shuffle.rs"
|
2024-04-26 14:20:51 +02:00
|
|
|
harness = false
|
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "uniform_float"
|
2024-04-27 08:43:47 +01:00
|
|
|
path = "src/uniform_float.rs"
|
2024-04-26 14:20:51 +02:00
|
|
|
harness = false
|