From 91627c254312cc679bc2eed3a6c342c9e327671d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 16 Mar 2026 17:51:44 +0000 Subject: [PATCH] build(deps): bump minijinja from 2.17.1 to 2.18.0 Bumps [minijinja](https://github.com/mitsuhiko/minijinja) from 2.17.1 to 2.18.0. - [Release notes](https://github.com/mitsuhiko/minijinja/releases) - [Changelog](https://github.com/mitsuhiko/minijinja/blob/main/CHANGELOG.md) - [Commits](https://github.com/mitsuhiko/minijinja/compare/minijinja-go/v2.17.1...minijinja-go/v2.18.0) --- updated-dependencies: - dependency-name: minijinja dependency-version: 2.18.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 11 +++++++++-- crates/core/Cargo.toml | 2 +- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 024ef1f..2eaf710 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1622,6 +1622,12 @@ version = "2.7.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273" +[[package]] +name = "memo-map" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "38d1115007560874e373613744c6fba374c17688327a71c1476d1a5954cc857b" + [[package]] name = "mime" version = "0.3.17" @@ -1640,10 +1646,11 @@ dependencies = [ [[package]] name = "minijinja" -version = "2.17.1" +version = "2.18.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5ea5ea1e90055f200af6b8e52a4a34e05e77e7fee953a9fb40c631efdc43cab1" +checksum = "328251e58ad8e415be6198888fc207502727dc77945806421ab34f35bf012e7d" dependencies = [ + "memo-map", "serde", "serde_json", ] diff --git a/crates/core/Cargo.toml b/crates/core/Cargo.toml index fa34286..0656777 100644 --- a/crates/core/Cargo.toml +++ b/crates/core/Cargo.toml @@ -34,7 +34,7 @@ tokio-stream.workspace = true tracing.workspace = true tracing-subscriber.workspace = true notify.workspace = true -minijinja = { version = "2.17.1", features = ["builtins", "json"] } +minijinja = { version = "2.18.0", features = ["builtins", "json"] } minijinja-contrib = { version = "2.16.0", features = ["pycompat"] } llama-cpp-2 = "=0.1.135"