[package]
edition = "2024"
name = "html5-parser"
version = "0.1.0"
build = false
exclude = ["tests/"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A pure-Rust WHATWG HTML5 tokenizer and tree-construction implementation"
readme = "README.md"
keywords = [
"html5",
"html",
"parser",
"tokenizer",
"whatwg",
]
categories = [
"parser-implementations",
"web-programming",
]
license = "MIT"
repository = "https://github.com/casoon/html5-parser"
[lib]
name = "html5_parser"
path = "src/lib.rs"
[dependencies]