From 1d4f6abdfad6b0d659c34475c60504e2c9af57d9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 29 Jul 2025 20:37:23 +0000 Subject: [PATCH] fix(deps): bump bm25 from 2.2.1 to 2.3.0 --- updated-dependencies: - dependency-name: bm25 dependency-version: 2.3.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- crates/semantic-search-client/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index df086dfae2..71131d080b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -948,9 +948,9 @@ dependencies = [ [[package]] name = "bm25" -version = "2.2.1" +version = "2.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9874599901ae2aaa19b1485145be2fa4e9af42d1b127672a03a7099ab6350bac" +checksum = "1036029224bd72581186b629168952596c4964686dcdd59bccd810a7be1f5843" dependencies = [ "cached", "deunicode", diff --git a/crates/semantic-search-client/Cargo.toml b/crates/semantic-search-client/Cargo.toml index 7692c1acf7..ab35f0814a 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.0", features = ["language_detection"] } # Common dependencies for all platforms anyhow = "1.0"