whatuses 0.2.2

A simple CLI tool to find which process is using a file or port
[[bin]]
name = "whatuses"
path = "src/main.rs"

[dependencies.clap]
features = ["derive"]
version = "4.5"

[dependencies.netstat-esr]
version = "0.8.1"

[dependencies.sysinfo]
version = "0.37"

[package]
authors = ["Alexander Elo"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["command-line-utilities", "os"]
description = "A simple CLI tool to find which process is using a file or port"
edition = "2024"
exclude = [".idea/*", ".github/*", "wix/*", "dist-workspace.toml", ".gitignore"]
homepage = "https://github.com/kaskii/whatuses"
keywords = ["cli", "process", "file", "port", "network"]
license = "MIT"
name = "whatuses"
readme = "README.md"
repository = "https://github.com/kaskii/whatuses"
version = "0.2.2"

[package.metadata.wix]
eula = "wix/License.rtf"
license = "wix/License.rtf"
path-guid = "2859D4B1-2E23-4A02-ADA5-95F2986CACF9"
upgrade-guid = "9C0F2464-96E7-4662-AD1E-B01301C71079"

[profile.dist]
inherits = "release"
lto = "thin"

[target."cfg(windows)".dependencies.windows-sys]
features = ["Win32_Foundation", "Win32_System_RestartManager", "Win32_System_Threading", "Win32_System_ProcessStatus", "Win32_Graphics_Gdi"]
version = "0.61.2"