-
Notifications
You must be signed in to change notification settings - Fork 513
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
Fix warnings from Rust 1.80.0 nightly #3074
Fix warnings from Rust 1.80.0 nightly #3074
Conversation
The change here is that |
I think the correct fix would be to also add |
This is pretty unpleasant. I also wonder - when the MSRV is finally caught up - whether it will be smart enough to tell us that we don't need the |
Yeah, I agree. I think the combination of It might be best to just add I really want to get other PRs unblocked, though, so this is kind of urgent. |
Looking at the lint's implementation, it seems there's a special carve out for explicitly global use, e.g. Or, yes, allowing the lint. |
I recently had to remove all the global |
Let's just allow the lint and keep changes to a minimum please. |
af9a466
to
f66dfb6
Compare
It should be as simple as removing it from here: Line 18 in 0940e1f
|
f66dfb6
to
855acb4
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks Arlie!
CI jobs are failing because Rust nightly tools have added new warnings. This PR fixes all warnings as of nightly 2024-06-04.