aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>2022-11-15 04:03:43 +0000
committerLibravatar Dirkjan Ochtman <dirkjan@ochtman.nl>2022-11-15 06:48:54 +0100
commit4d0b7a4bf1a33c4cc537ba555272428d685a1203 (patch)
tree5fc6e6671d00109b171d1cbf1bfc0ab8cc447704
parent58d3938fb7631c3ab74b7bf48a21240face3a265 (diff)
downloadaskama-4d0b7a4bf1a33c4cc537ba555272428d685a1203.tar.gz
askama-4d0b7a4bf1a33c4cc537ba555272428d685a1203.tar.bz2
askama-4d0b7a4bf1a33c4cc537ba555272428d685a1203.zip
Update comrak requirement from 0.14 to 0.15
Updates the requirements on [comrak](https://github.com/kivikakk/comrak) to permit the latest version. - [Release notes](https://github.com/kivikakk/comrak/releases) - [Changelog](https://github.com/kivikakk/comrak/blob/main/changelog.txt) - [Commits](https://github.com/kivikakk/comrak/compare/0.14.0...0.15.0) --- updated-dependencies: - dependency-name: comrak dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
-rw-r--r--askama/Cargo.toml2
-rw-r--r--testing/Cargo.toml2
2 files changed, 2 insertions, 2 deletions
diff --git a/askama/Cargo.toml b/askama/Cargo.toml
index 320d2a5..a3d841e 100644
--- a/askama/Cargo.toml
+++ b/askama/Cargo.toml
@@ -40,7 +40,7 @@ mime_guess = []
[dependencies]
askama_derive = { version = "0.12.0", path = "../askama_derive" }
askama_escape = { version = "0.10.3", path = "../askama_escape" }
-comrak = { version = "0.14", optional = true, default-features = false }
+comrak = { version = "0.15", 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 75f68ae..3e550af 100644
--- a/testing/Cargo.toml
+++ b/testing/Cargo.toml
@@ -13,7 +13,7 @@ markdown = ["comrak", "askama/markdown"]
[dependencies]
askama = { path = "../askama", version = "0.11.2" }
-comrak = { version = "0.14", default-features = false, optional = true }
+comrak = { version = "0.15", default-features = false, optional = true }
serde_json = { version = "1.0", optional = true }
[dev-dependencies]