-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
48 lines (35 loc) · 1.07 KB
/
Cargo.toml
File metadata and controls
48 lines (35 loc) · 1.07 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
[workspace]
resolver = "2"
members = ["selo", "testapp"]
[workspace.dependencies]
geo = { version = "0.29", default-features = false, features = ["multithreading", "spade"] }
bevy_math = "0.16"
# TODO: update RobWalt's repo to point to patched geo in geo-buffer
geo-buffer = { git = "https://github.com/no-materials/geo-buffer.git" }
bevy_reflect = "0.16"
strum = "0.26"
itertools = "0.13"
bevy = "0.16"
bevy-inspector-egui = "0.31"
bevy_egui = "0.34"
serde = "1.0"
selo = { path = "selo" }
# ===========
# dev profile
# ===========
[profile.dev.package."*"]
opt-level = 3
[profile.dev]
opt-level = 1
lto = false
# ===============
# release profile
# ===============
# https://nnethercote.github.io/perf-book/build-configuration.html#maximizing-runtime-speed
[profile.release]
# https://nnethercote.github.io/perf-book/build-configuration.html#optimization-level
opt-level = "s"
# https://nnethercote.github.io/perf-book/build-configuration.html#codegen-units
codegen-units = 1
# https://nnethercote.github.io/perf-book/build-configuration.html#link-time-optimization
lto = "fat"