2020-01-15 12:00:08 +03:00
|
|
|
[package]
|
|
|
|
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
|
2020-09-21 16:53:48 +03:00
|
|
|
description = "Automatically derive From impls for enums"
|
|
|
|
documentation = "https://swc.rs/rustdoc/from_variant/"
|
2020-01-15 12:00:08 +03:00
|
|
|
edition = "2018"
|
|
|
|
license = "Apache-2.0/MIT"
|
2020-09-21 16:53:48 +03:00
|
|
|
name = "from_variant"
|
2020-01-15 12:00:08 +03:00
|
|
|
repository = "https://github.com/swc-project/swc.git"
|
2020-09-21 16:53:48 +03:00
|
|
|
version = "0.1.2"
|
2020-01-15 12:00:08 +03:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
proc-macro = true
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
pmutil = "0.5.3"
|
|
|
|
proc-macro2 = "1"
|
2020-09-21 16:53:48 +03:00
|
|
|
swc_macros_common = {version = "0.3", path = "../common"}
|
2020-01-15 12:00:08 +03:00
|
|
|
|
|
|
|
[dependencies.syn]
|
|
|
|
features = ["derive", "fold", "parsing", "printing"]
|
2020-09-21 16:53:48 +03:00
|
|
|
version = "1"
|