Skip to content

Commit c3bff5e

Browse files
committed
build-sys: Move a few dev-deps to workspace deps
Just to increase sharing. Signed-off-by: Colin Walters <[email protected]>
1 parent 257c860 commit c3bff5e

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,13 @@ camino = "1.1.6"
2323
cap-std-ext = "4.0.2"
2424
chrono = { version = "0.4.38", default-features = false }
2525
clap = "4.5.4"
26+
indoc = "2.0.5"
2627
fn-error-context = "0.2.1"
2728
libc = "0.2.154"
2829
serde = "1.0.199"
2930
serde_json = "1.0.116"
31+
similar-asserts = "1.5.0"
32+
static_assertions = "1.1.0"
3033
tempfile = "3.10.1"
3134
tracing = "0.1.40"
3235
tokio = ">= 1.37.0"

lib/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,9 @@ uuid = { version = "1.8.0", features = ["v4"] }
4949
tini = "1.3.0"
5050

5151
[dev-dependencies]
52-
indoc = "2.0.5"
53-
similar-asserts = { version = "1.5.0" }
54-
static_assertions = "1.1.0"
52+
indoc = { workspace = true }
53+
similar-asserts = { workspace = true }
54+
static_assertions = { workspace = true }
5555

5656
[features]
5757
default = ["install"]

tests-integration/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ camino = { workspace = true }
1616
cap-std-ext = { workspace = true }
1717
clap = { workspace = true, features = ["derive","cargo"] }
1818
fn-error-context = { workspace = true }
19-
indoc = "2.0.5"
19+
indoc = { workspace = true }
2020
libtest-mimic = "0.7.3"
2121
oci-spec = "0.6.5"
2222
rustix = { "version" = "0.38.34", features = ["thread", "fs", "system", "process"] }

utils/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ tracing = { workspace = true }
1515
tokio = { workspace = true, features = ["process"] }
1616

1717
[dev-dependencies]
18-
similar-asserts = { version = "1.5.0" }
19-
static_assertions = "1.1.0"
18+
similar-asserts = { workspace = true }
19+
static_assertions = { workspace = true }
2020

2121
[lints]
2222
workspace = true

0 commit comments

Comments
 (0)