blob: 3e1c8df913db305f3460fde9be3ade41a10c8081 (
plain)
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
|
[package]
name = "test-runner"
description = "Runs inside the VM where the Mullvad VPN app is being tested"
authors.workspace = true
repository.workspace = true
license.workspace = true
edition.workspace = true
rust-version.workspace = true
[lints]
workspace = true
[dependencies]
dirs = { workspace = true }
futures = { workspace = true }
tarpc = { workspace = true }
tokio = { workspace = true }
tokio-serial = { workspace = true }
thiserror = { workspace = true }
log = { workspace = true }
parity-tokio-ipc = "0.9"
bytes = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
tokio-serde = { workspace = true }
surge-ping = { workspace = true }
rand = { workspace = true }
libc = "0.2"
chrono = { workspace = true, features = ["serde"] }
test-rpc = { path = "../test-rpc" }
mullvad-paths = { path = "../../mullvad-paths" }
talpid-platform-metadata = { path = "../../talpid-platform-metadata", default-features = false }
socket2 = { workspace = true, features = ["all"] }
[target.'cfg(windows)'.dependencies]
talpid-windows = { path = "../../talpid-windows" }
windows-service = "0.6"
winreg = "0.55"
[target.'cfg(windows)'.dependencies.windows-sys]
version = "0.45.0"
features = [
"Win32_Foundation",
"Win32_Security",
"Win32_System_Shutdown",
"Win32_System_SystemServices",
"Win32_System_Threading",
"Win32_UI_WindowsAndMessaging",
]
[dependencies.tokio-util]
version = "0.7"
features = ["codec"]
default-features = false
[target.'cfg(unix)'.dependencies]
nix = { workspace = true, features = ["user"] }
[target.'cfg(target_os = "linux")'.dependencies]
rs-release = "0.1.7"
[target.'cfg(target_os = "macos")'.dependencies]
talpid-macos = { path = "../../talpid-macos" }
plist = "1"
|