-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathCargo.toml
36 lines (30 loc) · 884 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
34
35
36
[package]
name = "zerotier_desktop_ui"
version = "1.10.0"
authors = ["Adam Ierymenko <[email protected]>"]
edition = "2021"
[profile.release]
opt-level = 'z'
lto = true
codegen-units = 1
panic = 'abort'
[dependencies]
serde = { version = "^1", features = ["derive"] }
serde_json = "^1"
ureq = { version = "2.6.2", features = [] }
chrono = "^0"
parking_lot = "^0"
crc64 = "^1"
runas = "^1"
url = "^2.5.4"
webbrowser = "^0"
[target.'cfg(target_os = "macos")'.dependencies]
plist = "^1"
mac-notification-sys = { git = "https://github.com/h4llow3En/mac-notification-sys", rev = "65573f44bd5a3e4710b90617eb9056826a04e9c0" }
[target.'cfg(not(target_os = "macos"))'.dependencies]
notify-rust = "^4"
[target.'cfg(windows)'.dependencies]
winreg = "^0"
winapi = { version = "^0", features = ["wincodec", "commoncontrols"] }
[target.'cfg(not(windows))'.dependencies]
libc = "^0"