diff --git a/Cargo.lock b/Cargo.lock index 71ef7da54..32d963a90 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3597,6 +3597,15 @@ dependencies = [ "netlink-packet-utils", ] +[[package]] +name = "netlink-packet-core" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "745d789fe0958caf7252f5e1e900ce5c09b6a5bf05c7bba02a9cc600866ce31e" +dependencies = [ + "pastey", +] + [[package]] name = "netlink-packet-route" version = "0.19.0" @@ -3607,10 +3616,22 @@ dependencies = [ "byteorder", "libc", "log", - "netlink-packet-core", + "netlink-packet-core 0.7.0", "netlink-packet-utils", ] +[[package]] +name = "netlink-packet-route" +version = "0.25.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3ec2f5b6839be2a19d7fa5aab5bc444380f6311c2b693551cb80f45caaa7b5ef" +dependencies = [ + "bitflags 2.9.1", + "libc", + "log", + "netlink-packet-core 0.8.0", +] + [[package]] name = "netlink-packet-utils" version = "0.5.2" @@ -3632,7 +3653,7 @@ dependencies = [ "bytes 1.10.1", "futures", "log", - "netlink-packet-core", + "netlink-packet-core 0.7.0", "netlink-sys", "thiserror 2.0.12", ] @@ -3686,7 +3707,7 @@ dependencies = [ "futures-util", "ipconfig", "mdns-sd", - "netlink-packet-route", + "netlink-packet-route 0.25.1", "network-interface", "network-scanner-net", "network-scanner-proto", @@ -4128,6 +4149,12 @@ version = "1.0.15" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a" +[[package]] +name = "pastey" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "35fb2e5f958ec131621fdd531e9fc186ed768cbe395337403ae56c17a74c68ec" + [[package]] name = "pbkdf2" version = "0.12.2" @@ -5163,8 +5190,8 @@ checksum = "b684475344d8df1859ddb2d395dd3dac4f8f3422a1aa0725993cb375fc5caba5" dependencies = [ "futures", "log", - "netlink-packet-core", - "netlink-packet-route", + "netlink-packet-core 0.7.0", + "netlink-packet-route 0.19.0", "netlink-packet-utils", "netlink-proto", "netlink-sys", diff --git a/crates/network-scanner/Cargo.toml b/crates/network-scanner/Cargo.toml index fb10dee4c..fcc3bf325 100644 --- a/crates/network-scanner/Cargo.toml +++ b/crates/network-scanner/Cargo.toml @@ -28,7 +28,7 @@ ipconfig = "0.3" [target.'cfg(target_os = "linux")'.dependencies] futures-util = "0.3" -netlink-packet-route = "0.19" +netlink-packet-route = "0.25" rtnetlink = "0.14" [dev-dependencies]