2021-11-12 13:37:05 +03:00
|
|
|
[package]
|
|
|
|
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
|
|
|
|
description = "CSS apis for rust"
|
|
|
|
documentation = "https://rustdoc.swc.rs/swc_css/"
|
2021-12-30 12:59:18 +03:00
|
|
|
edition = "2021"
|
2021-12-01 08:20:52 +03:00
|
|
|
license = "Apache-2.0"
|
2021-11-12 13:37:05 +03:00
|
|
|
name = "swc_css"
|
|
|
|
repository = "https://github.com/swc-project/swc.git"
|
2022-04-02 08:37:49 +03:00
|
|
|
version = "0.104.1"
|
2021-11-27 08:33:33 +03:00
|
|
|
|
2021-11-25 08:16:18 +03:00
|
|
|
[package.metadata.docs.rs]
|
|
|
|
all-features = true
|
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
|
2022-04-04 14:12:03 +03:00
|
|
|
[lib]
|
|
|
|
bench = false
|
|
|
|
|
2021-11-27 20:04:19 +03:00
|
|
|
[features]
|
|
|
|
minifier = ["swc_css_minifier"]
|
|
|
|
|
2021-11-12 13:37:05 +03:00
|
|
|
[dependencies]
|
2022-04-04 14:12:03 +03:00
|
|
|
swc_css_ast = {version = "0.92.0", path = "../swc_css_ast"}
|
|
|
|
swc_css_codegen = {version = "0.101.0", path = "../swc_css_codegen"}
|
|
|
|
swc_css_minifier = {version = "0.66.0", path = "../swc_css_minifier", optional = true}
|
|
|
|
swc_css_parser = {version = "0.100.0", path = "../swc_css_parser"}
|
|
|
|
swc_css_utils = {version = "0.89.0", path = "../swc_css_utils/"}
|
|
|
|
swc_css_visit = {version = "0.91.0", path = "../swc_css_visit"}
|