From cb69c4108d127b3746dacc61b8806f918bec7506 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 15 Jul 2026 12:56:12 +0000 Subject: [PATCH] Update p256 requirement from 0.13 to 0.14 Updates the requirements on [p256](https://github.com/RustCrypto/elliptic-curves) to permit the latest version. - [Commits](https://github.com/RustCrypto/elliptic-curves/compare/primeorder/v0.13.0...p256/v0.14.0) --- updated-dependencies: - dependency-name: p256 dependency-version: 0.14.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- benchmarks/Cargo.toml | 2 +- crates/protocols/hpke/rust_crypto_provider/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/benchmarks/Cargo.toml b/benchmarks/Cargo.toml index 720a5df7f..9d927c28f 100644 --- a/benchmarks/Cargo.toml +++ b/benchmarks/Cargo.toml @@ -32,7 +32,7 @@ rand_core_old = { version = "0.6", package = "rand_core" } # Benchmarking "RustCrypto" chacha20poly1305 = "0.10" ed25519-dalek = { version = "2.1.1", features = ["rand_core"] } -p256 = { version = "0.13", features = ["ecdh"] } +p256 = { version = "0.14", features = ["ecdh"] } sha2 = "0.11" sha3 = "0.12" x25519-dalek-ng = "1.1" diff --git a/crates/protocols/hpke/rust_crypto_provider/Cargo.toml b/crates/protocols/hpke/rust_crypto_provider/Cargo.toml index da564208b..770a1bc5c 100644 --- a/crates/protocols/hpke/rust_crypto_provider/Cargo.toml +++ b/crates/protocols/hpke/rust_crypto_provider/Cargo.toml @@ -14,7 +14,7 @@ hpke-rs-crypto.workspace = true # Rust crypto hkdf = { version = "0.13" } sha2 = { version = "0.11", default-features = false } -p256 = { version = "0.13", features = [ +p256 = { version = "0.14", features = [ "arithmetic", "ecdh", ], default-features = false }