mirror of
https://github.com/swc-project/swc.git
synced 2024-12-30 00:52:29 +03:00
10cb9a4b21
- swc_macros_common@0.2.0 - ast_node@0.4.1 - string_enum @0.2.0 - swc_ecma_ast@0.8.0 - swc_ecma_parser_macros@0.3.0 - swc_ecma_codegen_macros@0.3.0 - swc_ecma_parser@0.9.1 - swc_ecma_parser@0.6.1
26 lines
563 B
TOML
26 lines
563 B
TOML
[package]
|
|
name = "string_enum"
|
|
version = "0.2.0"
|
|
authors = ["강동윤 <kdy1@outlook.kr>"]
|
|
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."
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
swc_macros_common = { version = "0.2", path ="../common" }
|
|
pmutil = "0.3"
|
|
proc-macro2 = "0.4.27"
|
|
quote = "0.6.11"
|
|
|
|
[dependencies.syn]
|
|
version = "0.15.26"
|
|
features = ["full", "parsing", "printing", "extra-traits"]
|
|
|
|
[dev-dependencies]
|
|
serde = "1"
|
|
|