diff --git a/Cargo.lock b/Cargo.lock index 7306b413d..1284aac8c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -37,6 +37,15 @@ dependencies = [ "memchr", ] +[[package]] +name = "alloca" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e5a7d05ea6aea7e9e64d25b9156ba2fee3fdd659e34e41063cd2fc7cd020d7f4" +dependencies = [ + "cc", +] + [[package]] name = "android_system_properties" version = "0.1.5" @@ -496,10 +505,11 @@ dependencies = [ [[package]] name = "criterion" -version = "0.7.0" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e1c047a62b0cc3e145fa84415a3191f628e980b194c2755aa12300a4e6cbd928" +checksum = "a0dfe5e9e71bdcf4e4954f7d14da74d1cdb92a3a07686452d1509652684b1aab" dependencies = [ + "alloca", "anes", "cast", "ciborium", @@ -508,6 +518,7 @@ dependencies = [ "itertools 0.13.0", "num-traits", "oorandom", + "page_size", "plotters", "regex", "serde", @@ -518,9 +529,9 @@ dependencies = [ [[package]] name = "criterion-plot" -version = "0.6.0" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9b1bcc0dc7dfae599d84ad0b1a55f80cde8af3725da8313b528da95ef783e338" +checksum = "5de36c2bee19fba779808f92bf5d9b0fa5a40095c277aba10c458a12b35d21d6" dependencies = [ "cast", "itertools 0.13.0", @@ -1415,6 +1426,16 @@ version = "11.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e" +[[package]] +name = "page_size" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "30d5b2194ed13191c1999ae0704b7839fb18384fa22e49b57eeaa97d79ce40da" +dependencies = [ + "libc", + "winapi", +] + [[package]] name = "papergrid" version = "0.17.0" diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 219082dc0..8eb208d63 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -68,7 +68,7 @@ path-slash = "0.2.1" rust-embed = { version = "8.9.0", features = ["debug-embed"] } same-file = "1.0.6" walkdir = "2.5.0" -criterion = { version = "0.7.0", default-features = false, features = ["cargo_bench_support", "plotters"] } +criterion = { version = "0.8.0", default-features = false, features = ["cargo_bench_support", "plotters"] } [target.'cfg(not(target_family = "wasm"))'.dev-dependencies] assert_cmd = "2.1.1" diff --git a/lib/Cargo.toml b/lib/Cargo.toml index 2fe1ae38a..e24330364 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -43,7 +43,7 @@ pbkdf2 = { version = "0.12.2", features = ["simple", "parallel"] } [dev-dependencies] version-sync = "0.9.5" -criterion = { version = "0.7.0", default-features = false, features = ["cargo_bench_support", "plotters"] } +criterion = { version = "0.8.0", default-features = false, features = ["cargo_bench_support", "plotters"] } [target.'cfg(not(target_family = "wasm"))'.dev-dependencies] tokio = { version = "1.48.0", features = ["macros", "rt-multi-thread", "fs", "io-util"] }