devpulse 1.0.0

Developer diagnostics: HTTP timing, build artifact cleanup, environment health checks, port scanning, PATH analysis, and config format conversion
[package]
name = "devpulse"
version = "1.0.0"
edition = "2021"
authors = ["LazyFrog <support@kindware.dev>"]
license = "MIT"
description = "Developer diagnostics: HTTP timing, build artifact cleanup, environment health checks, port scanning, PATH analysis, and config format conversion"
repository = "https://github.com/Brutus1066/devpulse"
homepage = "https://kindware.dev"
documentation = "https://github.com/Brutus1066/devpulse#readme"
readme = "README.md"
keywords = ["http", "timing", "cleanup", "cli", "developer-tools"]
categories = ["command-line-utilities", "development-tools", "web-programming::http-client"]
exclude = [".github/*", "CLAUDE.md", ".memory/*"]

[dependencies]
clap = { version = "4.4", features = ["derive"] }
clap_complete = "4.4"
thiserror = "1.0"
colored = "2.1"
walkdir = "2.5"
native-tls = "0.2"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sysinfo = "0.32"
wild = "2"
ratatui = "0.29"
crossterm = "0.28"
rayon = "1.10"
x509-parser = "0.16"
toml = "0.8"
serde_yml = "0.0.12"

[dev-dependencies]
tempfile = "3.10"

[[bin]]
name = "devpulse"
path = "src/main.rs"

[profile.release]
lto = true
strip = true
codegen-units = 1