Skip to content

Commit ce7589b

Browse files
build: upgrade rust-version for Firefox crates 1.77.2 → 1.80.1
1 parent 955725a commit ce7589b

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
@@ -40,10 +40,10 @@ env:
4040
# Once this fix hits stable Rust, we can use that instead of nightly.
4141
DOCS_RUST_VERSION: "nightly-2024-08-11"
4242
# This is the MSRV used by `wgpu` itself and all surrounding infrastructure.
43-
REPO_MSRV: "1.77.2"
43+
REPO_MSRV: "1.80.1"
4444
# This is the MSRV used by the `wgpu-core`, `wgpu-hal`, and `wgpu-types` crates,
4545
# to ensure that they can be used with firefox.
46-
CORE_MSRV: "1.77.2"
46+
CORE_MSRV: "1.80.1"
4747

4848
#
4949
# Environment variables

Cargo.toml

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

4343
[workspace.package]
4444
edition = "2021"
45-
rust-version = "1.77.0"
45+
rust-version = "1.80.0"
4646
keywords = ["graphics"]
4747
license = "MIT OR Apache-2.0"
4848
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.77.0"
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.77.2"
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.77.0"
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.77.0"
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.77.0"
16+
rust-version = "1.80.0"
1717

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

0 commit comments

Comments
 (0)