-
Notifications
You must be signed in to change notification settings - Fork 389
/
Copy pathCargo.toml
50 lines (41 loc) · 1.82 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[package]
name = "installer-downloader"
description = "A secure minimal web installer for the Mullvad app"
authors.workspace = true
repository.workspace = true
license.workspace = true
edition.workspace = true
rust-version.workspace = true
[lints]
workspace = true
[build-dependencies]
anyhow = { workspace = true }
winres = "0.1"
windows-sys = { workspace = true, features = ["Win32_System", "Win32_System_LibraryLoader", "Win32_System_SystemServices"] }
[target.'cfg(any(target_os = "windows", target_os = "macos"))'.dependencies]
anyhow = { workspace = true }
async-trait = "0.1"
chrono = { workspace = true, features = ["clock"] }
fern = { workspace = true }
hex = "0.4"
log = { workspace = true }
rand = { version = "0.8.5" }
reqwest = { version = "0.12.9", default-features = false, features = ["rustls-tls"] }
serde = { workspace = true, features = ["derive"] }
tokio = { workspace = true, features = ["rt-multi-thread", "fs"] }
vec1 = { workspace = true }
talpid-platform-metadata = { path = "../talpid-platform-metadata" }
mullvad-update = { path = "../mullvad-update", features = ["client"] }
[target.'cfg(target_os = "windows")'.dependencies]
native-windows-gui = { version = "1.0.12", features = ["frame", "image-decoder", "progress-bar"], default-features = false }
windows-sys = { workspace = true, features = ["Win32_UI", "Win32_UI_WindowsAndMessaging", "Win32_Graphics", "Win32_Graphics_Gdi"] }
mullvad-paths = { path = "../mullvad-paths" }
[target.'cfg(target_os = "macos")'.dependencies]
cacao = "0.3.2"
objc_id = "0.1"
[target.'cfg(any(target_os = "windows", target_os = "macos"))'.dev-dependencies]
insta = { workspace = true, features = ["yaml"] }
serde = { workspace = true, features = ["derive"] }
tokio = { workspace = true, features = ["test-util", "macros"] }
[package.metadata.winres]
LegalCopyright = "(c) 2025 Mullvad VPN AB"