Skip to content

Commit 3c6ef47

Browse files
chore: update REPO_MSRV 1.92 → 1.93
1 parent d0c9044 commit 3c6ef47

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ env:
1919
#
2020

2121
# This is the MSRV used by `wgpu` itself and all surrounding infrastructure.
22-
REPO_MSRV: "1.92"
22+
REPO_MSRV: "1.93"
2323
# This is the MSRV used by the `wgpu-core`, `wgpu-hal`, and `wgpu-types` crates,
2424
# to ensure that they can be used with firefox.
2525
CORE_MSRV: "1.82.0"

.github/workflows/cts.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ env:
1717
CARGO_INCREMENTAL: false
1818
CARGO_TERM_COLOR: always
1919
RUST_BACKTRACE: full
20-
MSRV: "1.92"
20+
MSRV: "1.93"
2121

2222
# Every time a PR is pushed to, cancel any previous jobs. This
2323
# makes us behave nicer to github and get faster turnaround times

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ on:
1515

1616
env:
1717
# This is the MSRV used by `wgpu` itself and all surrounding infrastructure.
18-
REPO_MSRV: "1.92"
18+
REPO_MSRV: "1.93"
1919

2020
CARGO_INCREMENTAL: false
2121
CARGO_TERM_COLOR: always

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ ref_as_ptr = "warn"
5656

5757
[workspace.package]
5858
edition = "2021"
59-
rust-version = "1.92"
59+
rust-version = "1.93"
6060
keywords = ["graphics"]
6161
license = "MIT OR Apache-2.0"
6262
homepage = "https://wgpu.rs/"

examples/standalone/01_hello_compute/Cargo.toml

Lines changed: 1 addition & 1 deletion
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.92"
4+
rust-version = "1.93"
55
publish = false
66

77
[dependencies]

examples/standalone/02_hello_window/Cargo.toml

Lines changed: 1 addition & 1 deletion
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.92"
4+
rust-version = "1.93"
55
publish = false
66

77
[dependencies]

examples/standalone/custom_backend/Cargo.toml

Lines changed: 1 addition & 1 deletion
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.92"
4+
rust-version = "1.93"
55
publish = false
66

77
[features]

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.92"
2+
channel = "1.93"
33
components = ["rustfmt", "clippy"]
44
targets = ["wasm32-unknown-unknown"]

0 commit comments

Comments
 (0)