From f659880380bb0b111a9dacfd76b50f849032e820 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 3 Jun 2026 22:49:18 +0000 Subject: [PATCH] deps(backend)(deps): bump llama-cpp-4 from 0.2.61 to 0.3.0 in /backend Bumps [llama-cpp-4](https://github.com/eugenehp/llama-cpp-rs) from 0.2.61 to 0.3.0. - [Release notes](https://github.com/eugenehp/llama-cpp-rs/releases) - [Changelog](https://github.com/eugenehp/llama-cpp-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/eugenehp/llama-cpp-rs/compare/v0.2.61...v0.3.0) --- updated-dependencies: - dependency-name: llama-cpp-4 dependency-version: 0.3.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- backend/Cargo.lock | 8 ++++---- backend/Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/backend/Cargo.lock b/backend/Cargo.lock index a0aa3d8..0d0f946 100644 --- a/backend/Cargo.lock +++ b/backend/Cargo.lock @@ -3111,9 +3111,9 @@ checksum = "11d3d7f243d5c5a8b9bb5d6dd2b1602c0cb0b9db1621bafc7ed66e35ff9fe092" [[package]] name = "llama-cpp-4" -version = "0.2.61" +version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "01f9e2e1cb2240e1cb0c7e135e46901419067d3e160249643c5b83c861a3607a" +checksum = "7664b6e80f608ab439d7380a418a1c8506078d865c7e846da58a12dffbbac948" dependencies = [ "enumflags2", "llama-cpp-sys-4", @@ -3123,9 +3123,9 @@ dependencies = [ [[package]] name = "llama-cpp-sys-4" -version = "0.2.61" +version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "815e7481864a5fe3082244bed2e80fa820fb4ab0e022306f1ca8f5b727bcb333" +checksum = "3ef4a087ff62bc2f024e17457f94ac9921771406d764e46f17f6c0b71bc42fb3" dependencies = [ "bindgen", "cc", diff --git a/backend/Cargo.toml b/backend/Cargo.toml index 51591e8..0154fda 100644 --- a/backend/Cargo.toml +++ b/backend/Cargo.toml @@ -106,7 +106,7 @@ ruvector-collections = { path = "../ruvector/crates/ruvector-collections" } ruvector-gnn = { path = "../ruvector/crates/ruvector-gnn", default-features = false } # Built-in local LLM (ADR-021 addendum, opt-in via --features builtin-llm) -llama-cpp-4 = { version = "0.2.60", optional = true } +llama-cpp-4 = { version = "0.3.0", optional = true } hf-hub = { version = "0.5", optional = true } encoding_rs = { version = "0.8", optional = true } shellexpand = "3"