ecdsa: bump elliptic-curve to v0.14.0-rc.14 (#1068)

This commit is contained in:
Tony Arcieri
2025-09-12 20:11:44 -06:00
committed by GitHub
parent 8599e52851
commit 2cd53cf4fb
4 changed files with 7 additions and 9 deletions
Generated
+5 -4
View File
@@ -261,9 +261,9 @@ checksum = "43da5946c66ffcc7745f48db692ffbb10a83bfe0afd96235c5c2a4fb23994929"
[[package]]
name = "crypto-bigint"
version = "0.7.0-rc.5"
version = "0.7.0-rc.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "19f2e3541e47d5e2c984b2832e8633b1443671eebba61f0d05e4d2bafba16b23"
checksum = "f2966eb7f877e5cdac7e808e71010d0bef6321d58b8e58bf01b8bbbe44f77ea0"
dependencies = [
"hybrid-array",
"num-traits",
@@ -409,8 +409,9 @@ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
[[package]]
name = "elliptic-curve"
version = "0.14.0-rc.13"
source = "git+https://github.com/RustCrypto/traits#80cfc312a53c41c5c57d50db88172f61b1637f46"
version = "0.14.0-rc.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6ae7ba52b8bca06caab3e74b7cf8858a2934e6e75d80b03dbe48d2d394a4489c"
dependencies = [
"base16ct",
"crypto-bigint",
-3
View File
@@ -25,6 +25,3 @@ lms-signature = { path = "./lms" }
ml-dsa = { path = "./ml-dsa" }
rfc6979 = { path = "./rfc6979" }
slh-dsa = { path = "./slh-dsa" }
# https://github.com/RustCrypto/traits/pull/2008
elliptic-curve = { git = "https://github.com/RustCrypto/traits" }
+1 -1
View File
@@ -18,7 +18,7 @@ rust-version = "1.85"
[dependencies]
der = { version = "0.8.0-rc.8", features = ["alloc"] }
digest = "0.11.0-rc.1"
crypto-bigint = { version = "0.7.0-rc.5", default-features = false, features = ["alloc", "zeroize"] }
crypto-bigint = { version = "0.7.0-rc.6", default-features = false, features = ["alloc", "zeroize"] }
crypto-primes = { version = "0.7.0-pre.2", default-features = false }
rfc6979 = { version = "0.5.0-rc.1" }
sha2 = { version = "0.11.0-rc.2", default-features = false }
+1 -1
View File
@@ -17,7 +17,7 @@ edition = "2024"
rust-version = "1.85"
[dependencies]
elliptic-curve = { version = "0.14.0-rc.13", default-features = false, features = ["sec1"] }
elliptic-curve = { version = "0.14.0-rc.14", default-features = false, features = ["sec1"] }
signature = { version = "3.0.0-rc.3", default-features = false, features = ["rand_core"] }
zeroize = { version = "1.5", default-features = false }