-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
31 lines (27 loc) · 825 Bytes
/
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
[package]
name = "gpu-usage-waybar"
authors = ["PolpOnline"]
version = "0.1.12"
edition = "2021"
description = "A tool to display gpu usage in Waybar"
license = "MIT"
readme = "README.md"
repository = "https://github.com/PolpOnline/gpu-usage-waybar"
[dependencies]
amdgpu-sysfs = "0.17.0"
clap = { version = "4.5.20", features = ["cargo", "derive"] }
color-eyre = "0.6.3"
lazy_static = "1.5.0"
nvml-wrapper = "0.10.0"
regex = "1.11.1"
serde = { version = "1.0.214", features = ["derive"] }
serde_json = "1.0.132"
strum = { version = "0.26.3", features = ["derive"] }
[profile.dev.package.backtrace]
opt-level = 3
# Rust does not inline across crates if link-time optimization (LTO) is off, which it is by default.
[profile.release]
lto = true
# The profile that 'dist' will build with
[profile.dist]
inherits = "release"