1 | [package] |
2 | name = "enumflags2_derive" |
3 | version = "0.7.11" |
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.syn] |
16 | version = "^2.0" |
17 | features = ["parsing" , "printing" , "derive" , "proc-macro" ] |
18 | default-features = false |
19 | |
20 | [dependencies] |
21 | quote = "^1.0" |
22 | proc-macro2 = "^1.0" |
23 | |