-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (28 loc) · 805 Bytes
/
Cargo.toml
File metadata and controls
31 lines (28 loc) · 805 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
[workspace]
resolver = "2"
members = [
"nutype",
"nutype_macros",
"test_suite",
"dummy",
# All examples except "no_std_example" are tested in the test suite
"examples/any_arbitrary",
"examples/derive_unchecked_example",
"examples/float_arbitrary",
"examples/float_sortable",
"examples/integer_arbitrary",
"examples/integer_bounded",
"examples/new_unchecked_example",
# "examples/no_std_example",
"examples/serde_complex",
"examples/string_bounded_len",
"examples/string_regex_email",
"examples/string_arbitrary",
"examples/any_generics",
"examples/custom_error",
"examples/const_example",
"examples/cfg_attr_example",
"examples/valuable_example",
"examples/str_reference",
"examples/decimal_percentage",
]