diff --git a/.clippy.toml b/.clippy.toml new file mode 100644 index 000000000..1fdcf3e5a --- /dev/null +++ b/.clippy.toml @@ -0,0 +1 @@ +large-error-threshold = 225 # bytes diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e29079901..5ad04a7f8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 diff --git a/.github/workflows/cts.yml b/.github/workflows/cts.yml index 3fe7e2685..84695334a 100644 --- a/.github/workflows/cts.yml +++ b/.github/workflows/cts.yml @@ -9,7 +9,7 @@ on: env: RUST_BACKTRACE: 1 - RUST_VERSION: 1.64 + RUST_VERSION: 1.65 jobs: cts: diff --git a/CHANGELOG.md b/CHANGELOG.md index 362633008..d18a2a9a5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/Cargo.toml b/Cargo.toml index 1eb3768f0..211736a5f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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/" diff --git a/README.md b/README.md index e4b4ae1c5..315606cb3 100644 --- a/README.md +++ b/README.md @@ -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