Skip to content

Commit 442a809

Browse files
Merge pull request marshallpierce#197 from marshallpierce/mp/update-msrv
Update MSRV and criterion
2 parents 7fa4339 + 854ef38 commit 442a809

File tree

5 files changed

+7
-6
lines changed

5 files changed

+7
-6
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ workflows:
1414
# be easier on the CI hosts since presumably those fat lower layers will already be cached, and
1515
# therefore faster than a minimal, customized alpine.
1616
# MSRV
17-
'rust:1.51.0'
17+
'rust:1.57.0'
1818
]
1919
# a hacky scheme to work around CircleCI's inability to deal with mutable docker tags, forcing us to
2020
# get a nightly or stable toolchain via rustup instead of a mutable docker tag

Cargo.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,16 @@ keywords = ["base64", "utf8", "encode", "decode", "no_std"]
1010
categories = ["encoding"]
1111
license = "MIT OR Apache-2.0"
1212
edition = "2018"
13-
rust-version = "1.51.0"
13+
rust-version = "1.57.0"
1414

1515
[[bench]]
1616
name = "benchmarks"
1717
harness = false
1818

1919
[dev-dependencies]
20-
criterion = "0.3.5"
20+
criterion = "0.4.0"
2121
rand = { version = "0.8.5", features = ["small_rng"] }
22+
# clap 4 would require 1.60
2223
structopt = "0.3.26"
2324
# test fixtures for engine tests
2425
rstest = "0.12.0"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ If you have a `Read` (e.g. reading a file or network socket), there are various
4545

4646
## Rust version compatibility
4747

48-
The minimum required Rust version is 1.51.0.
48+
The minimum required Rust version is 1.57.0.
4949

5050
# Contributing
5151

RELEASE-NOTES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Next
44

5-
- MSRV is now 1.51.0 to keep up with `criterion`
5+
- Update MSRV to 1.57.0
66

77
## 0.20.0-alpha.1
88

clippy.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
msrv = "1.51.0"
1+
msrv = "1.57.0"

0 commit comments

Comments
 (0)