[package]
edition = "2021"
name = "htoprs"
version = "0.5.3"
authors = ["MenkeTechnologies"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A faithful Rust port of htop — the interactive process viewer"
homepage = "https://menketechnologies.github.io/htoprs/"
documentation = "https://docs.rs/htoprs"
readme = "README.md"
keywords = [
"htop",
"process",
"monitor",
"top",
"terminal",
]
categories = ["command-line-utilities"]
license = "GPL-2.0-or-later"
repository = "https://github.com/MenkeTechnologies/htoprs"
[lib]
name = "htoprs"
path = "src/lib.rs"
[[bin]]
name = "htoprs"
path = "src/main.rs"
[[test]]
name = "parity"
path = "tests/parity/main.rs"
[dependencies.crossterm]
version = "0.29.0"
[dependencies.libc]
version = "0.2.186"
[dependencies.nix]
version = "0.31.3"
[dependencies.ratatui]
version = "0.30.0"
features = ["std"]
default-features = false
[dependencies.regex]
version = "1"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.unicode-width]
version = "0.2.2"
[target.'cfg(target_os = "linux")'.dependencies.libmedium]
version = "0.13.4"
[target.'cfg(target_os = "linux")'.dependencies.neli]
version = "0.6"
[target.'cfg(target_os = "linux")'.dependencies.zbus]
version = "5"