helpprobe 0.2.0

CLI tool discovery and automation framework that extracts structured information from command help text
Documentation
[[bin]]
name = "helpprobe"
path = "src/main.rs"

[dependencies.anyhow]
version = "1.0.100"

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

[dependencies.regex]
version = "1.10"

[dependencies.serde]
features = ["derive"]
version = "1.0.228"

[dependencies.serde_json]
version = "1.0.145"

[dependencies.tokio]
features = ["full"]
version = "1.48.0"

[dev-dependencies.tempfile]
version = "3.10"

[lib]
name = "helpprobe"
path = "src/lib.rs"

[package]
authors = ["Byezy"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["command-line-utilities", "development-tools", "parsing"]
description = "CLI tool discovery and automation framework that extracts structured information from command help text"
documentation = "https://docs.rs/helpprobe"
edition = "2024"
homepage = "https://github.com/byezy/helpprobe"
keywords = ["cli", "help", "automation", "completion", "documentation"]
license = "MIT OR Apache-2.0"
name = "helpprobe"
readme = "README.md"
repository = "https://github.com/byezy/helpprobe"
version = "0.2.0"

[profile.tight]
codegen-units = 1
inherits = "release"
lto = true
opt-level = "z"
panic = "abort"
strip = true

[[test]]
name = "api_docs_tests"
path = "tests/api_docs_tests.rs"

[[test]]
name = "builder_tests"
path = "tests/builder_tests.rs"

[[test]]
name = "cache_tests"
path = "tests/cache_tests.rs"

[[test]]
name = "completion_tests"
path = "tests/completion_tests.rs"

[[test]]
name = "lib_tests"
path = "tests/lib_tests.rs"

[[test]]
name = "parser_tests"
path = "tests/parser_tests.rs"

[[test]]
name = "validation_tests"
path = "tests/validation_tests.rs"