diff --git a/Cargo.lock b/Cargo.lock index eda169aa6..6124ad27b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1430,11 +1430,11 @@ version = "0.0.1" [[package]] name = "memfd" -version = "0.6.3" +version = "0.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ffc89ccdc6e10d6907450f753537ebc5c5d3460d2e4e62ea74bd571db62c0f9e" +checksum = "b2cffa4ad52c6f791f4f8b15f0c05f9824b2ced1160e88cc393d64fff9a8ac64" dependencies = [ - "rustix 0.37.25", + "rustix 0.38.21", ] [[package]] diff --git a/northstar-runtime/Cargo.toml b/northstar-runtime/Cargo.toml index 1fa5850cd..b1dd67e03 100644 --- a/northstar-runtime/Cargo.toml +++ b/northstar-runtime/Cargo.toml @@ -34,7 +34,7 @@ lazy_static = { version = "1.4.0", optional = true } libc = { version = "0.2.148", optional = true } log = { version = "0.4.21", features = [ "serde", "max_level_trace", "release_max_level_debug"] } memchr = "2.6.2" -memfd = { version = "0.6.2", optional = true } +memfd = { version = "0.6.4", optional = true } memoffset = { version = "0.9.0", optional = true } nanoid = { version = "0.4.0", optional = true } nix = { version = "0.28.0", default-features = false, features = ["fs", "sched", "ioctl", "mount", "term", "uio", "socket", "net", "signal", "user"], optional = true } @@ -72,7 +72,7 @@ seccomp = ["bindgen", "caps", "lazy_static", "memoffset", "nix", "npk"] [dev-dependencies] anyhow = "1.0.80" -memfd = "0.6.2" +memfd = "0.6.4" proptest = "1.4.0" rstest = { version = "0.18.1", default-features = false } serde_json = "1.0.108" diff --git a/northstar-tests/Cargo.toml b/northstar-tests/Cargo.toml index 92397761b..cbb4a44b2 100644 --- a/northstar-tests/Cargo.toml +++ b/northstar-tests/Cargo.toml @@ -14,7 +14,7 @@ env_logger = "0.10.2" futures = { version = "0.3.29", default-features = false } lazy_static = "1.4.0" log = "0.4.21" -memfd = "0.6.2" +memfd = "0.6.4" nanoid = "0.4.0" nix = { version = "0.28.0", features = ["sched"], default-features = false } northstar-client = { path = "../northstar-client" }