From 9fdf49d19651b0f3c61dd729056a6a23571b9a28 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 13 Aug 2024 01:03:45 +0000 Subject: [PATCH] Bump pulldown-cmark-to-cmark from 13.0.0 to 15.0.1 Bumps [pulldown-cmark-to-cmark](https://github.com/Byron/pulldown-cmark-to-cmark) from 13.0.0 to 15.0.1. - [Release notes](https://github.com/Byron/pulldown-cmark-to-cmark/releases) - [Changelog](https://github.com/Byron/pulldown-cmark-to-cmark/blob/main/CHANGELOG.md) - [Commits](https://github.com/Byron/pulldown-cmark-to-cmark/compare/v13.0.0...v15.0.1) --- updated-dependencies: - dependency-name: pulldown-cmark-to-cmark dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 19 +++++++++++++++---- notegraf/Cargo.toml | 2 +- 2 files changed, 16 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7101e35..bee4c9b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1522,7 +1522,7 @@ version = "0.1.1" dependencies = [ "chrono", "futures", - "pulldown-cmark", + "pulldown-cmark 0.10.3", "pulldown-cmark-to-cmark", "serde", "serde_json", @@ -1932,6 +1932,17 @@ dependencies = [ "unicase", ] +[[package]] +name = "pulldown-cmark" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8746739f11d39ce5ad5c2520a9b75285310dbfe78c541ccf832d38615765aec0" +dependencies = [ + "bitflags 2.6.0", + "memchr", + "unicase", +] + [[package]] name = "pulldown-cmark-escape" version = "0.10.1" @@ -1940,11 +1951,11 @@ checksum = "bd348ff538bc9caeda7ee8cad2d1d48236a1f443c1fa3913c6a02fe0043b1dd3" [[package]] name = "pulldown-cmark-to-cmark" -version = "13.0.0" +version = "15.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f609795c8d835f79dcfcf768415b9fb57ef1b74891e99f86e73f43a7a257163b" +checksum = "b9c77db841443d89a57ae94f22d29c022f6d9f41b00bddbf1f4024dbaf4bdce1" dependencies = [ - "pulldown-cmark", + "pulldown-cmark 0.11.0", ] [[package]] diff --git a/notegraf/Cargo.toml b/notegraf/Cargo.toml index 20b2c60..ca47d07 100644 --- a/notegraf/Cargo.toml +++ b/notegraf/Cargo.toml @@ -19,7 +19,7 @@ serde_json = "1.0" thiserror = "1.0" pulldown-cmark = "0.10" url = "2.5" -pulldown-cmark-to-cmark = "13.0" +pulldown-cmark-to-cmark = "15.0" futures = "0.3" tokio = { version = "1.37", features = ["sync"] } # sqlx 0.7 separates runtime and TLS features. It also always enables offline.