Skip to content

Commit

Permalink
build(deps): update (#2669)
Browse files Browse the repository at this point in the history
  • Loading branch information
Conaclos authored May 1, 2024
1 parent 6797dab commit 47662b3
Show file tree
Hide file tree
Showing 12 changed files with 58 additions and 55 deletions.
79 changes: 40 additions & 39 deletions Cargo.lock

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

4 changes: 3 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -65,11 +65,12 @@ float_cmp_const = "warn"
get_unwrap = "warn"
infinite_loop = "warn"
lossy_float_literal = "warn"
mem_forget = "warn"
rc_buffer = "warn"
rc_mutex = "warn"
rest_pat_in_fully_bound_structs = "warn"
verbose_file_reads = "warn"
# https://github.com/rustwasm/wasm-bindgen/issues/3944
#mem_forget = "warn"

[workspace.package]
authors = ["Biome Developers and Contributors"]
Expand Down Expand Up @@ -149,6 +150,7 @@ biome_ungrammar = { path = "./crates/biome_ungrammar" }
tests_macros = { path = "./crates/tests_macros" }

# Crates needed in the workspace
anyhow = "1.0.82"
bitflags = "2.5.0"
bpaf = { version = "0.9.9", features = ["derive"] }
countme = "3.0.1"
Expand Down
4 changes: 2 additions & 2 deletions crates/biome_cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ name = "biome"
path = "src/main.rs"

[dependencies]
anyhow = "1.0.52"
anyhow = { workspace = true }
biome_analyze = { workspace = true }
biome_configuration = { workspace = true }
biome_console = { workspace = true }
Expand Down Expand Up @@ -50,7 +50,7 @@ serde_json = { workspace = true }
smallvec = { workspace = true }
tokio = { workspace = true, features = ["io-std", "io-util", "net", "time", "rt", "sync", "rt-multi-thread", "macros"] }
tracing = { workspace = true }
tracing-appender = "0.2"
tracing-appender = "0.2.3"
tracing-subscriber = { workspace = true, features = ["env-filter", "json"] }
tracing-tree = "0.3.0"

Expand Down
2 changes: 1 addition & 1 deletion crates/biome_formatter_test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ biome_parser = { workspace = true }
biome_rowan = { workspace = true }
biome_service = { workspace = true }
insta = { workspace = true, features = ["glob"] }
serde = { version = "1", features = ["derive"] }
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }
similar = { workspace = true }
similar-asserts = "1.5.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/biome_grit_patterns/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ repository.workspace = true
version = "0.0.1"

[dependencies]
anyhow = "1.0.52"
anyhow = { workspace = true }
biome_console = { workspace = true }
biome_diagnostics = { workspace = true }
grit-pattern-matcher = { version = "0.1" }
Expand Down
2 changes: 1 addition & 1 deletion crates/biome_grit_syntax/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ version = "0.5.7"
[dependencies]
biome_rowan = { workspace = true }
schemars = { workspace = true, optional = true }
serde = { version = "1.0.136", features = ["derive"], optional = true }
serde = { workspace = true, features = ["derive"], optional = true }

[features]
serde = ["dep:serde", "schemars", "biome_rowan/serde"]
Expand Down
2 changes: 1 addition & 1 deletion crates/biome_js_formatter/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ countme = { workspace = true, features = ["enable"] }
iai = "0.1.1"
quickcheck = { workspace = true }
quickcheck_macros = { workspace = true }
serde = { version = "1", features = ["derive"] }
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }
tests_macros = { path = "../tests_macros" }

Expand Down
4 changes: 2 additions & 2 deletions crates/biome_lsp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ version = "0.0.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
anyhow = "1.0.52"
anyhow = { workspace = true }
biome_analyze = { workspace = true }
biome_configuration = { workspace = true }
biome_console = { workspace = true }
Expand All @@ -23,7 +23,7 @@ biome_fs = { workspace = true }
biome_rowan = { workspace = true }
biome_service = { workspace = true }
biome_text_edit = { workspace = true }
futures = "0.3"
futures = "0.3.30"
rustc-hash = { workspace = true }
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/biome_text_size/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ schemars = { workspace = true, optional = true }
serde = { workspace = true, optional = true }

[dev-dependencies]
serde_test = "1.0"
serde_test = "1.0.176"
static_assertions = "1.1"

[[test]]
Expand Down
8 changes: 4 additions & 4 deletions crates/biome_wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,16 @@ format_css = ["biome_service/format_css"]
biome_console = { workspace = true }
biome_diagnostics = { workspace = true }
biome_service = { workspace = true }
js-sys = "0.3.59"
js-sys = "0.3.69"
serde = { workspace = true }
serde-wasm-bindgen = "0.4.5"
wasm-bindgen = { version = "0.2.82", features = ["serde-serialize"] }
serde-wasm-bindgen = "0.6.5"
wasm-bindgen = { version = "0.2.92", features = ["serde-serialize"] }

# The `console_error_panic_hook` crate provides better debugging of panics by
# logging them with `console.error`. This is great for development, but requires
# all the `std::fmt` and `std::panicking` infrastructure, so isn't great for
# code size when deploying.
console_error_panic_hook = { version = "0.1.6", optional = true }
console_error_panic_hook = { version = "0.1.7", optional = true }


[build-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion xtask/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]
anyhow = "1.0.82"
anyhow = { workspace = true }

[lints]
workspace = true
2 changes: 1 addition & 1 deletion xtask/codegen/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]
anyhow = "1.0.82"
anyhow = { workspace = true }
bpaf = { workspace = true, features = ["derive"] }
git2 = { version = "0.18.3", default-features = false }
proc-macro2 = { workspace = true, features = ["span-locations"] }
Expand Down

0 comments on commit 47662b3

Please sign in to comment.