1 | [package] |
2 | name = "enumflags2" |
3 | version = "0.7.9" |
4 | authors = ["maik klein <maikklein@googlemail.com>" , "Maja Kądziołka <maya@compilercrim.es>" ] |
5 | description = "Enum-based bit flags" |
6 | license = "MIT OR Apache-2.0" |
7 | repository = "https://github.com/meithecatte/enumflags2" |
8 | readme = "README.md" |
9 | keywords = ["enum" , "bitflag" , "flag" , "bitflags" ] |
10 | documentation = "https://docs.rs/enumflags2" |
11 | edition = "2018" |
12 | rust-version = "1.56" |
13 | |
14 | [dependencies.enumflags2_derive] |
15 | version = "=0.7.9" |
16 | path = "enumflags_derive" |
17 | |
18 | [dependencies.serde] |
19 | version = "^1.0.0" |
20 | default-features = false |
21 | optional = true |
22 | |
23 | [features] |
24 | std = [] |
25 | |
26 | [workspace] |
27 | members = [ |
28 | "enumflags_derive" , |
29 | "test_suite" , |
30 | "benchmarks" , |
31 | ] |
32 | |