From 688c1115d7a453a3d8a2bad96acfc3b9f229db92 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Oct 2025 06:54:45 +0000 Subject: [PATCH] build(deps): bump comrak from 0.42.0 to 0.45.0 Bumps [comrak](https://github.com/kivikakk/comrak) from 0.42.0 to 0.45.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.45.0) --- updated-dependencies: - dependency-name: comrak dependency-version: 0.45.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 46 ++++++++++++++++++++++++++-------------------- Cargo.toml | 2 +- 2 files changed, 27 insertions(+), 21 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f325952..03d85b8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -520,17 +520,18 @@ dependencies = [ [[package]] name = "comrak" -version = "0.42.0" +version = "0.45.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ccde7f074aafedd0dfa210b7df42326927e3b64f499e0ce8dcc5c132ef08baba" +checksum = "3f297347343278e6e3581015487de80ec975d8e7c8bd4905b604cef1ae5ecf89" dependencies = [ "bon", "caseless", "clap", + "emojis", "entities", - "memchr", + "fmt2io", + "jetscii", "shell-words", - "slug", "syntect", "typed-arena", "unicode_categories", @@ -837,12 +838,6 @@ dependencies = [ "syn 2.0.106", ] -[[package]] -name = "deunicode" -version = "1.6.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "abd57806937c9cc163efc8ea3910e00a62e2aeb0b8119f1793a978088f8f6b04" - [[package]] name = "digest" version = "0.10.7" @@ -1532,6 +1527,15 @@ version = "1.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813" +[[package]] +name = "emojis" +version = "0.6.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "99e1f1df1f181f2539bac8bf027d31ca5ffbf9e559e3f2d09413b9107b5c02f4" +dependencies = [ + "phf 0.11.3", +] + [[package]] name = "encoding_rs" version = "0.8.35" @@ -1693,6 +1697,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" @@ -2640,6 +2650,12 @@ dependencies = [ "system-deps", ] +[[package]] +name = "jetscii" +version = "0.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "47f142fe24a9c9944451e8349de0a56af5f3e7226dc46f3ed4d4ecc0b85af75e" + [[package]] name = "jni" version = "0.21.1" @@ -4479,16 +4495,6 @@ dependencies = [ "version_check", ] -[[package]] -name = "slug" -version = "0.1.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "882a80f72ee45de3cc9a5afeb2da0331d58df69e4e7d8eeb5d3c7784ae67e724" -dependencies = [ - "deunicode", - "wasm-bindgen", -] - [[package]] name = "smallvec" version = "1.15.1" diff --git a/Cargo.toml b/Cargo.toml index 451efe5..05a037d 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.45.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"] }