swc/crates/swc_css/Cargo.toml

34 lines
1.3 KiB
TOML
Raw Normal View History

2021-11-12 13:37:05 +03:00
[package]
2023-02-10 05:27:20 +03:00
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
description = "CSS apis for rust"
2021-11-12 13:37:05 +03:00
documentation = "https://rustdoc.swc.rs/swc_css/"
2023-02-10 05:27:20 +03:00
edition = "2021"
license = "Apache-2.0"
name = "swc_css"
repository = "https://github.com/swc-project/swc.git"
2024-07-18 02:31:54 +03:00
version = "0.161.0"
2023-02-10 05:27:20 +03:00
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[lib]
bench = false
2021-11-27 20:04:19 +03:00
[features]
2023-02-10 05:27:20 +03:00
compat = ["swc_css_compat"]
2021-11-27 20:04:19 +03:00
minifier = ["swc_css_minifier"]
2023-02-10 05:27:20 +03:00
modules = ["swc_css_modules"]
prefixer = ["swc_css_prefixer"]
2021-11-27 20:04:19 +03:00
2021-11-12 13:37:05 +03:00
[dependencies]
2024-07-18 02:31:54 +03:00
swc_css_ast = { version = "0.143.0", path = "../swc_css_ast" }
swc_css_codegen = { version = "0.154.0", path = "../swc_css_codegen" }
swc_css_compat = { version = "0.30.0", path = "../swc_css_compat", optional = true }
swc_css_minifier = { version = "0.119.0", path = "../swc_css_minifier", optional = true }
swc_css_modules = { version = "0.32.0", path = "../swc_css_modules", optional = true }
swc_css_parser = { version = "0.153.0", path = "../swc_css_parser" }
swc_css_prefixer = { version = "0.157.0", path = "../swc_css_prefixer", optional = true }
swc_css_utils = { version = "0.140.0", path = "../swc_css_utils/" }
swc_css_visit = { version = "0.142.0", path = "../swc_css_visit" }