From 1a89f70c647ec42a45fa64c127cf9a08f87f80d3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 27 Aug 2025 21:47:22 +0000 Subject: [PATCH] Update rtnetlink requirement from ^0.13.0 to ^0.18.0 Updates the requirements on [rtnetlink](https://github.com/rust-netlink/rtnetlink) to permit the latest version. - [Release notes](https://github.com/rust-netlink/rtnetlink/releases) - [Changelog](https://github.com/rust-netlink/rtnetlink/blob/main/CHANGELOG) - [Commits](https://github.com/rust-netlink/rtnetlink/compare/v0.13.1...v0.18.0) --- updated-dependencies: - dependency-name: rtnetlink dependency-version: 0.18.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- libs/easy-tun/Cargo.toml | 2 +- libs/rtnl/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/easy-tun/Cargo.toml b/libs/easy-tun/Cargo.toml index 24364ef..7d02d74 100644 --- a/libs/easy-tun/Cargo.toml +++ b/libs/easy-tun/Cargo.toml @@ -20,7 +20,7 @@ profile-puffin = ["profiling/profile-with-puffin"] log = "^0.4" libc = "^0.2" ioctl-gen = "^0.1.1" -rtnetlink = "^0.13.0" +rtnetlink = "^0.18.0" profiling = "1.0.9" [dev-dependencies] diff --git a/libs/rtnl/Cargo.toml b/libs/rtnl/Cargo.toml index 752c902..eb0eadc 100644 --- a/libs/rtnl/Cargo.toml +++ b/libs/rtnl/Cargo.toml @@ -16,6 +16,6 @@ categories = [] [dependencies] tokio = { version = "1.29.1", optional = true, features = ["rt-multi-thread"] } log = "0.4.19" -rtnetlink = "0.13.1" +rtnetlink = "0.18.0" futures = "0.3.28" ipnet = "^2.8.0"