chore(deps): bump askama from 0.13.1 to 0.14.0

Bumps [askama](https://github.com/askama-rs/askama) from 0.13.1 to 0.14.0.
- [Release notes](https://github.com/askama-rs/askama/releases)
- [Commits](https://github.com/askama-rs/askama/compare/v0.13.1...v0.14.0)

---
updated-dependencies:
- dependency-name: askama
  dependency-version: 0.14.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
dependabot[bot] 2025-04-29 04:52:44 +00:00 committed by Gerald Pinder
parent 0261f0c005
commit f4d8ffbb51
3 changed files with 10 additions and 8 deletions

View file

@ -9,7 +9,7 @@ license.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
askama = { version = "0.13", features = ["serde_json"] }
askama = { version = "0.14", features = ["serde_json"] }
blue-build-recipe = { version = "=0.9.11", path = "../recipe" }
blue-build-utils = { version = "=0.9.11", path = "../utils" }

View file

@ -150,8 +150,10 @@ fn should_color() -> bool {
}
mod filters {
use askama::Values;
#[allow(clippy::unnecessary_wraps)]
pub fn replace<T>(input: T, from: char, to: &str) -> askama::Result<String>
pub fn replace<T>(input: T, _: &dyn Values, from: char, to: &str) -> askama::Result<String>
where
T: std::fmt::Display,
{