From fbf43af2edf1ee2d2de19755fb68e49ecdc7c362 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Dec 2025 01:31:58 +0000 Subject: [PATCH] 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.0) --- updated-dependencies: - dependency-name: criterion dependency-version: 0.8.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- crates/bpe/benchmarks/Cargo.toml | 2 +- crates/geo_filters/Cargo.toml | 2 +- crates/string-offsets/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/crates/bpe/benchmarks/Cargo.toml b/crates/bpe/benchmarks/Cargo.toml index a4c7de3..10b517a 100644 --- a/crates/bpe/benchmarks/Cargo.toml +++ b/crates/bpe/benchmarks/Cargo.toml @@ -20,7 +20,7 @@ test = true [dependencies] bpe = { path = "../../bpe", features = ["rand", "tiktoken"] } bpe-openai = { path = "../../bpe-openai" } -criterion = "0.7" +criterion = "0.8" rand = "0.9" tiktoken-rs = "0.9" tokenizers = { version = "0.22", features = ["http"] } diff --git a/crates/geo_filters/Cargo.toml b/crates/geo_filters/Cargo.toml index 18b6784..2e11184 100644 --- a/crates/geo_filters/Cargo.toml +++ b/crates/geo_filters/Cargo.toml @@ -37,7 +37,7 @@ serde = { version = "1.0", default-features = false, optional = true } rand_chacha = { version = "0.9", optional = true } [dev-dependencies] -criterion = "0.7" +criterion = "0.8" geo_filters = { path = ".", features = ["evaluation"] } rand = "0.9" rand_chacha = "0.9" diff --git a/crates/string-offsets/Cargo.toml b/crates/string-offsets/Cargo.toml index e20db3b..cdac009 100644 --- a/crates/string-offsets/Cargo.toml +++ b/crates/string-offsets/Cargo.toml @@ -22,7 +22,7 @@ wasm-bindgen = { version = "0.2", optional = true } [dev-dependencies] rand = "0.9" rand_chacha = "0.9" -criterion = "0.7" +criterion = "0.8" [[bench]] name = "performance"