From 19a01de03feb15cec5c31998104a5ba306aa3a4d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Apr 2024 04:32:57 +0000 Subject: [PATCH] build(deps): update comrak requirement from 0.21 to 0.22 Updates the requirements on comrak to permit the latest version. --- updated-dependencies: - dependency-name: comrak dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- askama/Cargo.toml | 2 +- testing/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/askama/Cargo.toml b/askama/Cargo.toml index c05fecf4..dd36ae56 100644 --- a/askama/Cargo.toml +++ b/askama/Cargo.toml @@ -37,7 +37,7 @@ mime_guess = [] [dependencies] askama_derive = { version = "0.13", path = "../askama_derive" } askama_escape = { version = "0.10.3", path = "../askama_escape" } -comrak = { version = "0.21", optional = true, default-features = false } +comrak = { version = "0.22", optional = true, default-features = false } dep_humansize = { package = "humansize", version = "2", optional = true } dep_num_traits = { package = "num-traits", version = "0.2.6", optional = true } percent-encoding = { version = "2.1.0", optional = true } diff --git a/testing/Cargo.toml b/testing/Cargo.toml index 9d6c673e..3b33dbde 100644 --- a/testing/Cargo.toml +++ b/testing/Cargo.toml @@ -14,7 +14,7 @@ markdown = ["comrak", "askama/markdown"] [dependencies] askama = { path = "../askama", version = "0.13" } -comrak = { version = "0.21", default-features = false, optional = true } +comrak = { version = "0.22", default-features = false, optional = true } phf = { version = "0.11", features = ["macros" ]} serde_json = { version = "1.0", optional = true }