(very WIP) Slime world parsing in Rust
at master 105 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 = "ab_glyph" 7version = "0.2.31" 8source = "registry+https://github.com/rust-lang/crates.io-index" 9checksum = "e074464580a518d16a7126262fffaaa47af89d4099d4cb403f8ed938ba12ee7d" 10dependencies = [ 11 "ab_glyph_rasterizer", 12 "owned_ttf_parser", 13] 14 15[[package]] 16name = "ab_glyph_rasterizer" 17version = "0.1.10" 18source = "registry+https://github.com/rust-lang/crates.io-index" 19checksum = "366ffbaa4442f4684d91e2cd7c5ea7c4ed8add41959a31447066e279e432b618" 20 21[[package]] 22name = "accesskit" 23version = "0.19.0" 24source = "registry+https://github.com/rust-lang/crates.io-index" 25checksum = "e25ae84c0260bdf5df07796d7cc4882460de26a2b406ec0e6c42461a723b271b" 26 27[[package]] 28name = "accesskit_atspi_common" 29version = "0.12.0" 30source = "registry+https://github.com/rust-lang/crates.io-index" 31checksum = "29bd41de2e54451a8ca0dd95ebf45b54d349d29ebceb7f20be264eee14e3d477" 32dependencies = [ 33 "accesskit", 34 "accesskit_consumer", 35 "atspi-common", 36 "serde", 37 "thiserror 1.0.69", 38 "zvariant", 39] 40 41[[package]] 42name = "accesskit_consumer" 43version = "0.28.0" 44source = "registry+https://github.com/rust-lang/crates.io-index" 45checksum = "8bfae7c152994a31dc7d99b8eeac7784a919f71d1b306f4b83217e110fd3824c" 46dependencies = [ 47 "accesskit", 48 "hashbrown", 49] 50 51[[package]] 52name = "accesskit_macos" 53version = "0.20.0" 54source = "registry+https://github.com/rust-lang/crates.io-index" 55checksum = "692dd318ff8a7a0ffda67271c4bd10cf32249656f4e49390db0b26ca92b095f2" 56dependencies = [ 57 "accesskit", 58 "accesskit_consumer", 59 "hashbrown", 60 "objc2 0.5.2", 61 "objc2-app-kit 0.2.2", 62 "objc2-foundation 0.2.2", 63] 64 65[[package]] 66name = "accesskit_unix" 67version = "0.15.0" 68source = "registry+https://github.com/rust-lang/crates.io-index" 69checksum = "c5f7474c36606d0fe4f438291d667bae7042ea2760f506650ad2366926358fc8" 70dependencies = [ 71 "accesskit", 72 "accesskit_atspi_common", 73 "async-channel", 74 "async-executor", 75 "async-task", 76 "atspi", 77 "futures-lite", 78 "futures-util", 79 "serde", 80 "zbus", 81] 82 83[[package]] 84name = "accesskit_windows" 85version = "0.27.0" 86source = "registry+https://github.com/rust-lang/crates.io-index" 87checksum = "70a042b62c9c05bf7b616f015515c17d2813f3ba89978d6f4fc369735d60700a" 88dependencies = [ 89 "accesskit", 90 "accesskit_consumer", 91 "hashbrown", 92 "static_assertions", 93 "windows", 94 "windows-core", 95] 96 97[[package]] 98name = "accesskit_winit" 99version = "0.27.0" 100source = "registry+https://github.com/rust-lang/crates.io-index" 101checksum = "5c1f0d3d13113d8857542a4f8d1a1c24d1dc1527b77aee8426127f4901588708" 102dependencies = [ 103 "accesskit", 104 "accesskit_macos", 105 "accesskit_unix", 106 "accesskit_windows", 107 "raw-window-handle", 108 "winit", 109] 110 111[[package]] 112name = "addr2line" 113version = "0.24.2" 114source = "registry+https://github.com/rust-lang/crates.io-index" 115checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1" 116dependencies = [ 117 "gimli", 118] 119 120[[package]] 121name = "adler2" 122version = "2.0.1" 123source = "registry+https://github.com/rust-lang/crates.io-index" 124checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa" 125 126[[package]] 127name = "ahash" 128version = "0.8.12" 129source = "registry+https://github.com/rust-lang/crates.io-index" 130checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75" 131dependencies = [ 132 "cfg-if", 133 "getrandom", 134 "once_cell", 135 "version_check", 136 "zerocopy", 137] 138 139[[package]] 140name = "aho-corasick" 141version = "1.1.3" 142source = "registry+https://github.com/rust-lang/crates.io-index" 143checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" 144dependencies = [ 145 "memchr", 146] 147 148[[package]] 149name = "android-activity" 150version = "0.6.0" 151source = "registry+https://github.com/rust-lang/crates.io-index" 152checksum = "ef6978589202a00cd7e118380c448a08b6ed394c3a8df3a430d0898e3a42d046" 153dependencies = [ 154 "android-properties", 155 "bitflags 2.9.2", 156 "cc", 157 "cesu8", 158 "jni", 159 "jni-sys", 160 "libc", 161 "log", 162 "ndk", 163 "ndk-context", 164 "ndk-sys", 165 "num_enum", 166 "thiserror 1.0.69", 167] 168 169[[package]] 170name = "android-properties" 171version = "0.2.2" 172source = "registry+https://github.com/rust-lang/crates.io-index" 173checksum = "fc7eb209b1518d6bb87b283c20095f5228ecda460da70b44f0802523dea6da04" 174 175[[package]] 176name = "arboard" 177version = "3.6.0" 178source = "registry+https://github.com/rust-lang/crates.io-index" 179checksum = "55f533f8e0af236ffe5eb979b99381df3258853f00ba2e44b6e1955292c75227" 180dependencies = [ 181 "clipboard-win", 182 "image", 183 "log", 184 "objc2 0.6.2", 185 "objc2-app-kit 0.3.1", 186 "objc2-core-foundation", 187 "objc2-core-graphics", 188 "objc2-foundation 0.3.1", 189 "parking_lot", 190 "percent-encoding", 191 "windows-sys 0.59.0", 192 "x11rb", 193] 194 195[[package]] 196name = "arrayvec" 197version = "0.7.6" 198source = "registry+https://github.com/rust-lang/crates.io-index" 199checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50" 200 201[[package]] 202name = "as-raw-xcb-connection" 203version = "1.0.1" 204source = "registry+https://github.com/rust-lang/crates.io-index" 205checksum = "175571dd1d178ced59193a6fc02dde1b972eb0bc56c892cde9beeceac5bf0f6b" 206 207[[package]] 208name = "ashpd" 209version = "0.11.0" 210source = "registry+https://github.com/rust-lang/crates.io-index" 211checksum = "6cbdf310d77fd3aaee6ea2093db7011dc2d35d2eb3481e5607f1f8d942ed99df" 212dependencies = [ 213 "async-fs", 214 "async-net", 215 "enumflags2", 216 "futures-channel", 217 "futures-util", 218 "rand", 219 "raw-window-handle", 220 "serde", 221 "serde_repr", 222 "url", 223 "wayland-backend", 224 "wayland-client", 225 "wayland-protocols", 226 "zbus", 227] 228 229[[package]] 230name = "async-broadcast" 231version = "0.7.2" 232source = "registry+https://github.com/rust-lang/crates.io-index" 233checksum = "435a87a52755b8f27fcf321ac4f04b2802e337c8c4872923137471ec39c37532" 234dependencies = [ 235 "event-listener", 236 "event-listener-strategy", 237 "futures-core", 238 "pin-project-lite", 239] 240 241[[package]] 242name = "async-channel" 243version = "2.5.0" 244source = "registry+https://github.com/rust-lang/crates.io-index" 245checksum = "924ed96dd52d1b75e9c1a3e6275715fd320f5f9439fb5a4a11fa51f4221158d2" 246dependencies = [ 247 "concurrent-queue", 248 "event-listener-strategy", 249 "futures-core", 250 "pin-project-lite", 251] 252 253[[package]] 254name = "async-executor" 255version = "1.13.2" 256source = "registry+https://github.com/rust-lang/crates.io-index" 257checksum = "bb812ffb58524bdd10860d7d974e2f01cc0950c2438a74ee5ec2e2280c6c4ffa" 258dependencies = [ 259 "async-task", 260 "concurrent-queue", 261 "fastrand", 262 "futures-lite", 263 "pin-project-lite", 264 "slab", 265] 266 267[[package]] 268name = "async-fs" 269version = "2.1.3" 270source = "registry+https://github.com/rust-lang/crates.io-index" 271checksum = "09f7e37c0ed80b2a977691c47dae8625cfb21e205827106c64f7c588766b2e50" 272dependencies = [ 273 "async-lock", 274 "blocking", 275 "futures-lite", 276] 277 278[[package]] 279name = "async-io" 280version = "2.5.0" 281source = "registry+https://github.com/rust-lang/crates.io-index" 282checksum = "19634d6336019ef220f09fd31168ce5c184b295cbf80345437cc36094ef223ca" 283dependencies = [ 284 "async-lock", 285 "cfg-if", 286 "concurrent-queue", 287 "futures-io", 288 "futures-lite", 289 "parking", 290 "polling", 291 "rustix 1.0.8", 292 "slab", 293 "windows-sys 0.60.2", 294] 295 296[[package]] 297name = "async-lock" 298version = "3.4.1" 299source = "registry+https://github.com/rust-lang/crates.io-index" 300checksum = "5fd03604047cee9b6ce9de9f70c6cd540a0520c813cbd49bae61f33ab80ed1dc" 301dependencies = [ 302 "event-listener", 303 "event-listener-strategy", 304 "pin-project-lite", 305] 306 307[[package]] 308name = "async-net" 309version = "2.0.0" 310source = "registry+https://github.com/rust-lang/crates.io-index" 311checksum = "b948000fad4873c1c9339d60f2623323a0cfd3816e5181033c6a5cb68b2accf7" 312dependencies = [ 313 "async-io", 314 "blocking", 315 "futures-lite", 316] 317 318[[package]] 319name = "async-process" 320version = "2.4.0" 321source = "registry+https://github.com/rust-lang/crates.io-index" 322checksum = "65daa13722ad51e6ab1a1b9c01299142bc75135b337923cfa10e79bbbd669f00" 323dependencies = [ 324 "async-channel", 325 "async-io", 326 "async-lock", 327 "async-signal", 328 "async-task", 329 "blocking", 330 "cfg-if", 331 "event-listener", 332 "futures-lite", 333 "rustix 1.0.8", 334] 335 336[[package]] 337name = "async-recursion" 338version = "1.1.1" 339source = "registry+https://github.com/rust-lang/crates.io-index" 340checksum = "3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11" 341dependencies = [ 342 "proc-macro2", 343 "quote", 344 "syn", 345] 346 347[[package]] 348name = "async-signal" 349version = "0.2.12" 350source = "registry+https://github.com/rust-lang/crates.io-index" 351checksum = "f567af260ef69e1d52c2b560ce0ea230763e6fbb9214a85d768760a920e3e3c1" 352dependencies = [ 353 "async-io", 354 "async-lock", 355 "atomic-waker", 356 "cfg-if", 357 "futures-core", 358 "futures-io", 359 "rustix 1.0.8", 360 "signal-hook-registry", 361 "slab", 362 "windows-sys 0.60.2", 363] 364 365[[package]] 366name = "async-task" 367version = "4.7.1" 368source = "registry+https://github.com/rust-lang/crates.io-index" 369checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de" 370 371[[package]] 372name = "async-trait" 373version = "0.1.89" 374source = "registry+https://github.com/rust-lang/crates.io-index" 375checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb" 376dependencies = [ 377 "proc-macro2", 378 "quote", 379 "syn", 380] 381 382[[package]] 383name = "atomic-waker" 384version = "1.1.2" 385source = "registry+https://github.com/rust-lang/crates.io-index" 386checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" 387 388[[package]] 389name = "atspi" 390version = "0.25.0" 391source = "registry+https://github.com/rust-lang/crates.io-index" 392checksum = "c83247582e7508838caf5f316c00791eee0e15c0bf743e6880585b867e16815c" 393dependencies = [ 394 "atspi-common", 395 "atspi-connection", 396 "atspi-proxies", 397] 398 399[[package]] 400name = "atspi-common" 401version = "0.9.0" 402source = "registry+https://github.com/rust-lang/crates.io-index" 403checksum = "33dfc05e7cdf90988a197803bf24f5788f94f7c94a69efa95683e8ffe76cfdfb" 404dependencies = [ 405 "enumflags2", 406 "serde", 407 "static_assertions", 408 "zbus", 409 "zbus-lockstep", 410 "zbus-lockstep-macros", 411 "zbus_names", 412 "zvariant", 413] 414 415[[package]] 416name = "atspi-connection" 417version = "0.9.0" 418source = "registry+https://github.com/rust-lang/crates.io-index" 419checksum = "4193d51303d8332304056ae0004714256b46b6635a5c556109b319c0d3784938" 420dependencies = [ 421 "atspi-common", 422 "atspi-proxies", 423 "futures-lite", 424 "zbus", 425] 426 427[[package]] 428name = "atspi-proxies" 429version = "0.9.0" 430source = "registry+https://github.com/rust-lang/crates.io-index" 431checksum = "d2eebcb9e7e76f26d0bcfd6f0295e1cd1e6f33bedbc5698a971db8dc43d7751c" 432dependencies = [ 433 "atspi-common", 434 "serde", 435 "zbus", 436] 437 438[[package]] 439name = "autocfg" 440version = "1.5.0" 441source = "registry+https://github.com/rust-lang/crates.io-index" 442checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8" 443 444[[package]] 445name = "backtrace" 446version = "0.3.75" 447source = "registry+https://github.com/rust-lang/crates.io-index" 448checksum = "6806a6321ec58106fea15becdad98371e28d92ccbc7c8f1b3b6dd724fe8f1002" 449dependencies = [ 450 "addr2line", 451 "cfg-if", 452 "libc", 453 "miniz_oxide", 454 "object", 455 "rustc-demangle", 456 "windows-targets 0.52.6", 457] 458 459[[package]] 460name = "bit-set" 461version = "0.8.0" 462source = "registry+https://github.com/rust-lang/crates.io-index" 463checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3" 464dependencies = [ 465 "bit-vec", 466] 467 468[[package]] 469name = "bit-vec" 470version = "0.8.0" 471source = "registry+https://github.com/rust-lang/crates.io-index" 472checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7" 473 474[[package]] 475name = "bitflags" 476version = "1.3.2" 477source = "registry+https://github.com/rust-lang/crates.io-index" 478checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 479 480[[package]] 481name = "bitflags" 482version = "2.9.2" 483source = "registry+https://github.com/rust-lang/crates.io-index" 484checksum = "6a65b545ab31d687cff52899d4890855fec459eb6afe0da6417b8a18da87aa29" 485dependencies = [ 486 "serde", 487] 488 489[[package]] 490name = "block2" 491version = "0.5.1" 492source = "registry+https://github.com/rust-lang/crates.io-index" 493checksum = "2c132eebf10f5cad5289222520a4a058514204aed6d791f1cf4fe8088b82d15f" 494dependencies = [ 495 "objc2 0.5.2", 496] 497 498[[package]] 499name = "block2" 500version = "0.6.1" 501source = "registry+https://github.com/rust-lang/crates.io-index" 502checksum = "340d2f0bdb2a43c1d3cd40513185b2bd7def0aa1052f956455114bc98f82dcf2" 503dependencies = [ 504 "objc2 0.6.2", 505] 506 507[[package]] 508name = "blocking" 509version = "1.6.2" 510source = "registry+https://github.com/rust-lang/crates.io-index" 511checksum = "e83f8d02be6967315521be875afa792a316e28d57b5a2d401897e2a7921b7f21" 512dependencies = [ 513 "async-channel", 514 "async-task", 515 "futures-io", 516 "futures-lite", 517 "piper", 518] 519 520[[package]] 521name = "bumpalo" 522version = "3.19.0" 523source = "registry+https://github.com/rust-lang/crates.io-index" 524checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43" 525 526[[package]] 527name = "bytemuck" 528version = "1.23.2" 529source = "registry+https://github.com/rust-lang/crates.io-index" 530checksum = "3995eaeebcdf32f91f980d360f78732ddc061097ab4e39991ae7a6ace9194677" 531dependencies = [ 532 "bytemuck_derive", 533] 534 535[[package]] 536name = "bytemuck_derive" 537version = "1.10.1" 538source = "registry+https://github.com/rust-lang/crates.io-index" 539checksum = "4f154e572231cb6ba2bd1176980827e3d5dc04cc183a75dea38109fbdd672d29" 540dependencies = [ 541 "proc-macro2", 542 "quote", 543 "syn", 544] 545 546[[package]] 547name = "byteorder" 548version = "1.5.0" 549source = "registry+https://github.com/rust-lang/crates.io-index" 550checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" 551 552[[package]] 553name = "byteorder-lite" 554version = "0.1.0" 555source = "registry+https://github.com/rust-lang/crates.io-index" 556checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495" 557 558[[package]] 559name = "bytes" 560version = "1.10.1" 561source = "registry+https://github.com/rust-lang/crates.io-index" 562checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a" 563 564[[package]] 565name = "calloop" 566version = "0.13.0" 567source = "registry+https://github.com/rust-lang/crates.io-index" 568checksum = "b99da2f8558ca23c71f4fd15dc57c906239752dd27ff3c00a1d56b685b7cbfec" 569dependencies = [ 570 "bitflags 2.9.2", 571 "log", 572 "polling", 573 "rustix 0.38.44", 574 "slab", 575 "thiserror 1.0.69", 576] 577 578[[package]] 579name = "calloop-wayland-source" 580version = "0.3.0" 581source = "registry+https://github.com/rust-lang/crates.io-index" 582checksum = "95a66a987056935f7efce4ab5668920b5d0dac4a7c99991a67395f13702ddd20" 583dependencies = [ 584 "calloop", 585 "rustix 0.38.44", 586 "wayland-backend", 587 "wayland-client", 588] 589 590[[package]] 591name = "cc" 592version = "1.2.33" 593source = "registry+https://github.com/rust-lang/crates.io-index" 594checksum = "3ee0f8803222ba5a7e2777dd72ca451868909b1ac410621b676adf07280e9b5f" 595dependencies = [ 596 "jobserver", 597 "libc", 598 "shlex", 599] 600 601[[package]] 602name = "cesu8" 603version = "1.1.0" 604source = "registry+https://github.com/rust-lang/crates.io-index" 605checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c" 606 607[[package]] 608name = "cfg-if" 609version = "1.0.1" 610source = "registry+https://github.com/rust-lang/crates.io-index" 611checksum = "9555578bc9e57714c812a1f84e4fc5b4d21fcb063490c624de019f7464c91268" 612 613[[package]] 614name = "cfg_aliases" 615version = "0.2.1" 616source = "registry+https://github.com/rust-lang/crates.io-index" 617checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" 618 619[[package]] 620name = "cgl" 621version = "0.3.2" 622source = "registry+https://github.com/rust-lang/crates.io-index" 623checksum = "0ced0551234e87afee12411d535648dd89d2e7f34c78b753395567aff3d447ff" 624dependencies = [ 625 "libc", 626] 627 628[[package]] 629name = "clipboard-win" 630version = "5.4.1" 631source = "registry+https://github.com/rust-lang/crates.io-index" 632checksum = "bde03770d3df201d4fb868f2c9c59e66a3e4e2bd06692a0fe701e7103c7e84d4" 633dependencies = [ 634 "error-code", 635] 636 637[[package]] 638name = "codespan-reporting" 639version = "0.12.0" 640source = "registry+https://github.com/rust-lang/crates.io-index" 641checksum = "fe6d2e5af09e8c8ad56c969f2157a3d4238cebc7c55f0a517728c38f7b200f81" 642dependencies = [ 643 "serde", 644 "termcolor", 645 "unicode-width", 646] 647 648[[package]] 649name = "color-eyre" 650version = "0.6.5" 651source = "registry+https://github.com/rust-lang/crates.io-index" 652checksum = "e5920befb47832a6d61ee3a3a846565cfa39b331331e68a3b1d1116630f2f26d" 653dependencies = [ 654 "backtrace", 655 "color-spantrace", 656 "eyre", 657 "indenter", 658 "once_cell", 659 "owo-colors", 660 "tracing-error", 661] 662 663[[package]] 664name = "color-spantrace" 665version = "0.3.0" 666source = "registry+https://github.com/rust-lang/crates.io-index" 667checksum = "b8b88ea9df13354b55bc7234ebcce36e6ef896aca2e42a15de9e10edce01b427" 668dependencies = [ 669 "once_cell", 670 "owo-colors", 671 "tracing-core", 672 "tracing-error", 673] 674 675[[package]] 676name = "combine" 677version = "4.6.7" 678source = "registry+https://github.com/rust-lang/crates.io-index" 679checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd" 680dependencies = [ 681 "bytes", 682 "memchr", 683] 684 685[[package]] 686name = "concurrent-queue" 687version = "2.5.0" 688source = "registry+https://github.com/rust-lang/crates.io-index" 689checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973" 690dependencies = [ 691 "crossbeam-utils", 692] 693 694[[package]] 695name = "core-foundation" 696version = "0.9.4" 697source = "registry+https://github.com/rust-lang/crates.io-index" 698checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" 699dependencies = [ 700 "core-foundation-sys", 701 "libc", 702] 703 704[[package]] 705name = "core-foundation" 706version = "0.10.1" 707source = "registry+https://github.com/rust-lang/crates.io-index" 708checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6" 709dependencies = [ 710 "core-foundation-sys", 711 "libc", 712] 713 714[[package]] 715name = "core-foundation-sys" 716version = "0.8.7" 717source = "registry+https://github.com/rust-lang/crates.io-index" 718checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" 719 720[[package]] 721name = "core-graphics" 722version = "0.23.2" 723source = "registry+https://github.com/rust-lang/crates.io-index" 724checksum = "c07782be35f9e1140080c6b96f0d44b739e2278479f64e02fdab4e32dfd8b081" 725dependencies = [ 726 "bitflags 1.3.2", 727 "core-foundation 0.9.4", 728 "core-graphics-types", 729 "foreign-types", 730 "libc", 731] 732 733[[package]] 734name = "core-graphics-types" 735version = "0.1.3" 736source = "registry+https://github.com/rust-lang/crates.io-index" 737checksum = "45390e6114f68f718cc7a830514a96f903cccd70d02a8f6d9f643ac4ba45afaf" 738dependencies = [ 739 "bitflags 1.3.2", 740 "core-foundation 0.9.4", 741 "libc", 742] 743 744[[package]] 745name = "crc32fast" 746version = "1.5.0" 747source = "registry+https://github.com/rust-lang/crates.io-index" 748checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511" 749dependencies = [ 750 "cfg-if", 751] 752 753[[package]] 754name = "crossbeam-utils" 755version = "0.8.21" 756source = "registry+https://github.com/rust-lang/crates.io-index" 757checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28" 758 759[[package]] 760name = "crunchy" 761version = "0.2.4" 762source = "registry+https://github.com/rust-lang/crates.io-index" 763checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5" 764 765[[package]] 766name = "cursor-icon" 767version = "1.2.0" 768source = "registry+https://github.com/rust-lang/crates.io-index" 769checksum = "f27ae1dd37df86211c42e150270f82743308803d90a6f6e6651cd730d5e1732f" 770 771[[package]] 772name = "dispatch" 773version = "0.2.0" 774source = "registry+https://github.com/rust-lang/crates.io-index" 775checksum = "bd0c93bb4b0c6d9b77f4435b0ae98c24d17f1c45b2ff844c6151a07256ca923b" 776 777[[package]] 778name = "dispatch2" 779version = "0.3.0" 780source = "registry+https://github.com/rust-lang/crates.io-index" 781checksum = "89a09f22a6c6069a18470eb92d2298acf25463f14256d24778e1230d789a2aec" 782dependencies = [ 783 "bitflags 2.9.2", 784 "block2 0.6.1", 785 "libc", 786 "objc2 0.6.2", 787] 788 789[[package]] 790name = "displaydoc" 791version = "0.2.5" 792source = "registry+https://github.com/rust-lang/crates.io-index" 793checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" 794dependencies = [ 795 "proc-macro2", 796 "quote", 797 "syn", 798] 799 800[[package]] 801name = "dlib" 802version = "0.5.2" 803source = "registry+https://github.com/rust-lang/crates.io-index" 804checksum = "330c60081dcc4c72131f8eb70510f1ac07223e5d4163db481a04a0befcffa412" 805dependencies = [ 806 "libloading", 807] 808 809[[package]] 810name = "document-features" 811version = "0.2.11" 812source = "registry+https://github.com/rust-lang/crates.io-index" 813checksum = "95249b50c6c185bee49034bcb378a49dc2b5dff0be90ff6616d31d64febab05d" 814dependencies = [ 815 "litrs", 816] 817 818[[package]] 819name = "downcast-rs" 820version = "1.2.1" 821source = "registry+https://github.com/rust-lang/crates.io-index" 822checksum = "75b325c5dbd37f80359721ad39aca5a29fb04c89279657cffdda8736d0c0b9d2" 823 824[[package]] 825name = "dpi" 826version = "0.1.2" 827source = "registry+https://github.com/rust-lang/crates.io-index" 828checksum = "d8b14ccef22fc6f5a8f4d7d768562a182c04ce9a3b3157b91390b52ddfdf1a76" 829 830[[package]] 831name = "ecolor" 832version = "0.32.1" 833source = "registry+https://github.com/rust-lang/crates.io-index" 834checksum = "b6a7fc3172c2ef56966b2ce4f84177e159804c40b9a84de8861558ce4a59f422" 835dependencies = [ 836 "bytemuck", 837 "emath", 838] 839 840[[package]] 841name = "eframe" 842version = "0.32.1" 843source = "registry+https://github.com/rust-lang/crates.io-index" 844checksum = "34037a80dc03a4147e1684bff4e4fdab2b1408d715d7b78470cd3179258964b9" 845dependencies = [ 846 "ahash", 847 "bytemuck", 848 "document-features", 849 "egui", 850 "egui-wgpu", 851 "egui-winit", 852 "egui_glow", 853 "glutin", 854 "glutin-winit", 855 "image", 856 "js-sys", 857 "log", 858 "objc2 0.5.2", 859 "objc2-app-kit 0.2.2", 860 "objc2-foundation 0.2.2", 861 "parking_lot", 862 "percent-encoding", 863 "pollster", 864 "profiling", 865 "raw-window-handle", 866 "static_assertions", 867 "wasm-bindgen", 868 "wasm-bindgen-futures", 869 "web-sys", 870 "web-time", 871 "wgpu", 872 "winapi", 873 "windows-sys 0.59.0", 874 "winit", 875] 876 877[[package]] 878name = "egui" 879version = "0.32.1" 880source = "registry+https://github.com/rust-lang/crates.io-index" 881checksum = "49e2be082f77715496b4a39fdc6f5dc7491fefe2833111781b8697ea6ee919a7" 882dependencies = [ 883 "accesskit", 884 "ahash", 885 "bitflags 2.9.2", 886 "emath", 887 "epaint", 888 "log", 889 "nohash-hasher", 890 "profiling", 891 "smallvec", 892 "unicode-segmentation", 893] 894 895[[package]] 896name = "egui-wgpu" 897version = "0.32.1" 898source = "registry+https://github.com/rust-lang/crates.io-index" 899checksum = "64c7277a171ec1b711080ddb3b0bfa1b3aa9358834d5386d39e83fbc16d61212" 900dependencies = [ 901 "ahash", 902 "bytemuck", 903 "document-features", 904 "egui", 905 "epaint", 906 "log", 907 "profiling", 908 "thiserror 1.0.69", 909 "type-map", 910 "web-time", 911 "wgpu", 912 "winit", 913] 914 915[[package]] 916name = "egui-winit" 917version = "0.32.1" 918source = "registry+https://github.com/rust-lang/crates.io-index" 919checksum = "fe6d8b0f8d6de4d43e794e343f03bacc3908aada931f0ed6fd7041871388a590" 920dependencies = [ 921 "accesskit_winit", 922 "ahash", 923 "arboard", 924 "bytemuck", 925 "egui", 926 "log", 927 "profiling", 928 "raw-window-handle", 929 "smithay-clipboard", 930 "web-time", 931 "webbrowser", 932 "winit", 933] 934 935[[package]] 936name = "egui_glow" 937version = "0.32.1" 938source = "registry+https://github.com/rust-lang/crates.io-index" 939checksum = "0ab645760288e42eab70283a5cccf44509a6f43b554351855d3c73594bfe3c23" 940dependencies = [ 941 "ahash", 942 "bytemuck", 943 "egui", 944 "glow", 945 "log", 946 "memoffset", 947 "profiling", 948 "wasm-bindgen", 949 "web-sys", 950 "winit", 951] 952 953[[package]] 954name = "emath" 955version = "0.32.1" 956source = "registry+https://github.com/rust-lang/crates.io-index" 957checksum = "935df67dc48fdeef132f2f7ada156ddc79e021344dd42c17f066b956bb88dde3" 958dependencies = [ 959 "bytemuck", 960] 961 962[[package]] 963name = "endi" 964version = "1.1.0" 965source = "registry+https://github.com/rust-lang/crates.io-index" 966checksum = "a3d8a32ae18130a3c84dd492d4215c3d913c3b07c6b63c2eb3eb7ff1101ab7bf" 967 968[[package]] 969name = "enumflags2" 970version = "0.7.12" 971source = "registry+https://github.com/rust-lang/crates.io-index" 972checksum = "1027f7680c853e056ebcec683615fb6fbbc07dbaa13b4d5d9442b146ded4ecef" 973dependencies = [ 974 "enumflags2_derive", 975 "serde", 976] 977 978[[package]] 979name = "enumflags2_derive" 980version = "0.7.12" 981source = "registry+https://github.com/rust-lang/crates.io-index" 982checksum = "67c78a4d8fdf9953a5c9d458f9efe940fd97a0cab0941c075a813ac594733827" 983dependencies = [ 984 "proc-macro2", 985 "quote", 986 "syn", 987] 988 989[[package]] 990name = "epaint" 991version = "0.32.1" 992source = "registry+https://github.com/rust-lang/crates.io-index" 993checksum = "b66fc0a5a9d322917de9bd3ac7d426ca8aa3127fbf1e76fae5b6b25e051e06a3" 994dependencies = [ 995 "ab_glyph", 996 "ahash", 997 "bytemuck", 998 "ecolor", 999 "emath", 1000 "epaint_default_fonts", 1001 "log", 1002 "nohash-hasher", 1003 "parking_lot", 1004 "profiling", 1005] 1006 1007[[package]] 1008name = "epaint_default_fonts" 1009version = "0.32.1" 1010source = "registry+https://github.com/rust-lang/crates.io-index" 1011checksum = "4f6cf8ce0fb817000aa24f5e630bda904a353536bd430b83ebc1dceee95b4a3a" 1012 1013[[package]] 1014name = "equivalent" 1015version = "1.0.2" 1016source = "registry+https://github.com/rust-lang/crates.io-index" 1017checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" 1018 1019[[package]] 1020name = "errno" 1021version = "0.3.13" 1022source = "registry+https://github.com/rust-lang/crates.io-index" 1023checksum = "778e2ac28f6c47af28e4907f13ffd1e1ddbd400980a9abd7c8df189bf578a5ad" 1024dependencies = [ 1025 "libc", 1026 "windows-sys 0.60.2", 1027] 1028 1029[[package]] 1030name = "error-code" 1031version = "3.3.2" 1032source = "registry+https://github.com/rust-lang/crates.io-index" 1033checksum = "dea2df4cf52843e0452895c455a1a2cfbb842a1e7329671acf418fdc53ed4c59" 1034 1035[[package]] 1036name = "event-listener" 1037version = "5.4.1" 1038source = "registry+https://github.com/rust-lang/crates.io-index" 1039checksum = "e13b66accf52311f30a0db42147dadea9850cb48cd070028831ae5f5d4b856ab" 1040dependencies = [ 1041 "concurrent-queue", 1042 "parking", 1043 "pin-project-lite", 1044] 1045 1046[[package]] 1047name = "event-listener-strategy" 1048version = "0.5.4" 1049source = "registry+https://github.com/rust-lang/crates.io-index" 1050checksum = "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93" 1051dependencies = [ 1052 "event-listener", 1053 "pin-project-lite", 1054] 1055 1056[[package]] 1057name = "eyre" 1058version = "0.6.12" 1059source = "registry+https://github.com/rust-lang/crates.io-index" 1060checksum = "7cd915d99f24784cdc19fd37ef22b97e3ff0ae756c7e492e9fbfe897d61e2aec" 1061dependencies = [ 1062 "indenter", 1063 "once_cell", 1064] 1065 1066[[package]] 1067name = "fastnbt" 1068version = "2.5.0" 1069source = "registry+https://github.com/rust-lang/crates.io-index" 1070checksum = "7d4a73a95dc65551ccd98e1ecd1adb5d1ba5361146963b31f481ca42fc0520a3" 1071dependencies = [ 1072 "byteorder", 1073 "cesu8", 1074 "serde", 1075 "serde_bytes", 1076] 1077 1078[[package]] 1079name = "fastnbt" 1080version = "2.5.0" 1081source = "git+https://github.com/owengage/fastnbt#e2a5d8a7001d4f074ae99fd21bb485667934baeb" 1082dependencies = [ 1083 "byteorder", 1084 "cesu8", 1085 "serde", 1086 "serde_bytes", 1087] 1088 1089[[package]] 1090name = "fastrand" 1091version = "2.3.0" 1092source = "registry+https://github.com/rust-lang/crates.io-index" 1093checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be" 1094 1095[[package]] 1096name = "fdeflate" 1097version = "0.3.7" 1098source = "registry+https://github.com/rust-lang/crates.io-index" 1099checksum = "1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c" 1100dependencies = [ 1101 "simd-adler32", 1102] 1103 1104[[package]] 1105name = "flate2" 1106version = "1.1.2" 1107source = "registry+https://github.com/rust-lang/crates.io-index" 1108checksum = "4a3d7db9596fecd151c5f638c0ee5d5bd487b6e0ea232e5dc96d5250f6f94b1d" 1109dependencies = [ 1110 "crc32fast", 1111 "miniz_oxide", 1112] 1113 1114[[package]] 1115name = "foldhash" 1116version = "0.1.5" 1117source = "registry+https://github.com/rust-lang/crates.io-index" 1118checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2" 1119 1120[[package]] 1121name = "foreign-types" 1122version = "0.5.0" 1123source = "registry+https://github.com/rust-lang/crates.io-index" 1124checksum = "d737d9aa519fb7b749cbc3b962edcf310a8dd1f4b67c91c4f83975dbdd17d965" 1125dependencies = [ 1126 "foreign-types-macros", 1127 "foreign-types-shared", 1128] 1129 1130[[package]] 1131name = "foreign-types-macros" 1132version = "0.2.3" 1133source = "registry+https://github.com/rust-lang/crates.io-index" 1134checksum = "1a5c6c585bc94aaf2c7b51dd4c2ba22680844aba4c687be581871a6f518c5742" 1135dependencies = [ 1136 "proc-macro2", 1137 "quote", 1138 "syn", 1139] 1140 1141[[package]] 1142name = "foreign-types-shared" 1143version = "0.3.1" 1144source = "registry+https://github.com/rust-lang/crates.io-index" 1145checksum = "aa9a19cbb55df58761df49b23516a86d432839add4af60fc256da840f66ed35b" 1146 1147[[package]] 1148name = "form_urlencoded" 1149version = "1.2.1" 1150source = "registry+https://github.com/rust-lang/crates.io-index" 1151checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456" 1152dependencies = [ 1153 "percent-encoding", 1154] 1155 1156[[package]] 1157name = "futures-channel" 1158version = "0.3.31" 1159source = "registry+https://github.com/rust-lang/crates.io-index" 1160checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10" 1161dependencies = [ 1162 "futures-core", 1163] 1164 1165[[package]] 1166name = "futures-core" 1167version = "0.3.31" 1168source = "registry+https://github.com/rust-lang/crates.io-index" 1169checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e" 1170 1171[[package]] 1172name = "futures-io" 1173version = "0.3.31" 1174source = "registry+https://github.com/rust-lang/crates.io-index" 1175checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6" 1176 1177[[package]] 1178name = "futures-lite" 1179version = "2.6.1" 1180source = "registry+https://github.com/rust-lang/crates.io-index" 1181checksum = "f78e10609fe0e0b3f4157ffab1876319b5b0db102a2c60dc4626306dc46b44ad" 1182dependencies = [ 1183 "fastrand", 1184 "futures-core", 1185 "futures-io", 1186 "parking", 1187 "pin-project-lite", 1188] 1189 1190[[package]] 1191name = "futures-macro" 1192version = "0.3.31" 1193source = "registry+https://github.com/rust-lang/crates.io-index" 1194checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650" 1195dependencies = [ 1196 "proc-macro2", 1197 "quote", 1198 "syn", 1199] 1200 1201[[package]] 1202name = "futures-task" 1203version = "0.3.31" 1204source = "registry+https://github.com/rust-lang/crates.io-index" 1205checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988" 1206 1207[[package]] 1208name = "futures-util" 1209version = "0.3.31" 1210source = "registry+https://github.com/rust-lang/crates.io-index" 1211checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81" 1212dependencies = [ 1213 "futures-core", 1214 "futures-io", 1215 "futures-macro", 1216 "futures-task", 1217 "memchr", 1218 "pin-project-lite", 1219 "pin-utils", 1220 "slab", 1221] 1222 1223[[package]] 1224name = "gethostname" 1225version = "0.4.3" 1226source = "registry+https://github.com/rust-lang/crates.io-index" 1227checksum = "0176e0459c2e4a1fe232f984bca6890e681076abb9934f6cea7c326f3fc47818" 1228dependencies = [ 1229 "libc", 1230 "windows-targets 0.48.5", 1231] 1232 1233[[package]] 1234name = "getrandom" 1235version = "0.3.3" 1236source = "registry+https://github.com/rust-lang/crates.io-index" 1237checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4" 1238dependencies = [ 1239 "cfg-if", 1240 "libc", 1241 "r-efi", 1242 "wasi", 1243] 1244 1245[[package]] 1246name = "gimli" 1247version = "0.31.1" 1248source = "registry+https://github.com/rust-lang/crates.io-index" 1249checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f" 1250 1251[[package]] 1252name = "gl_generator" 1253version = "0.14.0" 1254source = "registry+https://github.com/rust-lang/crates.io-index" 1255checksum = "1a95dfc23a2b4a9a2f5ab41d194f8bfda3cabec42af4e39f08c339eb2a0c124d" 1256dependencies = [ 1257 "khronos_api", 1258 "log", 1259 "xml-rs", 1260] 1261 1262[[package]] 1263name = "glow" 1264version = "0.16.0" 1265source = "registry+https://github.com/rust-lang/crates.io-index" 1266checksum = "c5e5ea60d70410161c8bf5da3fdfeaa1c72ed2c15f8bbb9d19fe3a4fad085f08" 1267dependencies = [ 1268 "js-sys", 1269 "slotmap", 1270 "wasm-bindgen", 1271 "web-sys", 1272] 1273 1274[[package]] 1275name = "glutin" 1276version = "0.32.3" 1277source = "registry+https://github.com/rust-lang/crates.io-index" 1278checksum = "12124de845cacfebedff80e877bb37b5b75c34c5a4c89e47e1cdd67fb6041325" 1279dependencies = [ 1280 "bitflags 2.9.2", 1281 "cfg_aliases", 1282 "cgl", 1283 "dispatch2", 1284 "glutin_egl_sys", 1285 "glutin_glx_sys", 1286 "glutin_wgl_sys", 1287 "libloading", 1288 "objc2 0.6.2", 1289 "objc2-app-kit 0.3.1", 1290 "objc2-core-foundation", 1291 "objc2-foundation 0.3.1", 1292 "once_cell", 1293 "raw-window-handle", 1294 "wayland-sys", 1295 "windows-sys 0.52.0", 1296 "x11-dl", 1297] 1298 1299[[package]] 1300name = "glutin-winit" 1301version = "0.5.0" 1302source = "registry+https://github.com/rust-lang/crates.io-index" 1303checksum = "85edca7075f8fc728f28cb8fbb111a96c3b89e930574369e3e9c27eb75d3788f" 1304dependencies = [ 1305 "cfg_aliases", 1306 "glutin", 1307 "raw-window-handle", 1308 "winit", 1309] 1310 1311[[package]] 1312name = "glutin_egl_sys" 1313version = "0.7.1" 1314source = "registry+https://github.com/rust-lang/crates.io-index" 1315checksum = "4c4680ba6195f424febdc3ba46e7a42a0e58743f2edb115297b86d7f8ecc02d2" 1316dependencies = [ 1317 "gl_generator", 1318 "windows-sys 0.52.0", 1319] 1320 1321[[package]] 1322name = "glutin_glx_sys" 1323version = "0.6.1" 1324source = "registry+https://github.com/rust-lang/crates.io-index" 1325checksum = "8a7bb2938045a88b612499fbcba375a77198e01306f52272e692f8c1f3751185" 1326dependencies = [ 1327 "gl_generator", 1328 "x11-dl", 1329] 1330 1331[[package]] 1332name = "glutin_wgl_sys" 1333version = "0.6.1" 1334source = "registry+https://github.com/rust-lang/crates.io-index" 1335checksum = "2c4ee00b289aba7a9e5306d57c2d05499b2e5dc427f84ac708bd2c090212cf3e" 1336dependencies = [ 1337 "gl_generator", 1338] 1339 1340[[package]] 1341name = "half" 1342version = "2.6.0" 1343source = "registry+https://github.com/rust-lang/crates.io-index" 1344checksum = "459196ed295495a68f7d7fe1d84f6c4b7ff0e21fe3017b2f283c6fac3ad803c9" 1345dependencies = [ 1346 "cfg-if", 1347 "crunchy", 1348 "num-traits", 1349] 1350 1351[[package]] 1352name = "hashbrown" 1353version = "0.15.5" 1354source = "registry+https://github.com/rust-lang/crates.io-index" 1355checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1" 1356dependencies = [ 1357 "foldhash", 1358] 1359 1360[[package]] 1361name = "heck" 1362version = "0.5.0" 1363source = "registry+https://github.com/rust-lang/crates.io-index" 1364checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" 1365 1366[[package]] 1367name = "hermit-abi" 1368version = "0.5.2" 1369source = "registry+https://github.com/rust-lang/crates.io-index" 1370checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c" 1371 1372[[package]] 1373name = "hex" 1374version = "0.4.3" 1375source = "registry+https://github.com/rust-lang/crates.io-index" 1376checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 1377 1378[[package]] 1379name = "hexf-parse" 1380version = "0.2.1" 1381source = "registry+https://github.com/rust-lang/crates.io-index" 1382checksum = "dfa686283ad6dd069f105e5ab091b04c62850d3e4cf5d67debad1933f55023df" 1383 1384[[package]] 1385name = "icu_collections" 1386version = "2.0.0" 1387source = "registry+https://github.com/rust-lang/crates.io-index" 1388checksum = "200072f5d0e3614556f94a9930d5dc3e0662a652823904c3a75dc3b0af7fee47" 1389dependencies = [ 1390 "displaydoc", 1391 "potential_utf", 1392 "yoke", 1393 "zerofrom", 1394 "zerovec", 1395] 1396 1397[[package]] 1398name = "icu_locale_core" 1399version = "2.0.0" 1400source = "registry+https://github.com/rust-lang/crates.io-index" 1401checksum = "0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a" 1402dependencies = [ 1403 "displaydoc", 1404 "litemap", 1405 "tinystr", 1406 "writeable", 1407 "zerovec", 1408] 1409 1410[[package]] 1411name = "icu_normalizer" 1412version = "2.0.0" 1413source = "registry+https://github.com/rust-lang/crates.io-index" 1414checksum = "436880e8e18df4d7bbc06d58432329d6458cc84531f7ac5f024e93deadb37979" 1415dependencies = [ 1416 "displaydoc", 1417 "icu_collections", 1418 "icu_normalizer_data", 1419 "icu_properties", 1420 "icu_provider", 1421 "smallvec", 1422 "zerovec", 1423] 1424 1425[[package]] 1426name = "icu_normalizer_data" 1427version = "2.0.0" 1428source = "registry+https://github.com/rust-lang/crates.io-index" 1429checksum = "00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3" 1430 1431[[package]] 1432name = "icu_properties" 1433version = "2.0.1" 1434source = "registry+https://github.com/rust-lang/crates.io-index" 1435checksum = "016c619c1eeb94efb86809b015c58f479963de65bdb6253345c1a1276f22e32b" 1436dependencies = [ 1437 "displaydoc", 1438 "icu_collections", 1439 "icu_locale_core", 1440 "icu_properties_data", 1441 "icu_provider", 1442 "potential_utf", 1443 "zerotrie", 1444 "zerovec", 1445] 1446 1447[[package]] 1448name = "icu_properties_data" 1449version = "2.0.1" 1450source = "registry+https://github.com/rust-lang/crates.io-index" 1451checksum = "298459143998310acd25ffe6810ed544932242d3f07083eee1084d83a71bd632" 1452 1453[[package]] 1454name = "icu_provider" 1455version = "2.0.0" 1456source = "registry+https://github.com/rust-lang/crates.io-index" 1457checksum = "03c80da27b5f4187909049ee2d72f276f0d9f99a42c306bd0131ecfe04d8e5af" 1458dependencies = [ 1459 "displaydoc", 1460 "icu_locale_core", 1461 "stable_deref_trait", 1462 "tinystr", 1463 "writeable", 1464 "yoke", 1465 "zerofrom", 1466 "zerotrie", 1467 "zerovec", 1468] 1469 1470[[package]] 1471name = "idna" 1472version = "1.0.3" 1473source = "registry+https://github.com/rust-lang/crates.io-index" 1474checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e" 1475dependencies = [ 1476 "idna_adapter", 1477 "smallvec", 1478 "utf8_iter", 1479] 1480 1481[[package]] 1482name = "idna_adapter" 1483version = "1.2.1" 1484source = "registry+https://github.com/rust-lang/crates.io-index" 1485checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344" 1486dependencies = [ 1487 "icu_normalizer", 1488 "icu_properties", 1489] 1490 1491[[package]] 1492name = "image" 1493version = "0.25.6" 1494source = "registry+https://github.com/rust-lang/crates.io-index" 1495checksum = "db35664ce6b9810857a38a906215e75a9c879f0696556a39f59c62829710251a" 1496dependencies = [ 1497 "bytemuck", 1498 "byteorder-lite", 1499 "num-traits", 1500 "png", 1501 "tiff", 1502] 1503 1504[[package]] 1505name = "indenter" 1506version = "0.3.4" 1507source = "registry+https://github.com/rust-lang/crates.io-index" 1508checksum = "964de6e86d545b246d84badc0fef527924ace5134f30641c203ef52ba83f58d5" 1509 1510[[package]] 1511name = "indexmap" 1512version = "2.10.0" 1513source = "registry+https://github.com/rust-lang/crates.io-index" 1514checksum = "fe4cd85333e22411419a0bcae1297d25e58c9443848b11dc6a86fefe8c78a661" 1515dependencies = [ 1516 "equivalent", 1517 "hashbrown", 1518] 1519 1520[[package]] 1521name = "jni" 1522version = "0.21.1" 1523source = "registry+https://github.com/rust-lang/crates.io-index" 1524checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97" 1525dependencies = [ 1526 "cesu8", 1527 "cfg-if", 1528 "combine", 1529 "jni-sys", 1530 "log", 1531 "thiserror 1.0.69", 1532 "walkdir", 1533 "windows-sys 0.45.0", 1534] 1535 1536[[package]] 1537name = "jni-sys" 1538version = "0.3.0" 1539source = "registry+https://github.com/rust-lang/crates.io-index" 1540checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130" 1541 1542[[package]] 1543name = "jobserver" 1544version = "0.1.33" 1545source = "registry+https://github.com/rust-lang/crates.io-index" 1546checksum = "38f262f097c174adebe41eb73d66ae9c06b2844fb0da69969647bbddd9b0538a" 1547dependencies = [ 1548 "getrandom", 1549 "libc", 1550] 1551 1552[[package]] 1553name = "jpeg-decoder" 1554version = "0.3.2" 1555source = "registry+https://github.com/rust-lang/crates.io-index" 1556checksum = "00810f1d8b74be64b13dbf3db89ac67740615d6c891f0e7b6179326533011a07" 1557 1558[[package]] 1559name = "js-sys" 1560version = "0.3.77" 1561source = "registry+https://github.com/rust-lang/crates.io-index" 1562checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f" 1563dependencies = [ 1564 "once_cell", 1565 "wasm-bindgen", 1566] 1567 1568[[package]] 1569name = "khronos_api" 1570version = "3.1.0" 1571source = "registry+https://github.com/rust-lang/crates.io-index" 1572checksum = "e2db585e1d738fc771bf08a151420d3ed193d9d895a36df7f6f8a9456b911ddc" 1573 1574[[package]] 1575name = "lazy_static" 1576version = "1.5.0" 1577source = "registry+https://github.com/rust-lang/crates.io-index" 1578checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" 1579 1580[[package]] 1581name = "libc" 1582version = "0.2.175" 1583source = "registry+https://github.com/rust-lang/crates.io-index" 1584checksum = "6a82ae493e598baaea5209805c49bbf2ea7de956d50d7da0da1164f9c6d28543" 1585 1586[[package]] 1587name = "libloading" 1588version = "0.8.8" 1589source = "registry+https://github.com/rust-lang/crates.io-index" 1590checksum = "07033963ba89ebaf1584d767badaa2e8fcec21aedea6b8c0346d487d49c28667" 1591dependencies = [ 1592 "cfg-if", 1593 "windows-targets 0.53.3", 1594] 1595 1596[[package]] 1597name = "libm" 1598version = "0.2.15" 1599source = "registry+https://github.com/rust-lang/crates.io-index" 1600checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de" 1601 1602[[package]] 1603name = "libmimalloc-sys" 1604version = "0.1.43" 1605source = "registry+https://github.com/rust-lang/crates.io-index" 1606checksum = "bf88cd67e9de251c1781dbe2f641a1a3ad66eaae831b8a2c38fbdc5ddae16d4d" 1607dependencies = [ 1608 "cc", 1609 "libc", 1610] 1611 1612[[package]] 1613name = "libredox" 1614version = "0.1.9" 1615source = "registry+https://github.com/rust-lang/crates.io-index" 1616checksum = "391290121bad3d37fbddad76d8f5d1c1c314cfc646d143d7e07a3086ddff0ce3" 1617dependencies = [ 1618 "bitflags 2.9.2", 1619 "libc", 1620 "redox_syscall 0.5.17", 1621] 1622 1623[[package]] 1624name = "linux-raw-sys" 1625version = "0.4.15" 1626source = "registry+https://github.com/rust-lang/crates.io-index" 1627checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab" 1628 1629[[package]] 1630name = "linux-raw-sys" 1631version = "0.9.4" 1632source = "registry+https://github.com/rust-lang/crates.io-index" 1633checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12" 1634 1635[[package]] 1636name = "litemap" 1637version = "0.8.0" 1638source = "registry+https://github.com/rust-lang/crates.io-index" 1639checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956" 1640 1641[[package]] 1642name = "litrs" 1643version = "0.4.2" 1644source = "registry+https://github.com/rust-lang/crates.io-index" 1645checksum = "f5e54036fe321fd421e10d732f155734c4e4afd610dd556d9a82833ab3ee0bed" 1646 1647[[package]] 1648name = "lock_api" 1649version = "0.4.13" 1650source = "registry+https://github.com/rust-lang/crates.io-index" 1651checksum = "96936507f153605bddfcda068dd804796c84324ed2510809e5b2a624c81da765" 1652dependencies = [ 1653 "autocfg", 1654 "scopeguard", 1655] 1656 1657[[package]] 1658name = "log" 1659version = "0.4.27" 1660source = "registry+https://github.com/rust-lang/crates.io-index" 1661checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94" 1662 1663[[package]] 1664name = "matchers" 1665version = "0.1.0" 1666source = "registry+https://github.com/rust-lang/crates.io-index" 1667checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558" 1668dependencies = [ 1669 "regex-automata 0.1.10", 1670] 1671 1672[[package]] 1673name = "memchr" 1674version = "2.7.5" 1675source = "registry+https://github.com/rust-lang/crates.io-index" 1676checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0" 1677 1678[[package]] 1679name = "memmap2" 1680version = "0.9.7" 1681source = "registry+https://github.com/rust-lang/crates.io-index" 1682checksum = "483758ad303d734cec05e5c12b41d7e93e6a6390c5e9dae6bdeb7c1259012d28" 1683dependencies = [ 1684 "libc", 1685] 1686 1687[[package]] 1688name = "memoffset" 1689version = "0.9.1" 1690source = "registry+https://github.com/rust-lang/crates.io-index" 1691checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a" 1692dependencies = [ 1693 "autocfg", 1694] 1695 1696[[package]] 1697name = "mimalloc" 1698version = "0.1.47" 1699source = "registry+https://github.com/rust-lang/crates.io-index" 1700checksum = "b1791cbe101e95af5764f06f20f6760521f7158f69dbf9d6baf941ee1bf6bc40" 1701dependencies = [ 1702 "libmimalloc-sys", 1703] 1704 1705[[package]] 1706name = "miniz_oxide" 1707version = "0.8.9" 1708source = "registry+https://github.com/rust-lang/crates.io-index" 1709checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316" 1710dependencies = [ 1711 "adler2", 1712 "simd-adler32", 1713] 1714 1715[[package]] 1716name = "naga" 1717version = "25.0.1" 1718source = "registry+https://github.com/rust-lang/crates.io-index" 1719checksum = "2b977c445f26e49757f9aca3631c3b8b836942cb278d69a92e7b80d3b24da632" 1720dependencies = [ 1721 "arrayvec", 1722 "bit-set", 1723 "bitflags 2.9.2", 1724 "cfg_aliases", 1725 "codespan-reporting", 1726 "half", 1727 "hashbrown", 1728 "hexf-parse", 1729 "indexmap", 1730 "log", 1731 "num-traits", 1732 "once_cell", 1733 "rustc-hash 1.1.0", 1734 "strum", 1735 "thiserror 2.0.15", 1736 "unicode-ident", 1737] 1738 1739[[package]] 1740name = "ndk" 1741version = "0.9.0" 1742source = "registry+https://github.com/rust-lang/crates.io-index" 1743checksum = "c3f42e7bbe13d351b6bead8286a43aac9534b82bd3cc43e47037f012ebfd62d4" 1744dependencies = [ 1745 "bitflags 2.9.2", 1746 "jni-sys", 1747 "log", 1748 "ndk-sys", 1749 "num_enum", 1750 "raw-window-handle", 1751 "thiserror 1.0.69", 1752] 1753 1754[[package]] 1755name = "ndk-context" 1756version = "0.1.1" 1757source = "registry+https://github.com/rust-lang/crates.io-index" 1758checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b" 1759 1760[[package]] 1761name = "ndk-sys" 1762version = "0.6.0+11769913" 1763source = "registry+https://github.com/rust-lang/crates.io-index" 1764checksum = "ee6cda3051665f1fb8d9e08fc35c96d5a244fb1be711a03b71118828afc9a873" 1765dependencies = [ 1766 "jni-sys", 1767] 1768 1769[[package]] 1770name = "nix" 1771version = "0.30.1" 1772source = "registry+https://github.com/rust-lang/crates.io-index" 1773checksum = "74523f3a35e05aba87a1d978330aef40f67b0304ac79c1c00b294c9830543db6" 1774dependencies = [ 1775 "bitflags 2.9.2", 1776 "cfg-if", 1777 "cfg_aliases", 1778 "libc", 1779 "memoffset", 1780] 1781 1782[[package]] 1783name = "nohash-hasher" 1784version = "0.2.0" 1785source = "registry+https://github.com/rust-lang/crates.io-index" 1786checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451" 1787 1788[[package]] 1789name = "nu-ansi-term" 1790version = "0.46.0" 1791source = "registry+https://github.com/rust-lang/crates.io-index" 1792checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84" 1793dependencies = [ 1794 "overload", 1795 "winapi", 1796] 1797 1798[[package]] 1799name = "num-traits" 1800version = "0.2.19" 1801source = "registry+https://github.com/rust-lang/crates.io-index" 1802checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" 1803dependencies = [ 1804 "autocfg", 1805 "libm", 1806] 1807 1808[[package]] 1809name = "num_enum" 1810version = "0.7.4" 1811source = "registry+https://github.com/rust-lang/crates.io-index" 1812checksum = "a973b4e44ce6cad84ce69d797acf9a044532e4184c4f267913d1b546a0727b7a" 1813dependencies = [ 1814 "num_enum_derive", 1815 "rustversion", 1816] 1817 1818[[package]] 1819name = "num_enum_derive" 1820version = "0.7.4" 1821source = "registry+https://github.com/rust-lang/crates.io-index" 1822checksum = "77e878c846a8abae00dd069496dbe8751b16ac1c3d6bd2a7283a938e8228f90d" 1823dependencies = [ 1824 "proc-macro-crate", 1825 "proc-macro2", 1826 "quote", 1827 "syn", 1828] 1829 1830[[package]] 1831name = "objc-sys" 1832version = "0.3.5" 1833source = "registry+https://github.com/rust-lang/crates.io-index" 1834checksum = "cdb91bdd390c7ce1a8607f35f3ca7151b65afc0ff5ff3b34fa350f7d7c7e4310" 1835 1836[[package]] 1837name = "objc2" 1838version = "0.5.2" 1839source = "registry+https://github.com/rust-lang/crates.io-index" 1840checksum = "46a785d4eeff09c14c487497c162e92766fbb3e4059a71840cecc03d9a50b804" 1841dependencies = [ 1842 "objc-sys", 1843 "objc2-encode", 1844] 1845 1846[[package]] 1847name = "objc2" 1848version = "0.6.2" 1849source = "registry+https://github.com/rust-lang/crates.io-index" 1850checksum = "561f357ba7f3a2a61563a186a163d0a3a5247e1089524a3981d49adb775078bc" 1851dependencies = [ 1852 "objc2-encode", 1853] 1854 1855[[package]] 1856name = "objc2-app-kit" 1857version = "0.2.2" 1858source = "registry+https://github.com/rust-lang/crates.io-index" 1859checksum = "e4e89ad9e3d7d297152b17d39ed92cd50ca8063a89a9fa569046d41568891eff" 1860dependencies = [ 1861 "bitflags 2.9.2", 1862 "block2 0.5.1", 1863 "libc", 1864 "objc2 0.5.2", 1865 "objc2-core-data", 1866 "objc2-core-image", 1867 "objc2-foundation 0.2.2", 1868 "objc2-quartz-core", 1869] 1870 1871[[package]] 1872name = "objc2-app-kit" 1873version = "0.3.1" 1874source = "registry+https://github.com/rust-lang/crates.io-index" 1875checksum = "e6f29f568bec459b0ddff777cec4fe3fd8666d82d5a40ebd0ff7e66134f89bcc" 1876dependencies = [ 1877 "bitflags 2.9.2", 1878 "block2 0.6.1", 1879 "objc2 0.6.2", 1880 "objc2-core-foundation", 1881 "objc2-core-graphics", 1882 "objc2-foundation 0.3.1", 1883] 1884 1885[[package]] 1886name = "objc2-cloud-kit" 1887version = "0.2.2" 1888source = "registry+https://github.com/rust-lang/crates.io-index" 1889checksum = "74dd3b56391c7a0596a295029734d3c1c5e7e510a4cb30245f8221ccea96b009" 1890dependencies = [ 1891 "bitflags 2.9.2", 1892 "block2 0.5.1", 1893 "objc2 0.5.2", 1894 "objc2-core-location", 1895 "objc2-foundation 0.2.2", 1896] 1897 1898[[package]] 1899name = "objc2-contacts" 1900version = "0.2.2" 1901source = "registry+https://github.com/rust-lang/crates.io-index" 1902checksum = "a5ff520e9c33812fd374d8deecef01d4a840e7b41862d849513de77e44aa4889" 1903dependencies = [ 1904 "block2 0.5.1", 1905 "objc2 0.5.2", 1906 "objc2-foundation 0.2.2", 1907] 1908 1909[[package]] 1910name = "objc2-core-data" 1911version = "0.2.2" 1912source = "registry+https://github.com/rust-lang/crates.io-index" 1913checksum = "617fbf49e071c178c0b24c080767db52958f716d9eabdf0890523aeae54773ef" 1914dependencies = [ 1915 "bitflags 2.9.2", 1916 "block2 0.5.1", 1917 "objc2 0.5.2", 1918 "objc2-foundation 0.2.2", 1919] 1920 1921[[package]] 1922name = "objc2-core-foundation" 1923version = "0.3.1" 1924source = "registry+https://github.com/rust-lang/crates.io-index" 1925checksum = "1c10c2894a6fed806ade6027bcd50662746363a9589d3ec9d9bef30a4e4bc166" 1926dependencies = [ 1927 "bitflags 2.9.2", 1928 "dispatch2", 1929 "objc2 0.6.2", 1930] 1931 1932[[package]] 1933name = "objc2-core-graphics" 1934version = "0.3.1" 1935source = "registry+https://github.com/rust-lang/crates.io-index" 1936checksum = "989c6c68c13021b5c2d6b71456ebb0f9dc78d752e86a98da7c716f4f9470f5a4" 1937dependencies = [ 1938 "bitflags 2.9.2", 1939 "dispatch2", 1940 "objc2 0.6.2", 1941 "objc2-core-foundation", 1942 "objc2-io-surface", 1943] 1944 1945[[package]] 1946name = "objc2-core-image" 1947version = "0.2.2" 1948source = "registry+https://github.com/rust-lang/crates.io-index" 1949checksum = "55260963a527c99f1819c4f8e3b47fe04f9650694ef348ffd2227e8196d34c80" 1950dependencies = [ 1951 "block2 0.5.1", 1952 "objc2 0.5.2", 1953 "objc2-foundation 0.2.2", 1954 "objc2-metal", 1955] 1956 1957[[package]] 1958name = "objc2-core-location" 1959version = "0.2.2" 1960source = "registry+https://github.com/rust-lang/crates.io-index" 1961checksum = "000cfee34e683244f284252ee206a27953279d370e309649dc3ee317b37e5781" 1962dependencies = [ 1963 "block2 0.5.1", 1964 "objc2 0.5.2", 1965 "objc2-contacts", 1966 "objc2-foundation 0.2.2", 1967] 1968 1969[[package]] 1970name = "objc2-encode" 1971version = "4.1.0" 1972source = "registry+https://github.com/rust-lang/crates.io-index" 1973checksum = "ef25abbcd74fb2609453eb695bd2f860d389e457f67dc17cafc8b8cbc89d0c33" 1974 1975[[package]] 1976name = "objc2-foundation" 1977version = "0.2.2" 1978source = "registry+https://github.com/rust-lang/crates.io-index" 1979checksum = "0ee638a5da3799329310ad4cfa62fbf045d5f56e3ef5ba4149e7452dcf89d5a8" 1980dependencies = [ 1981 "bitflags 2.9.2", 1982 "block2 0.5.1", 1983 "dispatch", 1984 "libc", 1985 "objc2 0.5.2", 1986] 1987 1988[[package]] 1989name = "objc2-foundation" 1990version = "0.3.1" 1991source = "registry+https://github.com/rust-lang/crates.io-index" 1992checksum = "900831247d2fe1a09a683278e5384cfb8c80c79fe6b166f9d14bfdde0ea1b03c" 1993dependencies = [ 1994 "bitflags 2.9.2", 1995 "objc2 0.6.2", 1996 "objc2-core-foundation", 1997] 1998 1999[[package]] 2000name = "objc2-io-surface" 2001version = "0.3.1" 2002source = "registry+https://github.com/rust-lang/crates.io-index" 2003checksum = "7282e9ac92529fa3457ce90ebb15f4ecbc383e8338060960760fa2cf75420c3c" 2004dependencies = [ 2005 "bitflags 2.9.2", 2006 "objc2 0.6.2", 2007 "objc2-core-foundation", 2008] 2009 2010[[package]] 2011name = "objc2-link-presentation" 2012version = "0.2.2" 2013source = "registry+https://github.com/rust-lang/crates.io-index" 2014checksum = "a1a1ae721c5e35be65f01a03b6d2ac13a54cb4fa70d8a5da293d7b0020261398" 2015dependencies = [ 2016 "block2 0.5.1", 2017 "objc2 0.5.2", 2018 "objc2-app-kit 0.2.2", 2019 "objc2-foundation 0.2.2", 2020] 2021 2022[[package]] 2023name = "objc2-metal" 2024version = "0.2.2" 2025source = "registry+https://github.com/rust-lang/crates.io-index" 2026checksum = "dd0cba1276f6023976a406a14ffa85e1fdd19df6b0f737b063b95f6c8c7aadd6" 2027dependencies = [ 2028 "bitflags 2.9.2", 2029 "block2 0.5.1", 2030 "objc2 0.5.2", 2031 "objc2-foundation 0.2.2", 2032] 2033 2034[[package]] 2035name = "objc2-quartz-core" 2036version = "0.2.2" 2037source = "registry+https://github.com/rust-lang/crates.io-index" 2038checksum = "e42bee7bff906b14b167da2bac5efe6b6a07e6f7c0a21a7308d40c960242dc7a" 2039dependencies = [ 2040 "bitflags 2.9.2", 2041 "block2 0.5.1", 2042 "objc2 0.5.2", 2043 "objc2-foundation 0.2.2", 2044 "objc2-metal", 2045] 2046 2047[[package]] 2048name = "objc2-symbols" 2049version = "0.2.2" 2050source = "registry+https://github.com/rust-lang/crates.io-index" 2051checksum = "0a684efe3dec1b305badae1a28f6555f6ddd3bb2c2267896782858d5a78404dc" 2052dependencies = [ 2053 "objc2 0.5.2", 2054 "objc2-foundation 0.2.2", 2055] 2056 2057[[package]] 2058name = "objc2-ui-kit" 2059version = "0.2.2" 2060source = "registry+https://github.com/rust-lang/crates.io-index" 2061checksum = "b8bb46798b20cd6b91cbd113524c490f1686f4c4e8f49502431415f3512e2b6f" 2062dependencies = [ 2063 "bitflags 2.9.2", 2064 "block2 0.5.1", 2065 "objc2 0.5.2", 2066 "objc2-cloud-kit", 2067 "objc2-core-data", 2068 "objc2-core-image", 2069 "objc2-core-location", 2070 "objc2-foundation 0.2.2", 2071 "objc2-link-presentation", 2072 "objc2-quartz-core", 2073 "objc2-symbols", 2074 "objc2-uniform-type-identifiers", 2075 "objc2-user-notifications", 2076] 2077 2078[[package]] 2079name = "objc2-uniform-type-identifiers" 2080version = "0.2.2" 2081source = "registry+https://github.com/rust-lang/crates.io-index" 2082checksum = "44fa5f9748dbfe1ca6c0b79ad20725a11eca7c2218bceb4b005cb1be26273bfe" 2083dependencies = [ 2084 "block2 0.5.1", 2085 "objc2 0.5.2", 2086 "objc2-foundation 0.2.2", 2087] 2088 2089[[package]] 2090name = "objc2-user-notifications" 2091version = "0.2.2" 2092source = "registry+https://github.com/rust-lang/crates.io-index" 2093checksum = "76cfcbf642358e8689af64cee815d139339f3ed8ad05103ed5eaf73db8d84cb3" 2094dependencies = [ 2095 "bitflags 2.9.2", 2096 "block2 0.5.1", 2097 "objc2 0.5.2", 2098 "objc2-core-location", 2099 "objc2-foundation 0.2.2", 2100] 2101 2102[[package]] 2103name = "object" 2104version = "0.36.7" 2105source = "registry+https://github.com/rust-lang/crates.io-index" 2106checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87" 2107dependencies = [ 2108 "memchr", 2109] 2110 2111[[package]] 2112name = "once_cell" 2113version = "1.21.3" 2114source = "registry+https://github.com/rust-lang/crates.io-index" 2115checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d" 2116 2117[[package]] 2118name = "orbclient" 2119version = "0.3.48" 2120source = "registry+https://github.com/rust-lang/crates.io-index" 2121checksum = "ba0b26cec2e24f08ed8bb31519a9333140a6599b867dac464bb150bdb796fd43" 2122dependencies = [ 2123 "libredox", 2124] 2125 2126[[package]] 2127name = "ordered-stream" 2128version = "0.2.0" 2129source = "registry+https://github.com/rust-lang/crates.io-index" 2130checksum = "9aa2b01e1d916879f73a53d01d1d6cee68adbb31d6d9177a8cfce093cced1d50" 2131dependencies = [ 2132 "futures-core", 2133 "pin-project-lite", 2134] 2135 2136[[package]] 2137name = "overload" 2138version = "0.1.1" 2139source = "registry+https://github.com/rust-lang/crates.io-index" 2140checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" 2141 2142[[package]] 2143name = "owned_ttf_parser" 2144version = "0.25.1" 2145source = "registry+https://github.com/rust-lang/crates.io-index" 2146checksum = "36820e9051aca1014ddc75770aab4d68bc1e9e632f0f5627c4086bc216fb583b" 2147dependencies = [ 2148 "ttf-parser", 2149] 2150 2151[[package]] 2152name = "owo-colors" 2153version = "4.2.2" 2154source = "registry+https://github.com/rust-lang/crates.io-index" 2155checksum = "48dd4f4a2c8405440fd0462561f0e5806bd0f77e86f51c761481bdd4018b545e" 2156 2157[[package]] 2158name = "parking" 2159version = "2.2.1" 2160source = "registry+https://github.com/rust-lang/crates.io-index" 2161checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba" 2162 2163[[package]] 2164name = "parking_lot" 2165version = "0.12.4" 2166source = "registry+https://github.com/rust-lang/crates.io-index" 2167checksum = "70d58bf43669b5795d1576d0641cfb6fbb2057bf629506267a92807158584a13" 2168dependencies = [ 2169 "lock_api", 2170 "parking_lot_core", 2171] 2172 2173[[package]] 2174name = "parking_lot_core" 2175version = "0.9.11" 2176source = "registry+https://github.com/rust-lang/crates.io-index" 2177checksum = "bc838d2a56b5b1a6c25f55575dfc605fabb63bb2365f6c2353ef9159aa69e4a5" 2178dependencies = [ 2179 "cfg-if", 2180 "libc", 2181 "redox_syscall 0.5.17", 2182 "smallvec", 2183 "windows-targets 0.52.6", 2184] 2185 2186[[package]] 2187name = "percent-encoding" 2188version = "2.3.1" 2189source = "registry+https://github.com/rust-lang/crates.io-index" 2190checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" 2191 2192[[package]] 2193name = "pin-project" 2194version = "1.1.10" 2195source = "registry+https://github.com/rust-lang/crates.io-index" 2196checksum = "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a" 2197dependencies = [ 2198 "pin-project-internal", 2199] 2200 2201[[package]] 2202name = "pin-project-internal" 2203version = "1.1.10" 2204source = "registry+https://github.com/rust-lang/crates.io-index" 2205checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861" 2206dependencies = [ 2207 "proc-macro2", 2208 "quote", 2209 "syn", 2210] 2211 2212[[package]] 2213name = "pin-project-lite" 2214version = "0.2.16" 2215source = "registry+https://github.com/rust-lang/crates.io-index" 2216checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b" 2217 2218[[package]] 2219name = "pin-utils" 2220version = "0.1.0" 2221source = "registry+https://github.com/rust-lang/crates.io-index" 2222checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 2223 2224[[package]] 2225name = "piper" 2226version = "0.2.4" 2227source = "registry+https://github.com/rust-lang/crates.io-index" 2228checksum = "96c8c490f422ef9a4efd2cb5b42b76c8613d7e7dfc1caf667b8a3350a5acc066" 2229dependencies = [ 2230 "atomic-waker", 2231 "fastrand", 2232 "futures-io", 2233] 2234 2235[[package]] 2236name = "pkg-config" 2237version = "0.3.32" 2238source = "registry+https://github.com/rust-lang/crates.io-index" 2239checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c" 2240 2241[[package]] 2242name = "png" 2243version = "0.17.16" 2244source = "registry+https://github.com/rust-lang/crates.io-index" 2245checksum = "82151a2fc869e011c153adc57cf2789ccb8d9906ce52c0b39a6b5697749d7526" 2246dependencies = [ 2247 "bitflags 1.3.2", 2248 "crc32fast", 2249 "fdeflate", 2250 "flate2", 2251 "miniz_oxide", 2252] 2253 2254[[package]] 2255name = "polling" 2256version = "3.10.0" 2257source = "registry+https://github.com/rust-lang/crates.io-index" 2258checksum = "b5bd19146350fe804f7cb2669c851c03d69da628803dab0d98018142aaa5d829" 2259dependencies = [ 2260 "cfg-if", 2261 "concurrent-queue", 2262 "hermit-abi", 2263 "pin-project-lite", 2264 "rustix 1.0.8", 2265 "windows-sys 0.60.2", 2266] 2267 2268[[package]] 2269name = "pollster" 2270version = "0.4.0" 2271source = "registry+https://github.com/rust-lang/crates.io-index" 2272checksum = "2f3a9f18d041e6d0e102a0a46750538147e5e8992d3b4873aaafee2520b00ce3" 2273 2274[[package]] 2275name = "portable-atomic" 2276version = "1.11.1" 2277source = "registry+https://github.com/rust-lang/crates.io-index" 2278checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483" 2279 2280[[package]] 2281name = "potential_utf" 2282version = "0.1.2" 2283source = "registry+https://github.com/rust-lang/crates.io-index" 2284checksum = "e5a7c30837279ca13e7c867e9e40053bc68740f988cb07f7ca6df43cc734b585" 2285dependencies = [ 2286 "zerovec", 2287] 2288 2289[[package]] 2290name = "ppv-lite86" 2291version = "0.2.21" 2292source = "registry+https://github.com/rust-lang/crates.io-index" 2293checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9" 2294dependencies = [ 2295 "zerocopy", 2296] 2297 2298[[package]] 2299name = "proc-macro-crate" 2300version = "3.3.0" 2301source = "registry+https://github.com/rust-lang/crates.io-index" 2302checksum = "edce586971a4dfaa28950c6f18ed55e0406c1ab88bbce2c6f6293a7aaba73d35" 2303dependencies = [ 2304 "toml_edit", 2305] 2306 2307[[package]] 2308name = "proc-macro2" 2309version = "1.0.101" 2310source = "registry+https://github.com/rust-lang/crates.io-index" 2311checksum = "89ae43fd86e4158d6db51ad8e2b80f313af9cc74f5c0e03ccb87de09998732de" 2312dependencies = [ 2313 "unicode-ident", 2314] 2315 2316[[package]] 2317name = "profiling" 2318version = "1.0.17" 2319source = "registry+https://github.com/rust-lang/crates.io-index" 2320checksum = "3eb8486b569e12e2c32ad3e204dbaba5e4b5b216e9367044f25f1dba42341773" 2321 2322[[package]] 2323name = "quick-xml" 2324version = "0.36.2" 2325source = "registry+https://github.com/rust-lang/crates.io-index" 2326checksum = "f7649a7b4df05aed9ea7ec6f628c67c9953a43869b8bc50929569b2999d443fe" 2327dependencies = [ 2328 "memchr", 2329 "serde", 2330] 2331 2332[[package]] 2333name = "quick-xml" 2334version = "0.37.5" 2335source = "registry+https://github.com/rust-lang/crates.io-index" 2336checksum = "331e97a1af0bf59823e6eadffe373d7b27f485be8748f71471c662c1f269b7fb" 2337dependencies = [ 2338 "memchr", 2339] 2340 2341[[package]] 2342name = "quote" 2343version = "1.0.40" 2344source = "registry+https://github.com/rust-lang/crates.io-index" 2345checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d" 2346dependencies = [ 2347 "proc-macro2", 2348] 2349 2350[[package]] 2351name = "r-efi" 2352version = "5.3.0" 2353source = "registry+https://github.com/rust-lang/crates.io-index" 2354checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" 2355 2356[[package]] 2357name = "rand" 2358version = "0.9.2" 2359source = "registry+https://github.com/rust-lang/crates.io-index" 2360checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1" 2361dependencies = [ 2362 "rand_chacha", 2363 "rand_core", 2364] 2365 2366[[package]] 2367name = "rand_chacha" 2368version = "0.9.0" 2369source = "registry+https://github.com/rust-lang/crates.io-index" 2370checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb" 2371dependencies = [ 2372 "ppv-lite86", 2373 "rand_core", 2374] 2375 2376[[package]] 2377name = "rand_core" 2378version = "0.9.3" 2379source = "registry+https://github.com/rust-lang/crates.io-index" 2380checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38" 2381dependencies = [ 2382 "getrandom", 2383] 2384 2385[[package]] 2386name = "raw-window-handle" 2387version = "0.6.2" 2388source = "registry+https://github.com/rust-lang/crates.io-index" 2389checksum = "20675572f6f24e9e76ef639bc5552774ed45f1c30e2951e1e99c59888861c539" 2390 2391[[package]] 2392name = "redox_syscall" 2393version = "0.4.1" 2394source = "registry+https://github.com/rust-lang/crates.io-index" 2395checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa" 2396dependencies = [ 2397 "bitflags 1.3.2", 2398] 2399 2400[[package]] 2401name = "redox_syscall" 2402version = "0.5.17" 2403source = "registry+https://github.com/rust-lang/crates.io-index" 2404checksum = "5407465600fb0548f1442edf71dd20683c6ed326200ace4b1ef0763521bb3b77" 2405dependencies = [ 2406 "bitflags 2.9.2", 2407] 2408 2409[[package]] 2410name = "regex" 2411version = "1.11.1" 2412source = "registry+https://github.com/rust-lang/crates.io-index" 2413checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191" 2414dependencies = [ 2415 "aho-corasick", 2416 "memchr", 2417 "regex-automata 0.4.9", 2418 "regex-syntax 0.8.5", 2419] 2420 2421[[package]] 2422name = "regex-automata" 2423version = "0.1.10" 2424source = "registry+https://github.com/rust-lang/crates.io-index" 2425checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132" 2426dependencies = [ 2427 "regex-syntax 0.6.29", 2428] 2429 2430[[package]] 2431name = "regex-automata" 2432version = "0.4.9" 2433source = "registry+https://github.com/rust-lang/crates.io-index" 2434checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908" 2435dependencies = [ 2436 "aho-corasick", 2437 "memchr", 2438 "regex-syntax 0.8.5", 2439] 2440 2441[[package]] 2442name = "regex-syntax" 2443version = "0.6.29" 2444source = "registry+https://github.com/rust-lang/crates.io-index" 2445checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" 2446 2447[[package]] 2448name = "regex-syntax" 2449version = "0.8.5" 2450source = "registry+https://github.com/rust-lang/crates.io-index" 2451checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c" 2452 2453[[package]] 2454name = "renderdoc-sys" 2455version = "1.1.0" 2456source = "registry+https://github.com/rust-lang/crates.io-index" 2457checksum = "19b30a45b0cd0bcca8037f3d0dc3421eaf95327a17cad11964fb8179b4fc4832" 2458 2459[[package]] 2460name = "rfd" 2461version = "0.15.4" 2462source = "registry+https://github.com/rust-lang/crates.io-index" 2463checksum = "ef2bee61e6cffa4635c72d7d81a84294e28f0930db0ddcb0f66d10244674ebed" 2464dependencies = [ 2465 "ashpd", 2466 "block2 0.6.1", 2467 "dispatch2", 2468 "js-sys", 2469 "log", 2470 "objc2 0.6.2", 2471 "objc2-app-kit 0.3.1", 2472 "objc2-core-foundation", 2473 "objc2-foundation 0.3.1", 2474 "pollster", 2475 "raw-window-handle", 2476 "urlencoding", 2477 "wasm-bindgen", 2478 "wasm-bindgen-futures", 2479 "web-sys", 2480 "windows-sys 0.59.0", 2481] 2482 2483[[package]] 2484name = "rustc-demangle" 2485version = "0.1.26" 2486source = "registry+https://github.com/rust-lang/crates.io-index" 2487checksum = "56f7d92ca342cea22a06f2121d944b4fd82af56988c270852495420f961d4ace" 2488 2489[[package]] 2490name = "rustc-hash" 2491version = "1.1.0" 2492source = "registry+https://github.com/rust-lang/crates.io-index" 2493checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" 2494 2495[[package]] 2496name = "rustc-hash" 2497version = "2.1.1" 2498source = "registry+https://github.com/rust-lang/crates.io-index" 2499checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d" 2500 2501[[package]] 2502name = "rustix" 2503version = "0.38.44" 2504source = "registry+https://github.com/rust-lang/crates.io-index" 2505checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154" 2506dependencies = [ 2507 "bitflags 2.9.2", 2508 "errno", 2509 "libc", 2510 "linux-raw-sys 0.4.15", 2511 "windows-sys 0.59.0", 2512] 2513 2514[[package]] 2515name = "rustix" 2516version = "1.0.8" 2517source = "registry+https://github.com/rust-lang/crates.io-index" 2518checksum = "11181fbabf243db407ef8df94a6ce0b2f9a733bd8be4ad02b4eda9602296cac8" 2519dependencies = [ 2520 "bitflags 2.9.2", 2521 "errno", 2522 "libc", 2523 "linux-raw-sys 0.9.4", 2524 "windows-sys 0.60.2", 2525] 2526 2527[[package]] 2528name = "rustversion" 2529version = "1.0.22" 2530source = "registry+https://github.com/rust-lang/crates.io-index" 2531checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d" 2532 2533[[package]] 2534name = "same-file" 2535version = "1.0.6" 2536source = "registry+https://github.com/rust-lang/crates.io-index" 2537checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 2538dependencies = [ 2539 "winapi-util", 2540] 2541 2542[[package]] 2543name = "scoped-tls" 2544version = "1.0.1" 2545source = "registry+https://github.com/rust-lang/crates.io-index" 2546checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294" 2547 2548[[package]] 2549name = "scopeguard" 2550version = "1.2.0" 2551source = "registry+https://github.com/rust-lang/crates.io-index" 2552checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 2553 2554[[package]] 2555name = "serde" 2556version = "1.0.219" 2557source = "registry+https://github.com/rust-lang/crates.io-index" 2558checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6" 2559dependencies = [ 2560 "serde_derive", 2561] 2562 2563[[package]] 2564name = "serde_bytes" 2565version = "0.11.17" 2566source = "registry+https://github.com/rust-lang/crates.io-index" 2567checksum = "8437fd221bde2d4ca316d61b90e337e9e702b3820b87d63caa9ba6c02bd06d96" 2568dependencies = [ 2569 "serde", 2570] 2571 2572[[package]] 2573name = "serde_derive" 2574version = "1.0.219" 2575source = "registry+https://github.com/rust-lang/crates.io-index" 2576checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00" 2577dependencies = [ 2578 "proc-macro2", 2579 "quote", 2580 "syn", 2581] 2582 2583[[package]] 2584name = "serde_repr" 2585version = "0.1.20" 2586source = "registry+https://github.com/rust-lang/crates.io-index" 2587checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c" 2588dependencies = [ 2589 "proc-macro2", 2590 "quote", 2591 "syn", 2592] 2593 2594[[package]] 2595name = "sharded-slab" 2596version = "0.1.7" 2597source = "registry+https://github.com/rust-lang/crates.io-index" 2598checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6" 2599dependencies = [ 2600 "lazy_static", 2601] 2602 2603[[package]] 2604name = "shlex" 2605version = "1.3.0" 2606source = "registry+https://github.com/rust-lang/crates.io-index" 2607checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" 2608 2609[[package]] 2610name = "signal-hook-registry" 2611version = "1.4.6" 2612source = "registry+https://github.com/rust-lang/crates.io-index" 2613checksum = "b2a4719bff48cee6b39d12c020eeb490953ad2443b7055bd0b21fca26bd8c28b" 2614dependencies = [ 2615 "libc", 2616] 2617 2618[[package]] 2619name = "simd-adler32" 2620version = "0.3.7" 2621source = "registry+https://github.com/rust-lang/crates.io-index" 2622checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe" 2623 2624[[package]] 2625name = "slab" 2626version = "0.4.11" 2627source = "registry+https://github.com/rust-lang/crates.io-index" 2628checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589" 2629 2630[[package]] 2631name = "slimeball" 2632version = "0.1.0" 2633dependencies = [ 2634 "color-eyre", 2635 "eframe", 2636 "fastnbt 2.5.0 (registry+https://github.com/rust-lang/crates.io-index)", 2637 "mimalloc", 2638 "rfd", 2639 "slimeball-lib", 2640 "tracing", 2641 "tracing-subscriber", 2642] 2643 2644[[package]] 2645name = "slimeball-lib" 2646version = "0.1.0" 2647dependencies = [ 2648 "byteorder", 2649 "fastnbt 2.5.0 (git+https://github.com/owengage/fastnbt)", 2650 "serde", 2651 "thiserror 2.0.15", 2652 "tracing", 2653 "zstd", 2654] 2655 2656[[package]] 2657name = "slotmap" 2658version = "1.0.7" 2659source = "registry+https://github.com/rust-lang/crates.io-index" 2660checksum = "dbff4acf519f630b3a3ddcfaea6c06b42174d9a44bc70c620e9ed1649d58b82a" 2661dependencies = [ 2662 "version_check", 2663] 2664 2665[[package]] 2666name = "smallvec" 2667version = "1.15.1" 2668source = "registry+https://github.com/rust-lang/crates.io-index" 2669checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" 2670 2671[[package]] 2672name = "smithay-client-toolkit" 2673version = "0.19.2" 2674source = "registry+https://github.com/rust-lang/crates.io-index" 2675checksum = "3457dea1f0eb631b4034d61d4d8c32074caa6cd1ab2d59f2327bd8461e2c0016" 2676dependencies = [ 2677 "bitflags 2.9.2", 2678 "calloop", 2679 "calloop-wayland-source", 2680 "cursor-icon", 2681 "libc", 2682 "log", 2683 "memmap2", 2684 "rustix 0.38.44", 2685 "thiserror 1.0.69", 2686 "wayland-backend", 2687 "wayland-client", 2688 "wayland-csd-frame", 2689 "wayland-cursor", 2690 "wayland-protocols", 2691 "wayland-protocols-wlr", 2692 "wayland-scanner", 2693 "xkeysym", 2694] 2695 2696[[package]] 2697name = "smithay-clipboard" 2698version = "0.7.2" 2699source = "registry+https://github.com/rust-lang/crates.io-index" 2700checksum = "cc8216eec463674a0e90f29e0ae41a4db573ec5b56b1c6c1c71615d249b6d846" 2701dependencies = [ 2702 "libc", 2703 "smithay-client-toolkit", 2704 "wayland-backend", 2705] 2706 2707[[package]] 2708name = "smol_str" 2709version = "0.2.2" 2710source = "registry+https://github.com/rust-lang/crates.io-index" 2711checksum = "dd538fb6910ac1099850255cf94a94df6551fbdd602454387d0adb2d1ca6dead" 2712dependencies = [ 2713 "serde", 2714] 2715 2716[[package]] 2717name = "stable_deref_trait" 2718version = "1.2.0" 2719source = "registry+https://github.com/rust-lang/crates.io-index" 2720checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" 2721 2722[[package]] 2723name = "static_assertions" 2724version = "1.1.0" 2725source = "registry+https://github.com/rust-lang/crates.io-index" 2726checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" 2727 2728[[package]] 2729name = "strum" 2730version = "0.26.3" 2731source = "registry+https://github.com/rust-lang/crates.io-index" 2732checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06" 2733dependencies = [ 2734 "strum_macros", 2735] 2736 2737[[package]] 2738name = "strum_macros" 2739version = "0.26.4" 2740source = "registry+https://github.com/rust-lang/crates.io-index" 2741checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be" 2742dependencies = [ 2743 "heck", 2744 "proc-macro2", 2745 "quote", 2746 "rustversion", 2747 "syn", 2748] 2749 2750[[package]] 2751name = "syn" 2752version = "2.0.106" 2753source = "registry+https://github.com/rust-lang/crates.io-index" 2754checksum = "ede7c438028d4436d71104916910f5bb611972c5cfd7f89b8300a8186e6fada6" 2755dependencies = [ 2756 "proc-macro2", 2757 "quote", 2758 "unicode-ident", 2759] 2760 2761[[package]] 2762name = "synstructure" 2763version = "0.13.2" 2764source = "registry+https://github.com/rust-lang/crates.io-index" 2765checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2" 2766dependencies = [ 2767 "proc-macro2", 2768 "quote", 2769 "syn", 2770] 2771 2772[[package]] 2773name = "tempfile" 2774version = "3.20.0" 2775source = "registry+https://github.com/rust-lang/crates.io-index" 2776checksum = "e8a64e3985349f2441a1a9ef0b853f869006c3855f2cda6862a94d26ebb9d6a1" 2777dependencies = [ 2778 "fastrand", 2779 "getrandom", 2780 "once_cell", 2781 "rustix 1.0.8", 2782 "windows-sys 0.59.0", 2783] 2784 2785[[package]] 2786name = "termcolor" 2787version = "1.4.1" 2788source = "registry+https://github.com/rust-lang/crates.io-index" 2789checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755" 2790dependencies = [ 2791 "winapi-util", 2792] 2793 2794[[package]] 2795name = "thiserror" 2796version = "1.0.69" 2797source = "registry+https://github.com/rust-lang/crates.io-index" 2798checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" 2799dependencies = [ 2800 "thiserror-impl 1.0.69", 2801] 2802 2803[[package]] 2804name = "thiserror" 2805version = "2.0.15" 2806source = "registry+https://github.com/rust-lang/crates.io-index" 2807checksum = "80d76d3f064b981389ecb4b6b7f45a0bf9fdac1d5b9204c7bd6714fecc302850" 2808dependencies = [ 2809 "thiserror-impl 2.0.15", 2810] 2811 2812[[package]] 2813name = "thiserror-impl" 2814version = "1.0.69" 2815source = "registry+https://github.com/rust-lang/crates.io-index" 2816checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" 2817dependencies = [ 2818 "proc-macro2", 2819 "quote", 2820 "syn", 2821] 2822 2823[[package]] 2824name = "thiserror-impl" 2825version = "2.0.15" 2826source = "registry+https://github.com/rust-lang/crates.io-index" 2827checksum = "44d29feb33e986b6ea906bd9c3559a856983f92371b3eaa5e83782a351623de0" 2828dependencies = [ 2829 "proc-macro2", 2830 "quote", 2831 "syn", 2832] 2833 2834[[package]] 2835name = "thread_local" 2836version = "1.1.9" 2837source = "registry+https://github.com/rust-lang/crates.io-index" 2838checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185" 2839dependencies = [ 2840 "cfg-if", 2841] 2842 2843[[package]] 2844name = "tiff" 2845version = "0.9.1" 2846source = "registry+https://github.com/rust-lang/crates.io-index" 2847checksum = "ba1310fcea54c6a9a4fd1aad794ecc02c31682f6bfbecdf460bf19533eed1e3e" 2848dependencies = [ 2849 "flate2", 2850 "jpeg-decoder", 2851 "weezl", 2852] 2853 2854[[package]] 2855name = "tinystr" 2856version = "0.8.1" 2857source = "registry+https://github.com/rust-lang/crates.io-index" 2858checksum = "5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b" 2859dependencies = [ 2860 "displaydoc", 2861 "zerovec", 2862] 2863 2864[[package]] 2865name = "toml_datetime" 2866version = "0.6.11" 2867source = "registry+https://github.com/rust-lang/crates.io-index" 2868checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c" 2869 2870[[package]] 2871name = "toml_edit" 2872version = "0.22.27" 2873source = "registry+https://github.com/rust-lang/crates.io-index" 2874checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a" 2875dependencies = [ 2876 "indexmap", 2877 "toml_datetime", 2878 "winnow", 2879] 2880 2881[[package]] 2882name = "tracing" 2883version = "0.1.41" 2884source = "registry+https://github.com/rust-lang/crates.io-index" 2885checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0" 2886dependencies = [ 2887 "pin-project-lite", 2888 "tracing-attributes", 2889 "tracing-core", 2890] 2891 2892[[package]] 2893name = "tracing-attributes" 2894version = "0.1.30" 2895source = "registry+https://github.com/rust-lang/crates.io-index" 2896checksum = "81383ab64e72a7a8b8e13130c49e3dab29def6d0c7d76a03087b3cf71c5c6903" 2897dependencies = [ 2898 "proc-macro2", 2899 "quote", 2900 "syn", 2901] 2902 2903[[package]] 2904name = "tracing-core" 2905version = "0.1.34" 2906source = "registry+https://github.com/rust-lang/crates.io-index" 2907checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678" 2908dependencies = [ 2909 "once_cell", 2910 "valuable", 2911] 2912 2913[[package]] 2914name = "tracing-error" 2915version = "0.2.1" 2916source = "registry+https://github.com/rust-lang/crates.io-index" 2917checksum = "8b1581020d7a273442f5b45074a6a57d5757ad0a47dac0e9f0bd57b81936f3db" 2918dependencies = [ 2919 "tracing", 2920 "tracing-subscriber", 2921] 2922 2923[[package]] 2924name = "tracing-log" 2925version = "0.2.0" 2926source = "registry+https://github.com/rust-lang/crates.io-index" 2927checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3" 2928dependencies = [ 2929 "log", 2930 "once_cell", 2931 "tracing-core", 2932] 2933 2934[[package]] 2935name = "tracing-subscriber" 2936version = "0.3.19" 2937source = "registry+https://github.com/rust-lang/crates.io-index" 2938checksum = "e8189decb5ac0fa7bc8b96b7cb9b2701d60d48805aca84a238004d665fcc4008" 2939dependencies = [ 2940 "matchers", 2941 "nu-ansi-term", 2942 "once_cell", 2943 "regex", 2944 "sharded-slab", 2945 "smallvec", 2946 "thread_local", 2947 "tracing", 2948 "tracing-core", 2949 "tracing-log", 2950] 2951 2952[[package]] 2953name = "ttf-parser" 2954version = "0.25.1" 2955source = "registry+https://github.com/rust-lang/crates.io-index" 2956checksum = "d2df906b07856748fa3f6e0ad0cbaa047052d4a7dd609e231c4f72cee8c36f31" 2957 2958[[package]] 2959name = "type-map" 2960version = "0.5.1" 2961source = "registry+https://github.com/rust-lang/crates.io-index" 2962checksum = "cb30dbbd9036155e74adad6812e9898d03ec374946234fbcebd5dfc7b9187b90" 2963dependencies = [ 2964 "rustc-hash 2.1.1", 2965] 2966 2967[[package]] 2968name = "uds_windows" 2969version = "1.1.0" 2970source = "registry+https://github.com/rust-lang/crates.io-index" 2971checksum = "89daebc3e6fd160ac4aa9fc8b3bf71e1f74fbf92367ae71fb83a037e8bf164b9" 2972dependencies = [ 2973 "memoffset", 2974 "tempfile", 2975 "winapi", 2976] 2977 2978[[package]] 2979name = "unicode-ident" 2980version = "1.0.18" 2981source = "registry+https://github.com/rust-lang/crates.io-index" 2982checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512" 2983 2984[[package]] 2985name = "unicode-segmentation" 2986version = "1.12.0" 2987source = "registry+https://github.com/rust-lang/crates.io-index" 2988checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493" 2989 2990[[package]] 2991name = "unicode-width" 2992version = "0.2.1" 2993source = "registry+https://github.com/rust-lang/crates.io-index" 2994checksum = "4a1a07cc7db3810833284e8d372ccdc6da29741639ecc70c9ec107df0fa6154c" 2995 2996[[package]] 2997name = "url" 2998version = "2.5.4" 2999source = "registry+https://github.com/rust-lang/crates.io-index" 3000checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60" 3001dependencies = [ 3002 "form_urlencoded", 3003 "idna", 3004 "percent-encoding", 3005 "serde", 3006] 3007 3008[[package]] 3009name = "urlencoding" 3010version = "2.1.3" 3011source = "registry+https://github.com/rust-lang/crates.io-index" 3012checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da" 3013 3014[[package]] 3015name = "utf8_iter" 3016version = "1.0.4" 3017source = "registry+https://github.com/rust-lang/crates.io-index" 3018checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" 3019 3020[[package]] 3021name = "valuable" 3022version = "0.1.1" 3023source = "registry+https://github.com/rust-lang/crates.io-index" 3024checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65" 3025 3026[[package]] 3027name = "version_check" 3028version = "0.9.5" 3029source = "registry+https://github.com/rust-lang/crates.io-index" 3030checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" 3031 3032[[package]] 3033name = "walkdir" 3034version = "2.5.0" 3035source = "registry+https://github.com/rust-lang/crates.io-index" 3036checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" 3037dependencies = [ 3038 "same-file", 3039 "winapi-util", 3040] 3041 3042[[package]] 3043name = "wasi" 3044version = "0.14.2+wasi-0.2.4" 3045source = "registry+https://github.com/rust-lang/crates.io-index" 3046checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3" 3047dependencies = [ 3048 "wit-bindgen-rt", 3049] 3050 3051[[package]] 3052name = "wasm-bindgen" 3053version = "0.2.100" 3054source = "registry+https://github.com/rust-lang/crates.io-index" 3055checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5" 3056dependencies = [ 3057 "cfg-if", 3058 "once_cell", 3059 "rustversion", 3060 "wasm-bindgen-macro", 3061] 3062 3063[[package]] 3064name = "wasm-bindgen-backend" 3065version = "0.2.100" 3066source = "registry+https://github.com/rust-lang/crates.io-index" 3067checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6" 3068dependencies = [ 3069 "bumpalo", 3070 "log", 3071 "proc-macro2", 3072 "quote", 3073 "syn", 3074 "wasm-bindgen-shared", 3075] 3076 3077[[package]] 3078name = "wasm-bindgen-futures" 3079version = "0.4.50" 3080source = "registry+https://github.com/rust-lang/crates.io-index" 3081checksum = "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61" 3082dependencies = [ 3083 "cfg-if", 3084 "js-sys", 3085 "once_cell", 3086 "wasm-bindgen", 3087 "web-sys", 3088] 3089 3090[[package]] 3091name = "wasm-bindgen-macro" 3092version = "0.2.100" 3093source = "registry+https://github.com/rust-lang/crates.io-index" 3094checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407" 3095dependencies = [ 3096 "quote", 3097 "wasm-bindgen-macro-support", 3098] 3099 3100[[package]] 3101name = "wasm-bindgen-macro-support" 3102version = "0.2.100" 3103source = "registry+https://github.com/rust-lang/crates.io-index" 3104checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de" 3105dependencies = [ 3106 "proc-macro2", 3107 "quote", 3108 "syn", 3109 "wasm-bindgen-backend", 3110 "wasm-bindgen-shared", 3111] 3112 3113[[package]] 3114name = "wasm-bindgen-shared" 3115version = "0.2.100" 3116source = "registry+https://github.com/rust-lang/crates.io-index" 3117checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d" 3118dependencies = [ 3119 "unicode-ident", 3120] 3121 3122[[package]] 3123name = "wayland-backend" 3124version = "0.3.11" 3125source = "registry+https://github.com/rust-lang/crates.io-index" 3126checksum = "673a33c33048a5ade91a6b139580fa174e19fb0d23f396dca9fa15f2e1e49b35" 3127dependencies = [ 3128 "cc", 3129 "downcast-rs", 3130 "rustix 1.0.8", 3131 "scoped-tls", 3132 "smallvec", 3133 "wayland-sys", 3134] 3135 3136[[package]] 3137name = "wayland-client" 3138version = "0.31.11" 3139source = "registry+https://github.com/rust-lang/crates.io-index" 3140checksum = "c66a47e840dc20793f2264eb4b3e4ecb4b75d91c0dd4af04b456128e0bdd449d" 3141dependencies = [ 3142 "bitflags 2.9.2", 3143 "rustix 1.0.8", 3144 "wayland-backend", 3145 "wayland-scanner", 3146] 3147 3148[[package]] 3149name = "wayland-csd-frame" 3150version = "0.3.0" 3151source = "registry+https://github.com/rust-lang/crates.io-index" 3152checksum = "625c5029dbd43d25e6aa9615e88b829a5cad13b2819c4ae129fdbb7c31ab4c7e" 3153dependencies = [ 3154 "bitflags 2.9.2", 3155 "cursor-icon", 3156 "wayland-backend", 3157] 3158 3159[[package]] 3160name = "wayland-cursor" 3161version = "0.31.11" 3162source = "registry+https://github.com/rust-lang/crates.io-index" 3163checksum = "447ccc440a881271b19e9989f75726d60faa09b95b0200a9b7eb5cc47c3eeb29" 3164dependencies = [ 3165 "rustix 1.0.8", 3166 "wayland-client", 3167 "xcursor", 3168] 3169 3170[[package]] 3171name = "wayland-protocols" 3172version = "0.32.9" 3173source = "registry+https://github.com/rust-lang/crates.io-index" 3174checksum = "efa790ed75fbfd71283bd2521a1cfdc022aabcc28bdcff00851f9e4ae88d9901" 3175dependencies = [ 3176 "bitflags 2.9.2", 3177 "wayland-backend", 3178 "wayland-client", 3179 "wayland-scanner", 3180] 3181 3182[[package]] 3183name = "wayland-protocols-plasma" 3184version = "0.3.9" 3185source = "registry+https://github.com/rust-lang/crates.io-index" 3186checksum = "a07a14257c077ab3279987c4f8bb987851bf57081b93710381daea94f2c2c032" 3187dependencies = [ 3188 "bitflags 2.9.2", 3189 "wayland-backend", 3190 "wayland-client", 3191 "wayland-protocols", 3192 "wayland-scanner", 3193] 3194 3195[[package]] 3196name = "wayland-protocols-wlr" 3197version = "0.3.9" 3198source = "registry+https://github.com/rust-lang/crates.io-index" 3199checksum = "efd94963ed43cf9938a090ca4f7da58eb55325ec8200c3848963e98dc25b78ec" 3200dependencies = [ 3201 "bitflags 2.9.2", 3202 "wayland-backend", 3203 "wayland-client", 3204 "wayland-protocols", 3205 "wayland-scanner", 3206] 3207 3208[[package]] 3209name = "wayland-scanner" 3210version = "0.31.7" 3211source = "registry+https://github.com/rust-lang/crates.io-index" 3212checksum = "54cb1e9dc49da91950bdfd8b848c49330536d9d1fb03d4bfec8cae50caa50ae3" 3213dependencies = [ 3214 "proc-macro2", 3215 "quick-xml 0.37.5", 3216 "quote", 3217] 3218 3219[[package]] 3220name = "wayland-sys" 3221version = "0.31.7" 3222source = "registry+https://github.com/rust-lang/crates.io-index" 3223checksum = "34949b42822155826b41db8e5d0c1be3a2bd296c747577a43a3e6daefc296142" 3224dependencies = [ 3225 "dlib", 3226 "log", 3227 "once_cell", 3228 "pkg-config", 3229] 3230 3231[[package]] 3232name = "web-sys" 3233version = "0.3.77" 3234source = "registry+https://github.com/rust-lang/crates.io-index" 3235checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2" 3236dependencies = [ 3237 "js-sys", 3238 "wasm-bindgen", 3239] 3240 3241[[package]] 3242name = "web-time" 3243version = "1.1.0" 3244source = "registry+https://github.com/rust-lang/crates.io-index" 3245checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb" 3246dependencies = [ 3247 "js-sys", 3248 "wasm-bindgen", 3249] 3250 3251[[package]] 3252name = "webbrowser" 3253version = "1.0.5" 3254source = "registry+https://github.com/rust-lang/crates.io-index" 3255checksum = "aaf4f3c0ba838e82b4e5ccc4157003fb8c324ee24c058470ffb82820becbde98" 3256dependencies = [ 3257 "core-foundation 0.10.1", 3258 "jni", 3259 "log", 3260 "ndk-context", 3261 "objc2 0.6.2", 3262 "objc2-foundation 0.3.1", 3263 "url", 3264 "web-sys", 3265] 3266 3267[[package]] 3268name = "weezl" 3269version = "0.1.10" 3270source = "registry+https://github.com/rust-lang/crates.io-index" 3271checksum = "a751b3277700db47d3e574514de2eced5e54dc8a5436a3bf7a0b248b2cee16f3" 3272 3273[[package]] 3274name = "wgpu" 3275version = "25.0.2" 3276source = "registry+https://github.com/rust-lang/crates.io-index" 3277checksum = "ec8fb398f119472be4d80bc3647339f56eb63b2a331f6a3d16e25d8144197dd9" 3278dependencies = [ 3279 "arrayvec", 3280 "bitflags 2.9.2", 3281 "cfg_aliases", 3282 "document-features", 3283 "hashbrown", 3284 "js-sys", 3285 "log", 3286 "parking_lot", 3287 "portable-atomic", 3288 "profiling", 3289 "raw-window-handle", 3290 "smallvec", 3291 "static_assertions", 3292 "wasm-bindgen", 3293 "web-sys", 3294 "wgpu-core", 3295 "wgpu-hal", 3296 "wgpu-types", 3297] 3298 3299[[package]] 3300name = "wgpu-core" 3301version = "25.0.2" 3302source = "registry+https://github.com/rust-lang/crates.io-index" 3303checksum = "f7b882196f8368511d613c6aeec80655160db6646aebddf8328879a88d54e500" 3304dependencies = [ 3305 "arrayvec", 3306 "bit-set", 3307 "bit-vec", 3308 "bitflags 2.9.2", 3309 "cfg_aliases", 3310 "document-features", 3311 "hashbrown", 3312 "indexmap", 3313 "log", 3314 "naga", 3315 "once_cell", 3316 "parking_lot", 3317 "portable-atomic", 3318 "profiling", 3319 "raw-window-handle", 3320 "rustc-hash 1.1.0", 3321 "smallvec", 3322 "thiserror 2.0.15", 3323 "wgpu-core-deps-windows-linux-android", 3324 "wgpu-hal", 3325 "wgpu-types", 3326] 3327 3328[[package]] 3329name = "wgpu-core-deps-windows-linux-android" 3330version = "25.0.0" 3331source = "registry+https://github.com/rust-lang/crates.io-index" 3332checksum = "cba5fb5f7f9c98baa7c889d444f63ace25574833df56f5b817985f641af58e46" 3333dependencies = [ 3334 "wgpu-hal", 3335] 3336 3337[[package]] 3338name = "wgpu-hal" 3339version = "25.0.2" 3340source = "registry+https://github.com/rust-lang/crates.io-index" 3341checksum = "f968767fe4d3d33747bbd1473ccd55bf0f6451f55d733b5597e67b5deab4ad17" 3342dependencies = [ 3343 "bitflags 2.9.2", 3344 "cfg_aliases", 3345 "libloading", 3346 "log", 3347 "naga", 3348 "parking_lot", 3349 "portable-atomic", 3350 "raw-window-handle", 3351 "renderdoc-sys", 3352 "thiserror 2.0.15", 3353 "wgpu-types", 3354] 3355 3356[[package]] 3357name = "wgpu-types" 3358version = "25.0.0" 3359source = "registry+https://github.com/rust-lang/crates.io-index" 3360checksum = "2aa49460c2a8ee8edba3fca54325540d904dd85b2e086ada762767e17d06e8bc" 3361dependencies = [ 3362 "bitflags 2.9.2", 3363 "bytemuck", 3364 "js-sys", 3365 "log", 3366 "thiserror 2.0.15", 3367 "web-sys", 3368] 3369 3370[[package]] 3371name = "winapi" 3372version = "0.3.9" 3373source = "registry+https://github.com/rust-lang/crates.io-index" 3374checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 3375dependencies = [ 3376 "winapi-i686-pc-windows-gnu", 3377 "winapi-x86_64-pc-windows-gnu", 3378] 3379 3380[[package]] 3381name = "winapi-i686-pc-windows-gnu" 3382version = "0.4.0" 3383source = "registry+https://github.com/rust-lang/crates.io-index" 3384checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 3385 3386[[package]] 3387name = "winapi-util" 3388version = "0.1.9" 3389source = "registry+https://github.com/rust-lang/crates.io-index" 3390checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb" 3391dependencies = [ 3392 "windows-sys 0.59.0", 3393] 3394 3395[[package]] 3396name = "winapi-x86_64-pc-windows-gnu" 3397version = "0.4.0" 3398source = "registry+https://github.com/rust-lang/crates.io-index" 3399checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 3400 3401[[package]] 3402name = "windows" 3403version = "0.61.3" 3404source = "registry+https://github.com/rust-lang/crates.io-index" 3405checksum = "9babd3a767a4c1aef6900409f85f5d53ce2544ccdfaa86dad48c91782c6d6893" 3406dependencies = [ 3407 "windows-collections", 3408 "windows-core", 3409 "windows-future", 3410 "windows-link", 3411 "windows-numerics", 3412] 3413 3414[[package]] 3415name = "windows-collections" 3416version = "0.2.0" 3417source = "registry+https://github.com/rust-lang/crates.io-index" 3418checksum = "3beeceb5e5cfd9eb1d76b381630e82c4241ccd0d27f1a39ed41b2760b255c5e8" 3419dependencies = [ 3420 "windows-core", 3421] 3422 3423[[package]] 3424name = "windows-core" 3425version = "0.61.2" 3426source = "registry+https://github.com/rust-lang/crates.io-index" 3427checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3" 3428dependencies = [ 3429 "windows-implement", 3430 "windows-interface", 3431 "windows-link", 3432 "windows-result", 3433 "windows-strings", 3434] 3435 3436[[package]] 3437name = "windows-future" 3438version = "0.2.1" 3439source = "registry+https://github.com/rust-lang/crates.io-index" 3440checksum = "fc6a41e98427b19fe4b73c550f060b59fa592d7d686537eebf9385621bfbad8e" 3441dependencies = [ 3442 "windows-core", 3443 "windows-link", 3444 "windows-threading", 3445] 3446 3447[[package]] 3448name = "windows-implement" 3449version = "0.60.0" 3450source = "registry+https://github.com/rust-lang/crates.io-index" 3451checksum = "a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836" 3452dependencies = [ 3453 "proc-macro2", 3454 "quote", 3455 "syn", 3456] 3457 3458[[package]] 3459name = "windows-interface" 3460version = "0.59.1" 3461source = "registry+https://github.com/rust-lang/crates.io-index" 3462checksum = "bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8" 3463dependencies = [ 3464 "proc-macro2", 3465 "quote", 3466 "syn", 3467] 3468 3469[[package]] 3470name = "windows-link" 3471version = "0.1.3" 3472source = "registry+https://github.com/rust-lang/crates.io-index" 3473checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a" 3474 3475[[package]] 3476name = "windows-numerics" 3477version = "0.2.0" 3478source = "registry+https://github.com/rust-lang/crates.io-index" 3479checksum = "9150af68066c4c5c07ddc0ce30421554771e528bde427614c61038bc2c92c2b1" 3480dependencies = [ 3481 "windows-core", 3482 "windows-link", 3483] 3484 3485[[package]] 3486name = "windows-result" 3487version = "0.3.4" 3488source = "registry+https://github.com/rust-lang/crates.io-index" 3489checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6" 3490dependencies = [ 3491 "windows-link", 3492] 3493 3494[[package]] 3495name = "windows-strings" 3496version = "0.4.2" 3497source = "registry+https://github.com/rust-lang/crates.io-index" 3498checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57" 3499dependencies = [ 3500 "windows-link", 3501] 3502 3503[[package]] 3504name = "windows-sys" 3505version = "0.45.0" 3506source = "registry+https://github.com/rust-lang/crates.io-index" 3507checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" 3508dependencies = [ 3509 "windows-targets 0.42.2", 3510] 3511 3512[[package]] 3513name = "windows-sys" 3514version = "0.52.0" 3515source = "registry+https://github.com/rust-lang/crates.io-index" 3516checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 3517dependencies = [ 3518 "windows-targets 0.52.6", 3519] 3520 3521[[package]] 3522name = "windows-sys" 3523version = "0.59.0" 3524source = "registry+https://github.com/rust-lang/crates.io-index" 3525checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" 3526dependencies = [ 3527 "windows-targets 0.52.6", 3528] 3529 3530[[package]] 3531name = "windows-sys" 3532version = "0.60.2" 3533source = "registry+https://github.com/rust-lang/crates.io-index" 3534checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb" 3535dependencies = [ 3536 "windows-targets 0.53.3", 3537] 3538 3539[[package]] 3540name = "windows-targets" 3541version = "0.42.2" 3542source = "registry+https://github.com/rust-lang/crates.io-index" 3543checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" 3544dependencies = [ 3545 "windows_aarch64_gnullvm 0.42.2", 3546 "windows_aarch64_msvc 0.42.2", 3547 "windows_i686_gnu 0.42.2", 3548 "windows_i686_msvc 0.42.2", 3549 "windows_x86_64_gnu 0.42.2", 3550 "windows_x86_64_gnullvm 0.42.2", 3551 "windows_x86_64_msvc 0.42.2", 3552] 3553 3554[[package]] 3555name = "windows-targets" 3556version = "0.48.5" 3557source = "registry+https://github.com/rust-lang/crates.io-index" 3558checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" 3559dependencies = [ 3560 "windows_aarch64_gnullvm 0.48.5", 3561 "windows_aarch64_msvc 0.48.5", 3562 "windows_i686_gnu 0.48.5", 3563 "windows_i686_msvc 0.48.5", 3564 "windows_x86_64_gnu 0.48.5", 3565 "windows_x86_64_gnullvm 0.48.5", 3566 "windows_x86_64_msvc 0.48.5", 3567] 3568 3569[[package]] 3570name = "windows-targets" 3571version = "0.52.6" 3572source = "registry+https://github.com/rust-lang/crates.io-index" 3573checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" 3574dependencies = [ 3575 "windows_aarch64_gnullvm 0.52.6", 3576 "windows_aarch64_msvc 0.52.6", 3577 "windows_i686_gnu 0.52.6", 3578 "windows_i686_gnullvm 0.52.6", 3579 "windows_i686_msvc 0.52.6", 3580 "windows_x86_64_gnu 0.52.6", 3581 "windows_x86_64_gnullvm 0.52.6", 3582 "windows_x86_64_msvc 0.52.6", 3583] 3584 3585[[package]] 3586name = "windows-targets" 3587version = "0.53.3" 3588source = "registry+https://github.com/rust-lang/crates.io-index" 3589checksum = "d5fe6031c4041849d7c496a8ded650796e7b6ecc19df1a431c1a363342e5dc91" 3590dependencies = [ 3591 "windows-link", 3592 "windows_aarch64_gnullvm 0.53.0", 3593 "windows_aarch64_msvc 0.53.0", 3594 "windows_i686_gnu 0.53.0", 3595 "windows_i686_gnullvm 0.53.0", 3596 "windows_i686_msvc 0.53.0", 3597 "windows_x86_64_gnu 0.53.0", 3598 "windows_x86_64_gnullvm 0.53.0", 3599 "windows_x86_64_msvc 0.53.0", 3600] 3601 3602[[package]] 3603name = "windows-threading" 3604version = "0.1.0" 3605source = "registry+https://github.com/rust-lang/crates.io-index" 3606checksum = "b66463ad2e0ea3bbf808b7f1d371311c80e115c0b71d60efc142cafbcfb057a6" 3607dependencies = [ 3608 "windows-link", 3609] 3610 3611[[package]] 3612name = "windows_aarch64_gnullvm" 3613version = "0.42.2" 3614source = "registry+https://github.com/rust-lang/crates.io-index" 3615checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" 3616 3617[[package]] 3618name = "windows_aarch64_gnullvm" 3619version = "0.48.5" 3620source = "registry+https://github.com/rust-lang/crates.io-index" 3621checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 3622 3623[[package]] 3624name = "windows_aarch64_gnullvm" 3625version = "0.52.6" 3626source = "registry+https://github.com/rust-lang/crates.io-index" 3627checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" 3628 3629[[package]] 3630name = "windows_aarch64_gnullvm" 3631version = "0.53.0" 3632source = "registry+https://github.com/rust-lang/crates.io-index" 3633checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764" 3634 3635[[package]] 3636name = "windows_aarch64_msvc" 3637version = "0.42.2" 3638source = "registry+https://github.com/rust-lang/crates.io-index" 3639checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" 3640 3641[[package]] 3642name = "windows_aarch64_msvc" 3643version = "0.48.5" 3644source = "registry+https://github.com/rust-lang/crates.io-index" 3645checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 3646 3647[[package]] 3648name = "windows_aarch64_msvc" 3649version = "0.52.6" 3650source = "registry+https://github.com/rust-lang/crates.io-index" 3651checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" 3652 3653[[package]] 3654name = "windows_aarch64_msvc" 3655version = "0.53.0" 3656source = "registry+https://github.com/rust-lang/crates.io-index" 3657checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c" 3658 3659[[package]] 3660name = "windows_i686_gnu" 3661version = "0.42.2" 3662source = "registry+https://github.com/rust-lang/crates.io-index" 3663checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" 3664 3665[[package]] 3666name = "windows_i686_gnu" 3667version = "0.48.5" 3668source = "registry+https://github.com/rust-lang/crates.io-index" 3669checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 3670 3671[[package]] 3672name = "windows_i686_gnu" 3673version = "0.52.6" 3674source = "registry+https://github.com/rust-lang/crates.io-index" 3675checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" 3676 3677[[package]] 3678name = "windows_i686_gnu" 3679version = "0.53.0" 3680source = "registry+https://github.com/rust-lang/crates.io-index" 3681checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3" 3682 3683[[package]] 3684name = "windows_i686_gnullvm" 3685version = "0.52.6" 3686source = "registry+https://github.com/rust-lang/crates.io-index" 3687checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" 3688 3689[[package]] 3690name = "windows_i686_gnullvm" 3691version = "0.53.0" 3692source = "registry+https://github.com/rust-lang/crates.io-index" 3693checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11" 3694 3695[[package]] 3696name = "windows_i686_msvc" 3697version = "0.42.2" 3698source = "registry+https://github.com/rust-lang/crates.io-index" 3699checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" 3700 3701[[package]] 3702name = "windows_i686_msvc" 3703version = "0.48.5" 3704source = "registry+https://github.com/rust-lang/crates.io-index" 3705checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 3706 3707[[package]] 3708name = "windows_i686_msvc" 3709version = "0.52.6" 3710source = "registry+https://github.com/rust-lang/crates.io-index" 3711checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" 3712 3713[[package]] 3714name = "windows_i686_msvc" 3715version = "0.53.0" 3716source = "registry+https://github.com/rust-lang/crates.io-index" 3717checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d" 3718 3719[[package]] 3720name = "windows_x86_64_gnu" 3721version = "0.42.2" 3722source = "registry+https://github.com/rust-lang/crates.io-index" 3723checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" 3724 3725[[package]] 3726name = "windows_x86_64_gnu" 3727version = "0.48.5" 3728source = "registry+https://github.com/rust-lang/crates.io-index" 3729checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 3730 3731[[package]] 3732name = "windows_x86_64_gnu" 3733version = "0.52.6" 3734source = "registry+https://github.com/rust-lang/crates.io-index" 3735checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" 3736 3737[[package]] 3738name = "windows_x86_64_gnu" 3739version = "0.53.0" 3740source = "registry+https://github.com/rust-lang/crates.io-index" 3741checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba" 3742 3743[[package]] 3744name = "windows_x86_64_gnullvm" 3745version = "0.42.2" 3746source = "registry+https://github.com/rust-lang/crates.io-index" 3747checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" 3748 3749[[package]] 3750name = "windows_x86_64_gnullvm" 3751version = "0.48.5" 3752source = "registry+https://github.com/rust-lang/crates.io-index" 3753checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 3754 3755[[package]] 3756name = "windows_x86_64_gnullvm" 3757version = "0.52.6" 3758source = "registry+https://github.com/rust-lang/crates.io-index" 3759checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" 3760 3761[[package]] 3762name = "windows_x86_64_gnullvm" 3763version = "0.53.0" 3764source = "registry+https://github.com/rust-lang/crates.io-index" 3765checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57" 3766 3767[[package]] 3768name = "windows_x86_64_msvc" 3769version = "0.42.2" 3770source = "registry+https://github.com/rust-lang/crates.io-index" 3771checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" 3772 3773[[package]] 3774name = "windows_x86_64_msvc" 3775version = "0.48.5" 3776source = "registry+https://github.com/rust-lang/crates.io-index" 3777checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 3778 3779[[package]] 3780name = "windows_x86_64_msvc" 3781version = "0.52.6" 3782source = "registry+https://github.com/rust-lang/crates.io-index" 3783checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" 3784 3785[[package]] 3786name = "windows_x86_64_msvc" 3787version = "0.53.0" 3788source = "registry+https://github.com/rust-lang/crates.io-index" 3789checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486" 3790 3791[[package]] 3792name = "winit" 3793version = "0.30.12" 3794source = "registry+https://github.com/rust-lang/crates.io-index" 3795checksum = "c66d4b9ed69c4009f6321f762d6e61ad8a2389cd431b97cb1e146812e9e6c732" 3796dependencies = [ 3797 "ahash", 3798 "android-activity", 3799 "atomic-waker", 3800 "bitflags 2.9.2", 3801 "block2 0.5.1", 3802 "bytemuck", 3803 "calloop", 3804 "cfg_aliases", 3805 "concurrent-queue", 3806 "core-foundation 0.9.4", 3807 "core-graphics", 3808 "cursor-icon", 3809 "dpi", 3810 "js-sys", 3811 "libc", 3812 "memmap2", 3813 "ndk", 3814 "objc2 0.5.2", 3815 "objc2-app-kit 0.2.2", 3816 "objc2-foundation 0.2.2", 3817 "objc2-ui-kit", 3818 "orbclient", 3819 "percent-encoding", 3820 "pin-project", 3821 "raw-window-handle", 3822 "redox_syscall 0.4.1", 3823 "rustix 0.38.44", 3824 "smithay-client-toolkit", 3825 "smol_str", 3826 "tracing", 3827 "unicode-segmentation", 3828 "wasm-bindgen", 3829 "wasm-bindgen-futures", 3830 "wayland-backend", 3831 "wayland-client", 3832 "wayland-protocols", 3833 "wayland-protocols-plasma", 3834 "web-sys", 3835 "web-time", 3836 "windows-sys 0.52.0", 3837 "x11-dl", 3838 "x11rb", 3839 "xkbcommon-dl", 3840] 3841 3842[[package]] 3843name = "winnow" 3844version = "0.7.12" 3845source = "registry+https://github.com/rust-lang/crates.io-index" 3846checksum = "f3edebf492c8125044983378ecb5766203ad3b4c2f7a922bd7dd207f6d443e95" 3847dependencies = [ 3848 "memchr", 3849] 3850 3851[[package]] 3852name = "wit-bindgen-rt" 3853version = "0.39.0" 3854source = "registry+https://github.com/rust-lang/crates.io-index" 3855checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1" 3856dependencies = [ 3857 "bitflags 2.9.2", 3858] 3859 3860[[package]] 3861name = "writeable" 3862version = "0.6.1" 3863source = "registry+https://github.com/rust-lang/crates.io-index" 3864checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb" 3865 3866[[package]] 3867name = "x11-dl" 3868version = "2.21.0" 3869source = "registry+https://github.com/rust-lang/crates.io-index" 3870checksum = "38735924fedd5314a6e548792904ed8c6de6636285cb9fec04d5b1db85c1516f" 3871dependencies = [ 3872 "libc", 3873 "once_cell", 3874 "pkg-config", 3875] 3876 3877[[package]] 3878name = "x11rb" 3879version = "0.13.1" 3880source = "registry+https://github.com/rust-lang/crates.io-index" 3881checksum = "5d91ffca73ee7f68ce055750bf9f6eca0780b8c85eff9bc046a3b0da41755e12" 3882dependencies = [ 3883 "as-raw-xcb-connection", 3884 "gethostname", 3885 "libc", 3886 "libloading", 3887 "once_cell", 3888 "rustix 0.38.44", 3889 "x11rb-protocol", 3890] 3891 3892[[package]] 3893name = "x11rb-protocol" 3894version = "0.13.1" 3895source = "registry+https://github.com/rust-lang/crates.io-index" 3896checksum = "ec107c4503ea0b4a98ef47356329af139c0a4f7750e621cf2973cd3385ebcb3d" 3897 3898[[package]] 3899name = "xcursor" 3900version = "0.3.10" 3901source = "registry+https://github.com/rust-lang/crates.io-index" 3902checksum = "bec9e4a500ca8864c5b47b8b482a73d62e4237670e5b5f1d6b9e3cae50f28f2b" 3903 3904[[package]] 3905name = "xkbcommon-dl" 3906version = "0.4.2" 3907source = "registry+https://github.com/rust-lang/crates.io-index" 3908checksum = "d039de8032a9a8856a6be89cea3e5d12fdd82306ab7c94d74e6deab2460651c5" 3909dependencies = [ 3910 "bitflags 2.9.2", 3911 "dlib", 3912 "log", 3913 "once_cell", 3914 "xkeysym", 3915] 3916 3917[[package]] 3918name = "xkeysym" 3919version = "0.2.1" 3920source = "registry+https://github.com/rust-lang/crates.io-index" 3921checksum = "b9cc00251562a284751c9973bace760d86c0276c471b4be569fe6b068ee97a56" 3922 3923[[package]] 3924name = "xml-rs" 3925version = "0.8.27" 3926source = "registry+https://github.com/rust-lang/crates.io-index" 3927checksum = "6fd8403733700263c6eb89f192880191f1b83e332f7a20371ddcf421c4a337c7" 3928 3929[[package]] 3930name = "yoke" 3931version = "0.8.0" 3932source = "registry+https://github.com/rust-lang/crates.io-index" 3933checksum = "5f41bb01b8226ef4bfd589436a297c53d118f65921786300e427be8d487695cc" 3934dependencies = [ 3935 "serde", 3936 "stable_deref_trait", 3937 "yoke-derive", 3938 "zerofrom", 3939] 3940 3941[[package]] 3942name = "yoke-derive" 3943version = "0.8.0" 3944source = "registry+https://github.com/rust-lang/crates.io-index" 3945checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6" 3946dependencies = [ 3947 "proc-macro2", 3948 "quote", 3949 "syn", 3950 "synstructure", 3951] 3952 3953[[package]] 3954name = "zbus" 3955version = "5.9.0" 3956source = "registry+https://github.com/rust-lang/crates.io-index" 3957checksum = "4bb4f9a464286d42851d18a605f7193b8febaf5b0919d71c6399b7b26e5b0aad" 3958dependencies = [ 3959 "async-broadcast", 3960 "async-executor", 3961 "async-io", 3962 "async-lock", 3963 "async-process", 3964 "async-recursion", 3965 "async-task", 3966 "async-trait", 3967 "blocking", 3968 "enumflags2", 3969 "event-listener", 3970 "futures-core", 3971 "futures-lite", 3972 "hex", 3973 "nix", 3974 "ordered-stream", 3975 "serde", 3976 "serde_repr", 3977 "tracing", 3978 "uds_windows", 3979 "windows-sys 0.59.0", 3980 "winnow", 3981 "zbus_macros", 3982 "zbus_names", 3983 "zvariant", 3984] 3985 3986[[package]] 3987name = "zbus-lockstep" 3988version = "0.5.1" 3989source = "registry+https://github.com/rust-lang/crates.io-index" 3990checksum = "29e96e38ded30eeab90b6ba88cb888d70aef4e7489b6cd212c5e5b5ec38045b6" 3991dependencies = [ 3992 "zbus_xml", 3993 "zvariant", 3994] 3995 3996[[package]] 3997name = "zbus-lockstep-macros" 3998version = "0.5.1" 3999source = "registry+https://github.com/rust-lang/crates.io-index" 4000checksum = "dc6821851fa840b708b4cbbaf6241868cabc85a2dc22f426361b0292bfc0b836" 4001dependencies = [ 4002 "proc-macro2", 4003 "quote", 4004 "syn", 4005 "zbus-lockstep", 4006 "zbus_xml", 4007 "zvariant", 4008] 4009 4010[[package]] 4011name = "zbus_macros" 4012version = "5.9.0" 4013source = "registry+https://github.com/rust-lang/crates.io-index" 4014checksum = "ef9859f68ee0c4ee2e8cde84737c78e3f4c54f946f2a38645d0d4c7a95327659" 4015dependencies = [ 4016 "proc-macro-crate", 4017 "proc-macro2", 4018 "quote", 4019 "syn", 4020 "zbus_names", 4021 "zvariant", 4022 "zvariant_utils", 4023] 4024 4025[[package]] 4026name = "zbus_names" 4027version = "4.2.0" 4028source = "registry+https://github.com/rust-lang/crates.io-index" 4029checksum = "7be68e64bf6ce8db94f63e72f0c7eb9a60d733f7e0499e628dfab0f84d6bcb97" 4030dependencies = [ 4031 "serde", 4032 "static_assertions", 4033 "winnow", 4034 "zvariant", 4035] 4036 4037[[package]] 4038name = "zbus_xml" 4039version = "5.0.2" 4040source = "registry+https://github.com/rust-lang/crates.io-index" 4041checksum = "589e9a02bfafb9754bb2340a9e3b38f389772684c63d9637e76b1870377bec29" 4042dependencies = [ 4043 "quick-xml 0.36.2", 4044 "serde", 4045 "static_assertions", 4046 "zbus_names", 4047 "zvariant", 4048] 4049 4050[[package]] 4051name = "zerocopy" 4052version = "0.8.26" 4053source = "registry+https://github.com/rust-lang/crates.io-index" 4054checksum = "1039dd0d3c310cf05de012d8a39ff557cb0d23087fd44cad61df08fc31907a2f" 4055dependencies = [ 4056 "zerocopy-derive", 4057] 4058 4059[[package]] 4060name = "zerocopy-derive" 4061version = "0.8.26" 4062source = "registry+https://github.com/rust-lang/crates.io-index" 4063checksum = "9ecf5b4cc5364572d7f4c329661bcc82724222973f2cab6f050a4e5c22f75181" 4064dependencies = [ 4065 "proc-macro2", 4066 "quote", 4067 "syn", 4068] 4069 4070[[package]] 4071name = "zerofrom" 4072version = "0.1.6" 4073source = "registry+https://github.com/rust-lang/crates.io-index" 4074checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5" 4075dependencies = [ 4076 "zerofrom-derive", 4077] 4078 4079[[package]] 4080name = "zerofrom-derive" 4081version = "0.1.6" 4082source = "registry+https://github.com/rust-lang/crates.io-index" 4083checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502" 4084dependencies = [ 4085 "proc-macro2", 4086 "quote", 4087 "syn", 4088 "synstructure", 4089] 4090 4091[[package]] 4092name = "zerotrie" 4093version = "0.2.2" 4094source = "registry+https://github.com/rust-lang/crates.io-index" 4095checksum = "36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595" 4096dependencies = [ 4097 "displaydoc", 4098 "yoke", 4099 "zerofrom", 4100] 4101 4102[[package]] 4103name = "zerovec" 4104version = "0.11.4" 4105source = "registry+https://github.com/rust-lang/crates.io-index" 4106checksum = "e7aa2bd55086f1ab526693ecbe444205da57e25f4489879da80635a46d90e73b" 4107dependencies = [ 4108 "yoke", 4109 "zerofrom", 4110 "zerovec-derive", 4111] 4112 4113[[package]] 4114name = "zerovec-derive" 4115version = "0.11.1" 4116source = "registry+https://github.com/rust-lang/crates.io-index" 4117checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f" 4118dependencies = [ 4119 "proc-macro2", 4120 "quote", 4121 "syn", 4122] 4123 4124[[package]] 4125name = "zstd" 4126version = "0.13.3" 4127source = "registry+https://github.com/rust-lang/crates.io-index" 4128checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a" 4129dependencies = [ 4130 "zstd-safe", 4131] 4132 4133[[package]] 4134name = "zstd-safe" 4135version = "7.2.4" 4136source = "registry+https://github.com/rust-lang/crates.io-index" 4137checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d" 4138dependencies = [ 4139 "zstd-sys", 4140] 4141 4142[[package]] 4143name = "zstd-sys" 4144version = "2.0.15+zstd.1.5.7" 4145source = "registry+https://github.com/rust-lang/crates.io-index" 4146checksum = "eb81183ddd97d0c74cedf1d50d85c8d08c1b8b68ee863bdee9e706eedba1a237" 4147dependencies = [ 4148 "cc", 4149 "pkg-config", 4150] 4151 4152[[package]] 4153name = "zvariant" 4154version = "5.6.0" 4155source = "registry+https://github.com/rust-lang/crates.io-index" 4156checksum = "d91b3680bb339216abd84714172b5138a4edac677e641ef17e1d8cb1b3ca6e6f" 4157dependencies = [ 4158 "endi", 4159 "enumflags2", 4160 "serde", 4161 "url", 4162 "winnow", 4163 "zvariant_derive", 4164 "zvariant_utils", 4165] 4166 4167[[package]] 4168name = "zvariant_derive" 4169version = "5.6.0" 4170source = "registry+https://github.com/rust-lang/crates.io-index" 4171checksum = "3a8c68501be459a8dbfffbe5d792acdd23b4959940fc87785fb013b32edbc208" 4172dependencies = [ 4173 "proc-macro-crate", 4174 "proc-macro2", 4175 "quote", 4176 "syn", 4177 "zvariant_utils", 4178] 4179 4180[[package]] 4181name = "zvariant_utils" 4182version = "3.2.0" 4183source = "registry+https://github.com/rust-lang/crates.io-index" 4184checksum = "e16edfee43e5d7b553b77872d99bc36afdda75c223ca7ad5e3fbecd82ca5fc34" 4185dependencies = [ 4186 "proc-macro2", 4187 "quote", 4188 "serde", 4189 "static_assertions", 4190 "syn", 4191 "winnow", 4192]