Skip to content

Commit f8eb79c

Browse files
chore(deps): Update Rust Stable to v1.91
1 parent cd1a206 commit f8eb79c

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ jobs:
167167
- name: Install Rust
168168
uses: dtolnay/rust-toolchain@stable
169169
with:
170-
toolchain: "1.90" # STABLE
170+
toolchain: "1.91" # STABLE
171171
- uses: Swatinem/rust-cache@v2
172172
- name: UI Tests
173173
run: make test-ui-${{ matrix.features }}
@@ -210,7 +210,7 @@ jobs:
210210
- name: Install Rust
211211
uses: dtolnay/rust-toolchain@stable
212212
with:
213-
toolchain: "1.90" # STABLE
213+
toolchain: "1.91" # STABLE
214214
- uses: Swatinem/rust-cache@v2
215215
- name: Check documentation
216216
env:
@@ -225,7 +225,7 @@ jobs:
225225
- name: Install Rust
226226
uses: dtolnay/rust-toolchain@stable
227227
with:
228-
toolchain: "1.90" # STABLE
228+
toolchain: "1.91" # STABLE
229229
components: rustfmt
230230
- uses: Swatinem/rust-cache@v2
231231
- name: Check formatting
@@ -239,7 +239,7 @@ jobs:
239239
- name: Install Rust
240240
uses: dtolnay/rust-toolchain@stable
241241
with:
242-
toolchain: "1.90" # STABLE
242+
toolchain: "1.91" # STABLE
243243
components: clippy
244244
- uses: Swatinem/rust-cache@v2
245245
- name: Lint (ultra-minimal)

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ifneq (${TOOLCHAIN_TARGET},)
1010
ARGS+=--target ${TOOLCHAIN_TARGET}
1111
endif
1212

13-
STABLE?=1.90
13+
STABLE?=1.91
1414

1515
_FEATURES = minimal default wasm full debug release
1616
_FEATURES_minimal = --no-default-features --features "std"

tests/derive_ui.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#![cfg(feature = "unstable-derive-ui-tests")]
99

1010
#[cfg(feature = "derive")]
11-
#[rustversion::attr(not(stable(1.90)), ignore)] // STABLE
11+
#[rustversion::attr(not(stable(1.91)), ignore)] // STABLE
1212
#[test]
1313
fn ui() {
1414
let t = trybuild::TestCases::new();

0 commit comments

Comments
 (0)