forked from gosub-io/gosub-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
53 lines (46 loc) · 1.14 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
[package]
name = "gosub-engine"
version = "0.1.0"
edition = "2021"
rust-version = "1.73"
authors = ["Gosub Community <[email protected]>"]
description = "An HTML5 browser engine written in Rust."
license = "MIT"
repository = "https://github.com/gosub-browser/gosub-engine"
readme = "README.md"
keywords = ["html5", "parser", "browser", "Rust", "DOM"]
[[test]]
name = "tokenizer"
path = "tests/tokenizer.rs"
[[test]]
name = "tree_construction"
path = "tests/tree_construction.rs"
[[bench]]
name = "tokenizer"
harness = false
[[bench]]
name = "tree_construction"
harness = false
[dependencies]
phf = { version = "0.11.2", features = ["macros"] }
derive_more = "0.99"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_derive = "1.0"
regex = "1"
lazy_static = "1.4"
typed-arena = "2.0.2"
thiserror = "1.0.50"
ureq = "2.8.0"
anyhow = "1.0.75"
uuid = { version = "1.5.0", features = ["v4"] }
colored = "2.0.4"
walkdir = "2.3"
nom = "7.1.3"
nom_locate = "4.2.0"
[dev-dependencies]
criterion = { version = "0.5", features = ["html_reports"] }
test-case = "3.2.1"
[features]
# Enables extended debugging information during parsing.
debug_parser = []