From c52dd8ac9f4a8790abf46aa829e1e30dde5e03c8 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Sat, 24 Jan 2026 20:27:41 -0700 Subject: [PATCH] Bump `pkcs8` to v0.11.0-rc.10 --- Cargo.lock | 14 ++++++++------ Cargo.toml | 10 ++-------- 2 files changed, 10 insertions(+), 14 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c8ac79b1..31c61eca 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -552,8 +552,9 @@ dependencies = [ [[package]] name = "pkcs5" -version = "0.8.0-rc.12" -source = "git+https://github.com/RustCrypto/formats#7368fd50e14a5a53dc552914a4585ed964417da4" +version = "0.8.0-rc.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c5a777c6e26664bc9504b3ce3f6133f8f20d9071f130a4f9fcbd3186959d8dd6" dependencies = [ "aes", "aes-gcm", @@ -568,8 +569,9 @@ dependencies = [ [[package]] name = "pkcs8" -version = "0.11.0-rc.9" -source = "git+https://github.com/RustCrypto/formats#7368fd50e14a5a53dc552914a4585ed964417da4" +version = "0.11.0-rc.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b226d2cc389763951db8869584fd800cbbe2962bf454e2edeb5172b31ee99774" dependencies = [ "der", "pkcs5", @@ -971,9 +973,9 @@ dependencies = [ [[package]] name = "signature" -version = "3.0.0-rc.8" +version = "3.0.0-rc.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c04b70a14ee5f15e2e0c785a5fdb2e9a51138dfe13ba3cf8eab037a9e60b1879" +checksum = "0ad0ce3b3f8efd7406f22e2ca5d02be21cdf3b3d1d53ab141f784de8965c7c7e" dependencies = [ "digest", "rand_core 0.10.0-rc-6", diff --git a/Cargo.toml b/Cargo.toml index d9cba7db..a37239e2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,13 +19,13 @@ crypto-bigint = { version = "0.7.0-rc.22", default-features = false, features = crypto-primes = { version = "0.7.0-pre.7", default-features = false } digest = { version = "0.11.0-rc.7", default-features = false, features = ["alloc", "oid"] } rand_core = { version = "0.10.0-rc-6", default-features = false } -signature = { version = "3.0.0-rc.8", default-features = false, features = ["alloc", "digest", "rand_core"] } +signature = { version = "3.0.0-rc.9", default-features = false, features = ["alloc", "digest", "rand_core"] } zeroize = { version = "1.8", features = ["alloc"] } # optional dependencies crypto-common = { version = "0.2.0-rc.13", 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.9", 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.4", optional = true, default-features = false, features = ["oid"] } sha2 = { version = "0.11.0-rc.4", optional = true, default-features = false, features = ["oid"] } @@ -71,12 +71,6 @@ debug = true [patch.crates-io.crypto-primes] git = "https://github.com/entropyxyz/crypto-primes" -[patch.crates-io.pkcs5] -git = "https://github.com/RustCrypto/formats" - -[patch.crates-io.pkcs8] -git = "https://github.com/RustCrypto/formats" - [patch.crates-io.rand] git = "https://github.com/rust-random/rand" branch = "rand_core/v0.10.0-rc-6"