forked from meithecatte/enumflags2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (32 loc) · 813 Bytes
/
Copy pathCargo.toml
File metadata and controls
37 lines (32 loc) · 813 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
32
33
34
35
36
37
[package]
name = "enumflags2"
version = "0.7.0-preview1"
authors = ["maik klein <maikklein@googlemail.com>", "Jakub \"NieDżejkob\" Kądziołka <kuba@kadziolka.net>"]
description = "Enum-based bit flags"
license = "MIT OR Apache-2.0"
repository = "https://github.com/NieDzejkob/enumflags2"
readme = "README.md"
keywords = ["enum", "bitflag", "flag", "bitflags"]
documentation = "https://docs.rs/enumflags2"
edition = "2018"
[dependencies.enumflags2_derive]
version = "=0.7.0-preview1"
path = "enumflags_derive"
[dependencies.serde]
version = "^1.0.0"
default-features = false
optional = true
[features]
std = []
#[dev-dependencies]
#criterion = "0.3"
#
#[[bench]]
#name = "from_iterator"
#harness = false
#path = "benches/from_iterator.rs"
[workspace]
members = [
"enumflags_derive",
"test_suite",
]