diff --git a/Cargo.lock b/Cargo.lock index 4a65dc9..7ba85c8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -731,12 +731,12 @@ dependencies = [ [[package]] name = "sha1" -version = "0.11.0-rc.5" +version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3b167252f3c126be0d8926639c4c4706950f01445900c4b3db0fd7e89fcb750a" +checksum = "aacc4cc499359472b4abe1bf11d0b12e688af9a805fa5e3016f9a386dc2d0214" dependencies = [ "cfg-if", - "cpufeatures 0.2.17", + "cpufeatures 0.3.0", "digest", ] diff --git a/ssh-key/Cargo.toml b/ssh-key/Cargo.toml index 501d034..d8911b6 100644 --- a/ssh-key/Cargo.toml +++ b/ssh-key/Cargo.toml @@ -49,7 +49,7 @@ rand_core = { version = "0.10", optional = true, default-features = false } rsa = { version = "0.10.0-rc.17", 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.0-rc.5", optional = true, default-features = false, features = ["oid"] } +sha1 = { version = "0.11", optional = true, default-features = false, features = ["oid"] } [dev-dependencies] hex-literal = "1"