mirror of
https://github.com/swc-project/swc.git
synced 2024-12-23 05:32:09 +03:00
84675d32df
* Add Visit<T> and VisitWith<F> * implement derive(VisitWith<T>) * Bump versions
26 lines
647 B
TOML
26 lines
647 B
TOML
[package]
|
|
name = "ast_node"
|
|
version = "0.2.0"
|
|
authors = ["강동윤 <kdy1@outlook.kr>"]
|
|
license = "Apache-2.0/MIT"
|
|
repository = "https://github.com/swc-project/swc.git"
|
|
documentation = "https://swc-project.github.io/rustdoc/ast_node/"
|
|
description = "Macros for ast nodes."
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
swc_macros_common = { version = "0.1", path = "../common" }
|
|
pmutil = "0.2"
|
|
proc-macro2 = { version = "0.4.4", features = ["nightly"] }
|
|
quote = "0.6"
|
|
darling = "0.7"
|
|
|
|
[dependencies.syn]
|
|
version = "0.14.1"
|
|
features = ["derive", "fold", "parsing", "printing"]
|
|
|
|
|
|
[dev-dependencies]
|
|
swc_common = { version = "0.1", path = "../../common" } |