[package]
edition = "2024"
name = "html-helpers"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A collection of high-level utilities for cleaning, transforming, and converting HTML content."
homepage = "https://github.com/jeremychone/rust-html-helpers"
readme = "README.md"
keywords = [
"html",
"DOM",
"parsing",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/jeremychone/rust-html-helpers"
[lib]
name = "html_helpers"
path = "src/lib.rs"
doctest = false
[[example]]
name = "c01-simple"
path = "examples/c01-simple.rs"
[dependencies.derive_more]
version = "2"
features = [
"from",
"display",
]
[dependencies.ego-tree]
version = "0.11"
[dependencies.html-escape]
version = "0.2.13"
[dependencies.scraper]
version = "0.27"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[lints.rust]
unsafe_code = "forbid"