Skip to content

Commit

Permalink
Merge pull request #197 from marshallpierce/mp/update-msrv
Browse files Browse the repository at this point in the history
Update MSRV and criterion
  • Loading branch information
marshallpierce committed Nov 27, 2022
2 parents 7fa4339 + 854ef38 commit 442a809
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Expand Up @@ -14,7 +14,7 @@ workflows:
# be easier on the CI hosts since presumably those fat lower layers will already be cached, and
# therefore faster than a minimal, customized alpine.
# MSRV
'rust:1.51.0'
'rust:1.57.0'
]
# a hacky scheme to work around CircleCI's inability to deal with mutable docker tags, forcing us to
# get a nightly or stable toolchain via rustup instead of a mutable docker tag
Expand Down
5 changes: 3 additions & 2 deletions Cargo.toml
Expand Up @@ -10,15 +10,16 @@ keywords = ["base64", "utf8", "encode", "decode", "no_std"]
categories = ["encoding"]
license = "MIT OR Apache-2.0"
edition = "2018"
rust-version = "1.51.0"
rust-version = "1.57.0"

[[bench]]
name = "benchmarks"
harness = false

[dev-dependencies]
criterion = "0.3.5"
criterion = "0.4.0"
rand = { version = "0.8.5", features = ["small_rng"] }
# clap 4 would require 1.60
structopt = "0.3.26"
# test fixtures for engine tests
rstest = "0.12.0"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -45,7 +45,7 @@ If you have a `Read` (e.g. reading a file or network socket), there are various

## Rust version compatibility

The minimum required Rust version is 1.51.0.
The minimum required Rust version is 1.57.0.

# Contributing

Expand Down
2 changes: 1 addition & 1 deletion RELEASE-NOTES.md
Expand Up @@ -2,7 +2,7 @@

## Next

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

## 0.20.0-alpha.1

Expand Down
2 changes: 1 addition & 1 deletion clippy.toml
@@ -1 +1 @@
msrv = "1.51.0"
msrv = "1.57.0"

0 comments on commit 442a809

Please sign in to comment.