mirror of
https://github.com/swc-project/swc.git
synced 2024-12-23 05:32:09 +03:00
22 lines
469 B
TOML
22 lines
469 B
TOML
[package]
|
|
name = "ast_node"
|
|
version = "0.1.0"
|
|
authors = ["강동윤 <kdy1@outlook.kr>"]
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
swc_macros_common = { path = "../common" }
|
|
pmutil = { git = "https://github.com/kdy1/rust-pmutil" }
|
|
proc-macro2 = { version = "0.1", features = ["unstable"] }
|
|
|
|
[dependencies.syn]
|
|
git = "https://github.com/dtolnay/syn"
|
|
features = ["full", "parsing", "printing", "extra-traits"]
|
|
|
|
|
|
[dependencies.synom]
|
|
git = "https://github.com/dtolnay/syn"
|
|
|