Skip to content

Commit 0ace6df

Browse files
authored
Merge pull request #765 from cgwalters/more-workspace-deps
More workspace deps
2 parents 257c860 + f8f434a commit 0ace6df

File tree

4 files changed

+12
-8
lines changed

4 files changed

+12
-8
lines changed

Cargo.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,14 @@ 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"
29+
rustix = { "version" = "0.38.34", features = ["thread", "fs", "system", "process", "mount"] }
2830
serde = "1.0.199"
2931
serde_json = "1.0.116"
32+
similar-asserts = "1.5.0"
33+
static_assertions = "1.1.0"
3034
tempfile = "3.10.1"
3135
tracing = "0.1.40"
3236
tokio = ">= 1.37.0"

lib/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ liboverdrop = "0.1.0"
3333
libsystemd = "0.7"
3434
openssl = "^0.10.64"
3535
regex = "1.10.4"
36-
rustix = { "version" = "0.38.34", features = ["thread", "fs", "system", "process", "mount"] }
36+
rustix = { workspace = true }
3737
schemars = { version = "0.8.17", features = ["chrono"] }
3838
serde = { workspace = true, features = ["derive"] }
3939
serde_ignored = "0.1.10"
@@ -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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ 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"
22-
rustix = { "version" = "0.38.34", features = ["thread", "fs", "system", "process"] }
22+
rustix = { workspace = true }
2323
serde = { workspace = true, features = ["derive"] }
2424
serde_json = { workspace = true }
2525
tempfile = { workspace = true }

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)