swc/crates/swc_html_parser/Cargo.toml

46 lines
1.1 KiB
TOML
Raw Normal View History

2022-04-04 07:12:45 +03:00
[package]
2022-04-06 09:01:48 +03:00
authors = [
"강동윤 <kdy1997.dev@gmail.com>",
"Alexander Akait <sheo13666q@gmail.com>",
]
2022-04-04 07:12:45 +03:00
description = "HTML parser"
documentation = "https://rustdoc.swc.rs/swc_html_parser/"
edition = "2021"
2022-05-17 07:30:24 +03:00
include = ["Cargo.toml", "src/**/*.rs", "src/**/*.json"]
2022-04-04 07:12:45 +03:00
license = "Apache-2.0"
name = "swc_html_parser"
repository = "https://github.com/swc-project/swc.git"
2022-08-12 18:49:08 +03:00
version = "0.29.2"
2022-04-04 07:12:45 +03:00
[lib]
bench = false
2022-04-04 07:12:45 +03:00
[features]
debug = []
[dependencies]
2022-08-12 18:49:08 +03:00
swc_atoms = { version = "0.4.3", path = "../swc_atoms" }
swc_common = { version = "0.27.4", path = "../swc_common" }
swc_html_ast = { version = "0.24.2", path = "../swc_html_ast" }
swc_html_utils = { version = "0.12.3", path = "../swc_html_utils" }
2022-04-04 07:12:45 +03:00
[dev-dependencies]
2022-08-11 12:52:44 +03:00
criterion = "0.3"
serde = "1.0.127"
serde_json = "1.0.66"
2022-08-12 18:49:08 +03:00
swc_html_visit = { version = "0.24.2", path = "../swc_html_visit" }
2022-08-11 12:52:44 +03:00
swc_node_base = { version = "0.5.0", path = "../swc_node_base" }
2022-08-12 18:49:08 +03:00
testing = { version = "0.29.2", path = "../testing" }
2022-05-17 07:30:24 +03:00
[[bench]]
harness = false
2022-08-11 12:52:44 +03:00
name = "compare"
2022-05-17 07:30:24 +03:00
[[bench]]
harness = false
2022-08-11 12:52:44 +03:00
name = "lexer"
2022-05-17 07:30:24 +03:00
[[bench]]
harness = false
2022-08-11 12:52:44 +03:00
name = "parser"