From c6ca7510b5c7a93b87023abd35a980a28ca33eca Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 2 May 2026 07:00:29 +0000 Subject: [PATCH] Bump askama from 0.14.0 to 0.16.0 Bumps [askama](https://github.com/askama-rs/askama) from 0.14.0 to 0.16.0. - [Release notes](https://github.com/askama-rs/askama/releases) - [Commits](https://github.com/askama-rs/askama/compare/v0.14.0...v0.16.0) --- updated-dependencies: - dependency-name: askama dependency-version: 0.16.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 45 ++++++++++++++++++++++++++++++++------------- Cargo.toml | 2 +- 2 files changed, 33 insertions(+), 14 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d0b588c..ee6986d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -309,11 +309,11 @@ checksum = "7d902e3d592a523def97af8f317b08ce16b7ab854c1985a0c671e6f15cebc236" [[package]] name = "askama" -version = "0.14.0" +version = "0.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f75363874b771be265f4ffe307ca705ef6f3baa19011c149da8674a87f1b75c4" +checksum = "f1bf825125edd887a019d0a3a837dcc5499a68b0d034cc3eb594070c3e18addc" dependencies = [ - "askama_derive", + "askama_macros", "itoa", "percent-encoding", "serde", @@ -322,9 +322,9 @@ dependencies = [ [[package]] name = "askama_derive" -version = "0.14.0" +version = "0.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "129397200fe83088e8a68407a8e2b1f826cf0086b21ccdb866a722c8bcd3a94f" +checksum = "e1c7065972a130eafa84215f21352ae15b4a7393da48c1f5e103904490736738" dependencies = [ "askama_parser", "memchr", @@ -334,14 +334,24 @@ dependencies = [ "syn", ] +[[package]] +name = "askama_macros" +version = "0.16.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0e23b1d2c4bd39a41971f6124cef4cc6fd0540913ecb90919b69ab3bbe44ae1a" +dependencies = [ + "askama_derive", +] + [[package]] name = "askama_parser" -version = "0.14.0" +version = "0.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d6ab5630b3d5eaf232620167977f95eb51f3432fc76852328774afbd242d4358" +checksum = "7db09fde9143e7ac4513358fb32ee32847125b63b18ea715afd487956da715da" dependencies = [ - "memchr", - "winnow", + "rustc-hash 2.1.1", + "unicode-ident", + "winnow 1.0.2", ] [[package]] @@ -640,7 +650,7 @@ dependencies = [ "serde_core", "serde_json", "toml 0.9.4", - "winnow", + "winnow 0.7.12", "yaml-rust2", ] @@ -2528,7 +2538,7 @@ dependencies = [ "toml_datetime 0.7.0", "toml_parser", "toml_writer", - "winnow", + "winnow 0.7.12", ] [[package]] @@ -2560,7 +2570,7 @@ dependencies = [ "serde_spanned 0.6.9", "toml_datetime 0.6.11", "toml_write", - "winnow", + "winnow 0.7.12", ] [[package]] @@ -2569,7 +2579,7 @@ version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "97200572db069e74c512a14117b296ba0a80a30123fbbb5aa1f4a348f639ca30" dependencies = [ - "winnow", + "winnow 0.7.12", ] [[package]] @@ -3009,6 +3019,15 @@ dependencies = [ "memchr", ] +[[package]] +name = "winnow" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2ee1708bef14716a11bae175f579062d4554d95be2c6829f518df847b7b3fdd0" +dependencies = [ + "memchr", +] + [[package]] name = "wit-bindgen-rt" version = "0.33.0" diff --git a/Cargo.toml b/Cargo.toml index fec59df..68d6b51 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,7 +13,7 @@ actix-files = "0.6.10" actix-web = { version = "4.13.0", default-features = false, features = [ "macros" ] } actix-web-httpauth = "0.8.2" arc-swap = "1.9.0" -askama = { version = "0.14.0", default-features = false, features = [ "alloc", "derive", "std" ]} +askama = { version = "0.16.0", default-features = false, features = [ "alloc", "derive", "std" ]} base64 = { version = "0.22.1", default-features = false } bcrypt = "0.17.1" config = "0.15.16"