From c8cdda87c0788185563be7d1f074294fa5900cbd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 28 Mar 2023 14:42:17 +0000 Subject: [PATCH] Bump comrak from 0.15.0 to 0.17.0 Bumps [comrak](https://github.com/kivikakk/comrak) from 0.15.0 to 0.17.0. - [Release notes](https://github.com/kivikakk/comrak/releases) - [Changelog](https://github.com/kivikakk/comrak/blob/main/changelog.txt) - [Commits](https://github.com/kivikakk/comrak/compare/0.15.0...0.17.0) --- updated-dependencies: - dependency-name: comrak dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.lock | 7 +++---- nbb_markdown/Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e98c0fc..574cc68 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -292,18 +292,17 @@ dependencies = [ [[package]] name = "comrak" -version = "0.15.0" +version = "0.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c11e55664fcff7f4d37cc2adf3a1996913692f037312f4ab0909047fdd2bf962" +checksum = "54b9638d96f93f8bf7b050f7505ba0d82b8267f601965b08faa0eb4882a9bba9" dependencies = [ "clap", "entities", "memchr", "once_cell", - "pest", - "pest_derive", "regex", "shell-words", + "slug", "syntect", "typed-arena", "unicode_categories", diff --git a/nbb_markdown/Cargo.toml b/nbb_markdown/Cargo.toml index d978bf8..47a92ed 100644 --- a/nbb_markdown/Cargo.toml +++ b/nbb_markdown/Cargo.toml @@ -10,7 +10,7 @@ nbb_config = { path = "../nbb_config" } tracing = "0.1" dashmap = "5.1" -comrak = "0.15" +comrak = "0.17" tokio = { version = "1.24", features = ["full"] } once_cell = { version = "1.9.0", features = ["parking_lot"] } blake2 = { version = "0.10", features = ["simd_opt"] }