Move Criterion benches to benches/src

This commit is contained in:
Diggory Hardy 2024-04-27 08:43:47 +01:00
parent 3c0661b804
commit 24b84a09a1
6 changed files with 4 additions and 7 deletions

View File

@ -14,20 +14,20 @@ criterion = "0.5"
[[bench]]
name = "uniform"
path = "benches/uniform.rs"
path = "src/uniform.rs"
harness = false
[[bench]]
name = "seq_choose"
path = "benches/seq_choose.rs"
path = "src/seq_choose.rs"
harness = false
[[bench]]
name = "shuffle"
path = "benches/shuffle.rs"
path = "src/shuffle.rs"
harness = false
[[bench]]
name = "uniform_float"
path = "benches/uniform_float.rs"
path = "src/uniform_float.rs"
harness = false

View File

@ -1,3 +0,0 @@
fn main() {
println!("Please use `cargo bench` to run the benchmarks instead.");
}