blob: 7c377734d81154283ddbf467cd9d81d749c4a5a6 (
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
|
[package]
name = "mullvad-setup"
description = "Tool used to manage daemon setup"
authors.workspace = true
repository.workspace = true
license.workspace = true
edition.workspace = true
rust-version.workspace = true
[lints]
workspace = true
[[bin]]
name = "mullvad-setup"
path = "src/main.rs"
[dependencies]
clap = { workspace = true }
env_logger = { workspace = true }
thiserror = { workspace = true }
mullvad-management-interface = { path = "../mullvad-management-interface" }
tokio = { workspace = true, features = ["rt-multi-thread"] }
mullvad-daemon = { path = "../mullvad-daemon" }
mullvad-paths = { path = "../mullvad-paths" }
mullvad-api = { path = "../mullvad-api" }
mullvad-types = { path = "../mullvad-types" }
mullvad-version = { path = "../mullvad-version" }
talpid-core = { path = "../talpid-core" }
talpid-future = { path = "../talpid-future" }
talpid-types = { path = "../talpid-types" }
[target.'cfg(windows)'.dependencies]
windows-service = "0.6.0"
[target.'cfg(windows)'.dependencies.windows-sys]
workspace = true
features = ["Win32_Foundation"]
|