[package]
edition = "2024"
name = "gpu-histop"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
default-run = "gpu-histop"
description = "High-resolution GPU history monitor for NVIDIA, AMDGPU, and Apple Silicon"
homepage = "https://github.com/sdraeger/gpu-histop"
readme = "README.md"
keywords = [
"gpu",
"monitoring",
"tui",
"nvidia",
"apple-silicon",
]
categories = [
"command-line-utilities",
"development-tools::profiling",
]
license = "MIT"
repository = "https://github.com/sdraeger/gpu-histop"
[lib]
name = "gpu_histop"
path = "src/lib.rs"
[[bin]]
name = "gpu-histop"
path = "src/main.rs"
[[bin]]
name = "gpu-histop-gui"
path = "src/bin/gpu-histop-gui.rs"
[[example]]
name = "nvml_fan_probe"
path = "examples/nvml_fan_probe.rs"
[[example]]
name = "process_probe"
path = "examples/process_probe.rs"
[dependencies.anyhow]
version = "1.0.102"
[dependencies.clap]
version = "4.6.1"
features = ["derive"]
[dependencies.crossbeam-channel]
version = "0.5.15"
[dependencies.crossterm]
version = "0.29.0"
[dependencies.eframe]
version = "0.34.1"
[dependencies.egui_plot]
version = "0.35.0"
[dependencies.nvml-wrapper]
version = "0.12.1"
[dependencies.ratatui]
version = "0.30.0"