[package]
edition = "2024"
name = "ziro"
version = "0.0.26"
authors = ["huangshan"]
build = false
exclude = [
"target/",
".git/",
".github/",
"*.log",
"package.json",
"package-lock.json",
"bin/",
"scripts/",
".npmignore",
"AGENTS.md",
"docs/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Cross-platform port management tool - quickly find and kill processes occupying ports"
readme = "README.md"
keywords = [
"port",
"process",
"network",
"cli",
"cross-platform",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/Protagonistss/ziro"
[lib]
name = "ziro"
path = "src/lib.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.colored]
version = "2.1"
[dependencies.console]
version = "0.15"
[dependencies.encoding_rs]
version = "0.8.35"
[dependencies.inquire]
version = "0.7"
[dependencies.sysinfo]
version = "0.31"
[target."cfg(windows)".dependencies.windows-sys]
version = "0.59"
features = [
"Win32_Storage_FileSystem",
"Win32_Foundation",
"Win32_System_RestartManager",
"Win32_System_Console",
]
[lints.clippy]
collapsible_if = "allow"
needless_return = "allow"
redundant_pattern_matching = "allow"
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"
strip = true