blob: 64461d76aab868463e02a91cf6de9c5cad38adb8 (
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
|
[package]
name = "test-runner"
version = "0.1.0"
edition = "2021"
[dependencies]
futures = { workspace = true }
tarpc = { workspace = true }
tokio = { workspace = true }
tokio-serial = { workspace = true }
err-derive = { workspace = true }
log = { workspace = true }
once_cell = { workspace = true }
parity-tokio-ipc = "0.9"
bytes = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
tokio-serde = { 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" }
socket2 = { version = "0.5", features = ["all"] }
[target."cfg(target_os=\"windows\")".dependencies]
talpid-windows = { path = "../../talpid-windows" }
windows-service = "0.6"
winreg = "0.50"
[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 = { version = "0.25", features = ["socket", "net"] }
[target.'cfg(target_os = "linux")'.dependencies]
rs-release = "0.1.7"
[target.'cfg(target_os = "macos")'.dependencies]
plist = "1"
|