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"