diff --git a/cms/Cargo.toml b/cms/Cargo.toml index d791a4439..81143f226 100644 --- a/cms/Cargo.toml +++ b/cms/Cargo.toml @@ -29,8 +29,8 @@ cipher = { version = "0.5", features = ["alloc", "block-padding", "rand_core"], digest = { version = "0.11", optional = true } elliptic-curve = { version = "0.14.0-rc.28", optional = true } rsa = { version = "0.10.0-rc.15", optional = true } -sha1 = { version = "0.11.0-rc.5", optional = true } -sha2 = { version = "0.11.0-rc.5", optional = true } +sha1 = { version = "0.11", optional = true } +sha2 = { version = "0.11", optional = true } sha3 = { version = "0.11.0-rc.7", optional = true } signature = { version = "3.0.0-rc.10", features = ["digest", "alloc"], optional = true } zeroize = { version = "1.8.1", optional = true } diff --git a/pkcs12/Cargo.toml b/pkcs12/Cargo.toml index 1eb200715..55c54bd2c 100644 --- a/pkcs12/Cargo.toml +++ b/pkcs12/Cargo.toml @@ -30,8 +30,8 @@ zeroize = { version = "1.8.1", optional = true, default-features = false } hex-literal = "1" pkcs8 = { version = "0.11.0-rc.10", features = ["pkcs5"] } pkcs5 = { version = "0.8.0-rc.13", features = ["pbes2", "3des"] } -sha2 = "0.11.0-rc.5" -whirlpool = "0.11.0-rc.5" +sha2 = "0.11" +whirlpool = "0.11" [features] default = ["pem"] diff --git a/pkcs5/Cargo.toml b/pkcs5/Cargo.toml index 6becfa4cc..6b4165891 100644 --- a/pkcs5/Cargo.toml +++ b/pkcs5/Cargo.toml @@ -27,8 +27,8 @@ des = { version = "0.9.0-rc.3", optional = true, default-features = false } pbkdf2 = { version = "0.13.0-rc.9", optional = true, default-features = false, features = ["hmac"] } rand_core = { version = "0.10", optional = true, default-features = false } scrypt = { version = "0.12.0-rc.10", optional = true, default-features = false } -sha1 = { version = "0.11.0-rc.5", optional = true, default-features = false } -sha2 = { version = "0.11.0-rc.5", optional = true, default-features = false } +sha1 = { version = "0.11", optional = true, default-features = false } +sha2 = { version = "0.11", optional = true, default-features = false } [dev-dependencies] hex-literal = "1" diff --git a/spki/Cargo.toml b/spki/Cargo.toml index 26e4ac531..468528afa 100644 --- a/spki/Cargo.toml +++ b/spki/Cargo.toml @@ -22,7 +22,7 @@ der = { version = "0.8", features = ["oid"] } arbitrary = { version = "1.4", features = ["derive"], optional = true } base64ct = { version = "1", optional = true, default-features = false } digest = { version = "0.11", optional = true, default-features = false } -sha2 = { version = "0.11.0-rc.2", optional = true, default-features = false } +sha2 = { version = "0.11", optional = true, default-features = false } [dev-dependencies] hex-literal = "1" diff --git a/x509-cert/Cargo.toml b/x509-cert/Cargo.toml index 3eb2705a2..68203c00a 100644 --- a/x509-cert/Cargo.toml +++ b/x509-cert/Cargo.toml @@ -23,7 +23,7 @@ spki = { version = "0.8.0-rc.4", features = ["alloc"] } # optional dependencies arbitrary = { version = "1.4", features = ["derive"], optional = true } digest = { version = "0.11", optional = true, default-features = false } -sha1 = { version = "0.11.0-rc.5", default-features = false, optional = true } +sha1 = { version = "0.11", default-features = false, optional = true } signature = { version = "3.0.0-rc.10", features = ["rand_core"], optional = true } tls_codec = { version = "0.4", default-features = false, features = ["derive"], optional = true } @@ -34,7 +34,7 @@ rsa = { version = "0.10.0-rc.15", features = ["sha2"] } ecdsa = { version = "0.17.0-rc.16", features = ["digest", "pem"] } p256 = "0.14.0-rc.7" rstest = "0.26" -sha2 = { version = "0.11.0-rc.5", features = ["oid"] } +sha2 = { version = "0.11", features = ["oid"] } tempfile = "3.5" tokio = { version = "1.45", features = ["macros", "rt"] } x509-cert-test-support = { path = "./test-support" } diff --git a/x509-ocsp/Cargo.toml b/x509-ocsp/Cargo.toml index 66d1da7de..d4320f116 100644 --- a/x509-ocsp/Cargo.toml +++ b/x509-ocsp/Cargo.toml @@ -31,8 +31,8 @@ hex-literal = "1" lazy_static = "1.5.0" rand = "0.10" rsa = { version = "0.10.0-rc.15", default-features = false, features = ["encoding", "sha2"] } -sha1 = { version = "0.11.0-rc.5", default-features = false, features = ["oid"] } -sha2 = { version = "0.11.0-rc.5", default-features = false, features = ["oid"] } +sha1 = { version = "0.11", default-features = false, features = ["oid"] } +sha2 = { version = "0.11", default-features = false, features = ["oid"] } [features] rand = ["rand_core"]