tagsoup 0.2.0

Fun html-like tag soup parser with zero dependencies.
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 = "tagsoup"
version = "0.2.0"
authors = ["Casper <CasualX@users.noreply.github.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fun html-like tag soup parser with zero dependencies."
documentation = "https://docs.rs/tagsoup/"
readme = "readme.md"
keywords = [
    "html",
    "parser",
    "query",
    "selector",
    "tagsoup",
]
categories = ["parsing"]
license = "MIT"
repository = "https://github.com/CasualX/tagsoup"

[features]
default = ["serde"]
serde = ["dep:serde"]

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

[[example]]
name = "get_all_href"
path = "examples/get_all_href/main.rs"

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

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

[[test]]
name = "snapshot"
path = "tests/snapshot/main.rs"

[[bench]]
name = "smoke"
path = "benches/smoke.rs"

[dependencies.memchr]
version = "2.8"
optional = true

[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true

[dev-dependencies.clap]
version = "4.0"
features = ["cargo"]

[dev-dependencies.serde_json]
version = "1.0"