diff options
| author | Sebastian Holmin <sebastian.holmin@mullvad.net> | 2024-09-24 08:54:31 +0200 |
|---|---|---|
| committer | Sebastian Holmin <sebastian.holmin@mullvad.net> | 2024-09-25 09:40:44 +0200 |
| commit | 0bee6e8104f4a5d2726919031444eeebabb8f5c5 (patch) | |
| tree | 7c2bf5ac8a495d306a8f53a9def0435047609681 | |
| parent | 7b75e8d6d4f1fe1a65a181e2818b32c5d61ecc2d (diff) | |
| download | mullvadvpn-0bee6e8104f4a5d2726919031444eeebabb8f5c5.tar.xz mullvadvpn-0bee6e8104f4a5d2726919031444eeebabb8f5c5.zip | |
Add `parity-tokio-ipc` to workspace dependencies
Also regroup networking-related crates
| -rw-r--r-- | Cargo.toml | 1 | ||||
| -rw-r--r-- | mullvad-management-interface/Cargo.toml | 5 | ||||
| -rw-r--r-- | talpid-openvpn-plugin/Cargo.toml | 4 | ||||
| -rw-r--r-- | talpid-openvpn/Cargo.toml | 2 |
4 files changed, 7 insertions, 5 deletions
diff --git a/Cargo.toml b/Cargo.toml index 0b674d289b..565d52466d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -66,6 +66,7 @@ unused_async = "deny" [workspace.dependencies] tokio = { version = "1.8" } +parity-tokio-ipc = "0.9" # Tonic and related crates tonic = "0.10.0" tonic-build = { version = "0.10.0", default-features = false } diff --git a/mullvad-management-interface/Cargo.toml b/mullvad-management-interface/Cargo.toml index 75c6f1b0ad..004d5a4d56 100644 --- a/mullvad-management-interface/Cargo.toml +++ b/mullvad-management-interface/Cargo.toml @@ -11,19 +11,20 @@ rust-version.workspace = true workspace = true [dependencies] +log = { workspace = true } chrono = { workspace = true } thiserror = { workspace = true } mullvad-types = { path = "../mullvad-types" } mullvad-paths = { path = "../mullvad-paths" } talpid-types = { path = "../talpid-types" } + tonic = { workspace = true } tower = { workspace = true } prost = { workspace = true } prost-types = { workspace = true } -parity-tokio-ipc = "0.9" futures = "0.3" tokio = { workspace = true, features = ["rt"] } -log = { workspace = true } +parity-tokio-ipc = { workspace = true } [target.'cfg(unix)'.dependencies] nix = "0.23" diff --git a/talpid-openvpn-plugin/Cargo.toml b/talpid-openvpn-plugin/Cargo.toml index 6c397ed6c4..6706674c69 100644 --- a/talpid-openvpn-plugin/Cargo.toml +++ b/talpid-openvpn-plugin/Cargo.toml @@ -17,12 +17,12 @@ crate-type = ["cdylib"] thiserror = { workspace = true } log = { workspace = true } env_logger = { workspace = true } -parity-tokio-ipc = "0.9" -tokio = { workspace = true, features = ["rt"] } openvpn-plugin = { version = "0.4.2", features = ["serde", "log", "auth-failed-event"] } talpid-types = { path = "../talpid-types" } +tokio = { workspace = true, features = ["rt"] } +parity-tokio-ipc = { workspace = true } tonic = { workspace = true } tower = { workspace = true } prost = { workspace = true } diff --git a/talpid-openvpn/Cargo.toml b/talpid-openvpn/Cargo.toml index 4450d56a03..3d62366bab 100644 --- a/talpid-openvpn/Cargo.toml +++ b/talpid-openvpn/Cargo.toml @@ -24,7 +24,7 @@ tokio = { workspace = true, features = ["process", "rt-multi-thread", "fs"] } shadowsocks-service = { workspace = true, features = [ "local", "stream-cipher" ] } [target.'cfg(not(target_os="android"))'.dependencies] -parity-tokio-ipc = "0.9" +parity-tokio-ipc = { workspace = true } triggered = "0.1.1" tonic = { workspace = true } prost = { workspace = true } |
