swc/crates/ast_node/Cargo.toml

25 lines
652 B
TOML
Raw Normal View History

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."
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"
2022-09-14 10:56:20 +03:00
version = "0.8.5"
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]
2022-08-03 06:07:28 +03:00
darling = "0.13"
pmutil = "0.5.1"
proc-macro2 = "1"
quote = "1"
swc_macros_common = { version = "0.3.4", path = "../swc_macros_common" }
2017-12-22 15:51:36 +03:00
[dependencies.syn]
features = ["derive", "fold", "parsing", "printing", "visit-mut"]
2022-08-03 06:07:28 +03:00
version = "1"