swc/crates/swc_html_codegen/Cargo.toml

36 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"
2023-04-13 11:41:47 +03:00
version = "0.40.3"
2022-04-04 07:12:45 +03:00
[lib]
bench = false
2022-04-04 07:12:45 +03:00
[dependencies]
auto_impl = "0.5.0"
bitflags = "1.3.2"
rustc-hash = "1.1.0"
2023-04-13 11:41:47 +03:00
swc_atoms = { version = "0.5.3", path = "../swc_atoms" }
swc_common = { version = "0.31.3", path = "../swc_common" }
swc_html_ast = { version = "0.31.3", path = "../swc_html_ast" }
2023-03-23 12:19:33 +03:00
swc_html_codegen_macros = { version = "0.2.1", path = "../swc_html_codegen_macros" }
2023-04-13 11:41:47 +03:00
swc_html_utils = { version = "0.16.3", path = "../swc_html_utils" }
2022-04-04 07:12:45 +03:00
[dev-dependencies]
2023-04-13 11:41:47 +03:00
swc_common = { version = "0.31.3", path = "../swc_common", features = [
2022-04-04 07:12:45 +03:00
"sourcemap",
] }
2023-04-13 11:41:47 +03:00
swc_html_parser = { version = "0.37.3", path = "../swc_html_parser" }
swc_html_visit = { version = "0.31.3", path = "../swc_html_visit" }
testing = { version = "0.33.3", path = "../testing" }