Skip to content

Commit ab4e9ba

Browse files
committed
Increase MSRV to 1.87
1 parent c4aa80e commit ab4e9ba

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/rust.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,14 @@ jobs:
3939
strategy:
4040
fail-fast: false
4141
matrix:
42-
rust: ["1.85.0", nightly, beta]
42+
rust: ["1.87.0", nightly, beta]
4343
steps:
4444
- uses: actions/checkout@v4
4545

4646
- uses: dtolnay/rust-toolchain@nightly
47-
if: ${{ matrix.rust == '1.85.0' }}
47+
if: ${{ matrix.rust == '1.87.0' }}
4848
- name: Generate Cargo.lock with minimal-version dependencies
49-
if: ${{ matrix.rust == '1.85.0' }}
49+
if: ${{ matrix.rust == '1.87.0' }}
5050
run: |
5151
cargo -Zminimal-versions generate-lockfile
5252
cargo update --offline num-bigint --precise 0.4.2
@@ -61,7 +61,7 @@ jobs:
6161
- name: build
6262
run: cargo build -v
6363
- name: test
64-
if: ${{ matrix.rust != '1.85.0' }}
64+
if: ${{ matrix.rust != '1.87.0' }}
6565
run: cargo test -v && cargo doc -v
6666

6767
test_other_archs:

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ resolver = "2"
1010
publish = false
1111

1212
# note: when changed, also update test runner in `.github/workflows/rust.yml`
13-
rust-version = "1.85.0"
13+
rust-version = "1.87.0"
1414

1515
license = "MIT OR Apache-2.0"
1616
description = "Imaging library. Provides basic image processing and encoders/decoders for common image formats."

0 commit comments

Comments
 (0)