From a01fec593867382b44631227eaeb3cb1832d67b1 Mon Sep 17 00:00:00 2001 From: Hayden Brown Date: Wed, 26 Jun 2024 16:48:25 +1000 Subject: [PATCH] chore: Bump pulldown-cmark to 0.11 --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 32ed842..08f0d05 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -31,9 +31,9 @@ checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d" [[package]] name = "pulldown-cmark" -version = "0.10.0" +version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dce76ce678ffc8e5675b22aa1405de0b7037e2fdf8913fea40d1926c6fe1e6e7" +checksum = "8746739f11d39ce5ad5c2520a9b75285310dbfe78c541ccf832d38615765aec0" dependencies = [ "bitflags", "memchr", diff --git a/Cargo.toml b/Cargo.toml index 3f64e40..9ff0ab9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,5 +12,5 @@ categories = ["text-processing"] [dependencies] once_cell = "1.18.0" -pulldown-cmark = { version = "0.10.0", default-features = false } +pulldown-cmark = { version = "0.11", default-features = false } regex = "1.9.3"