swc/crates/ast_node/Cargo.toml

24 lines
555 B
TOML
Raw Normal View History

2017-12-22 15:51:36 +03:00
[package]
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
description = "Macros for ast nodes."
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"
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"
swc_macros_common = { version = "0.3.2", path = "../swc_macros_common" }
2017-12-22 15:51:36 +03:00
[dependencies.syn]
features = ["derive", "fold", "parsing", "printing", "visit-mut"]
version = "1"