Blacksite/crates/game/Cargo.toml
Rbanh f29712d158
Some checks are pending
CI / Format, lint, test, build (push) Waiting to run
Initial project import
2026-06-05 21:44:45 -04:00

24 lines
648 B
TOML

[package]
name = "game"
version.workspace = true
edition.workspace = true
license.workspace = true
description = "The runtime FPS game crate for the Bevy FPS foundation"
[features]
# Enable fast iterative compiles via Bevy's dynamic linking:
# `cargo run -p game --features dev`
dev = ["bevy/dynamic_linking"]
hot-reload = ["dep:hot-lib-reloader", "game_hot/dylib"]
[dependencies]
avian3d.workspace = true
bevy.workspace = true
bevy_ufbx.workspace = true
game_hot = { path = "../game_hot" }
hot-lib-reloader = { version = "0.8.2", optional = true }
protocol.workspace = true
shared.workspace = true
sim.workspace = true
settings.workspace = true