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-08-24 11:20:56 +03:00
|
|
|
version = "0.10.22"
|
2022-08-01 06:56:12 +03:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
bench = false
|
|
|
|
|
2023-03-27 07:28:42 +03:00
|
|
|
[features]
|
|
|
|
serde-impl = ["serde"]
|
|
|
|
|
2022-08-01 06:56:12 +03:00
|
|
|
[dependencies]
|
2023-06-21 18:38:46 +03:00
|
|
|
is-macro = "0.3.0"
|
2023-03-27 07:28:42 +03:00
|
|
|
serde = { version = "1.0.127", features = ["derive"], optional = true }
|
2023-03-24 07:46:42 +03:00
|
|
|
|
2023-06-21 18:44:11 +03:00
|
|
|
string_enum = { version = "0.4.1", path = "../string_enum/" }
|
2023-08-24 11:20:56 +03:00
|
|
|
swc_atoms = { version = "0.5.9", path = "../swc_atoms" }
|
|
|
|
swc_common = { version = "0.31.22", path = "../swc_common" }
|