blob: 80439d921df67c817909091aa7d3aee8238bfd2e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
[package]
name = "mullvad-cli"
version = "0.1.0"
authors = ["Mullvad VPN <admin@mullvad.net>", "Linus Färnstrand <linus@mullvad.net>", "Erik Larkö <erik@mullvad.net>", "Andrej Mihajlov <and@mullvad.net>"]
description = "Run Talpid easily from the command line"
license = "GPL-3.0"
[[bin]]
name = "mullvad"
path = "src/main.rs"
[dependencies]
clap = "2.20"
error-chain = "0.11"
lazy_static = "1.0"
log = "0.4"
env_logger = "0.5"
serde = "1.0"
mullvad-types = { path = "../mullvad-types" }
talpid-types = { path = "../talpid-types" }
talpid-ipc = { path = "../talpid-ipc" }
|