swc/crates/swc_html_parser/Cargo.toml

51 lines
1.3 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"]
license = { workspace = true }
2022-04-04 07:12:45 +03:00
name = "swc_html_parser"
repository = "https://github.com/swc-project/swc.git"
version = "3.0.0"
2022-04-04 07:12:45 +03:00
[lib]
bench = false
2022-04-04 07:12:45 +03:00
[features]
debug = []
[dependencies]
swc_atoms = { version = "2.0.0", path = "../swc_atoms" }
swc_common = { version = "3.0.0", path = "../swc_common" }
swc_html_ast = { version = "3.0.0", path = "../swc_html_ast" }
swc_html_utils = { version = "3.0.0", path = "../swc_html_utils" }
2022-04-04 07:12:45 +03:00
[dev-dependencies]
codspeed-criterion-compat = { workspace = true }
criterion = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
swc_html_ast = { version = "3.0.0", path = "../swc_html_ast", features = [
"serde-impl",
] }
swc_html_visit = { version = "3.0.0", path = "../swc_html_visit" }
swc_malloc = { version = "1.0.0", path = "../swc_malloc" }
testing = { version = "3.0.0", 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"