diff --git a/Cargo.lock b/Cargo.lock index 476bc65ff..cd1db5114 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -874,23 +874,12 @@ checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" [[package]] name = "errno" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a" -dependencies = [ - "errno-dragonfly", - "libc", - "windows-sys 0.48.0", -] - -[[package]] -name = "errno-dragonfly" -version = "0.1.2" +version = "0.3.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf" +checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245" dependencies = [ - "cc", "libc", + "windows-sys 0.52.0", ] [[package]] @@ -1386,9 +1375,9 @@ checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519" [[package]] name = "linux-raw-sys" -version = "0.4.10" +version = "0.4.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "da2479e8c062e40bf0066ffa0bc823de0a9368974af99c9f6df941d2c231e03f" +checksum = "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c" [[package]] name = "lock_api" @@ -1434,7 +1423,7 @@ version = "0.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b2cffa4ad52c6f791f4f8b15f0c05f9824b2ced1160e88cc393d64fff9a8ac64" dependencies = [ - "rustix 0.38.21", + "rustix 0.38.34", ] [[package]] @@ -2173,15 +2162,15 @@ dependencies = [ [[package]] name = "rustix" -version = "0.38.21" +version = "0.38.34" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2b426b0506e5d50a7d8dafcf2e81471400deb602392c7dd110815afb4eaf02a3" +checksum = "70dc5ec042f7a43c4a73241207cecc9873a06d45debb38b329f8541d85c2730f" dependencies = [ "bitflags 2.4.2", "errno", "libc", - "linux-raw-sys 0.4.10", - "windows-sys 0.48.0", + "linux-raw-sys 0.4.13", + "windows-sys 0.52.0", ] [[package]] @@ -2488,15 +2477,14 @@ dependencies = [ [[package]] name = "tempfile" -version = "3.8.1" +version = "3.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7ef1adac450ad7f4b3c28589471ade84f25f731a7a0fe30d71dfa9f60fd808e5" +checksum = "85b77fafb263dd9d05cbeac119526425676db3784113aa9295c88498cbf8bff1" dependencies = [ "cfg-if", "fastrand 2.0.1", - "redox_syscall 0.4.1", - "rustix 0.38.21", - "windows-sys 0.48.0", + "rustix 0.38.34", + "windows-sys 0.52.0", ] [[package]] diff --git a/cargo-npk/Cargo.toml b/cargo-npk/Cargo.toml index 27a7031bc..2559b0b94 100644 --- a/cargo-npk/Cargo.toml +++ b/cargo-npk/Cargo.toml @@ -18,5 +18,5 @@ human_bytes = "0.4.3" humantime = "2.1.0" northstar-runtime = { version = "^0.9.2-pre", path = "../northstar-runtime", features = ["npk"] } serde = { version = "1.0.164", features = ["derive"] } -tempfile = "3.8.1" +tempfile = "3.10.1" termcolor = "1.4.1" diff --git a/northstar-runtime/Cargo.toml b/northstar-runtime/Cargo.toml index 2fbc7a245..c952f8a96 100644 --- a/northstar-runtime/Cargo.toml +++ b/northstar-runtime/Cargo.toml @@ -50,7 +50,7 @@ serde_yaml = { version = "0.9.34", optional = true } sha2 = { version = "0.10.8", optional = true } strum = { version = "0.26.2", optional = true } strum_macros = { version = "0.26.1", optional = true } -tempfile = { version = "3.8.1", optional = true } +tempfile = { version = "3.10.1", optional = true } thiserror = "1.0.56" tokio = { version = "1.32.0", features = ["fs", "io-std", "io-util", "macros", "process", "rt-multi-thread", "sync", "time", "net"], optional = true } tokio-eventfd = { version = "0.2.1", optional = true } diff --git a/northstar-sextant/Cargo.toml b/northstar-sextant/Cargo.toml index 78501f917..3f0bd6232 100644 --- a/northstar-sextant/Cargo.toml +++ b/northstar-sextant/Cargo.toml @@ -14,5 +14,5 @@ clap = { version = "4.2.7", features = ["derive"] } colored = "2.1.0" env_logger = "0.10.2" northstar-runtime = { version = "^0.9.2-pre", path = "../northstar-runtime", features = ["npk"] } -tempfile = "3.8.1" +tempfile = "3.10.1" zip = { version = "0.6.6", default-features = false } diff --git a/northstar-tests/Cargo.toml b/northstar-tests/Cargo.toml index cbb4a44b2..d955e166d 100644 --- a/northstar-tests/Cargo.toml +++ b/northstar-tests/Cargo.toml @@ -21,7 +21,7 @@ northstar-client = { path = "../northstar-client" } northstar-runtime = { path = "../northstar-runtime", features = ["api", "runtime"] } northstar-tests-derive = { path = "northstar-tests-derive" } regex = "1.10.4" -tempfile = "3.8.1" +tempfile = "3.10.1" tokio = { version = "1.32.0", features = ["fs", "time"] } url = "2.5.0" zip = { version = "0.6.6", default-features = false }