We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b8e609 commit 636672fCopy full SHA for 636672f
Cargo.toml
@@ -24,9 +24,9 @@ biome_js_parser = "0.5.7"
24
biome_js_syntax = "0.5.7"
25
26
num_cpus = "1.16.0"
27
-criterion2 = { version = "0.7", default-features = false }
+criterion = { package = "criterion2", version = "0.7.2", default-features = false }
28
rayon = "1.10.0"
29
mimalloc = "0.1.39"
30
31
[features]
32
-codspeed = ["criterion2/codspeed"]
+codspeed = ["criterion/codspeed"]
benches/parser.rs
@@ -1,4 +1,4 @@
1
-pub use criterion2::{measurement::WallTime, *};
+use criterion::{measurement::WallTime, *};
2
use rayon::prelude::*;
3
4
#[global_allocator]
0 commit comments