-
Notifications
You must be signed in to change notification settings - Fork 145
/
Cargo.toml
52 lines (47 loc) · 1.2 KB
/
Cargo.toml
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
[workspace]
members = [
# libcraft
"libcraft/core",
"libcraft/blocks",
"libcraft/generators",
"libcraft/items",
"libcraft/macros",
"libcraft/particles",
"libcraft/text",
"libcraft/inventory",
# Quill
"quill/sys-macros",
"quill/sys",
"quill/common",
"quill/api",
"quill/api/plugin-macro",
"quill/plugin-format",
"quill/cargo-quill",
# Quill example plugins
"quill/example-plugins/titles",
"quill/example-plugins/block-access",
"quill/example-plugins/block-place",
"quill/example-plugins/particle-example",
"quill/example-plugins/plugin-message",
"quill/example-plugins/query-entities",
"quill/example-plugins/simple",
"quill/example-plugins/observe-creativemode-flight-event",
# Feather (common and server)
"feather/utils",
"feather/blocks",
"feather/blocks/generator",
"feather/base",
"feather/ecs",
"feather/datapacks",
"feather/worldgen",
"feather/common",
"feather/protocol",
"feather/plugin-host/macros",
"feather/plugin-host",
"feather/server",
# Other
"proxy",
]
# No longer need to use release for "development":
[profile.dev.package."*"]
opt-level = 2