From caa95cfcf2fe2c445bc8e7124b2f6aaa1c2bbacc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 6 May 2024 09:19:20 +0000 Subject: [PATCH] Bump comrak from 0.22.0 to 0.23.0 Bumps [comrak](https://github.com/kivikakk/comrak) from 0.22.0 to 0.23.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.22.0...0.23.0) --- updated-dependencies: - dependency-name: comrak dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 14 ++++++++++++-- Cargo.toml | 2 +- 2 files changed, 13 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 38d19f1..1010806 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -457,13 +457,14 @@ checksum = "0b6a852b24ab71dffc585bcb46eaf7959d175cb865a7152e35b348d1b2960422" [[package]] name = "comrak" -version = "0.22.0" +version = "0.23.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d0436149c9f6a1935b13306206c739b1ba84fa81f551b5eb87fc2ca7a13700af" +checksum = "ab5681b26a36dc46800a908f7d932672a4e82f74759419dd4018bf40658457d5" dependencies = [ "clap", "derive_builder", "entities", + "in-place", "memchr", "once_cell", "regex", @@ -1048,6 +1049,15 @@ dependencies = [ "winapi-util", ] +[[package]] +name = "in-place" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1cdb69f3adfd5f493210cece799f4620417bf9965bc1536c22ae0e29ba27a8c0" +dependencies = [ + "tempfile", +] + [[package]] name = "indexmap" version = "2.2.6" diff --git a/Cargo.toml b/Cargo.toml index 9fda20f..79702c7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ default-run = "bl0g" [dependencies] axum = "0.7" chrono = { version = "0.4", default-features = false, features = ["serde"] } -comrak = "0.22" +comrak = "0.23" config = { git = "https://github.com/mehcode/config-rs.git", rev = "e3c1d0b452639478662a44f15ef6d5b6d969bf9b", default-features = false, features = ["yaml"] } hyper = { version = "1", features = ["full"] } lazy_static = "1"