2017-12-22 15:51:36 +03:00
|
|
|
[package]
|
2022-08-03 06:07:28 +03:00
|
|
|
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
|
|
|
|
description = "Macros for ast nodes."
|
2021-03-31 07:09:10 +03:00
|
|
|
documentation = "https://rustdoc.swc.rs/ast_node/"
|
2022-08-03 06:07:28 +03:00
|
|
|
edition = "2021"
|
|
|
|
license = "Apache-2.0"
|
|
|
|
name = "ast_node"
|
|
|
|
repository = "https://github.com/swc-project/swc.git"
|
2024-10-12 10:20:07 +03:00
|
|
|
version = "2.0.0"
|
2017-12-22 15:51:36 +03:00
|
|
|
|
|
|
|
[lib]
|
2022-08-03 06:07:28 +03:00
|
|
|
bench = false
|
2017-12-22 15:51:36 +03:00
|
|
|
proc-macro = true
|
|
|
|
|
|
|
|
[dependencies]
|
2024-04-29 03:54:45 +03:00
|
|
|
proc-macro2 = { workspace = true }
|
|
|
|
quote = { workspace = true }
|
2023-03-24 07:46:42 +03:00
|
|
|
|
2024-10-12 10:20:07 +03:00
|
|
|
swc_macros_common = { version = "1.0.0", path = "../swc_macros_common" }
|
2023-04-05 08:15:50 +03:00
|
|
|
[dependencies.syn]
|
2024-04-29 03:54:45 +03:00
|
|
|
features = ["derive", "fold", "parsing", "printing", "visit-mut"]
|
|
|
|
workspace = true
|