An experimental, status effects-as-entities system for Bevy.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Updated to Bevy 0.16-rc.5

+395 -43
+395 -43
Cargo.lock
··· 18 18 checksum = "84521a3cf562bc62942e294181d9eef17eb38ceb8c68677bc49f144e4c3d4f8d" 19 19 20 20 [[package]] 21 + name = "arrayvec" 22 + version = "0.7.6" 23 + source = "registry+https://github.com/rust-lang/crates.io-index" 24 + checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50" 25 + 26 + [[package]] 21 27 name = "assert_type_match" 22 28 version = "0.1.1" 23 29 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 26 32 "proc-macro2", 27 33 "quote", 28 34 "syn 2.0.100", 35 + ] 36 + 37 + [[package]] 38 + name = "async-executor" 39 + version = "1.13.1" 40 + source = "registry+https://github.com/rust-lang/crates.io-index" 41 + checksum = "30ca9a001c1e8ba5149f91a74362376cc6bc5b919d92d988668657bd570bdcec" 42 + dependencies = [ 43 + "async-task", 44 + "concurrent-queue", 45 + "fastrand", 46 + "futures-lite", 47 + "slab", 29 48 ] 30 49 31 50 [[package]] ··· 91 110 92 111 [[package]] 93 112 name = "bevy_app" 94 - version = "0.16.0-rc.4" 113 + version = "0.16.0-rc.5" 95 114 source = "registry+https://github.com/rust-lang/crates.io-index" 96 - checksum = "a0cdcee5cf8cfc0e92c027e7a274d69c1a89158e3c9b50f6f5bb109f725f9152" 115 + checksum = "d4bca06008ce3fdd611c16f212895c9fb082d1cadc6ffda068a30de6088d93cd" 97 116 dependencies = [ 98 117 "bevy_derive", 99 118 "bevy_ecs", 100 - "bevy_platform_support", 119 + "bevy_platform", 101 120 "bevy_reflect", 102 121 "bevy_tasks", 103 122 "bevy_utils", 104 123 "cfg-if", 124 + "console_error_panic_hook", 125 + "ctrlc", 105 126 "downcast-rs", 106 127 "log", 107 128 "thiserror", 108 129 "variadics_please", 130 + "wasm-bindgen", 131 + "web-sys", 109 132 ] 110 133 111 134 [[package]] 112 135 name = "bevy_derive" 113 - version = "0.16.0-rc.4" 136 + version = "0.16.0-rc.5" 114 137 source = "registry+https://github.com/rust-lang/crates.io-index" 115 - checksum = "e1d5f78757eff8d91e37d14955108ce261d11d862b618acd0b0af940a226f7d7" 138 + checksum = "6462921371b9471c66e6837ac26306408067006eb4d18289af0b34b34185ec35" 116 139 dependencies = [ 117 140 "bevy_macro_utils", 118 141 "quote", ··· 121 144 122 145 [[package]] 123 146 name = "bevy_ecs" 124 - version = "0.16.0-rc.4" 147 + version = "0.16.0-rc.5" 125 148 source = "registry+https://github.com/rust-lang/crates.io-index" 126 - checksum = "4cae38412de6e3f878f393e70d10fa7c1b00822f381ea34892eed57c68dc3b6a" 149 + checksum = "3d727ac7bd70932af794e09c4e7362e85b794359fb052f23ae57424d44f4a80d" 127 150 dependencies = [ 151 + "arrayvec", 128 152 "bevy_ecs_macros", 129 - "bevy_platform_support", 153 + "bevy_platform", 130 154 "bevy_ptr", 131 155 "bevy_reflect", 132 156 "bevy_tasks", ··· 140 164 "indexmap", 141 165 "log", 142 166 "nonmax", 167 + "serde", 143 168 "smallvec", 144 169 "thiserror", 145 170 "variadics_please", ··· 147 172 148 173 [[package]] 149 174 name = "bevy_ecs_macros" 150 - version = "0.16.0-rc.4" 175 + version = "0.16.0-rc.5" 151 176 source = "registry+https://github.com/rust-lang/crates.io-index" 152 - checksum = "196a5034c0175a64d4daba51f8222a9c1e8d48e6b41dd66cc56e5dfe67a5aa0d" 177 + checksum = "682888510b5886d633a9ee1bb87835573358ea169fa860cc293adfbe1528acd3" 153 178 dependencies = [ 154 179 "bevy_macro_utils", 155 180 "proc-macro2", ··· 159 184 160 185 [[package]] 161 186 name = "bevy_log" 162 - version = "0.16.0-rc.4" 187 + version = "0.16.0-rc.5" 163 188 source = "registry+https://github.com/rust-lang/crates.io-index" 164 - checksum = "86b9aac9641a105556f1d28860aaed29513031849e324e0b75cd5d8aeacbee48" 189 + checksum = "3e74bc3fbb4bb7d331299bbd312beb056ed29f68dca63de4205b428809ad8028" 165 190 dependencies = [ 166 191 "android_log-sys", 167 192 "bevy_app", 168 193 "bevy_ecs", 169 194 "bevy_utils", 170 - "log", 195 + "tracing", 196 + "tracing-log", 171 197 "tracing-oslog", 198 + "tracing-subscriber", 199 + "tracing-wasm", 172 200 ] 173 201 174 202 [[package]] 175 203 name = "bevy_macro_utils" 176 - version = "0.16.0-rc.4" 204 + version = "0.16.0-rc.5" 177 205 source = "registry+https://github.com/rust-lang/crates.io-index" 178 - checksum = "a9e910801472bfd99ecf22723c27227bd78382857425afee0ce296749cbb809c" 206 + checksum = "f5a6b2dcfeeccf05dc333f07b75f0622efbc7bb9363ff3bd302fe1a03da3231f" 179 207 dependencies = [ 180 208 "parking_lot", 181 209 "proc-macro2", ··· 185 213 ] 186 214 187 215 [[package]] 188 - name = "bevy_platform_support" 189 - version = "0.16.0-rc.4" 216 + name = "bevy_platform" 217 + version = "0.16.0-rc.5" 190 218 source = "registry+https://github.com/rust-lang/crates.io-index" 191 - checksum = "e07dae2ae4e79ae57147d7fe90362af18fbace134f66c537a45a8315f4855d53" 219 + checksum = "496a76c6ef0cff43681b66f4391a839150879e9e9913d0b6270a4b16dab886a4" 192 220 dependencies = [ 193 221 "cfg-if", 222 + "critical-section", 194 223 "foldhash", 224 + "getrandom 0.2.15", 195 225 "hashbrown", 196 226 "portable-atomic", 197 227 "portable-atomic-util", 198 228 "serde", 199 229 "spin", 230 + "web-time", 200 231 ] 201 232 202 233 [[package]] 203 234 name = "bevy_ptr" 204 - version = "0.16.0-rc.4" 235 + version = "0.16.0-rc.5" 205 236 source = "registry+https://github.com/rust-lang/crates.io-index" 206 - checksum = "0e0b7a509abaeec48bb12bf54b2fe4ebf85ba9a23efe69de11f699f5620d59f4" 237 + checksum = "e675d019ae9274a337f955d39c6cdabe1cd7cac4dc1d4d9186d9727ce04ae79d" 207 238 208 239 [[package]] 209 240 name = "bevy_reflect" 210 - version = "0.16.0-rc.4" 241 + version = "0.16.0-rc.5" 211 242 source = "registry+https://github.com/rust-lang/crates.io-index" 212 - checksum = "5012385cdb94f09546a0e077ef4c34f951b60b8ec84da77c2f76a6346a0f9154" 243 + checksum = "2ff6c3632f0f519c70968dc2fc11f4450fb58bba825c36e0ec22cce71cccc325" 213 244 dependencies = [ 214 245 "assert_type_match", 215 - "bevy_platform_support", 246 + "bevy_platform", 216 247 "bevy_ptr", 217 248 "bevy_reflect_derive", 218 249 "bevy_utils", ··· 221 252 "downcast-rs", 222 253 "erased-serde", 223 254 "foldhash", 255 + "glam", 224 256 "serde", 225 257 "smallvec", 258 + "smol_str", 226 259 "thiserror", 260 + "uuid", 227 261 "variadics_please", 262 + "wgpu-types", 228 263 ] 229 264 230 265 [[package]] 231 266 name = "bevy_reflect_derive" 232 - version = "0.16.0-rc.4" 267 + version = "0.16.0-rc.5" 233 268 source = "registry+https://github.com/rust-lang/crates.io-index" 234 - checksum = "cc52bd2025f1be16c1f090f5426f3c96f3528a6aa982390b6e3a5c41f79ea6b1" 269 + checksum = "c9faad34ff682b7ea9746bf11799c75100eccc308bb27b339aba9dbd2099bc79" 235 270 dependencies = [ 236 271 "bevy_macro_utils", 237 272 "proc-macro2", ··· 264 299 265 300 [[package]] 266 301 name = "bevy_tasks" 267 - version = "0.16.0-rc.4" 302 + version = "0.16.0-rc.5" 268 303 source = "registry+https://github.com/rust-lang/crates.io-index" 269 - checksum = "d98675766d6cadb171699652c468f8fb0a741e0f4a94e123e95d42e6e39da850" 304 + checksum = "3990bb6b1f48611e2617b57822dc00f7889962d91e84f0abafbc5f3b4d652f75" 270 305 dependencies = [ 306 + "async-executor", 271 307 "async-task", 272 308 "atomic-waker", 273 - "bevy_platform_support", 309 + "bevy_platform", 274 310 "cfg-if", 275 311 "crossbeam-queue", 276 312 "derive_more", 313 + "futures-channel", 277 314 "futures-lite", 278 315 "heapless", 316 + "pin-project", 317 + "wasm-bindgen-futures", 279 318 ] 280 319 281 320 [[package]] 282 321 name = "bevy_time" 283 - version = "0.16.0-rc.4" 322 + version = "0.16.0-rc.5" 284 323 source = "registry+https://github.com/rust-lang/crates.io-index" 285 - checksum = "a067ea7d90112141ff23e210bfbf2ad81d9b976d056a5878998b20c25b123017" 324 + checksum = "f916caf4898ae18343662e85bb5a5cc66c683f160284fad1e511b85b3a46d7e0" 286 325 dependencies = [ 287 326 "bevy_app", 288 327 "bevy_ecs", 289 - "bevy_platform_support", 328 + "bevy_platform", 290 329 "bevy_reflect", 291 330 "log", 292 331 ] 293 332 294 333 [[package]] 295 334 name = "bevy_utils" 296 - version = "0.16.0-rc.4" 335 + version = "0.16.0-rc.5" 297 336 source = "registry+https://github.com/rust-lang/crates.io-index" 298 - checksum = "dee384d4ed938bc91591f551f103c1f1822a60ea731dfc17362e9d149d681c13" 337 + checksum = "eb01925d2d238e965b25fb6ce259fe43cb7d753f669554536f658e29f8c04c17" 299 338 dependencies = [ 300 - "bevy_platform_support", 339 + "bevy_platform", 340 + "thread_local", 301 341 ] 302 342 303 343 [[package]] ··· 325 365 version = "2.9.0" 326 366 source = "registry+https://github.com/rust-lang/crates.io-index" 327 367 checksum = "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd" 368 + dependencies = [ 369 + "serde", 370 + ] 328 371 329 372 [[package]] 330 373 name = "block-buffer" ··· 378 421 checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 379 422 380 423 [[package]] 424 + name = "cfg_aliases" 425 + version = "0.2.1" 426 + source = "registry+https://github.com/rust-lang/crates.io-index" 427 + checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" 428 + 429 + [[package]] 381 430 name = "clang-sys" 382 431 version = "1.8.1" 383 432 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 399 448 ] 400 449 401 450 [[package]] 451 + name = "console_error_panic_hook" 452 + version = "0.1.7" 453 + source = "registry+https://github.com/rust-lang/crates.io-index" 454 + checksum = "a06aeb73f470f66dcdbf7223caeebb85984942f22f1adb2a088cf9668146bbbc" 455 + dependencies = [ 456 + "cfg-if", 457 + "wasm-bindgen", 458 + ] 459 + 460 + [[package]] 402 461 name = "cpufeatures" 403 462 version = "0.2.17" 404 463 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 406 465 dependencies = [ 407 466 "libc", 408 467 ] 468 + 469 + [[package]] 470 + name = "critical-section" 471 + version = "1.2.0" 472 + source = "registry+https://github.com/rust-lang/crates.io-index" 473 + checksum = "790eea4361631c5e7d22598ecd5723ff611904e3344ce8720784c93e3d83d40b" 409 474 410 475 [[package]] 411 476 name = "crossbeam-queue" ··· 433 498 ] 434 499 435 500 [[package]] 501 + name = "ctrlc" 502 + version = "3.4.6" 503 + source = "registry+https://github.com/rust-lang/crates.io-index" 504 + checksum = "697b5419f348fd5ae2478e8018cb016c00a5881c7f46c717de98ffd135a5651c" 505 + dependencies = [ 506 + "nix", 507 + "windows-sys", 508 + ] 509 + 510 + [[package]] 436 511 name = "derive_more" 437 512 version = "1.0.0" 438 513 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 498 573 ] 499 574 500 575 [[package]] 576 + name = "fastrand" 577 + version = "2.3.0" 578 + source = "registry+https://github.com/rust-lang/crates.io-index" 579 + checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be" 580 + 581 + [[package]] 501 582 name = "fixedbitset" 502 583 version = "0.5.7" 503 584 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 510 591 checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2" 511 592 512 593 [[package]] 594 + name = "futures-channel" 595 + version = "0.3.31" 596 + source = "registry+https://github.com/rust-lang/crates.io-index" 597 + checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10" 598 + dependencies = [ 599 + "futures-core", 600 + ] 601 + 602 + [[package]] 513 603 name = "futures-core" 514 604 version = "0.3.31" 515 605 source = "registry+https://github.com/rust-lang/crates.io-index" 516 606 checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e" 517 607 518 608 [[package]] 609 + name = "futures-io" 610 + version = "0.3.31" 611 + source = "registry+https://github.com/rust-lang/crates.io-index" 612 + checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6" 613 + 614 + [[package]] 519 615 name = "futures-lite" 520 616 version = "2.6.0" 521 617 source = "registry+https://github.com/rust-lang/crates.io-index" 522 618 checksum = "f5edaec856126859abb19ed65f39e90fea3a9574b9707f13539acf4abf7eb532" 523 619 dependencies = [ 620 + "fastrand", 524 621 "futures-core", 622 + "futures-io", 623 + "parking", 525 624 "pin-project-lite", 526 625 ] 527 626 ··· 537 636 538 637 [[package]] 539 638 name = "getrandom" 639 + version = "0.2.15" 640 + source = "registry+https://github.com/rust-lang/crates.io-index" 641 + checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7" 642 + dependencies = [ 643 + "cfg-if", 644 + "js-sys", 645 + "libc", 646 + "wasi 0.11.0+wasi-snapshot-preview1", 647 + "wasm-bindgen", 648 + ] 649 + 650 + [[package]] 651 + name = "getrandom" 540 652 version = "0.3.2" 541 653 source = "registry+https://github.com/rust-lang/crates.io-index" 542 654 checksum = "73fea8450eea4bac3940448fb7ae50d91f034f941199fcd9d909a5a07aa455f0" ··· 544 656 "cfg-if", 545 657 "libc", 546 658 "r-efi", 547 - "wasi", 659 + "wasi 0.14.2+wasi-0.2.4", 660 + ] 661 + 662 + [[package]] 663 + name = "glam" 664 + version = "0.29.3" 665 + source = "registry+https://github.com/rust-lang/crates.io-index" 666 + checksum = "8babf46d4c1c9d92deac9f7be466f76dfc4482b6452fc5024b5e8daf6ffeb3ee" 667 + dependencies = [ 668 + "serde", 548 669 ] 549 670 550 671 [[package]] ··· 635 756 636 757 [[package]] 637 758 name = "libc" 638 - version = "0.2.171" 759 + version = "0.2.172" 639 760 source = "registry+https://github.com/rust-lang/crates.io-index" 640 - checksum = "c19937216e9d3aa9956d9bb8dfc0b0c8beb6058fc4f7a4dc4d850edf86a237d6" 761 + checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa" 641 762 642 763 [[package]] 643 764 name = "libloading" ··· 686 807 checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94" 687 808 688 809 [[package]] 810 + name = "matchers" 811 + version = "0.1.0" 812 + source = "registry+https://github.com/rust-lang/crates.io-index" 813 + checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558" 814 + dependencies = [ 815 + "regex-automata 0.1.10", 816 + ] 817 + 818 + [[package]] 689 819 name = "memchr" 690 820 version = "2.7.4" 691 821 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 698 828 checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" 699 829 700 830 [[package]] 831 + name = "nix" 832 + version = "0.29.0" 833 + source = "registry+https://github.com/rust-lang/crates.io-index" 834 + checksum = "71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46" 835 + dependencies = [ 836 + "bitflags", 837 + "cfg-if", 838 + "cfg_aliases", 839 + "libc", 840 + ] 841 + 842 + [[package]] 701 843 name = "nom" 702 844 version = "7.1.3" 703 845 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 714 856 checksum = "610a5acd306ec67f907abe5567859a3c693fb9886eb1f012ab8f2a47bef3db51" 715 857 716 858 [[package]] 859 + name = "nu-ansi-term" 860 + version = "0.46.0" 861 + source = "registry+https://github.com/rust-lang/crates.io-index" 862 + checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84" 863 + dependencies = [ 864 + "overload", 865 + "winapi", 866 + ] 867 + 868 + [[package]] 717 869 name = "once_cell" 718 870 version = "1.21.3" 719 871 source = "registry+https://github.com/rust-lang/crates.io-index" 720 872 checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d" 721 873 722 874 [[package]] 875 + name = "overload" 876 + version = "0.1.1" 877 + source = "registry+https://github.com/rust-lang/crates.io-index" 878 + checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" 879 + 880 + [[package]] 881 + name = "parking" 882 + version = "2.2.1" 883 + source = "registry+https://github.com/rust-lang/crates.io-index" 884 + checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba" 885 + 886 + [[package]] 723 887 name = "parking_lot" 724 888 version = "0.12.3" 725 889 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 743 907 ] 744 908 745 909 [[package]] 910 + name = "pin-project" 911 + version = "1.1.10" 912 + source = "registry+https://github.com/rust-lang/crates.io-index" 913 + checksum = "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a" 914 + dependencies = [ 915 + "pin-project-internal", 916 + ] 917 + 918 + [[package]] 919 + name = "pin-project-internal" 920 + version = "1.1.10" 921 + source = "registry+https://github.com/rust-lang/crates.io-index" 922 + checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861" 923 + dependencies = [ 924 + "proc-macro2", 925 + "quote", 926 + "syn 2.0.100", 927 + ] 928 + 929 + [[package]] 746 930 name = "pin-project-lite" 747 931 version = "0.2.16" 748 932 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 799 983 800 984 [[package]] 801 985 name = "proc-macro2" 802 - version = "1.0.94" 986 + version = "1.0.95" 803 987 source = "registry+https://github.com/rust-lang/crates.io-index" 804 - checksum = "a31971752e70b8b2686d7e46ec17fb38dad4051d94024c88df49b667caea9c84" 988 + checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778" 805 989 dependencies = [ 806 990 "unicode-ident", 807 991 ] ··· 838 1022 dependencies = [ 839 1023 "aho-corasick", 840 1024 "memchr", 841 - "regex-automata", 842 - "regex-syntax", 1025 + "regex-automata 0.4.9", 1026 + "regex-syntax 0.8.5", 1027 + ] 1028 + 1029 + [[package]] 1030 + name = "regex-automata" 1031 + version = "0.1.10" 1032 + source = "registry+https://github.com/rust-lang/crates.io-index" 1033 + checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132" 1034 + dependencies = [ 1035 + "regex-syntax 0.6.29", 843 1036 ] 844 1037 845 1038 [[package]] ··· 850 1043 dependencies = [ 851 1044 "aho-corasick", 852 1045 "memchr", 853 - "regex-syntax", 1046 + "regex-syntax 0.8.5", 854 1047 ] 1048 + 1049 + [[package]] 1050 + name = "regex-syntax" 1051 + version = "0.6.29" 1052 + source = "registry+https://github.com/rust-lang/crates.io-index" 1053 + checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" 855 1054 856 1055 [[package]] 857 1056 name = "regex-syntax" ··· 936 1135 checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" 937 1136 938 1137 [[package]] 1138 + name = "slab" 1139 + version = "0.4.9" 1140 + source = "registry+https://github.com/rust-lang/crates.io-index" 1141 + checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67" 1142 + dependencies = [ 1143 + "autocfg", 1144 + ] 1145 + 1146 + [[package]] 939 1147 name = "smallvec" 940 1148 version = "1.15.0" 941 1149 source = "registry+https://github.com/rust-lang/crates.io-index" 942 1150 checksum = "8917285742e9f3e1683f0a9c4e6b57960b7314d0b08d30d1ecd426713ee2eee9" 1151 + 1152 + [[package]] 1153 + name = "smol_str" 1154 + version = "0.2.2" 1155 + source = "registry+https://github.com/rust-lang/crates.io-index" 1156 + checksum = "dd538fb6910ac1099850255cf94a94df6551fbdd602454387d0adb2d1ca6dead" 1157 + dependencies = [ 1158 + "serde", 1159 + ] 943 1160 944 1161 [[package]] 945 1162 name = "spin" ··· 1025 1242 ] 1026 1243 1027 1244 [[package]] 1245 + name = "tracing" 1246 + version = "0.1.41" 1247 + source = "registry+https://github.com/rust-lang/crates.io-index" 1248 + checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0" 1249 + dependencies = [ 1250 + "pin-project-lite", 1251 + "tracing-attributes", 1252 + "tracing-core", 1253 + ] 1254 + 1255 + [[package]] 1256 + name = "tracing-attributes" 1257 + version = "0.1.28" 1258 + source = "registry+https://github.com/rust-lang/crates.io-index" 1259 + checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d" 1260 + dependencies = [ 1261 + "proc-macro2", 1262 + "quote", 1263 + "syn 2.0.100", 1264 + ] 1265 + 1266 + [[package]] 1028 1267 name = "tracing-core" 1029 1268 version = "0.1.33" 1030 1269 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1035 1274 ] 1036 1275 1037 1276 [[package]] 1277 + name = "tracing-log" 1278 + version = "0.2.0" 1279 + source = "registry+https://github.com/rust-lang/crates.io-index" 1280 + checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3" 1281 + dependencies = [ 1282 + "log", 1283 + "once_cell", 1284 + "tracing-core", 1285 + ] 1286 + 1287 + [[package]] 1038 1288 name = "tracing-oslog" 1039 1289 version = "0.2.0" 1040 1290 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1055 1305 source = "registry+https://github.com/rust-lang/crates.io-index" 1056 1306 checksum = "e8189decb5ac0fa7bc8b96b7cb9b2701d60d48805aca84a238004d665fcc4008" 1057 1307 dependencies = [ 1308 + "matchers", 1309 + "nu-ansi-term", 1310 + "once_cell", 1311 + "regex", 1058 1312 "sharded-slab", 1313 + "smallvec", 1059 1314 "thread_local", 1315 + "tracing", 1060 1316 "tracing-core", 1317 + "tracing-log", 1318 + ] 1319 + 1320 + [[package]] 1321 + name = "tracing-wasm" 1322 + version = "0.2.1" 1323 + source = "registry+https://github.com/rust-lang/crates.io-index" 1324 + checksum = "4575c663a174420fa2d78f4108ff68f65bf2fbb7dd89f33749b6e826b3626e07" 1325 + dependencies = [ 1326 + "tracing", 1327 + "tracing-subscriber", 1328 + "wasm-bindgen", 1061 1329 ] 1062 1330 1063 1331 [[package]] ··· 1090 1358 source = "registry+https://github.com/rust-lang/crates.io-index" 1091 1359 checksum = "458f7a779bf54acc9f347480ac654f68407d3aab21269a6e3c9f922acd9e2da9" 1092 1360 dependencies = [ 1093 - "getrandom", 1361 + "getrandom 0.3.2", 1094 1362 "js-sys", 1363 + "serde", 1095 1364 "wasm-bindgen", 1096 1365 ] 1097 1366 ··· 1120 1389 1121 1390 [[package]] 1122 1391 name = "wasi" 1392 + version = "0.11.0+wasi-snapshot-preview1" 1393 + source = "registry+https://github.com/rust-lang/crates.io-index" 1394 + checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 1395 + 1396 + [[package]] 1397 + name = "wasi" 1123 1398 version = "0.14.2+wasi-0.2.4" 1124 1399 source = "registry+https://github.com/rust-lang/crates.io-index" 1125 1400 checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3" ··· 1154 1429 ] 1155 1430 1156 1431 [[package]] 1432 + name = "wasm-bindgen-futures" 1433 + version = "0.4.50" 1434 + source = "registry+https://github.com/rust-lang/crates.io-index" 1435 + checksum = "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61" 1436 + dependencies = [ 1437 + "cfg-if", 1438 + "js-sys", 1439 + "once_cell", 1440 + "wasm-bindgen", 1441 + "web-sys", 1442 + ] 1443 + 1444 + [[package]] 1157 1445 name = "wasm-bindgen-macro" 1158 1446 version = "0.2.100" 1159 1447 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1183 1471 checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d" 1184 1472 dependencies = [ 1185 1473 "unicode-ident", 1474 + ] 1475 + 1476 + [[package]] 1477 + name = "web-sys" 1478 + version = "0.3.77" 1479 + source = "registry+https://github.com/rust-lang/crates.io-index" 1480 + checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2" 1481 + dependencies = [ 1482 + "js-sys", 1483 + "wasm-bindgen", 1484 + ] 1485 + 1486 + [[package]] 1487 + name = "web-time" 1488 + version = "1.1.0" 1489 + source = "registry+https://github.com/rust-lang/crates.io-index" 1490 + checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb" 1491 + dependencies = [ 1492 + "js-sys", 1493 + "wasm-bindgen", 1494 + ] 1495 + 1496 + [[package]] 1497 + name = "wgpu-types" 1498 + version = "24.0.0" 1499 + source = "registry+https://github.com/rust-lang/crates.io-index" 1500 + checksum = "50ac044c0e76c03a0378e7786ac505d010a873665e2d51383dcff8dd227dc69c" 1501 + dependencies = [ 1502 + "bitflags", 1503 + "js-sys", 1504 + "log", 1505 + "serde", 1506 + "web-sys", 1507 + ] 1508 + 1509 + [[package]] 1510 + name = "winapi" 1511 + version = "0.3.9" 1512 + source = "registry+https://github.com/rust-lang/crates.io-index" 1513 + checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 1514 + dependencies = [ 1515 + "winapi-i686-pc-windows-gnu", 1516 + "winapi-x86_64-pc-windows-gnu", 1517 + ] 1518 + 1519 + [[package]] 1520 + name = "winapi-i686-pc-windows-gnu" 1521 + version = "0.4.0" 1522 + source = "registry+https://github.com/rust-lang/crates.io-index" 1523 + checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 1524 + 1525 + [[package]] 1526 + name = "winapi-x86_64-pc-windows-gnu" 1527 + version = "0.4.0" 1528 + source = "registry+https://github.com/rust-lang/crates.io-index" 1529 + checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 1530 + 1531 + [[package]] 1532 + name = "windows-sys" 1533 + version = "0.59.0" 1534 + source = "registry+https://github.com/rust-lang/crates.io-index" 1535 + checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" 1536 + dependencies = [ 1537 + "windows-targets", 1186 1538 ] 1187 1539 1188 1540 [[package]]