1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
[package]
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
description = "Automatically derive From impls for enums"
documentation = "https://rustdoc.swc.rs/from_variant/"
edition = { workspace = true }
license = { workspace = true }
name = "from_variant"
repository = { workspace = true }
version = "2.0.2"
[lib]
bench = false
proc-macro = true
[dependencies]
swc_macros_common = { version = "1.0.1", path = "../swc_macros_common" }
[dependencies.syn]
features = ["derive", "fold", "parsing", "printing"]
workspace = true
|