dom_query 0.25.1

HTML querying and manipulation with CSS selectors
Documentation
[dependencies.bit-set]
version = "0.8.0"

[dependencies.cssparser]
version = "0.36.0"

[dependencies.foldhash]
version = "0.2.0"

[dependencies.hashbrown]
default-features = false
features = ["allocator-api2", "inline-more", "default-hasher"]
optional = true
version = "0.16.0"

[dependencies.html5ever]
version = "0.36.1"

[dependencies.nom]
optional = true
version = "8.0.0"

[dependencies.precomputed-hash]
version = "0.1.1"

[dependencies.selectors]
version = "0.35.0"

[dependencies.tendril]
version = "0.4.3"

[dev-dependencies.alloc_cat]
version = "=1.0.0"

[dev-dependencies.wasm-bindgen-test]
version = "0.3.58"

[[example]]
name = "descendant_elements"
path = "examples/descendant_elements.rs"

[[example]]
name = "hacker_news"
path = "examples/hacker_news.rs"

[[example]]
name = "manipulate_html"
path = "examples/manipulate_html.rs"

[[example]]
name = "markdown"
path = "examples/markdown.rs"
required-features = ["markdown"]

[[example]]
name = "pseudo_classes"
path = "examples/pseudo_classes.rs"

[[example]]
name = "remove_elements"
path = "examples/remove_elements.rs"

[[example]]
name = "send_document"
path = "examples/send_document.rs"
required-features = ["atomic"]

[[example]]
name = "serialize_html"
path = "examples/serialize_html.rs"

[features]
atomic = []
default = ["markdown"]
hashbrown = ["dep:hashbrown"]
markdown = []
mini_selector = ["dep:nom"]

[lib]
name = "dom_query"
path = "src/lib.rs"

[package]
authors = ["niklak <morgenpurple@gmail.com>", "importcjj <importcjj@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
description = "HTML querying and manipulation with CSS selectors"
documentation = "https://docs.rs/dom_query/latest"
edition = "2021"
exclude = [".*", "test-pages", "deny.toml"]
keywords = ["html", "css", "selectors", "scraping", "parser"]
license = "MIT"
name = "dom_query"
readme = "README.md"
repository = "https://github.com/niklak/dom_query"
rust-version = "1.75"
version = "0.25.1"

[profile.bench]
codegen-units = 1
incremental = false
lto = "fat"
opt-level = 3

[[test]]
name = "alloc"
path = "tests/alloc.rs"

[[test]]
name = "data"
path = "tests/data.rs"

[[test]]
name = "html-dom"
path = "tests/html-dom.rs"

[[test]]
name = "node-manipulation"
path = "tests/node-manipulation.rs"

[[test]]
name = "node-traversal"
path = "tests/node-traversal.rs"

[[test]]
name = "parsing"
path = "tests/parsing.rs"

[[test]]
name = "pseudo-classes"
path = "tests/pseudo-classes.rs"

[[test]]
name = "selection-manipulation"
path = "tests/selection-manipulation.rs"

[[test]]
name = "selection-property"
path = "tests/selection-property.rs"

[[test]]
name = "selection-query"
path = "tests/selection-query.rs"

[[test]]
name = "selection-traversal"
path = "tests/selection-traversal.rs"

[[test]]
name = "utils"
path = "tests/utils.rs"