24 lines
648 B
TOML
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
|