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"
|
|
|
|
edition = "2021"
|
|
|
|
publish = false
|
|
|
|
license = "GPL-3.0-or-later"
|
|
|
|
|
|
|
|
[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
|