From 7a3da6624b9095e1bf99b0d415e2f8fe239815db Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 10 Jun 2026 10:46:34 +0000 Subject: [PATCH] Bump pkcs8 from 0.10.2 to 0.11.0 Bumps [pkcs8](https://github.com/RustCrypto/formats) from 0.10.2 to 0.11.0. - [Commits](https://github.com/RustCrypto/formats/compare/pkcs8/v0.10.2...pkcs8/v0.11.0) --- updated-dependencies: - dependency-name: pkcs8 dependency-version: 0.11.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 50 +++++++++++++++++++++++++++++++++++++++++++------- Cargo.toml | 2 +- 2 files changed, 44 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 05a8cd6..e8c972d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -446,6 +446,12 @@ version = "0.9.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8" +[[package]] +name = "const-oid" +version = "0.10.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a6ef517f0926dd24a1582492c791b6a4818a4d94e789a334894aa15b0d12f55c" + [[package]] name = "cpufeatures" version = "0.2.17" @@ -583,11 +589,21 @@ version = "0.7.10" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb" dependencies = [ - "const-oid", + "const-oid 0.9.6", "pem-rfc7468", "zeroize", ] +[[package]] +name = "der" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "71fd89660b2dc699704064e59e9dba0147b903e85319429e131620d022be411b" +dependencies = [ + "const-oid 0.10.2", + "zeroize", +] + [[package]] name = "digest" version = "0.10.7" @@ -614,7 +630,7 @@ version = "2.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53" dependencies = [ - "pkcs8", + "pkcs8 0.10.2", "signature", ] @@ -1434,8 +1450,18 @@ version = "0.10.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7" dependencies = [ - "der", - "spki", + "der 0.7.10", + "spki 0.7.3", +] + +[[package]] +name = "pkcs8" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "451913da69c775a56034ea8d9003d27ee8948e12443eae7c038ba100a4f21cb7" +dependencies = [ + "der 0.8.0", + "spki 0.8.0", ] [[package]] @@ -1885,7 +1911,7 @@ dependencies = [ "cpufeatures 0.2.17", "criterion", "curve25519-dalek-derive", - "der", + "der 0.7.10", "digest 0.11.3", "ed25519", "ed25519-dalek", @@ -1894,7 +1920,7 @@ dependencies = [ "hashbrown 0.15.5", "hex", "once_cell", - "pkcs8", + "pkcs8 0.11.0", "proptest", "rand 0.8.6", "rand_core 0.6.4", @@ -1921,7 +1947,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d" dependencies = [ "base64ct", - "der", + "der 0.7.10", +] + +[[package]] +name = "spki" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1d9efca8738c78ee9484207732f728b1ef517bbb1833d6fc0879ca898a522f6f" +dependencies = [ + "base64ct", + "der 0.8.0", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index 897c768..eaef18c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -42,7 +42,7 @@ hashbrown = "0.15" hex = "0.4.2" hex-literal = "1.1.0" pairing = "0.23.0" -pkcs8 = { version = "0.10.1" } +pkcs8 = { version = "0.11.0" } once_cell = "1.21" proptest = "=1.6.0" rand = "0.8"