Skip to content

Commit 53361b0

Browse files
authored
dsa+ecdsa: bump dependencies (#1010)
Bumps the following: - crypto-bigint v0.7.0-pre.6 - der v0.8.0-rc.6 - elliptic-curve v0.14.0-rc.8 - pkcs8 v0.11.0-rc.5 - sec1 v0.8.0-rc.6 - spki v0.8.0-rc.3
1 parent 1c74c2b commit 53361b0

File tree

4 files changed

+21
-23
lines changed

4 files changed

+21
-23
lines changed

Cargo.lock

Lines changed: 16 additions & 12 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 & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,3 @@ lms-signature = { path = "./lms" }
2525
ml-dsa = { path = "./ml-dsa" }
2626
rfc6979 = { path = "./rfc6979" }
2727
slh-dsa = { path = "./slh-dsa" }
28-
29-
der = { git = "https://github.com/RustCrypto/formats.git" }
30-
pkcs8 = { git = "https://github.com/RustCrypto/formats.git" }
31-
sec1 = { git = "https://github.com/RustCrypto/formats.git" }
32-
33-
elliptic-curve = { git = "https://github.com/RustCrypto/traits.git" }

dsa/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ rust-version = "1.85"
1717

1818
[dependencies]
1919
digest = "0.11.0-rc.0"
20-
crypto-bigint = { version = "=0.7.0-pre.5", default-features = false, features = ["alloc", "zeroize"] }
20+
crypto-bigint = { version = "=0.7.0-pre.6", default-features = false, features = ["alloc", "zeroize"] }
2121
crypto-primes = { version = "=0.7.0-pre.1", default-features = false }
2222
pkcs8 = { version = "0.11.0-rc.1", default-features = false, features = ["alloc"] }
2323
rfc6979 = { version = "0.5.0-rc.0" }
@@ -28,7 +28,7 @@ zeroize = { version = "1", default-features = false }
2828
[dev-dependencies]
2929
hex = "0.4.3"
3030
hex-literal = "1"
31-
pkcs8 = { version = "0.11.0-rc.1", default-features = false, features = ["pem"] }
31+
pkcs8 = { version = "0.11.0-rc.5", default-features = false, features = ["pem"] }
3232
proptest = "1"
3333
rand = "0.9"
3434
rand_chacha = "0.9"

ecdsa/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,17 @@ edition = "2024"
1717
rust-version = "1.85"
1818

1919
[dependencies]
20-
elliptic-curve = { version = "0.14.0-rc.7", default-features = false, features = ["sec1"] }
20+
elliptic-curve = { version = "0.14.0-rc.8", default-features = false, features = ["sec1"] }
2121
signature = { version = "3.0.0-rc.1", default-features = false, features = ["rand_core"] }
2222
zeroize = { version = "1.5", default-features = false }
2323

2424
# optional dependencies
25-
der = { version = "0.8.0-rc.5", optional = true }
25+
der = { version = "0.8.0-rc.6", optional = true }
2626
digest = { version = "0.11.0-rc.0", optional = true, default-features = false, features = ["oid"] }
2727
rfc6979 = { version = "0.5.0-rc.0", optional = true }
2828
serdect = { version = "0.3", optional = true, default-features = false, features = ["alloc"] }
2929
sha2 = { version = "0.11.0-rc.0", optional = true, default-features = false, features = ["oid"] }
30-
spki = { version = "0.8.0-rc.0", optional = true, default-features = false }
30+
spki = { version = "0.8.0-rc.3", optional = true, default-features = false }
3131

3232
[dev-dependencies]
3333
elliptic-curve = { version = "0.14.0-rc.2", default-features = false, features = ["dev"] }

0 commit comments

Comments
 (0)