-
Notifications
You must be signed in to change notification settings - Fork 18
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
0.11.4 is updating MSRV to 1.82.0 #29
Comments
Usage of |
Upstream issue: <rust-netlink/netlink-proto#29> Bring MSRV back to 1.80.0
The netlink-proto 0.11.5 has published with minimum supported rust version set to 1.75 with CI protected. Sorry for the mess. |
Thank you for the fast reaction ! :) |
## Description `netlink-proto` released a new version to downgrade MSRV : rust-netlink/netlink-proto#29 (comment) ## 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
Hello,
Thanks for the work in the maintenance of this crate :)
We spotted that you made an update yesterday and this update use
is_none_or
function which has been introduced in Rust1.82.0
which requires all users of this crate to use this version at least.As it was on a patch version Cargo resolves all 0.11.x to 0.11.4 which breaks the compilation if the project rely on a older version.
What do you want to do from this ? If it's expected then I'm ok to make a PR to add the MSRV more explicit using Rust tools or if it wasn't expected maybe it's better to do it on a 0.12 version.
Thanks again for your work on this crate !
The text was updated successfully, but these errors were encountered: