-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (23 loc) · 857 Bytes
/
Cargo.toml
File metadata and controls
26 lines (23 loc) · 857 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
[package]
name = "cargo-doc-md"
version = "0.11.0"
edition = "2024"
authors = ["Claude (Anthropic AI) <noreply@anthropic.com>"]
license = "MIT OR Apache-2.0"
description = "Cargo subcommand to generate markdown documentation for Rust crates and dependencies"
readme = "README.md"
repository = "https://github.com/Crazytieguy/cargo-doc-md"
homepage = "https://github.com/Crazytieguy/cargo-doc-md"
keywords = ["cargo-subcommand", "markdown", "documentation", "rustdoc", "cargo"]
categories = ["command-line-utilities", "development-tools"]
rust-version = "1.85"
[[bin]]
name = "cargo-doc-md"
path = "src/main.rs"
[dependencies]
anyhow = "1.0.100"
clap = { version = "4.5.48", features = ["derive"] }
serde_json = "1.0.145"
rustdoc-types = { version = "0.56", features = ["rustc-hash"] }
[dev-dependencies]
insta = { version = "1.41", features = ["glob"] }