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 = "Visitor for xml"
|
|
|
|
documentation = "https://rustdoc.swc.rs/swc_xml_visit/"
|
|
|
|
edition = "2021"
|
|
|
|
license = "Apache-2.0"
|
|
|
|
name = "swc_xml_visit"
|
|
|
|
repository = "https://github.com/swc-project/swc.git"
|
2022-09-16 09:46:25 +03:00
|
|
|
version = "0.3.8"
|
2022-08-01 06:56:12 +03:00
|
|
|
|
2022-08-11 12:52:44 +03:00
|
|
|
[package.metadata.docs.rs]
|
|
|
|
all-features = true
|
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
2022-08-01 06:56:12 +03:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
bench = false
|
|
|
|
|
|
|
|
[features]
|
|
|
|
default = ["serde"]
|
2022-08-11 12:52:44 +03:00
|
|
|
path = []
|
2022-08-01 06:56:12 +03:00
|
|
|
|
|
|
|
[dependencies]
|
2022-08-11 12:52:44 +03:00
|
|
|
serde = { version = "1", optional = true }
|
2022-09-16 09:46:25 +03:00
|
|
|
swc_atoms = { version = "0.4.15", path = "../swc_atoms" }
|
|
|
|
swc_common = { version = "0.28.8", path = "../swc_common" }
|
2022-08-12 02:58:00 +03:00
|
|
|
swc_visit = { version = "0.5.2", path = "../swc_visit" }
|
2022-09-16 09:46:25 +03:00
|
|
|
swc_xml_ast = { version = "0.3.8", path = "../swc_xml_ast" }
|