Update all non-major dependencies
[ProtonMail-WebClient.git] / applications / pass-desktop / native / Cargo.toml
blobadb17552093206e9cc9cadd2b26a7a6558bdc9a9
1 [package]
2 edition = "2021"
3 name = "native"
4 version = "0.0.0"
6 [lib]
7 crate-type = ["cdylib"]
9 [dependencies]
10 anyhow = "1.0.80"
11 arboard = "3.4.1"
12 base64 = "=0.21.5"
13 napi = { version = "2.12.2", features = ["async"] }
14 napi-derive = "2.12.2"
15 rand = "0.8.5"
16 sha2 = "=0.10.8"
18 [target.'cfg(windows)'.dependencies]
19 widestring = "=1.0.2"
20 windows = { version = "=0.54.0", features = [
21   "Foundation",
22   "Security_Credentials_UI",
23   "Security_Cryptography",
24   "Storage_Streams",
25   "Win32_Foundation",
26   "Win32_Security_Credentials",
27   "Win32_System_WinRT",
28 ] }
30 [target.'cfg(target_os = "macos")'.dependencies]
31 core-foundation = "=0.9.4"
32 security-framework = "=2.9.2"
33 security-framework-sys = "=2.9.1"
35 [build-dependencies]
36 napi-build = "2.0.1"
38 [profile.release]
39 lto = true
40 strip = "symbols"