html5-parser 0.2.0

A pure-Rust WHATWG HTML5 tokenizer and tree-construction implementation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[package]
name = "html5-parser"
version = "0.2.0"
edition = "2024"
description = "A pure-Rust WHATWG HTML5 tokenizer and tree-construction implementation"
license = "MIT"
repository = "https://github.com/casoon/html5-parser"
readme = "README.md"
keywords = ["html5", "html", "parser", "tokenizer", "whatwg"]
categories = ["parser-implementations", "web-programming"]
# tests/ (the html5lib-tests corpus + this crate's conformance harness)
# is dev-only — no value to library consumers, but ~616KiB of vendored
# .dat fixtures otherwise bloats the published package. Excluded here
# only; unaffected in the git repo/CI, where `cargo test` still needs it.
exclude = ["tests/"]

[dependencies]