2017-12-22 15:51:36 +03:00
|
|
|
[package]
|
2019-10-25 04:11:24 +03:00
|
|
|
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
|
2018-11-18 08:00:07 +03:00
|
|
|
description = "Macros for ast nodes."
|
2021-03-31 07:09:10 +03:00
|
|
|
documentation = "https://rustdoc.swc.rs/ast_node/"
|
2021-12-30 12:59:18 +03:00
|
|
|
edition = "2021"
|
2021-12-01 08:20:52 +03:00
|
|
|
license = "Apache-2.0"
|
2020-09-21 16:53:48 +03:00
|
|
|
name = "ast_node"
|
|
|
|
repository = "https://github.com/swc-project/swc.git"
|
2022-03-06 12:22:43 +03:00
|
|
|
version = "0.7.7"
|
2017-12-22 15:51:36 +03:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
proc-macro = true
|
|
|
|
|
|
|
|
[dependencies]
|
2022-03-11 17:00:55 +03:00
|
|
|
darling = "0.13"
|
2019-11-24 08:17:27 +03:00
|
|
|
pmutil = "0.5.1"
|
|
|
|
proc-macro2 = "1"
|
|
|
|
quote = "1"
|
2022-03-16 12:58:24 +03:00
|
|
|
swc_macros_common = { version = "0.3.2", path = "../swc_macros_common" }
|
2017-12-22 15:51:36 +03:00
|
|
|
|
|
|
|
[dependencies.syn]
|
2022-01-02 10:23:37 +03:00
|
|
|
features = ["derive", "fold", "parsing", "printing", "visit-mut"]
|
2020-09-21 16:53:48 +03:00
|
|
|
version = "1"
|