From 11492233cd59fc0e2701ab12cd00607e9bbf125c Mon Sep 17 00:00:00 2001 From: Andreas Molzer Date: Tue, 11 Oct 2022 13:18:27 +0200 Subject: [PATCH] Bump MSRV to 1.61 --- .github/workflows/rust.yml | 2 +- Cargo.toml | 2 +- fuzz-afl/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 01bbd3284d..9e6f2f795f 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - rust: ["1.56.1", stable, beta, nightly] + rust: ["1.61.0", stable, beta, nightly] features: [gif, jpeg, png, tiff, ico, pnm, tga, webp, bmp, hdr, dxt, dds, farbfeld, openexr, jpeg_rayon, webp-encoder, ''] steps: - uses: actions/checkout@v2 diff --git a/Cargo.toml b/Cargo.toml index 786ca12dd9..6e9f1d9075 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ edition = "2018" resolver = "2" # note: when changed, also update test runner in `.github/workflows/rust.yml` -rust-version = "1.56.1" +rust-version = "1.61.0" license = "MIT" description = "Imaging library written in Rust. Provides basic filters and decoders for the most common image formats." diff --git a/fuzz-afl/Cargo.toml b/fuzz-afl/Cargo.toml index be08713a2b..311e4a1a86 100644 --- a/fuzz-afl/Cargo.toml +++ b/fuzz-afl/Cargo.toml @@ -8,7 +8,7 @@ publish = false path = ".." [dependencies.afl] -version = "0.10.1" +version = "0.12.8" # Prevent this from interfering with workspaces [workspace]