Skip to content

Commit

Permalink
Update crates to cipher v0.4 (#103)
Browse files Browse the repository at this point in the history
  • Loading branch information
newpavlov committed Feb 10, 2022
1 parent 9d876cb commit 7cb2b97
Show file tree
Hide file tree
Showing 53 changed files with 1,033 additions and 870 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/daa.yml → .github/workflows/cbc-mac.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
name: daa
name: cbc-mac

on:
pull_request:
paths:
- "daa/**"
- "cbc-mac/**"
- "Cargo.*"
push:
branches: master


defaults:
run:
working-directory: daa
working-directory: cbc-mac

env:
CARGO_INCREMENTAL: 0
Expand All @@ -23,7 +23,7 @@ jobs:
strategy:
matrix:
rust:
- 1.41.0 # MSRV
- 1.56.0 # MSRV
- stable
target:
- thumbv7em-none-eabi
Expand All @@ -43,7 +43,7 @@ jobs:
strategy:
matrix:
rust:
- 1.41.0 # MSRV
- 1.56.0 # MSRV
- stable
steps:
- uses: actions/checkout@v1
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/cmac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
strategy:
matrix:
rust:
- 1.41.0 # MSRV
- 1.56.0 # MSRV
- stable
target:
- thumbv7em-none-eabi
Expand All @@ -42,7 +42,7 @@ jobs:
strategy:
matrix:
rust:
- 1.41.0 # MSRV
- 1.56.0 # MSRV
- stable
steps:
- uses: actions/checkout@v1
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pmac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
strategy:
matrix:
rust:
- 1.41.0 # MSRV
- 1.56.0 # MSRV
- stable
target:
- thumbv7em-none-eabi
Expand All @@ -42,7 +42,7 @@ jobs:
strategy:
matrix:
rust:
- 1.41.0 # MSRV
- 1.56.0 # MSRV
- stable
steps:
- uses: actions/checkout@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/workspace.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.41.0 # MSRV
toolchain: 1.56.0 # MSRV
components: clippy
- run: cargo clippy --all -- -D warnings

Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
target/
**/Cargo.lock
170 changes: 56 additions & 114 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
@@ -1,7 +1,9 @@
[workspace]
members = [
"cbc-mac",
"cmac",
"daa",
"hmac",
"pmac",
]

[profile.dev]
opt-level = 2
Loading

0 comments on commit 7cb2b97

Please sign in to comment.