New Cargo.toml config & updated lock file

It's just the (Windows portion of the) recommendations the Bevy getting-
started guide contains.
This commit is contained in:
2024-07-08 16:46:37 -05:00
parent 8f52ad3954
commit ed33b8e615
2 changed files with 62 additions and 47 deletions

View File

@@ -5,3 +5,18 @@ edition = "2021"
[dependencies]
bevy = "0.14.0"
[profile.dev]
opt-level = 1
[profile.dev.package."*"]
opt-level = 3
[profile.release]
# codegen-units = 1
lto = "thin"
[profile.wasm-release]
inherits = "release"
opt-level = "z"
strip = "debuginfo"