Skip to content

Commit

Permalink
Update elliptic-curve and digest (#433)
Browse files Browse the repository at this point in the history
Updates these dependencies to the following versions:

- `digest` => v0.10
- `elliptic-curve` => v0.12.0-pre.0
  • Loading branch information
daxpedda authored Jan 18, 2022
1 parent c525b5c commit 070d328
Show file tree
Hide file tree
Showing 15 changed files with 800 additions and 506 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ecdsa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- thumbv7em-none-eabi
- wasm32-unknown-unknown
rust:
- 1.56.0 # MSRV
- 1.57.0 # MSRV
- stable
steps:
- uses: actions/checkout@v1
Expand Down Expand Up @@ -53,7 +53,7 @@ jobs:
strategy:
matrix:
rust:
- 1.56.0 # MSRV
- 1.57.0 # MSRV
- stable
steps:
- uses: actions/checkout@v1
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/security-audit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,7 @@ jobs:
- uses: actions-rs/audit-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
- uses: actions-rs/audit-check@v1
working-directory: ed25519
with:
token: ${{ secrets.GITHUB_TOKEN }}
9 changes: 8 additions & 1 deletion .github/workflows/workspace.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,22 @@ jobs:
with:
command: fmt
args: --all -- --check
- uses: actions-rs/cargo@v1
working-directory: ed25519
with:
command: fmt
args: --all -- --check

clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions-rs/toolchain@v1
with:
toolchain: 1.56.0
toolchain: 1.57.0
components: clippy
override: true
profile: minimal
- run: cargo clippy --all-features -- -D warnings
- run: cargo clippy --all-features -- -D warnings
working-directory: ed25519
Loading

0 comments on commit 070d328

Please sign in to comment.