clap_doc_generator 0.2.2

Automatically generate CLI documentation from clap definitions and update readme files
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "clap_doc_generator"
version = "0.2.2"
build = false
include = [
    "src/**",
    "tests/**",
    "LICENSE",
    "./readme.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Automatically generate CLI documentation from clap definitions and update readme files"
readme = "readme.md"
keywords = [
    "cli",
    "documentation",
    "clap",
]
categories = ["command-line-utilities"]
license = "MIT"
repository = "https://github.com/HBDE-work/clap_doc_generator/tree/master"

[features]
default = ["markdown"]
jenkins = []
markdown = []

[lib]
name = "clapdocs"
path = "src/core/lib.rs"

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

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

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

[dependencies.ignore]
version = "0.4"

[dependencies.quote]
version = "1"

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

[dependencies.syn]
version = "2"
features = [
    "full",
    "extra-traits",
]

[dependencies.toml]
version = "1"

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