swc/crates/swc_html_minifier/Cargo.toml

43 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"
2022-08-25 07:53:03 +03:00
version = "0.60.0"
[lib]
bench = false
[dependencies]
2022-08-11 12:52:44 +03:00
once_cell = "1.10.0"
serde = { version = "1.0.118", features = ["derive"] }
serde_json = "1.0.61"
2022-08-13 13:11:26 +03:00
swc_atoms = { version = "0.4.5", path = "../swc_atoms" }
swc_cached = { version = "0.3.5", path = "../swc_cached" }
swc_common = { version = "0.27.13", path = "../swc_common" }
2022-08-20 04:52:20 +03:00
swc_css_ast = { version = "0.108.0", path = "../swc_css_ast" }
swc_css_codegen = { version = "0.118.0", path = "../swc_css_codegen" }
swc_css_minifier = { version = "0.83.0", path = "../swc_css_minifier" }
swc_css_parser = { version = "0.117.0", path = "../swc_css_parser" }
swc_ecma_ast = { version = "0.90.12", path = "../swc_ecma_ast" }
2022-08-21 11:33:31 +03:00
swc_ecma_codegen = { version = "0.122.0", path = "../swc_ecma_codegen" }
2022-08-25 07:53:03 +03:00
swc_ecma_minifier = { version = "0.147.0", path = "../swc_ecma_minifier" }
2022-08-21 11:33:31 +03:00
swc_ecma_parser = { version = "0.118.0", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.104.0", path = "../swc_ecma_transforms_base" }
2022-08-17 08:28:18 +03:00
swc_ecma_visit = { version = "0.76.6", path = "../swc_ecma_visit" }
2022-08-13 13:11:26 +03:00
swc_html_ast = { version = "0.24.4", path = "../swc_html_ast" }
swc_html_codegen = { version = "0.32.4", path = "../swc_html_codegen" }
swc_html_parser = { version = "0.29.4", path = "../swc_html_parser" }
swc_html_utils = { version = "0.12.5", path = "../swc_html_utils" }
swc_html_visit = { version = "0.24.4", path = "../swc_html_visit" }
[dev-dependencies]
2022-08-13 13:11:26 +03:00
testing = { version = "0.29.4", path = "../testing" }