-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (26 loc) · 762 Bytes
/
Cargo.toml
File metadata and controls
30 lines (26 loc) · 762 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
[package]
name = "sysinfo-gui"
version = "0.1.18"
edition = "2021"
repository = "https://github.com/MoAlyousef/sysinfo-gui"
keywords = ["cross-platform", "monitoring", "gui"]
license = "MIT"
categories = ["visualization"]
description = "A cross-platform system-monitoring gui application based on sysinfo and fltk"
documentation = "https://docs.rs/sysinfo-gui"
readme = "README.md"
build = "build.rs"
[package.metadata.bundle]
identifier = "io.github.moalyousef"
icon = ["assets/icon.png"]
[dependencies]
sysinfo = { version = "0.37" }
fltk = "1.5.17"
fltk-extras = "0.1"
parking_lot = "0.12"
dark-light = { version = "2", optional = true }
[target.'cfg(target_os = "windows")'.build-dependencies]
winres = "0.1"
[profile.release]
opt-level = 3
strip = true