-
Notifications
You must be signed in to change notification settings - Fork 389
/
Copy pathCargo.toml
74 lines (62 loc) · 1.89 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[package]
name = "test-manager"
description = "Manager process orchestrating e2e tests of the Mullvad VPN app"
authors.workspace = true
repository.workspace = true
license.workspace = true
edition.workspace = true
rust-version.workspace = true
[lints]
workspace = true
[dependencies]
anyhow = { version = "1", features = ["backtrace"] }
futures = { workspace = true }
regex = "1"
chrono = { workspace = true }
tarpc = { workspace = true }
tokio = { workspace = true }
tokio-serial = { workspace = true }
thiserror = { workspace = true }
bytes = { workspace = true }
test_macro = { path = "./test_macro" }
ipnetwork = "0.20"
inventory = "0.3"
data-encoding-macro = "0.1.12"
itertools = "0.10.5"
libc = "0.2.14"
clap = { version = "4.1", features = ["derive"] }
async-tempfile = "0.2"
async-trait = { workspace = true }
uuid = "1.3"
dirs = "5.0.1"
scopeguard = "1.2"
glob = "0.3"
serde = { workspace = true }
serde_json = { workspace = true }
tokio-serde = { workspace = true }
log = { workspace = true }
pcap = { version = "1.3", features = ["capture-stream"] }
pnet_packet = "0.34.0"
pnet_base = "0.34.0"
test-rpc = { path = "../test-rpc" }
socks-server = { path = "../socks-server" }
env_logger = { workspace = true }
tonic = { workspace = true }
hyper-util = { workspace = true }
tower = { workspace = true }
colored = { workspace = true }
mullvad-api = { path = "../../mullvad-api", features = ["api-override"] }
mullvad-management-interface = { path = "../../mullvad-management-interface" }
mullvad-relay-selector = { path = "../../mullvad-relay-selector" }
mullvad-types = { path = "../../mullvad-types" }
mullvad-version = { path = "../../mullvad-version" }
talpid-types = { path = "../../talpid-types" }
ssh2 = "0.9.4"
nix = { workspace = true }
socket2 = "0.5.6"
[target.'cfg(target_os = "macos")'.dependencies]
tun = "0.5.1"
[dependencies.tokio-util]
version = "0.7"
features = ["codec"]
default-features = false