Skip to content

Commit

Permalink
fix(deps): update rust crates (#3751)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Victorien Elvinger <[email protected]>
  • Loading branch information
renovate[bot] and Conaclos authored Sep 5, 2024
1 parent d754371 commit bcad101
Show file tree
Hide file tree
Showing 8 changed files with 30 additions and 39 deletions.
43 changes: 16 additions & 27 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crates/biome_cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down
10 changes: 6 additions & 4 deletions crates/biome_cli/src/reporter/junit.rs
Original file line number Diff line number Diff line change
Expand Up @@ -98,12 +98,14 @@ impl<'a> ReporterVisitor for JunitReporterVisitor<'a> {
if let Resource::File(path) = resource {
let mut test_suite = TestSuite::new(path);
case.extra
.insert("line".to_string(), start.line_number.get().to_string());
case.extra
.insert("column".to_string(), start.column_number.get().to_string());
.insert("line".into(), start.line_number.get().to_string().into());
case.extra.insert(
"column".into(),
start.column_number.get().to_string().into(),
);
test_suite
.extra
.insert("package".to_string(), "org.biome".to_string());
.insert("package".into(), "org.biome".into());
test_suite.add_test_case(case);
self.0.add_test_suite(test_suite);
}
Expand Down
2 changes: 1 addition & 1 deletion xtask/bench/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ biome_rowan = { workspace = true }


ansi_rgb = "0.2.0"
codspeed-criterion-compat = { version = "2.6.0", optional = true }
codspeed-criterion-compat = { version = "2.7.0", optional = true }
criterion = "0.5.1"
ureq = "2.10.1"
url = "2.5.2"
Expand Down
2 changes: 1 addition & 1 deletion xtask/codegen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
6 changes: 3 additions & 3 deletions xtask/codegen/src/generate_configuration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use biome_js_syntax::JsLanguage;
use biome_json_syntax::JsonLanguage;
use biome_string_case::Case;
use proc_macro2::{Ident, Literal, Span, TokenStream};
use pulldown_cmark::{Event, Parser, Tag};
use pulldown_cmark::{Event, Parser, Tag, TagEnd};
use quote::quote;
use std::collections::BTreeMap;
use std::path::Path;
Expand Down Expand Up @@ -672,7 +672,7 @@ fn generate_group_struct(
}

Event::Start(Tag::Paragraph) => {}
Event::End(Tag::Paragraph) => {
Event::End(TagEnd::Paragraph) => {
break;
}

Expand All @@ -685,7 +685,7 @@ fn generate_group_struct(
},

Event::End(tag) => match tag {
Tag::Strong | Tag::Paragraph => {
TagEnd::Strong | TagEnd::Paragraph => {
continue;
}
_ => panic!("Unimplemented tag {:?}", { tag }),
Expand Down
2 changes: 1 addition & 1 deletion xtask/coverage/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down
2 changes: 1 addition & 1 deletion xtask/rules_check/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down

0 comments on commit bcad101

Please sign in to comment.