swc/crates/swc_xml_visit/Cargo.toml

31 lines
794 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 = "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"
2023-02-22 09:52:59 +03:00
version = "0.7.14"
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]
serde = { version = "1", optional = true }
2023-02-22 09:52:59 +03:00
swc_atoms = { version = "0.4.37", path = "../swc_atoms" }
swc_common = { version = "0.29.32", path = "../swc_common" }
2023-01-29 17:56:26 +03:00
swc_visit = { version = "0.5.4", path = "../swc_visit" }
2023-02-22 09:52:59 +03:00
swc_xml_ast = { version = "0.7.14", path = "../swc_xml_ast" }