[package]
edition = "2024"
name = "psn"
version = "0.1.4"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Terminal UI for process status navigation and control"
homepage = "https://github.com/l5yth/psn"
readme = "README.md"
keywords = [
"process",
"top",
"tui",
"linux",
]
categories = ["command-line-utilities"]
license = "Apache-2.0"
repository = "https://github.com/l5yth/psn"
[features]
debug_tui = []
default = []
[lib]
name = "psn"
path = "src/lib.rs"
[[bin]]
name = "psn"
path = "src/main.rs"
[[test]]
name = "app_tests"
path = "tests/app_tests.rs"
[[test]]
name = "bin_cli_tests"
path = "tests/bin_cli_tests.rs"
[dependencies.anyhow]
version = "1"
[dependencies.crossterm]
version = "0.29"
[dependencies.nix]
version = "0.31"
features = ["signal"]
default-features = false
[dependencies.ratatui]
version = "0.30"
[dependencies.regex]
version = "1"
[dependencies.sysinfo]
version = "0.38"
[dependencies.users]
version = "0.11"