Skip to content

Commit

Permalink
Fix version compatibility error (#2608)
Browse files Browse the repository at this point in the history
Fix in version compatibility, waiting for
#2607

## 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
  • Loading branch information
AurelienFT authored Jan 21, 2025
1 parent 1a294e2 commit b6dbed4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
2 changes: 2 additions & 0 deletions version-compatibility/forkless-upgrade/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ hex = "0.4.3"
rand = "0.8"
tempfile = "3.4"
tokio = { version = "1.37.0", features = ["rt-multi-thread"] }
# Remove when we upgrade rust version
netlink-proto = "=0.11.3"

# Neutral deps
fuel-core-trace = { path = "../../crates/trace" }
Expand Down
3 changes: 3 additions & 0 deletions version-compatibility/forkless-upgrade/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
#![deny(unused_crate_dependencies)]
#![deny(warnings)]

#[cfg(test)]
use netlink_proto as _;

#[cfg(test)]
mod backward_compatibility;
#[cfg(test)]
Expand Down

0 comments on commit b6dbed4

Please sign in to comment.