chore(deps): Update dependency STABLE to v1.81.0

This commit is contained in:
renovate[bot] 2024-10-01 04:15:24 +00:00 committed by GitHub
parent f6519218e4
commit a25c73411d
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.80" # STABLE
toolchain: "1.81.0" # 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.80" # STABLE
toolchain: "1.81.0" # 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.80" # STABLE
toolchain: "1.81.0" # 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.80" # STABLE
toolchain: "1.81.0" # 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.80
STABLE?=1.81.0
_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.80)), ignore)] // STABLE
#[rustversion::attr(not(stable(1.81.0)), ignore)] // STABLE
#[test]
fn ui() {
let t = trybuild::TestCases::new();