[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"