diff options
author | dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> | 2023-11-30 12:33:46 +0000 |
---|---|---|
committer | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2023-11-30 13:55:46 +0100 |
commit | 736480c38b1a65ea344283ae05605ddc33086d5a (patch) | |
tree | cf9e21efe881bd4a2f8634ff1e2cc5233b5a6289 | |
parent | 69e2db6efadf2d15514a8947f48acaf174024a57 (diff) | |
download | askama-736480c38b1a65ea344283ae05605ddc33086d5a.tar.gz askama-736480c38b1a65ea344283ae05605ddc33086d5a.tar.bz2 askama-736480c38b1a65ea344283ae05605ddc33086d5a.zip |
build(deps): update comrak requirement from 0.18 to 0.20
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.18.0...0.20.0)
---
updated-dependencies:
- dependency-name: comrak
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com>
Diffstat (limited to '')
-rw-r--r-- | askama/Cargo.toml | 2 | ||||
-rw-r--r-- | testing/Cargo.toml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/askama/Cargo.toml b/askama/Cargo.toml index a4300bc..26be2a4 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.19", optional = true, default-features = false } +comrak = { version = "0.20", 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 1d7050d..793de53 100644 --- a/testing/Cargo.toml +++ b/testing/Cargo.toml @@ -14,7 +14,7 @@ markdown = ["comrak", "askama/markdown"] [dependencies] askama = { path = "../askama", version = "0.12" } -comrak = { version = "0.19", default-features = false, optional = true } +comrak = { version = "0.20", default-features = false, optional = true } serde_json = { version = "1.0", optional = true } [dev-dependencies] |