swc/crates/swc_css/Cargo.toml
2024-01-21 02:34:11 +00:00

34 lines
1.3 KiB
TOML

[package]
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
description = "CSS apis for rust"
documentation = "https://rustdoc.swc.rs/swc_css/"
edition = "2021"
license = "Apache-2.0"
name = "swc_css"
repository = "https://github.com/swc-project/swc.git"
version = "0.157.31"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[lib]
bench = false
[features]
compat = ["swc_css_compat"]
minifier = ["swc_css_minifier"]
modules = ["swc_css_modules"]
prefixer = ["swc_css_prefixer"]
[dependencies]
swc_css_ast = { version = "0.140.15", path = "../swc_css_ast" }
swc_css_codegen = { version = "0.151.24", path = "../swc_css_codegen" }
swc_css_compat = { version = "0.27.25", path = "../swc_css_compat", optional = true }
swc_css_minifier = { version = "0.116.25", path = "../swc_css_minifier", optional = true }
swc_css_modules = { version = "0.29.27", path = "../swc_css_modules", optional = true }
swc_css_parser = { version = "0.150.23", path = "../swc_css_parser" }
swc_css_prefixer = { version = "0.153.27", path = "../swc_css_prefixer", optional = true }
swc_css_utils = { version = "0.137.15", path = "../swc_css_utils/" }
swc_css_visit = { version = "0.139.15", path = "../swc_css_visit" }