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

@ -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,
{