2021-11-09 12:46:24 +03:00
|
|
|
[package]
|
|
|
|
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
|
|
|
|
description = "Macros for rpluign, rust plugin system for AST processing"
|
2021-12-30 12:59:18 +03:00
|
|
|
edition = "2021"
|
2021-11-09 12:46:24 +03:00
|
|
|
include = ["Cargo.toml", "src/**/*.rs"]
|
2021-12-01 08:20:52 +03:00
|
|
|
license = "Apache-2.0"
|
2021-11-09 12:46:24 +03:00
|
|
|
name = "rplugin_macros"
|
|
|
|
repository = "https://github.com/swc-project/swc.git"
|
2021-11-29 21:55:52 +03:00
|
|
|
version = "0.1.1"
|
2021-11-09 12:46:24 +03:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
proc-macro = true
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
pmutil = "0.5.3"
|
|
|
|
proc-macro2 = "1"
|
|
|
|
quote = "1"
|
2021-11-10 10:39:01 +03:00
|
|
|
swc_macros_common = {version = "0.3.2", path = "../swc_macros_common"}
|
2021-11-09 12:46:24 +03:00
|
|
|
syn = {version = "1", features = ["full"]}
|