From 61e5ba1cbd17a057b570ca0b054219e1f8a16ce9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Jul 2026 03:52:26 +0000 Subject: [PATCH] chore(deps)(deps): 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] --- crates/octo-adapter-whatsapp/Cargo.toml | 4 ++-- crates/octo-cable/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/crates/octo-adapter-whatsapp/Cargo.toml b/crates/octo-adapter-whatsapp/Cargo.toml index eaee626a..84bc7be0 100644 --- a/crates/octo-adapter-whatsapp/Cargo.toml +++ b/crates/octo-adapter-whatsapp/Cargo.toml @@ -105,7 +105,7 @@ sha2 = "0.11" hex = "0.4" # p256 for `CablePasskeyAuthenticator::static_key` (Session 8+). # Same source as octo-cable so we don't pull in a second copy. -p256 = { version = "0.13", features = ["ecdh"] } +p256 = { version = "0.14", features = ["ecdh"] } # ciborium for the post-handshake GetInfoResponse CBOR (responder path). ciborium = "0.2" # Phase 7.J.4: whatsapp_xx_session_probe opens TLS to e.web.whatsapp.com:5222 @@ -139,6 +139,6 @@ ed25519-dalek = "2.1" rustls = { version = "0.23", default-features = false, features = ["ring", "std"] } # p256 for `CablePasskeyAuthenticator::static_key` (Session 8+). # Same source as octo-cable so we don't pull in a second copy. -p256 = { version = "0.13", features = ["ecdh"] } +p256 = { version = "0.14", features = ["ecdh"] } # ciborium for the post-handshake GetInfoResponse CBOR (responder path). ciborium = "0.2" diff --git a/crates/octo-cable/Cargo.toml b/crates/octo-cable/Cargo.toml index dfe8d227..5b9a44ae 100644 --- a/crates/octo-cable/Cargo.toml +++ b/crates/octo-cable/Cargo.toml @@ -27,7 +27,7 @@ rustls = { version = "0.23", default-features = false, features = ["ring", "std" futures = "0.3" # Noise NKpsk0_P256_AESGCM_SHA256 primitives. -p256 = { version = "0.13", features = ["ecdh"] } +p256 = { version = "0.14", features = ["ecdh"] } aes-gcm = "0.10" aes = "0.8" ctr = "0.9"