-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
25 lines (20 loc) · 872 Bytes
/
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
[package]
name = "ultra-game"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
# from https://bevyengine.org/learn/book/getting-started/setup/#compile-with-performance-optimizations
# Enable a small amount of optimization in debug mode
[profile.dev]
opt-level = 1
# compile build-scripts and proc-macros with optimizations (not sure if this helps)
[profile.dev.build-override]
opt-level = 3
# Enable high optimizations for dependencies (incl. Bevy), but not for our code:
[profile.dev.package."*"]
opt-level = 3
[dependencies]
bevy = { version = "0.14.0", features = ["wayland", "dynamic_linking"] }
bevy-inspector-egui = "0.26.0"
derive_more = { version = "1.0.0", features = ["full"] } # TODO: can probably slim down the feature set. but didn't bother for now.
itertools = "0.13.0"