Files
phos-neo/game/main/Cargo.toml
Amatsugu 94b85c9cf7 update to bevy 0.16.0
Need to wait for asset_loader upate full release
Need to refactor Prefab system to use the new relationships
2025-04-29 14:35:19 -04:00

40 lines
894 B
TOML

[package]
name = "phos"
version = "0.1.0"
edition = "2021"
build = "build.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bevy = { version = "0.16.0", features = ["file_watcher"] }
bevy-inspector-egui = "0.28.1"
# iyes_perf_ui = "0.3.0"
noise = "0.8.2"
world_generation = { path = "../../engine/world_generation" }
bevy_rapier3d = { version = "0.29.0", features = [
"simd-stable",
"parallel",
"debug-render-3d",
] }
rayon = "1.10.0"
buildings = { path = "../buildings" }
units = { path = "../units" }
shared = { path = "../shared" }
bevy_asset_loader = { version = "0.23.0-rc.3", features = [
"standard_dynamic_assets",
"3d",
] }
ron = "0.8.1"
image = "0.25.2"
# bevy_lunex = "0.2.4"
[features]
tracing = [
"bevy/trace_tracy",
"world_generation/tracing",
"buildings/tracing",
"units/tracing",
"shared/tracing",
]