Blacksite/crates/game/Cargo.toml
Rbanh 0553a85220
Some checks are pending
CI / Format, lint, test, build (push) Waiting to run
Build production-ready editor authoring workflows
2026-07-11 12:41:04 -04:00

28 lines
723 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
cpal = "0.17.3"
game_hot = { path = "../game_hot" }
hot-lib-reloader = { version = "0.8.2", optional = true }
protocol.workspace = true
ron = "0.12"
scene.workspace = true
serde.workspace = true
shared.workspace = true
sim.workspace = true
settings.workspace = true