2022-08-01 06:56:12 +03:00
|
|
|
[package]
|
|
|
|
authors = [
|
|
|
|
"강동윤 <kdy1997.dev@gmail.com>",
|
|
|
|
"Alexander Akait <sheo13666q@gmail.com>",
|
|
|
|
]
|
|
|
|
description = "XML parser"
|
|
|
|
documentation = "https://rustdoc.swc.rs/swc_xml_parser/"
|
|
|
|
edition = "2021"
|
|
|
|
include = ["Cargo.toml", "src/**/*.rs", "src/**/*.json"]
|
|
|
|
license = "Apache-2.0"
|
|
|
|
name = "swc_xml_parser"
|
|
|
|
repository = "https://github.com/swc-project/swc.git"
|
2023-04-12 15:33:03 +03:00
|
|
|
version = "0.11.1"
|
2022-08-01 06:56:12 +03:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
bench = false
|
|
|
|
|
|
|
|
[features]
|
|
|
|
debug = []
|
|
|
|
|
|
|
|
[dependencies]
|
2023-04-12 15:33:03 +03:00
|
|
|
swc_atoms = { version = "0.5.1", path = "../swc_atoms" }
|
|
|
|
swc_common = { version = "0.31.1", path = "../swc_common" }
|
|
|
|
swc_xml_ast = { version = "0.10.1", path = "../swc_xml_ast" }
|
2022-08-01 06:56:12 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-03-24 07:46:42 +03:00
|
|
|
serde = "1.0.127"
|
|
|
|
serde_json = "1.0.66"
|
|
|
|
|
2023-04-12 15:33:03 +03:00
|
|
|
swc_xml_ast = { version = "0.10.1", path = "../swc_xml_ast", features = [
|
2023-03-27 07:28:42 +03:00
|
|
|
"serde-impl",
|
|
|
|
] }
|
2023-04-12 15:33:03 +03:00
|
|
|
swc_xml_visit = { version = "0.10.1", path = "../swc_xml_visit" }
|
|
|
|
testing = { version = "0.33.1", path = "../testing" }
|