Skip to content

Commit f8f434a

Browse files
committed
build-sys: Add rustix to workspace deps
Just sharing more. Signed-off-by: Colin Walters <[email protected]>
1 parent c3bff5e commit f8f434a

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ clap = "4.5.4"
2626
indoc = "2.0.5"
2727
fn-error-context = "0.2.1"
2828
libc = "0.2.154"
29+
rustix = { "version" = "0.38.34", features = ["thread", "fs", "system", "process", "mount"] }
2930
serde = "1.0.199"
3031
serde_json = "1.0.116"
3132
similar-asserts = "1.5.0"

lib/Cargo.toml

Lines changed: 1 addition & 1 deletion
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"

tests-integration/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ fn-error-context = { workspace = true }
1919
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 }

0 commit comments

Comments
 (0)