[[bin]]
name = "ttop"
path = "src/main.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.clap]
features = ["derive"]
version = "4.5"
[dependencies.crossterm]
version = "0.28"
[dependencies.dirs]
version = "5.0"
[dependencies.renacer]
optional = true
version = "0.9"
[dependencies.serde]
features = ["derive"]
version = "1.0"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.thiserror]
version = "2.0"
[dependencies.trueno-viz]
features = ["monitor"]
version = "0.1.10"
[dev-dependencies.proptest]
version = "1.4"
[dev-dependencies.tempfile]
version = "3.10"
[features]
amd = []
default = ["nvidia"]
full = ["nvidia", "tracing"]
nvidia = ["trueno-viz/monitor-nvidia"]
tracing = ["dep:renacer"]
[lib]
name = "ttop"
path = "src/lib.rs"
[lints.clippy]
expect_used = "allow"
unwrap_used = "deny"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "warn"
[package]
authors = ["PAIML Team"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["command-line-utilities", "visualization"]
description = "Terminal Top: 10X better than btop - Pure Rust system monitor with GPU, ML stack, and deterministic rendering"
edition = "2021"
keywords = ["system-monitor", "tui", "terminal", "btop", "htop"]
license = "MIT OR Apache-2.0"
name = "ttop"
readme = "README.md"
repository = "https://github.com/paiml/trueno-viz"
rust-version = "1.75"
version = "0.2.0"
[profile.release]
lto = "thin"
opt-level = 3
strip = "symbols"
[target.'cfg(target_os = "linux")'.dependencies.libc]
version = "0.2"
[[test]]
name = "panels_test"
path = "tests/panels_test.rs"