Files
HEDZReloaded/Cargo.toml
2025-08-25 11:41:28 +04:00

53 lines
1.5 KiB
TOML

[workspace]
resolver = "3"
members = ["crates/*"]
[workspace.dependencies]
avian3d = { version = "0.3", default-features = false, features = [
"3d",
"f32",
"parry-f32",
"collider-from-mesh",
"bevy_scene",
"bevy_picking", # todo: Consider if this one is necessary
"parallel",
"serialize",
] }
bevy = { version = "0.16.0", features = ["track_location"] }
bevy-inspector-egui = { version = "0.31" }
bevy-steamworks = "0.13.0"
bevy-ui-gradients = "0.4.0"
bevy_asset_loader = "0.23.0-rc.3"
bevy_ballistic = "0.4.0"
bevy_common_assets = { version = "0.13.0", features = ["ron"] }
bevy_debug_log = "0.6.0"
bevy_sprite3d = "5.0.0"
bevy_trenchbroom = { version = "0.8.1", features = ["avian"] }
happy_feet = { git = "https://github.com/atornity/happy_feet.git", rev = "1b24ed95f166e63af35e7b6f9f0053d6d28e1f1a", features = [
"serde",
] }
lightyear = { version = "0.22.4", default-features = false, features = [
"input_native",
"interpolation",
"netcode",
"prediction",
"replication",
"std",
"steam",
"udp",
] }
lightyear_avian3d = { git = "https://github.com/cBournhonesque/lightyear.git", rev = "03cbf419a2c0595261b64420bc0332fc3fe1cc3f" }
lightyear_serde = "0.22.4"
nil = "0.14.0"
rand = "=0.8.5"
ron = "0.8"
serde = { version = "1.0.219", features = ["derive"] }
shared = { path = "crates/shared" }
steamworks = "0.11"
[profile.dev.package."*"]
opt-level = 3
[patch.crates-io]
bevy-steamworks = { git = "https://github.com/HouraiTeahouse/bevy_steamworks.git", rev = "1933e5d" }