2022-06-07 07:33:33 +03:00
|
|
|
[package]
|
|
|
|
authors = [
|
|
|
|
"강동윤 <kdy1997.dev@gmail.com>",
|
|
|
|
"Alexander Akait <sheo13666q@gmail.com>",
|
|
|
|
]
|
|
|
|
description = "Utils for HTML"
|
|
|
|
documentation = "https://rustdoc.swc.rs/swc_html_utils/"
|
|
|
|
edition = "2021"
|
2022-08-11 05:32:00 +03:00
|
|
|
include = ["Cargo.toml", "src/**/*.rs", "data/**/*.json"]
|
2022-06-07 07:33:33 +03:00
|
|
|
license = "Apache-2.0"
|
|
|
|
name = "swc_html_utils"
|
|
|
|
repository = "https://github.com/swc-project/swc.git"
|
2022-08-13 13:11:26 +03:00
|
|
|
version = "0.12.5"
|
2022-06-07 07:33:33 +03:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
bench = false
|
|
|
|
|
|
|
|
[dependencies]
|
2022-08-14 10:48:15 +03:00
|
|
|
once_cell = "1.10.0"
|
|
|
|
serde = { version = "1.0.118", features = ["derive"] }
|
2022-06-07 07:33:33 +03:00
|
|
|
serde_json = "1.0.61"
|
2022-08-23 04:10:30 +03:00
|
|
|
swc_common = { version = "0.27.13", path = "../swc_common" }
|