From 984391b0809a92da983d09039b0fcb2931263edd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 23 Mar 2026 01:55:40 +0000 Subject: [PATCH] chore(deps): bump askama from 0.14.0 to 0.15.5 Bumps [askama](https://github.com/askama-rs/askama) from 0.14.0 to 0.15.5. - [Release notes](https://github.com/askama-rs/askama/releases) - [Commits](https://github.com/askama-rs/askama/compare/v0.14.0...v0.15.5) --- updated-dependencies: - dependency-name: askama dependency-version: 0.15.5 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 26 ++++++++++++++++++-------- nicknamer/server/Cargo.toml | 2 +- 2 files changed, 19 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e8eecbe..eb77a29 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -160,11 +160,11 @@ dependencies = [ [[package]] name = "askama" -version = "0.14.0" +version = "0.15.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f75363874b771be265f4ffe307ca705ef6f3baa19011c149da8674a87f1b75c4" +checksum = "33b7e89247085c4bb89576c3116140bac3999c81d74db52afe11b36c7e11a97d" dependencies = [ - "askama_derive", + "askama_macros", "itoa 1.0.15", "percent-encoding", "serde", @@ -173,9 +173,9 @@ dependencies = [ [[package]] name = "askama_derive" -version = "0.14.0" +version = "0.15.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "129397200fe83088e8a68407a8e2b1f826cf0086b21ccdb866a722c8bcd3a94f" +checksum = "adf18857bd6189696f6e44ab992acbb731cc12bc1661959cd9f1d56342708cee" dependencies = [ "askama_parser", "basic-toml", @@ -194,15 +194,25 @@ version = "0.10.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "619743e34b5ba4e9703bba34deac3427c72507c7159f5fd030aea8cac0cfe341" +[[package]] +name = "askama_macros" +version = "0.15.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "78a8dcefb2a4763c7957ad5b1a16df6d81cff6227aae161b95af322d52c02005" +dependencies = [ + "askama_derive", +] + [[package]] name = "askama_parser" -version = "0.14.0" +version = "0.15.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d6ab5630b3d5eaf232620167977f95eb51f3432fc76852328774afbd242d4358" +checksum = "e7ef9905e0280528d0c2271ff66cab68ec4a550e745e3a365ded353f6e30faac" dependencies = [ - "memchr", + "rustc-hash 2.1.1", "serde", "serde_derive", + "unicode-ident", "winnow 0.7.15", ] diff --git a/nicknamer/server/Cargo.toml b/nicknamer/server/Cargo.toml index af6827e..752b7b9 100644 --- a/nicknamer/server/Cargo.toml +++ b/nicknamer/server/Cargo.toml @@ -11,7 +11,7 @@ testcontainers-modules = { version = "0.13.0", features = ["postgres"] } [dependencies] anyhow = "1.0.102" -askama = "0.14.0" +askama = "0.15.5" axum = "0.8.8" axum-extra = { version = "0.12.5", features = ["cookie"] } chrono = "0.4.44"