2017-12-22 15:51:36 +03:00
|
|
|
[package]
|
2023-12-08 10:15:44 +03:00
|
|
|
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
|
|
|
|
description = "Common utilities for swc macros."
|
2021-03-31 07:09:10 +03:00
|
|
|
documentation = "https://rustdoc.swc.rs/swc_macros_common/"
|
2023-12-08 10:15:44 +03:00
|
|
|
edition = "2021"
|
|
|
|
license = "Apache-2.0"
|
|
|
|
name = "swc_macros_common"
|
|
|
|
repository = "https://github.com/swc-project/swc.git"
|
|
|
|
version = "0.3.8"
|
2017-12-22 15:51:36 +03:00
|
|
|
|
2022-04-04 14:12:03 +03:00
|
|
|
[lib]
|
|
|
|
bench = false
|
|
|
|
|
2017-12-22 15:51:36 +03:00
|
|
|
[dependencies]
|
2019-11-24 08:17:27 +03:00
|
|
|
proc-macro2 = "1"
|
2023-12-08 10:15:44 +03:00
|
|
|
quote = "1"
|
2017-12-22 15:51:36 +03:00
|
|
|
|
2023-12-08 10:15:44 +03:00
|
|
|
[dependencies.syn]
|
|
|
|
features = [
|
|
|
|
"derive",
|
|
|
|
"visit",
|
|
|
|
"parsing",
|
|
|
|
"full",
|
|
|
|
"printing",
|
|
|
|
"extra-traits",
|
|
|
|
]
|
|
|
|
version = "2"
|