Skip to content

Commit

Permalink
Bump elliptic-curve to v0.7.0-pre; ecdsa to v0.9.0-pre
Browse files Browse the repository at this point in the history
Bumps all crates to use the new prereleases of these crates, as sourced
from git.
  • Loading branch information
tarcieri committed Nov 10, 2020
1 parent 99e75a0 commit fad1c08
Show file tree
Hide file tree
Showing 22 changed files with 183 additions and 154 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/k256.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
strategy:
matrix:
rust:
- 1.44.0 # MSRV
- 1.46.0 # MSRV
- stable
target:
- thumbv7em-none-eabi
Expand Down Expand Up @@ -56,7 +56,7 @@ jobs:
strategy:
matrix:
rust:
- 1.44.0 # MSRV
- 1.46.0 # MSRV
- stable
steps:
- uses: actions/checkout@v1
Expand All @@ -73,15 +73,15 @@ jobs:
include:
# 32-bit Linux
- target: i686-unknown-linux-gnu
rust: 1.44.0 # MSRV
rust: 1.46.0 # MSRV
deps: sudo apt install gcc-multilib
- target: i686-unknown-linux-gnu
rust: stable
deps: sudo apt install gcc-multilib

# 64-bit Linux
- target: x86_64-unknown-linux-gnu
rust: 1.44.0 # MSRV
rust: 1.46.0 # MSRV
- target: x86_64-unknown-linux-gnu
rust: stable

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/p256.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
strategy:
matrix:
rust:
- 1.44.0 # MSRV
- 1.46.0 # MSRV
- stable
target:
- thumbv7em-none-eabi
Expand Down Expand Up @@ -52,7 +52,7 @@ jobs:
strategy:
matrix:
rust:
- 1.44.0 # MSRV
- 1.46.0 # MSRV
- stable
steps:
- uses: actions/checkout@v1
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/p384.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
strategy:
matrix:
rust:
- 1.44.0 # MSRV
- 1.46.0 # MSRV
- stable
target:
- thumbv7em-none-eabi
Expand All @@ -49,7 +49,7 @@ jobs:
strategy:
matrix:
rust:
- 1.44.0 # MSRV
- 1.46.0 # MSRV
- stable
steps:
- uses: actions/checkout@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/security-audit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
uses: actions/cache@v1
with:
path: ~/.cargo/bin
key: ${{ runner.os }}-cargo-audit-v0.12.0
key: ${{ runner.os }}-cargo-audit-v0.13.1
- uses: actions-rs/audit-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
48 changes: 12 additions & 36 deletions .github/workflows/workspace.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,10 @@ jobs:
- uses: actions/checkout@v1
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.44.0 # MSRV
toolchain: 1.46.0 # MSRV
components: clippy
override: true
profile: minimal
- run: cargo clippy --all --all-features -- -D warnings

rustfmt:
Expand All @@ -34,9 +35,10 @@ jobs:
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
components: rustfmt
profile: minimal
override: true

- name: Run cargo fmt
uses: actions-rs/cargo@v1
Expand All @@ -47,44 +49,18 @@ jobs:
codecov:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Cache cargo registry
uses: actions/cache@v1
with:
path: ~/.cargo/registry
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('Cargo.lock') }}

- name: Cache cargo index
uses: actions/cache@v1
with:
path: ~/.cargo/git
key: ${{ runner.os }}-cargo-index-${{ hashFiles('Cargo.lock') }}

- name: Cache cargo build
uses: actions/cache@v1
with:
path: target
key: ${{ runner.os }}-coverage-cargo-build-target-${{ hashFiles('Cargo.lock') }}

- name: Install stable toolchain
uses: actions-rs/toolchain@v1
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
override: true

- name: Run cargo-tarpaulin
uses: actions-rs/tarpaulin@v0.1
- uses: actions-rs/tarpaulin@v0.1
with:
version: 'latest'
version: latest
args: --all --all-features -- --test-threads 1

- name: Upload to codecov.io
uses: codecov/codecov-action@v1.0.13

- name: Archive code coverage results
uses: actions/upload-artifact@v1
- uses: codecov/codecov-action@v1
- uses: actions/upload-artifact@v1
with:
name: code-coverage-report
path: cobertura.xml
Loading

0 comments on commit fad1c08

Please sign in to comment.