forked from untitaker/html5gum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
30 lines (26 loc) · 1015 Bytes
/
Cargo.toml
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
[package]
name = "html5gum"
authors = ["Markus Unterwaditzer <[email protected]>"]
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.3.0"
include = ["src/**/*", "LICENSE", "README.md"]
[dev-dependencies]
pretty_assertions = "1.0.0"
serde = { version = "1.0.130", features = ["derive"] }
serde_json = "1.0.71"
test-generator = "0.3.0"
[features]
# By default this crate depends on the memchr library for best performance.
# Disabling this feature will leave you with 100% safe Rust and no dependencies.
# This may come in handy if you encounter packaging/build problems.
default = ["memchr"]
# If this feature is enabled, html5gum will expose private APIs and start
# printing debug information to stdout.
integration-tests = []
[dependencies]
memchr = { version = "2.4.1", optional = true }