From acd99301741e43aa731e98b0f1fabdd1a0e51894 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 3 Feb 2024 20:17:57 +0000 Subject: [PATCH] fix(deps): update rust crate pulldown-cmark to 0.10 --- Cargo.lock | 6 +++--- Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5a5f490e36..498ca9ceb4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1566,11 +1566,11 @@ dependencies = [ [[package]] name = "pulldown-cmark" -version = "0.9.3" +version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "77a1a2f1f0a7ecff9c31abbe177637be0e97a0aef46cf8738ece09327985d998" +checksum = "dce76ce678ffc8e5675b22aa1405de0b7037e2fdf8913fea40d1926c6fe1e6e7" dependencies = [ - "bitflags 1.3.2", + "bitflags 2.4.2", "memchr", "unicase", ] diff --git a/Cargo.toml b/Cargo.toml index c3097e174b..ff9fdfffac 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -67,7 +67,7 @@ openssl = { version = "0.10", optional = true } opentelemetry = { workspace = true, optional = true } opentelemetry_sdk = { workspace = true, optional = true } opentelemetry-otlp = { workspace = true, optional = true } -pulldown-cmark = { version = "0.9", default-features = false } +pulldown-cmark = { version = "0.10", default-features = false } rand = "0.8" regex = "1" remove_dir_all = { version = "0.8.1", features = ["parallel"] }