2022-08-01 06:56:12 +03:00
|
|
|
[package]
|
|
|
|
authors = [
|
|
|
|
"강동윤 <kdy1997.dev@gmail.com>",
|
|
|
|
"Alexander Akait <sheo13666q@gmail.com>",
|
|
|
|
]
|
|
|
|
description = "XML code generator for the swc project"
|
|
|
|
documentation = "https://rustdoc.swc.rs/swc_xml_codegen/"
|
|
|
|
edition = "2021"
|
|
|
|
include = ["Cargo.toml", "src/**/*.rs"]
|
|
|
|
license = "Apache-2.0"
|
|
|
|
name = "swc_xml_codegen"
|
|
|
|
repository = "https://github.com/swc-project/swc.git"
|
2023-05-30 08:18:06 +03:00
|
|
|
version = "0.11.14"
|
2022-08-01 06:56:12 +03:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
bench = false
|
|
|
|
|
|
|
|
[dependencies]
|
2023-03-24 07:46:42 +03:00
|
|
|
auto_impl = "0.5.0"
|
2023-04-15 06:26:56 +03:00
|
|
|
bitflags = "2.1.0"
|
2023-03-24 07:46:42 +03:00
|
|
|
rustc-hash = "1.1.0"
|
|
|
|
|
2023-05-16 08:18:57 +03:00
|
|
|
swc_atoms = { version = "0.5.6", path = "../swc_atoms" }
|
2023-05-30 08:18:06 +03:00
|
|
|
swc_common = { version = "0.31.12", path = "../swc_common" }
|
|
|
|
swc_xml_ast = { version = "0.10.12", path = "../swc_xml_ast" }
|
2023-03-23 12:19:33 +03:00
|
|
|
swc_xml_codegen_macros = { version = "0.1.1", path = "../swc_xml_codegen_macros" }
|
2022-08-01 06:56:12 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-05-30 08:18:06 +03:00
|
|
|
swc_common = { version = "0.31.12", path = "../swc_common", features = [
|
2022-08-01 06:56:12 +03:00
|
|
|
"sourcemap",
|
|
|
|
] }
|
2023-05-30 08:18:06 +03:00
|
|
|
swc_xml_parser = { version = "0.11.13", path = "../swc_xml_parser" }
|
|
|
|
swc_xml_visit = { version = "0.10.12", path = "../swc_xml_visit" }
|
|
|
|
testing = { version = "0.33.13", path = "../testing" }
|