swc/crates/swc_html_codegen/Cargo.toml

35 lines
1.2 KiB
TOML
Raw Normal View History

2022-04-04 07:12:45 +03:00
[package]
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"
2022-12-12 05:40:19 +03:00
version = "0.37.21"
2022-04-04 07:12:45 +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"
2022-12-12 05:40:19 +03:00
swc_atoms = { version = "0.4.26", path = "../swc_atoms" }
swc_common = { version = "0.29.20", path = "../swc_common" }
swc_html_ast = { version = "0.28.12", path = "../swc_html_ast" }
swc_html_codegen_macros = { version = "0.2.0", path = "../swc_html_codegen_macros" }
2022-12-12 05:40:19 +03:00
swc_html_utils = { version = "0.14.21", path = "../swc_html_utils" }
2022-04-04 07:12:45 +03:00
[dev-dependencies]
2022-12-12 05:40:19 +03:00
swc_common = { version = "0.29.20", path = "../swc_common", features = [
2022-04-04 07:12:45 +03:00
"sourcemap",
] }
2022-12-12 05:40:19 +03:00
swc_html_parser = { version = "0.34.21", path = "../swc_html_parser" }
swc_html_visit = { version = "0.28.12", path = "../swc_html_visit" }
testing = { version = "0.31.21", path = "../testing" }