From ef820c9caef54001833ed7154c2aa1e811dfab51 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 19 May 2025 01:10:32 +0000 Subject: [PATCH] Update criterion requirement from 0.5 to 0.6 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.5.0...0.6.0) --- updated-dependencies: - dependency-name: criterion dependency-version: 0.6.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 a332b27..e2f0234 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.5" +criterion = "0.6" rand = "0.9" tiktoken-rs = "0.6" tokenizers = { version = "0.21", features = ["http"] } diff --git a/crates/geo_filters/Cargo.toml b/crates/geo_filters/Cargo.toml index b8a71e4..e850564 100644 --- a/crates/geo_filters/Cargo.toml +++ b/crates/geo_filters/Cargo.toml @@ -33,7 +33,7 @@ rayon = { version = "1.7", optional = true } regex = { version = "1", optional = true } [dev-dependencies] -criterion = "0.5" +criterion = "0.6" 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 40fab03..656b92e 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.5" +criterion = "0.6" [[bench]] name = "performance"