From ca031af69a9ff7aad238d6a724aabd9975ba4ac2 Mon Sep 17 00:00:00 2001 From: Simon Wicky Date: Wed, 20 May 2026 11:14:44 +0200 Subject: [PATCH] one more bit --- Cargo.lock | 2 +- nym-ip-packet-client/Cargo.toml | 2 +- nym-ip-packet-client/src/lp_stream.rs | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 38026c0606..5718dab961 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -7284,7 +7284,7 @@ dependencies = [ "bytes", "futures", "nym-ip-packet-requests", - "nym-lp", + "nym-lp-data", "nym-sdk", "thiserror 2.0.18", "tokio", diff --git a/nym-ip-packet-client/Cargo.toml b/nym-ip-packet-client/Cargo.toml index 4117d80350..837cab9fb2 100644 --- a/nym-ip-packet-client/Cargo.toml +++ b/nym-ip-packet-client/Cargo.toml @@ -26,4 +26,4 @@ tracing.workspace = true nym-sdk = { workspace = true } nym-ip-packet-requests = { workspace = true } -nym-lp = { workspace = true } +nym-lp-data = { workspace = true } diff --git a/nym-ip-packet-client/src/lp_stream.rs b/nym-ip-packet-client/src/lp_stream.rs index 736d55f378..e863fbafad 100644 --- a/nym-ip-packet-client/src/lp_stream.rs +++ b/nym-ip-packet-client/src/lp_stream.rs @@ -1,6 +1,6 @@ use bytes::BytesMut; use nym_ip_packet_requests::SPHINX_STREAM_VERSION_THRESHOLD; -use nym_lp::packet::frame::{ +use nym_lp_data::packet::frame::{ LpFrame, LpFrameHeader, LpFrameKind, SphinxStreamFrameAttributes, SphinxStreamMsgType, }; use nym_sdk::mixnet::ReconstructedMessage; @@ -65,7 +65,7 @@ pub fn encode_stream_frame(stream_id: u64, sequence_num: u32, payload: Vec) #[cfg(test)] mod tests { use super::*; - use nym_lp::packet::frame::SphinxStreamFrameAttributes; + use nym_lp_data::packet::frame::SphinxStreamFrameAttributes; #[test] fn stream_frame_roundtrip_unwraps_payload() {