diff --git a/Cargo.lock b/Cargo.lock index c410040402..297f89b08b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -7489,7 +7489,11 @@ dependencies = [ name = "nym-lp-data" version = "1.21.0" dependencies = [ + "bytes", + "num_enum", + "nym-common", "nym-lp", + "thiserror 2.0.18", "tracing", ] @@ -7514,7 +7518,7 @@ dependencies = [ "nym-crypto", "nym-lp-data", "nym-sphinx", - "rand 0.8.5", + "rand 0.8.6", "rand_distr", "serde", "serde_json", diff --git a/common/nym-lp-data/Cargo.toml b/common/nym-lp-data/Cargo.toml index bd4f499d87..f00e983fdb 100644 --- a/common/nym-lp-data/Cargo.toml +++ b/common/nym-lp-data/Cargo.toml @@ -13,11 +13,13 @@ documentation.workspace = true # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -tracing.workspace = true bytes.workspace = true num_enum.workspace = true +tracing.workspace = true thiserror.workspace = true +nym-common.workspace = true + [dev-dependencies] nym-lp.workspace = true diff --git a/common/nym-lp-data/tests/integration/common/mod.rs b/common/nym-lp-data/tests/integration/common/mod.rs index d6bcb52de4..a174520e6f 100644 --- a/common/nym-lp-data/tests/integration/common/mod.rs +++ b/common/nym-lp-data/tests/integration/common/mod.rs @@ -1,7 +1,7 @@ // Copyright 2026 - Nym Technologies SA // SPDX-License-Identifier: Apache-2.0 -use nym_lp::packet::{ +use nym_lp_data::packet::{ LpFrame, LpHeader, LpPacket, frame::{LpFrameHeader, LpFrameKind}, };