Client/Server Feature Split (#63)
This commit is contained in:
43
Cargo.toml
43
Cargo.toml
@@ -13,7 +13,43 @@ avian3d = { version = "0.3", default-features = false, features = [
|
||||
"parallel",
|
||||
"serialize",
|
||||
] }
|
||||
bevy = { version = "0.16.0", features = ["track_location"] }
|
||||
bevy = { version = "0.16.0", default-features = false, features = [
|
||||
"animation",
|
||||
"async_executor",
|
||||
"bevy_asset",
|
||||
"bevy_audio",
|
||||
"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_picking_backend",
|
||||
"custom_cursor",
|
||||
"default_font",
|
||||
"hdr",
|
||||
"multi_threaded",
|
||||
"png",
|
||||
"smaa_luts",
|
||||
"std",
|
||||
"sysinfo_plugin",
|
||||
"tonemapping_luts",
|
||||
"vorbis",
|
||||
"webgl2",
|
||||
"x11",
|
||||
"track_location",
|
||||
] }
|
||||
bevy-inspector-egui = { version = "0.31" }
|
||||
bevy-steamworks = "0.13.0"
|
||||
bevy-ui-gradients = "0.4.0"
|
||||
@@ -22,7 +58,9 @@ 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"] }
|
||||
bevy_trenchbroom = { version = "0.8.1", default-features = false, features = [
|
||||
"avian",
|
||||
] }
|
||||
happy_feet = { git = "https://github.com/atornity/happy_feet.git", rev = "1b24ed95f166e63af35e7b6f9f0053d6d28e1f1a", features = [
|
||||
"serde",
|
||||
] }
|
||||
@@ -33,7 +71,6 @@ lightyear = { version = "0.22.4", default-features = false, features = [
|
||||
"prediction",
|
||||
"replication",
|
||||
"std",
|
||||
"steam",
|
||||
"udp",
|
||||
] }
|
||||
lightyear_avian3d = { git = "https://github.com/cBournhonesque/lightyear.git", rev = "03cbf419a2c0595261b64420bc0332fc3fe1cc3f" }
|
||||
|
||||
Reference in New Issue
Block a user