[package]
edition = "2024"
name = "clap-documentation"
version = "0.1.0"
authors = [
"Connor Gray <code@connorgray.com>",
"José Guilherme Vanz <jguilhermevanz@suse.com",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Autogenerate Markdown or Asciidoc documentation for clap command-line tools"
readme = "README.md"
keywords = [
"clap",
"markdown",
"command-line",
"help",
"asciidoc",
]
categories = [
"command-line-interface",
"command-line-utilities",
"development-tools",
"accessibility",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/jvanz/clap-documentation"
[lib]
name = "clap_documentation"
path = "src/lib.rs"
[[test]]
name = "test_asciidoc"
path = "tests/test_asciidoc.rs"
[[test]]
name = "test_examples"
path = "tests/test_examples.rs"
[[test]]
name = "test_markdown"
path = "tests/test_markdown.rs"
[dependencies.clap]
version = "4.6.1"
[dev-dependencies.clap]
version = "4.6.1"
features = ["derive"]
[dev-dependencies.pretty_assertions]
version = "1.4.1"