You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Rust 1.81.0 adds a new lint level expect, IIUC, this is for false-positive lints, it allows a lint temporarily and gives a warning when the lint is no longer needed so that you can remove the lint. Nix should replace all the allow(false_positve_lint) with expect(false_positive_lint) when we bump our MSRV to 1.81.0.
Rust 1.81.0 adds a new lint level
expect
, IIUC, this is for false-positive lints, it allows a lint temporarily and gives a warning when the lint is no longer needed so that you can remove the lint. Nix should replace all theallow(false_positve_lint)
withexpect(false_positive_lint)
when we bump our MSRV to 1.81.0.Ref: https://blog.rust-lang.org/2024/09/05/Rust-1.81.0.html#expectlint
The text was updated successfully, but these errors were encountered: