diff --git a/Cargo.lock b/Cargo.lock index dca11e34d..3c6691892 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -548,14 +548,14 @@ dependencies = [ [[package]] name = "digest" -version = "0.11.0-rc.11" +version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "02b42f1d9edf5207c137646b568a0168ca0ec25b7f9eaf7f9961da51a3d91cea" +checksum = "f8bf3682cdec91817be507e4aa104314898b95b84d74f3d43882210101a545b6" dependencies = [ "block-buffer", "const-oid", "crypto-common", - "subtle", + "ctutils", ] [[package]] diff --git a/cmpv2/Cargo.toml b/cmpv2/Cargo.toml index 57833ee30..ffcec85f1 100644 --- a/cmpv2/Cargo.toml +++ b/cmpv2/Cargo.toml @@ -22,7 +22,7 @@ spki = "0.8.0-rc.4" x509-cert = { version = "0.3.0-rc.4", default-features = false } # optional features -digest = { version = "0.11.0-rc.8", optional = true, default-features = false } +digest = { version = "0.11", optional = true, default-features = false } [dev-dependencies] const-oid = { version = "0.10", features = ["db"] } diff --git a/cms/Cargo.toml b/cms/Cargo.toml index 9180b6a7f..beed7470b 100644 --- a/cms/Cargo.toml +++ b/cms/Cargo.toml @@ -26,7 +26,7 @@ aes-kw = { version = "0.3.0-rc.2", optional = true } ansi-x963-kdf = { version = "0.1.0-rc.2", optional = true } cbc = { version = "0.2.0-rc.3", optional = true } cipher = { version = "0.5.0-rc.8", features = ["alloc", "block-padding", "rand_core"], optional = true } -digest = { version = "0.11.0-rc.11", optional = true } +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 } diff --git a/pkcs12/Cargo.toml b/pkcs12/Cargo.toml index 69d93609c..1eb200715 100644 --- a/pkcs12/Cargo.toml +++ b/pkcs12/Cargo.toml @@ -23,7 +23,7 @@ const-oid = { version = "0.10", features = ["db"], default-features = false } cms = { version = "=0.3.0-pre.2", default-features = false } # optional dependencies -digest = { version = "0.11.0-rc.8", features = ["alloc"], optional = true } +digest = { version = "0.11", features = ["alloc"], optional = true } zeroize = { version = "1.8.1", optional = true, default-features = false } [dev-dependencies] diff --git a/spki/Cargo.toml b/spki/Cargo.toml index 8a9db52e5..26e4ac531 100644 --- a/spki/Cargo.toml +++ b/spki/Cargo.toml @@ -21,7 +21,7 @@ der = { version = "0.8", features = ["oid"] } # Optional dependencies arbitrary = { version = "1.4", features = ["derive"], optional = true } base64ct = { version = "1", optional = true, default-features = false } -digest = { version = "0.11.0-rc.5", 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 } [dev-dependencies] diff --git a/x509-cert/Cargo.toml b/x509-cert/Cargo.toml index 1c0a3e0a9..3eb2705a2 100644 --- a/x509-cert/Cargo.toml +++ b/x509-cert/Cargo.toml @@ -22,7 +22,7 @@ spki = { version = "0.8.0-rc.4", features = ["alloc"] } # optional dependencies arbitrary = { version = "1.4", features = ["derive"], optional = true } -digest = { version = "0.11.0-rc.11", optional = true, default-features = false } +digest = { version = "0.11", optional = true, default-features = false } sha1 = { version = "0.11.0-rc.5", 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 } diff --git a/x509-ocsp/Cargo.toml b/x509-ocsp/Cargo.toml index cda316e1b..66d1da7de 100644 --- a/x509-ocsp/Cargo.toml +++ b/x509-ocsp/Cargo.toml @@ -22,7 +22,7 @@ spki = { version = "0.8.0-rc.4", features = ["alloc"] } x509-cert = { version = "0.3.0-rc.4", default-features = false } # Optional -digest = { version = "0.11.0-rc.11", optional = true, default-features = false, features = ["oid"] } +digest = { version = "0.11", optional = true, default-features = false, features = ["oid"] } rand_core = { version = "0.10", optional = true, default-features = false } signature = { version = "3.0.0-rc.10", optional = true, default-features = false, features = ["digest", "rand_core"] }