2024-05-29 20:05:16 +00:00
|
|
|
[package]
|
2024-06-04 20:14:26 +00:00
|
|
|
name = "html_to_markdown"
|
2024-05-29 20:05:16 +00:00
|
|
|
version = "0.1.0"
|
2024-07-01 21:18:58 +00:00
|
|
|
description = "Convert HTML to Markdown"
|
|
|
|
repository = "https://github.com/zed-industries/zed"
|
|
|
|
documentation = "https://docs.rs/html_to_markdown"
|
|
|
|
keywords = ["html", "markdown", "html-to-markdown"]
|
2024-05-29 20:05:16 +00:00
|
|
|
edition = "2021"
|
2024-07-01 21:18:58 +00:00
|
|
|
license = "Apache-2.0"
|
2024-05-29 20:05:16 +00:00
|
|
|
|
|
|
|
[lints]
|
|
|
|
workspace = true
|
|
|
|
|
|
|
|
[lib]
|
2024-06-04 20:14:26 +00:00
|
|
|
path = "src/html_to_markdown.rs"
|
2024-05-29 20:05:16 +00:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
anyhow.workspace = true
|
|
|
|
html5ever.workspace = true
|
|
|
|
markup5ever_rcdom.workspace = true
|
2024-05-29 22:39:51 +00:00
|
|
|
regex.workspace = true
|
2024-05-29 20:05:16 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
indoc.workspace = true
|
2024-05-29 23:23:06 +00:00
|
|
|
pretty_assertions.workspace = true
|