forked from qdot/systray-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (27 loc) · 769 Bytes
/
Cargo.toml
File metadata and controls
32 lines (27 loc) · 769 Bytes
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
[package]
name = "systray"
version = "0.3.2"
authors = ["Kyle Machulis <kyle@machul.is>"]
description = "Rust library for making minimal cross-platform systray GUIs"
license = "BSD-3-Clause"
homepage = "https://github.com/qdot/systray-rs"
repository = "https://github.com/qdot/systray-rs.git"
readme = "README.md"
keywords = ["gui"]
edition = "2018"
[dependencies]
log= "0.4"
[target.'cfg(target_os = "windows")'.dependencies]
winapi= {version="0.3", features=["winuser", "shellapi", "impl-debug", "impl-default"]}
libc= "0.2"
[target.'cfg(target_os = "linux")'.dependencies]
gtk= "0.7"
glib= "0.8"
libappindicator= "0.4"
[profile.release]
lto = true
codegen-units = 1
# [target.'cfg(target_os = "macos")'.dependencies]
# objc="*"
# cocoa="*"
# core-foundation="*"