swc/crates/swc_css/Cargo.toml

30 lines
1.0 KiB
TOML
Raw Normal View History

2021-11-12 13:37:05 +03:00
[package]
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/"
edition = "2021"
license = "Apache-2.0"
name = "swc_css"
repository = "https://github.com/swc-project/swc.git"
2022-10-05 12:01:11 +03:00
version = "0.127.9"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[lib]
bench = false
2021-11-27 20:04:19 +03:00
[features]
minifier = ["swc_css_minifier"]
modules = ["swc_css_modules"]
2021-11-27 20:04:19 +03:00
2021-11-12 13:37:05 +03:00
[dependencies]
2022-10-05 08:51:59 +03:00
swc_css_ast = { version = "0.114.6", path = "../swc_css_ast" }
swc_css_codegen = { version = "0.124.6", path = "../swc_css_codegen" }
swc_css_minifier = { version = "0.89.7", path = "../swc_css_minifier", optional = true }
2022-10-05 12:01:11 +03:00
swc_css_modules = { version = "0.0.3", path = "../swc_css_modules", optional = true }
2022-10-05 08:51:59 +03:00
swc_css_parser = { version = "0.123.6", path = "../swc_css_parser" }
swc_css_utils = { version = "0.111.6", path = "../swc_css_utils/" }
swc_css_visit = { version = "0.113.6", path = "../swc_css_visit" }