html-helpers 0.2.0

A collection of high-level utilities for cleaning, transforming, and converting HTML content.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[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"