aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 13f8e5d8c3677d73ff2d30b042eb8557460ec17f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[package]
name = "html5gum"
authors = ["Markus Unterwaditzer <markus-honeypot@unterwaditzer.net>"]
description = "A WHATWG-compliant HTML5 tokenizer and tag soup parser."
edition = "2018"
readme = "README.md"
keywords = ["html", "html5", "whatwg", "parser", "tokenizer"]
license = "MIT"
repository = "https://github.com/untitaker/html5gum"
version = "0.2.1"
include = ["src/**/*", "LICENSE", "README.md"]

[dev-dependencies]
codespan-reporting = "0.11.1"
pretty_assertions = "1.0.0"
serde = { version = "1.0.130", features = ["derive"] }
serde_json = "1.0.71"
test-generator = "0.3.0"

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