From b8fc8523845f231d215db113ce1bf103a86dd728 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 8 May 2024 16:34:50 +0000 Subject: [PATCH] chore(deps): update rust crate markup_fmt to 0.8.0 --- Cargo.lock | 30 ++++++++++++++++++++++++------ crates/web_fmt/Cargo.toml | 2 +- 2 files changed, 25 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 98bb418..cc2d6fa 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -571,6 +571,15 @@ dependencies = [ "either", ] +[[package]] +name = "itertools" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569" +dependencies = [ + "either", +] + [[package]] name = "itoa" version = "1.0.10" @@ -642,23 +651,26 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3e46bc1db87ea0e6a782fbd130f070b5019e947547b20e8df85159dbaf79a429" dependencies = [ "aho-corasick", - "itertools", + "itertools 0.11.0", "memchr", "raffia", "serde", - "tiny_pretty", + "tiny_pretty 0.1.1", ] [[package]] name = "markup_fmt" -version = "0.7.0" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5704641fe630e87f25171f81ef0707cda8dc8ca969f57d35f226022fe8d9849c" +checksum = "0a4956cc3f5f16c4f8ebf21a7c63c5c2527444dfda4089b2ecab9cb0b25f3a36" dependencies = [ + "aho-corasick", "css_dataset", - "itertools", + "itertools 0.12.1", + "memchr", + "once_cell", "serde", - "tiny_pretty", + "tiny_pretty 0.2.0", ] [[package]] @@ -1089,6 +1101,12 @@ name = "tiny_pretty" version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "34dd2e384e3ddc3f1cd30c12f4647e32b6afd85eceb058c0245a2a96f7717179" + +[[package]] +name = "tiny_pretty" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4b3f46f0549180b9c6f7f76270903f1a06867c43a03998b99dce81aa1760c3b2" dependencies = [ "unicode-width", ] diff --git a/crates/web_fmt/Cargo.toml b/crates/web_fmt/Cargo.toml index 61f6fde..6428fbd 100644 --- a/crates/web_fmt/Cargo.toml +++ b/crates/web_fmt/Cargo.toml @@ -21,7 +21,7 @@ common = { workspace = true, features = [ biome_fmt = { workspace = true, default-features = false } json_fmt = { workspace = true, default-features = false } malva = { version = "0.3.0", features = ["config_serde"] } -markup_fmt = { version = "0.7.0", features = ["config_serde"] } +markup_fmt = { version = "0.8.0", features = ["config_serde"] } serde = { workspace = true, features = ["derive"] } serde-wasm-bindgen = { workspace = true }