diff --git a/Cargo.lock b/Cargo.lock index dc40b3003..0efe49a77 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -446,8 +446,9 @@ dependencies = [ [[package]] name = "crypto-primes" -version = "0.7.0-dev" -source = "git+https://github.com/tarcieri/crypto-primes?branch=crypto-bigint%2Fv0.7.0-rc.13#f98697886371aa15446ca53ef5b9e9e44efbabf8" +version = "0.7.0-pre.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "da0b07a7a616370e8b6efca0c6a25e5f4c6d02fde11f3d570e4af64d8ed7e2e9" dependencies = [ "crypto-bigint", "libm", @@ -1304,8 +1305,9 @@ dependencies = [ [[package]] name = "rsa" -version = "0.10.0-rc.10" -source = "git+https://github.com/RustCrypto/RSA#aa54cd9b021af284ec10b1307607260f9f516369" +version = "0.10.0-rc.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d27d813937fdf8e9ad15e3e422a55da4021d29639000139ca19d99f3949060da" dependencies = [ "const-oid", "crypto-bigint", diff --git a/Cargo.toml b/Cargo.toml index bde67f3ca..fc979ce2c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -61,6 +61,4 @@ x509-tsp = { path = "./x509-tsp" } x509-cert = { path = "./x509-cert" } x509-ocsp = { path = "./x509-ocsp" } -crypto-primes = { git = "https://github.com/tarcieri/crypto-primes", branch = "crypto-bigint/v0.7.0-rc.13" } rand = { git = "https://github.com/rust-random/rand" } -rsa = { git = "https://github.com/RustCrypto/RSA" } \ No newline at end of file diff --git a/cms/Cargo.toml b/cms/Cargo.toml index 6fd6fadfa..25b2535b2 100644 --- a/cms/Cargo.toml +++ b/cms/Cargo.toml @@ -28,7 +28,7 @@ cbc = { version = "0.2.0-rc.2", optional = true } cipher = { version = "0.5.0-rc.3", features = ["alloc", "block-padding", "rand_core"], optional = true } digest = { version = "0.11.0-rc.5", optional = true } elliptic-curve = { version = "0.14.0-rc.18", optional = true } -rsa = { version = "0.10.0-rc.10", optional = true } +rsa = { version = "0.10.0-rc.11", optional = true } sha1 = { version = "0.11.0-rc.3", optional = true } sha2 = { version = "0.11.0-rc.3", optional = true } sha3 = { version = "0.11.0-rc.3", optional = true } diff --git a/x509-cert/Cargo.toml b/x509-cert/Cargo.toml index e13e90451..ba9162ae3 100644 --- a/x509-cert/Cargo.toml +++ b/x509-cert/Cargo.toml @@ -30,7 +30,7 @@ tls_codec = { version = "0.4", default-features = false, features = ["derive"], [dev-dependencies] hex-literal = "1" rand = "0.10.0-rc.5" -rsa = { version = "0.10.0-rc.10", features = ["sha2"] } +rsa = { version = "0.10.0-rc.11", features = ["sha2"] } ecdsa = { version = "0.17.0-rc.9", features = ["digest", "pem"] } p256 = "0.14.0-rc.2" rstest = "0.26" diff --git a/x509-ocsp/Cargo.toml b/x509-ocsp/Cargo.toml index f2621389e..f2f8f6652 100644 --- a/x509-ocsp/Cargo.toml +++ b/x509-ocsp/Cargo.toml @@ -30,7 +30,7 @@ signature = { version = "3.0.0-rc.5", optional = true, default-features = false, hex-literal = "1" lazy_static = "1.5.0" rand = "0.10.0-rc.1" -rsa = { version = "0.10.0-rc.10", default-features = false, features = ["encoding", "sha2"] } +rsa = { version = "0.10.0-rc.11", default-features = false, features = ["encoding", "sha2"] } sha1 = { version = "0.11.0-rc.3", default-features = false, features = ["oid"] } sha2 = { version = "0.11.0-rc.3", default-features = false, features = ["oid"] }