-
Notifications
You must be signed in to change notification settings - Fork 387
/
Copy pathCargo.toml
34 lines (29 loc) · 983 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[package]
name = "mullvad-management-interface"
description = "Mullvad VPN IPC. Contains types and functions for IPC clients and servers."
authors.workspace = true
repository.workspace = true
license.workspace = true
edition.workspace = true
rust-version.workspace = true
[lints]
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 }
hyper-util = { workspace = true }
prost = { workspace = true }
prost-types = { workspace = true }
futures = { workspace = true }
tokio = { workspace = true, features = ["rt"] }
parity-tokio-ipc = { workspace = true }
[target.'cfg(unix)'.dependencies]
nix = "0.23"
[build-dependencies]
tonic-build = { workspace = true, default-features = false, features = ["transport", "prost"] }