diff --git a/Cargo.lock b/Cargo.lock index 9ca9cea..8ea851c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -218,8 +218,9 @@ dependencies = [ [[package]] name = "crypto-primes" -version = "0.7.0-pre.7" -source = "git+https://github.com/entropyxyz/crypto-primes#ba1024f4985d351d83dc588ee2607604ad19dba6" +version = "0.7.0-pre.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "334a79c97c0b7fa536716dc132fd417d0afbf471440a41fc25a5d9f66d8771cd" dependencies = [ "crypto-bigint", "libm", @@ -304,9 +305,9 @@ dependencies = [ [[package]] name = "dsa" -version = "0.7.0-rc.10" +version = "0.7.0-rc.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "36a030a6dd3dda21116e2c7b41f13bf07e5c6e147c966ac82ec78d0f0aa0d7ae" +checksum = "2c3eba9e80ed870bde8fbd018338932a3b59cf67d3b0d6a1e3c538e0047e879f" dependencies = [ "crypto-bigint", "crypto-primes", @@ -609,8 +610,9 @@ dependencies = [ [[package]] name = "rsa" -version = "0.10.0-rc.13" -source = "git+https://github.com/RustCrypto/RSA#433ac18eeb6a88730503ddce23f213da400d9c4c" +version = "0.10.0-rc.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6ef381dd6f207f81aff2ee3a8264eddd68ba475bbfcdb44ca445e5906bce381b" dependencies = [ "const-oid", "crypto-bigint", diff --git a/Cargo.toml b/Cargo.toml index a3a6e22..e08f27c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,6 +16,3 @@ ssh-cipher = { path = "./ssh-cipher" } ssh-derive = { path = "./ssh-derive" } ssh-encoding = { path = "./ssh-encoding" } ssh-key = { path = "./ssh-key" } - -crypto-primes = { git = "https://github.com/entropyxyz/crypto-primes" } -rsa = { git = "https://github.com/RustCrypto/RSA" } diff --git a/ssh-key/Cargo.toml b/ssh-key/Cargo.toml index aab0de2..dc975df 100644 --- a/ssh-key/Cargo.toml +++ b/ssh-key/Cargo.toml @@ -38,7 +38,7 @@ zeroize = { version = "1", default-features = false } # optional dependencies argon2 = { version = "0.6.0-rc.6", optional = true, default-features = false, features = ["alloc"] } bcrypt-pbkdf = { version = "0.11.0-rc.3", optional = true, default-features = false, features = ["alloc"] } -dsa = { version = "0.7.0-rc.10", optional = true, default-features = false, features = ["hazmat"] } +dsa = { version = "0.7.0-rc.11", optional = true, default-features = false, features = ["hazmat"] } ed25519-dalek = { version = "=3.0.0-pre.5", optional = true, default-features = false } hex = { version = "0.4", optional = true, default-features = false, features = ["alloc"] } hmac = { version = "0.13.0-rc.3", optional = true } @@ -46,7 +46,7 @@ p256 = { version = "0.14.0-rc.6", optional = true, default-features = false, fea p384 = { version = "0.14.0-rc.6", optional = true, default-features = false, features = ["ecdsa"] } p521 = { version = "0.14.0-rc.6", optional = true, default-features = false, features = ["ecdsa"] } rand_core = { version = "0.10.0-rc-6", optional = true, default-features = false } -rsa = { version = "0.10.0-rc.13", optional = true, default-features = false, features = ["sha2"] } +rsa = { version = "0.10.0-rc.14", optional = true, default-features = false, features = ["sha2"] } sec1 = { version = "0.8.0-rc.13", optional = true, default-features = false, features = ["point"] } serde = { version = "1.0.16", optional = true } sha1 = { version = "0.11.0-rc.4", optional = true, default-features = false, features = ["oid"] }