-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
27 lines (26 loc) · 871 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
[package]
name = "qmassa"
version = "0.7.0"
description = "Terminal-based tool for displaying GPUs usage stats on Linux."
repository = "https://github.com/ulissesf/qmassa"
readme = "README.md"
license = "Apache-2.0"
keywords = ["gpu", "graphics", "statistics", "usage"]
categories = ["command-line-utilities", "graphics"]
edition = "2021"
rust-version = "1.74.0"
[dependencies]
anyhow = "1.0.96"
clap = { version = "4.5.30", features = ["derive"] }
crossterm = "0.28.1"
env_logger = "0.11.6"
itertools = "0.13.0"
libc = "0.2.169"
log = "0.4.26"
nix = { version = "0.29.0", features = ["ioctl"] }
plotters = { version = "0.3.7", default-features = false, features = ["line_series", "svg_backend"] }
ratatui = "0.29.0"
serde = { version = "1.0.218", features = ["derive"] }
serde_json = "1.0.139"
tui-scrollview = "0.5.1"
udev = { version = "0.9.3", features = ["hwdb"] }