1 | [package] |
2 | name = "enumflags2_derive" |
3 | version = "0.7.9" |
4 | authors = ["maik klein <maikklein@googlemail.com>" , "Maja Kądziołka <maya@compilercrim.es>" ] |
5 | description = "Do not use directly, use the reexport in the `enumflags2` crate. This allows for better compatibility across versions." |
6 | license = "MIT OR Apache-2.0" |
7 | repository = "https://github.com/meithecatte/enumflags2" |
8 | keywords = ["enum" , "bitflag" , "flag" , "bitflags" ] |
9 | edition = "2018" |
10 | rust-version = "1.56" |
11 | |
12 | [lib] |
13 | proc-macro = true |
14 | |
15 | [dependencies] |
16 | syn = { version = "^2.0" , features = ["full" ] } |
17 | quote = "^1.0" |
18 | proc-macro2 = "^1.0" |
19 | |