2024-03-16 13:27:22 +00:00
|
|
|
[package]
|
2024-03-16 19:21:51 +00:00
|
|
|
name = "outfly"
|
2024-03-21 18:03:26 +00:00
|
|
|
version = "0.2.0"
|
2024-03-16 13:27:22 +00:00
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
2024-03-20 03:34:09 +00:00
|
|
|
regex = "1"
|
2024-03-22 10:49:34 +00:00
|
|
|
bevy_embedded_assets = "0.10.2"
|
2024-03-16 13:27:22 +00:00
|
|
|
|
2024-03-22 11:29:43 +00:00
|
|
|
[dependencies."bevy"]
|
|
|
|
version = "0.13.0"
|
|
|
|
features = ["jpeg", "minimp3", "dynamic_linking"] # For debug builds
|
|
|
|
#features = ["jpeg", "minimp3"] # For release builds
|
|
|
|
|
2024-03-16 13:27:22 +00:00
|
|
|
# Enable a small amount of optimization in debug mode
|
|
|
|
[profile.dev]
|
|
|
|
opt-level = 1
|
|
|
|
|
|
|
|
# Enable high optimizations for dependencies (incl. Bevy), but not for our code:
|
|
|
|
[profile.dev.package."*"]
|
|
|
|
opt-level = 3
|
2024-03-17 13:55:16 +00:00
|
|
|
|
|
|
|
[profile.release]
|
2024-03-17 14:34:57 +00:00
|
|
|
lto = true
|
2024-03-19 17:29:28 +00:00
|
|
|
opt-level = 'z'
|
|
|
|
#opt-level = 3
|
2024-03-17 14:34:57 +00:00
|
|
|
codegen-units = 1
|
|
|
|
incremental = false
|
|
|
|
debug = false
|