File: 2001_pulldown-cmark.patch

package info (click to toggle)
rust-version-sync 0.9.4-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 236 kB
  • sloc: perl: 258; python: 148; makefile: 5; sh: 1
file content (17 lines) | stat: -rw-r--r-- 794 bytes parent folder | download
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 }