-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (29 loc) · 1.1 KB
/
Copy pathCargo.toml
File metadata and controls
35 lines (29 loc) · 1.1 KB
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
[package]
name = "doom-status"
version = "0.1.0"
edition = "2021"
license = "GPL-2.0-only"
authors = ["Richard Zak <richard.j.zak@gmail.com>"]
description = "Show the CPU load in a menu or status bar by displaying the face of Doom Guy"
homepage = "https://github.com/rjzak/doom-status"
repository = "https://github.com/rjzak/doom-status"
readme = "readme.md"
build = "build.rs"
[dependencies]
image = { version = "0.25.10", default-features = false, features = ["png"] }
muda = { version = "^0.19.2", default-features = false } # sub-dependency of tray-icon, must match that version
sysinfo = { version = "0.39.3", default-features = false, features = ["system"] }
tray-icon = { version = "0.24.0", default-features = false }
winit = "0.30.13"
[target.'cfg(target_os = "macos")'.dependencies]
core-foundation = "0.10.1"
[target.'cfg(target_os = "linux")'.dependencies]
gtk = "0.18"
[build-dependencies]
chrono = { version = "0.4", features = ["now"] }
[target.'cfg(windows)'.build-dependencies]
winresource = { version = "0.1.31", default-features = false }
[profile.release]
codegen-units = 1
lto = true
strip = "symbols"