From fd17e63a82f675d6ccc612fb192b450fb67ef79b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Sep 2025 07:59:05 +0000 Subject: [PATCH] build(deps): bump comrak from 0.42.0 to 0.43.0 Bumps [comrak](https://github.com/kivikakk/comrak) from 0.42.0 to 0.43.0. - [Release notes](https://github.com/kivikakk/comrak/releases) - [Changelog](https://github.com/kivikakk/comrak/blob/main/CHANGELOG.md) - [Commits](https://github.com/kivikakk/comrak/compare/v0.42.0...v0.43.0) --- updated-dependencies: - dependency-name: comrak dependency-version: 0.43.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 11 +++++++++-- Cargo.toml | 2 +- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f325952..9b2b4ea 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -520,14 +520,15 @@ dependencies = [ [[package]] name = "comrak" -version = "0.42.0" +version = "0.43.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ccde7f074aafedd0dfa210b7df42326927e3b64f499e0ce8dcc5c132ef08baba" +checksum = "5ccfd7678fba9aff54a74a70352d952b345e568823ed9d5a92ebc8ad0adad8ea" dependencies = [ "bon", "caseless", "clap", "entities", + "fmt2io", "memchr", "shell-words", "slug", @@ -1693,6 +1694,12 @@ dependencies = [ "miniz_oxide", ] +[[package]] +name = "fmt2io" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6b6129284da9f7e5296cc22183a63f24300e945e297705dcc0672f7df01d62c8" + [[package]] name = "fnv" version = "1.0.7" diff --git a/Cargo.toml b/Cargo.toml index 451efe5..0af6e1b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,7 @@ edition = "2024" [dependencies] chrono = { version = "0.4.42", features = ["serde"] } -comrak = "0.42.0" +comrak = "0.43.0" css-color = "0.2.8" dioxus = { version = "0.7.0-rc.0", features = ["router"] } dioxus-sdk = { git = "https://github.com/ealmloff/dioxus-std", branch = "0.7", features = ["storage", "window"] }