1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
Description: relax dependency on crate pulldown-cmark
Needed to match Debian-packaged pulldown-cmark v0.9.2.
Author: Jonas Smedegaard <dr@jones.dk>
Last-Update: 2022-10-27
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -18,7 +18,7 @@
contains_regex = ["regex", "semver"]
[dependencies]
-pulldown-cmark = { version = "0.8", default-features = false, optional = true }
+pulldown-cmark = { version = ">= 0.8, < 0.10", default-features = false, optional = true }
semver = { version = "1.0", optional = true }
syn = { version = "1.0", default-features = false, features = ["parsing", "printing", "full"], optional = true }
proc-macro2 = { version = "1.0", default-features = false, features = ["span-locations"], optional = true }
|