diff --git a/Cargo.lock b/Cargo.lock index 054261b..08d1ffc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -18,6 +18,68 @@ version = "0.1.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c71b1793ee61086797f5c80b6efa2b8ffa6d5dd703f118545808a7f2e27f7046" +[[package]] +name = "accesskit" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "704d532b1cd3d912bb37499c55a81ac748cc1afa737eedd100ba441acdd47d38" + +[[package]] +name = "accesskit_consumer" +version = "0.14.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "48ba8b23cfca3944012ee2e5c71c02077a400e034c720eed6bd927cb6b4d1fd9" +dependencies = [ + "accesskit", +] + +[[package]] +name = "accesskit_macos" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cc50af17818440f580a894536c4c5a95ff9e4bad59f19ee68757ca959d001813" +dependencies = [ + "accesskit", + "accesskit_consumer", + "objc2", + "once_cell", +] + +[[package]] +name = "accesskit_windows" +version = "0.13.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "aaf5b3c3828397ee832ba4a72fb1a4ace10f781e31885f774cbd531014059115" +dependencies = [ + "accesskit", + "accesskit_consumer", + "arrayvec", + "once_cell", + "paste", + "windows 0.44.0", +] + +[[package]] +name = "accesskit_winit" +version = "0.12.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9eb880d83a5502edd311bdb3af1cf7113b250c9c2d92fbdd05342c7b9f38bf51" +dependencies = [ + "accesskit", + "accesskit_macos", + "accesskit_windows", + "winit", +] + +[[package]] +name = "addr2line" +version = "0.19.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a76fd60b23679b7d19bd066031410fb7e458ccc5e958eb5c325888ce4baedc97" +dependencies = [ + "gimli", +] + [[package]] name = "adler" version = "1.0.2" @@ -55,6 +117,30 @@ dependencies = [ "memchr", ] +[[package]] +name = "android-activity" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7c77a0045eda8b888c76ea473c2b0515ba6f471d318f8927c5c72240937035a6" +dependencies = [ + "android-properties", + "bitflags", + "cc", + "jni-sys", + "libc", + "log", + "ndk", + "ndk-context", + "ndk-sys", + "num_enum", +] + +[[package]] +name = "android-properties" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fc7eb209b1518d6bb87b283c20095f5228ecda460da70b44f0802523dea6da04" + [[package]] name = "android_log-sys" version = "0.2.0" @@ -184,6 +270,21 @@ version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" +[[package]] +name = "backtrace" +version = "0.3.67" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "233d376d6d185f2a3093e58f283f60f880315b6c60075b01f36b3b85154564ca" +dependencies = [ + "addr2line", + "cc", + "cfg-if", + "libc", + "miniz_oxide", + "object", + "rustc-demangle", +] + [[package]] name = "base64" version = "0.13.1" @@ -196,29 +297,39 @@ version = "0.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "dae99b246505811f5bc19d2de1e406ec5d2816b421d58fa223779eb576f472c9" dependencies = [ - "bevy_internal", + "bevy_internal 0.9.1", +] + +[[package]] +name = "bevy" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cc88fece4660d68690585668f1a4e18e6dcbab160b08f337b498a96ccde91cfe" +dependencies = [ + "bevy_internal 0.10.0", ] [[package]] name = "bevy-inspector-egui" -version = "0.17.0" +version = "0.18.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8be4f9fa859e4840e7cbcc0ddf2c8a1441ff8f663c317769c5ccc70cdf13bcf2" +checksum = "69bffd8614a60f187983e9f805bba13c298294f4666172ae7ab9c39ad61919fa" dependencies = [ "bevy-inspector-egui-derive", - "bevy_app", - "bevy_asset", - "bevy_core", - "bevy_core_pipeline", - "bevy_ecs", + "bevy_app 0.10.0", + "bevy_asset 0.10.0", + "bevy_core 0.10.0", + "bevy_core_pipeline 0.10.0", + "bevy_ecs 0.10.0", "bevy_egui", - "bevy_hierarchy", - "bevy_log", - "bevy_math", - "bevy_pbr", - "bevy_reflect", - "bevy_render", - "bevy_utils", + "bevy_hierarchy 0.10.0", + "bevy_log 0.10.0", + "bevy_math 0.10.0", + "bevy_pbr 0.10.0", + "bevy_reflect 0.10.0", + "bevy_render 0.10.0", + "bevy_utils 0.10.0", + "bevy_window 0.10.0", "egui", "image", "once_cell", @@ -228,25 +339,52 @@ dependencies = [ [[package]] name = "bevy-inspector-egui-derive" -version = "0.17.0" +version = "0.18.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "97826e6225a5b56e77683e7b99418171f7531d48682b8531252dc6b8ef3e8113" +checksum = "fc47dfcdcb52182af97741c1582cc9b3bb4e82f0adacf4c3e78909d438cbfc8b" dependencies = [ "proc-macro2", "quote", "syn", ] +[[package]] +name = "bevy_a11y" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a10b25cf04971b9d68271aa54e4601c673509db6edaf1f5359dd91fb3e84cc27" +dependencies = [ + "accesskit", + "bevy_app 0.10.0", + "bevy_derive 0.10.0", + "bevy_ecs 0.10.0", +] + [[package]] name = "bevy_app" version = "0.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "536e4d0018347478545ed8b6cb6e57b9279ee984868e81b7c0e78e0fb3222e42" dependencies = [ - "bevy_derive", - "bevy_ecs", - "bevy_reflect", - "bevy_utils", + "bevy_derive 0.9.1", + "bevy_ecs 0.9.1", + "bevy_reflect 0.9.1", + "bevy_utils 0.9.1", + "downcast-rs", + "wasm-bindgen", + "web-sys", +] + +[[package]] +name = "bevy_app" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "960c6e444dc6a25dd51a2196f04872ae9e2e876802b66c391104849ec9225e38" +dependencies = [ + "bevy_derive 0.10.0", + "bevy_ecs 0.10.0", + "bevy_reflect 0.10.0", + "bevy_utils 0.10.0", "downcast-rs", "wasm-bindgen", "web-sys", @@ -259,13 +397,13 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6db1bb550168304df69c867c09125e1aae7ff51cf21575396e1598bf293442c4" dependencies = [ "anyhow", - "bevy_app", - "bevy_diagnostic", - "bevy_ecs", - "bevy_log", - "bevy_reflect", - "bevy_tasks", - "bevy_utils", + "bevy_app 0.9.1", + "bevy_diagnostic 0.9.1", + "bevy_ecs 0.9.1", + "bevy_log 0.9.1", + "bevy_reflect 0.9.1", + "bevy_tasks 0.9.1", + "bevy_utils 0.9.1", "crossbeam-channel", "downcast-rs", "fastrand", @@ -279,18 +417,60 @@ dependencies = [ "web-sys", ] +[[package]] +name = "bevy_asset" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "adea538a3d166c8609621994972c31be591c96f931f160f96e74697d8c24ba45" +dependencies = [ + "anyhow", + "bevy_app 0.10.0", + "bevy_diagnostic 0.10.0", + "bevy_ecs 0.10.0", + "bevy_log 0.10.0", + "bevy_reflect 0.10.0", + "bevy_tasks 0.10.0", + "bevy_utils 0.10.0", + "bevy_winit", + "crossbeam-channel", + "downcast-rs", + "fastrand", + "js-sys", + "parking_lot", + "serde", + "thiserror", + "wasm-bindgen", + "wasm-bindgen-futures", + "web-sys", +] + [[package]] name = "bevy_core" version = "0.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "96299aceb3c8362cb4aa39ff81c7ef758a5f4e768d16b5046a91628eff114ac0" dependencies = [ - "bevy_app", - "bevy_ecs", - "bevy_math", - "bevy_reflect", - "bevy_tasks", - "bevy_utils", + "bevy_app 0.9.1", + "bevy_ecs 0.9.1", + "bevy_math 0.9.1", + "bevy_reflect 0.9.1", + "bevy_tasks 0.9.1", + "bevy_utils 0.9.1", + "bytemuck", +] + +[[package]] +name = "bevy_core" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ed29797fa386c6969fa1e4ef9e194a27f89ddb2fa78751fe46838495d374f90f" +dependencies = [ + "bevy_app 0.10.0", + "bevy_ecs 0.10.0", + "bevy_math 0.10.0", + "bevy_reflect 0.10.0", + "bevy_tasks 0.10.0", + "bevy_utils 0.10.0", "bytemuck", ] @@ -300,15 +480,35 @@ version = "0.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "dc128a9860aadf16fb343ae427f2768986fd91dce64d945455acda9759c48014" dependencies = [ - "bevy_app", - "bevy_asset", - "bevy_derive", - "bevy_ecs", - "bevy_math", - "bevy_reflect", - "bevy_render", - "bevy_transform", - "bevy_utils", + "bevy_app 0.9.1", + "bevy_asset 0.9.1", + "bevy_derive 0.9.1", + "bevy_ecs 0.9.1", + "bevy_math 0.9.1", + "bevy_reflect 0.9.1", + "bevy_render 0.9.1", + "bevy_transform 0.9.1", + "bevy_utils 0.9.1", + "bitflags", + "radsort", + "serde", +] + +[[package]] +name = "bevy_core_pipeline" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3129d308df70dee3c46b6bb64e54d2552e7106fd3185d75732ad5e739a830fee" +dependencies = [ + "bevy_app 0.10.0", + "bevy_asset 0.10.0", + "bevy_derive 0.10.0", + "bevy_ecs 0.10.0", + "bevy_math 0.10.0", + "bevy_reflect 0.10.0", + "bevy_render 0.10.0", + "bevy_transform 0.10.0", + "bevy_utils 0.10.0", "bitflags", "radsort", "serde", @@ -320,7 +520,18 @@ version = "0.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7baf73c58d41c353c6fd08e6764a2e7420c9f19e8227b391c50981db6d0282a6" dependencies = [ - "bevy_macro_utils", + "bevy_macro_utils 0.9.1", + "quote", + "syn", +] + +[[package]] +name = "bevy_derive" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cdf11701c01bf4dc7a3fac9f4547f3643d3db4cc1682af40c8c86e2f8734b617" +dependencies = [ + "bevy_macro_utils 0.10.0", "quote", "syn", ] @@ -331,12 +542,27 @@ version = "0.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "63bf96ec7980fa25b77ff6c72dfafada477936c0dab76c1edf6c028c0e5fe0e4" dependencies = [ - "bevy_app", - "bevy_core", - "bevy_ecs", - "bevy_log", - "bevy_time", - "bevy_utils", + "bevy_app 0.9.1", + "bevy_core 0.9.1", + "bevy_ecs 0.9.1", + "bevy_log 0.9.1", + "bevy_time 0.9.1", + "bevy_utils 0.9.1", +] + +[[package]] +name = "bevy_diagnostic" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "576508ffe7ad5124781edd352b79bdc79ffbb6e2f26bad6f722774f7c9fd16c9" +dependencies = [ + "bevy_app 0.10.0", + "bevy_core 0.10.0", + "bevy_ecs 0.10.0", + "bevy_log 0.10.0", + "bevy_time 0.10.0", + "bevy_utils 0.10.0", + "sysinfo", ] [[package]] @@ -346,11 +572,11 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d4c071d7c6bc9801253485e05d0c257284150de755391902746837ba21c0cf74" dependencies = [ "async-channel", - "bevy_ecs_macros", - "bevy_ptr", - "bevy_reflect", - "bevy_tasks", - "bevy_utils", + "bevy_ecs_macros 0.9.1", + "bevy_ptr 0.9.1", + "bevy_reflect 0.9.1", + "bevy_tasks 0.9.1", + "bevy_utils 0.9.1", "downcast-rs", "event-listener", "fixedbitset", @@ -359,13 +585,45 @@ dependencies = [ "thread_local", ] +[[package]] +name = "bevy_ecs" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fdc5b19451128091e8507c9247888359ca0bfa895e7f6ca749ccc55c5463bef6" +dependencies = [ + "async-channel", + "bevy_ecs_macros 0.10.0", + "bevy_ptr 0.10.0", + "bevy_reflect 0.10.0", + "bevy_tasks 0.10.0", + "bevy_utils 0.10.0", + "downcast-rs", + "event-listener", + "fixedbitset", + "rustc-hash", + "serde", + "thread_local", +] + [[package]] name = "bevy_ecs_macros" version = "0.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c15bd45438eeb681ad74f2d205bb07a5699f98f9524462a30ec764afab2742ce" dependencies = [ - "bevy_macro_utils", + "bevy_macro_utils 0.9.1", + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "bevy_ecs_macros" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b1e79757319533bde006a4f30c268223ec6426371297182925932075ccfdae30" +dependencies = [ + "bevy_macro_utils 0.10.0", "proc-macro2", "quote", "syn", @@ -373,12 +631,12 @@ dependencies = [ [[package]] name = "bevy_egui" -version = "0.19.0" +version = "0.20.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fbb8036050af170243e803eb68e0b5d34f549828a8de92479619fb6dac842f85" +checksum = "bf0efb32c83ae6d2cc36bda08a029d74fdeb45870489599d3779a36649802bce" dependencies = [ "arboard", - "bevy", + "bevy 0.10.0", "egui", "thread_local", "webbrowser", @@ -390,20 +648,30 @@ version = "0.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "962b6bb0d30e92ec2e6c29837acce9e55b920733a634e7c3c5fd5a514bea7a24" dependencies = [ - "bevy_macro_utils", - "encase_derive_impl", + "bevy_macro_utils 0.9.1", + "encase_derive_impl 0.4.1", +] + +[[package]] +name = "bevy_encase_derive" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "723d4838d1f88955f348294c0a9d067307f2437725400b0776e9677154914f14" +dependencies = [ + "bevy_macro_utils 0.10.0", + "encase_derive_impl 0.5.0", ] [[package]] name = "bevy_gilrs" -version = "0.9.1" +version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4af552dad82f854b2fae24f36a389fd8ee99d65fe86ae876e854e70d53ff16d9" +checksum = "905e547d213e368f997d08f140f4e893923c7dce4760bf0fb63401232262fa79" dependencies = [ - "bevy_app", - "bevy_ecs", - "bevy_input", - "bevy_utils", + "bevy_app 0.10.0", + "bevy_ecs 0.10.0", + "bevy_input 0.10.0", + "bevy_utils 0.10.0", "gilrs", ] @@ -415,21 +683,21 @@ checksum = "e853e346ba412354e02292c7aa5b9a9dccdfa748e273b1b7ebf8f6a172f89712" dependencies = [ "anyhow", "base64", - "bevy_app", - "bevy_asset", - "bevy_core", - "bevy_core_pipeline", - "bevy_ecs", - "bevy_hierarchy", - "bevy_log", - "bevy_math", - "bevy_pbr", - "bevy_reflect", - "bevy_render", - "bevy_scene", - "bevy_tasks", - "bevy_transform", - "bevy_utils", + "bevy_app 0.9.1", + "bevy_asset 0.9.1", + "bevy_core 0.9.1", + "bevy_core_pipeline 0.9.1", + "bevy_ecs 0.9.1", + "bevy_hierarchy 0.9.1", + "bevy_log 0.9.1", + "bevy_math 0.9.1", + "bevy_pbr 0.9.1", + "bevy_reflect 0.9.1", + "bevy_render 0.9.1", + "bevy_scene 0.9.1", + "bevy_tasks 0.9.1", + "bevy_transform 0.9.1", + "bevy_utils 0.9.1", "gltf", "percent-encoding", "thiserror", @@ -441,12 +709,27 @@ version = "0.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8dd6d50c48c6e1bcb5e08a768b765323292bb3bf3a439b992754c57ffb85b23a" dependencies = [ - "bevy_app", - "bevy_core", - "bevy_ecs", - "bevy_log", - "bevy_reflect", - "bevy_utils", + "bevy_app 0.9.1", + "bevy_core 0.9.1", + "bevy_ecs 0.9.1", + "bevy_log 0.9.1", + "bevy_reflect 0.9.1", + "bevy_utils 0.9.1", + "smallvec", +] + +[[package]] +name = "bevy_hierarchy" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ccd246c862fcaeef3a769f47c6297139f971db0c8fdd6188fe9419ee8873b7e8" +dependencies = [ + "bevy_app 0.10.0", + "bevy_core 0.10.0", + "bevy_ecs 0.10.0", + "bevy_log 0.10.0", + "bevy_reflect 0.10.0", + "bevy_utils 0.10.0", "smallvec", ] @@ -456,11 +739,25 @@ version = "0.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3378b5171284f4c4c0e8307081718a9fe458f846444616bd82d69110dcabca51" dependencies = [ - "bevy_app", - "bevy_ecs", - "bevy_math", - "bevy_reflect", - "bevy_utils", + "bevy_app 0.9.1", + "bevy_ecs 0.9.1", + "bevy_math 0.9.1", + "bevy_reflect 0.9.1", + "bevy_utils 0.9.1", + "thiserror", +] + +[[package]] +name = "bevy_input" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6c809b3df62e1fcbdc6744233ae6c95a67d2cc7e518db43ab81f417d5875ba3b" +dependencies = [ + "bevy_app 0.10.0", + "bevy_ecs 0.10.0", + "bevy_math 0.10.0", + "bevy_reflect 0.10.0", + "bevy_utils 0.10.0", "thiserror", ] @@ -470,36 +767,67 @@ version = "0.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4c46014b7e885b1311de06b6039e448454a4db55b8d35464798ba88faa186e11" dependencies = [ - "bevy_app", - "bevy_asset", - "bevy_core", - "bevy_core_pipeline", - "bevy_derive", - "bevy_diagnostic", - "bevy_ecs", - "bevy_gilrs", + "bevy_app 0.9.1", + "bevy_asset 0.9.1", + "bevy_core 0.9.1", + "bevy_core_pipeline 0.9.1", + "bevy_derive 0.9.1", + "bevy_diagnostic 0.9.1", + "bevy_ecs 0.9.1", "bevy_gltf", - "bevy_hierarchy", - "bevy_input", - "bevy_log", - "bevy_math", - "bevy_pbr", - "bevy_ptr", - "bevy_reflect", - "bevy_render", - "bevy_scene", - "bevy_sprite", - "bevy_tasks", - "bevy_text", - "bevy_time", - "bevy_transform", - "bevy_ui", - "bevy_utils", - "bevy_window", - "bevy_winit", + "bevy_hierarchy 0.9.1", + "bevy_input 0.9.1", + "bevy_log 0.9.1", + "bevy_math 0.9.1", + "bevy_pbr 0.9.1", + "bevy_ptr 0.9.1", + "bevy_reflect 0.9.1", + "bevy_render 0.9.1", + "bevy_sprite 0.9.1", + "bevy_tasks 0.9.1", + "bevy_text 0.9.1", + "bevy_time 0.9.1", + "bevy_transform 0.9.1", + "bevy_ui 0.9.1", + "bevy_utils 0.9.1", + "bevy_window 0.9.1", "ndk-glue", ] +[[package]] +name = "bevy_internal" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0a065c7ac81cd7cf3f1b8f15c4a93db5f07274ddaaec145ba7d0393be0c9c413" +dependencies = [ + "bevy_a11y", + "bevy_app 0.10.0", + "bevy_asset 0.10.0", + "bevy_core 0.10.0", + "bevy_core_pipeline 0.10.0", + "bevy_derive 0.10.0", + "bevy_diagnostic 0.10.0", + "bevy_ecs 0.10.0", + "bevy_gilrs", + "bevy_hierarchy 0.10.0", + "bevy_input 0.10.0", + "bevy_log 0.10.0", + "bevy_math 0.10.0", + "bevy_pbr 0.10.0", + "bevy_ptr 0.10.0", + "bevy_reflect 0.10.0", + "bevy_render 0.10.0", + "bevy_scene 0.10.0", + "bevy_tasks 0.10.0", + "bevy_text 0.10.0", + "bevy_time 0.10.0", + "bevy_transform 0.10.0", + "bevy_ui 0.10.0", + "bevy_utils 0.10.0", + "bevy_window 0.10.0", + "bevy_winit", +] + [[package]] name = "bevy_log" version = "0.9.1" @@ -507,9 +835,25 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6c480bac54cf4ae76edc3ae9ae3fa7c5e1b385e7f2111ef5ec3fd00cf3a7998b" dependencies = [ "android_log-sys", - "bevy_app", - "bevy_ecs", - "bevy_utils", + "bevy_app 0.9.1", + "bevy_ecs 0.9.1", + "bevy_utils 0.9.1", + "console_error_panic_hook", + "tracing-log", + "tracing-subscriber", + "tracing-wasm", +] + +[[package]] +name = "bevy_log" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "47dcb09ec71145c80d88a84181cc1449d30f23c571bdd58c59c10eece82dfaa5" +dependencies = [ + "android_log-sys", + "bevy_app 0.10.0", + "bevy_ecs 0.10.0", + "bevy_utils 0.10.0", "console_error_panic_hook", "tracing-log", "tracing-subscriber", @@ -527,6 +871,17 @@ dependencies = [ "toml", ] +[[package]] +name = "bevy_macro_utils" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f24ca3363292f1435641fbafd5c24ce362137dd7d69bee56dcaaa2bc1d512ffe" +dependencies = [ + "quote", + "syn", + "toml_edit", +] + [[package]] name = "bevy_math" version = "0.9.1" @@ -537,6 +892,16 @@ dependencies = [ "serde", ] +[[package]] +name = "bevy_math" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5e45e46c2ac0a92db3ae622f2ed690928fe2612e7c9470a46d0ed4c2c77e2e95" +dependencies = [ + "glam 0.23.0", + "serde", +] + [[package]] name = "bevy_mikktspace" version = "0.9.1" @@ -546,23 +911,54 @@ dependencies = [ "glam 0.22.0", ] +[[package]] +name = "bevy_mikktspace" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "aaa0358a79823e6f0069b910d90b615d02dad08279b5856d3d1e401472b6379a" +dependencies = [ + "glam 0.23.0", +] + [[package]] name = "bevy_pbr" version = "0.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "310b1f260a475d81445623e138e1b7245759a42310bc1f84b550a3f4ff8763bf" dependencies = [ - "bevy_app", - "bevy_asset", - "bevy_core_pipeline", - "bevy_derive", - "bevy_ecs", - "bevy_math", - "bevy_reflect", - "bevy_render", - "bevy_transform", - "bevy_utils", - "bevy_window", + "bevy_app 0.9.1", + "bevy_asset 0.9.1", + "bevy_core_pipeline 0.9.1", + "bevy_derive 0.9.1", + "bevy_ecs 0.9.1", + "bevy_math 0.9.1", + "bevy_reflect 0.9.1", + "bevy_render 0.9.1", + "bevy_transform 0.9.1", + "bevy_utils 0.9.1", + "bevy_window 0.9.1", + "bitflags", + "bytemuck", + "radsort", +] + +[[package]] +name = "bevy_pbr" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "90230c526ee7257229c1db0fc4aafaa947ea806bb4b0674785930ea59d0cc7f8" +dependencies = [ + "bevy_app 0.10.0", + "bevy_asset 0.10.0", + "bevy_core_pipeline 0.10.0", + "bevy_derive 0.10.0", + "bevy_ecs 0.10.0", + "bevy_math 0.10.0", + "bevy_reflect 0.10.0", + "bevy_render 0.10.0", + "bevy_transform 0.10.0", + "bevy_utils 0.10.0", + "bevy_window 0.10.0", "bitflags", "bytemuck", "radsort", @@ -574,9 +970,9 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ea592675cbb5ed69add81ebcf0f5dbaf315fa7f2868dfe20e24a1292b66314e6" dependencies = [ - "bevy", + "bevy 0.9.1", "bitflags", - "naga", + "naga 0.10.0", ] [[package]] @@ -586,12 +982,18 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8ec44f7655039546bc5d34d98de877083473f3e9b2b81d560c528d6d74d3eff4" [[package]] -name = "bevy_rapier3d" -version = "0.20.0" +name = "bevy_ptr" +version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "77057d7ecde9cff3ad7f36faa362dd540c25a6316e160550e49915f3a765fc53" +checksum = "a96c24da064370917b92c2a84527e6a73b620c50ac5ef8b1af8c04ccf5256a7c" + +[[package]] +name = "bevy_rapier3d" +version = "0.21.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b4bce8074f19467fd55ab172ae6c11fca3ca28f66804590ab10c930bd5e9cd24" dependencies = [ - "bevy", + "bevy 0.10.0", "bitflags", "log", "nalgebra", @@ -604,10 +1006,10 @@ version = "0.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6deae303a7f69dc243b2fa35b5e193cc920229f448942080c8eb2dbd9de6d37a" dependencies = [ - "bevy_math", - "bevy_ptr", - "bevy_reflect_derive", - "bevy_utils", + "bevy_math 0.9.1", + "bevy_ptr 0.9.1", + "bevy_reflect_derive 0.9.1", + "bevy_utils 0.9.1", "downcast-rs", "erased-serde", "glam 0.22.0", @@ -618,13 +1020,47 @@ dependencies = [ "thiserror", ] +[[package]] +name = "bevy_reflect" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ab880e0eed9df5c99ce1a2f89edc11cdef1bc78413719b29e9ad7e3bc27f4c20" +dependencies = [ + "bevy_math 0.10.0", + "bevy_ptr 0.10.0", + "bevy_reflect_derive 0.10.0", + "bevy_utils 0.10.0", + "downcast-rs", + "erased-serde", + "glam 0.23.0", + "once_cell", + "parking_lot", + "serde", + "smallvec", + "thiserror", +] + [[package]] name = "bevy_reflect_derive" version = "0.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a2bf4cb9cd5acb4193f890f36cb63679f1502e2de025e66a63b194b8b133d018" dependencies = [ - "bevy_macro_utils", + "bevy_macro_utils 0.9.1", + "bit-set", + "proc-macro2", + "quote", + "syn", + "uuid", +] + +[[package]] +name = "bevy_reflect_derive" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3b361b8671bdffe93978270dd770b03b48560c3127fdf9003f98111fb806bb11" +dependencies = [ + "bevy_macro_utils 0.10.0", "bit-set", "proc-macro2", "quote", @@ -639,31 +1075,31 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2e3282a8f8779d2aced93207fbed73f740937c6c2bd27bd84f0799b081c7fca5" dependencies = [ "anyhow", - "bevy_app", - "bevy_asset", - "bevy_core", - "bevy_derive", - "bevy_ecs", - "bevy_encase_derive", - "bevy_hierarchy", - "bevy_log", - "bevy_math", - "bevy_mikktspace", - "bevy_reflect", - "bevy_render_macros", - "bevy_time", - "bevy_transform", - "bevy_utils", - "bevy_window", + "bevy_app 0.9.1", + "bevy_asset 0.9.1", + "bevy_core 0.9.1", + "bevy_derive 0.9.1", + "bevy_ecs 0.9.1", + "bevy_encase_derive 0.9.1", + "bevy_hierarchy 0.9.1", + "bevy_log 0.9.1", + "bevy_math 0.9.1", + "bevy_mikktspace 0.9.1", + "bevy_reflect 0.9.1", + "bevy_render_macros 0.9.1", + "bevy_time 0.9.1", + "bevy_transform 0.9.1", + "bevy_utils 0.9.1", + "bevy_window 0.9.1", "bitflags", "codespan-reporting", "downcast-rs", - "encase", + "encase 0.4.1", "futures-lite", "hex", - "hexasphere 8.0.0", + "hexasphere 8.1.0", "image", - "naga", + "naga 0.10.0", "once_cell", "parking_lot", "regex", @@ -671,7 +1107,51 @@ dependencies = [ "smallvec", "thiserror", "thread_local", - "wgpu", + "wgpu 0.14.2", +] + +[[package]] +name = "bevy_render" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "52e352868ab1a9ad9fbaa6ff025505e685781ad1790377b2d038afeb9df18214" +dependencies = [ + "anyhow", + "async-channel", + "bevy_app 0.10.0", + "bevy_asset 0.10.0", + "bevy_core 0.10.0", + "bevy_derive 0.10.0", + "bevy_ecs 0.10.0", + "bevy_encase_derive 0.10.0", + "bevy_hierarchy 0.10.0", + "bevy_log 0.10.0", + "bevy_math 0.10.0", + "bevy_mikktspace 0.10.0", + "bevy_reflect 0.10.0", + "bevy_render_macros 0.10.0", + "bevy_tasks 0.10.0", + "bevy_time 0.10.0", + "bevy_transform 0.10.0", + "bevy_utils 0.10.0", + "bevy_window 0.10.0", + "bitflags", + "codespan-reporting", + "downcast-rs", + "encase 0.5.0", + "futures-lite", + "hexasphere 8.1.0", + "image", + "naga 0.11.0", + "once_cell", + "parking_lot", + "regex", + "serde", + "smallvec", + "thiserror", + "thread_local", + "wgpu 0.15.1", + "wgpu-hal 0.15.3", ] [[package]] @@ -680,7 +1160,19 @@ version = "0.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b7acae697776ac05bea523e1725cf2660c91c53abe72c66782ea1e1b9eedb572" dependencies = [ - "bevy_macro_utils", + "bevy_macro_utils 0.9.1", + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "bevy_render_macros" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "570b1d0f38439c5ac8ab75572804c9979b9caa372c49bd00803f60a22a3e1328" +dependencies = [ + "bevy_macro_utils 0.10.0", "proc-macro2", "quote", "syn", @@ -693,15 +1185,37 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ea9c66a628c833d53bae54fe94cbc0d3f12c29e9d2e6c3f2356d45ad57db0c8c" dependencies = [ "anyhow", - "bevy_app", - "bevy_asset", - "bevy_derive", - "bevy_ecs", - "bevy_hierarchy", - "bevy_reflect", - "bevy_render", - "bevy_transform", - "bevy_utils", + "bevy_app 0.9.1", + "bevy_asset 0.9.1", + "bevy_derive 0.9.1", + "bevy_ecs 0.9.1", + "bevy_hierarchy 0.9.1", + "bevy_reflect 0.9.1", + "bevy_render 0.9.1", + "bevy_transform 0.9.1", + "bevy_utils 0.9.1", + "ron", + "serde", + "thiserror", + "uuid", +] + +[[package]] +name = "bevy_scene" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3995f756e482e964e0244a5d388e757f272d1dcdc02136730b1c45f4d5eeb516" +dependencies = [ + "anyhow", + "bevy_app 0.10.0", + "bevy_asset 0.10.0", + "bevy_derive 0.10.0", + "bevy_ecs 0.10.0", + "bevy_hierarchy 0.10.0", + "bevy_reflect 0.10.0", + "bevy_render 0.10.0", + "bevy_transform 0.10.0", + "bevy_utils 0.10.0", "ron", "serde", "thiserror", @@ -714,17 +1228,42 @@ version = "0.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5ec01c7db7f698d95bcb70708527c3ae6bcdc78fc247abe74f935cae8f0a1145" dependencies = [ - "bevy_app", - "bevy_asset", - "bevy_core_pipeline", - "bevy_derive", - "bevy_ecs", - "bevy_log", - "bevy_math", - "bevy_reflect", - "bevy_render", - "bevy_transform", - "bevy_utils", + "bevy_app 0.9.1", + "bevy_asset 0.9.1", + "bevy_core_pipeline 0.9.1", + "bevy_derive 0.9.1", + "bevy_ecs 0.9.1", + "bevy_log 0.9.1", + "bevy_math 0.9.1", + "bevy_reflect 0.9.1", + "bevy_render 0.9.1", + "bevy_transform 0.9.1", + "bevy_utils 0.9.1", + "bitflags", + "bytemuck", + "fixedbitset", + "guillotiere", + "rectangle-pack", + "thiserror", +] + +[[package]] +name = "bevy_sprite" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "14aa41c9480b76d7b3c3f1ed89f95c9d6e2a39d3c3367ca82c122d853ac0463e" +dependencies = [ + "bevy_app 0.10.0", + "bevy_asset 0.10.0", + "bevy_core_pipeline 0.10.0", + "bevy_derive 0.10.0", + "bevy_ecs 0.10.0", + "bevy_log 0.10.0", + "bevy_math 0.10.0", + "bevy_reflect 0.10.0", + "bevy_render 0.10.0", + "bevy_transform 0.10.0", + "bevy_utils 0.10.0", "bitflags", "bytemuck", "fixedbitset", @@ -748,6 +1287,21 @@ dependencies = [ "wasm-bindgen-futures", ] +[[package]] +name = "bevy_tasks" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3e368e4177fe70d695d5cb67fb7480fa262de79948d9b883a21788b9abf5a85a" +dependencies = [ + "async-channel", + "async-executor", + "async-task", + "concurrent-queue 2.1.0", + "futures-lite", + "once_cell", + "wasm-bindgen-futures", +] + [[package]] name = "bevy_text" version = "0.9.1" @@ -756,16 +1310,39 @@ checksum = "60c74c1bdaabde7db28f6728aa13bc7b1d744a2201b2bbfd83d2224404c57f5c" dependencies = [ "ab_glyph", "anyhow", - "bevy_app", - "bevy_asset", - "bevy_ecs", - "bevy_math", - "bevy_reflect", - "bevy_render", - "bevy_sprite", - "bevy_transform", - "bevy_utils", - "bevy_window", + "bevy_app 0.9.1", + "bevy_asset 0.9.1", + "bevy_ecs 0.9.1", + "bevy_math 0.9.1", + "bevy_reflect 0.9.1", + "bevy_render 0.9.1", + "bevy_sprite 0.9.1", + "bevy_transform 0.9.1", + "bevy_utils 0.9.1", + "bevy_window 0.9.1", + "glyph_brush_layout", + "serde", + "thiserror", +] + +[[package]] +name = "bevy_text" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "33fc934d7cbadbb6dac11547dfb805d3e6b3f0b40f6e66e437fe4b3c7581cc5c" +dependencies = [ + "ab_glyph", + "anyhow", + "bevy_app 0.10.0", + "bevy_asset 0.10.0", + "bevy_ecs 0.10.0", + "bevy_math 0.10.0", + "bevy_reflect 0.10.0", + "bevy_render 0.10.0", + "bevy_sprite 0.10.0", + "bevy_transform 0.10.0", + "bevy_utils 0.10.0", + "bevy_window 0.10.0", "glyph_brush_layout", "serde", "thiserror", @@ -777,24 +1354,51 @@ version = "0.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1a5c38a6d3ea929c7f81e6adf5a6c62cf7e8c40f5106c2174d6057e9d8ea624d" dependencies = [ - "bevy_app", - "bevy_ecs", - "bevy_reflect", - "bevy_utils", + "bevy_app 0.9.1", + "bevy_ecs 0.9.1", + "bevy_reflect 0.9.1", + "bevy_utils 0.9.1", "crossbeam-channel", ] +[[package]] +name = "bevy_time" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d2f2863cfc08fa38909e047a1bbc2dd71d0836057ed0840c69ace9dff3e0c298" +dependencies = [ + "bevy_app 0.10.0", + "bevy_ecs 0.10.0", + "bevy_reflect 0.10.0", + "bevy_utils 0.10.0", + "crossbeam-channel", + "thiserror", +] + [[package]] name = "bevy_transform" version = "0.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ba13c57a040b89767191a6f6d720a635b7792793628bfa41a9e38b7026484aec" dependencies = [ - "bevy_app", - "bevy_ecs", - "bevy_hierarchy", - "bevy_math", - "bevy_reflect", + "bevy_app 0.9.1", + "bevy_ecs 0.9.1", + "bevy_hierarchy 0.9.1", + "bevy_math 0.9.1", + "bevy_reflect 0.9.1", +] + +[[package]] +name = "bevy_transform" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "de9cda3df545ac889b4f6b702109e51d29d7b4b6f402f2bb9b4d1d9f9c382b63" +dependencies = [ + "bevy_app 0.10.0", + "bevy_ecs 0.10.0", + "bevy_hierarchy 0.10.0", + "bevy_math 0.10.0", + "bevy_reflect 0.10.0", ] [[package]] @@ -803,26 +1407,56 @@ version = "0.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "60e82ace6156f11fcdf2319102ff8fb8367b82d1e32b7d05d387a1963602f965" dependencies = [ - "bevy_app", - "bevy_asset", - "bevy_core_pipeline", - "bevy_derive", - "bevy_ecs", - "bevy_hierarchy", - "bevy_input", - "bevy_log", - "bevy_math", - "bevy_reflect", - "bevy_render", - "bevy_sprite", - "bevy_text", - "bevy_transform", - "bevy_utils", - "bevy_window", + "bevy_app 0.9.1", + "bevy_asset 0.9.1", + "bevy_core_pipeline 0.9.1", + "bevy_derive 0.9.1", + "bevy_ecs 0.9.1", + "bevy_hierarchy 0.9.1", + "bevy_input 0.9.1", + "bevy_log 0.9.1", + "bevy_math 0.9.1", + "bevy_reflect 0.9.1", + "bevy_render 0.9.1", + "bevy_sprite 0.9.1", + "bevy_text 0.9.1", + "bevy_transform 0.9.1", + "bevy_utils 0.9.1", + "bevy_window 0.9.1", "bytemuck", "serde", "smallvec", - "taffy", + "taffy 0.1.0", + "thiserror", +] + +[[package]] +name = "bevy_ui" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dc341d652ba20fac0170a46eff8310829a862f4e52db06164dc6200706768934" +dependencies = [ + "bevy_a11y", + "bevy_app 0.10.0", + "bevy_asset 0.10.0", + "bevy_core_pipeline 0.10.0", + "bevy_derive 0.10.0", + "bevy_ecs 0.10.0", + "bevy_hierarchy 0.10.0", + "bevy_input 0.10.0", + "bevy_log 0.10.0", + "bevy_math 0.10.0", + "bevy_reflect 0.10.0", + "bevy_render 0.10.0", + "bevy_sprite 0.10.0", + "bevy_text 0.10.0", + "bevy_transform 0.10.0", + "bevy_utils 0.10.0", + "bevy_window 0.10.0", + "bytemuck", + "serde", + "smallvec", + "taffy 0.3.6", "thiserror", ] @@ -840,36 +1474,84 @@ dependencies = [ "uuid", ] +[[package]] +name = "bevy_utils" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "04d90ce493910ad9af3b4220ea6864c7d1472761086a98230ecac59c8d547e95" +dependencies = [ + "ahash 0.7.6", + "bevy_utils_proc_macros", + "getrandom", + "hashbrown", + "instant", + "petgraph", + "thiserror", + "tracing", + "uuid", +] + +[[package]] +name = "bevy_utils_proc_macros" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "62a42e465c446800c57a5bf65b64f4fa1c1f3a74efc2a64a2a001e4a4f548a2e" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + [[package]] name = "bevy_window" version = "0.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0a44d3f3bd54a2261f4f57f614bf7bccc8d2832761493c0cd7dab81d98cc151e" dependencies = [ - "bevy_app", - "bevy_ecs", - "bevy_input", - "bevy_math", - "bevy_reflect", - "bevy_utils", - "raw-window-handle 0.5.0", + "bevy_app 0.9.1", + "bevy_ecs 0.9.1", + "bevy_input 0.9.1", + "bevy_math 0.9.1", + "bevy_reflect 0.9.1", + "bevy_utils 0.9.1", + "raw-window-handle", +] + +[[package]] +name = "bevy_window" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "da8a2c523302ad64768991a7474c6010c76b9eb78323309ef3911521887fd108" +dependencies = [ + "bevy_app 0.10.0", + "bevy_ecs 0.10.0", + "bevy_input 0.10.0", + "bevy_math 0.10.0", + "bevy_reflect 0.10.0", + "bevy_utils 0.10.0", + "raw-window-handle", ] [[package]] name = "bevy_winit" -version = "0.9.1" +version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c7b7e647ecd0b3577468da37767dcdd7c26ca9f80da0060b2ec4c77336b6d2e1" +checksum = "8eb6eb9b9790c1ad925d900a3f315abf15b11fb56c6464747a96560e559e1a9c" dependencies = [ + "accesskit_winit", "approx", - "bevy_app", - "bevy_ecs", - "bevy_input", - "bevy_math", - "bevy_utils", - "bevy_window", + "bevy_a11y", + "bevy_app 0.10.0", + "bevy_derive 0.10.0", + "bevy_ecs 0.10.0", + "bevy_hierarchy 0.10.0", + "bevy_input 0.10.0", + "bevy_math 0.10.0", + "bevy_utils 0.10.0", + "bevy_window 0.10.0", "crossbeam-channel", - "raw-window-handle 0.5.0", + "once_cell", + "raw-window-handle", "wasm-bindgen", "web-sys", "winit", @@ -902,6 +1584,25 @@ version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a" +[[package]] +name = "block-sys" +version = "0.1.0-beta.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0fa55741ee90902547802152aaf3f8e5248aab7e21468089560d4c8840561146" +dependencies = [ + "objc-sys", +] + +[[package]] +name = "block2" +version = "0.2.0-alpha.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8dd9e63c1744f755c2f60332b88de39d341e5e86239014ad839bd71c106dec42" +dependencies = [ + "block-sys", + "objc2-encode", +] + [[package]] name = "bumpalo" version = "3.12.0" @@ -951,6 +1652,9 @@ name = "cc" version = "1.0.79" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f" +dependencies = [ + "jobserver", +] [[package]] name = "cesu8" @@ -981,37 +1685,6 @@ dependencies = [ "winapi", ] -[[package]] -name = "cocoa" -version = "0.24.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f425db7937052c684daec3bd6375c8abe2d146dca4b8b143d6db777c39138f3a" -dependencies = [ - "bitflags", - "block", - "cocoa-foundation", - "core-foundation", - "core-graphics", - "foreign-types", - "libc", - "objc", -] - -[[package]] -name = "cocoa-foundation" -version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7ade49b65d560ca58c403a479bb396592b155c0185eada742ee323d1d68d6318" -dependencies = [ - "bitflags", - "block", - "core-foundation", - "core-graphics-types", - "foreign-types", - "libc", - "objc", -] - [[package]] name = "codespan-reporting" version = "0.11.1" @@ -1028,6 +1701,12 @@ version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b" +[[package]] +name = "com-rs" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bf43edc576402991846b093a7ca18a3477e0ef9c588cde84964b5d3e43016642" + [[package]] name = "combine" version = "4.6.6" @@ -1189,24 +1868,18 @@ dependencies = [ "cfg-if", ] -[[package]] -name = "cty" -version = "0.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b365fabc795046672053e29c954733ec3b05e4be654ab130fe8f1f94d7051f35" - [[package]] name = "cyber_rider" version = "0.1.0" dependencies = [ - "bevy", + "bevy 0.10.0", "bevy-inspector-egui", "bevy_polyline", "bevy_rapier3d", "hexasphere 7.2.1", "noise", "rand", - "wgpu", + "wgpu 0.15.1", ] [[package]] @@ -1220,6 +1893,17 @@ dependencies = [ "winapi", ] +[[package]] +name = "d3d12" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d8f0de2f5a8e7bd4a9eec0e3c781992a4ce1724f68aec7d7a3715344de8b39da" +dependencies = [ + "bitflags", + "libloading", + "winapi", +] + [[package]] name = "darling" version = "0.13.4" @@ -1289,18 +1973,18 @@ checksum = "9ea835d29036a4087793836fa931b08837ad5e957da9e23886b29586fb9b6650" [[package]] name = "ecolor" -version = "0.20.0" +version = "0.21.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b601108bca3af7650440ace4ca55b2daf52c36f2635be3587d77b16efd8d0691" +checksum = "1f99fe3cac305af9d6d92971af60d0f7ea4d783201ef1673571567b6699964d9" dependencies = [ "bytemuck", ] [[package]] name = "egui" -version = "0.20.1" +version = "0.21.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "65a5e883a316e53866977450eecfbcac9c48109c2ab3394af29feb83fcde4ea9" +checksum = "6412a21e0bde7c0918f7fb44bbbb86b5e1f88e63c026a4e747cc7af02f76dfbe" dependencies = [ "ahash 0.8.3", "epaint", @@ -1315,9 +1999,9 @@ checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91" [[package]] name = "emath" -version = "0.20.0" +version = "0.21.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5277249c8c3430e7127e4f2c40a77485e7baf11ae132ce9b3253a8ed710df0a0" +checksum = "b8ecd80612937e0267909d5351770fe150004e24dab93954f69ca62eecd3f77e" dependencies = [ "bytemuck", ] @@ -1329,18 +2013,39 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "48ec50086547d597b5c871a78399ec04a14828a6a5c445a61ed4687c540edec6" dependencies = [ "const_panic", - "encase_derive", + "encase_derive 0.4.1", "glam 0.22.0", "thiserror", ] +[[package]] +name = "encase" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6591f13a63571c4821802eb5b10fd1155b1290bce87086440003841c8c3909b" +dependencies = [ + "const_panic", + "encase_derive 0.5.0", + "glam 0.23.0", + "thiserror", +] + [[package]] name = "encase_derive" version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "dda93e9714c7683c474f49a461a2ae329471d2bda43c4302d41c6d8339579e92" dependencies = [ - "encase_derive_impl", + "encase_derive_impl 0.4.1", +] + +[[package]] +name = "encase_derive" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4f1da6deed1f8b6f5909616ffa695f63a5de54d6a0f084fa715c70c8ed3abac9" +dependencies = [ + "encase_derive_impl 0.5.0", ] [[package]] @@ -1354,6 +2059,17 @@ dependencies = [ "syn", ] +[[package]] +name = "encase_derive_impl" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ae489d58959f3c4cdd1250866a05acfb341469affe4fced71aff3ba228be1693" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + [[package]] name = "env_logger" version = "0.10.0" @@ -1366,9 +2082,9 @@ dependencies = [ [[package]] name = "epaint" -version = "0.20.0" +version = "0.21.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "de14b65fe5e423e0058f77a8beb2c863b056d0566d6c4ce0d097aa5814cb705a" +checksum = "12e78b5c58a1f7f621f9d546add2adce20636422c9b251e29f749e8a2f713c95" dependencies = [ "ab_glyph", "ahash 0.8.3", @@ -1382,9 +2098,9 @@ dependencies = [ [[package]] name = "erased-serde" -version = "0.3.24" +version = "0.3.25" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e4ca605381c017ec7a5fef5e548f1cfaa419ed0f6df6367339300db74c92aa7d" +checksum = "4f2b0c2380453a92ea8b6c8e5f64ecaafccddde8ceab55ff7a8ac1029f894569" dependencies = [ "serde", ] @@ -1558,9 +2274,15 @@ dependencies = [ "vec_map", "wasm-bindgen", "web-sys", - "windows", + "windows 0.43.0", ] +[[package]] +name = "gimli" +version = "0.27.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ad0a93d233ebf96623465aad4046a8d3aa4da22d4f4beba5388838c8a434bbb4" + [[package]] name = "glam" version = "0.21.3" @@ -1577,6 +2299,16 @@ dependencies = [ "serde", ] +[[package]] +name = "glam" +version = "0.23.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e4afd9ad95555081e109fe1d21f2a30c691b5f0919c67dfa690a2e1eb6bd51c" +dependencies = [ + "bytemuck", + "serde", +] + [[package]] name = "glow" version = "0.11.2" @@ -1589,6 +2321,18 @@ dependencies = [ "web-sys", ] +[[package]] +name = "glow" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4e007a07a24de5ecae94160f141029e9a347282cfe25d1d58d85d845cf3130f1" +dependencies = [ + "js-sys", + "slotmap", + "wasm-bindgen", + "web-sys", +] + [[package]] name = "gltf" version = "1.1.0" @@ -1655,6 +2399,19 @@ dependencies = [ "bitflags", ] +[[package]] +name = "gpu-allocator" +version = "0.22.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ce95f9e2e11c2c6fadfce42b5af60005db06576f231f5c92550fdded43c423e8" +dependencies = [ + "backtrace", + "log", + "thiserror", + "winapi", + "windows 0.44.0", +] + [[package]] name = "gpu-descriptor" version = "0.2.3" @@ -1715,6 +2472,21 @@ dependencies = [ "serde", ] +[[package]] +name = "hassle-rs" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "90601c6189668c7345fc53842cb3f3a3d872203d523be1b3cb44a36a3e62fb85" +dependencies = [ + "bitflags", + "com-rs", + "libc", + "libloading", + "thiserror", + "widestring", + "winapi", +] + [[package]] name = "hex" version = "0.4.3" @@ -1733,11 +2505,11 @@ dependencies = [ [[package]] name = "hexasphere" -version = "8.0.0" +version = "8.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "619ce654558681d7d0a7809e1b20249c7032ff13ee6baa7bb7ff64f7f28a906a" +checksum = "bd41d443f978bfa380a6dad58b62a08c43bcb960631f13e9d015b911eaf73588" dependencies = [ - "glam 0.22.0", + "glam 0.23.0", "once_cell", ] @@ -1819,9 +2591,9 @@ dependencies = [ [[package]] name = "itoa" -version = "1.0.5" +version = "1.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fad582f4b9e86b6caa621cabeb0963332d92eea04729ab12892c2533951e6440" +checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6" [[package]] name = "jni" @@ -1843,6 +2615,15 @@ version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130" +[[package]] +name = "jobserver" +version = "0.1.26" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "936cfd212a0155903bcbc060e316fb6cc7cbf2e1907329391ebadc1fe0ce77c2" +dependencies = [ + "libc", +] + [[package]] name = "jpeg-decoder" version = "0.3.0" @@ -1877,9 +2658,9 @@ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" [[package]] name = "libc" -version = "0.2.139" +version = "0.2.140" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "201de327520df007757c1f0adce6e827fe8562fbc28bfd9c15571c66ca1f5f79" +checksum = "99227334921fae1a979cf0bfdfcc6b3e5ce376ef57e16fb6fb3ea2ed6095f80c" [[package]] name = "libloading" @@ -2018,7 +2799,7 @@ dependencies = [ "libc", "log", "wasi", - "windows-sys 0.45.0", + "windows-sys", ] [[package]] @@ -2044,13 +2825,35 @@ dependencies = [ ] [[package]] -name = "nalgebra" -version = "0.32.1" +name = "naga" +version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f6515c882ebfddccaa73ead7320ca28036c4bc84c9bcca3cc0cbba8efe89223a" +checksum = "5eafe22a23b797c9bc227c6c896419b26b5bb88fa903417a3adaed08778850d5" +dependencies = [ + "bit-set", + "bitflags", + "codespan-reporting", + "hexf-parse", + "indexmap", + "log", + "num-traits", + "petgraph", + "pp-rs", + "rustc-hash", + "spirv", + "termcolor", + "thiserror", + "unicode-xid", +] + +[[package]] +name = "nalgebra" +version = "0.32.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d68d47bba83f9e2006d117a9a33af1524e655516b8919caac694427a6fb1e511" dependencies = [ "approx", - "glam 0.22.0", + "glam 0.23.0", "matrixmultiply", "nalgebra-macros", "num-complex", @@ -2081,7 +2884,7 @@ dependencies = [ "jni-sys", "ndk-sys", "num_enum", - "raw-window-handle 0.5.0", + "raw-window-handle", "thiserror", ] @@ -2170,6 +2973,15 @@ dependencies = [ "rand_xorshift", ] +[[package]] +name = "ntapi" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bc51db7b362b205941f71232e56c625156eb9a929f8cf74a428fd5bc094a4afc" +dependencies = [ + "winapi", +] + [[package]] name = "nu-ansi-term" version = "0.46.0" @@ -2273,6 +3085,32 @@ dependencies = [ "objc_id", ] +[[package]] +name = "objc-sys" +version = "0.2.0-beta.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "df3b9834c1e95694a05a828b59f55fa2afec6288359cda67146126b3f90a55d7" + +[[package]] +name = "objc2" +version = "0.3.0-beta.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fe31e5425d3d0b89a15982c024392815da40689aceb34bad364d58732bcfd649" +dependencies = [ + "block2", + "objc-sys", + "objc2-encode", +] + +[[package]] +name = "objc2-encode" +version = "2.0.0-pre.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "abfcac41015b00a120608fdaa6938c44cb983fee294351cc4bac7638b4e50512" +dependencies = [ + "objc-sys", +] + [[package]] name = "objc_exception" version = "0.1.2" @@ -2291,6 +3129,15 @@ dependencies = [ "objc", ] +[[package]] +name = "object" +version = "0.30.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ea86265d3d3dcb6a27fc51bd29a4bf387fae9d2986b823079d4986af253eb439" +dependencies = [ + "memchr", +] + [[package]] name = "once_cell" version = "1.17.1" @@ -2303,6 +3150,18 @@ version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "978aa494585d3ca4ad74929863093e87cac9790d81fe7aba2b3dc2890643a0fc" +[[package]] +name = "orbclient" +version = "0.3.43" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "974465c5e83cf9df05c1e4137b271d29035c902e39e5ad4c1939837e22160af8" +dependencies = [ + "cfg-if", + "redox_syscall 0.2.16", + "wasm-bindgen", + "web-sys", +] + [[package]] name = "overload" version = "0.1.1" @@ -2342,16 +3201,16 @@ checksum = "9069cbb9f99e3a5083476ccb29ceb1de18b9118cafa53e90c9551235de2b9521" dependencies = [ "cfg-if", "libc", - "redox_syscall", + "redox_syscall 0.2.16", "smallvec", - "windows-sys 0.45.0", + "windows-sys", ] [[package]] name = "parry3d" -version = "0.13.1" +version = "0.13.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "008d029b6e85462d4af7c9fae8728b02bf8ab328c4bf6aa93c1e8fa1e1297723" +checksum = "c73a9ea58699f422dcd322c134ab02dad2871ba02ee871c9ae1f277c302eb092" dependencies = [ "approx", "arrayvec", @@ -2370,9 +3229,9 @@ dependencies = [ [[package]] name = "paste" -version = "1.0.11" +version = "1.0.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d01a5bd0424d00070b0098dd17ebca6f961a959dead1dbcbbbc1d1cd8d3deeba" +checksum = "9f746c4065a8fa3fe23974dd82f15431cc8d40779821001404d10d2e79ca7d79" [[package]] name = "percent-encoding" @@ -2542,21 +3401,9 @@ dependencies = [ [[package]] name = "raw-window-handle" -version = "0.4.3" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b800beb9b6e7d2df1fe337c9e3d04e3af22a124460fb4c30fcc22c9117cefb41" -dependencies = [ - "cty", -] - -[[package]] -name = "raw-window-handle" -version = "0.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ed7e3d950b66e19e0c372f3fa3fbbcf85b1746b571f74e0c2af6042a5c93420a" -dependencies = [ - "cty", -] +checksum = "4f851a03551ceefd30132e447f07f96cb7011d6b658374f3aed847333adb5559" [[package]] name = "rawpointer" @@ -2579,6 +3426,15 @@ dependencies = [ "bitflags", ] +[[package]] +name = "redox_syscall" +version = "0.3.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fb02a9aee8e8c7ad8d86890f1e16b49e0bbbffc9961ff3788c31d57c98bcbf03" +dependencies = [ + "bitflags", +] + [[package]] name = "redox_users" version = "0.4.3" @@ -2586,7 +3442,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b" dependencies = [ "getrandom", - "redox_syscall", + "redox_syscall 0.2.16", "thiserror", ] @@ -2639,6 +3495,12 @@ dependencies = [ "serde", ] +[[package]] +name = "rustc-demangle" +version = "0.1.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7ef03e0a2b150c7a90d01faf6254c9c48a41e95fb2a8c2ac1c6f0d2b9aefc342" + [[package]] name = "rustc-hash" version = "1.1.0" @@ -2647,9 +3509,9 @@ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" [[package]] name = "ryu" -version = "1.0.12" +version = "1.0.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7b4b9743ed687d4b4bcedf9ff5eaa7398495ae14e61cba0a295704edbc7decde" +checksum = "f91339c0467de62360649f8d3e185ca8de4224ff281f66000de5eb2a77a79041" [[package]] name = "safe_arch" @@ -2683,18 +3545,18 @@ checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" [[package]] name = "serde" -version = "1.0.152" +version = "1.0.154" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bb7d1f0d3021d347a83e556fc4683dea2ea09d87bccdf88ff5c12545d89d5efb" +checksum = "8cdd151213925e7f1ab45a9bbfb129316bd00799784b174b7cc7bcd16961c49e" dependencies = [ "serde_derive", ] [[package]] name = "serde_derive" -version = "1.0.152" +version = "1.0.154" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "af487d118eecd09402d70a5d72551860e788df87b464af30e5ea6a38c75c541e" +checksum = "4fc80d722935453bcafdc2c9a73cd6fac4dc1938f0346035d84bf99fa9e33217" dependencies = [ "proc-macro2", "quote", @@ -2703,9 +3565,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.93" +version = "1.0.94" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cad406b69c91885b5107daf2c29572f6c8cdb3c66826821e286c533490c0bc76" +checksum = "1c533a59c9d8a93a09c6ab31f0fd5e5f4dd1b8fc9434804029839884765d04ea" dependencies = [ "itoa", "ryu", @@ -2818,6 +3680,20 @@ dependencies = [ "unicode-ident", ] +[[package]] +name = "sysinfo" +version = "0.28.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d3e847e2de7a137c8c2cede5095872dbb00f4f9bf34d061347e36b43322acd56" +dependencies = [ + "cfg-if", + "core-foundation-sys", + "libc", + "ntapi", + "once_cell", + "winapi", +] + [[package]] name = "taffy" version = "0.1.0" @@ -2831,6 +3707,17 @@ dependencies = [ "typenum", ] +[[package]] +name = "taffy" +version = "0.3.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e38edd8e57ffadcbdaf4c60c8738a8938318b4c4d3d281ae369033b80e5efa75" +dependencies = [ + "arrayvec", + "num-traits", + "slotmap", +] + [[package]] name = "termcolor" version = "1.2.0" @@ -2842,18 +3729,18 @@ dependencies = [ [[package]] name = "thiserror" -version = "1.0.38" +version = "1.0.39" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6a9cd18aa97d5c45c6603caea1da6628790b37f7a34b6ca89522331c5180fed0" +checksum = "a5ab016db510546d856297882807df8da66a16fb8c4101cb8b30054b0d5b2d9c" dependencies = [ "thiserror-impl", ] [[package]] name = "thiserror-impl" -version = "1.0.38" +version = "1.0.39" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1fb327af4685e4d03fa8cbcf1716380da910eeb2bb8be417e7f9fd3fb164f36f" +checksum = "5420d42e90af0c38c3290abcca25b9b3bdf379fc9f55c528f53a269d9c9a267e" dependencies = [ "proc-macro2", "quote", @@ -3009,15 +3896,15 @@ checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba" [[package]] name = "unicode-bidi" -version = "0.3.10" +version = "0.3.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d54675592c1dbefd78cbd98db9bacd89886e1ca50692a0692baefffdeb92dd58" +checksum = "524b68aca1d05e03fdf03fcdce2c6c94b6daf6d16861ddaa7e4f2b6638a9052c" [[package]] name = "unicode-ident" -version = "1.0.6" +version = "1.0.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "84a22b9f218b40614adcb3f4ff08b703773ad44fa9423e4e0d346d5db86e4ebc" +checksum = "e5464a87b239f13a63a501f2701565754bae92d243d4bb7eb12f6d57d2269bf4" [[package]] name = "unicode-normalization" @@ -3174,6 +4061,17 @@ version = "0.2.84" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0046fef7e28c3804e5e38bfa31ea2a0f73905319b677e57ebe37e49358989b5d" +[[package]] +name = "wayland-scanner" +version = "0.29.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8f4303d8fa22ab852f789e75a967f0a2cdc430a607751c0499bada3e451cbd53" +dependencies = [ + "proc-macro2", + "quote", + "xml-rs", +] + [[package]] name = "web-sys" version = "0.3.61" @@ -3196,7 +4094,7 @@ dependencies = [ "log", "ndk-context", "objc", - "raw-window-handle 0.5.0", + "raw-window-handle", "url", "web-sys", ] @@ -3216,17 +4114,41 @@ dependencies = [ "arrayvec", "js-sys", "log", - "naga", + "naga 0.10.0", "parking_lot", - "raw-window-handle 0.5.0", + "raw-window-handle", "smallvec", "static_assertions", "wasm-bindgen", "wasm-bindgen-futures", "web-sys", - "wgpu-core", - "wgpu-hal", - "wgpu-types", + "wgpu-core 0.14.2", + "wgpu-hal 0.14.1", + "wgpu-types 0.14.1", +] + +[[package]] +name = "wgpu" +version = "0.15.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d745a1b6d91d85c33defbb29f0eee0450e1d2614d987e14bf6baf26009d132d7" +dependencies = [ + "arrayvec", + "cfg-if", + "js-sys", + "log", + "naga 0.11.0", + "parking_lot", + "profiling", + "raw-window-handle", + "smallvec", + "static_assertions", + "wasm-bindgen", + "wasm-bindgen-futures", + "web-sys", + "wgpu-core 0.15.1", + "wgpu-hal 0.15.3", + "wgpu-types 0.15.2", ] [[package]] @@ -3242,15 +4164,38 @@ dependencies = [ "codespan-reporting", "fxhash", "log", - "naga", + "naga 0.10.0", "parking_lot", "profiling", - "raw-window-handle 0.5.0", + "raw-window-handle", "smallvec", "thiserror", "web-sys", - "wgpu-hal", - "wgpu-types", + "wgpu-hal 0.14.1", + "wgpu-types 0.14.1", +] + +[[package]] +name = "wgpu-core" +version = "0.15.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7131408d940e335792645a98f03639573b0480e9e2e7cddbbab74f7c6d9f3fff" +dependencies = [ + "arrayvec", + "bit-vec", + "bitflags", + "codespan-reporting", + "fxhash", + "log", + "naga 0.11.0", + "parking_lot", + "profiling", + "raw-window-handle", + "smallvec", + "thiserror", + "web-sys", + "wgpu-hal 0.15.3", + "wgpu-types 0.15.2", ] [[package]] @@ -3266,10 +4211,10 @@ dependencies = [ "bitflags", "block", "core-graphics-types", - "d3d12", + "d3d12 0.5.0", "foreign-types", "fxhash", - "glow", + "glow 0.11.2", "gpu-alloc", "gpu-descriptor", "js-sys", @@ -3277,18 +4222,60 @@ dependencies = [ "libloading", "log", "metal", - "naga", + "naga 0.10.0", "objc", "parking_lot", "profiling", "range-alloc", - "raw-window-handle 0.5.0", + "raw-window-handle", "renderdoc-sys", "smallvec", "thiserror", "wasm-bindgen", "web-sys", - "wgpu-types", + "wgpu-types 0.14.1", + "winapi", +] + +[[package]] +name = "wgpu-hal" +version = "0.15.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7762ae7fcc06943c1b5d4987ab0194e82aaba7767fbfb75d3458844c5b82cc45" +dependencies = [ + "android_system_properties", + "arrayvec", + "ash", + "bit-set", + "bitflags", + "block", + "core-graphics-types", + "d3d12 0.6.0", + "foreign-types", + "fxhash", + "glow 0.12.1", + "gpu-alloc", + "gpu-allocator", + "gpu-descriptor", + "hassle-rs", + "js-sys", + "khronos-egl", + "libc", + "libloading", + "log", + "metal", + "naga 0.11.0", + "objc", + "parking_lot", + "profiling", + "range-alloc", + "raw-window-handle", + "renderdoc-sys", + "smallvec", + "thiserror", + "wasm-bindgen", + "web-sys", + "wgpu-types 0.15.2", "winapi", ] @@ -3301,6 +4288,17 @@ dependencies = [ "bitflags", ] +[[package]] +name = "wgpu-types" +version = "0.15.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "32444e121b0bd00cb02c0de32fde457a9491bd44e03e7a5db6df9b1da2f6f110" +dependencies = [ + "bitflags", + "js-sys", + "web-sys", +] + [[package]] name = "wide" version = "0.7.8" @@ -3311,6 +4309,12 @@ dependencies = [ "safe_arch", ] +[[package]] +name = "widestring" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "17882f045410753661207383517a6f62ec3dbeb6a4ed2acce01f0728238d1983" + [[package]] name = "winapi" version = "0.3.9" @@ -3358,25 +4362,45 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "04662ed0e3e5630dfa9b26e4cb823b817f1a9addda855d973a9458c236556244" dependencies = [ "windows_aarch64_gnullvm", - "windows_aarch64_msvc 0.42.1", - "windows_i686_gnu 0.42.1", - "windows_i686_msvc 0.42.1", - "windows_x86_64_gnu 0.42.1", + "windows_aarch64_msvc", + "windows_i686_gnu", + "windows_i686_msvc", + "windows_x86_64_gnu", "windows_x86_64_gnullvm", - "windows_x86_64_msvc 0.42.1", + "windows_x86_64_msvc", ] [[package]] -name = "windows-sys" -version = "0.36.1" +name = "windows" +version = "0.44.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2" +checksum = "9e745dab35a0c4c77aa3ce42d595e13d2003d6902d6b08c9ef5fc326d08da12b" dependencies = [ - "windows_aarch64_msvc 0.36.1", - "windows_i686_gnu 0.36.1", - "windows_i686_msvc 0.36.1", - "windows_x86_64_gnu 0.36.1", - "windows_x86_64_msvc 0.36.1", + "windows-implement", + "windows-interface", + "windows-targets", +] + +[[package]] +name = "windows-implement" +version = "0.44.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6ce87ca8e3417b02dc2a8a22769306658670ec92d78f1bd420d6310a67c245c6" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "windows-interface" +version = "0.44.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "853f69a591ecd4f810d29f17e902d40e349fb05b0b11fff63b08b826bfe39c7f" +dependencies = [ + "proc-macro2", + "quote", + "syn", ] [[package]] @@ -3395,12 +4419,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8e2522491fbfcd58cc84d47aeb2958948c4b8982e9a2d8a2a35bbaed431390e7" dependencies = [ "windows_aarch64_gnullvm", - "windows_aarch64_msvc 0.42.1", - "windows_i686_gnu 0.42.1", - "windows_i686_msvc 0.42.1", - "windows_x86_64_gnu 0.42.1", + "windows_aarch64_msvc", + "windows_i686_gnu", + "windows_i686_msvc", + "windows_x86_64_gnu", "windows_x86_64_gnullvm", - "windows_x86_64_msvc 0.42.1", + "windows_x86_64_msvc", ] [[package]] @@ -3409,48 +4433,24 @@ version = "0.42.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8c9864e83243fdec7fc9c5444389dcbbfd258f745e7853198f365e3c4968a608" -[[package]] -name = "windows_aarch64_msvc" -version = "0.36.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47" - [[package]] name = "windows_aarch64_msvc" version = "0.42.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4c8b1b673ffc16c47a9ff48570a9d85e25d265735c503681332589af6253c6c7" -[[package]] -name = "windows_i686_gnu" -version = "0.36.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6" - [[package]] name = "windows_i686_gnu" version = "0.42.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "de3887528ad530ba7bdbb1faa8275ec7a1155a45ffa57c37993960277145d640" -[[package]] -name = "windows_i686_msvc" -version = "0.36.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024" - [[package]] name = "windows_i686_msvc" version = "0.42.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bf4d1122317eddd6ff351aa852118a2418ad4214e6613a50e0191f7004372605" -[[package]] -name = "windows_x86_64_gnu" -version = "0.36.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1" - [[package]] name = "windows_x86_64_gnu" version = "0.42.1" @@ -3463,12 +4463,6 @@ version = "0.42.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "628bfdf232daa22b0d64fdb62b09fcc36bb01f05a3939e20ab73aaf9470d0463" -[[package]] -name = "windows_x86_64_msvc" -version = "0.36.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680" - [[package]] name = "windows_x86_64_msvc" version = "0.42.1" @@ -3477,12 +4471,13 @@ checksum = "447660ad36a13288b1db4d4248e857b510e8c3a225c822ba4fb748c0aafecffd" [[package]] name = "winit" -version = "0.27.5" +version = "0.28.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bb796d6fbd86b2fd896c9471e6f04d39d750076ebe5680a3958f00f5ab97657c" +checksum = "9d38e7dc904dda347b54dbec3b2d4bf534794f4fb4e6df0be91a264f4f2ed1cf" dependencies = [ + "android-activity", "bitflags", - "cocoa", + "cfg_aliases", "core-foundation", "core-graphics", "dispatch", @@ -3491,24 +4486,24 @@ dependencies = [ "log", "mio", "ndk", - "ndk-glue", - "objc", + "objc2", "once_cell", - "parking_lot", + "orbclient", "percent-encoding", - "raw-window-handle 0.4.3", - "raw-window-handle 0.5.0", + "raw-window-handle", + "redox_syscall 0.3.4", "wasm-bindgen", + "wayland-scanner", "web-sys", - "windows-sys 0.36.1", + "windows-sys", "x11-dl", ] [[package]] name = "winnow" -version = "0.3.3" +version = "0.3.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "faf09497b8f8b5ac5d3bb4d05c0a99be20f26fd3d5f2db7b0716e946d5103658" +checksum = "ee7b2c67f962bf5042bfd8b6a916178df33a26eec343ae064cb8e069f638fa6f" dependencies = [ "memchr", ] @@ -3551,3 +4546,9 @@ name = "xi-unicode" version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a67300977d3dc3f8034dae89778f502b6ba20b269527b3223ba59c0cf393bb8a" + +[[package]] +name = "xml-rs" +version = "0.8.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d2d7d3948613f75c98fd9328cfdcc45acc4d360655289d0a7d4ec931392200a3" diff --git a/Cargo.toml b/Cargo.toml index 21e1997..74a31ca 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,28 +8,29 @@ rand = "0.8" bevy_polyline = "0.4" noise = { git = "https://github.com/Razaekel/noise-rs" } hexasphere = "7" -wgpu = "0.14" -bevy-inspector-egui = "0.17.0" +wgpu = "0.15" +bevy-inspector-egui = "0.18" # wgpu = "0.12" [features] inspector = [] [dependencies.bevy] -version = "0.9" +version = "0.10" default-features = false features = [ "bevy_gilrs", "bevy_winit", - "render", "png", "hdr", "x11", + "bevy_ui", + "bevy_text" ] [dependencies.bevy_rapier3d] features = ["debug-render-3d"] -version = "0.20" +version = "0.21" # Maybe also enable only a small amount of optimization for our code: [profile.dev] diff --git a/src/action/mod.rs b/src/action/mod.rs index dabccf2..02cb159 100644 --- a/src/action/mod.rs +++ b/src/action/mod.rs @@ -1,6 +1,7 @@ use bevy::{ diagnostic::FrameTimeDiagnosticsPlugin, - prelude::{App, IntoSystemDescriptor, Plugin, ReflectResource, Resource}, + ecs::reflect::ReflectResource, + prelude::{App, Plugin, Resource}, reflect::Reflect, }; use bevy_rapier3d::prelude::{NoUserData, RapierPhysicsPlugin}; @@ -30,18 +31,17 @@ impl Plugin for CyberActionPlugin { .add_plugin(RapierPhysicsPlugin::::default()) .add_startup_system(timestep_setup) .add_plugin(FrameTimeDiagnosticsPlugin::default()) - .add_system(surface_fix.label("surface_fix")) - .add_system(gravity.label("gravity").before("cat")) - .add_system(cyber_lean.before("cat").after("gravity")) - .add_system(falling_cat.label("cat")) - .add_system(input_forces.label("iforces").after("cat")) - .add_system( - tunnel_out - .label("tunnel") - .before("surface_fix") - .after("drag"), + .add_systems( + ( + gravity, + cyber_lean, + falling_cat, + input_forces, + drag, + tunnel_out, + surface_fix, + ) + .chain(), ) - .add_system(surface_fix.label("surface_fix").after("cat")) - .add_system(drag.label("drag").after("iforces")); } } diff --git a/src/bike/mod.rs b/src/bike/mod.rs index 9765aa2..eec5292 100644 --- a/src/bike/mod.rs +++ b/src/bike/mod.rs @@ -2,7 +2,7 @@ mod body; mod components; mod wheels; -use bevy::prelude::{App, Assets, Mesh, Plugin, ResMut, StandardMaterial, StartupStage}; +use bevy::prelude::{App, Assets, Mesh, Plugin, ResMut, StandardMaterial, StartupSet}; use bevy_rapier3d::prelude::Group; pub(crate) use self::components::*; @@ -21,6 +21,6 @@ impl Plugin for CyberBikePlugin { fn build(&self, app: &mut App) { app.insert_resource(WheelConfig::default()) .register_type::() - .add_startup_system_to_stage(StartupStage::PostStartup, spawn_cyberbike); + .add_startup_system(StartupSet::PostStartup, spawn_cyberbike); } } diff --git a/src/camera.rs b/src/camera.rs index e59edf2..4c7473b 100644 --- a/src/camera.rs +++ b/src/camera.rs @@ -5,12 +5,18 @@ use crate::{bike::CyberBikeBody, input::InputState}; // 85 degrees in radians const MAX_PITCH: f32 = 1.48353; -#[derive(Clone, Copy, Eq, PartialEq, Debug, Hash, Component)] +#[derive(Clone, Copy, Eq, PartialEq, Debug, Hash, Component, States)] enum CyberCameras { Hero, Debug, } +impl Default for CyberCameras { + fn default() -> Self { + Self::Hero + } +} + #[derive(Debug, Resource)] pub struct DebugCamOffset { pub rot: f32, diff --git a/src/glamor.rs b/src/glamor.rs index 8e51135..8800163 100644 --- a/src/glamor.rs +++ b/src/glamor.rs @@ -98,7 +98,7 @@ impl Plugin for CyberGlamorPlugin { app.add_plugin(rplugin); } - app.add_startup_system_to_stage(StartupStage::PostStartup, wireframe_planet) + app.add_startup_system(StartupSet::PostStartup, wireframe_planet) .add_system(wireframify_lights) .add_plugin(PolylinePlugin); } diff --git a/src/input.rs b/src/input.rs index c949eb9..7407fa3 100644 --- a/src/input.rs +++ b/src/input.rs @@ -1,4 +1,4 @@ -use bevy::{prelude::*, utils::HashSet}; +use bevy::{input::gamepad::GamepadEvent, prelude::*, utils::HashSet}; use crate::camera::DebugCamOffset; @@ -46,39 +46,33 @@ fn update_debug_cam(mut offset: ResMut, mut keys: ResMut, mut istate: ResMut) { - for GamepadEvent { - gamepad: _, - event_type: ev, - } in events.iter() - { - match *ev { - GamepadEventType::ButtonChanged(GamepadButtonType::RightTrigger2, val) => { + for pad_event in events.iter() { + match pad_event { + GamepadEvent::Button(GamepadButtonType::RightTrigger2, val) => { istate.throttle = val; } - GamepadEventType::ButtonChanged(GamepadButtonType::LeftTrigger2, val) => { + GamepadEvent::Button(GamepadButtonType::LeftTrigger2, val) => { istate.throttle = -val; } - GamepadEventType::ButtonChanged(GamepadButtonType::East, val) => { + GamepadEvent::Button(GamepadButtonType::East, val) => { if val > 0.5 { istate.brake = true; } else { istate.brake = false; } } - GamepadEventType::AxisChanged(GamepadAxisType::LeftStickX, val) => { + GamepadEvent::Axis(GamepadAxisType::LeftStickX, val) => { istate.yaw = val; } // ignore spurious vertical movement for now - GamepadEventType::AxisChanged(GamepadAxisType::LeftStickY, val) => { + GamepadEvent::Axis(GamepadAxisType::LeftStickY, val) => { istate.pitch = val; } _ => { - info!("unhandled gamepad event: {:?}", ev); + info!("unhandled gamepad event: {:?}", pad_event); } } } - - //dbg!(&istate); } pub struct CyberInputPlugin; diff --git a/src/lib.rs b/src/lib.rs index 046d92a..0612a02 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,6 +1,6 @@ use bevy::{ - ecs::schedule::StageLabel, - prelude::{ResMut, SystemLabel, Vec3, Windows}, + ecs::schedule::SystemSet, + prelude::{Query, Vec3, Window}, }; pub mod action; @@ -12,7 +12,7 @@ pub mod lights; pub mod planet; pub mod ui; -#[derive(Clone, Debug, Hash, PartialEq, Eq, SystemLabel, StageLabel)] +#[derive(Clone, Debug, Hash, PartialEq, Eq, SystemSet)] pub enum Label { Geometry, Glamor, @@ -20,7 +20,7 @@ pub enum Label { Action, } -pub fn disable_mouse_trap(mut windows: ResMut) { +pub fn disable_mouse_trap(mut windows: Query<&Window>) { let window = windows.get_primary_mut().unwrap(); window.set_cursor_grab_mode(bevy::window::CursorGrabMode::None); window.set_cursor_visibility(true);