[package]
edition = "2021"
name = "cargo-readme"
version = "3.3.2"
authors = ["Livio Ribeiro <livioribeiro@outlook.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A cargo subcommand to generate README.md content from doc comments"
readme = "README.md"
keywords = [
"readme",
"documentation",
"cargo",
"subcommand",
]
categories = ["development-tools::cargo-plugins"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/webern/cargo-readme"
[badges.github]
repository = "webern/cargo-readme"
[lib]
name = "cargo_readme"
path = "src/lib.rs"
[[bin]]
name = "cargo-readme"
path = "src/main.rs"
[[test]]
name = "alternate-input"
path = "tests/alternate-input.rs"
[[test]]
name = "alternate-template"
path = "tests/alternate-template.rs"
[[test]]
name = "append-license"
path = "tests/append-license.rs"
[[test]]
name = "badges"
path = "tests/badges.rs"
[[test]]
name = "default-behavior"
path = "tests/default-behavior.rs"
[[test]]
name = "entrypoint-resolution"
path = "tests/entrypoint-resolution.rs"
[[test]]
name = "multiline-doc"
path = "tests/multiline-doc.rs"
[[test]]
name = "multiple-bin-fail"
path = "tests/multiple-bin-fail.rs"
[[test]]
name = "no-entrypoint-fail"
path = "tests/no-entrypoint-fail.rs"
[[test]]
name = "no-template"
path = "tests/no-template.rs"
[[test]]
name = "project-with-version"
path = "tests/project-with-version.rs"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.lazy_static]
version = "1"
[dependencies.percent-encoding]
version = "2"
[dependencies.regex]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.toml]
version = "1"
[dev-dependencies.assert_cli]
version = "0.6"