[package]
edition = "2021"
name = "pstop"
version = "0.3.2"
authors = ["marlocarlo"]
build = false
exclude = [
"target/",
"image.png",
".github/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "htop for Windows — beautiful, fast TUI system monitor with per-core CPU bars, memory/swap/network, tree view, process management, 7 color schemes, mouse support. Drop-in htop replacement for PowerShell & Windows Terminal."
homepage = "https://github.com/marlocarlo/pstop"
documentation = "https://github.com/marlocarlo/pstop#readme"
readme = "README.md"
keywords = [
"htop",
"top",
"system-monitor",
"process-viewer",
"windows",
]
categories = [
"command-line-utilities",
"os::windows-apis",
]
license = "MIT"
repository = "https://github.com/marlocarlo/pstop"
[[bin]]
name = "htop"
path = "src/bin/htop.rs"
[[bin]]
name = "pstop"
path = "src/main.rs"
[dependencies.anyhow]
version = "1"
[dependencies.chrono]
version = "0.4"
[dependencies.crossterm]
version = "0.28"
[dependencies.ntapi]
version = "0.4"
[dependencies.ratatui]
version = "0.29"
[dependencies.sysinfo]
version = "0.33"
[dependencies.unicode-width]
version = "0.2"
[dependencies.windows]
version = "0.58"
features = [
"Win32_Foundation",
"Win32_System_Threading",
"Win32_System_ProcessStatus",
"Win32_Security",
"Win32_System_SystemInformation",
"Win32_System_Diagnostics_ToolHelp",
"Win32_System_Performance",
"Win32_System_LibraryLoader",
"Win32_System_Memory",
]
[profile.release]
opt-level = 3
lto = true
strip = true