diff --git a/Cargo.toml b/Cargo.toml index 2d7c69e3..56382031 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -26,6 +26,7 @@ clap = "4.5.4" indoc = "2.0.5" fn-error-context = "0.2.1" libc = "0.2.154" +rustix = { "version" = "0.38.34", features = ["thread", "fs", "system", "process", "mount"] } serde = "1.0.199" serde_json = "1.0.116" similar-asserts = "1.5.0" diff --git a/lib/Cargo.toml b/lib/Cargo.toml index 1f63cfbc..cb31835d 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -33,7 +33,7 @@ liboverdrop = "0.1.0" libsystemd = "0.7" openssl = "^0.10.64" regex = "1.10.4" -rustix = { "version" = "0.38.34", features = ["thread", "fs", "system", "process", "mount"] } +rustix = { workspace = true } schemars = { version = "0.8.17", features = ["chrono"] } serde = { workspace = true, features = ["derive"] } serde_ignored = "0.1.10" diff --git a/tests-integration/Cargo.toml b/tests-integration/Cargo.toml index 87b9a95d..21d9a71d 100644 --- a/tests-integration/Cargo.toml +++ b/tests-integration/Cargo.toml @@ -19,7 +19,7 @@ fn-error-context = { workspace = true } indoc = { workspace = true } libtest-mimic = "0.7.3" oci-spec = "0.6.5" -rustix = { "version" = "0.38.34", features = ["thread", "fs", "system", "process"] } +rustix = { workspace = true } serde = { workspace = true, features = ["derive"] } serde_json = { workspace = true } tempfile = { workspace = true }