From d4b2b647a7a20143b2bfe6af0c89df810e54e81f Mon Sep 17 00:00:00 2001 From: AurelienFT <32803821+AurelienFT@users.noreply.github.com> Date: Thu, 23 Jan 2025 03:13:37 +0100 Subject: [PATCH] Pin netlink-proto version (#2623) ## Description Pin `netlink-proto` to not have any issue when releasing ## Checklist - [x] Breaking changes are clearly marked as such in the PR description and changelog - [x] New behavior is reflected in tests - [x] [The specification](https://github.com/FuelLabs/fuel-specs/) matches the implemented behavior (link update PR if changes are needed) ### Before requesting review - [x] I have reviewed the code myself - [x] I have created follow-up issues caused by this PR and linked them here --- Cargo.lock | 1 + crates/services/p2p/Cargo.toml | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index a51001b7391..a5bc66c47fe 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3759,6 +3759,7 @@ dependencies = [ "libp2p", "libp2p-mplex", "libp2p-swarm-test", + "netlink-proto", "postcard", "prometheus-client", "quick-protobuf", diff --git a/crates/services/p2p/Cargo.toml b/crates/services/p2p/Cargo.toml index 158f16f836f..d7963efbf99 100644 --- a/crates/services/p2p/Cargo.toml +++ b/crates/services/p2p/Cargo.toml @@ -72,3 +72,7 @@ version = "0.3.0" [features] test-helpers = ["fuel-core-types/test-helpers"] + +# Remove when we upgrade rust version +[target.'cfg(target_os = "linux")'.dependencies] +netlink-proto = { version = "=0.11.3", optional = true }