mirror of
https://github.com/swc-project/swc.git
synced 2024-12-18 19:21:33 +03:00
27 lines
572 B
TOML
27 lines
572 B
TOML
[package]
|
|
name = "string_enum"
|
|
version = "0.3.0"
|
|
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
|
|
license = "Apache-2.0/MIT"
|
|
repository = "https://github.com/swc-project/swc.git"
|
|
documentation = "https://swc-project.github.io/rustdoc/string_enum/"
|
|
description = "String based enum."
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
swc_macros_common = { version = "0.3", path ="../common" }
|
|
pmutil = "0.5.1"
|
|
proc-macro2 = "1"
|
|
quote = "1"
|
|
|
|
[dependencies.syn]
|
|
version = "1"
|
|
features = ["full", "parsing", "printing", "extra-traits"]
|
|
|
|
[dev-dependencies]
|
|
serde = "1"
|
|
|