swc/crates/swc_xml_visit/Cargo.toml

32 lines
787 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-10-08 03:41:50 +03:00
version = "0.12.0"
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-10-08 03:41:50 +03:00
swc_atoms = { version = "0.6.0", path = "../swc_atoms" }
swc_common = { version = "0.33.0", path = "../swc_common" }
2023-06-21 18:44:11 +03:00
swc_visit = { version = "0.5.7", path = "../swc_visit" }
2023-10-08 03:41:50 +03:00
swc_xml_ast = { version = "0.12.0", path = "../swc_xml_ast" }