diff --git a/Cargo.lock b/Cargo.lock index c4aca9c8b6bf..ea615c24b418 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -55,9 +55,9 @@ checksum = "b3d1d046238990b9cf5bcde22a3fb3584ee5cf65fb2765f454ed428c7a0063da" [[package]] name = "ascii_table" -version = "4.0.3" +version = "4.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3c2bee9b9ee0e5768772e38c07ef0ba23a490d7e1336ec7207c25712a2661c55" +checksum = "ed8a80a95ab122e7cc43bfde1d51949c89ff67e0c76eb795dc045003418473e2" [[package]] name = "async-trait" @@ -2758,20 +2758,9 @@ dependencies = [ [[package]] name = "pulldown-cmark" -version = "0.9.2" +version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2d9cc634bc78768157b5cbfe988ffcd1dcba95cd2b2f03a88316c08c6d00ed63" -dependencies = [ - "bitflags 1.3.2", - "memchr", - "unicase", -] - -[[package]] -name = "pulldown-cmark" -version = "0.12.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4d31cbfcd94884c3a67ec210c83efb06cb43674043458b0ad59f6947f8462c23" +checksum = "666f0f59e259aea2d72e6012290c09877a780935cc3c18b1ceded41f3890d59c" dependencies = [ "bitflags 2.6.0", "getopts", @@ -2798,9 +2787,9 @@ dependencies = [ [[package]] name = "quick-junit" -version = "0.4.0" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cfc1a6a5406a114913df2df8507998c755311b55b78584bed5f6e88f6417c4d4" +checksum = "62ffd2f9a162cfae131bed6d9d1ed60adced33be340a94f96952897d7cb0c240" dependencies = [ "chrono", "indexmap 2.5.0", @@ -2813,9 +2802,9 @@ dependencies = [ [[package]] name = "quick-xml" -version = "0.31.0" +version = "0.36.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1004a344b30a54e2ee58d66a71b32d2db2feb0a31f9a2d302bf0536f15de2a33" +checksum = "96a05e2e8efddfa51a84ca47cec303fac86c8541b686d37cac5efc0e094417bc" dependencies = [ "memchr", ] @@ -3082,7 +3071,7 @@ dependencies = [ "biome_json_parser", "biome_json_syntax", "biome_service", - "pulldown-cmark 0.12.0", + "pulldown-cmark", ] [[package]] @@ -3978,9 +3967,9 @@ checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" [[package]] name = "uuid" -version = "1.8.0" +version = "1.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a183cf7feeba97b4dd1c0d46788634f6221d87fa961b305bed08c851829efcc0" +checksum = "81dfa00651efa65069b0b6b651f4aaa31ba9e3c3ce0137aaad053604ee7e0314" [[package]] name = "valuable" @@ -4461,7 +4450,7 @@ dependencies = [ "bpaf", "git2", "proc-macro2", - "pulldown-cmark 0.9.2", + "pulldown-cmark", "quote", "schemars", "serde", diff --git a/crates/biome_cli/Cargo.toml b/crates/biome_cli/Cargo.toml index 0a84d3c51a27..21b26fcf35c4 100644 --- a/crates/biome_cli/Cargo.toml +++ b/crates/biome_cli/Cargo.toml @@ -44,7 +44,7 @@ dashmap = { workspace = true } hdrhistogram = { version = "7.5.4", default-features = false } indexmap = { workspace = true } path-absolutize = { version = "3.1.1", optional = false, features = ["use_unix_paths_on_wasm"] } -quick-junit = "0.4.0" +quick-junit = "0.5.0" rayon = { workspace = true } regex = { workspace = true } rustc-hash = { workspace = true } diff --git a/xtask/codegen/Cargo.toml b/xtask/codegen/Cargo.toml index 32752b8a09be..e6d96dcbbba0 100644 --- a/xtask/codegen/Cargo.toml +++ b/xtask/codegen/Cargo.toml @@ -9,7 +9,7 @@ anyhow = { workspace = true } bpaf = { workspace = true, features = ["derive"] } git2 = { version = "0.19.0", default-features = false } proc-macro2 = { workspace = true, features = ["span-locations"] } -pulldown-cmark = { version = "0.9", default-features = false, optional = true } +pulldown-cmark = { version = "0.12.1", default-features = false, optional = true } quote = "1.0.36" serde = { workspace = true, optional = true } ureq = "2.10.1" diff --git a/xtask/coverage/Cargo.toml b/xtask/coverage/Cargo.toml index 0fefd53fcb05..9033b0972c43 100644 --- a/xtask/coverage/Cargo.toml +++ b/xtask/coverage/Cargo.toml @@ -5,7 +5,7 @@ publish = false version = "0.0.0" [dependencies] -ascii_table = "4.0.3" +ascii_table = "4.0.4" backtrace = "0.3.73" biome_console = { workspace = true } biome_diagnostics = { workspace = true } diff --git a/xtask/rules_check/Cargo.toml b/xtask/rules_check/Cargo.toml index fc4403500d1b..da2114f2bdfa 100644 --- a/xtask/rules_check/Cargo.toml +++ b/xtask/rules_check/Cargo.toml @@ -23,7 +23,7 @@ biome_json_analyze = { workspace = true } biome_json_parser = { workspace = true } biome_json_syntax = { workspace = true } biome_service = { workspace = true } -pulldown-cmark = "0.12.0" +pulldown-cmark = "0.12.1" [lints]