Skip to content

Commit d8243bf

Browse files
committed
Merge remote-tracking branch 'rustcrypto/master' into green-tests
2 parents b83ae75 + 89f6e88 commit d8243bf

27 files changed

+342
-267
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,11 @@ env:
1010
RUSTFLAGS: "-Dwarnings"
1111
RUSTDOCFLAGS: "-Dwarnings"
1212

13+
# Cancels CI jobs when new commits are pushed to a PR branch
14+
concurrency:
15+
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
16+
cancel-in-progress: true
17+
1318
jobs:
1419
build:
1520
runs-on: ubuntu-latest

.github/workflows/workspace.yml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@ on:
99
paths-ignore:
1010
- README.md
1111

12+
# Cancels CI jobs when new commits are pushed to a PR branch
13+
concurrency:
14+
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
15+
cancel-in-progress: true
16+
1217
jobs:
1318
clippy:
1419
runs-on: ubuntu-latest
@@ -44,4 +49,10 @@ jobs:
4449
- uses: Swatinem/rust-cache@v2
4550
- env:
4651
RUSTDOCFLAGS: "-Dwarnings --cfg docsrs"
47-
run: cargo doc --no-deps --features std,pem,serde,hazmat,sha2
52+
run: cargo doc --no-deps --features std,serde,hazmat,sha2
53+
54+
typos:
55+
runs-on: ubuntu-latest
56+
steps:
57+
- uses: actions/checkout@v4
58+
- uses: crate-ci/[email protected]

.typos.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[default.extend-identifiers]
2+
# typ stands for type, but it's a reserved identifier
3+
typ = "typ"

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9595

9696
### Removed
9797
- "Unsalted" PSS support ([#294])
98-
- `EncryptionPrimitive`/`DecriptionPrimitive` traits ([#300])
98+
- `EncryptionPrimitive`/`DescriptionPrimitive` traits ([#300])
9999
- `PublicKey`/`PrivateKey` traits ([#300])
100100
- `Zeroize` impl on `RsaPrivateKey`; automatically zeroized on drop ([#311])
101101
- `Deref<Target=RsaPublicKey>` impl on `RsaPrivateKey`; use `AsRef` instead ([#317])

Cargo.lock

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

0 commit comments

Comments
 (0)