Upgrade to comrak 0.18

This commit is contained in:
Dirkjan Ochtman 2023-05-19 16:04:01 +02:00
parent 1856c4b57c
commit 239f59b9b1
3 changed files with 3 additions and 2 deletions

View File

@ -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.17", optional = true, default-features = false }
comrak = { version = "0.18", 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 }

View File

@ -385,6 +385,7 @@ where
width: 0,
unsafe_: false,
list_style: ListStyleType::Dash,
sourcepos: false,
},
};

View File

@ -14,7 +14,7 @@ markdown = ["comrak", "askama/markdown"]
[dependencies]
askama = { path = "../askama", version = "0.12" }
comrak = { version = "0.17", default-features = false, optional = true }
comrak = { version = "0.18", default-features = false, optional = true }
serde_json = { version = "1.0", optional = true }
[dev-dependencies]