From 986d30ad0bd81d95b7bd0848bdbfeb08825ddb39 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 16 Mar 2026 10:08:06 +0000 Subject: [PATCH] build(deps): bump minijinja from 2.14.0 to 2.18.0 Bumps [minijinja](https://github.com/mitsuhiko/minijinja) from 2.14.0 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/2.14.0...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/lib/Cargo.toml | 2 +- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index bd4df81..063d96a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2,12 +2,19 @@ # It is not intended for manual editing. version = 4 +[[package]] +name = "memo-map" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "38d1115007560874e373613744c6fba374c17688327a71c1476d1a5954cc857b" + [[package]] name = "minijinja" -version = "2.14.0" +version = "2.18.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "12ea9ac0a51fb5112607099560fdf0f90366ab088a2a9e6e8ae176794e9806aa" +checksum = "328251e58ad8e415be6198888fc207502727dc77945806421ab34f35bf012e7d" dependencies = [ + "memo-map", "serde", ] diff --git a/crates/lib/Cargo.toml b/crates/lib/Cargo.toml index 5119ebb..ff446b9 100644 --- a/crates/lib/Cargo.toml +++ b/crates/lib/Cargo.toml @@ -26,5 +26,5 @@ minijinja-defaults = [ workspace = true [dependencies] -minijinja = { version = "2.14.0", default-features = false, features = ["deserialization", "serde", "std_collections"] } +minijinja = { version = "2.18.0", default-features = false, features = ["deserialization", "serde", "std_collections"] } serde = "1.0"