Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions crates/octo-adapter-whatsapp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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"
2 changes: 1 addition & 1 deletion crates/octo-cable/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
Loading