Skip to content

Commit dd38833

Browse files
committed
Push all dependency declarations into the workspace Cargo.toml
1 parent 66e4b91 commit dd38833

File tree

4 files changed

+14
-8
lines changed

4 files changed

+14
-8
lines changed

Cargo.toml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,12 +50,14 @@ biome_text_size = { git = "https://github.com/biomejs/biome", rev = "2648fa4201b
5050
biome_unicode_table = { git = "https://github.com/biomejs/biome", rev = "2648fa4201be4afd26f44eca1a4e77aac0a67272" }
5151
bytes = "1.8.0"
5252
cargo_metadata = "0.19.1"
53+
case = "1.0.0"
5354
clap = { version = "4.5.20", features = ["derive"] }
5455
colored = "3.0.0"
5556
crossbeam = "0.8.4"
5657
dissimilar = "1.0.9"
5758
futures = "0.3.31"
5859
futures-util = "0.3.31"
60+
globwalk = "0.9.1"
5961
httparse = "1.9.5"
6062
ignore = "0.4.23"
6163
insta = "1.40.0"
@@ -64,16 +66,20 @@ line-index = "0.1.2"
6466
memchr = "2.7.4"
6567
path-absolutize = "3.1.1"
6668
proc-macro2 = "1.0.86"
69+
proc-macro-error = "1.0.4"
70+
quote = "1.0.14"
6771
rustc-hash = "2.1.0"
6872
schemars = "0.8.21"
6973
serde = "1.0.215"
7074
serde_json = "1.0.132"
75+
similar-asserts = "1.6.0"
7176
struct-field-names-as-array = "0.3.0"
7277
strum = "0.26"
78+
syn = "2.0.59"
7379
tempfile = "3.9.0"
7480
time = "0.3.37"
7581
thiserror = "2.0.5"
76-
tokio = { version = "1.41.1" }
82+
tokio = "1.41.1"
7783
tokio-util = "0.7.12"
7884
toml = "0.8.19"
7985
# For https://github.com/ebkalderon/tower-lsp/pull/428

crates/air/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ ignore = { workspace = true }
2121
itertools = { workspace = true }
2222
lsp = { workspace = true }
2323
thiserror = { workspace = true }
24-
tokio = "1.41.1"
24+
tokio = { workspace = true }
2525
tracing = { workspace = true }
2626
tracing-subscriber = { workspace = true }
2727
workspace = { workspace = true }

crates/air_formatter_test/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ biome_parser = { workspace = true }
2222
biome_rowan = { workspace = true }
2323
insta = { workspace = true, features = ["glob"] }
2424
serde = { workspace = true, features = ["derive"] }
25-
similar-asserts = "1.6.0"
25+
similar-asserts = { workspace = true }
2626

2727
[lints]
2828
workspace = true

crates/tests_macros/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ proc-macro = true
1616

1717
[dependencies]
1818
biome_string_case = { workspace = true }
19-
case = "1.0.0"
20-
globwalk = "0.9.1"
21-
proc-macro-error = "1.0.4"
19+
case = { workspace = true }
20+
globwalk = { workspace = true }
21+
proc-macro-error = { workspace = true }
2222
proc-macro2 = { workspace = true }
23-
quote = "1.0.14"
24-
syn = "2.0.59"
23+
quote = { workspace = true }
24+
syn = { workspace = true }

0 commit comments

Comments
 (0)