2021-08-20 15:38:15 +03:00
|
|
|
[package]
|
|
|
|
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
|
|
|
|
description = "Internal macro for the css code generator"
|
|
|
|
documentation = "https://rustdoc.swc.rs/swc_css_codegen_macros/"
|
2021-12-30 12:59:18 +03:00
|
|
|
edition = "2021"
|
2021-12-01 08:20:52 +03:00
|
|
|
license = "Apache-2.0"
|
2021-08-20 15:38:15 +03:00
|
|
|
name = "swc_css_codegen_macros"
|
|
|
|
repository = "https://github.com/swc-project/swc.git"
|
2021-08-23 17:03:08 +03:00
|
|
|
version = "0.2.0"
|
2021-08-20 15:38:15 +03:00
|
|
|
|
|
|
|
[lib]
|
2022-04-04 14:12:03 +03:00
|
|
|
bench = false
|
2021-08-20 15:38:15 +03:00
|
|
|
proc-macro = true
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
pmutil = "0.5.1"
|
|
|
|
proc-macro2 = "1"
|
|
|
|
quote = "1"
|
2022-04-07 07:07:10 +03:00
|
|
|
swc_macros_common = {version = "0.3.4", path = "../swc_macros_common"}
|
2022-04-04 14:12:03 +03:00
|
|
|
syn = {version = "1", features = ["fold"]}
|