Skip to content

Commit 1182239

Browse files
thrashr888claude
andcommitted
fix: bump CI Rust to 1.88 (let-chains stabilized in 1.88, not 1.87)
let_chains was stabilized in Rust 1.88.0 for edition 2024, per rust-lang/rust#132833. 1.87 still reports them as unstable. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent ded4f8a commit 1182239

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ on:
88

99
env:
1010
CARGO_TERM_COLOR: always
11-
# Rust 1.87+ required for let-chains (edition 2024)
12-
RUST_VERSION: "1.87"
11+
# Rust 1.88+ required for let-chains (edition 2024)
12+
RUST_VERSION: "1.88"
1313

1414
jobs:
1515
check:

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ on:
77

88
env:
99
CARGO_TERM_COLOR: always
10-
# Rust 1.87+ required for let-chains (edition 2024)
11-
RUST_VERSION: "1.87"
10+
# Rust 1.88+ required for let-chains (edition 2024)
11+
RUST_VERSION: "1.88"
1212

1313
permissions:
1414
contents: write

0 commit comments

Comments
 (0)