2022-04-04 07:12:45 +03:00
|
|
|
[package]
|
2022-07-12 08:08:10 +03:00
|
|
|
authors = [
|
|
|
|
"강동윤 <kdy1997.dev@gmail.com>",
|
|
|
|
"Alexander Akait <sheo13666q@gmail.com>",
|
|
|
|
]
|
2022-04-04 07:12:45 +03:00
|
|
|
description = "HTML code generator for the swc project"
|
|
|
|
documentation = "https://rustdoc.swc.rs/swc_html_codegen/"
|
|
|
|
edition = "2021"
|
|
|
|
include = ["Cargo.toml", "src/**/*.rs"]
|
|
|
|
license = "Apache-2.0"
|
|
|
|
name = "swc_html_codegen"
|
|
|
|
repository = "https://github.com/swc-project/swc.git"
|
2023-03-16 05:20:24 +03:00
|
|
|
version = "0.37.43"
|
2022-04-04 07:12:45 +03:00
|
|
|
|
2022-04-04 14:12:03 +03:00
|
|
|
[lib]
|
|
|
|
bench = false
|
|
|
|
|
2022-04-04 07:12:45 +03:00
|
|
|
[dependencies]
|
2022-08-11 12:52:44 +03:00
|
|
|
auto_impl = "0.5.0"
|
|
|
|
bitflags = "1.3.2"
|
|
|
|
rustc-hash = "1.1.0"
|
2023-03-08 05:51:08 +03:00
|
|
|
swc_atoms = { version = "0.4.39", path = "../swc_atoms" }
|
2023-03-11 06:44:48 +03:00
|
|
|
swc_common = { version = "0.29.37", path = "../swc_common" }
|
2023-03-13 06:27:50 +03:00
|
|
|
swc_html_ast = { version = "0.28.30", path = "../swc_html_ast" }
|
2022-07-12 08:08:10 +03:00
|
|
|
swc_html_codegen_macros = { version = "0.2.0", path = "../swc_html_codegen_macros" }
|
2023-03-11 06:44:48 +03:00
|
|
|
swc_html_utils = { version = "0.14.38", path = "../swc_html_utils" }
|
2022-04-04 07:12:45 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-03-11 06:44:48 +03:00
|
|
|
swc_common = { version = "0.29.37", path = "../swc_common", features = [
|
2022-04-04 07:12:45 +03:00
|
|
|
"sourcemap",
|
2022-07-12 08:08:10 +03:00
|
|
|
] }
|
2023-03-16 05:20:24 +03:00
|
|
|
swc_html_parser = { version = "0.34.42", path = "../swc_html_parser" }
|
2023-03-13 06:27:50 +03:00
|
|
|
swc_html_visit = { version = "0.28.30", path = "../swc_html_visit" }
|
2023-03-16 05:20:24 +03:00
|
|
|
testing = { version = "0.31.40", path = "../testing" }
|