swc/visit/macros/Cargo.toml

22 lines
580 B
TOML
Raw Normal View History

2020-04-02 12:38:13 +03:00
[package]
2020-07-23 20:18:22 +03:00
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
description = "Visitor generator for stable rustc"
2020-04-02 12:38:13 +03:00
edition = "2018"
license = "Apache-2.0/MIT"
name = "swc_visit_macros"
repository = "https://github.com/swc-project/swc.git"
2020-10-20 16:27:41 +03:00
version = "0.2.1"
2020-04-02 12:38:13 +03:00
2020-07-23 20:18:22 +03:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
2020-04-02 12:38:13 +03:00
[lib]
proc-macro = true
[dependencies]
Inflector = "0.11.4"
2020-04-02 12:38:13 +03:00
pmutil = "0.5.1"
proc-macro2 = "1"
2020-04-02 12:38:13 +03:00
quote = "1"
swc_macros_common = {version = "0.3", path = "../../macros/common"}
syn = {version = "1", features = ["parsing", "full"]}