-
Notifications
You must be signed in to change notification settings - Fork 948
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
Raise MSRV to Rust 1.80 #6105
Raise MSRV to Rust 1.80 #6105
Conversation
5b300f7
to
13db95e
Compare
Heeey, we're finally running into the same annoying errors here that I wasn't sure what to do with locally when I saw them:
☝🏻 @cwfitzgerald, @Wumpf: Not sure how to best proceed here, but I haven't given it many brain cycles, either. Will dedicate more in the absence of feedback in the next day or so. |
3aa12e9
to
b5973ab
Compare
a7cfba6
to
4e2f6ce
Compare
Leaving this as a draft until we actually have the option to upgrade to Rust 1.80. We might be able to hoist the upgrade to |
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
4e2f6ce
to
c229479
Compare
b8278cb
to
0adf9c8
Compare
7088d8d
to
313cf42
Compare
af32362
to
1bcf90d
Compare
8477e0f
to
4144908
Compare
5d8e12b
to
32f2326
Compare
4576530
to
e15347b
Compare
This was previously an `allow`-by-default warning in Clippy's `pedantic` group, but with Rust 1.83 it was promoted to a `warn`-by-default member of its `complexity` group.
Consumes [`cfg_aliases`#8](katharostech/cfg_aliases#8) to eliminate warnings from `rustc`.
This resolves remaining outstanding cases that offend [`--check-cfg` in Rust 1.80](https://blog.rust-lang.org/2024/07/25/Rust-1.80.0.html#checked-cfg-names-and-values) in `wgpu-core`.
…ck-cfg` in `wgpu_{hal,types}`
`std::mem::{size,align}_of{,_val}` was added to `std::prelude` in Rust 1.80; see [`rust`#123168](rust-lang/rust#123168).
Weaken our dependence on the `once_cell` crate by using functionality from `std` instead that was upstreamed from `once_cell`, this time with what's available in Rust 1.80+. It's not yet possible to eliminate this dependency entirely, but do what we can for now.
e15347b
to
ab06d69
Compare
Depends on Preemptunused_qualifications
lints triggered in Rust 1.80 #6147.Depends on Yet more preempting of Rust 1.80 lints #6180.