Skip to content

Commit

Permalink
rebase and accomodate changes in develop
Browse files Browse the repository at this point in the history
  • Loading branch information
jmwample committed Jan 7, 2025
1 parent 3ad9898 commit b49f722
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 6 deletions.
17 changes: 17 additions & 0 deletions nym-vpn-core/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions nym-vpn-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,7 @@ tower = "0.5.2"
tower-http = { version = "0.6.2", features = ["cors"] }
tracing = "0.1"
tracing-appender = "0.2.3"
tracing-oslog = "0.2.0"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
triggered = "0.1.1"
tun = { version = "0.6.1", features = ["async"] }
Expand Down
3 changes: 2 additions & 1 deletion nym-vpn-core/crates/nym-vpn-lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,8 @@ android_logger.workspace = true
rand.workspace = true

[target.'cfg(any(target_os = "macos", target_os = "ios"))'.dependencies]
tracing-oslog = "0.2.0"
debounced.workspace = true
tracing-oslog.workspace = true

[build-dependencies]
uniffi = { workspace = true, features = ["build"] }
Expand Down
7 changes: 2 additions & 5 deletions nym-vpn-core/crates/nym-vpn-lib/src/platform/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -47,18 +47,15 @@ pub mod helpers;

mod account;
mod environment;
mod state_machine;
mod logging;
mod state_machine;
pub use logging::init_logger;

use std::{path::PathBuf, sync::Arc, time::Duration};

use account::AccountControllerHandle;
use lazy_static::lazy_static;
use tokio::{
runtime::Runtime,
sync::Mutex,
};
use tokio::{runtime::Runtime, sync::Mutex};

use state_machine::StateMachineHandle;

Expand Down

0 comments on commit b49f722

Please sign in to comment.