-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (27 loc) · 694 Bytes
/
Cargo.toml
File metadata and controls
31 lines (27 loc) · 694 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[package]
name = "enumflags2"
version = "0.7.12"
authors = ["maik klein <maikklein@googlemail.com>", "Maja Kądziołka <maya@compilercrim.es>"]
description = "Enum-based bit flags"
license = "MIT OR Apache-2.0"
repository = "https://github.com/meithecatte/enumflags2"
readme = "README.md"
keywords = ["enum", "bitflag", "flag", "bitflags"]
documentation = "https://docs.rs/enumflags2"
edition = "2018"
rust-version = "1.56"
[dependencies.enumflags2_derive]
version = "=0.7.12"
path = "enumflags_derive"
[dependencies.serde]
version = "^1.0.0"
default-features = false
optional = true
[features]
std = []
[workspace]
members = [
"enumflags_derive",
"test_suite",
"benchmarks",
]