2017-12-22 15:51:36 +03:00
|
|
|
[package]
|
|
|
|
name = "enum_kind"
|
2019-02-27 04:42:22 +03:00
|
|
|
version = "0.1.3"
|
2019-10-25 04:11:24 +03:00
|
|
|
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
|
2018-11-18 08:00:07 +03:00
|
|
|
license = "Apache-2.0/MIT"
|
|
|
|
repository = "https://github.com/swc-project/swc.git"
|
|
|
|
documentation = "https://swc-project.github.io/rustdoc/enum_kind/"
|
|
|
|
description = "Easily manage values related to enum."
|
2017-12-22 15:51:36 +03:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
proc-macro = true
|
|
|
|
|
|
|
|
[dependencies]
|
2019-02-27 04:42:22 +03:00
|
|
|
swc_macros_common = { version = "0.2", path ="../common" }
|
2019-02-06 18:05:25 +03:00
|
|
|
pmutil = "0.3"
|
|
|
|
proc-macro2 = "0.4.27"
|
2017-12-22 15:51:36 +03:00
|
|
|
|
|
|
|
[dependencies.syn]
|
2019-02-06 18:05:25 +03:00
|
|
|
version = "0.15.26"
|
2017-12-22 15:51:36 +03:00
|
|
|
features = ["full", "parsing", "printing", "extra-traits"]
|
|
|
|
|
|
|
|
|