blob: bb8ff8f5c670f3a93e5b7b89ded8c73563b526a8 (
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
|
[package]
name = "mullvad-problem-report"
version = "2019.10.0"
authors = ["Mullvad VPN"]
description = "Collect Mullvad VPN logs into a report and send it to support"
license = "GPL-3.0"
edition = "2018"
publish = false
[dependencies]
clap = "2.25"
dirs = "2.0"
env_logger = "0.7"
err-derive = "0.2.1"
lazy_static = "1.0"
regex = "1.0"
tokio-core = "0.1"
uuid = { version = "0.7", features = ["v4"] }
mullvad-paths = { path = "../mullvad-paths" }
mullvad-rpc = { path = "../mullvad-rpc" }
talpid-types = { path = "../talpid-types" }
[target.'cfg(target_os = "android")'.dependencies]
duct = "0.13"
[target.'cfg(target_os = "linux")'.dependencies]
rs-release = { git = "https://github.com/mullvad/rs-release", branch = "snailquote-unescape" }
[target.'cfg(windows)'.build-dependencies]
winres = "0.1"
winapi = "0.3"
[package.metadata.winres]
ProductName = "Mullvad VPN"
CompanyName = "Mullvad VPN AB"
LegalCopyright = "(c) 2020 Mullvad VPN AB"
InternalName = "mullvad-problem-report"
OriginalFilename = "mullvad-problem-report.exe"
|