diff --git a/Cargo.lock b/Cargo.lock index 5ea4bf7c..5344c943 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -294,8 +294,9 @@ dependencies = [ [[package]] name = "crypto-primes" -version = "0.7.0-pre.3" -source = "git+https://github.com/baloo/crypto-primes.git?branch=baloo%2Frand_core%2F0.10.0-rc.2#c56754db8d956e012f57380039453179a38b6cf3" +version = "0.7.0-pre.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fdd9b2855017318a49714c07ee8895b89d3510d54fa6d86be5835de74c389609" dependencies = [ "crypto-bigint", "libm", diff --git a/Cargo.toml b/Cargo.toml index d71e305c..4a211d8d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -27,6 +27,5 @@ rfc6979 = { path = "./rfc6979" } slh-dsa = { path = "./slh-dsa" } elliptic-curve = { git = "https://github.com/RustCrypto/traits" } -crypto-primes = { git = "https://github.com/baloo/crypto-primes.git", branch = "baloo/rand_core/0.10.0-rc.2" } ff = { git = "https://github.com/tarcieri/ff", branch = "rand_core/v0.10.0-rc-2" } group = { git = "https://github.com/tarcieri/group", branch = "rand_core/v0.10.0-rc-2" } diff --git a/dsa/Cargo.toml b/dsa/Cargo.toml index 3718c667..9355ccaa 100644 --- a/dsa/Cargo.toml +++ b/dsa/Cargo.toml @@ -19,7 +19,7 @@ rust-version = "1.85" der = { version = "0.8.0-rc.9", features = ["alloc"] } digest = "0.11.0-rc.4" crypto-bigint = { version = "0.7.0-rc.10", default-features = false, features = ["alloc", "zeroize"] } -crypto-primes = { version = "0.7.0-pre.3", default-features = false } +crypto-primes = { version = "0.7.0-pre.4", default-features = false } rfc6979 = { version = "0.5.0-rc.3" } sha2 = { version = "0.11.0-rc.3", default-features = false } signature = { version = "3.0.0-rc.5", default-features = false, features = ["alloc", "digest", "rand_core"] }