From 6fceb70b874414dfc7fadb6f937f4a2061b10613 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Dec 2025 16:46:06 +0000 Subject: [PATCH] Update criterion requirement from 0.6 to 0.7 Updates the requirements on [criterion](https://github.com/bheisler/criterion.rs) to permit the latest version. - [Changelog](https://github.com/bheisler/criterion.rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/bheisler/criterion.rs/compare/0.6.0...0.7.0) --- updated-dependencies: - dependency-name: criterion dependency-version: 0.7.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- rust/fizzbuzz/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/fizzbuzz/Cargo.toml b/rust/fizzbuzz/Cargo.toml index 16432a0..78cdcbb 100644 --- a/rust/fizzbuzz/Cargo.toml +++ b/rust/fizzbuzz/Cargo.toml @@ -13,7 +13,7 @@ rayon = "1.10.0" [dev-dependencies] googletest = "0.14.2" -criterion = { version = "0.7.0", features = ["html_reports"] } +criterion = { version = "0.8.0", features = ["html_reports"] } [[bench]] name = "bench_fizzbuzz"