swc/crates/swc_visit_macros/Cargo.toml

23 lines
593 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"
2021-12-30 12:59:18 +03:00
edition = "2021"
2021-12-01 08:20:52 +03:00
license = "Apache-2.0"
name = "swc_visit_macros"
repository = "https://github.com/swc-project/swc.git"
2022-02-25 23:58:56 +03:00
version = "0.3.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]
bench = false
2020-04-02 12:38:13 +03:00
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.4", path = "../swc_macros_common"}
syn = {version = "1", features = ["parsing", "full"]}