From 6f53192dbf85e51bcedd4b8f28e72faa0fa4a554 Mon Sep 17 00:00:00 2001 From: mfahampshire Date: Fri, 17 Oct 2025 11:55:06 +0100 Subject: [PATCH] deprecate notice for tcpproxy module --- sdk/rust/nym-sdk/src/lib.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sdk/rust/nym-sdk/src/lib.rs b/sdk/rust/nym-sdk/src/lib.rs index 96109488ae..f5bbaa0f22 100644 --- a/sdk/rust/nym-sdk/src/lib.rs +++ b/sdk/rust/nym-sdk/src/lib.rs @@ -12,6 +12,9 @@ pub mod client_pool; pub mod ip_packet_client; pub mod mixnet; pub mod stream_wrapper; +#[deprecated( + note = "Functionality from this module is mostly superceded by the stream_wrapper::MixSocket and stream_wrapper::MixStreamIPR exports. This module is no longer maintained and will be removed in a future release." +)] pub mod tcp_proxy; pub use error::{Error, Result};