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