-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (40 loc) · 1.15 KB
/
Copy pathCargo.toml
File metadata and controls
44 lines (40 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[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