From 74b1231e030348c4617895ca1ea14830fda932f7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 8 Dec 2025 13:34:03 +0000 Subject: [PATCH] build(deps): update criterion requirement from 0.7 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/criterion-plot-v0.7.0...criterion-v0.8.1) --- updated-dependencies: - dependency-name: criterion dependency-version: 0.8.1 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- benchmarks/Cargo.toml | 2 +- defiant/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/benchmarks/Cargo.toml b/benchmarks/Cargo.toml index 32e2002..a94f002 100644 --- a/benchmarks/Cargo.toml +++ b/benchmarks/Cargo.toml @@ -11,7 +11,7 @@ defiant-build = { path = "../defiant-build" } [dev-dependencies] defiant = { path = "../defiant" } -criterion = { version = "0.7", default-features = false } +criterion = { version = "0.8", default-features = false } dhat = "0.3" # Heap allocation profiler [lib] diff --git a/defiant/Cargo.toml b/defiant/Cargo.toml index 22baaa7..1219087 100644 --- a/defiant/Cargo.toml +++ b/defiant/Cargo.toml @@ -27,7 +27,7 @@ defiant-derive = { version = "0.1.0", path = "../defiant-derive", optional = tru bumpalo = { version = "3.16", features = ["collections"] } [dev-dependencies] -criterion = { version = "0.7", default-features = false } +criterion = { version = "0.8", default-features = false } proptest = "1" rand = "0.9" dhat = "0.3"