11[package ]
22name = " bevy_gaussian_splatting"
33description = " bevy gaussian splatting render pipeline plugin"
4- version = " 5.3 .0"
4+ version = " 6.0 .0"
55edition = " 2024"
66rust-version = " 1.85.0"
77authors = [" mosure <mitchell@mosure.me>" ]
@@ -117,8 +117,11 @@ headless = [
117117 " io_ply" ,
118118 " planar" ,
119119 " buffer_storage" ,
120+ " sh3" ,
120121 " sort_rayon" ,
121122 " sort_std" ,
123+ " sort_bitonic" ,
124+ " sort_radix" ,
122125]
123126
124127viewer = [
@@ -147,7 +150,8 @@ file_asset = [
147150]
148151web_asset = [
149152 " base64" ,
150- " bevy_web_asset" ,
153+ " bevy/http" ,
154+ " bevy/https" ,
151155]
152156
153157# note: webgl2/buffer_texture are deprecated
@@ -157,14 +161,13 @@ webgpu = ["bevy/webgpu"]
157161
158162[dependencies ]
159163base64 = { version = " 0.22" , optional = true }
160- bevy_args = " ~1.8 "
161- bevy-inspector-egui = { version = " 0.31 " , optional = true }
162- bevy_interleave = { version = " 0.7.2 " }
164+ bevy_args = { version = " 2.0.0 " }
165+ bevy-inspector-egui = { version = " 0.34.0 " , optional = true }
166+ bevy_interleave = { version = " 0.8.0 " }
163167# bevy_panorbit_camera = { git = "https://github.com/mosure/bevy_panorbit_camera.git", optional = true, features = ["bevy_egui"] }
164- bevy_panorbit_camera = { version = " 0.26 " , optional = true , features = [" bevy_egui" ] }
168+ bevy_panorbit_camera = { version = " 0.29.0 " , optional = true , features = [" bevy_egui" ]}
165169bevy_transform_gizmo = { version = " 0.12" , optional = true }
166- bevy_file_asset = { version = " 0.2" , optional = true }
167- bevy_web_asset = { version = " 0.11" , optional = true }
170+ bevy_file_asset = { git = " https://github.com/cs50victor/bevy_file_asset" , branch = " chore/bump_bevy" , optional = true }
168171bincode2 = { version = " 2.0" , optional = true }
169172byte-unit = { version = " 5.1" , optional = true }
170173bytemuck = " 1.23"
@@ -191,17 +194,19 @@ wasm-bindgen = "0.2"
191194
192195
193196[dependencies .bevy ]
194- version = " 0.16 "
197+ version = " 0.17 "
195198default-features = false
196199features = [
197200 " bevy_asset" ,
201+ " bevy_camera" ,
198202 " bevy_core_pipeline" ,
199203 " bevy_log" ,
200204 " bevy_pbr" ,
201205 " bevy_render" ,
202206 " bevy_winit" ,
203207 " serialize" ,
204208 " std" ,
209+ " zstd_rust" ,
205210 " x11" ,
206211]
207212
@@ -220,6 +225,7 @@ features = [
220225
221226[dev-dependencies ]
222227criterion = { version = " 0.6" , features = [" html_reports" ] }
228+ crossbeam-channel = " 0.5.15"
223229futures-intrusive = { version = " 0.5.0" }
224230pollster = { version = " 0.4.0" }
225231
0 commit comments