1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
Description: accept older and newer minor versions of crate pulldown-cmark
Author: Jonas Smedegaard <dr@jones.dk>
Author: Peter Michael Green <plugwash@debian.org>
Bug-Debian: https://bugs.debian.org/1071789
Bug-Debian: https://bugs.debian.org/1116043
Forwarded: not-needed
Last-Update: 2025-09-24
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -19,7 +19,7 @@
[dependencies]
proc-macro2 = { version = "1.0.36", default-features = false, features = ["span-locations"], optional = true }
-pulldown-cmark = { version = "0.11", default-features = false, optional = true }
+pulldown-cmark = { version = ">= 0.10.0, <= 0.13", default-features = false, optional = true }
regex = { version = "1.5.4", default-features = false, features = ["std", "unicode"], optional = true }
semver = { version = "1.0.5", optional = true }
syn = { version = "2.0.15", default-features = false, features = ["parsing", "printing", "full"], optional = true }
|