diff options
author | René Kijewski <rene.kijewski@fu-berlin.de> | 2023-01-30 14:29:10 +0100 |
---|---|---|
committer | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2023-01-30 14:37:56 +0100 |
commit | c131154cb1eaec52110e27fcdfb570308cc8a77e (patch) | |
tree | 54aa07400e577d46b45584d16242f82634b48814 | |
parent | 7b6f1df433a7f11612608644342b898cd6be8ff5 (diff) | |
download | askama-c131154cb1eaec52110e27fcdfb570308cc8a77e.tar.gz askama-c131154cb1eaec52110e27fcdfb570308cc8a77e.tar.bz2 askama-c131154cb1eaec52110e27fcdfb570308cc8a77e.zip |
Update comrak dependency to 0.16
-rw-r--r-- | askama/Cargo.toml | 2 | ||||
-rw-r--r-- | askama/src/filters/mod.rs | 1 | ||||
-rw-r--r-- | testing/Cargo.toml | 2 |
3 files changed, 3 insertions, 2 deletions
diff --git a/askama/Cargo.toml b/askama/Cargo.toml index 7995969..95a2043 100644 --- a/askama/Cargo.toml +++ b/askama/Cargo.toml @@ -41,7 +41,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.15", optional = true, default-features = false } +comrak = { version = "0.16", 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/askama/src/filters/mod.rs b/askama/src/filters/mod.rs index aed34a1..f76a463 100644 --- a/askama/src/filters/mod.rs +++ b/askama/src/filters/mod.rs @@ -374,6 +374,7 @@ where // default: smart: false, default_info_string: None, + relaxed_tasklist_matching: false, }, render: ComrakRenderOptions { unsafe_: false, diff --git a/testing/Cargo.toml b/testing/Cargo.toml index e1f1bb4..c8326e8 100644 --- a/testing/Cargo.toml +++ b/testing/Cargo.toml @@ -14,7 +14,7 @@ markdown = ["comrak", "askama/markdown"] [dependencies] askama = { path = "../askama", version = "0.11.2" } -comrak = { version = "0.15", default-features = false, optional = true } +comrak = { version = "0.16", default-features = false, optional = true } serde_json = { version = "1.0", optional = true } [dev-dependencies] |