From a899191412b1bc287ddcc98fdd10f3420191501a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 Aug 2025 21:17:04 +0000 Subject: [PATCH] fix(deps): bump bm25 from 2.2.1 to 2.3.1 Bumps [bm25](https://github.com/Michael-JB/bm25) from 2.2.1 to 2.3.1. - [Release notes](https://github.com/Michael-JB/bm25/releases) - [Changelog](https://github.com/Michael-JB/bm25/blob/main/CHANGELOG.md) - [Commits](https://github.com/Michael-JB/bm25/compare/v2.2.1...v2.3.1) --- updated-dependencies: - dependency-name: bm25 dependency-version: 2.3.1 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 14 +++++++------- crates/semantic-search-client/Cargo.toml | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2e3c1f680..7013878d9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -948,9 +948,9 @@ dependencies = [ [[package]] name = "bm25" -version = "2.2.1" +version = "2.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9874599901ae2aaa19b1485145be2fa4e9af42d1b127672a03a7099ab6350bac" +checksum = "b84ff0d57042bc263e2ebadb3703424b59b65870902649a2b3d0f4d7ab863244" dependencies = [ "cached", "deunicode", @@ -1043,14 +1043,14 @@ dependencies = [ [[package]] name = "cached" -version = "0.55.1" +version = "0.56.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b0839c297f8783316fcca9d90344424e968395413f0662a5481f79c6648bbc14" +checksum = "801927ee168e17809ab8901d9f01f700cd7d8d6a6527997fee44e4b0327a253c" dependencies = [ "ahash", "cached_proc_macro", "cached_proc_macro_types", - "hashbrown 0.14.5", + "hashbrown 0.15.4", "once_cell", "thiserror 2.0.12", "web-time", @@ -1058,9 +1058,9 @@ dependencies = [ [[package]] name = "cached_proc_macro" -version = "0.24.0" +version = "0.25.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "673992d934f0711b68ebb3e1b79cdc4be31634b37c98f26867ced0438ca5c603" +checksum = "9225bdcf4e4a9a4c08bf16607908eb2fbf746828d5e0b5e019726dbf6571f201" dependencies = [ "darling", "proc-macro2", diff --git a/crates/semantic-search-client/Cargo.toml b/crates/semantic-search-client/Cargo.toml index 9f6b09551..5e30276f1 100644 --- a/crates/semantic-search-client/Cargo.toml +++ b/crates/semantic-search-client/Cargo.toml @@ -29,7 +29,7 @@ tokio-util.workspace = true hnsw_rs = "=0.3.1" # BM25 implementation - works on all platforms including ARM -bm25 = { version = "2.2.1", features = ["language_detection"] } +bm25 = { version = "2.3.1", features = ["language_detection"] } # Common dependencies for all platforms anyhow = "1.0"