swc/crates/swc_visit_macros/Cargo.toml

24 lines
648 B
TOML
Raw Normal View History

2020-04-02 12:38:13 +03:00
[package]
2022-08-12 02:58:00 +03:00
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
2020-07-23 20:18:22 +03:00
description = "Visitor generator for stable rustc"
2022-08-12 02:58:00 +03:00
edition = "2021"
license = "Apache-2.0"
name = "swc_visit_macros"
repository = "https://github.com/swc-project/swc.git"
2023-03-23 12:19:33 +03:00
version = "0.5.6"
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]
2022-08-12 02:58:00 +03:00
bench = false
2020-04-02 12:38:13 +03:00
proc-macro = true
[dependencies]
Inflector = "0.11.4"
pmutil = "0.5.1"
proc-macro2 = "1"
quote = "1"
syn = { version = "1", features = ["parsing", "full"] }
2023-03-23 12:19:33 +03:00
swc_macros_common = { version = "0.3.7", path = "../swc_macros_common" }