zed/crates/html_to_markdown/Cargo.toml
Marshall Bowers 8ccd2a0c99
Add tag handler for collecting crate items from rustdoc output (#12903)
This PR adds a tag handler for collecting crate items from rustdoc's
HTML output.

This will serve as the foundation for getting more insight into a
crate's contents.

Release Notes:

- N/A
2024-06-11 15:56:37 -04:00

25 lines
434 B
TOML

[package]
name = "html_to_markdown"
version = "0.1.0"
edition = "2021"
publish = false
license = "GPL-3.0-or-later"
[lints]
workspace = true
[lib]
path = "src/html_to_markdown.rs"
[dependencies]
anyhow.workspace = true
html5ever.workspace = true
indexmap.workspace = true
markup5ever_rcdom.workspace = true
regex.workspace = true
strum.workspace = true
[dev-dependencies]
indoc.workspace = true
pretty_assertions.workspace = true