aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: e159cd804852e3e697e306eb685fbf6685183137 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[workspace]
members = [".", "html5lib_tests", "integration_tests"]
default-members = [".", "html5lib_tests", "integration_tests"]

[workspace.dependencies]
similar-asserts = "1.4.2"

[package]
name = "html5tokenizer"
authors = ["Martin Fischer <martin@push-f.com>", "Markus Unterwaditzer <markus-honeypot@unterwaditzer.net>"]
description = "An HTML5 tokenizer with code span support."
edition = "2021"
readme = "README.md"
keywords = ["html", "html5", "whatwg", "parser", "tokenizer"]
categories = ["parser-implementations", "web-programming"]
license = "MIT"
repository = "https://git.push-f.com/html5tokenizer"
version = "0.5.2"
include = ["src/**/*", "examples/", "LICENSE", "README.md", "CHANGELOG.md"]

[[example]]
name = "tokenize"
required-features = ["integration-tests"]

[dev-dependencies]
codespan-reporting = "0.11.1"
insta = "1.31.0"
similar-asserts = { workspace = true }
walkdir = "2.3.3"

[features]
# Feature used by integration tests in tests/ to get access to library internals.
integration-tests = []