[package]
edition = "2021"
name = "portsage"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A TUI tool to monitor processes and their listening ports"
readme = "README.md"
keywords = [
"tui",
"process",
"port",
"monitor",
]
categories = ["command-line-utilities"]
license = "MIT"
repository = "https://github.com/mei28/PortSage"
[lib]
name = "portsage"
path = "src/lib.rs"
[[bin]]
name = "portsage"
path = "src/main.rs"
[[test]]
name = "cli_test"
path = "tests/cli_test.rs"
[[test]]
name = "filter_test"
path = "tests/filter_test.rs"
[[test]]
name = "port_test"
path = "tests/port_test.rs"
[[test]]
name = "process_test"
path = "tests/process_test.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.arboard]
version = "3"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.crossterm]
version = "0.27"
[dependencies.nix]
version = "0.27"
features = [
"signal",
"process",
]
[dependencies.ratatui]
version = "0.26"
[dependencies.sysinfo]
version = "0.29"
[dependencies.tabled]
version = "0.15"