swc/crates/swc_xml_codegen/Cargo.toml

35 lines
1.1 KiB
TOML
Raw Normal View History

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-08-24 15:58:41 +03:00
version = "0.12.0"
2022-08-01 06:56:12 +03:00
[lib]
bench = false
[dependencies]
2023-06-22 10:40:41 +03:00
auto_impl = "1.1.0"
bitflags = "2.3.2"
rustc-hash = "1.1.0"
2023-08-24 11:20:56 +03:00
swc_atoms = { version = "0.5.9", path = "../swc_atoms" }
2023-08-24 15:58:41 +03:00
swc_common = { version = "0.32.0", path = "../swc_common" }
swc_xml_ast = { version = "0.11.0", path = "../swc_xml_ast" }
2023-06-21 18:44:11 +03:00
swc_xml_codegen_macros = { version = "0.1.2", path = "../swc_xml_codegen_macros" }
2022-08-01 06:56:12 +03:00
[dev-dependencies]
2023-08-24 15:58:41 +03:00
swc_common = { version = "0.32.0", path = "../swc_common", features = [
2022-08-01 06:56:12 +03:00
"sourcemap",
] }
2023-08-24 15:58:41 +03:00
swc_xml_parser = { version = "0.12.0", path = "../swc_xml_parser" }
swc_xml_visit = { version = "0.11.0", path = "../swc_xml_visit" }
testing = { version = "0.34.0", path = "../testing" }