Files
space-game/Cargo.toml
Amatsugu cb70c85bea prep
pending rapier update to bevy 0.16
2025-05-04 19:28:04 -04:00

21 lines
494 B
TOML

[package]
name = "space-game"
version = "0.1.0"
edition = "2024"
[dependencies]
bevy = { version = "0.16.0", features = ["file_watcher"] }
# bevy_rapier3d = { version = "0.29.0", features = ["simd-stable", "parallel"] }
bevy-inspector-egui = "0.31.0"
# 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
[profile.release]
codegen-units = 1