Skip to content

Commit d85bb38

Browse files
committed
Reduce repo MSRV from 1.85 to 1.84
Fixes gfx-rs#7409
1 parent 7b6ff5f commit d85bb38

File tree

11 files changed

+11
-11
lines changed

11 files changed

+11
-11
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ env:
3636
CI_BINARY_BUILD: "build20"
3737

3838
# This is the MSRV used by `wgpu` itself and all surrounding infrastructure.
39-
REPO_MSRV: "1.85"
39+
REPO_MSRV: "1.84"
4040
# This is the MSRV used by the `wgpu-core`, `wgpu-hal`, and `wgpu-types` crates,
4141
# to ensure that they can be used with firefox.
4242
CORE_MSRV: "1.82.0"

.github/workflows/docs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010

1111
env:
1212
# This is the MSRV used by `wgpu` itself and all surrounding infrastructure.
13-
REPO_MSRV: "1.85"
13+
REPO_MSRV: "1.84"
1414

1515
CARGO_INCREMENTAL: false
1616
CARGO_TERM_COLOR: always

.github/workflows/generate.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ env:
1313
#
1414

1515
# This is the MSRV used by `wgpu` itself and all surrounding infrastructure.
16-
REPO_MSRV: "1.85"
16+
REPO_MSRV: "1.84"
1717
RUSTFLAGS: -D warnings
1818

1919
jobs:

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ ref_as_ptr = "warn"
5050

5151
[workspace.package]
5252
edition = "2021"
53-
rust-version = "1.85"
53+
rust-version = "1.84"
5454
keywords = ["graphics"]
5555
license = "MIT OR Apache-2.0"
5656
homepage = "https://wgpu.rs/"

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ On Linux, you can point to them using `LD_LIBRARY_PATH` environment.
149149
Due to complex dependants, we have two MSRV policies:
150150

151151
- `naga`, `wgpu-core`, `wgpu-hal`, and `wgpu-types`'s MSRV is **1.76**.
152-
- The rest of the workspace has an MSRV of **1.85**.
152+
- The rest of the workspace has an MSRV of **1.84**.
153153

154154
It is enforced on CI (in "/.github/workflows/ci.yml") with the `CORE_MSRV` and `REPO_MSRV` variables.
155155
This version can only be upgraded in breaking releases, though we release a breaking version every three months.

examples/standalone/01_hello_compute/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "wgpu-example-01-hello-compute"
33
edition = "2021"
4-
rust-version = "1.85"
4+
rust-version = "1.84"
55
publish = false
66

77
[dependencies]

examples/standalone/02_hello_window/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "wgpu-example-02-hello-window"
33
edition = "2021"
4-
rust-version = "1.85"
4+
rust-version = "1.84"
55
publish = false
66

77
[dependencies]

examples/standalone/custom_backend/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "wgpu-example-custom-backend"
33
edition = "2021"
4-
rust-version = "1.85"
4+
rust-version = "1.84"
55
publish = false
66

77
[dependencies]

naga/xtask/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "xtask"
33
version = "0.1.0"
44
edition = "2021"
55
publish = false
6-
rust-version = "1.85"
6+
rust-version = "1.84"
77

88
[dependencies]
99
anyhow = "1"

rust-toolchain.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[toolchain]
2-
channel = "1.85"
2+
channel = "1.84"
33
components = ["rustfmt", "clippy"]
44
targets = ["wasm32-unknown-unknown"]

xtask/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "xtask"
33
version = "0.1.0"
44
edition = "2021"
5-
rust-version = "1.85"
5+
rust-version = "1.84"
66
publish = false
77

88
[lints.rust]

0 commit comments

Comments
 (0)