From 8cd10beabda23cdda731156b68e426f3eb4a4363 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Mon, 27 Apr 2026 15:03:03 -0600 Subject: [PATCH] elliptic-curve: bump `pkcs8` to v0.11 Release PR: RustCrypto/formats#2314 --- Cargo.lock | 4 ++-- elliptic-curve/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 141f0fb92..e9a3efa98 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -479,9 +479,9 @@ dependencies = [ [[package]] name = "pkcs8" -version = "0.11.0-rc.12" +version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9d71d6da5a0e652b5c694049095a52f5e564012b8ee5001cf10d84a4ca9a7f9d" +checksum = "451913da69c775a56034ea8d9003d27ee8948e12443eae7c038ba100a4f21cb7" dependencies = [ "der", "spki", diff --git a/elliptic-curve/Cargo.toml b/elliptic-curve/Cargo.toml index 9d0f28441..70e9c09f8 100644 --- a/elliptic-curve/Cargo.toml +++ b/elliptic-curve/Cargo.toml @@ -33,7 +33,7 @@ hkdf = { version = "0.13", optional = true, default-features = false } hex-literal = { version = "1", optional = true } once_cell = { version = "1.21", optional = true, default-features = false } pem-rfc7468 = { version = "1", optional = true, features = ["alloc"] } -pkcs8 = { version = "0.11.0-rc.12", optional = true, default-features = false } +pkcs8 = { version = "0.11", optional = true, default-features = false } sec1 = { version = "0.8", optional = true, features = ["ctutils", "subtle", "zeroize"] } serdect = { version = "0.4", optional = true, default-features = false, features = ["alloc"] }