swc/crates/swc_xml_ast/Cargo.toml

27 lines
685 B
TOML
Raw Normal View History

2022-08-01 06:56:12 +03:00
[package]
2022-08-11 12:52:44 +03:00
authors = [
"강동윤 <kdy1997.dev@gmail.com>",
"Alexander Akait <sheo13666q@gmail.com>",
]
2022-08-01 06:56:12 +03:00
description = "AST definitions of xml"
documentation = "https://rustdoc.swc.rs/swc_xml_ast/"
edition = "2021"
license = "Apache-2.0"
name = "swc_xml_ast"
repository = "https://github.com/swc-project/swc.git"
2023-05-30 08:18:06 +03:00
version = "0.10.12"
2022-08-01 06:56:12 +03:00
[lib]
bench = false
[features]
serde-impl = ["serde"]
2022-08-01 06:56:12 +03:00
[dependencies]
is-macro = "0.3.0"
serde = { version = "1.0.127", features = ["derive"], optional = true }
2023-03-27 07:31:35 +03:00
string_enum = { version = "0.4.0", path = "../string_enum/" }
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" }