83 lines
2.2 KiB
TOML
83 lines
2.2 KiB
TOML
[workspace]
|
|
resolver = "3"
|
|
members = ["crates/*"]
|
|
|
|
[workspace.dependencies]
|
|
avian3d = { version = "0.4.0", 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.17.0", default-features = false, features = [
|
|
"animation",
|
|
"async_executor",
|
|
"bevy_asset",
|
|
"bevy_color",
|
|
"bevy_core_pipeline",
|
|
"bevy_gilrs",
|
|
"bevy_gizmos",
|
|
"bevy_gltf",
|
|
"bevy_input_focus",
|
|
"bevy_log",
|
|
"bevy_mesh_picking_backend",
|
|
"bevy_pbr",
|
|
"bevy_picking",
|
|
"bevy_render",
|
|
"bevy_scene",
|
|
"bevy_sprite",
|
|
"bevy_sprite_picking_backend",
|
|
"bevy_state",
|
|
"bevy_text",
|
|
"bevy_ui",
|
|
"bevy_ui_render",
|
|
"bevy_ui_picking_backend",
|
|
"default_font",
|
|
"hdr",
|
|
"multi_threaded",
|
|
"png",
|
|
"reflect_auto_register",
|
|
"smaa_luts",
|
|
"std",
|
|
"sysinfo_plugin",
|
|
"tonemapping_luts",
|
|
"vorbis",
|
|
"webgl2",
|
|
"zstd_rust",
|
|
"track_location",
|
|
] }
|
|
bevy-inspector-egui = "0.34"
|
|
bevy-persistent = { version = "0.9", features = ["ron"] }
|
|
bevy-steamworks = "0.15.0"
|
|
bevy_asset_loader = "=0.24.0-rc.1"
|
|
bevy_ballistic = { git = "https://github.com/rustunit/bevy_ballistic.git", rev = "b08ffec" }
|
|
bevy_common_assets = { version = "0.14.0", features = ["ron"] }
|
|
bevy_debug_log = { git = "https://github.com/rustunit/bevy_debug_log.git", rev = "86051a0" }
|
|
bevy_replicon = "0.37.1"
|
|
# TODO: i dont think we need this in dedicated server mode
|
|
bevy_replicon_renet = { version = "0.13.0", features = ["renet_steam"] }
|
|
bevy_sprite3d = "7.0.0"
|
|
bevy_trenchbroom = { version = "0.10", default-features = false, features = [
|
|
"physics-integration",
|
|
] }
|
|
bevy_trenchbroom_avian = "0.10"
|
|
clap = { version = "=4.5.47", features = ["derive"] }
|
|
dirs = "6.0.0"
|
|
happy_feet = { git = "https://github.com/PROMETHIA-27/happy_feet.git", rev = "e3a4660e0b68f9bf4d6facb0fb4d93f2d7848b27", features = [
|
|
"serde",
|
|
] }
|
|
nil = "0.14.0"
|
|
rand = "=0.8.5"
|
|
ron = "0.8"
|
|
serde = { version = "1.0.219", features = ["derive"] }
|
|
shared = { path = "crates/shared" }
|
|
# TODO: i dont think we need this in dedicated server mode
|
|
steamworks = "0.12"
|
|
|
|
[profile.dev.package."*"]
|
|
opt-level = 3
|