[package]
edition = "2021"
rust-version = "1.88"
name = "abtop"
version = "0.4.1"
authors = ["Tae Hwan Jung <nlkey2022@gmail.com>"]
build = false
exclude = [
"assets/*",
"assets/**/*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "AI agent monitor for your terminal"
homepage = "https://github.com/graykode/abtop"
readme = "README.md"
keywords = [
"tui",
"monitor",
"claude",
"ai",
"agent",
]
categories = ["command-line-utilities"]
license = "MIT"
repository = "https://github.com/graykode/abtop"
[[bin]]
name = "abtop"
path = "src/main.rs"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.crossterm]
version = "0.28"
[dependencies.dirs]
version = "6"
[dependencies.ratatui]
version = "0.29"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tempfile]
version = "3"
[target.'cfg(target_os = "linux")'.dependencies.libc]
version = "0.2"
[target.'cfg(target_os = "windows")'.dependencies.sysinfo]
version = "0.32"
[target.'cfg(target_vendor = "apple")'.dependencies.proc_pidinfo]
version = "0.1"
[profile.dist]
lto = "thin"
inherits = "release"