Skip to content

Commit c3a47f1

Browse files
committed
ci: MSRV 1.86 — codebase uses let-chains (RFC 2497, stabilized 1.86)
1 parent 51835a6 commit c3a47f1

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
fail-fast: false
1313
matrix:
14-
rust: [1.85, stable, nightly]
14+
rust: [1.86, stable, nightly]
1515
os: [ubuntu-latest, windows-latest, macOS-latest]
1616
runs-on: ${{ matrix.os }}
1717
steps:
@@ -25,8 +25,8 @@ jobs:
2525
run: cargo fmt --all -- --check
2626
continue-on-error: ${{ matrix.rust == 'nightly' }}
2727

28-
- name: Clippy (1.85 compatible crates)
29-
if: matrix.rust == '1.85'
28+
- name: Clippy (1.86 compatible crates)
29+
if: matrix.rust == '1.86'
3030
run: cargo clippy -p aegis-core -p aegis-cli -p aegis-test-utils -p aegis-ffi
3131

3232
- name: Clippy (full workspace)

rust-toolchain.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[toolchain]
2-
channel = "stable"
2+
channel = "1.86.0"
33
targets = ["x86_64-pc-windows-msvc", "x86_64-unknown-linux-gnu", "wasm32-unknown-unknown"]

0 commit comments

Comments
 (0)