mirror of
https://github.com/swc-project/swc.git
synced 2024-11-25 22:34:04 +03:00
26 lines
723 B
TOML
26 lines
723 B
TOML
[package]
|
|
authors = [
|
|
"강동윤 <kdy1997.dev@gmail.com>",
|
|
"Alexander Akait <sheo13666q@gmail.com>",
|
|
]
|
|
description = "XML apis for rust"
|
|
documentation = "https://rustdoc.swc.rs/swc_xml/"
|
|
edition = "2021"
|
|
license = { workspace = true }
|
|
name = "swc_xml"
|
|
repository = "https://github.com/swc-project/swc.git"
|
|
version = "2.0.0"
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
[lib]
|
|
bench = false
|
|
|
|
[dependencies]
|
|
swc_xml_ast = { version = "2.0.0", path = "../swc_xml_ast" }
|
|
swc_xml_codegen = { version = "2.0.0", path = "../swc_xml_codegen" }
|
|
swc_xml_parser = { version = "2.0.0", path = "../swc_xml_parser" }
|
|
swc_xml_visit = { version = "2.0.0", path = "../swc_xml_visit" }
|