Skip to content

Commit a089055

Browse files
committed
Merge remote-tracking branch 'rust-crypto/master'
2 parents c6f73c3 + e88b28f commit a089055

File tree

6 files changed

+22
-21
lines changed

6 files changed

+22
-21
lines changed

.github/workflows/workspace.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,4 +52,4 @@ jobs:
5252
runs-on: ubuntu-latest
5353
steps:
5454
- uses: actions/checkout@v4
55-
- uses: crate-ci/typos@v1.33.1
55+
- uses: crate-ci/typos@v1.34.0

Cargo.lock

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

Cargo.toml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,3 @@ members = [
1717
[patch.crates-io]
1818
digest = { path = "digest" }
1919
signature = { path = "signature" }
20-
21-
der = { git = "https://github.com/RustCrypto/formats.git" }
22-
pkcs8 = { git = "https://github.com/RustCrypto/formats.git" }
23-
sec1 = { git = "https://github.com/RustCrypto/formats.git" }

elliptic-curve/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "elliptic-curve"
3-
version = "0.14.0-rc.7"
3+
version = "0.14.0-rc.8"
44
authors = ["RustCrypto Developers"]
55
edition = "2024"
66
rust-version = "1.85"
@@ -18,7 +18,7 @@ and public/secret keys composed thereof.
1818

1919
[dependencies]
2020
base16ct = "0.2"
21-
crypto-bigint = { version = "=0.7.0-pre.5", default-features = false, features = ["rand_core", "hybrid-array", "zeroize"] }
21+
crypto-bigint = { version = "=0.7.0-pre.6", default-features = false, features = ["rand_core", "hybrid-array", "zeroize"] }
2222
hybrid-array = { version = "0.3", default-features = false, features = ["zeroize"] }
2323
rand_core = { version = "0.9.0", default-features = false }
2424
subtle = { version = "2.6", default-features = false }
@@ -32,8 +32,8 @@ group = { version = "=0.14.0-pre.0", optional = true, default-features = false }
3232
hkdf = { version = "0.13.0-rc.0", optional = true, default-features = false }
3333
hex-literal = { version = "1", optional = true }
3434
pem-rfc7468 = { version = "1.0.0-rc.2", optional = true, features = ["alloc"] }
35-
pkcs8 = { version = "0.11.0-rc.1", optional = true, default-features = false }
36-
sec1 = { version = "0.8.0-rc.4", optional = true, features = ["subtle", "zeroize"] }
35+
pkcs8 = { version = "0.11.0-rc.5", optional = true, default-features = false }
36+
sec1 = { version = "0.8.0-rc.6", optional = true, features = ["subtle", "zeroize"] }
3737
serdect = { version = "0.3", optional = true, default-features = false, features = ["alloc"] }
3838
serde_json = { version = "1.0.121", optional = true, default-features = false, features = ["alloc"] }
3939

elliptic-curve/src/macros.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,8 @@ macro_rules! scalar_from_impls {
5555
}
5656
}
5757

58-
/// The constant-time alternative is available at [`$crate::NonZeroScalar<$curve>::new()`].
58+
/// The constant-time alternative is available at
59+
#[doc = concat!("[`", stringify!(elliptic_curve), "::NonZeroScalar<", stringify!($curve), ">::new()`].")]
5960
impl TryFrom<$scalar> for $crate::NonZeroScalar<$curve> {
6061
type Error = $crate::Error;
6162

signature/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1414
### Removed
1515
- `std` feature - replaced with `core::error::Error`
1616
- `derive` feature
17+
- `SignerMut` blanket implementation for `Signer`
1718

1819
[#1448]: https://github.com/RustCrypto/traits/pull/1448
1920
[#1759]: https://github.com/RustCrypto/traits/pull/1759

0 commit comments

Comments
 (0)