forked from tauri-apps/tray-icon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
56 lines (47 loc) · 1.32 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
51
52
53
54
55
56
[package]
name = "tray-icon"
version = "0.14.3"
edition = "2021"
description = "Create tray icons for desktop applications"
homepage = "https://github.com/tauri-apps/tray-icon"
repository = "https://github.com/tauri-apps/tray-icon"
license = "MIT OR Apache-2.0"
categories = [ "gui" ]
[features]
default = [ "libxdo" ]
libxdo = [ "muda/libxdo" ]
serde = [ "muda/serde", "dep:serde" ]
common-controls-v6 = [ "muda/common-controls-v6" ]
[dependencies]
muda = { version = "0.13", default-features = false }
crossbeam-channel = "0.5"
once_cell = "1"
thiserror = "1.0"
serde = { version = "1", optional = true }
[target."cfg(target_os = \"windows\")".dependencies.windows-sys]
version = "0.52"
features = [
"Win32_UI_WindowsAndMessaging",
"Win32_Foundation",
"Win32_System_SystemServices",
"Win32_Graphics_Gdi",
"Win32_UI_Shell"
]
[target."cfg(target_os = \"linux\")".dependencies]
libappindicator = "0.9"
dirs = "5"
[target."cfg(target_os = \"linux\")".dev-dependencies]
gtk = "0.18"
[target."cfg(target_os = \"macos\")".dependencies]
cocoa = "0.25"
objc = "0.2"
core-graphics = "0.23"
[target."cfg(target_os = \"macos\")".dev-dependencies]
core-foundation = "0.9"
[target."cfg(any(target_os = \"linux\", target_os = \"macos\"))".dependencies]
png = "0.17"
[dev-dependencies]
winit = "0.29"
tao = "0.28"
image = "0.25"
eframe = "0.27"