Skip to content
This repository was archived by the owner on May 23, 2024. It is now read-only.

Commit 2229856

Browse files
committed
Use workspace dependencies to keep them sync
Signed-off-by: Yuki Okushi <[email protected]>
1 parent bd16098 commit 2229856

File tree

4 files changed

+28
-22
lines changed

4 files changed

+28
-22
lines changed

Cargo.lock

+14-14
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+7-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ edition = "2021"
88

99
[dependencies]
1010
alphanumeric-sort = "1.4.0"
11-
anyhow = "1.0.37"
11+
anyhow = { workspace = true }
1212
rayon = "1.5.0"
1313
tempfile = "3.1.0"
1414

@@ -18,5 +18,11 @@ members = [
1818
"labeler"
1919
]
2020

21+
[workspace.dependencies]
22+
anyhow = "1.0.37"
23+
once_cell = "1.2.0"
24+
reqwest = { version = "0.11", features = ["blocking", "json"] }
25+
serde = { version = "1.0.101", features = ["derive"] }
26+
2127
[patch.crates-io]
2228
glacier = { path = "." }

autofix/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ edition = "2021"
77
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
88

99
[dependencies]
10-
anyhow = "1.0.26"
10+
anyhow = { workspace = true }
1111
git2 = { version = "0.15", default-features = false, features = ["https"] }
1212
glacier = "0.1.0"
13-
once_cell = "1.2.0"
14-
reqwest = { version = "0.11", features = ["blocking", "json"] }
15-
serde = { version = "1.0.101", features = ["derive"] }
13+
once_cell = { workspace = true }
14+
reqwest = { workspace = true }
15+
serde = { workspace = true }

labeler/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ edition = "2021"
99
[dependencies]
1010
chrono = { version = "0.4.19", features = ["serde"] }
1111
glacier = "0.1.0"
12-
once_cell = "1"
12+
once_cell = { workspace = true }
1313
regex = "1"
14-
reqwest = { version = "0.11", features = ["blocking", "json"] }
15-
serde = { version = "1", features = ["derive"] }
14+
reqwest = { workspace = true }
15+
serde = { workspace = true }

0 commit comments

Comments
 (0)