swc/crates/swc_xml_codegen/Cargo.toml

34 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"
2022-10-27 04:25:04 +03:00
version = "0.4.14"
2022-08-01 06:56:12 +03:00
[lib]
bench = false
[dependencies]
2022-08-11 12:52:44 +03:00
auto_impl = "0.5.0"
bitflags = "1.3.2"
rustc-hash = "1.1.0"
2022-10-27 03:19:24 +03:00
swc_atoms = { version = "0.4.24", path = "../swc_atoms" }
2022-10-27 04:25:04 +03:00
swc_common = { version = "0.29.12", path = "../swc_common" }
swc_xml_ast = { version = "0.4.13", path = "../swc_xml_ast" }
2022-08-01 06:56:12 +03:00
swc_xml_codegen_macros = { version = "0.1.0", path = "../swc_xml_codegen_macros" }
[dev-dependencies]
2022-10-27 04:25:04 +03:00
swc_common = { version = "0.29.12", path = "../swc_common", features = [
2022-08-01 06:56:12 +03:00
"sourcemap",
] }
2022-10-27 04:25:04 +03:00
swc_xml_parser = { version = "0.4.14", path = "../swc_xml_parser" }
swc_xml_visit = { version = "0.4.13", path = "../swc_xml_visit" }
testing = { version = "0.31.12", path = "../testing" }