From: Yann Dirson Date: Mon, 5 Feb 2024 09:31:14 +0000 (+0100) Subject: cargo.lock: bump rtnetlink to 0.14.1, includes FreeBSD support X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=bc1f9bb49f54fb5ae73c8ea181731ce1b118d01d;p=xen-guest-agent.git cargo.lock: bump rtnetlink to 0.14.1, includes FreeBSD support For FreeBSD support this should indeed be a "rtnetlink (0.14.1)" dep in Cargo.toml, but strictly speaking there is no dependency in the code itself. Nevertheless, we can now stop using our PR branch for this crate, and only the libc crate still requires a patch. Signed-off-by: Yann Dirson --- diff --git a/Cargo.lock b/Cargo.lock index 4dde691..6280709 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -575,9 +575,9 @@ dependencies = [ [[package]] name = "netlink-packet-route" -version = "0.18.1" +version = "0.19.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dd9ccdfabb457e05c7c61e66eb39262a204fbb376c53968b5e52dce15b423fc5" +checksum = "74c171cd77b4ee8c7708da746ce392440cb7bcf618d122ec9ecc607b12938bf4" dependencies = [ "anyhow", "byteorder", @@ -857,9 +857,9 @@ checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f" [[package]] name = "rtnetlink" -version = "0.14.0" +version = "0.14.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bb5bbb61e037711ff30a3657ec537285b2e1ecb5427e4365d275164f0928c884" +checksum = "b684475344d8df1859ddb2d395dd3dac4f8f3422a1aa0725993cb375fc5caba5" dependencies = [ "futures", "log", diff --git a/devscripts/cargo-freebsd-netlink.toml b/devscripts/cargo-freebsd-netlink.toml index 329bb68..a0ead36 100644 --- a/devscripts/cargo-freebsd-netlink.toml +++ b/devscripts/cargo-freebsd-netlink.toml @@ -4,7 +4,3 @@ git = "https://github.com/xcp-ng/rust-libc.git" # cannot specify a cargo feature here, so use a version exposing # freebsd-netlink support without needing a feature rev = "bfe4c69a83a9e6fc4fe92867c7ebbc471b723ccb" - -[patch.crates-io.rtnetlink] -git = "https://github.com/xcp-ng/rust-rtnetlink.git" -branch = "freebsd"