pending rapier update to bevy 0.16
This commit is contained in:
2025-05-04 19:28:04 -04:00
commit cb70c85bea
7 changed files with 7993 additions and 0 deletions

20
Cargo.toml Normal file
View File

@@ -0,0 +1,20 @@
[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