-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
name: ci | ||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- master | ||
jobs: | ||
msrv: | ||
name: msrv | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: dtolnay/rust-toolchain@master | ||
with: | ||
toolchain: 1.67.0 | ||
components: clippy, rustfmt | ||
- run: cargo fmt --all | ||
- run: cargo clippy --all-features -- --deny warnings | ||
- run: cargo test --all-features | ||
- run: cargo bench --all-features |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,8 +9,8 @@ readme = "README.md" | |
repository = "https://github.com/jcreekmore/pem-rs.git" | ||
version = "1.1.2-alpha.0" | ||
categories = [ "cryptography" ] | ||
edition = "2018" | ||
rust-version = "1.34.2" | ||
edition = "2021" | ||
rust-version = "1.67.0" | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
jcreekmore
Author
Owner
|
||
|
||
[dependencies] | ||
base64 = "0.13.0" | ||
|
Hey there. There is probably a good reason for this version bump, but in case it was fairly arbitrary for you, I just wanted to note that this close-to-latest-stable MSRV does make including the new
pem
version harder for libraries that have stricter MSRVs. E.g.kube
MSRV lags 3 versions behind by user requests, so we have to wait for a month or two to bump this.