diff --git a/Cargo.lock b/Cargo.lock index 2bff233..897d365 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -414,7 +414,7 @@ dependencies = [ "pathdiff", "percent-encoding", "pretty_assertions", - "pulldown-cmark", + "pulldown-cmark 0.10.0", "pulldown-cmark-to-cmark", "rayon", "regex", @@ -478,23 +478,41 @@ dependencies = [ [[package]] name = "pulldown-cmark" -version = "0.9.3" +version = "0.9.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "77a1a2f1f0a7ecff9c31abbe177637be0e97a0aef46cf8738ece09327985d998" +checksum = "57206b407293d2bcd3af849ce869d52068623f19e1b5ff8e8778e3309439682b" dependencies = [ - "bitflags 1.3.2", - "getopts", + "bitflags 2.4.0", "memchr", "unicase", ] +[[package]] +name = "pulldown-cmark" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dce76ce678ffc8e5675b22aa1405de0b7037e2fdf8913fea40d1926c6fe1e6e7" +dependencies = [ + "bitflags 2.4.0", + "getopts", + "memchr", + "pulldown-cmark-escape", + "unicase", +] + +[[package]] +name = "pulldown-cmark-escape" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d5d8f9aa0e3cbcfaf8bf00300004ee3b72f74770f9cbac93f6928771f613276b" + [[package]] name = "pulldown-cmark-to-cmark" version = "11.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a883e495f8fc4f209521b03a89dde6f6f211ed7cf92e85693c82508e8b722710" dependencies = [ - "pulldown-cmark", + "pulldown-cmark 0.9.6", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index 50cebe0..51045f8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -32,7 +32,7 @@ lazy_static = "1.4.0" matter = "0.1.0-alpha4" pathdiff = "0.2.1" percent-encoding = "2.3.1" -pulldown-cmark = "0.9.3" +pulldown-cmark = "0.10.0" pulldown-cmark-to-cmark = "11.0.2" rayon = "1.8.0" regex = "1.10.2"