Skip to content

Commit 636672f

Browse files
committed
chore: use criterion2
1 parent 5b8e609 commit 636672f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ biome_js_parser = "0.5.7"
2424
biome_js_syntax = "0.5.7"
2525

2626
num_cpus = "1.16.0"
27-
criterion2 = { version = "0.7", default-features = false }
27+
criterion = { package = "criterion2", version = "0.7.2", default-features = false }
2828
rayon = "1.10.0"
2929
mimalloc = "0.1.39"
3030

3131
[features]
32-
codspeed = ["criterion2/codspeed"]
32+
codspeed = ["criterion/codspeed"]

benches/parser.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
pub use criterion2::{measurement::WallTime, *};
1+
use criterion::{measurement::WallTime, *};
22
use rayon::prelude::*;
33

44
#[global_allocator]

0 commit comments

Comments
 (0)