-
-
Notifications
You must be signed in to change notification settings - Fork 438
Expand file tree
/
Copy pathCargo.toml
More file actions
48 lines (44 loc) · 814 Bytes
/
Cargo.toml
File metadata and controls
48 lines (44 loc) · 814 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
38
39
40
41
42
43
44
45
46
47
48
[workspace]
members = [
"fyrox-core-derive",
"fyrox-core",
"fyrox-sound",
"fyrox-ui",
"fyrox-resource",
"fyrox-scripts",
"fyrox-animation",
"editor",
"editor-standalone",
"template-core",
"template",
"fyrox-graph",
"fyrox-math",
"fyrox-dylib",
"fyrox",
"fyrox-impl",
"project-manager",
"fyrox-graphics",
"fyrox-build-tools",
"fyrox-texture",
"fyrox-autotile",
"fyrox-material",
"fyrox-graphics-gl"]
resolver = "2"
[profile.editor-standalone]
inherits = "dev"
opt-level = 1
[profile.release]
opt-level = 3
debug = true
[profile.project-manager]
inherits = "release"
opt-level = "z"
debug = false
strip = true
panic = "abort"
lto = true
[profile.github-ci]
inherits = "dev"
strip = "symbols"
debug = false
opt-level = 3