diff --git a/Cargo.lock b/Cargo.lock
index 6c64f8c63..127f90cc8 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -229,7 +229,7 @@ dependencies = [
  "bitflags 2.4.2",
  "cexpr",
  "clang-sys",
- "itertools",
+ "itertools 0.12.1",
  "lazy_static",
  "lazycell",
  "proc-macro2",
@@ -324,7 +324,6 @@ name = "cargo-npk"
 version = "0.9.2-pre"
 dependencies = [
  "anyhow",
- "atty",
  "cargo-subcommand",
  "cargo_metadata",
  "clap 4.4.18",
@@ -361,9 +360,9 @@ dependencies = [
 
 [[package]]
 name = "cargo_metadata"
-version = "0.15.4"
+version = "0.18.1"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "eee4243f1f26fc7a42710e7439c149e2b10b05472f88090acce52632f231a73a"
+checksum = "2d886547e41f740c616ae73108f6eb70afe6d940c7bc697cb30f13daec073037"
 dependencies = [
  "camino",
  "cargo-platform",
@@ -1305,6 +1304,15 @@ dependencies = [
  "either",
 ]
 
+[[package]]
+name = "itertools"
+version = "0.13.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
+dependencies = [
+ "either",
+]
+
 [[package]]
 name = "itoa"
 version = "1.0.6"
@@ -1557,7 +1565,7 @@ dependencies = [
  "clap_complete",
  "futures",
  "humantime",
- "itertools",
+ "itertools 0.13.0",
  "northstar-client",
  "northstar-runtime",
  "pin-project-lite",
@@ -1594,7 +1602,7 @@ dependencies = [
  "humanize-rs",
  "humantime-serde",
  "inotify",
- "itertools",
+ "itertools 0.13.0",
  "lazy_static",
  "libc",
  "log",
diff --git a/northstar-nstar/Cargo.toml b/northstar-nstar/Cargo.toml
index aa3e6678f..2a24e3d0a 100644
--- a/northstar-nstar/Cargo.toml
+++ b/northstar-nstar/Cargo.toml
@@ -15,7 +15,7 @@ clap = { version = "4.4.18", features = ["derive"] }
 clap_complete = "4.3.2"
 futures = { version = "0.3.29", default-features = false }
 humantime = "2.1.0"
-itertools = "0.12.1"
+itertools = "0.13.0"
 northstar-client = { version = "^0.9.2-pre", path = "../northstar-client" }
 northstar-runtime = { version = "^0.9.2-pre", path = "../northstar-runtime", features = ["seccomp"] }
 pin-project-lite = "0.2.9"
diff --git a/northstar-runtime/Cargo.toml b/northstar-runtime/Cargo.toml
index 9c36fbd9d..661269210 100644
--- a/northstar-runtime/Cargo.toml
+++ b/northstar-runtime/Cargo.toml
@@ -29,7 +29,7 @@ hmac = { version = "0.12.1", features = ["reset"], optional = true }
 humanize-rs = { version = "0.1.5", optional = true }
 humantime-serde = { version = "1.1.1", optional = true }
 inotify = { version = "0.10.2", features = ["stream"], optional = true }
-itertools = { version = "0.12.1", optional = true }
+itertools = { version = "0.13.0", optional = true }
 lazy_static = { version = "1.4.0", optional = true }
 libc = { version = "0.2.155", optional = true }
 log = { version = "0.4.21", features = [ "serde", "max_level_trace", "release_max_level_debug"] }