swc/crates/swc_xml_parser/Cargo.toml

35 lines
932 B
TOML
Raw Normal View History

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 = { workspace = true }
2022-08-01 06:56:12 +03:00
name = "swc_xml_parser"
repository = "https://github.com/swc-project/swc.git"
version = "3.0.0"
2022-08-01 06:56:12 +03:00
[lib]
bench = false
[features]
debug = []
[dependencies]
swc_atoms = { version = "2.0.0", path = "../swc_atoms" }
swc_common = { version = "3.0.0", path = "../swc_common" }
swc_xml_ast = { version = "3.0.0", path = "../swc_xml_ast" }
2022-08-01 06:56:12 +03:00
[dev-dependencies]
serde = { workspace = true }
serde_json = { workspace = true }
swc_xml_ast = { version = "3.0.0", path = "../swc_xml_ast", features = [
"serde-impl",
] }
swc_xml_visit = { version = "3.0.0", path = "../swc_xml_visit" }
testing = { version = "3.0.0", path = "../testing" }