From 38d42d8feadd525fb88e1db3e07eeb7310f06b7c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 5 Apr 2026 08:17:56 +0000 Subject: [PATCH] Update criterion requirement from 0.5 to 0.8 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-plot-v0.7.0) --- updated-dependencies: - dependency-name: criterion dependency-version: 0.7.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- benches/Cargo.toml | 2 +- crates/disruptor-dsl/Cargo.toml | 2 +- crates/disruptor-seq/Cargo.toml | 2 +- crates/disruptor-wait/Cargo.toml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/benches/Cargo.toml b/benches/Cargo.toml index 81a7f18..e6fb20b 100644 --- a/benches/Cargo.toml +++ b/benches/Cargo.toml @@ -9,7 +9,7 @@ publish = false disruptor = { path = ".." } crossbeam = "0.8" crossbeam-utils = { workspace = true } -criterion = { version = "0.5", features = ["html_reports"] } +criterion = { version = "0.8", features = ["html_reports"] } [[bench]] name = "spsc" diff --git a/crates/disruptor-dsl/Cargo.toml b/crates/disruptor-dsl/Cargo.toml index 224f004..1ad28d4 100644 --- a/crates/disruptor-dsl/Cargo.toml +++ b/crates/disruptor-dsl/Cargo.toml @@ -21,7 +21,7 @@ core_affinity = "0.8.1" thiserror = { workspace = true } [dev-dependencies] -criterion = { version = "0.5", features = ["html_reports"] } +criterion = { version = "0.8", features = ["html_reports"] } [[bench]] name = "new_api_bench" diff --git a/crates/disruptor-seq/Cargo.toml b/crates/disruptor-seq/Cargo.toml index 27bccd5..131af50 100644 --- a/crates/disruptor-seq/Cargo.toml +++ b/crates/disruptor-seq/Cargo.toml @@ -15,7 +15,7 @@ rustdoc-args = ["--cfg", "docsrs"] disruptor-core = { workspace = true } [dev-dependencies] -criterion = { version = "0.5", features = ["html_reports"] } +criterion = { version = "0.8", features = ["html_reports"] } [[bench]] name = "sequencer_bench" diff --git a/crates/disruptor-wait/Cargo.toml b/crates/disruptor-wait/Cargo.toml index b2fbf68..e47833d 100644 --- a/crates/disruptor-wait/Cargo.toml +++ b/crates/disruptor-wait/Cargo.toml @@ -15,7 +15,7 @@ rustdoc-args = ["--cfg", "docsrs"] disruptor-core = { workspace = true } [dev-dependencies] -criterion = { version = "0.5", features = ["html_reports"] } +criterion = { version = "0.8", features = ["html_reports"] } [[bench]] name = "wait_strategy_bench"