diff --git a/Cargo.lock b/Cargo.lock index 5225656..71649ed 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -626,9 +626,9 @@ dependencies = [ [[package]] name = "rsa" -version = "0.10.0-rc.17" +version = "0.10.0-rc.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "87ed3e93fc7e473e464b9726f4759659e72bc8665e4b8ea227547024f416d905" +checksum = "30b2aa4ba0d89f73d1e332df05be0eeab8840351c36ca5654341dfdb57bb3caf" dependencies = [ "const-oid", "crypto-bigint", diff --git a/ssh-key/Cargo.toml b/ssh-key/Cargo.toml index 0bb8eae..c5ac029 100644 --- a/ssh-key/Cargo.toml +++ b/ssh-key/Cargo.toml @@ -46,7 +46,7 @@ p256 = { version = "0.14.0-rc.9", optional = true, default-features = false, fea p384 = { version = "0.14.0-rc.9", optional = true, default-features = false, features = ["ecdsa"] } p521 = { version = "0.14.0-rc.9", optional = true, default-features = false, features = ["ecdsa"] } rand_core = { version = "0.10", optional = true, default-features = false } -rsa = { version = "0.10.0-rc.17", optional = true, default-features = false, features = ["sha2"] } +rsa = { version = "0.10.0-rc.18", optional = true, default-features = false, features = ["sha2"] } sec1 = { version = "0.8", optional = true, default-features = false, features = ["point"] } serde = { version = "1.0.16", optional = true } sha1 = { version = "0.11", optional = true, default-features = false, features = ["oid"] }