diff options
-rw-r--r-- | askama_shared/Cargo.toml | 2 | ||||
-rw-r--r-- | testing/Cargo.toml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/askama_shared/Cargo.toml b/askama_shared/Cargo.toml index 8affe58..0a2cb21 100644 --- a/askama_shared/Cargo.toml +++ b/askama_shared/Cargo.toml @@ -26,7 +26,7 @@ warp = [] [dependencies] askama_escape = { version = "0.10.3", path = "../askama_escape" } -comrak = { version = "0.12", optional = true, default-features = false } +comrak = { version = "0.13", optional = true, default-features = false } humansize = { version = "1.1.0", optional = true } mime = "0.3" mime_guess = "2" diff --git a/testing/Cargo.toml b/testing/Cargo.toml index bd7bbc9..77ab25e 100644 --- a/testing/Cargo.toml +++ b/testing/Cargo.toml @@ -13,7 +13,7 @@ markdown = ["comrak", "askama/markdown"] [dependencies] askama = { path = "../askama", version = "0.11.0-beta.1" } -comrak = { version = "0.12", default-features = false, optional = true } +comrak = { version = "0.13", default-features = false, optional = true } serde_json = { version = "1.0", optional = true } [dev-dependencies] |