Cargo.toml
1[package]
2name = "html_to_markdown"
3version = "0.1.0"
4edition = "2021"
5publish = false
6license = "GPL-3.0-or-later"
7
8[lints]
9workspace = true
10
11[lib]
12path = "src/html_to_markdown.rs"
13
14[dependencies]
15anyhow.workspace = true
16html5ever.workspace = true
17markup5ever_rcdom.workspace = true
18regex.workspace = true
19
20[dev-dependencies]
21indoc.workspace = true
22pretty_assertions.workspace = true