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-03-30 11:08:20 +03:00
version = "0.10.3"
2022-08-01 06:56:12 +03:00
[lib]
bench = false
[dependencies]
auto_impl = "0.5.0"
bitflags = "1.3.2"
rustc-hash = "1.1.0"
2023-03-30 11:08:20 +03:00
swc_atoms = { version = "0.4.42", path = "../swc_atoms" }
swc_common = { version = "0.30.3", path = "../swc_common" }
swc_xml_ast = { version = "0.9.3", 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-03-30 11:08:20 +03:00
swc_common = { version = "0.30.3", path = "../swc_common", features = [
2022-08-01 06:56:12 +03:00
"sourcemap",
] }
2023-03-30 11:08:20 +03:00
swc_xml_parser = { version = "0.10.3", path = "../swc_xml_parser" }
swc_xml_visit = { version = "0.9.3", path = "../swc_xml_visit" }
testing = { version = "0.32.3", path = "../testing" }