A multiplayer VR framework w/voice chat
at main 22 kB view raw
1# This file is automatically @generated by Cargo. 2# It is not intended for manual editing. 3version = 4 4 5[[package]] 6name = "anyhow" 7version = "1.0.100" 8source = "registry+https://github.com/rust-lang/crates.io-index" 9checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61" 10 11[[package]] 12name = "approx" 13version = "0.5.1" 14source = "registry+https://github.com/rust-lang/crates.io-index" 15checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6" 16dependencies = [ 17 "num-traits", 18] 19 20[[package]] 21name = "assert_type_match" 22version = "0.1.1" 23source = "registry+https://github.com/rust-lang/crates.io-index" 24checksum = "f548ad2c4031f2902e3edc1f29c29e835829437de49562d8eb5dc5584d3a1043" 25dependencies = [ 26 "proc-macro2", 27 "quote", 28 "syn", 29] 30 31[[package]] 32name = "autocfg" 33version = "1.5.0" 34source = "registry+https://github.com/rust-lang/crates.io-index" 35checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8" 36 37[[package]] 38name = "bevy_macro_utils" 39version = "0.17.3" 40source = "registry+https://github.com/rust-lang/crates.io-index" 41checksum = "62d984f9f8bd0f0d9fb020492a955e641e30e7a425f3588bf346cb3e61fec3c3" 42dependencies = [ 43 "parking_lot", 44 "proc-macro2", 45 "quote", 46 "syn", 47 "toml_edit", 48] 49 50[[package]] 51name = "bevy_math" 52version = "0.17.3" 53source = "registry+https://github.com/rust-lang/crates.io-index" 54checksum = "5fa74ae5d968749cc073da991757d3c7e3504ac6dbaac5f8c2a54b9d19b0b7ed" 55dependencies = [ 56 "approx", 57 "bevy_reflect", 58 "derive_more", 59 "glam", 60 "itertools", 61 "rand 0.9.2", 62 "rand_distr", 63 "serde", 64 "smallvec", 65 "thiserror", 66 "variadics_please", 67] 68 69[[package]] 70name = "bevy_platform" 71version = "0.17.3" 72source = "registry+https://github.com/rust-lang/crates.io-index" 73checksum = "4691af6d7cfd1b5deb2fc926a43a180a546cdc3fe1e5a013fcee60db9bb2c81f" 74dependencies = [ 75 "critical-section", 76 "foldhash", 77 "futures-channel", 78 "hashbrown", 79 "js-sys", 80 "portable-atomic", 81 "portable-atomic-util", 82 "serde", 83 "spin", 84 "wasm-bindgen", 85 "wasm-bindgen-futures", 86] 87 88[[package]] 89name = "bevy_ptr" 90version = "0.17.3" 91source = "registry+https://github.com/rust-lang/crates.io-index" 92checksum = "17d24d7906c7de556033168b3485de36c59049fbaef0c2c44c715a23e0329b10" 93 94[[package]] 95name = "bevy_reflect" 96version = "0.17.3" 97source = "registry+https://github.com/rust-lang/crates.io-index" 98checksum = "b5472b91928c0f3e4e3988c0d036b00719f19520f53a0c3f8c2af72f00e693c5" 99dependencies = [ 100 "assert_type_match", 101 "bevy_platform", 102 "bevy_ptr", 103 "bevy_reflect_derive", 104 "bevy_utils", 105 "derive_more", 106 "disqualified", 107 "downcast-rs", 108 "erased-serde", 109 "foldhash", 110 "glam", 111 "serde", 112 "smol_str", 113 "thiserror", 114 "uuid", 115 "variadics_please", 116 "wgpu-types", 117] 118 119[[package]] 120name = "bevy_reflect_derive" 121version = "0.17.3" 122source = "registry+https://github.com/rust-lang/crates.io-index" 123checksum = "083784255162fa39960aa3cf3c23af0e515db2daa7f2e796ae34df993f4d3f6c" 124dependencies = [ 125 "bevy_macro_utils", 126 "indexmap", 127 "proc-macro2", 128 "quote", 129 "syn", 130 "uuid", 131] 132 133[[package]] 134name = "bevy_utils" 135version = "0.17.3" 136source = "registry+https://github.com/rust-lang/crates.io-index" 137checksum = "789d04f88c764877a4552e07745b402dbc45f5d0545e6d102558f2f1752a1d89" 138dependencies = [ 139 "bevy_platform", 140 "disqualified", 141] 142 143[[package]] 144name = "bitflags" 145version = "2.10.0" 146source = "registry+https://github.com/rust-lang/crates.io-index" 147checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3" 148dependencies = [ 149 "serde_core", 150] 151 152[[package]] 153name = "bumpalo" 154version = "3.19.1" 155source = "registry+https://github.com/rust-lang/crates.io-index" 156checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510" 157 158[[package]] 159name = "bytemuck" 160version = "1.24.0" 161source = "registry+https://github.com/rust-lang/crates.io-index" 162checksum = "1fbdf580320f38b612e485521afda1ee26d10cc9884efaaa750d383e13e3c5f4" 163dependencies = [ 164 "bytemuck_derive", 165] 166 167[[package]] 168name = "bytemuck_derive" 169version = "1.10.2" 170source = "registry+https://github.com/rust-lang/crates.io-index" 171checksum = "f9abbd1bc6865053c427f7198e6af43bfdedc55ab791faed4fbd361d789575ff" 172dependencies = [ 173 "proc-macro2", 174 "quote", 175 "syn", 176] 177 178[[package]] 179name = "cfg-if" 180version = "1.0.4" 181source = "registry+https://github.com/rust-lang/crates.io-index" 182checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" 183 184[[package]] 185name = "critical-section" 186version = "1.2.0" 187source = "registry+https://github.com/rust-lang/crates.io-index" 188checksum = "790eea4361631c5e7d22598ecd5723ff611904e3344ce8720784c93e3d83d40b" 189 190[[package]] 191name = "derive_more" 192version = "2.1.0" 193source = "registry+https://github.com/rust-lang/crates.io-index" 194checksum = "10b768e943bed7bf2cab53df09f4bc34bfd217cdb57d971e769874c9a6710618" 195dependencies = [ 196 "derive_more-impl", 197] 198 199[[package]] 200name = "derive_more-impl" 201version = "2.1.0" 202source = "registry+https://github.com/rust-lang/crates.io-index" 203checksum = "6d286bfdaf75e988b4a78e013ecd79c581e06399ab53fbacd2d916c2f904f30b" 204dependencies = [ 205 "proc-macro2", 206 "quote", 207 "rustc_version", 208 "syn", 209] 210 211[[package]] 212name = "disqualified" 213version = "1.0.0" 214source = "registry+https://github.com/rust-lang/crates.io-index" 215checksum = "c9c272297e804878a2a4b707cfcfc6d2328b5bb936944613b4fdf2b9269afdfd" 216 217[[package]] 218name = "downcast-rs" 219version = "2.0.2" 220source = "registry+https://github.com/rust-lang/crates.io-index" 221checksum = "117240f60069e65410b3ae1bb213295bd828f707b5bec6596a1afc8793ce0cbc" 222 223[[package]] 224name = "either" 225version = "1.15.0" 226source = "registry+https://github.com/rust-lang/crates.io-index" 227checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719" 228 229[[package]] 230name = "equivalent" 231version = "1.0.2" 232source = "registry+https://github.com/rust-lang/crates.io-index" 233checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" 234 235[[package]] 236name = "erased-serde" 237version = "0.4.9" 238source = "registry+https://github.com/rust-lang/crates.io-index" 239checksum = "89e8918065695684b2b0702da20382d5ae6065cf3327bc2d6436bd49a71ce9f3" 240dependencies = [ 241 "serde", 242 "serde_core", 243 "typeid", 244] 245 246[[package]] 247name = "felix-net" 248version = "0.1.0" 249dependencies = [ 250 "anyhow", 251 "bevy_math", 252] 253 254[[package]] 255name = "foldhash" 256version = "0.2.0" 257source = "registry+https://github.com/rust-lang/crates.io-index" 258checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb" 259 260[[package]] 261name = "futures-channel" 262version = "0.3.31" 263source = "registry+https://github.com/rust-lang/crates.io-index" 264checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10" 265dependencies = [ 266 "futures-core", 267] 268 269[[package]] 270name = "futures-core" 271version = "0.3.31" 272source = "registry+https://github.com/rust-lang/crates.io-index" 273checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e" 274 275[[package]] 276name = "getrandom" 277version = "0.2.16" 278source = "registry+https://github.com/rust-lang/crates.io-index" 279checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592" 280dependencies = [ 281 "cfg-if", 282 "libc", 283 "wasi", 284] 285 286[[package]] 287name = "getrandom" 288version = "0.3.4" 289source = "registry+https://github.com/rust-lang/crates.io-index" 290checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd" 291dependencies = [ 292 "cfg-if", 293 "libc", 294 "r-efi", 295 "wasip2", 296] 297 298[[package]] 299name = "glam" 300version = "0.30.9" 301source = "registry+https://github.com/rust-lang/crates.io-index" 302checksum = "bd47b05dddf0005d850e5644cae7f2b14ac3df487979dbfff3b56f20b1a6ae46" 303dependencies = [ 304 "bytemuck", 305 "rand 0.9.2", 306 "serde_core", 307] 308 309[[package]] 310name = "hashbrown" 311version = "0.16.1" 312source = "registry+https://github.com/rust-lang/crates.io-index" 313checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100" 314dependencies = [ 315 "equivalent", 316 "serde", 317 "serde_core", 318] 319 320[[package]] 321name = "indexmap" 322version = "2.12.1" 323source = "registry+https://github.com/rust-lang/crates.io-index" 324checksum = "0ad4bb2b565bca0645f4d68c5c9af97fba094e9791da685bf83cb5f3ce74acf2" 325dependencies = [ 326 "equivalent", 327 "hashbrown", 328] 329 330[[package]] 331name = "itertools" 332version = "0.14.0" 333source = "registry+https://github.com/rust-lang/crates.io-index" 334checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285" 335dependencies = [ 336 "either", 337] 338 339[[package]] 340name = "js-sys" 341version = "0.3.83" 342source = "registry+https://github.com/rust-lang/crates.io-index" 343checksum = "464a3709c7f55f1f721e5389aa6ea4e3bc6aba669353300af094b29ffbdde1d8" 344dependencies = [ 345 "once_cell", 346 "wasm-bindgen", 347] 348 349[[package]] 350name = "libc" 351version = "0.2.178" 352source = "registry+https://github.com/rust-lang/crates.io-index" 353checksum = "37c93d8daa9d8a012fd8ab92f088405fb202ea0b6ab73ee2482ae66af4f42091" 354 355[[package]] 356name = "libm" 357version = "0.2.15" 358source = "registry+https://github.com/rust-lang/crates.io-index" 359checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de" 360 361[[package]] 362name = "lock_api" 363version = "0.4.14" 364source = "registry+https://github.com/rust-lang/crates.io-index" 365checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965" 366dependencies = [ 367 "scopeguard", 368] 369 370[[package]] 371name = "log" 372version = "0.4.29" 373source = "registry+https://github.com/rust-lang/crates.io-index" 374checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897" 375 376[[package]] 377name = "memchr" 378version = "2.7.6" 379source = "registry+https://github.com/rust-lang/crates.io-index" 380checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273" 381 382[[package]] 383name = "nanoid" 384version = "0.4.0" 385source = "registry+https://github.com/rust-lang/crates.io-index" 386checksum = "3ffa00dec017b5b1a8b7cf5e2c008bfda1aa7e0697ac1508b491fdf2622fb4d8" 387dependencies = [ 388 "rand 0.8.5", 389] 390 391[[package]] 392name = "num-traits" 393version = "0.2.19" 394source = "registry+https://github.com/rust-lang/crates.io-index" 395checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" 396dependencies = [ 397 "autocfg", 398 "libm", 399] 400 401[[package]] 402name = "once_cell" 403version = "1.21.3" 404source = "registry+https://github.com/rust-lang/crates.io-index" 405checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d" 406 407[[package]] 408name = "parking_lot" 409version = "0.12.5" 410source = "registry+https://github.com/rust-lang/crates.io-index" 411checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a" 412dependencies = [ 413 "lock_api", 414 "parking_lot_core", 415] 416 417[[package]] 418name = "parking_lot_core" 419version = "0.9.12" 420source = "registry+https://github.com/rust-lang/crates.io-index" 421checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1" 422dependencies = [ 423 "cfg-if", 424 "libc", 425 "redox_syscall", 426 "smallvec", 427 "windows-link", 428] 429 430[[package]] 431name = "portable-atomic" 432version = "1.11.1" 433source = "registry+https://github.com/rust-lang/crates.io-index" 434checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483" 435 436[[package]] 437name = "portable-atomic-util" 438version = "0.2.4" 439source = "registry+https://github.com/rust-lang/crates.io-index" 440checksum = "d8a2f0d8d040d7848a709caf78912debcc3f33ee4b3cac47d73d1e1069e83507" 441dependencies = [ 442 "portable-atomic", 443] 444 445[[package]] 446name = "ppv-lite86" 447version = "0.2.21" 448source = "registry+https://github.com/rust-lang/crates.io-index" 449checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9" 450dependencies = [ 451 "zerocopy", 452] 453 454[[package]] 455name = "proc-macro2" 456version = "1.0.103" 457source = "registry+https://github.com/rust-lang/crates.io-index" 458checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8" 459dependencies = [ 460 "unicode-ident", 461] 462 463[[package]] 464name = "quote" 465version = "1.0.42" 466source = "registry+https://github.com/rust-lang/crates.io-index" 467checksum = "a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f" 468dependencies = [ 469 "proc-macro2", 470] 471 472[[package]] 473name = "r-efi" 474version = "5.3.0" 475source = "registry+https://github.com/rust-lang/crates.io-index" 476checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" 477 478[[package]] 479name = "rand" 480version = "0.8.5" 481source = "registry+https://github.com/rust-lang/crates.io-index" 482checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 483dependencies = [ 484 "libc", 485 "rand_chacha 0.3.1", 486 "rand_core 0.6.4", 487] 488 489[[package]] 490name = "rand" 491version = "0.9.2" 492source = "registry+https://github.com/rust-lang/crates.io-index" 493checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1" 494dependencies = [ 495 "rand_chacha 0.9.0", 496 "rand_core 0.9.3", 497] 498 499[[package]] 500name = "rand_chacha" 501version = "0.3.1" 502source = "registry+https://github.com/rust-lang/crates.io-index" 503checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 504dependencies = [ 505 "ppv-lite86", 506 "rand_core 0.6.4", 507] 508 509[[package]] 510name = "rand_chacha" 511version = "0.9.0" 512source = "registry+https://github.com/rust-lang/crates.io-index" 513checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb" 514dependencies = [ 515 "ppv-lite86", 516 "rand_core 0.9.3", 517] 518 519[[package]] 520name = "rand_core" 521version = "0.6.4" 522source = "registry+https://github.com/rust-lang/crates.io-index" 523checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 524dependencies = [ 525 "getrandom 0.2.16", 526] 527 528[[package]] 529name = "rand_core" 530version = "0.9.3" 531source = "registry+https://github.com/rust-lang/crates.io-index" 532checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38" 533dependencies = [ 534 "getrandom 0.3.4", 535] 536 537[[package]] 538name = "rand_distr" 539version = "0.5.1" 540source = "registry+https://github.com/rust-lang/crates.io-index" 541checksum = "6a8615d50dcf34fa31f7ab52692afec947c4dd0ab803cc87cb3b0b4570ff7463" 542dependencies = [ 543 "num-traits", 544 "rand 0.9.2", 545] 546 547[[package]] 548name = "redox_syscall" 549version = "0.5.18" 550source = "registry+https://github.com/rust-lang/crates.io-index" 551checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d" 552dependencies = [ 553 "bitflags", 554] 555 556[[package]] 557name = "rustc_version" 558version = "0.4.1" 559source = "registry+https://github.com/rust-lang/crates.io-index" 560checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92" 561dependencies = [ 562 "semver", 563] 564 565[[package]] 566name = "rustversion" 567version = "1.0.22" 568source = "registry+https://github.com/rust-lang/crates.io-index" 569checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d" 570 571[[package]] 572name = "scopeguard" 573version = "1.2.0" 574source = "registry+https://github.com/rust-lang/crates.io-index" 575checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 576 577[[package]] 578name = "semver" 579version = "1.0.27" 580source = "registry+https://github.com/rust-lang/crates.io-index" 581checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2" 582 583[[package]] 584name = "serde" 585version = "1.0.228" 586source = "registry+https://github.com/rust-lang/crates.io-index" 587checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e" 588dependencies = [ 589 "serde_core", 590 "serde_derive", 591] 592 593[[package]] 594name = "serde_core" 595version = "1.0.228" 596source = "registry+https://github.com/rust-lang/crates.io-index" 597checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad" 598dependencies = [ 599 "serde_derive", 600] 601 602[[package]] 603name = "serde_derive" 604version = "1.0.228" 605source = "registry+https://github.com/rust-lang/crates.io-index" 606checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79" 607dependencies = [ 608 "proc-macro2", 609 "quote", 610 "syn", 611] 612 613[[package]] 614name = "server" 615version = "0.1.0" 616dependencies = [ 617 "anyhow", 618 "bevy_math", 619 "felix-net", 620 "nanoid", 621] 622 623[[package]] 624name = "smallvec" 625version = "1.15.1" 626source = "registry+https://github.com/rust-lang/crates.io-index" 627checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" 628 629[[package]] 630name = "smol_str" 631version = "0.2.2" 632source = "registry+https://github.com/rust-lang/crates.io-index" 633checksum = "dd538fb6910ac1099850255cf94a94df6551fbdd602454387d0adb2d1ca6dead" 634dependencies = [ 635 "serde", 636] 637 638[[package]] 639name = "spin" 640version = "0.10.0" 641source = "registry+https://github.com/rust-lang/crates.io-index" 642checksum = "d5fe4ccb98d9c292d56fec89a5e07da7fc4cf0dc11e156b41793132775d3e591" 643dependencies = [ 644 "portable-atomic", 645] 646 647[[package]] 648name = "syn" 649version = "2.0.111" 650source = "registry+https://github.com/rust-lang/crates.io-index" 651checksum = "390cc9a294ab71bdb1aa2e99d13be9c753cd2d7bd6560c77118597410c4d2e87" 652dependencies = [ 653 "proc-macro2", 654 "quote", 655 "unicode-ident", 656] 657 658[[package]] 659name = "thiserror" 660version = "2.0.17" 661source = "registry+https://github.com/rust-lang/crates.io-index" 662checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8" 663dependencies = [ 664 "thiserror-impl", 665] 666 667[[package]] 668name = "thiserror-impl" 669version = "2.0.17" 670source = "registry+https://github.com/rust-lang/crates.io-index" 671checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913" 672dependencies = [ 673 "proc-macro2", 674 "quote", 675 "syn", 676] 677 678[[package]] 679name = "toml_datetime" 680version = "0.7.5+spec-1.1.0" 681source = "registry+https://github.com/rust-lang/crates.io-index" 682checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347" 683dependencies = [ 684 "serde_core", 685] 686 687[[package]] 688name = "toml_edit" 689version = "0.23.10+spec-1.0.0" 690source = "registry+https://github.com/rust-lang/crates.io-index" 691checksum = "84c8b9f757e028cee9fa244aea147aab2a9ec09d5325a9b01e0a49730c2b5269" 692dependencies = [ 693 "indexmap", 694 "toml_datetime", 695 "toml_parser", 696 "winnow", 697] 698 699[[package]] 700name = "toml_parser" 701version = "1.0.6+spec-1.1.0" 702source = "registry+https://github.com/rust-lang/crates.io-index" 703checksum = "a3198b4b0a8e11f09dd03e133c0280504d0801269e9afa46362ffde1cbeebf44" 704dependencies = [ 705 "winnow", 706] 707 708[[package]] 709name = "typeid" 710version = "1.0.3" 711source = "registry+https://github.com/rust-lang/crates.io-index" 712checksum = "bc7d623258602320d5c55d1bc22793b57daff0ec7efc270ea7d55ce1d5f5471c" 713 714[[package]] 715name = "unicode-ident" 716version = "1.0.22" 717source = "registry+https://github.com/rust-lang/crates.io-index" 718checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5" 719 720[[package]] 721name = "uuid" 722version = "1.19.0" 723source = "registry+https://github.com/rust-lang/crates.io-index" 724checksum = "e2e054861b4bd027cd373e18e8d8d8e6548085000e41290d95ce0c373a654b4a" 725dependencies = [ 726 "getrandom 0.3.4", 727 "js-sys", 728 "serde_core", 729 "wasm-bindgen", 730] 731 732[[package]] 733name = "variadics_please" 734version = "1.1.0" 735source = "registry+https://github.com/rust-lang/crates.io-index" 736checksum = "41b6d82be61465f97d42bd1d15bf20f3b0a3a0905018f38f9d6f6962055b0b5c" 737dependencies = [ 738 "proc-macro2", 739 "quote", 740 "syn", 741] 742 743[[package]] 744name = "wasi" 745version = "0.11.1+wasi-snapshot-preview1" 746source = "registry+https://github.com/rust-lang/crates.io-index" 747checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" 748 749[[package]] 750name = "wasip2" 751version = "1.0.1+wasi-0.2.4" 752source = "registry+https://github.com/rust-lang/crates.io-index" 753checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7" 754dependencies = [ 755 "wit-bindgen", 756] 757 758[[package]] 759name = "wasm-bindgen" 760version = "0.2.106" 761source = "registry+https://github.com/rust-lang/crates.io-index" 762checksum = "0d759f433fa64a2d763d1340820e46e111a7a5ab75f993d1852d70b03dbb80fd" 763dependencies = [ 764 "cfg-if", 765 "once_cell", 766 "rustversion", 767 "wasm-bindgen-macro", 768 "wasm-bindgen-shared", 769] 770 771[[package]] 772name = "wasm-bindgen-futures" 773version = "0.4.56" 774source = "registry+https://github.com/rust-lang/crates.io-index" 775checksum = "836d9622d604feee9e5de25ac10e3ea5f2d65b41eac0d9ce72eb5deae707ce7c" 776dependencies = [ 777 "cfg-if", 778 "js-sys", 779 "once_cell", 780 "wasm-bindgen", 781 "web-sys", 782] 783 784[[package]] 785name = "wasm-bindgen-macro" 786version = "0.2.106" 787source = "registry+https://github.com/rust-lang/crates.io-index" 788checksum = "48cb0d2638f8baedbc542ed444afc0644a29166f1595371af4fecf8ce1e7eeb3" 789dependencies = [ 790 "quote", 791 "wasm-bindgen-macro-support", 792] 793 794[[package]] 795name = "wasm-bindgen-macro-support" 796version = "0.2.106" 797source = "registry+https://github.com/rust-lang/crates.io-index" 798checksum = "cefb59d5cd5f92d9dcf80e4683949f15ca4b511f4ac0a6e14d4e1ac60c6ecd40" 799dependencies = [ 800 "bumpalo", 801 "proc-macro2", 802 "quote", 803 "syn", 804 "wasm-bindgen-shared", 805] 806 807[[package]] 808name = "wasm-bindgen-shared" 809version = "0.2.106" 810source = "registry+https://github.com/rust-lang/crates.io-index" 811checksum = "cbc538057e648b67f72a982e708d485b2efa771e1ac05fec311f9f63e5800db4" 812dependencies = [ 813 "unicode-ident", 814] 815 816[[package]] 817name = "web-sys" 818version = "0.3.83" 819source = "registry+https://github.com/rust-lang/crates.io-index" 820checksum = "9b32828d774c412041098d182a8b38b16ea816958e07cf40eec2bc080ae137ac" 821dependencies = [ 822 "js-sys", 823 "wasm-bindgen", 824] 825 826[[package]] 827name = "wgpu-types" 828version = "26.0.0" 829source = "registry+https://github.com/rust-lang/crates.io-index" 830checksum = "eca7a8d8af57c18f57d393601a1fb159ace8b2328f1b6b5f80893f7d672c9ae2" 831dependencies = [ 832 "bitflags", 833 "bytemuck", 834 "js-sys", 835 "log", 836 "serde", 837 "thiserror", 838 "web-sys", 839] 840 841[[package]] 842name = "windows-link" 843version = "0.2.1" 844source = "registry+https://github.com/rust-lang/crates.io-index" 845checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5" 846 847[[package]] 848name = "winnow" 849version = "0.7.14" 850source = "registry+https://github.com/rust-lang/crates.io-index" 851checksum = "5a5364e9d77fcdeeaa6062ced926ee3381faa2ee02d3eb83a5c27a8825540829" 852dependencies = [ 853 "memchr", 854] 855 856[[package]] 857name = "wit-bindgen" 858version = "0.46.0" 859source = "registry+https://github.com/rust-lang/crates.io-index" 860checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59" 861 862[[package]] 863name = "zerocopy" 864version = "0.8.31" 865source = "registry+https://github.com/rust-lang/crates.io-index" 866checksum = "fd74ec98b9250adb3ca554bdde269adf631549f51d8a8f8f0a10b50f1cb298c3" 867dependencies = [ 868 "zerocopy-derive", 869] 870 871[[package]] 872name = "zerocopy-derive" 873version = "0.8.31" 874source = "registry+https://github.com/rust-lang/crates.io-index" 875checksum = "d8a8d209fdf45cf5138cbb5a506f6b52522a25afccc534d1475dad8e31105c6a" 876dependencies = [ 877 "proc-macro2", 878 "quote", 879 "syn", 880]