-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathCargo.toml
More file actions
76 lines (61 loc) · 1.25 KB
/
Cargo.toml
File metadata and controls
76 lines (61 loc) · 1.25 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[package]
name = "bitflags-test-suite"
version = "0.0.0"
publish = false
edition = "2018"
[dependencies.enumflags2]
path = "../"
features = ["serde", "zerocopy"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.zerocopy]
version = "0.8.9"
features = ["derive"]
[dev-dependencies]
trybuild = "1.0"
glob = "0.3"
[[test]]
name = "ui-tests"
path = "ui_tests.rs"
edition = "2018"
[[test]]
name = "bitflags-test"
path = "tests/bitflag_tests.rs"
edition = "2015"
[[test]]
name = "bitflags-test-no-std"
path = "tests/no_std.rs"
edition = "2015"
[[test]]
name = "bitflags-test-no-implicit-prelude"
path = "tests/no_implicit_prelude.rs"
edition = "2015"
[[test]]
name = "bitflags-test-2018"
path = "tests/bitflag_tests_2018.rs"
edition = "2018"
[[test]]
name = "bitflags-test-no-std-2018"
path = "tests/no_std_2018.rs"
edition = "2018"
[[test]]
name = "bitflags-test-no-implicit-prelude-2018"
path = "tests/no_implicit_prelude_2018.rs"
edition = "2018"
[[test]]
name = "bitflags-requires-std"
path = "tests/requires_std.rs"
edition = "2018"
[[test]]
name = "serde"
path = "tests/serde.rs"
edition = "2018"
[[test]]
name = "not_literal"
path = "tests/not_literal.rs"
edition = "2018"
[[test]]
name = "zerocopy"
path = "tests/zerocopy.rs"
edition = "2018"