forked from cloudflare/lol-html
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
60 lines (55 loc) · 1.46 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[package]
name = "lol_html"
version = "0.3.2"
authors = ["Ivan Nikulin <[email protected], [email protected]>"]
license = "BSD-3-Clause"
description = "Streaming HTML rewriter/parser with CSS selector-based API"
repository = "https://github.com/cloudflare/lol-html"
documentation = "https://docs.rs/lol-html"
categories = ["parser-implementations", "web-programming"]
keywords = ["html", "css-selectors", "parser", "rewriter", "streaming"]
readme = "README.md"
include = [
"/Cargo.toml",
"/LICENSE",
"/README.md",
"/src",
"/tests",
"/media",
"/benches"
]
autotests = false
edition = "2021"
[features]
debug_trace = []
integration_test = []
[[test]]
harness = false
name = "integration_tests"
[[bench]]
harness = false
name = "bench"
[dependencies]
bitflags = "1.0.4"
cfg-if = "1.0.0"
cssparser = "0.27.2"
encoding_rs = "0.8.13"
lazycell = "1.3.0"
lazy_static = "1.3.0"
memchr = "2.1.2"
safemem = "0.3.3"
selectors = "0.22.0"
thiserror = "1.0.2"
hashbrown = "0.13.1"
[dev-dependencies]
criterion = "0.4.0"
glob = "0.3.0"
html5ever = { version = "0.25.1", git = "https://github.com/servo/html5ever", rev = "1b34cf17c6586a2dc1c120bf6a1fd88cf4c86021" }
markup5ever_rcdom = { version = "0.1", git = "https://github.com/servo/html5ever", rev = "1b34cf17c6586a2dc1c120bf6a1fd88cf4c86021" }
hashbrown = { version = "0.13.1", features = ["serde"] }
serde = "1.0.126"
serde_derive = "1.0.19"
serde_json = "1.0.65"
rand = "0.8.4"
rustc-test = "0.3.1"
itertools = "0.10.1"