forked from ulissesf/qmassa
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
25 lines (24 loc) · 745 Bytes
/
Cargo.toml
File metadata and controls
25 lines (24 loc) · 745 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
[package]
name = "qmassa"
version = "0.5.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", "usage", "statistics"]
categories = ["command-line-utilities", "graphics"]
edition = "2021"
[dependencies]
anyhow = "1.0.94"
clap = { version = "4.5.23", features = ["derive"] }
crossterm = "0.28.1"
env_logger = "0.11.5"
itertools = "0.13.0"
libc = "0.2.168"
log = "0.4.22"
nix = { version = "0.29.0", features = ["ioctl"] }
ratatui = "0.29.0"
serde = { version = "1.0.216", features = ["derive"] }
serde_json = "1.0.133"
tui-scrollview = "0.5.1"
udev = { version = "0.9.1", features = ["hwdb"] }