From 1b9592a2b11378d3782665591f90430ea615ab4c Mon Sep 17 00:00:00 2001 From: Daneo Van Overloop Date: Thu, 27 Aug 2026 09:29:57 +0200 Subject: [PATCH] Update netlink-* dependencies `netlink-packet-core` `0.8` has a transient dependency on `paste`, which is currently marked as unmaintained and gets flagged by `osv-scanner`. As the recently published `0.9` version got rid of that, here's a change to bump it. While at this, I updated them all to their latest available version. --- Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index afc26e6..e5ba046 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,9 +19,9 @@ ipnet = { version = "2.12" } libc = "0.2" [target.'cfg(any(target_os = "linux", target_os = "android"))'.dependencies] -netlink-packet-core = "0.8" -netlink-packet-route = "0.31" -netlink-sys = "0.8.8" +netlink-packet-core = "0.9" +netlink-packet-route = "0.33" +netlink-sys = "0.9" [target.'cfg(target_os = "android")'.dependencies] dlopen2 = { version = "0.8.2", default-features = false }