diff --git a/sdk/lib/socks5-listener/Cargo.toml b/sdk/lib/socks5-listener/Cargo.toml index 129afb5e87..425154a5cb 100644 --- a/sdk/lib/socks5-listener/Cargo.toml +++ b/sdk/lib/socks5-listener/Cargo.toml @@ -16,6 +16,7 @@ crate-type = ["cdylib", "staticlib", "rlib"] [dependencies] anyhow = { workspace = true } futures = { workspace = true } +lazy_static = "1.4.0" nym-bin-common = { path = "../../../common/bin-common"} nym-client-core = { path = "../../../common/client-core", default-features = false } nym-config-common = { path = "../../../common/config", package = "nym-config" } diff --git a/sdk/lib/socks5-listener/src/lib.rs b/sdk/lib/socks5-listener/src/lib.rs index 352638f84d..0c9e2f7771 100644 --- a/sdk/lib/socks5-listener/src/lib.rs +++ b/sdk/lib/socks5-listener/src/lib.rs @@ -5,6 +5,7 @@ use crate::config::{config_filepath_from_root, Config}; use crate::persistence::MobileClientStorage; use ::safer_ffi::prelude::*; use anyhow::{anyhow, Result}; +use lazy_static::lazy_static; use log::{debug, info, warn}; use nym_bin_common::logging::setup_logging; use nym_client_core::init::helpers::current_gateways;