diff --git a/Cargo.lock b/Cargo.lock index 02a3f6c7..8211e7b5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -970,12 +970,12 @@ dependencies = [ [[package]] name = "sha2" -version = "0.11.0-rc.5" +version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7c5f3b1e2dc8aad28310d8410bd4d7e180eca65fca176c52ab00d364475d0024" +checksum = "446ba717509524cb3f22f17ecc096f10f4822d76ab5c0b9822c5f9c284e825f4" dependencies = [ "cfg-if", - "cpufeatures 0.2.17", + "cpufeatures 0.3.0", "digest", ] diff --git a/Cargo.toml b/Cargo.toml index 12b4079e..cb99d751 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -28,7 +28,7 @@ pkcs1 = { version = "0.8.0-rc.4", optional = true, default-features = false, fea 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"] } -sha2 = { version = "0.11.0-rc.5", optional = true, default-features = false, features = ["oid"] } +sha2 = { version = "0.11.0", 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"] } @@ -40,7 +40,7 @@ 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"] } -sha2 = { version = "0.11.0-rc.5", default-features = false, features = ["oid"] } +sha2 = { version = "0.11.0", default-features = false, features = ["oid"] } sha3 = { version = "0.11.0-rc.8", default-features = false, features = ["oid"] } hex = { version = "0.4.3", features = ["serde"] } serde_json = "1.0.138"