diff --git a/Cargo.lock b/Cargo.lock index 8481f299..71431413 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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", diff --git a/Cargo.toml b/Cargo.toml index f1aefe84..79c5444c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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" } diff --git a/dsa/Cargo.toml b/dsa/Cargo.toml index d843030a..a07a69c2 100644 --- a/dsa/Cargo.toml +++ b/dsa/Cargo.toml @@ -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 } diff --git a/ecdsa/Cargo.toml b/ecdsa/Cargo.toml index 7978c5d2..4c0285eb 100644 --- a/ecdsa/Cargo.toml +++ b/ecdsa/Cargo.toml @@ -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 }