Skip to content

Commit 8b24dd9

Browse files
authored
aead: bump crypto-common to v0.2.0-pre; MSRV 1.65 (#1384)
Replaces `generic-array` with `hybrid-array`, which is built on a combination of `typenum` and const generics, providing a degree of interoperability between the two systems.
1 parent 137a26f commit 8b24dd9

9 files changed

Lines changed: 180 additions & 225 deletions

File tree

.github/workflows/aead.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
strategy:
2323
matrix:
2424
rust:
25-
- 1.56.0 # MSRV
25+
- 1.65.0 # MSRV
2626
- stable
2727
target:
2828
- thumbv7em-none-eabi
@@ -42,17 +42,18 @@ jobs:
4242
- run: cargo build --target ${{ matrix.target }} --release --no-default-features --features rand_core
4343
- run: cargo build --target ${{ matrix.target }} --release --no-default-features --features stream
4444

45-
minimal-versions:
46-
uses: RustCrypto/actions/.github/workflows/minimal-versions.yml@master
47-
with:
48-
working-directory: ${{ github.workflow }}
45+
# TODO(tarcieri): re-enable after next `crypto-common` release
46+
# minimal-versions:
47+
# uses: RustCrypto/actions/.github/workflows/minimal-versions.yml@master
48+
# with:
49+
# working-directory: ${{ github.workflow }}
4950

5051
test:
5152
runs-on: ubuntu-latest
5253
strategy:
5354
matrix:
5455
rust:
55-
- 1.56.0 # MSRV
56+
- 1.65.0 # MSRV
5657
- stable
5758
steps:
5859
- uses: actions/checkout@v4

Cargo.lock

Lines changed: 112 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
[workspace]
22
resolver = "2"
33
members = [
4+
"aead",
45
"cipher",
56
"crypto",
67
"crypto-common",
@@ -11,7 +12,6 @@ members = [
1112
]
1213
# TODO: re-add to `members` when MSRV has been bumped to 1.60+
1314
exclude = [
14-
"aead",
1515
"signature",
1616
"signature/async",
1717
"universal-hash",

0 commit comments

Comments
 (0)