forked from nokyan/resources
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
46 lines (43 loc) · 1.13 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
[package]
name = "resources"
version = "1.6.0"
authors = ["nokyan <[email protected]>"]
edition = "2021"
[profile.dev]
opt-level = 1
[profile.release]
codegen-units = 1
lto = true
strip = true
opt-level = 3
[dependencies]
adw = { version = "0.7.0", features = ["v1_6"], package = "libadwaita" }
anyhow = { version = "1.0.89", features = ["backtrace"] }
async-channel = "2.3.1"
clap = { version = "4.5.18", features = ["derive"] }
gettext-rs = { version = "0.7.1", features = ["gettext-system"] }
glob = "0.3.1"
gtk = { version = "0.9.2", features = ["v4_10"], package = "gtk4" }
gtk-macros = "0.3.0"
lazy-regex = "3.3.0"
libc = { version = "0.2.159", features = ["extra_traits"] }
log = "0.4.22"
nix = { version = "0.29.0", default-features = false, features = [
"signal",
"sched",
] }
num_cpus = "1.16.0"
nvml-wrapper = "0.10.0"
paste = "1.0.15"
plotters = { version = "0.3.7", default-features = false, features = [
"area_series",
] }
plotters-cairo = "0.7.0"
pretty_env_logger = "0.5"
process-data = { path = "lib/process_data" }
rmp-serde = "1.3.0"
ron = "0.8.1"
rust-ini = "0.21.1"
strum = "0.26.3"
strum_macros = "0.26.4"
sysconf = "0.3.4"