[package]
edition = "2024"
rust-version = "1.87.0"
name = "cargo-rdme"
version = "2.0.0"
authors = ["Diogo Sousa <diogogsousa@gmail.com>"]
build = false
include = [
"/src/**/*.rs",
"/Cargo.toml",
"/Cargo.lock",
"/LICENSE.md",
"/README.md",
"/release-notes.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Cargo command to create your `README.md` from your crate's documentation"
homepage = "https://github.com/orium/cargo-rdme"
documentation = "https://docs.rs/cargo-rdme"
readme = "README.md"
keywords = [
"readme",
"cargo",
"documentation",
]
categories = ["development-tools::cargo-plugins"]
license = "MIT"
repository = "https://github.com/orium/cargo-rdme"
[badges.codecov]
branch = "main"
repository = "orium/cargo-rdme"
service = "github"
[lib]
name = "cargo_rdme"
path = "src/lib.rs"
[[bin]]
name = "cargo-rdme"
path = "src/main.rs"
[dependencies.cargo_metadata]
version = "0.23.1"
[dependencies.clap]
version = "4.6.1"
[dependencies.clap-cargo]
version = "0.18.3"
[dependencies.gix]
version = "0.84.0"
features = [
"status",
"dirwalk",
"sha1",
]
default-features = false
[dependencies.indoc]
version = "2.0.7"
[dependencies.itertools]
version = "0.15.0"
[dependencies.pulldown-cmark]
version = "0.13.4"
[dependencies.rustdoc-json]
version = "0.9.8"
[dependencies.rustdoc-types]
version = "0.57.0"
[dependencies.rustup-toolchain]
version = "0.1.10"
[dependencies.serde_json]
version = "1.0.149"
[dependencies.syn]
version = "2.0.117"
features = [
"full",
"extra-traits",
]
[dependencies.termcolor]
version = "1.4.1"
[dependencies.thiserror]
version = "2.0.18"
[dependencies.toml]
version = "1.1.2"
[dependencies.unicase]
version = "2.9.0"
[dev-dependencies.pretty_assertions]
version = "1.4.1"
[lints.clippy]
enum-variant-names = "allow"
if-not-else = "allow"
inline-always = "allow"
match-bool = "allow"
match-same-arms = "allow"
missing-errors-doc = "allow"
module-name-repetitions = "allow"
needless-raw-string-hashes = "allow"
new-without-default = "allow"
non-ascii-literal = "allow"
partialeq-ne-impl = "allow"
similar-names = "allow"
single-match-else = "allow"
struct-excessive-bools = "allow"
use-self = "allow"
[lints.clippy.all]
level = "warn"
priority = -2
[lints.clippy.correctness]
level = "deny"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -2