kxf 0.1.0

CLI tool that finds and kills processes occupying a TCP/UDP port.
# ---- Rust build artifacts ----------------------------------------------------
# Cargo places compiled crates in `target`. Include the workspace variant to
# cover nested workspaces.
/target/
**/target/

# Rust compiler/cargo intermediates and backups
**/*.rs.bk
*.rlib
*.rmeta

# Native binaries and libraries produced by build scripts or FFI code
*.exe
*.dll
*.lib
*.a
*.so
*.dylib
*.pdb

# ---- Dependency locking ------------------------------------------------------
# Comment out the next line for binary applications where Cargo.lock should be
# versioned. Library crates typically leave it ignored.
Cargo.lock

# ---- Logs & coverage ---------------------------------------------------------
*.log
coverage/
*.profraw
*.profdata
*.gcno
*.gcda

# ---- Tooling / editors -------------------------------------------------------
.idea/
.vscode/
*.code-workspace
.trace/
.cargo/

# ---- OS-specific clutter -----------------------------------------------------
.DS_Store
Thumbs.db