Skip to content

Commit

Permalink
Bump MSRV
Browse files Browse the repository at this point in the history
  • Loading branch information
kornelski committed Dec 22, 2024
1 parent 2949036 commit dec0944
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,17 @@ jobs:
strategy:
fail-fast: false
matrix:
rust: ["1.57.0", stable, beta, nightly]
rust: ["1.65.0", stable, beta, nightly]
os: [ubuntu-latest, windows-latest, macos-latest]
features: [""]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4

- uses: dtolnay/rust-toolchain@nightly
if: ${{ matrix.rust == '1.57.0' }}
if: ${{ matrix.rust == '1.65.0' }}
- name: Generate Cargo.lock with minimal-version dependencies
if: ${{ matrix.rust == '1.57.0' }}
if: ${{ matrix.rust == '1.65.0' }}
run: cargo -Zminimal-versions generate-lockfile

- uses: actions-rs/toolchain@v1
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ categories = ["multimedia::images"]
authors = ["The image-rs Developers"]
repository = "https://github.com/image-rs/image-png"

edition = "2018"
rust-version = "1.57"
edition = "2021"
rust-version = "1.65"
include = [
"/LICENSE-MIT",
"/LICENSE-APACHE",
Expand Down

0 comments on commit dec0944

Please sign in to comment.