Skip to content

Commit f422f07

Browse files
chore(deps): Update Rust Stable to v1.96
1 parent c8c9355 commit f422f07

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

.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.95" # STABLE
170+
toolchain: "1.96" # STABLE
171171
- uses: Swatinem/rust-cache@v2
172172
- name: UI Tests
173173
run: make test-ui-${{ matrix.features }}
@@ -213,7 +213,7 @@ jobs:
213213
- name: Install Rust
214214
uses: dtolnay/rust-toolchain@stable
215215
with:
216-
toolchain: "1.95" # STABLE
216+
toolchain: "1.96" # STABLE
217217
- uses: Swatinem/rust-cache@v2
218218
- name: Check documentation
219219
env:
@@ -228,7 +228,7 @@ jobs:
228228
- name: Install Rust
229229
uses: dtolnay/rust-toolchain@stable
230230
with:
231-
toolchain: "1.95" # STABLE
231+
toolchain: "1.96" # STABLE
232232
components: rustfmt
233233
- uses: Swatinem/rust-cache@v2
234234
- name: Check formatting
@@ -242,7 +242,7 @@ jobs:
242242
- name: Install Rust
243243
uses: dtolnay/rust-toolchain@stable
244244
with:
245-
toolchain: "1.95" # STABLE
245+
toolchain: "1.96" # STABLE
246246
components: clippy
247247
- uses: Swatinem/rust-cache@v2
248248
- 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.95
13+
STABLE?=1.96
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.95)), ignore)] // STABLE
11+
#[rustversion::attr(not(stable(1.96)), ignore)] // STABLE
1212
#[test]
1313
fn ui() {
1414
let t = trybuild::TestCases::new();

0 commit comments

Comments
 (0)