restored accidentally removed lazy static in socks5 lib

This commit is contained in:
Jędrzej Stuczyński
2024-02-19 11:10:51 +00:00
parent e7d0c1812a
commit dcd6dcc6e3
2 changed files with 2 additions and 0 deletions
+1
View File
@@ -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" }
+1
View File
@@ -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;