Skip to content

Commit 3d2c4d2

Browse files
committed
Raise required compiler to Rust 1.71
1 parent 60b8350 commit 3d2c4d2

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
strategy:
2525
fail-fast: false
2626
matrix:
27-
rust: [nightly, beta, stable, 1.80.0, 1.70.0]
27+
rust: [nightly, beta, stable, 1.80.0, 1.71.0]
2828
timeout-minutes: 45
2929
steps:
3030
- uses: actions/checkout@v6
@@ -36,7 +36,7 @@ jobs:
3636
if: matrix.rust == 'nightly'
3737
- run: cargo check
3838
- run: cargo run --example readme
39-
if: matrix.rust != '1.70.0'
39+
if: matrix.rust != '1.71.0'
4040
- uses: actions/upload-artifact@v6
4141
if: matrix.rust == 'nightly' && always()
4242
with:

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ documentation = "https://docs.rs/oqueue"
88
edition = "2021"
99
license = "MIT OR Apache-2.0"
1010
repository = "https://github.com/dtolnay/oqueue"
11-
rust-version = "1.70"
11+
rust-version = "1.71"
1212

1313
[dependencies]
1414
readonly = "0.2.10"

0 commit comments

Comments
 (0)