Skip to content

Commit

Permalink
crypto: bump elliptic-curve to v0.13; MSRV 1.65 (#1302)
Browse files Browse the repository at this point in the history
  • Loading branch information
tarcieri committed Apr 18, 2023
1 parent 6560211 commit 7d55231
Show file tree
Hide file tree
Showing 6 changed files with 303 additions and 47 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/crypto.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
strategy:
matrix:
rust:
- 1.60.0 # MSRV
- 1.65.0 # MSRV
- stable
target:
- thumbv7em-none-eabi
Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:
strategy:
matrix:
rust:
- 1.60.0 # MSRV
- 1.65.0 # MSRV
- stable
steps:
- uses: actions/checkout@v3
Expand All @@ -75,6 +75,6 @@ jobs:
- uses: RustCrypto/actions/cargo-cache@master
- uses: dtolnay/rust-toolchain@master
with:
toolchain: 1.60.0
toolchain: 1.65.0
components: clippy
- run: cargo clippy --all --all-features -- -D warnings
40 changes: 2 additions & 38 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,16 @@ resolver = "2"
members = [
"aead",
"cipher",
"crypto",
"crypto-common",
"digest",
"kem",
"password-hash",
"signature",
"signature/async",
"universal-hash",
]
# re-add when all crates are MSRV 1.60+
exclude = [
"elliptic-curve" # re-add when all crates are MSRV 1.60+
"crypto",
"elliptic-curve"
]
Loading

0 comments on commit 7d55231

Please sign in to comment.