[package]
edition = "2018"
name = "html2md"
version = "0.2.17"
authors = ["Oleg `Kanedias` Chernovskiy <kanedias@house-of-maker.online>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Library and binary to convert simple html documents into markdown"
readme = "README.md"
keywords = [
"html",
"markdown",
"converter",
]
categories = [
"development-tools",
"parsing",
"parser-implementations",
]
license = "GPL-3.0+"
repository = "https://gitlab.com/Kanedias/html2md"
[badges.gitlab]
branch = "master"
repository = "Kanedias/html2md"
[badges.maintenance]
status = "experimental"
[lib]
name = "html2md"
crate-type = [
"rlib",
"dylib",
"staticlib",
]
path = "src/lib.rs"
[[bin]]
name = "html2md"
path = "src/bin/html2md.rs"
[[test]]
name = "iframes"
path = "tests/iframes.rs"
[[test]]
name = "images"
path = "tests/images.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[test]]
name = "lists"
path = "tests/lists.rs"
[[test]]
name = "quotes"
path = "tests/quotes.rs"
[[test]]
name = "styles"
path = "tests/styles.rs"
[[test]]
name = "tables"
path = "tests/tables.rs"
[[test]]
name = "unit"
path = "tests/unit.rs"
[dependencies.html5ever]
version = "0.39.0"
[dependencies.markup5ever_rcdom]
version = "0.39.0"
[dependencies.percent-encoding]
version = "2.3.2"
[dependencies.regex]
version = "1.13.1"
[dev-dependencies.indoc]
version = "2.0.7"
[dev-dependencies.pretty_assertions]
version = "1.4.1"
[dev-dependencies.spectral]
version = "0.6.0"
[target.'cfg(target_os="android")'.dependencies.jni]
version = "0.22.4"
default-features = false
[profile.release]
lto = true
debug = 0
panic = "abort"