diff --git a/Cargo.lock b/Cargo.lock index 6b5de5976f0..99d53669da9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4622,7 +4622,6 @@ dependencies = [ "hmac", "nym-credentials-interface", "nym-crypto", - "nym-sdk", "nym-service-provider-requests-common", "nym-sphinx", "nym-wireguard-types", diff --git a/common/authenticator-requests/Cargo.toml b/common/authenticator-requests/Cargo.toml index f950bacec70..4dd85702818 100644 --- a/common/authenticator-requests/Cargo.toml +++ b/common/authenticator-requests/Cargo.toml @@ -17,7 +17,6 @@ thiserror = { workspace = true } nym-credentials-interface = { path = "../credentials-interface" } nym-crypto = { path = "../crypto", features = ["asymmetric"] } -nym-sdk = { path = "../../sdk/rust/nym-sdk" } nym-service-provider-requests-common = { path = "../service-provider-requests-common" } nym-sphinx = { path = "../nymsphinx" } nym-wireguard-types = { path = "../wireguard-types" } diff --git a/common/authenticator-requests/src/traits.rs b/common/authenticator-requests/src/traits.rs index 7499c685d17..cb7cf37ee13 100644 --- a/common/authenticator-requests/src/traits.rs +++ b/common/authenticator-requests/src/traits.rs @@ -5,8 +5,8 @@ use std::net::IpAddr; use nym_credentials_interface::CredentialSpendingData; use nym_crypto::asymmetric::x25519::PrivateKey; -use nym_sdk::mixnet::Recipient; use nym_service_provider_requests_common::{Protocol, ServiceProviderType}; +use nym_sphinx::addressing::clients::Recipient; use nym_wireguard_types::PeerPublicKey; use crate::{v1, v2, v3, Error};