rand/benches/Cargo.toml

41 lines
714 B
TOML
Raw Normal View History

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" }
2024-04-27 08:59:58 +01:00
rand_distr = { path = "../rand_distr" }
2024-04-26 14:20:51 +02:00
criterion = "0.5"
2024-04-27 08:59:58 +01:00
criterion-cycles-per-byte = "0.6"
[[bench]]
name = "distributions"
path = "src/distributions.rs"
harness = false
2024-04-26 14:20:51 +02:00
[[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