chore(deps): Update Rust Stable to v1.83 (#5829)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
This commit is contained in:
renovate[bot] 2024-11-29 16:49:04 +00:00 committed by GitHub
parent d90cab02b8
commit b4ea2d4be9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 6 additions and 6 deletions

View file

@ -164,7 +164,7 @@ jobs:
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
toolchain: "1.82" # STABLE
toolchain: "1.83" # STABLE
- uses: Swatinem/rust-cache@v2
- name: UI Tests
run: make test-ui-${{ matrix.features }}
@ -207,7 +207,7 @@ jobs:
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
toolchain: "1.82" # STABLE
toolchain: "1.83" # STABLE
- uses: Swatinem/rust-cache@v2
- name: Check documentation
env:
@ -222,7 +222,7 @@ jobs:
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
toolchain: "1.82" # STABLE
toolchain: "1.83" # STABLE
components: rustfmt
- uses: Swatinem/rust-cache@v2
- name: Check formatting
@ -236,7 +236,7 @@ jobs:
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
toolchain: "1.82" # STABLE
toolchain: "1.83" # STABLE
components: clippy
- uses: Swatinem/rust-cache@v2
- name: Lint (ultra-minimal)

View file

@ -10,7 +10,7 @@ ifneq (${TOOLCHAIN_TARGET},)
ARGS+=--target ${TOOLCHAIN_TARGET}
endif
STABLE?=1.82
STABLE?=1.83
_FEATURES = minimal default wasm full debug release
_FEATURES_minimal = --no-default-features --features "std"

View file

@ -8,7 +8,7 @@
#![cfg(feature = "unstable-derive-ui-tests")]
#[cfg(feature = "derive")]
#[rustversion::attr(not(stable(1.82)), ignore)] // STABLE
#[rustversion::attr(not(stable(1.83)), ignore)] // STABLE
#[test]
fn ui() {
let t = trybuild::TestCases::new();