[package]
edition = "2024"
name = "cmdkit"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core library for CLI tools, providing common functionality and utilities for building command-line applications."
documentation = "https://docs.rs/cmdkit"
readme = "README.md"
keywords = [
"cli",
"command",
"framework",
"parser",
]
categories = [
"command-line-interface",
"command-line-utilities",
]
license = "GPL-3.0-or-later"
repository = "https://github.com/JackLanger/CMDkit"
[lib]
name = "cmdkit"
path = "src/lib.rs"
[[bin]]
name = "wrapper_probe"
path = "src/bin/wrapper_probe.rs"
[[test]]
name = "cli_suite"
path = "tests/cli_suite.rs"
[[test]]
name = "clicore_suite"
path = "tests/clicore_suite.rs"
[[test]]
name = "command_suit"
path = "tests/command_suit.rs"
[dependencies]