2022-01-12 12:32:52 +03:00
|
|
|
[package]
|
|
|
|
authors = ["강동윤 <kdy1997.dev@gmail.com>", "OJ Kwon <kwon.ohjoong@gmail.com>"]
|
|
|
|
description = "Macro support for authoring plugin's transform fn"
|
|
|
|
documentation = "https://rustdoc.swc.rs/swc_plugin_macro/"
|
|
|
|
edition = "2018"
|
|
|
|
license = "Apache-2.0"
|
|
|
|
name = "swc_plugin_macro"
|
|
|
|
repository = "https://github.com/swc-project/swc.git"
|
2022-02-25 05:33:30 +03:00
|
|
|
version = "0.3.1"
|
2022-01-12 12:32:52 +03:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
proc-macro = true
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
proc-macro2 = "1"
|
|
|
|
quote = "1"
|
2022-03-16 12:58:24 +03:00
|
|
|
syn = { version = "1", features = ["full"] }
|