swc/crates/swc_html_minifier/Cargo.toml

55 lines
2.0 KiB
TOML
Raw Normal View History

[package]
authors = [
"강동윤 <kdy1997.dev@gmail.com>",
"Alexander Akait <sheo13666q@gmail.com>",
]
description = "HTML minifier"
documentation = "https://rustdoc.swc.rs/swc_html_minifier/"
edition = "2021"
include = ["Cargo.toml", "src/**/*.rs", "data/**/*.json"]
license = "Apache-2.0"
name = "swc_html_minifier"
repository = "https://github.com/swc-project/swc.git"
2024-01-23 07:25:38 +03:00
version = "0.133.2"
[lib]
bench = false
[dependencies]
2023-06-22 10:40:41 +03:00
once_cell = "1.18.0"
serde = { version = "1.0.118", features = ["derive"] }
serde_json = "1.0.61"
2023-12-01 23:08:13 +03:00
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
2024-01-24 05:04:25 +03:00
swc_cached = { version = "0.3.19", path = "../swc_cached" }
2024-01-23 11:38:01 +03:00
swc_common = { version = "0.33.15", path = "../swc_common" }
swc_css_ast = { version = "0.140.16", path = "../swc_css_ast" }
swc_css_codegen = { version = "0.151.25", path = "../swc_css_codegen" }
swc_css_minifier = { version = "0.116.26", path = "../swc_css_minifier" }
swc_css_parser = { version = "0.150.24", path = "../swc_css_parser" }
swc_ecma_ast = { version = "0.111.1", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.147.1", path = "../swc_ecma_codegen", features = [
"serde-impl",
] }
2024-01-23 07:25:38 +03:00
swc_ecma_minifier = { version = "0.191.2", path = "../swc_ecma_minifier", features = [
"extra-serde",
] }
2024-01-23 11:38:01 +03:00
swc_ecma_parser = { version = "0.142.1", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.136.1", path = "../swc_ecma_transforms_base" }
swc_ecma_visit = { version = "0.97.1", path = "../swc_ecma_visit" }
swc_html_ast = { version = "0.33.14", path = "../swc_html_ast" }
swc_html_codegen = { version = "0.42.19", path = "../swc_html_codegen" }
swc_html_parser = { version = "0.39.19", path = "../swc_html_parser" }
swc_html_utils = { version = "0.18.14", path = "../swc_html_utils" }
swc_html_visit = { version = "0.33.14", path = "../swc_html_visit" }
[dev-dependencies]
2023-06-22 10:40:41 +03:00
criterion = "0.5"
2023-11-11 22:12:50 +03:00
swc_malloc = { version = "0.5.10", path = "../swc_malloc" }
2024-01-23 11:38:01 +03:00
testing = { version = "0.35.16", path = "../testing" }
[[bench]]
harness = false
name = "full"