This commit is contained in:
dependabot[bot] 2024-03-18 19:57:42 +00:00 committed by GitHub
commit bccc964558
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 17 additions and 6 deletions

21
Cargo.lock generated
View File

@ -414,7 +414,7 @@ dependencies = [
"pathdiff", "pathdiff",
"percent-encoding", "percent-encoding",
"pretty_assertions", "pretty_assertions",
"pulldown-cmark", "pulldown-cmark 0.9.3",
"pulldown-cmark-to-cmark", "pulldown-cmark-to-cmark",
"rayon", "rayon",
"regex", "regex",
@ -489,12 +489,23 @@ dependencies = [
] ]
[[package]] [[package]]
name = "pulldown-cmark-to-cmark" name = "pulldown-cmark"
version = "11.0.2" version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a883e495f8fc4f209521b03a89dde6f6f211ed7cf92e85693c82508e8b722710" checksum = "dce76ce678ffc8e5675b22aa1405de0b7037e2fdf8913fea40d1926c6fe1e6e7"
dependencies = [ dependencies = [
"pulldown-cmark", "bitflags 2.4.0",
"memchr",
"unicase",
]
[[package]]
name = "pulldown-cmark-to-cmark"
version = "13.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f609795c8d835f79dcfcf768415b9fb57ef1b74891e99f86e73f43a7a257163b"
dependencies = [
"pulldown-cmark 0.10.0",
] ]
[[package]] [[package]]

View File

@ -33,7 +33,7 @@ matter = "0.1.0-alpha4"
pathdiff = "0.2.1" pathdiff = "0.2.1"
percent-encoding = "2.3.1" percent-encoding = "2.3.1"
pulldown-cmark = "0.9.3" pulldown-cmark = "0.9.3"
pulldown-cmark-to-cmark = "11.0.2" pulldown-cmark-to-cmark = "13.0.0"
rayon = "1.8.0" rayon = "1.8.0"
regex = "1.10.2" regex = "1.10.2"
serde_yaml = "0.9.27" serde_yaml = "0.9.27"