Skip to content

Commit 8a1d59b

Browse files
chore(deps): Update Rust Stable to v1.85 (#5921)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 9caee53 commit 8a1d59b

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/ci.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ jobs:
164164
- name: Install Rust
165165
uses: dtolnay/rust-toolchain@stable
166166
with:
167-
toolchain: "1.84" # STABLE
167+
toolchain: "1.85" # STABLE
168168
- uses: Swatinem/rust-cache@v2
169169
- name: UI Tests
170170
run: make test-ui-${{ matrix.features }}
@@ -207,7 +207,7 @@ jobs:
207207
- name: Install Rust
208208
uses: dtolnay/rust-toolchain@stable
209209
with:
210-
toolchain: "1.84" # STABLE
210+
toolchain: "1.85" # STABLE
211211
- uses: Swatinem/rust-cache@v2
212212
- name: Check documentation
213213
env:
@@ -222,7 +222,7 @@ jobs:
222222
- name: Install Rust
223223
uses: dtolnay/rust-toolchain@stable
224224
with:
225-
toolchain: "1.84" # STABLE
225+
toolchain: "1.85" # STABLE
226226
components: rustfmt
227227
- uses: Swatinem/rust-cache@v2
228228
- name: Check formatting
@@ -236,7 +236,7 @@ jobs:
236236
- name: Install Rust
237237
uses: dtolnay/rust-toolchain@stable
238238
with:
239-
toolchain: "1.84" # STABLE
239+
toolchain: "1.85" # STABLE
240240
components: clippy
241241
- uses: Swatinem/rust-cache@v2
242242
- name: Lint (ultra-minimal)

Makefile

+1-1
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.84
13+
STABLE?=1.85
1414

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

tests/derive_ui.rs

+1-1
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.84)), ignore)] // STABLE
11+
#[rustversion::attr(not(stable(1.85)), ignore)] // STABLE
1212
#[test]
1313
fn ui() {
1414
let t = trybuild::TestCases::new();

0 commit comments

Comments
 (0)