From 291208d487d4022d1fe0e553f8e1896b3e4199cf Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 13 Feb 2026 20:01:33 +0000 Subject: [PATCH] build(deps): bump pulldown-cmark from 0.9.6 to 0.13.0 Bumps [pulldown-cmark](https://github.com/raphlinus/pulldown-cmark) from 0.9.6 to 0.13.0. - [Release notes](https://github.com/raphlinus/pulldown-cmark/releases) - [Commits](https://github.com/raphlinus/pulldown-cmark/compare/v0.9.6...v0.13.0) --- updated-dependencies: - dependency-name: pulldown-cmark dependency-version: 0.13.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 22 ++++++++++++++++++++-- Cargo.toml | 2 +- 2 files changed, 21 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 35358cf7..bde12a22 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -928,13 +928,31 @@ name = "pulldown-cmark" version = "0.9.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "57206b407293d2bcd3af849ce869d52068623f19e1b5ff8e8778e3309439682b" +dependencies = [ + "bitflags 2.10.0", + "memchr", + "unicase", +] + +[[package]] +name = "pulldown-cmark" +version = "0.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e8bbe1a966bd2f362681a44f6edce3c2310ac21e4d5067a6e7ec396297a6ea0" dependencies = [ "bitflags 2.10.0", "getopts", "memchr", + "pulldown-cmark-escape", "unicase", ] +[[package]] +name = "pulldown-cmark-escape" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "007d8adb5ddab6f8e3f491ac63566a7d5002cc7ed73901f72057943fa71ae1ae" + [[package]] name = "quick-error" version = "1.2.3" @@ -1322,7 +1340,7 @@ dependencies = [ "handlebars", "humantime", "pretty_assertions", - "pulldown-cmark", + "pulldown-cmark 0.13.0", "serde_json", "styled-str", "tempfile", @@ -1682,7 +1700,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "835169da0173ea373ddf5987632aac1f918967fbbe58195e304342282efa6089" dependencies = [ "proc-macro2", - "pulldown-cmark", + "pulldown-cmark 0.9.6", "regex", "semver", "syn", diff --git a/Cargo.toml b/Cargo.toml index 423412ba..65383bb9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -35,7 +35,7 @@ portable-pty = "0.8.1" # FIXME: portable-pty 0.9 is seemingly broken on Windows # Usually, it's a good practice to enable features in the crate manifests, but `pretty_assertions` # won't build without `alloc` (or `std`) enabled. pretty_assertions = { version = "1.4.1", default-features = false, features = ["alloc"] } -pulldown-cmark = "0.9.6" +pulldown-cmark = "0.13.0" quick-xml = "0.39.0" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0"