diff --git a/Cargo.lock b/Cargo.lock index 14d262d..cef2ebf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -457,7 +457,7 @@ dependencies = [ [[package]] name = "ecdsa" -version = "0.17.0-rc.16" +version = "0.17.0-rc.17" dependencies = [ "der", "digest", @@ -505,8 +505,9 @@ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719" [[package]] name = "elliptic-curve" -version = "0.14.0-rc.30" -source = "git+https://github.com/RustCrypto/traits#4aa20faef303aa04f61892d33c229314bdcea43f" +version = "0.14.0-rc.31" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b148a81cede8f4023248f980cffdf7611c46f2add469c6980e815b7c5b764ba5" dependencies = [ "base16ct", "crypto-bigint", @@ -1434,7 +1435,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd" dependencies = [ "fastrand", - "getrandom 0.3.4", + "getrandom 0.4.2", "once_cell", "rustix", "windows-sys", diff --git a/Cargo.toml b/Cargo.toml index c9308af..6cdb492 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -29,5 +29,3 @@ rfc6979 = { path = "./rfc6979" } slh-dsa = { path = "./slh-dsa" } xmss = { path = "./xmss" } bign-genk = { path = "./bign-genk" } - -elliptic-curve = { git = "https://github.com/RustCrypto/traits" } diff --git a/ecdsa/Cargo.toml b/ecdsa/Cargo.toml index d693c53..f6d4e90 100644 --- a/ecdsa/Cargo.toml +++ b/ecdsa/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ecdsa" -version = "0.17.0-rc.16" +version = "0.17.0-rc.17" description = """ Pure Rust implementation of the Elliptic Curve Digital Signature Algorithm (ECDSA) as specified in FIPS 186-4 (Digital Signature Standard), providing @@ -17,7 +17,7 @@ edition = "2024" rust-version = "1.85" [dependencies] -elliptic-curve = { version = "0.14.0-rc.30", default-features = false, features = ["sec1"] } +elliptic-curve = { version = "0.14.0-rc.31", default-features = false, features = ["sec1"] } signature = { version = "3.0.0-rc.10", default-features = false, features = ["rand_core"] } zeroize = { version = "1.5", default-features = false } @@ -30,7 +30,7 @@ sha2 = { version = "0.11", optional = true, default-features = false, features = spki = { version = "0.8", optional = true, default-features = false } [dev-dependencies] -elliptic-curve = { version = "0.14.0-rc.30", default-features = false, features = ["dev"] } +elliptic-curve = { version = "0.14.0-rc.31", default-features = false, features = ["dev"] } hex-literal = "1" sha2 = { version = "0.11", default-features = false }