From 2f5a48e8b13e667b8a083497aeeaebd36cddbf4b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 25 Apr 2026 14:15:53 +0200 Subject: [PATCH] Update criterion requirement from 0.5 to 0.8 (#2873) Updates the requirements on [criterion](https://github.com/criterion-rs/criterion.rs) to permit the latest version. - [Release notes](https://github.com/criterion-rs/criterion.rs/releases) - [Changelog](https://github.com/criterion-rs/criterion.rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/criterion-rs/criterion.rs/compare/0.5.0...criterion-v0.8.2) --- updated-dependencies: - dependency-name: criterion dependency-version: 0.8.2 dependency-type: direct:production ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.toml | 2 +- sstable/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index acf9099d1..93464ff25 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -92,7 +92,7 @@ postcard = { version = "1.0.4", features = [ ], default-features = false } [target.'cfg(not(windows))'.dev-dependencies] -criterion = { version = "0.5", default-features = false } +criterion = { version = "0.8", default-features = false } [dev-dependencies.fail] version = "0.5.0" diff --git a/sstable/Cargo.toml b/sstable/Cargo.toml index d03a9fc46..b963d8467 100644 --- a/sstable/Cargo.toml +++ b/sstable/Cargo.toml @@ -23,7 +23,7 @@ zstd-compression = ["zstd"] [dev-dependencies] proptest = "1" -criterion = { version = "0.5", default-features = false } +criterion = { version = "0.8", default-features = false } names = "0.14" rand = "0.9"