-
Notifications
You must be signed in to change notification settings - Fork 386
/
Copy pathCargo.toml
33 lines (27 loc) · 898 Bytes
/
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
[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 }
err-derive = { workspace = true }
once_cell = { 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-types = { path = "../talpid-types" }