Skip to content

Commit c462dbf

Browse files
committed
Move the main crate to the top of the repo
1 parent e8d0b78 commit c462dbf

File tree

8 files changed

+34
-34
lines changed

8 files changed

+34
-34
lines changed

Cargo.toml

Lines changed: 33 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,38 @@
1+
[package]
2+
name = "enumflags2"
3+
version = "0.6.4"
4+
authors = ["maik klein <[email protected]>", "Jakub \"NieDżejkob\" Kądziołka <[email protected]>"]
5+
description = "Enum-based bit flags"
6+
license = "MIT OR Apache-2.0"
7+
repository = "https://github.com/NieDzejkob/enumflags2"
8+
readme = "README.md"
9+
keywords = ["enum", "bitflag", "flag", "bitflags"]
10+
documentation = "https://docs.rs/enumflags2"
11+
edition = "2018"
12+
13+
[dependencies.enumflags2_derive]
14+
version = "=0.6.4"
15+
path = "enumflags_derive"
16+
17+
[dependencies.serde]
18+
version = "^1.0.0"
19+
default-features = false
20+
optional = true
21+
22+
[features]
23+
std = []
24+
not_literal = ["enumflags2_derive/not_literal"]
25+
26+
[dev-dependencies]
27+
criterion = "0.3"
28+
29+
[[bench]]
30+
name = "from_iterator"
31+
harness = false
32+
path = "../benches/from_iterator.rs"
33+
134
[workspace]
235
members = [
3-
"enumflags",
436
"enumflags_derive",
537
"test_suite",
638
]
File renamed without changes.
File renamed without changes.

enumflags/Cargo.toml

Lines changed: 0 additions & 32 deletions
This file was deleted.
File renamed without changes.

test_suite/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.0.0"
44
publish = false
55

66
[dependencies.enumflags2]
7-
path = "../enumflags"
7+
path = "../"
88
features = ["serde", "not_literal"]
99

1010
[dependencies.serde]

0 commit comments

Comments
 (0)