Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pin netlink-proto version #2623

Merged
merged 4 commits into from
Jan 23, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
change fix to be os-specific
  • Loading branch information
AurelienFT committed Jan 23, 2025

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
commit 0171e349feacf648c4f4cc2377e1782a665b66ed
8 changes: 4 additions & 4 deletions crates/services/p2p/Cargo.toml
Original file line number Diff line number Diff line change
@@ -39,10 +39,6 @@ libp2p = { version = "0.53.2", default-features = false, features = [
"metrics",
] }
libp2p-mplex = "0.41.0"

# Remove when we upgrade rust version
netlink-proto = { version = "=0.11.3", optional = true }

postcard = { workspace = true, features = ["use-std"] }
prometheus-client = { workspace = true }
quick-protobuf = "0.8.1"
@@ -76,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 }
Loading