@@ -3,7 +3,7 @@ name = "bevy_game" # ToDo
33version = " 0.1.0"
44publish = false
55authors = [" Niklas Eicker <git@nikl.me>" ] # ToDo: you are the author ;)
6- edition = " 2021 "
6+ edition = " 2024 "
77exclude = [" dist" , " build" , " assets" , " credits" ]
88
99[workspace ]
@@ -39,64 +39,33 @@ dev = [
3939# All of Bevy's default features exept for the audio related ones (bevy_audio, vorbis), since they clash with bevy_kira_audio
4040# and android_shared_stdcxx/android-game-activity, since those are covered in `mobile`
4141[dependencies ]
42- bevy = { version = " 0.17.2" , default-features = false , features = [
43- " std" ,
44- " async_executor" ,
45- " animation" ,
46- " bevy_asset" ,
47- " bevy_color" ,
48- " bevy_core_pipeline" ,
49- " bevy_post_process" ,
50- " bevy_anti_alias" ,
42+ bevy = { version = " 0.18.0" , default-features = false , features = [
43+ " default_app" ,
44+ " 2d_api" ,
45+ " 2d_bevy_render" ,
46+ " 3d_api" ,
47+ " 3d_bevy_render" ,
48+ " ui_api" ,
49+ " ui_bevy_render" ,
50+ " scene" ,
51+ " picking" ,
5152 " bevy_gilrs" ,
52- " bevy_gizmos" ,
53- " bevy_gltf" ,
54- " bevy_input_focus" ,
55- " bevy_log" ,
56- " bevy_mesh_picking_backend" ,
57- " bevy_pbr" ,
58- " bevy_picking" ,
59- " bevy_render" ,
60- " bevy_scene" ,
61- " bevy_image" ,
62- " bevy_mesh" ,
63- " bevy_camera" ,
64- " bevy_light" ,
65- " bevy_shader" ,
66- " bevy_sprite" ,
67- " bevy_sprite_picking_backend" ,
68- " bevy_sprite_render" ,
69- " bevy_state" ,
70- " bevy_text" ,
71- " bevy_ui" ,
72- " bevy_ui_picking_backend" ,
73- " bevy_ui_render" ,
74- " bevy_window" ,
7553 " bevy_winit" ,
76- " custom_cursor" ,
7754 " default_font" ,
78- " hdr" ,
79- " ktx2" ,
8055 " multi_threaded" ,
81- " png" ,
82- " reflect_auto_register" ,
83- " smaa_luts" ,
84- " sysinfo_plugin" ,
85- " tonemapping_luts" ,
8656 " webgl2" ,
8757 " x11" ,
8858 " wayland" ,
89- " debug" ,
90- " zstd_rust" ,
59+ " sysinfo_plugin" ,
9160] }
92- bevy_kira_audio = { version = " 0.24 " , features = [" android_shared_stdcxx" ] }
93- bevy_asset_loader = { version = " 0.24.0-rc.1 " }
94- rand = { version = " 0.8.3 " }
61+ bevy_kira_audio = { version = " 0.25 " , features = [" android_shared_stdcxx" ] }
62+ bevy_asset_loader = { version = " 0.25.0 " }
63+ rand = { version = " 0.9 " }
9564webbrowser = { version = " 1" , features = [" hardened" ] }
9665
9766# keep the following in sync with Bevy's dependencies
9867winit = { version = " 0.30" , default-features = false }
99- image = { version = " 0.25.2 " , default-features = false }
68+ image = { version = " 0.25" , default-features = false }
10069# # This greatly improves WGPU's performance due to its heavy use of trace! calls
10170log = { version = " 0.4" , features = [" max_level_debug" , " release_max_level_warn" ] }
10271
0 commit comments