38 lines
1.1 KiB
TOML
38 lines
1.1 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",
|
|
] }
|
|
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/rustunit/happy_feet.git", rev = "ecfecc6243862bc2bc64dcadfd0efd21c766ab5b" }
|
|
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" }
|