Skip to content

Commit 5be6396

Browse files
build: upgrade rust-version for Firefox crates 1.77.2 → 1.80.1
1 parent cb42875 commit 5be6396

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@ env:
3434
# In order to prevent CI regressions, we pin the nightly version.
3535
NIGHTLY_VERSION: "nightly-2024-08-11"
3636
# This is the MSRV used by `wgpu` itself and all surrounding infrastructure.
37-
REPO_MSRV: "1.76"
37+
REPO_MSRV: "1.80.1"
3838
# This is the MSRV used by the `wgpu-core`, `wgpu-hal`, and `wgpu-types` crates,
3939
# to ensure that they can be used with firefox.
40-
CORE_MSRV: "1.76"
40+
CORE_MSRV: "1.80.1"
4141

4242
#
4343
# Environment variables

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ default-members = [
4040

4141
[workspace.package]
4242
edition = "2021"
43-
rust-version = "1.76"
43+
rust-version = "1.80.1"
4444
keywords = ["graphics"]
4545
license = "MIT OR Apache-2.0"
4646
homepage = "https://wgpu.rs/"

naga/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ autotests = false
1515
# copy the crates it actually uses out of the workspace, so it's meaningful for
1616
# them to have less restrictive MSRVs individually than the workspace as a
1717
# whole, if their code permits. See `../README.md` for details.
18-
rust-version = "1.76"
18+
rust-version = "1.80.0"
1919

2020
[[test]]
2121
name = "naga-test"

rust-toolchain.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[toolchain]
2-
channel = "1.76"
2+
channel = "1.80.1"
33
components = ["rustfmt", "clippy"]
44
targets = ["wasm32-unknown-unknown"]

wgpu-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ license = "MIT OR Apache-2.0"
1313
# copy the crates it actually uses out of the workspace, so it's meaningful for
1414
# them to have less restrictive MSRVs individually than the workspace as a
1515
# whole, if their code permits. See `../README.md` for details.
16-
rust-version = "1.76"
16+
rust-version = "1.80.0"
1717

1818
[package.metadata.docs.rs]
1919
all-features = true

wgpu-hal/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ license = "MIT OR Apache-2.0"
1313
# copy the crates it actually uses out of the workspace, so it's meaningful for
1414
# them to have less restrictive MSRVs individually than the workspace as a
1515
# whole, if their code permits. See `../README.md` for details.
16-
rust-version = "1.76"
16+
rust-version = "1.80.0"
1717

1818
[package.metadata.docs.rs]
1919
# Ideally we would enable all the features.

wgpu-types/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ license = "MIT OR Apache-2.0"
1313
# copy the crates it actually uses out of the workspace, so it's meaningful for
1414
# them to have less restrictive MSRVs individually than the workspace as a
1515
# whole, if their code permits. See `../README.md` for details.
16-
rust-version = "1.76"
16+
rust-version = "1.80.0"
1717

1818
[package.metadata.docs.rs]
1919
all-features = true

0 commit comments

Comments
 (0)