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"
|
2024-07-23 12:48:57 +03:00
|
|
|
version = "0.3.13"
|
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]
|
2024-04-29 03:54:45 +03:00
|
|
|
proc-macro2 = { workspace = true }
|
|
|
|
quote = { workspace = true }
|
2017-12-22 15:51:36 +03:00
|
|
|
|
2024-04-29 03:54:45 +03:00
|
|
|
[dependencies.syn]
|
|
|
|
features = ["derive", "visit", "parsing", "full", "printing", "extra-traits"]
|
|
|
|
workspace = true
|