2017-12-22 15:51:36 +03:00
|
|
|
[package]
|
2019-10-25 04:11:24 +03:00
|
|
|
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
|
2018-11-18 08:00:07 +03:00
|
|
|
description = "Easily manage values related to enum."
|
2020-09-21 16:53:48 +03:00
|
|
|
documentation = "https://swc.rs/rustdoc/enum_kind/"
|
2019-11-17 07:21:53 +03:00
|
|
|
edition = "2018"
|
2020-09-21 16:53:48 +03:00
|
|
|
license = "Apache-2.0/MIT"
|
|
|
|
name = "enum_kind"
|
|
|
|
repository = "https://github.com/swc-project/swc.git"
|
2021-02-20 09:18:09 +03:00
|
|
|
version = "0.2.1"
|
2017-12-22 15:51:36 +03:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
proc-macro = true
|
|
|
|
|
|
|
|
[dependencies]
|
2019-11-24 08:17:27 +03:00
|
|
|
pmutil = "0.5.1"
|
|
|
|
proc-macro2 = "1"
|
2021-02-20 09:18:09 +03:00
|
|
|
swc_macros_common = {version = "0.3.2", path = "../common"}
|
2017-12-22 15:51:36 +03:00
|
|
|
|
|
|
|
[dependencies.syn]
|
|
|
|
features = ["full", "parsing", "printing", "extra-traits"]
|
2020-09-21 16:53:48 +03:00
|
|
|
version = "1"
|