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
37 changes: 15 additions & 22 deletions native/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion native/ol_onion/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ curve25519-dalek = { version = "4", default-features = false, features = ["alloc
# T1.2 PQ-hybrid blinding: ML-KEM-768 mixed into the first hop's
# shared secret so a quantum-equipped passive recorder can't decrypt
# historical traffic.
ml-kem = "0.2"
ml-kem = "0.3"
hybrid-array = "0.2"
aead = { workspace = true }
rand_core = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion native/ol_pqkem/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ crate-type = ["lib"]

[dependencies]
blake3 = { workspace = true }
ml-kem = "0.2"
ml-kem = "0.3"
# Match the hybrid-array version ml-kem 0.2 uses. Required because we
# need to construct `Array<u8, N>` instances directly to call ml-kem's
# `KeyEncode::from_bytes` (which takes a typed Array, not a slice).
Expand Down
2 changes: 1 addition & 1 deletion native/one_link_native/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ ol_radio_batcher = { path = "../ol_radio_batcher" }
ol_compress = { path = "../ol_compress" }
ol_fuse = { path = "../ol_fuse" }
curve25519-dalek = { version = "4", default-features = false, features = ["alloc", "precomputed-tables", "zeroize"] }
ml-kem = "0.2"
ml-kem = "0.3"
hybrid-array = "0.2"
ed25519-dalek = { workspace = true }
x25519-dalek = { version = "2.0", features = ["static_secrets"] }
Expand Down
Loading