mirror of
https://github.com/swc-project/swc.git
synced 2024-12-24 14:16:12 +03:00
11d056c777
Move FromVariant to a separate crate
30 lines
604 B
TOML
30 lines
604 B
TOML
[package]
|
|
name = "ast_node"
|
|
version = "0.6.0"
|
|
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
|
|
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."
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[features]
|
|
default = []
|
|
# Requires nightly.
|
|
fold = []
|
|
|
|
[dependencies]
|
|
swc_macros_common = { version = "0.3", path = "../common" }
|
|
pmutil = "0.5.1"
|
|
proc-macro2 = "1"
|
|
quote = "1"
|
|
darling = "0.10"
|
|
|
|
[dependencies.syn]
|
|
version = "1"
|
|
features = ["derive", "fold", "parsing", "printing"]
|
|
|