2018-03-02 08:50:50 +03:00
|
|
|
[package]
|
2023-12-08 10:15:44 +03:00
|
|
|
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
|
|
|
|
description = "String based enum."
|
2021-03-31 07:09:10 +03:00
|
|
|
documentation = "https://rustdoc.swc.rs/string_enum/"
|
2023-12-08 10:15:44 +03:00
|
|
|
edition = "2021"
|
|
|
|
license = "Apache-2.0"
|
|
|
|
name = "string_enum"
|
|
|
|
repository = "https://github.com/swc-project/swc.git"
|
2024-10-12 10:20:07 +03:00
|
|
|
version = "1.0.0"
|
2018-03-02 08:50:50 +03:00
|
|
|
|
|
|
|
[lib]
|
2023-12-08 10:15:44 +03:00
|
|
|
bench = false
|
2018-03-02 08:50:50 +03:00
|
|
|
proc-macro = true
|
|
|
|
|
|
|
|
[dependencies]
|
2024-04-29 03:54:45 +03:00
|
|
|
proc-macro2 = { workspace = true }
|
|
|
|
quote = { workspace = true }
|
2024-10-12 10:20:07 +03:00
|
|
|
swc_macros_common = { version = "1.0.0", path = "../swc_macros_common" }
|
2024-04-29 03:54:45 +03:00
|
|
|
[dependencies.syn]
|
|
|
|
features = ["full", "parsing", "printing", "extra-traits"]
|
|
|
|
workspace = true
|
2018-03-02 08:50:50 +03:00
|
|
|
|
2019-02-20 05:35:41 +03:00
|
|
|
[dev-dependencies]
|
2024-04-29 03:54:45 +03:00
|
|
|
serde = { workspace = true }
|