diff --git a/Cargo.lock b/Cargo.lock index 02a3f6c7..f463a690 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -959,12 +959,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/Cargo.toml b/Cargo.toml index 12b4079e..5f03c675 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -27,7 +27,7 @@ crypto-common = { version = "0.2", optional = true, features = ["getrandom"] } pkcs1 = { version = "0.8.0-rc.4", optional = true, default-features = false, features = ["alloc", "pem"] } pkcs8 = { version = "0.11.0-rc.10", optional = true, default-features = false, features = ["alloc", "pem"] } serdect = { version = "0.4", optional = true } -sha1 = { version = "0.11.0-rc.5", optional = true, default-features = false, features = ["oid"] } +sha1 = { version = "0.11.0", optional = true, default-features = false, features = ["oid"] } sha2 = { version = "0.11.0-rc.5", optional = true, default-features = false, features = ["oid"] } spki = { version = "0.8.0-rc.4", optional = true, default-features = false, features = ["alloc"] } serde = { version = "1.0.184", optional = true, default-features = false, features = ["derive"] } @@ -39,7 +39,7 @@ proptest = "1" serde_test = "1.0.89" rand = { version = "0.10", features = ["chacha"] } rand_core = { version = "0.10", default-features = false } -sha1 = { version = "0.11.0-rc.5", default-features = false, features = ["oid"] } +sha1 = { version = "0.11.0", default-features = false, features = ["oid"] } sha2 = { version = "0.11.0-rc.5", default-features = false, features = ["oid"] } sha3 = { version = "0.11.0-rc.8", default-features = false, features = ["oid"] } hex = { version = "0.4.3", features = ["serde"] }