diff --git a/Cargo.lock b/Cargo.lock index 09f629a18..9f0a38a27 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1335,8 +1335,9 @@ dependencies = [ [[package]] name = "rsa" -version = "0.10.0-pre.1" -source = "git+https://github.com/RustCrypto/RSA/?branch=use-latest-prereleases#6f03fa9330040886a8c4135f50bd7c736469334b" +version = "0.10.0-pre.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "57e864e43f5d003321ab452feea6450f9611d7be6726489b4ec051da34774c62" dependencies = [ "const-oid", "digest", diff --git a/Cargo.toml b/Cargo.toml index a5ff09222..85cc8f141 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -58,5 +58,3 @@ tls_codec_derive = { path = "./tls_codec/derive" } x509-tsp = { path = "./x509-tsp" } x509-cert = { path = "./x509-cert" } x509-ocsp = { path = "./x509-ocsp" } - -rsa = { git = "https://github.com/RustCrypto/RSA/", branch = "use-latest-prereleases" } diff --git a/cms/Cargo.toml b/cms/Cargo.toml index 5a33cc00e..64b7ee4eb 100644 --- a/cms/Cargo.toml +++ b/cms/Cargo.toml @@ -24,7 +24,7 @@ const-oid = { version = "0.10.0-rc.0", features = ["db"] } aes = { version = "=0.9.0-pre.1", optional = true } cbc = { version = "=0.2.0-pre.1", optional = true } cipher = { version = "=0.5.0-pre.6", features = ["alloc", "block-padding", "rand_core"], optional = true } -rsa = { version = "=0.10.0-pre.1", optional = true } +rsa = { version = "=0.10.0-pre.2", optional = true } sha1 = { version = "=0.11.0-pre.4", optional = true } sha2 = { version = "=0.11.0-pre.4", optional = true } sha3 = { version = "=0.11.0-pre.4", optional = true } @@ -37,7 +37,7 @@ hex-literal = "0.4" pem-rfc7468 = "=1.0.0-rc.0" pkcs5 = "=0.8.0-rc.0" rand = "0.8.5" -rsa = { version = "=0.10.0-pre.1", features = ["sha2"] } +rsa = { version = "=0.10.0-pre.2", features = ["sha2"] } ecdsa = { version = "=0.17.0-pre.7", features = ["digest", "pem"] } p256 = "=0.14.0-pre.1" diff --git a/x509-cert/Cargo.toml b/x509-cert/Cargo.toml index 96a2d7b1c..9647bb03d 100644 --- a/x509-cert/Cargo.toml +++ b/x509-cert/Cargo.toml @@ -30,7 +30,7 @@ tls_codec = { version = "0.4.0", default-features = false, features = ["derive"] [dev-dependencies] hex-literal = "0.4" rand = "0.8.5" -rsa = { version = "=0.10.0-pre.1", features = ["sha2"] } +rsa = { version = "=0.10.0-pre.2", features = ["sha2"] } ecdsa = { version = "=0.17.0-pre.7", features = ["digest", "pem"] } p256 = "=0.14.0-pre.1" rstest = "0.21" diff --git a/x509-ocsp/Cargo.toml b/x509-ocsp/Cargo.toml index 553ab13a5..ffa4ab262 100644 --- a/x509-ocsp/Cargo.toml +++ b/x509-ocsp/Cargo.toml @@ -30,7 +30,7 @@ signature = { version = "=2.3.0-pre.4", optional = true, default-features = fals hex-literal = "0.4.1" lazy_static = "1.5.0" rand = "0.8.5" -rsa = { version = "=0.10.0-pre.1", default-features = false, features = ["sha2"] } +rsa = { version = "=0.10.0-pre.2", default-features = false, features = ["sha2"] } sha1 = { version = "=0.11.0-pre.4", default-features = false, features = ["oid"] } sha2 = { version = "=0.11.0-pre.4", default-features = false, features = ["oid"] }