Skip to content

Commit 0e799be

Browse files
committed
Bump MSRV to 1.60, set edition to 2021
1 parent e30c034 commit 0e799be

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
strategy:
1515
matrix:
16-
rust: [stable, beta, nightly, 1.51.0] # MSRV=1.51
16+
rust: [stable, beta, nightly, 1.61.0] # MSRV=1.61
1717
steps:
1818
- uses: actions/checkout@v2
1919
with: {submodules: true}

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "qoi"
33
version = "0.4.0"
44
description = "VERY fast encoder/decoder for QOI (Quite Okay Image) format"
55
authors = ["Ivan Smirnov <[email protected]>"]
6-
edition = "2018"
6+
edition = "2021"
77
readme = "README.md"
88
license = "MIT/Apache-2.0"
99
repository = "https://github.com/aldanor/qoi-rust"
@@ -14,7 +14,7 @@ keywords = ["qoi", "graphics", "image", "encoding"]
1414
exclude = [
1515
"assets/*",
1616
]
17-
rust-version = "1.51.0"
17+
rust-version = "1.61.0"
1818

1919
[features]
2020
default = ["std"]

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,7 @@ this library proved to be the fastest one by a noticeable margin.
5151

5252
### Rust version
5353

54-
The minimum required Rust version is 1.51.0 (any changes to this would be
55-
considered to be a breaking change).
54+
The minimum required Rust version for the latest crate version is 1.61.0.
5655

5756
### `no_std`
5857

0 commit comments

Comments
 (0)