2018-03-02 08:50:50 +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 = "String based enum."
|
2021-03-31 07:09:10 +03:00
|
|
|
documentation = "https://rustdoc.swc.rs/string_enum/"
|
2019-11-17 07:21:53 +03:00
|
|
|
edition = "2018"
|
2021-12-01 08:20:52 +03:00
|
|
|
license = "Apache-2.0"
|
2020-09-21 16:53:48 +03:00
|
|
|
name = "string_enum"
|
|
|
|
repository = "https://github.com/swc-project/swc.git"
|
2021-02-20 09:18:09 +03:00
|
|
|
version = "0.3.1"
|
2018-03-02 08:50:50 +03:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
proc-macro = true
|
|
|
|
|
|
|
|
[dependencies]
|
2019-11-24 08:17:27 +03:00
|
|
|
pmutil = "0.5.1"
|
|
|
|
proc-macro2 = "1"
|
|
|
|
quote = "1"
|
2021-11-10 10:39:01 +03:00
|
|
|
swc_macros_common = {version = "0.3.2", path = "../swc_macros_common"}
|
2018-03-02 08:50:50 +03:00
|
|
|
|
|
|
|
[dependencies.syn]
|
|
|
|
features = ["full", "parsing", "printing", "extra-traits"]
|
2020-09-21 16:53:48 +03:00
|
|
|
version = "1"
|
2018-03-02 08:50:50 +03:00
|
|
|
|
2019-02-20 05:35:41 +03:00
|
|
|
[dev-dependencies]
|
|
|
|
serde = "1"
|