2022-06-07 07:33:33 +03:00
|
|
|
[package]
|
|
|
|
authors = [
|
2022-09-29 05:58:09 +03:00
|
|
|
"강동윤 <kdy1997.dev@gmail.com>",
|
|
|
|
"Alexander Akait <sheo13666q@gmail.com>",
|
2022-06-07 07:33:33 +03:00
|
|
|
]
|
|
|
|
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"
|
2023-10-06 03:12:18 +03:00
|
|
|
version = "0.17.2"
|
2022-06-07 07:33:33 +03:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
bench = false
|
|
|
|
|
|
|
|
[dependencies]
|
2023-06-22 10:40:41 +03:00
|
|
|
once_cell = "1.18.0"
|
2022-09-30 10:57:15 +03:00
|
|
|
serde = { version = "1.0.118", features = ["derive"] }
|
2022-06-07 07:33:33 +03:00
|
|
|
serde_json = "1.0.61"
|
2023-03-24 07:46:42 +03:00
|
|
|
|
2023-08-24 11:20:56 +03:00
|
|
|
swc_atoms = { version = "0.5.9", path = "../swc_atoms" }
|
2023-10-06 03:12:18 +03:00
|
|
|
swc_common = { version = "0.32.2", path = "../swc_common" }
|