build: migrate Rust 1.64 -> 1.65

This commit is contained in:
Erich Gubler 2022-11-07 10:30:19 -05:00 committed by Jim Blandy
parent 3d76979da6
commit 46af01c302
6 changed files with 7 additions and 6 deletions

1
.clippy.toml Normal file
View File

@ -0,0 +1 @@
large-error-threshold = 225 # bytes

View File

@ -8,7 +8,7 @@ on:
env:
RUST_BACKTRACE: 1
RUST_VERSION: 1.64
RUST_VERSION: 1.65
PKG_CONFIG_ALLOW_CROSS: 1 # allow android to work
RUSTFLAGS: --cfg=web_sys_unstable_apis -D warnings
RUSTDOCFLAGS: -Dwarnings

View File

@ -9,7 +9,7 @@ on:
env:
RUST_BACKTRACE: 1
RUST_VERSION: 1.64
RUST_VERSION: 1.65
jobs:
cts:

View File

@ -99,7 +99,7 @@ Bottom level categories:
### Testing/Internal
- Update the `minimum supported rust version` to 1.62
- Update the `minimum supported rust version` to 1.65
- Use cargo 1.64 workspace inheritance feature. By @jinleili in [#3107](https://github.com/gfx-rs/wgpu/pull/3107)
#### Vulkan

View File

@ -17,7 +17,7 @@ default-members = ["wgpu", "wgpu-hal", "wgpu-info"]
[workspace.package]
edition = "2021"
rust-version = "1.64"
rust-version = "1.65"
keywords = ["graphics"]
license = "MIT OR Apache-2.0"
homepage = "https://wgpu.rs/"

View File

@ -31,8 +31,8 @@ For an overview of all the components in the gfx-rs ecosystem, see [the big pict
### MSRV policy
Minimum Supported Rust Version is **1.64**.
It is enforced on CI (in "/.github/workflows/ci.yml", "/.github/workflows/cts.yml") with `RUST_VERSION` variable.
Minimum Supported Rust Version is **1.65**.
It is enforced on CI (in "/.github/workflows/ci.yml") with `RUST_VERSION` variable.
This version can only be upgraded in breaking releases.
## Getting Started