Live location tracking and playback for the game "manhunt"
at ben/frontend 8953 lines 214 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 = "Inflector" 7version = "0.11.4" 8source = "registry+https://github.com/rust-lang/crates.io-index" 9checksum = "fe438c63458706e03479442743baae6c88256498e6431708f6dfc520a26515d3" 10 11[[package]] 12name = "adler2" 13version = "2.0.1" 14source = "registry+https://github.com/rust-lang/crates.io-index" 15checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa" 16 17[[package]] 18name = "aead" 19version = "0.5.2" 20source = "registry+https://github.com/rust-lang/crates.io-index" 21checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0" 22dependencies = [ 23 "crypto-common", 24 "generic-array", 25] 26 27[[package]] 28name = "aes" 29version = "0.8.4" 30source = "registry+https://github.com/rust-lang/crates.io-index" 31checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0" 32dependencies = [ 33 "cfg-if", 34 "cipher", 35 "cpufeatures 0.2.17", 36] 37 38[[package]] 39name = "aes-gcm" 40version = "0.10.3" 41source = "registry+https://github.com/rust-lang/crates.io-index" 42checksum = "831010a0f742e1209b3bcea8fab6a8e149051ba6099432c8cb2cc117dec3ead1" 43dependencies = [ 44 "aead", 45 "aes", 46 "cipher", 47 "ctr", 48 "ghash", 49 "subtle", 50] 51 52[[package]] 53name = "ahash" 54version = "0.7.8" 55source = "registry+https://github.com/rust-lang/crates.io-index" 56checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9" 57dependencies = [ 58 "getrandom 0.2.17", 59 "once_cell", 60 "version_check", 61] 62 63[[package]] 64name = "aho-corasick" 65version = "1.1.4" 66source = "registry+https://github.com/rust-lang/crates.io-index" 67checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301" 68dependencies = [ 69 "memchr", 70] 71 72[[package]] 73name = "aligned" 74version = "0.4.3" 75source = "registry+https://github.com/rust-lang/crates.io-index" 76checksum = "ee4508988c62edf04abd8d92897fca0c2995d907ce1dfeaf369dac3716a40685" 77dependencies = [ 78 "as-slice", 79] 80 81[[package]] 82name = "aligned-vec" 83version = "0.6.4" 84source = "registry+https://github.com/rust-lang/crates.io-index" 85checksum = "dc890384c8602f339876ded803c97ad529f3842aba97f6392b3dba0dd171769b" 86dependencies = [ 87 "equator", 88] 89 90[[package]] 91name = "alloc-no-stdlib" 92version = "2.0.4" 93source = "registry+https://github.com/rust-lang/crates.io-index" 94checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3" 95 96[[package]] 97name = "alloc-stdlib" 98version = "0.2.2" 99source = "registry+https://github.com/rust-lang/crates.io-index" 100checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece" 101dependencies = [ 102 "alloc-no-stdlib", 103] 104 105[[package]] 106name = "android_log-sys" 107version = "0.3.2" 108source = "registry+https://github.com/rust-lang/crates.io-index" 109checksum = "84521a3cf562bc62942e294181d9eef17eb38ceb8c68677bc49f144e4c3d4f8d" 110 111[[package]] 112name = "android_logger" 113version = "0.15.1" 114source = "registry+https://github.com/rust-lang/crates.io-index" 115checksum = "dbb4e440d04be07da1f1bf44fb4495ebd58669372fe0cffa6e48595ac5bd88a3" 116dependencies = [ 117 "android_log-sys", 118 "env_filter 0.1.4", 119 "log", 120] 121 122[[package]] 123name = "android_system_properties" 124version = "0.1.5" 125source = "registry+https://github.com/rust-lang/crates.io-index" 126checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" 127dependencies = [ 128 "libc", 129] 130 131[[package]] 132name = "anstream" 133version = "0.6.21" 134source = "registry+https://github.com/rust-lang/crates.io-index" 135checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a" 136dependencies = [ 137 "anstyle", 138 "anstyle-parse", 139 "anstyle-query", 140 "anstyle-wincon", 141 "colorchoice", 142 "is_terminal_polyfill", 143 "utf8parse", 144] 145 146[[package]] 147name = "anstyle" 148version = "1.0.13" 149source = "registry+https://github.com/rust-lang/crates.io-index" 150checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78" 151 152[[package]] 153name = "anstyle-parse" 154version = "0.2.7" 155source = "registry+https://github.com/rust-lang/crates.io-index" 156checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2" 157dependencies = [ 158 "utf8parse", 159] 160 161[[package]] 162name = "anstyle-query" 163version = "1.1.5" 164source = "registry+https://github.com/rust-lang/crates.io-index" 165checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc" 166dependencies = [ 167 "windows-sys 0.61.2", 168] 169 170[[package]] 171name = "anstyle-wincon" 172version = "3.0.11" 173source = "registry+https://github.com/rust-lang/crates.io-index" 174checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d" 175dependencies = [ 176 "anstyle", 177 "once_cell_polyfill", 178 "windows-sys 0.61.2", 179] 180 181[[package]] 182name = "anyhow" 183version = "1.0.101" 184source = "registry+https://github.com/rust-lang/crates.io-index" 185checksum = "5f0e0fee31ef5ed1ba1316088939cea399010ed7731dba877ed44aeb407a75ea" 186 187[[package]] 188name = "arbitrary" 189version = "1.4.2" 190source = "registry+https://github.com/rust-lang/crates.io-index" 191checksum = "c3d036a3c4ab069c7b410a2ce876bd74808d2d0888a82667669f8e783a898bf1" 192 193[[package]] 194name = "arc-swap" 195version = "1.8.2" 196source = "registry+https://github.com/rust-lang/crates.io-index" 197checksum = "f9f3647c145568cec02c42054e07bdf9a5a698e15b466fb2341bfc393cd24aa5" 198dependencies = [ 199 "rustversion", 200] 201 202[[package]] 203name = "arg_enum_proc_macro" 204version = "0.3.4" 205source = "registry+https://github.com/rust-lang/crates.io-index" 206checksum = "0ae92a5119aa49cdbcf6b9f893fe4e1d98b04ccbf82ee0584ad948a44a734dea" 207dependencies = [ 208 "proc-macro2", 209 "quote", 210 "syn 2.0.116", 211] 212 213[[package]] 214name = "arrayvec" 215version = "0.7.6" 216source = "registry+https://github.com/rust-lang/crates.io-index" 217checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50" 218 219[[package]] 220name = "as-slice" 221version = "0.2.1" 222source = "registry+https://github.com/rust-lang/crates.io-index" 223checksum = "516b6b4f0e40d50dcda9365d53964ec74560ad4284da2e7fc97122cd83174516" 224dependencies = [ 225 "stable_deref_trait", 226] 227 228[[package]] 229name = "asn1-rs" 230version = "0.6.2" 231source = "registry+https://github.com/rust-lang/crates.io-index" 232checksum = "5493c3bedbacf7fd7382c6346bbd66687d12bbaad3a89a2d2c303ee6cf20b048" 233dependencies = [ 234 "asn1-rs-derive", 235 "asn1-rs-impl", 236 "displaydoc", 237 "nom 7.1.3", 238 "num-traits", 239 "rusticata-macros", 240 "thiserror 1.0.69", 241 "time", 242] 243 244[[package]] 245name = "asn1-rs-derive" 246version = "0.5.1" 247source = "registry+https://github.com/rust-lang/crates.io-index" 248checksum = "965c2d33e53cb6b267e148a4cb0760bc01f4904c1cd4bb4002a085bb016d1490" 249dependencies = [ 250 "proc-macro2", 251 "quote", 252 "syn 2.0.116", 253 "synstructure", 254] 255 256[[package]] 257name = "asn1-rs-impl" 258version = "0.2.0" 259source = "registry+https://github.com/rust-lang/crates.io-index" 260checksum = "7b18050c2cd6fe86c3a76584ef5e0baf286d038cda203eb6223df2cc413565f7" 261dependencies = [ 262 "proc-macro2", 263 "quote", 264 "syn 2.0.116", 265] 266 267[[package]] 268name = "async-broadcast" 269version = "0.7.2" 270source = "registry+https://github.com/rust-lang/crates.io-index" 271checksum = "435a87a52755b8f27fcf321ac4f04b2802e337c8c4872923137471ec39c37532" 272dependencies = [ 273 "event-listener 5.4.1", 274 "event-listener-strategy", 275 "futures-core", 276 "pin-project-lite", 277] 278 279[[package]] 280name = "async-channel" 281version = "1.9.0" 282source = "registry+https://github.com/rust-lang/crates.io-index" 283checksum = "81953c529336010edd6d8e358f886d9581267795c61b19475b71314bffa46d35" 284dependencies = [ 285 "concurrent-queue", 286 "event-listener 2.5.3", 287 "futures-core", 288] 289 290[[package]] 291name = "async-channel" 292version = "2.5.0" 293source = "registry+https://github.com/rust-lang/crates.io-index" 294checksum = "924ed96dd52d1b75e9c1a3e6275715fd320f5f9439fb5a4a11fa51f4221158d2" 295dependencies = [ 296 "concurrent-queue", 297 "event-listener-strategy", 298 "futures-core", 299 "pin-project-lite", 300] 301 302[[package]] 303name = "async-compat" 304version = "0.2.5" 305source = "registry+https://github.com/rust-lang/crates.io-index" 306checksum = "a1ba85bc55464dcbf728b56d97e119d673f4cf9062be330a9a26f3acf504a590" 307dependencies = [ 308 "futures-core", 309 "futures-io", 310 "once_cell", 311 "pin-project-lite", 312 "tokio", 313] 314 315[[package]] 316name = "async-executor" 317version = "1.14.0" 318source = "registry+https://github.com/rust-lang/crates.io-index" 319checksum = "c96bf972d85afc50bf5ab8fe2d54d1586b4e0b46c97c50a0c9e71e2f7bcd812a" 320dependencies = [ 321 "async-task", 322 "concurrent-queue", 323 "fastrand", 324 "futures-lite", 325 "pin-project-lite", 326 "slab", 327] 328 329[[package]] 330name = "async-global-executor" 331version = "2.4.1" 332source = "registry+https://github.com/rust-lang/crates.io-index" 333checksum = "05b1b633a2115cd122d73b955eadd9916c18c8f510ec9cd1686404c60ad1c29c" 334dependencies = [ 335 "async-channel 2.5.0", 336 "async-executor", 337 "async-io", 338 "async-lock", 339 "blocking", 340 "futures-lite", 341 "once_cell", 342] 343 344[[package]] 345name = "async-io" 346version = "2.6.0" 347source = "registry+https://github.com/rust-lang/crates.io-index" 348checksum = "456b8a8feb6f42d237746d4b3e9a178494627745c3c56c6ea55d92ba50d026fc" 349dependencies = [ 350 "autocfg", 351 "cfg-if", 352 "concurrent-queue", 353 "futures-io", 354 "futures-lite", 355 "parking", 356 "polling", 357 "rustix", 358 "slab", 359 "windows-sys 0.61.2", 360] 361 362[[package]] 363name = "async-lock" 364version = "3.4.2" 365source = "registry+https://github.com/rust-lang/crates.io-index" 366checksum = "290f7f2596bd5b78a9fec8088ccd89180d7f9f55b94b0576823bbbdc72ee8311" 367dependencies = [ 368 "event-listener 5.4.1", 369 "event-listener-strategy", 370 "pin-project-lite", 371] 372 373[[package]] 374name = "async-process" 375version = "2.5.0" 376source = "registry+https://github.com/rust-lang/crates.io-index" 377checksum = "fc50921ec0055cdd8a16de48773bfeec5c972598674347252c0399676be7da75" 378dependencies = [ 379 "async-channel 2.5.0", 380 "async-io", 381 "async-lock", 382 "async-signal", 383 "async-task", 384 "blocking", 385 "cfg-if", 386 "event-listener 5.4.1", 387 "futures-lite", 388 "rustix", 389] 390 391[[package]] 392name = "async-recursion" 393version = "1.1.1" 394source = "registry+https://github.com/rust-lang/crates.io-index" 395checksum = "3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11" 396dependencies = [ 397 "proc-macro2", 398 "quote", 399 "syn 2.0.116", 400] 401 402[[package]] 403name = "async-signal" 404version = "0.2.13" 405source = "registry+https://github.com/rust-lang/crates.io-index" 406checksum = "43c070bbf59cd3570b6b2dd54cd772527c7c3620fce8be898406dd3ed6adc64c" 407dependencies = [ 408 "async-io", 409 "async-lock", 410 "atomic-waker", 411 "cfg-if", 412 "futures-core", 413 "futures-io", 414 "rustix", 415 "signal-hook-registry", 416 "slab", 417 "windows-sys 0.61.2", 418] 419 420[[package]] 421name = "async-std" 422version = "1.13.2" 423source = "registry+https://github.com/rust-lang/crates.io-index" 424checksum = "2c8e079a4ab67ae52b7403632e4618815d6db36d2a010cfe41b02c1b1578f93b" 425dependencies = [ 426 "async-channel 1.9.0", 427 "async-global-executor", 428 "async-io", 429 "async-lock", 430 "crossbeam-utils", 431 "futures-channel", 432 "futures-core", 433 "futures-io", 434 "futures-lite", 435 "gloo-timers 0.3.0", 436 "kv-log-macro", 437 "log", 438 "memchr", 439 "once_cell", 440 "pin-project-lite", 441 "pin-utils", 442 "slab", 443 "wasm-bindgen-futures", 444] 445 446[[package]] 447name = "async-task" 448version = "4.7.1" 449source = "registry+https://github.com/rust-lang/crates.io-index" 450checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de" 451 452[[package]] 453name = "async-tls" 454version = "0.13.0" 455source = "registry+https://github.com/rust-lang/crates.io-index" 456checksum = "b2ae3c9eba89d472a0e4fe1dea433df78fbbe63d2b764addaf2ba3a6bde89a5e" 457dependencies = [ 458 "futures-core", 459 "futures-io", 460 "rustls 0.21.12", 461 "rustls-pemfile", 462 "webpki-roots", 463] 464 465[[package]] 466name = "async-trait" 467version = "0.1.89" 468source = "registry+https://github.com/rust-lang/crates.io-index" 469checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb" 470dependencies = [ 471 "proc-macro2", 472 "quote", 473 "syn 2.0.116", 474] 475 476[[package]] 477name = "async-tungstenite" 478version = "0.32.1" 479source = "registry+https://github.com/rust-lang/crates.io-index" 480checksum = "8acc405d38be14342132609f06f02acaf825ddccfe76c4824a69281e0458ebd4" 481dependencies = [ 482 "async-std", 483 "async-tls", 484 "atomic-waker", 485 "futures-core", 486 "futures-io", 487 "futures-task", 488 "log", 489 "pin-project-lite", 490 "tungstenite", 491] 492 493[[package]] 494name = "async_io_stream" 495version = "0.3.3" 496source = "registry+https://github.com/rust-lang/crates.io-index" 497checksum = "b6d7b9decdf35d8908a7e3ef02f64c5e9b1695e230154c0e8de3969142d9b94c" 498dependencies = [ 499 "futures", 500 "pharos", 501 "rustc_version", 502] 503 504[[package]] 505name = "atk" 506version = "0.18.2" 507source = "registry+https://github.com/rust-lang/crates.io-index" 508checksum = "241b621213072e993be4f6f3a9e4b45f65b7e6faad43001be957184b7bb1824b" 509dependencies = [ 510 "atk-sys", 511 "glib", 512 "libc", 513] 514 515[[package]] 516name = "atk-sys" 517version = "0.18.2" 518source = "registry+https://github.com/rust-lang/crates.io-index" 519checksum = "c5e48b684b0ca77d2bbadeef17424c2ea3c897d44d566a1617e7e8f30614d086" 520dependencies = [ 521 "glib-sys", 522 "gobject-sys", 523 "libc", 524 "system-deps", 525] 526 527[[package]] 528name = "atomic-waker" 529version = "1.1.2" 530source = "registry+https://github.com/rust-lang/crates.io-index" 531checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" 532 533[[package]] 534name = "autocfg" 535version = "1.5.0" 536source = "registry+https://github.com/rust-lang/crates.io-index" 537checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8" 538 539[[package]] 540name = "av-scenechange" 541version = "0.14.1" 542source = "registry+https://github.com/rust-lang/crates.io-index" 543checksum = "0f321d77c20e19b92c39e7471cf986812cbb46659d2af674adc4331ef3f18394" 544dependencies = [ 545 "aligned", 546 "anyhow", 547 "arg_enum_proc_macro", 548 "arrayvec", 549 "log", 550 "num-rational", 551 "num-traits", 552 "pastey", 553 "rayon", 554 "thiserror 2.0.18", 555 "v_frame", 556 "y4m", 557] 558 559[[package]] 560name = "av1-grain" 561version = "0.2.5" 562source = "registry+https://github.com/rust-lang/crates.io-index" 563checksum = "8cfddb07216410377231960af4fcab838eaa12e013417781b78bd95ee22077f8" 564dependencies = [ 565 "anyhow", 566 "arrayvec", 567 "log", 568 "nom 8.0.0", 569 "num-rational", 570 "v_frame", 571] 572 573[[package]] 574name = "avif-serialize" 575version = "0.8.8" 576source = "registry+https://github.com/rust-lang/crates.io-index" 577checksum = "375082f007bd67184fb9c0374614b29f9aaa604ec301635f72338bb65386a53d" 578dependencies = [ 579 "arrayvec", 580] 581 582[[package]] 583name = "aws-lc-rs" 584version = "1.15.4" 585source = "registry+https://github.com/rust-lang/crates.io-index" 586checksum = "7b7b6141e96a8c160799cc2d5adecd5cbbe5054cb8c7c4af53da0f83bb7ad256" 587dependencies = [ 588 "aws-lc-sys", 589 "zeroize", 590] 591 592[[package]] 593name = "aws-lc-sys" 594version = "0.37.1" 595source = "registry+https://github.com/rust-lang/crates.io-index" 596checksum = "b092fe214090261288111db7a2b2c2118e5a7f30dc2569f1732c4069a6840549" 597dependencies = [ 598 "cc", 599 "cmake", 600 "dunce", 601 "fs_extra", 602] 603 604[[package]] 605name = "axum" 606version = "0.8.8" 607source = "registry+https://github.com/rust-lang/crates.io-index" 608checksum = "8b52af3cb4058c895d37317bb27508dccc8e5f2d39454016b297bf4a400597b8" 609dependencies = [ 610 "axum-core", 611 "base64 0.22.1", 612 "bytes", 613 "form_urlencoded", 614 "futures-util", 615 "http", 616 "http-body", 617 "http-body-util", 618 "hyper", 619 "hyper-util", 620 "itoa", 621 "matchit", 622 "memchr", 623 "mime", 624 "percent-encoding", 625 "pin-project-lite", 626 "serde_core", 627 "serde_json", 628 "serde_path_to_error", 629 "serde_urlencoded", 630 "sha1", 631 "sync_wrapper", 632 "tokio", 633 "tokio-tungstenite", 634 "tower", 635 "tower-layer", 636 "tower-service", 637 "tracing", 638] 639 640[[package]] 641name = "axum-core" 642version = "0.5.6" 643source = "registry+https://github.com/rust-lang/crates.io-index" 644checksum = "08c78f31d7b1291f7ee735c1c6780ccde7785daae9a9206026862dab7d8792d1" 645dependencies = [ 646 "bytes", 647 "futures-core", 648 "http", 649 "http-body", 650 "http-body-util", 651 "mime", 652 "pin-project-lite", 653 "sync_wrapper", 654 "tower-layer", 655 "tower-service", 656 "tracing", 657] 658 659[[package]] 660name = "base16ct" 661version = "0.2.0" 662source = "registry+https://github.com/rust-lang/crates.io-index" 663checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf" 664 665[[package]] 666name = "base64" 667version = "0.21.7" 668source = "registry+https://github.com/rust-lang/crates.io-index" 669checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" 670 671[[package]] 672name = "base64" 673version = "0.22.1" 674source = "registry+https://github.com/rust-lang/crates.io-index" 675checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" 676 677[[package]] 678name = "base64ct" 679version = "1.8.3" 680source = "registry+https://github.com/rust-lang/crates.io-index" 681checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06" 682 683[[package]] 684name = "bit_field" 685version = "0.10.3" 686source = "registry+https://github.com/rust-lang/crates.io-index" 687checksum = "1e4b40c7323adcfc0a41c4b88143ed58346ff65a288fc144329c5c45e05d70c6" 688 689[[package]] 690name = "bitflags" 691version = "1.3.2" 692source = "registry+https://github.com/rust-lang/crates.io-index" 693checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 694 695[[package]] 696name = "bitflags" 697version = "2.11.0" 698source = "registry+https://github.com/rust-lang/crates.io-index" 699checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af" 700dependencies = [ 701 "serde_core", 702] 703 704[[package]] 705name = "bitstream-io" 706version = "4.9.0" 707source = "registry+https://github.com/rust-lang/crates.io-index" 708checksum = "60d4bd9d1db2c6bdf285e223a7fa369d5ce98ec767dec949c6ca62863ce61757" 709dependencies = [ 710 "core2", 711] 712 713[[package]] 714name = "bitvec" 715version = "1.0.1" 716source = "registry+https://github.com/rust-lang/crates.io-index" 717checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c" 718dependencies = [ 719 "funty", 720 "radium", 721 "tap", 722 "wyz", 723] 724 725[[package]] 726name = "block-buffer" 727version = "0.10.4" 728source = "registry+https://github.com/rust-lang/crates.io-index" 729checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 730dependencies = [ 731 "generic-array", 732] 733 734[[package]] 735name = "block-padding" 736version = "0.3.3" 737source = "registry+https://github.com/rust-lang/crates.io-index" 738checksum = "a8894febbff9f758034a5b8e12d87918f56dfc64a8e1fe757d65e29041538d93" 739dependencies = [ 740 "generic-array", 741] 742 743[[package]] 744name = "block2" 745version = "0.6.2" 746source = "registry+https://github.com/rust-lang/crates.io-index" 747checksum = "cdeb9d870516001442e364c5220d3574d2da8dc765554b4a617230d33fa58ef5" 748dependencies = [ 749 "objc2", 750] 751 752[[package]] 753name = "blocking" 754version = "1.6.2" 755source = "registry+https://github.com/rust-lang/crates.io-index" 756checksum = "e83f8d02be6967315521be875afa792a316e28d57b5a2d401897e2a7921b7f21" 757dependencies = [ 758 "async-channel 2.5.0", 759 "async-task", 760 "futures-io", 761 "futures-lite", 762 "piper", 763] 764 765[[package]] 766name = "borsh" 767version = "1.6.0" 768source = "registry+https://github.com/rust-lang/crates.io-index" 769checksum = "d1da5ab77c1437701eeff7c88d968729e7766172279eab0676857b3d63af7a6f" 770dependencies = [ 771 "borsh-derive", 772 "cfg_aliases", 773] 774 775[[package]] 776name = "borsh-derive" 777version = "1.6.0" 778source = "registry+https://github.com/rust-lang/crates.io-index" 779checksum = "0686c856aa6aac0c4498f936d7d6a02df690f614c03e4d906d1018062b5c5e2c" 780dependencies = [ 781 "once_cell", 782 "proc-macro-crate 3.4.0", 783 "proc-macro2", 784 "quote", 785 "syn 2.0.116", 786] 787 788[[package]] 789name = "brotli" 790version = "8.0.2" 791source = "registry+https://github.com/rust-lang/crates.io-index" 792checksum = "4bd8b9603c7aa97359dbd97ecf258968c95f3adddd6db2f7e7a5bef101c84560" 793dependencies = [ 794 "alloc-no-stdlib", 795 "alloc-stdlib", 796 "brotli-decompressor", 797] 798 799[[package]] 800name = "brotli-decompressor" 801version = "5.0.0" 802source = "registry+https://github.com/rust-lang/crates.io-index" 803checksum = "874bb8112abecc98cbd6d81ea4fa7e94fb9449648c93cc89aa40c81c24d7de03" 804dependencies = [ 805 "alloc-no-stdlib", 806 "alloc-stdlib", 807] 808 809[[package]] 810name = "built" 811version = "0.8.0" 812source = "registry+https://github.com/rust-lang/crates.io-index" 813checksum = "f4ad8f11f288f48ca24471bbd51ac257aaeaaa07adae295591266b792902ae64" 814 815[[package]] 816name = "bumpalo" 817version = "3.20.1" 818source = "registry+https://github.com/rust-lang/crates.io-index" 819checksum = "5c6f81257d10a0f602a294ae4182251151ff97dbb504ef9afcdda4a64b24d9b4" 820 821[[package]] 822name = "byte-unit" 823version = "5.2.0" 824source = "registry+https://github.com/rust-lang/crates.io-index" 825checksum = "8c6d47a4e2961fb8721bcfc54feae6455f2f64e7054f9bc67e875f0e77f4c58d" 826dependencies = [ 827 "rust_decimal", 828 "schemars 1.2.1", 829 "serde", 830 "utf8-width", 831] 832 833[[package]] 834name = "bytecheck" 835version = "0.6.12" 836source = "registry+https://github.com/rust-lang/crates.io-index" 837checksum = "23cdc57ce23ac53c931e88a43d06d070a6fd142f2617be5855eb75efc9beb1c2" 838dependencies = [ 839 "bytecheck_derive 0.6.12", 840 "ptr_meta 0.1.4", 841 "simdutf8", 842] 843 844[[package]] 845name = "bytecheck" 846version = "0.8.2" 847source = "registry+https://github.com/rust-lang/crates.io-index" 848checksum = "0caa33a2c0edca0419d15ac723dff03f1956f7978329b1e3b5fdaaaed9d3ca8b" 849dependencies = [ 850 "bytecheck_derive 0.8.2", 851 "ptr_meta 0.3.1", 852 "rancor", 853 "simdutf8", 854] 855 856[[package]] 857name = "bytecheck_derive" 858version = "0.6.12" 859source = "registry+https://github.com/rust-lang/crates.io-index" 860checksum = "3db406d29fbcd95542e92559bed4d8ad92636d1ca8b3b72ede10b4bcc010e659" 861dependencies = [ 862 "proc-macro2", 863 "quote", 864 "syn 1.0.109", 865] 866 867[[package]] 868name = "bytecheck_derive" 869version = "0.8.2" 870source = "registry+https://github.com/rust-lang/crates.io-index" 871checksum = "89385e82b5d1821d2219e0b095efa2cc1f246cbf99080f3be46a1a85c0d392d9" 872dependencies = [ 873 "proc-macro2", 874 "quote", 875 "syn 2.0.116", 876] 877 878[[package]] 879name = "bytemuck" 880version = "1.25.0" 881source = "registry+https://github.com/rust-lang/crates.io-index" 882checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec" 883 884[[package]] 885name = "byteorder" 886version = "1.5.0" 887source = "registry+https://github.com/rust-lang/crates.io-index" 888checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" 889 890[[package]] 891name = "byteorder-lite" 892version = "0.1.0" 893source = "registry+https://github.com/rust-lang/crates.io-index" 894checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495" 895 896[[package]] 897name = "bytes" 898version = "1.11.1" 899source = "registry+https://github.com/rust-lang/crates.io-index" 900checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33" 901dependencies = [ 902 "serde", 903] 904 905[[package]] 906name = "cairo-rs" 907version = "0.18.5" 908source = "registry+https://github.com/rust-lang/crates.io-index" 909checksum = "8ca26ef0159422fb77631dc9d17b102f253b876fe1586b03b803e63a309b4ee2" 910dependencies = [ 911 "bitflags 2.11.0", 912 "cairo-sys-rs", 913 "glib", 914 "libc", 915 "once_cell", 916 "thiserror 1.0.69", 917] 918 919[[package]] 920name = "cairo-sys-rs" 921version = "0.18.2" 922source = "registry+https://github.com/rust-lang/crates.io-index" 923checksum = "685c9fa8e590b8b3d678873528d83411db17242a73fccaed827770ea0fedda51" 924dependencies = [ 925 "glib-sys", 926 "libc", 927 "system-deps", 928] 929 930[[package]] 931name = "camino" 932version = "1.2.2" 933source = "registry+https://github.com/rust-lang/crates.io-index" 934checksum = "e629a66d692cb9ff1a1c664e41771b3dcaf961985a9774c0eb0bd1b51cf60a48" 935dependencies = [ 936 "serde_core", 937] 938 939[[package]] 940name = "cargo-platform" 941version = "0.1.9" 942source = "registry+https://github.com/rust-lang/crates.io-index" 943checksum = "e35af189006b9c0f00a064685c727031e3ed2d8020f7ba284d78cc2671bd36ea" 944dependencies = [ 945 "serde", 946] 947 948[[package]] 949name = "cargo_metadata" 950version = "0.19.2" 951source = "registry+https://github.com/rust-lang/crates.io-index" 952checksum = "dd5eb614ed4c27c5d706420e4320fbe3216ab31fa1c33cd8246ac36dae4479ba" 953dependencies = [ 954 "camino", 955 "cargo-platform", 956 "semver", 957 "serde", 958 "serde_json", 959 "thiserror 2.0.18", 960] 961 962[[package]] 963name = "cargo_toml" 964version = "0.22.3" 965source = "registry+https://github.com/rust-lang/crates.io-index" 966checksum = "374b7c592d9c00c1f4972ea58390ac6b18cbb6ab79011f3bdc90a0b82ca06b77" 967dependencies = [ 968 "serde", 969 "toml 0.9.12+spec-1.1.0", 970] 971 972[[package]] 973name = "cbc" 974version = "0.1.2" 975source = "registry+https://github.com/rust-lang/crates.io-index" 976checksum = "26b52a9543ae338f279b96b0b9fed9c8093744685043739079ce85cd58f289a6" 977dependencies = [ 978 "cipher", 979] 980 981[[package]] 982name = "cc" 983version = "1.2.56" 984source = "registry+https://github.com/rust-lang/crates.io-index" 985checksum = "aebf35691d1bfb0ac386a69bac2fde4dd276fb618cf8bf4f5318fe285e821bb2" 986dependencies = [ 987 "find-msvc-tools", 988 "jobserver", 989 "libc", 990 "shlex", 991] 992 993[[package]] 994name = "ccm" 995version = "0.5.0" 996source = "registry+https://github.com/rust-lang/crates.io-index" 997checksum = "9ae3c82e4355234767756212c570e29833699ab63e6ffd161887314cc5b43847" 998dependencies = [ 999 "aead", 1000 "cipher", 1001 "ctr", 1002 "subtle", 1003] 1004 1005[[package]] 1006name = "cesu8" 1007version = "1.1.0" 1008source = "registry+https://github.com/rust-lang/crates.io-index" 1009checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c" 1010 1011[[package]] 1012name = "cfb" 1013version = "0.7.3" 1014source = "registry+https://github.com/rust-lang/crates.io-index" 1015checksum = "d38f2da7a0a2c4ccf0065be06397cc26a81f4e528be095826eee9d4adbb8c60f" 1016dependencies = [ 1017 "byteorder", 1018 "fnv", 1019 "uuid", 1020] 1021 1022[[package]] 1023name = "cfg-expr" 1024version = "0.15.8" 1025source = "registry+https://github.com/rust-lang/crates.io-index" 1026checksum = "d067ad48b8650848b989a59a86c6c36a995d02d2bf778d45c3c5d57bc2718f02" 1027dependencies = [ 1028 "smallvec", 1029 "target-lexicon", 1030] 1031 1032[[package]] 1033name = "cfg-if" 1034version = "1.0.4" 1035source = "registry+https://github.com/rust-lang/crates.io-index" 1036checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" 1037 1038[[package]] 1039name = "cfg_aliases" 1040version = "0.2.1" 1041source = "registry+https://github.com/rust-lang/crates.io-index" 1042checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" 1043 1044[[package]] 1045name = "chacha20" 1046version = "0.9.1" 1047source = "registry+https://github.com/rust-lang/crates.io-index" 1048checksum = "c3613f74bd2eac03dad61bd53dbe620703d4371614fe0bc3b9f04dd36fe4e818" 1049dependencies = [ 1050 "cfg-if", 1051 "cipher", 1052 "cpufeatures 0.2.17", 1053] 1054 1055[[package]] 1056name = "chacha20" 1057version = "0.10.0" 1058source = "registry+https://github.com/rust-lang/crates.io-index" 1059checksum = "6f8d983286843e49675a4b7a2d174efe136dc93a18d69130dd18198a6c167601" 1060dependencies = [ 1061 "cfg-if", 1062 "cpufeatures 0.3.0", 1063 "rand_core 0.10.0", 1064] 1065 1066[[package]] 1067name = "chacha20poly1305" 1068version = "0.10.1" 1069source = "registry+https://github.com/rust-lang/crates.io-index" 1070checksum = "10cd79432192d1c0f4e1a0fef9527696cc039165d729fb41b3f4f4f354c2dc35" 1071dependencies = [ 1072 "aead", 1073 "chacha20 0.9.1", 1074 "cipher", 1075 "poly1305", 1076 "zeroize", 1077] 1078 1079[[package]] 1080name = "chrono" 1081version = "0.4.43" 1082source = "registry+https://github.com/rust-lang/crates.io-index" 1083checksum = "fac4744fb15ae8337dc853fee7fb3f4e48c0fbaa23d0afe49c447b4fab126118" 1084dependencies = [ 1085 "iana-time-zone", 1086 "js-sys", 1087 "num-traits", 1088 "serde", 1089 "wasm-bindgen", 1090 "windows-link 0.2.1", 1091] 1092 1093[[package]] 1094name = "cipher" 1095version = "0.4.4" 1096source = "registry+https://github.com/rust-lang/crates.io-index" 1097checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad" 1098dependencies = [ 1099 "crypto-common", 1100 "inout", 1101 "zeroize", 1102] 1103 1104[[package]] 1105name = "clap" 1106version = "4.5.59" 1107source = "registry+https://github.com/rust-lang/crates.io-index" 1108checksum = "c5caf74d17c3aec5495110c34cc3f78644bfa89af6c8993ed4de2790e49b6499" 1109dependencies = [ 1110 "clap_builder", 1111 "clap_derive", 1112] 1113 1114[[package]] 1115name = "clap_builder" 1116version = "4.5.59" 1117source = "registry+https://github.com/rust-lang/crates.io-index" 1118checksum = "370daa45065b80218950227371916a1633217ae42b2715b2287b606dcd618e24" 1119dependencies = [ 1120 "anstream", 1121 "anstyle", 1122 "clap_lex", 1123 "strsim", 1124] 1125 1126[[package]] 1127name = "clap_derive" 1128version = "4.5.55" 1129source = "registry+https://github.com/rust-lang/crates.io-index" 1130checksum = "a92793da1a46a5f2a02a6f4c46c6496b28c43638adea8306fcb0caa1634f24e5" 1131dependencies = [ 1132 "heck 0.5.0", 1133 "proc-macro2", 1134 "quote", 1135 "syn 2.0.116", 1136] 1137 1138[[package]] 1139name = "clap_lex" 1140version = "1.0.0" 1141source = "registry+https://github.com/rust-lang/crates.io-index" 1142checksum = "3a822ea5bc7590f9d40f1ba12c0dc3c2760f3482c6984db1573ad11031420831" 1143 1144[[package]] 1145name = "cmake" 1146version = "0.1.57" 1147source = "registry+https://github.com/rust-lang/crates.io-index" 1148checksum = "75443c44cd6b379beb8c5b45d85d0773baf31cce901fe7bb252f4eff3008ef7d" 1149dependencies = [ 1150 "cc", 1151] 1152 1153[[package]] 1154name = "colog" 1155version = "1.4.0" 1156source = "registry+https://github.com/rust-lang/crates.io-index" 1157checksum = "df62599ba6adc9c6c04a54278c8209125343dc4775f57b9d76c9a4287e58f2bd" 1158dependencies = [ 1159 "colored", 1160 "env_logger", 1161 "log", 1162] 1163 1164[[package]] 1165name = "color_quant" 1166version = "1.1.0" 1167source = "registry+https://github.com/rust-lang/crates.io-index" 1168checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b" 1169 1170[[package]] 1171name = "colorchoice" 1172version = "1.0.4" 1173source = "registry+https://github.com/rust-lang/crates.io-index" 1174checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75" 1175 1176[[package]] 1177name = "colored" 1178version = "3.1.1" 1179source = "registry+https://github.com/rust-lang/crates.io-index" 1180checksum = "faf9468729b8cbcea668e36183cb69d317348c2e08e994829fb56ebfdfbaac34" 1181dependencies = [ 1182 "windows-sys 0.61.2", 1183] 1184 1185[[package]] 1186name = "combine" 1187version = "4.6.7" 1188source = "registry+https://github.com/rust-lang/crates.io-index" 1189checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd" 1190dependencies = [ 1191 "bytes", 1192 "memchr", 1193] 1194 1195[[package]] 1196name = "concurrent-queue" 1197version = "2.5.0" 1198source = "registry+https://github.com/rust-lang/crates.io-index" 1199checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973" 1200dependencies = [ 1201 "crossbeam-utils", 1202] 1203 1204[[package]] 1205name = "const-oid" 1206version = "0.9.6" 1207source = "registry+https://github.com/rust-lang/crates.io-index" 1208checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8" 1209 1210[[package]] 1211name = "const-str" 1212version = "1.1.0" 1213source = "registry+https://github.com/rust-lang/crates.io-index" 1214checksum = "18f12cc9948ed9604230cdddc7c86e270f9401ccbe3c2e98a4378c5e7632212f" 1215 1216[[package]] 1217name = "convert_case" 1218version = "0.4.0" 1219source = "registry+https://github.com/rust-lang/crates.io-index" 1220checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e" 1221 1222[[package]] 1223name = "convert_case" 1224version = "0.10.0" 1225source = "registry+https://github.com/rust-lang/crates.io-index" 1226checksum = "633458d4ef8c78b72454de2d54fd6ab2e60f9e02be22f3c6104cdc8a4e0fceb9" 1227dependencies = [ 1228 "unicode-segmentation", 1229] 1230 1231[[package]] 1232name = "cookie" 1233version = "0.18.1" 1234source = "registry+https://github.com/rust-lang/crates.io-index" 1235checksum = "4ddef33a339a91ea89fb53151bd0a4689cfce27055c291dfa69945475d22c747" 1236dependencies = [ 1237 "time", 1238 "version_check", 1239] 1240 1241[[package]] 1242name = "core-foundation" 1243version = "0.9.4" 1244source = "registry+https://github.com/rust-lang/crates.io-index" 1245checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" 1246dependencies = [ 1247 "core-foundation-sys", 1248 "libc", 1249] 1250 1251[[package]] 1252name = "core-foundation" 1253version = "0.10.1" 1254source = "registry+https://github.com/rust-lang/crates.io-index" 1255checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6" 1256dependencies = [ 1257 "core-foundation-sys", 1258 "libc", 1259] 1260 1261[[package]] 1262name = "core-foundation-sys" 1263version = "0.8.7" 1264source = "registry+https://github.com/rust-lang/crates.io-index" 1265checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" 1266 1267[[package]] 1268name = "core-graphics" 1269version = "0.24.0" 1270source = "registry+https://github.com/rust-lang/crates.io-index" 1271checksum = "fa95a34622365fa5bbf40b20b75dba8dfa8c94c734aea8ac9a5ca38af14316f1" 1272dependencies = [ 1273 "bitflags 2.11.0", 1274 "core-foundation 0.10.1", 1275 "core-graphics-types", 1276 "foreign-types", 1277 "libc", 1278] 1279 1280[[package]] 1281name = "core-graphics-types" 1282version = "0.2.0" 1283source = "registry+https://github.com/rust-lang/crates.io-index" 1284checksum = "3d44a101f213f6c4cdc1853d4b78aef6db6bdfa3468798cc1d9912f4735013eb" 1285dependencies = [ 1286 "bitflags 2.11.0", 1287 "core-foundation 0.10.1", 1288 "libc", 1289] 1290 1291[[package]] 1292name = "core2" 1293version = "0.4.0" 1294source = "registry+https://github.com/rust-lang/crates.io-index" 1295checksum = "b49ba7ef1ad6107f8824dbe97de947cbaac53c44e7f9756a1fba0d37c1eec505" 1296dependencies = [ 1297 "memchr", 1298] 1299 1300[[package]] 1301name = "cpufeatures" 1302version = "0.2.17" 1303source = "registry+https://github.com/rust-lang/crates.io-index" 1304checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280" 1305dependencies = [ 1306 "libc", 1307] 1308 1309[[package]] 1310name = "cpufeatures" 1311version = "0.3.0" 1312source = "registry+https://github.com/rust-lang/crates.io-index" 1313checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201" 1314dependencies = [ 1315 "libc", 1316] 1317 1318[[package]] 1319name = "crc" 1320version = "3.4.0" 1321source = "registry+https://github.com/rust-lang/crates.io-index" 1322checksum = "5eb8a2a1cd12ab0d987a5d5e825195d372001a4094a0376319d5a0ad71c1ba0d" 1323dependencies = [ 1324 "crc-catalog", 1325] 1326 1327[[package]] 1328name = "crc-catalog" 1329version = "2.4.0" 1330source = "registry+https://github.com/rust-lang/crates.io-index" 1331checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5" 1332 1333[[package]] 1334name = "crc32fast" 1335version = "1.5.0" 1336source = "registry+https://github.com/rust-lang/crates.io-index" 1337checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511" 1338dependencies = [ 1339 "cfg-if", 1340] 1341 1342[[package]] 1343name = "crossbeam-channel" 1344version = "0.5.15" 1345source = "registry+https://github.com/rust-lang/crates.io-index" 1346checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2" 1347dependencies = [ 1348 "crossbeam-utils", 1349] 1350 1351[[package]] 1352name = "crossbeam-deque" 1353version = "0.8.6" 1354source = "registry+https://github.com/rust-lang/crates.io-index" 1355checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51" 1356dependencies = [ 1357 "crossbeam-epoch", 1358 "crossbeam-utils", 1359] 1360 1361[[package]] 1362name = "crossbeam-epoch" 1363version = "0.9.18" 1364source = "registry+https://github.com/rust-lang/crates.io-index" 1365checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" 1366dependencies = [ 1367 "crossbeam-utils", 1368] 1369 1370[[package]] 1371name = "crossbeam-utils" 1372version = "0.8.21" 1373source = "registry+https://github.com/rust-lang/crates.io-index" 1374checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28" 1375 1376[[package]] 1377name = "crunchy" 1378version = "0.2.4" 1379source = "registry+https://github.com/rust-lang/crates.io-index" 1380checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5" 1381 1382[[package]] 1383name = "crypto-bigint" 1384version = "0.5.5" 1385source = "registry+https://github.com/rust-lang/crates.io-index" 1386checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76" 1387dependencies = [ 1388 "generic-array", 1389 "rand_core 0.6.4", 1390 "subtle", 1391 "zeroize", 1392] 1393 1394[[package]] 1395name = "crypto-common" 1396version = "0.1.7" 1397source = "registry+https://github.com/rust-lang/crates.io-index" 1398checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a" 1399dependencies = [ 1400 "generic-array", 1401 "rand_core 0.6.4", 1402 "typenum", 1403] 1404 1405[[package]] 1406name = "cssparser" 1407version = "0.29.6" 1408source = "registry+https://github.com/rust-lang/crates.io-index" 1409checksum = "f93d03419cb5950ccfd3daf3ff1c7a36ace64609a1a8746d493df1ca0afde0fa" 1410dependencies = [ 1411 "cssparser-macros", 1412 "dtoa-short", 1413 "itoa", 1414 "matches", 1415 "phf 0.10.1", 1416 "proc-macro2", 1417 "quote", 1418 "smallvec", 1419 "syn 1.0.109", 1420] 1421 1422[[package]] 1423name = "cssparser-macros" 1424version = "0.6.1" 1425source = "registry+https://github.com/rust-lang/crates.io-index" 1426checksum = "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331" 1427dependencies = [ 1428 "quote", 1429 "syn 2.0.116", 1430] 1431 1432[[package]] 1433name = "ctor" 1434version = "0.2.9" 1435source = "registry+https://github.com/rust-lang/crates.io-index" 1436checksum = "32a2785755761f3ddc1492979ce1e48d2c00d09311c39e4466429188f3dd6501" 1437dependencies = [ 1438 "quote", 1439 "syn 2.0.116", 1440] 1441 1442[[package]] 1443name = "ctr" 1444version = "0.9.2" 1445source = "registry+https://github.com/rust-lang/crates.io-index" 1446checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835" 1447dependencies = [ 1448 "cipher", 1449] 1450 1451[[package]] 1452name = "curve25519-dalek" 1453version = "4.1.3" 1454source = "registry+https://github.com/rust-lang/crates.io-index" 1455checksum = "97fb8b7c4503de7d6ae7b42ab72a5a59857b4c937ec27a3d4539dba95b5ab2be" 1456dependencies = [ 1457 "cfg-if", 1458 "cpufeatures 0.2.17", 1459 "curve25519-dalek-derive", 1460 "fiat-crypto", 1461 "rustc_version", 1462 "subtle", 1463 "zeroize", 1464] 1465 1466[[package]] 1467name = "curve25519-dalek-derive" 1468version = "0.1.1" 1469source = "registry+https://github.com/rust-lang/crates.io-index" 1470checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3" 1471dependencies = [ 1472 "proc-macro2", 1473 "quote", 1474 "syn 2.0.116", 1475] 1476 1477[[package]] 1478name = "darling" 1479version = "0.21.3" 1480source = "registry+https://github.com/rust-lang/crates.io-index" 1481checksum = "9cdf337090841a411e2a7f3deb9187445851f91b309c0c0a29e05f74a00a48c0" 1482dependencies = [ 1483 "darling_core", 1484 "darling_macro", 1485] 1486 1487[[package]] 1488name = "darling_core" 1489version = "0.21.3" 1490source = "registry+https://github.com/rust-lang/crates.io-index" 1491checksum = "1247195ecd7e3c85f83c8d2a366e4210d588e802133e1e355180a9870b517ea4" 1492dependencies = [ 1493 "fnv", 1494 "ident_case", 1495 "proc-macro2", 1496 "quote", 1497 "strsim", 1498 "syn 2.0.116", 1499] 1500 1501[[package]] 1502name = "darling_macro" 1503version = "0.21.3" 1504source = "registry+https://github.com/rust-lang/crates.io-index" 1505checksum = "d38308df82d1080de0afee5d069fa14b0326a88c14f15c5ccda35b4a6c414c81" 1506dependencies = [ 1507 "darling_core", 1508 "quote", 1509 "syn 2.0.116", 1510] 1511 1512[[package]] 1513name = "data-encoding" 1514version = "2.10.0" 1515source = "registry+https://github.com/rust-lang/crates.io-index" 1516checksum = "d7a1e2f27636f116493b8b860f5546edb47c8d8f8ea73e1d2a20be88e28d1fea" 1517 1518[[package]] 1519name = "der" 1520version = "0.7.10" 1521source = "registry+https://github.com/rust-lang/crates.io-index" 1522checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb" 1523dependencies = [ 1524 "const-oid", 1525 "pem-rfc7468", 1526 "zeroize", 1527] 1528 1529[[package]] 1530name = "der-parser" 1531version = "9.0.0" 1532source = "registry+https://github.com/rust-lang/crates.io-index" 1533checksum = "5cd0a5c643689626bec213c4d8bd4d96acc8ffdb4ad4bb6bc16abf27d5f4b553" 1534dependencies = [ 1535 "asn1-rs", 1536 "displaydoc", 1537 "nom 7.1.3", 1538 "num-bigint", 1539 "num-traits", 1540 "rusticata-macros", 1541] 1542 1543[[package]] 1544name = "deranged" 1545version = "0.5.6" 1546source = "registry+https://github.com/rust-lang/crates.io-index" 1547checksum = "cc3dc5ad92c2e2d1c193bbbbdf2ea477cb81331de4f3103f267ca18368b988c4" 1548dependencies = [ 1549 "powerfmt", 1550 "serde_core", 1551] 1552 1553[[package]] 1554name = "derive_more" 1555version = "0.99.20" 1556source = "registry+https://github.com/rust-lang/crates.io-index" 1557checksum = "6edb4b64a43d977b8e99788fe3a04d483834fba1215a7e02caa415b626497f7f" 1558dependencies = [ 1559 "convert_case 0.4.0", 1560 "proc-macro2", 1561 "quote", 1562 "rustc_version", 1563 "syn 2.0.116", 1564] 1565 1566[[package]] 1567name = "derive_more" 1568version = "2.1.1" 1569source = "registry+https://github.com/rust-lang/crates.io-index" 1570checksum = "d751e9e49156b02b44f9c1815bcb94b984cdcc4396ecc32521c739452808b134" 1571dependencies = [ 1572 "derive_more-impl", 1573] 1574 1575[[package]] 1576name = "derive_more-impl" 1577version = "2.1.1" 1578source = "registry+https://github.com/rust-lang/crates.io-index" 1579checksum = "799a97264921d8623a957f6c3b9011f3b5492f557bbb7a5a19b7fa6d06ba8dcb" 1580dependencies = [ 1581 "convert_case 0.10.0", 1582 "proc-macro2", 1583 "quote", 1584 "rustc_version", 1585 "syn 2.0.116", 1586 "unicode-xid", 1587] 1588 1589[[package]] 1590name = "digest" 1591version = "0.10.7" 1592source = "registry+https://github.com/rust-lang/crates.io-index" 1593checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" 1594dependencies = [ 1595 "block-buffer", 1596 "const-oid", 1597 "crypto-common", 1598 "subtle", 1599] 1600 1601[[package]] 1602name = "dirs" 1603version = "6.0.0" 1604source = "registry+https://github.com/rust-lang/crates.io-index" 1605checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e" 1606dependencies = [ 1607 "dirs-sys", 1608] 1609 1610[[package]] 1611name = "dirs-sys" 1612version = "0.5.0" 1613source = "registry+https://github.com/rust-lang/crates.io-index" 1614checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab" 1615dependencies = [ 1616 "libc", 1617 "option-ext", 1618 "redox_users", 1619 "windows-sys 0.61.2", 1620] 1621 1622[[package]] 1623name = "dispatch" 1624version = "0.2.0" 1625source = "registry+https://github.com/rust-lang/crates.io-index" 1626checksum = "bd0c93bb4b0c6d9b77f4435b0ae98c24d17f1c45b2ff844c6151a07256ca923b" 1627 1628[[package]] 1629name = "dispatch2" 1630version = "0.3.0" 1631source = "registry+https://github.com/rust-lang/crates.io-index" 1632checksum = "89a09f22a6c6069a18470eb92d2298acf25463f14256d24778e1230d789a2aec" 1633dependencies = [ 1634 "bitflags 2.11.0", 1635 "block2", 1636 "libc", 1637 "objc2", 1638] 1639 1640[[package]] 1641name = "displaydoc" 1642version = "0.2.5" 1643source = "registry+https://github.com/rust-lang/crates.io-index" 1644checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" 1645dependencies = [ 1646 "proc-macro2", 1647 "quote", 1648 "syn 2.0.116", 1649] 1650 1651[[package]] 1652name = "dlopen2" 1653version = "0.8.2" 1654source = "registry+https://github.com/rust-lang/crates.io-index" 1655checksum = "5e2c5bd4158e66d1e215c49b837e11d62f3267b30c92f1d171c4d3105e3dc4d4" 1656dependencies = [ 1657 "dlopen2_derive", 1658 "libc", 1659 "once_cell", 1660 "winapi", 1661] 1662 1663[[package]] 1664name = "dlopen2_derive" 1665version = "0.4.3" 1666source = "registry+https://github.com/rust-lang/crates.io-index" 1667checksum = "0fbbb781877580993a8707ec48672673ec7b81eeba04cfd2310bd28c08e47c8f" 1668dependencies = [ 1669 "proc-macro2", 1670 "quote", 1671 "syn 2.0.116", 1672] 1673 1674[[package]] 1675name = "doctest-file" 1676version = "1.0.0" 1677source = "registry+https://github.com/rust-lang/crates.io-index" 1678checksum = "aac81fa3e28d21450aa4d2ac065992ba96a1d7303efbce51a95f4fd175b67562" 1679 1680[[package]] 1681name = "dpi" 1682version = "0.1.2" 1683source = "registry+https://github.com/rust-lang/crates.io-index" 1684checksum = "d8b14ccef22fc6f5a8f4d7d768562a182c04ce9a3b3157b91390b52ddfdf1a76" 1685dependencies = [ 1686 "serde", 1687] 1688 1689[[package]] 1690name = "dtls" 1691version = "0.17.1" 1692source = "registry+https://github.com/rust-lang/crates.io-index" 1693checksum = "2f016db07b91e9d79cc60a152c163d3f0ce2d4c0173cb3964de3526aab6e07fa" 1694dependencies = [ 1695 "aes", 1696 "aes-gcm", 1697 "async-trait", 1698 "bytecheck 0.8.2", 1699 "byteorder", 1700 "cbc", 1701 "ccm", 1702 "chacha20poly1305", 1703 "der-parser", 1704 "hmac", 1705 "log", 1706 "p256", 1707 "p384", 1708 "portable-atomic", 1709 "rand 0.9.2", 1710 "rand_core 0.6.4", 1711 "rcgen", 1712 "ring", 1713 "rkyv 0.8.15", 1714 "rustls 0.23.36", 1715 "sec1", 1716 "sha1", 1717 "sha2", 1718 "thiserror 1.0.69", 1719 "tokio", 1720 "webrtc-util", 1721 "x25519-dalek", 1722 "x509-parser", 1723] 1724 1725[[package]] 1726name = "dtoa" 1727version = "1.0.11" 1728source = "registry+https://github.com/rust-lang/crates.io-index" 1729checksum = "4c3cf4824e2d5f025c7b531afcb2325364084a16806f6d47fbc1f5fbd9960590" 1730 1731[[package]] 1732name = "dtoa-short" 1733version = "0.3.5" 1734source = "registry+https://github.com/rust-lang/crates.io-index" 1735checksum = "cd1511a7b6a56299bd043a9c167a6d2bfb37bf84a6dfceaba651168adfb43c87" 1736dependencies = [ 1737 "dtoa", 1738] 1739 1740[[package]] 1741name = "dunce" 1742version = "1.0.5" 1743source = "registry+https://github.com/rust-lang/crates.io-index" 1744checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813" 1745 1746[[package]] 1747name = "dyn-clone" 1748version = "1.0.20" 1749source = "registry+https://github.com/rust-lang/crates.io-index" 1750checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555" 1751 1752[[package]] 1753name = "ecdsa" 1754version = "0.16.9" 1755source = "registry+https://github.com/rust-lang/crates.io-index" 1756checksum = "ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca" 1757dependencies = [ 1758 "der", 1759 "digest", 1760 "elliptic-curve", 1761 "rfc6979", 1762 "signature", 1763 "spki", 1764] 1765 1766[[package]] 1767name = "either" 1768version = "1.15.0" 1769source = "registry+https://github.com/rust-lang/crates.io-index" 1770checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719" 1771 1772[[package]] 1773name = "elliptic-curve" 1774version = "0.13.8" 1775source = "registry+https://github.com/rust-lang/crates.io-index" 1776checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47" 1777dependencies = [ 1778 "base16ct", 1779 "crypto-bigint", 1780 "digest", 1781 "ff", 1782 "generic-array", 1783 "group", 1784 "hkdf", 1785 "pem-rfc7468", 1786 "pkcs8", 1787 "rand_core 0.6.4", 1788 "sec1", 1789 "subtle", 1790 "zeroize", 1791] 1792 1793[[package]] 1794name = "embed-resource" 1795version = "3.0.6" 1796source = "registry+https://github.com/rust-lang/crates.io-index" 1797checksum = "55a075fc573c64510038d7ee9abc7990635863992f83ebc52c8b433b8411a02e" 1798dependencies = [ 1799 "cc", 1800 "memchr", 1801 "rustc_version", 1802 "toml 0.9.12+spec-1.1.0", 1803 "vswhom", 1804 "winreg", 1805] 1806 1807[[package]] 1808name = "embed_plist" 1809version = "1.2.2" 1810source = "registry+https://github.com/rust-lang/crates.io-index" 1811checksum = "4ef6b89e5b37196644d8796de5268852ff179b44e96276cf4290264843743bb7" 1812 1813[[package]] 1814name = "encoding_rs" 1815version = "0.8.35" 1816source = "registry+https://github.com/rust-lang/crates.io-index" 1817checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3" 1818dependencies = [ 1819 "cfg-if", 1820] 1821 1822[[package]] 1823name = "endi" 1824version = "1.1.1" 1825source = "registry+https://github.com/rust-lang/crates.io-index" 1826checksum = "66b7e2430c6dff6a955451e2cfc438f09cea1965a9d6f87f7e3b90decc014099" 1827 1828[[package]] 1829name = "enumflags2" 1830version = "0.7.12" 1831source = "registry+https://github.com/rust-lang/crates.io-index" 1832checksum = "1027f7680c853e056ebcec683615fb6fbbc07dbaa13b4d5d9442b146ded4ecef" 1833dependencies = [ 1834 "enumflags2_derive", 1835 "serde", 1836] 1837 1838[[package]] 1839name = "enumflags2_derive" 1840version = "0.7.12" 1841source = "registry+https://github.com/rust-lang/crates.io-index" 1842checksum = "67c78a4d8fdf9953a5c9d458f9efe940fd97a0cab0941c075a813ac594733827" 1843dependencies = [ 1844 "proc-macro2", 1845 "quote", 1846 "syn 2.0.116", 1847] 1848 1849[[package]] 1850name = "env_filter" 1851version = "0.1.4" 1852source = "registry+https://github.com/rust-lang/crates.io-index" 1853checksum = "1bf3c259d255ca70051b30e2e95b5446cdb8949ac4cd22c0d7fd634d89f568e2" 1854dependencies = [ 1855 "log", 1856 "regex", 1857] 1858 1859[[package]] 1860name = "env_filter" 1861version = "1.0.0" 1862source = "registry+https://github.com/rust-lang/crates.io-index" 1863checksum = "7a1c3cc8e57274ec99de65301228b537f1e4eedc1b8e0f9411c6caac8ae7308f" 1864dependencies = [ 1865 "log", 1866 "regex", 1867] 1868 1869[[package]] 1870name = "env_logger" 1871version = "0.11.9" 1872source = "registry+https://github.com/rust-lang/crates.io-index" 1873checksum = "b2daee4ea451f429a58296525ddf28b45a3b64f1acf6587e2067437bb11e218d" 1874dependencies = [ 1875 "anstream", 1876 "anstyle", 1877 "env_filter 1.0.0", 1878 "jiff", 1879 "log", 1880] 1881 1882[[package]] 1883name = "equator" 1884version = "0.4.2" 1885source = "registry+https://github.com/rust-lang/crates.io-index" 1886checksum = "4711b213838dfee0117e3be6ac926007d7f433d7bbe33595975d4190cb07e6fc" 1887dependencies = [ 1888 "equator-macro", 1889] 1890 1891[[package]] 1892name = "equator-macro" 1893version = "0.4.2" 1894source = "registry+https://github.com/rust-lang/crates.io-index" 1895checksum = "44f23cf4b44bfce11a86ace86f8a73ffdec849c9fd00a386a53d278bd9e81fb3" 1896dependencies = [ 1897 "proc-macro2", 1898 "quote", 1899 "syn 2.0.116", 1900] 1901 1902[[package]] 1903name = "equivalent" 1904version = "1.0.2" 1905source = "registry+https://github.com/rust-lang/crates.io-index" 1906checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" 1907 1908[[package]] 1909name = "erased-serde" 1910version = "0.4.9" 1911source = "registry+https://github.com/rust-lang/crates.io-index" 1912checksum = "89e8918065695684b2b0702da20382d5ae6065cf3327bc2d6436bd49a71ce9f3" 1913dependencies = [ 1914 "serde", 1915 "serde_core", 1916 "typeid", 1917] 1918 1919[[package]] 1920name = "errno" 1921version = "0.3.14" 1922source = "registry+https://github.com/rust-lang/crates.io-index" 1923checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb" 1924dependencies = [ 1925 "libc", 1926 "windows-sys 0.61.2", 1927] 1928 1929[[package]] 1930name = "event-listener" 1931version = "2.5.3" 1932source = "registry+https://github.com/rust-lang/crates.io-index" 1933checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" 1934 1935[[package]] 1936name = "event-listener" 1937version = "5.4.1" 1938source = "registry+https://github.com/rust-lang/crates.io-index" 1939checksum = "e13b66accf52311f30a0db42147dadea9850cb48cd070028831ae5f5d4b856ab" 1940dependencies = [ 1941 "concurrent-queue", 1942 "parking", 1943 "pin-project-lite", 1944] 1945 1946[[package]] 1947name = "event-listener-strategy" 1948version = "0.5.4" 1949source = "registry+https://github.com/rust-lang/crates.io-index" 1950checksum = "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93" 1951dependencies = [ 1952 "event-listener 5.4.1", 1953 "pin-project-lite", 1954] 1955 1956[[package]] 1957name = "exr" 1958version = "1.74.0" 1959source = "registry+https://github.com/rust-lang/crates.io-index" 1960checksum = "4300e043a56aa2cb633c01af81ca8f699a321879a7854d3896a0ba89056363be" 1961dependencies = [ 1962 "bit_field", 1963 "half", 1964 "lebe", 1965 "miniz_oxide", 1966 "rayon-core", 1967 "smallvec", 1968 "zune-inflate", 1969] 1970 1971[[package]] 1972name = "fastrand" 1973version = "2.3.0" 1974source = "registry+https://github.com/rust-lang/crates.io-index" 1975checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be" 1976 1977[[package]] 1978name = "fax" 1979version = "0.2.6" 1980source = "registry+https://github.com/rust-lang/crates.io-index" 1981checksum = "f05de7d48f37cd6730705cbca900770cab77a89f413d23e100ad7fad7795a0ab" 1982dependencies = [ 1983 "fax_derive", 1984] 1985 1986[[package]] 1987name = "fax_derive" 1988version = "0.2.0" 1989source = "registry+https://github.com/rust-lang/crates.io-index" 1990checksum = "a0aca10fb742cb43f9e7bb8467c91aa9bcb8e3ffbc6a6f7389bb93ffc920577d" 1991dependencies = [ 1992 "proc-macro2", 1993 "quote", 1994 "syn 2.0.116", 1995] 1996 1997[[package]] 1998name = "fdeflate" 1999version = "0.3.7" 2000source = "registry+https://github.com/rust-lang/crates.io-index" 2001checksum = "1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c" 2002dependencies = [ 2003 "simd-adler32", 2004] 2005 2006[[package]] 2007name = "fern" 2008version = "0.7.1" 2009source = "registry+https://github.com/rust-lang/crates.io-index" 2010checksum = "4316185f709b23713e41e3195f90edef7fb00c3ed4adc79769cf09cc762a3b29" 2011dependencies = [ 2012 "log", 2013] 2014 2015[[package]] 2016name = "ff" 2017version = "0.13.1" 2018source = "registry+https://github.com/rust-lang/crates.io-index" 2019checksum = "c0b50bfb653653f9ca9095b427bed08ab8d75a137839d9ad64eb11810d5b6393" 2020dependencies = [ 2021 "rand_core 0.6.4", 2022 "subtle", 2023] 2024 2025[[package]] 2026name = "fiat-crypto" 2027version = "0.2.9" 2028source = "registry+https://github.com/rust-lang/crates.io-index" 2029checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d" 2030 2031[[package]] 2032name = "field-offset" 2033version = "0.3.6" 2034source = "registry+https://github.com/rust-lang/crates.io-index" 2035checksum = "38e2275cc4e4fc009b0669731a1e5ab7ebf11f469eaede2bab9309a5b4d6057f" 2036dependencies = [ 2037 "memoffset 0.9.1", 2038 "rustc_version", 2039] 2040 2041[[package]] 2042name = "find-msvc-tools" 2043version = "0.1.9" 2044source = "registry+https://github.com/rust-lang/crates.io-index" 2045checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582" 2046 2047[[package]] 2048name = "flate2" 2049version = "1.1.9" 2050source = "registry+https://github.com/rust-lang/crates.io-index" 2051checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c" 2052dependencies = [ 2053 "crc32fast", 2054 "miniz_oxide", 2055] 2056 2057[[package]] 2058name = "fnv" 2059version = "1.0.7" 2060source = "registry+https://github.com/rust-lang/crates.io-index" 2061checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 2062 2063[[package]] 2064name = "foldhash" 2065version = "0.1.5" 2066source = "registry+https://github.com/rust-lang/crates.io-index" 2067checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2" 2068 2069[[package]] 2070name = "foreign-types" 2071version = "0.5.0" 2072source = "registry+https://github.com/rust-lang/crates.io-index" 2073checksum = "d737d9aa519fb7b749cbc3b962edcf310a8dd1f4b67c91c4f83975dbdd17d965" 2074dependencies = [ 2075 "foreign-types-macros", 2076 "foreign-types-shared", 2077] 2078 2079[[package]] 2080name = "foreign-types-macros" 2081version = "0.2.3" 2082source = "registry+https://github.com/rust-lang/crates.io-index" 2083checksum = "1a5c6c585bc94aaf2c7b51dd4c2ba22680844aba4c687be581871a6f518c5742" 2084dependencies = [ 2085 "proc-macro2", 2086 "quote", 2087 "syn 2.0.116", 2088] 2089 2090[[package]] 2091name = "foreign-types-shared" 2092version = "0.3.1" 2093source = "registry+https://github.com/rust-lang/crates.io-index" 2094checksum = "aa9a19cbb55df58761df49b23516a86d432839add4af60fc256da840f66ed35b" 2095 2096[[package]] 2097name = "form_urlencoded" 2098version = "1.2.2" 2099source = "registry+https://github.com/rust-lang/crates.io-index" 2100checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf" 2101dependencies = [ 2102 "percent-encoding", 2103] 2104 2105[[package]] 2106name = "fs_extra" 2107version = "1.3.0" 2108source = "registry+https://github.com/rust-lang/crates.io-index" 2109checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c" 2110 2111[[package]] 2112name = "funty" 2113version = "2.0.0" 2114source = "registry+https://github.com/rust-lang/crates.io-index" 2115checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c" 2116 2117[[package]] 2118name = "futf" 2119version = "0.1.5" 2120source = "registry+https://github.com/rust-lang/crates.io-index" 2121checksum = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843" 2122dependencies = [ 2123 "mac", 2124 "new_debug_unreachable", 2125] 2126 2127[[package]] 2128name = "futures" 2129version = "0.3.32" 2130source = "registry+https://github.com/rust-lang/crates.io-index" 2131checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d" 2132dependencies = [ 2133 "futures-channel", 2134 "futures-core", 2135 "futures-executor", 2136 "futures-io", 2137 "futures-sink", 2138 "futures-task", 2139 "futures-util", 2140] 2141 2142[[package]] 2143name = "futures-channel" 2144version = "0.3.32" 2145source = "registry+https://github.com/rust-lang/crates.io-index" 2146checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d" 2147dependencies = [ 2148 "futures-core", 2149 "futures-sink", 2150] 2151 2152[[package]] 2153name = "futures-core" 2154version = "0.3.32" 2155source = "registry+https://github.com/rust-lang/crates.io-index" 2156checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d" 2157 2158[[package]] 2159name = "futures-executor" 2160version = "0.3.32" 2161source = "registry+https://github.com/rust-lang/crates.io-index" 2162checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d" 2163dependencies = [ 2164 "futures-core", 2165 "futures-task", 2166 "futures-util", 2167] 2168 2169[[package]] 2170name = "futures-io" 2171version = "0.3.32" 2172source = "registry+https://github.com/rust-lang/crates.io-index" 2173checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718" 2174 2175[[package]] 2176name = "futures-lite" 2177version = "2.6.1" 2178source = "registry+https://github.com/rust-lang/crates.io-index" 2179checksum = "f78e10609fe0e0b3f4157ffab1876319b5b0db102a2c60dc4626306dc46b44ad" 2180dependencies = [ 2181 "fastrand", 2182 "futures-core", 2183 "futures-io", 2184 "parking", 2185 "pin-project-lite", 2186] 2187 2188[[package]] 2189name = "futures-macro" 2190version = "0.3.32" 2191source = "registry+https://github.com/rust-lang/crates.io-index" 2192checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b" 2193dependencies = [ 2194 "proc-macro2", 2195 "quote", 2196 "syn 2.0.116", 2197] 2198 2199[[package]] 2200name = "futures-sink" 2201version = "0.3.32" 2202source = "registry+https://github.com/rust-lang/crates.io-index" 2203checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893" 2204 2205[[package]] 2206name = "futures-task" 2207version = "0.3.32" 2208source = "registry+https://github.com/rust-lang/crates.io-index" 2209checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393" 2210 2211[[package]] 2212name = "futures-timer" 2213version = "3.0.3" 2214source = "registry+https://github.com/rust-lang/crates.io-index" 2215checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24" 2216dependencies = [ 2217 "gloo-timers 0.2.6", 2218 "send_wrapper 0.4.0", 2219] 2220 2221[[package]] 2222name = "futures-util" 2223version = "0.3.32" 2224source = "registry+https://github.com/rust-lang/crates.io-index" 2225checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6" 2226dependencies = [ 2227 "futures-channel", 2228 "futures-core", 2229 "futures-io", 2230 "futures-macro", 2231 "futures-sink", 2232 "futures-task", 2233 "memchr", 2234 "pin-project-lite", 2235 "slab", 2236] 2237 2238[[package]] 2239name = "fxhash" 2240version = "0.2.1" 2241source = "registry+https://github.com/rust-lang/crates.io-index" 2242checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c" 2243dependencies = [ 2244 "byteorder", 2245] 2246 2247[[package]] 2248name = "gdk" 2249version = "0.18.2" 2250source = "registry+https://github.com/rust-lang/crates.io-index" 2251checksum = "d9f245958c627ac99d8e529166f9823fb3b838d1d41fd2b297af3075093c2691" 2252dependencies = [ 2253 "cairo-rs", 2254 "gdk-pixbuf", 2255 "gdk-sys", 2256 "gio", 2257 "glib", 2258 "libc", 2259 "pango", 2260] 2261 2262[[package]] 2263name = "gdk-pixbuf" 2264version = "0.18.5" 2265source = "registry+https://github.com/rust-lang/crates.io-index" 2266checksum = "50e1f5f1b0bfb830d6ccc8066d18db35c487b1b2b1e8589b5dfe9f07e8defaec" 2267dependencies = [ 2268 "gdk-pixbuf-sys", 2269 "gio", 2270 "glib", 2271 "libc", 2272 "once_cell", 2273] 2274 2275[[package]] 2276name = "gdk-pixbuf-sys" 2277version = "0.18.0" 2278source = "registry+https://github.com/rust-lang/crates.io-index" 2279checksum = "3f9839ea644ed9c97a34d129ad56d38a25e6756f99f3a88e15cd39c20629caf7" 2280dependencies = [ 2281 "gio-sys", 2282 "glib-sys", 2283 "gobject-sys", 2284 "libc", 2285 "system-deps", 2286] 2287 2288[[package]] 2289name = "gdk-sys" 2290version = "0.18.2" 2291source = "registry+https://github.com/rust-lang/crates.io-index" 2292checksum = "5c2d13f38594ac1e66619e188c6d5a1adb98d11b2fcf7894fc416ad76aa2f3f7" 2293dependencies = [ 2294 "cairo-sys-rs", 2295 "gdk-pixbuf-sys", 2296 "gio-sys", 2297 "glib-sys", 2298 "gobject-sys", 2299 "libc", 2300 "pango-sys", 2301 "pkg-config", 2302 "system-deps", 2303] 2304 2305[[package]] 2306name = "gdkwayland-sys" 2307version = "0.18.2" 2308source = "registry+https://github.com/rust-lang/crates.io-index" 2309checksum = "140071d506d223f7572b9f09b5e155afbd77428cd5cc7af8f2694c41d98dfe69" 2310dependencies = [ 2311 "gdk-sys", 2312 "glib-sys", 2313 "gobject-sys", 2314 "libc", 2315 "pkg-config", 2316 "system-deps", 2317] 2318 2319[[package]] 2320name = "gdkx11" 2321version = "0.18.2" 2322source = "registry+https://github.com/rust-lang/crates.io-index" 2323checksum = "3caa00e14351bebbc8183b3c36690327eb77c49abc2268dd4bd36b856db3fbfe" 2324dependencies = [ 2325 "gdk", 2326 "gdkx11-sys", 2327 "gio", 2328 "glib", 2329 "libc", 2330 "x11", 2331] 2332 2333[[package]] 2334name = "gdkx11-sys" 2335version = "0.18.2" 2336source = "registry+https://github.com/rust-lang/crates.io-index" 2337checksum = "6e2e7445fe01ac26f11601db260dd8608fe172514eb63b3b5e261ea6b0f4428d" 2338dependencies = [ 2339 "gdk-sys", 2340 "glib-sys", 2341 "libc", 2342 "system-deps", 2343 "x11", 2344] 2345 2346[[package]] 2347name = "generic-array" 2348version = "0.14.7" 2349source = "registry+https://github.com/rust-lang/crates.io-index" 2350checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" 2351dependencies = [ 2352 "typenum", 2353 "version_check", 2354 "zeroize", 2355] 2356 2357[[package]] 2358name = "getrandom" 2359version = "0.1.16" 2360source = "registry+https://github.com/rust-lang/crates.io-index" 2361checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce" 2362dependencies = [ 2363 "cfg-if", 2364 "libc", 2365 "wasi 0.9.0+wasi-snapshot-preview1", 2366] 2367 2368[[package]] 2369name = "getrandom" 2370version = "0.2.17" 2371source = "registry+https://github.com/rust-lang/crates.io-index" 2372checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0" 2373dependencies = [ 2374 "cfg-if", 2375 "js-sys", 2376 "libc", 2377 "wasi 0.11.1+wasi-snapshot-preview1", 2378 "wasm-bindgen", 2379] 2380 2381[[package]] 2382name = "getrandom" 2383version = "0.3.4" 2384source = "registry+https://github.com/rust-lang/crates.io-index" 2385checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd" 2386dependencies = [ 2387 "cfg-if", 2388 "js-sys", 2389 "libc", 2390 "r-efi", 2391 "wasip2", 2392 "wasm-bindgen", 2393] 2394 2395[[package]] 2396name = "getrandom" 2397version = "0.4.1" 2398source = "registry+https://github.com/rust-lang/crates.io-index" 2399checksum = "139ef39800118c7683f2fd3c98c1b23c09ae076556b435f8e9064ae108aaeeec" 2400dependencies = [ 2401 "cfg-if", 2402 "libc", 2403 "r-efi", 2404 "rand_core 0.10.0", 2405 "wasip2", 2406 "wasip3", 2407] 2408 2409[[package]] 2410name = "ghash" 2411version = "0.5.1" 2412source = "registry+https://github.com/rust-lang/crates.io-index" 2413checksum = "f0d8a4362ccb29cb0b265253fb0a2728f592895ee6854fd9bc13f2ffda266ff1" 2414dependencies = [ 2415 "opaque-debug", 2416 "polyval", 2417] 2418 2419[[package]] 2420name = "gif" 2421version = "0.14.1" 2422source = "registry+https://github.com/rust-lang/crates.io-index" 2423checksum = "f5df2ba84018d80c213569363bdcd0c64e6933c67fe4c1d60ecf822971a3c35e" 2424dependencies = [ 2425 "color_quant", 2426 "weezl", 2427] 2428 2429[[package]] 2430name = "gio" 2431version = "0.18.4" 2432source = "registry+https://github.com/rust-lang/crates.io-index" 2433checksum = "d4fc8f532f87b79cbc51a79748f16a6828fb784be93145a322fa14d06d354c73" 2434dependencies = [ 2435 "futures-channel", 2436 "futures-core", 2437 "futures-io", 2438 "futures-util", 2439 "gio-sys", 2440 "glib", 2441 "libc", 2442 "once_cell", 2443 "pin-project-lite", 2444 "smallvec", 2445 "thiserror 1.0.69", 2446] 2447 2448[[package]] 2449name = "gio-sys" 2450version = "0.18.1" 2451source = "registry+https://github.com/rust-lang/crates.io-index" 2452checksum = "37566df850baf5e4cb0dfb78af2e4b9898d817ed9263d1090a2df958c64737d2" 2453dependencies = [ 2454 "glib-sys", 2455 "gobject-sys", 2456 "libc", 2457 "system-deps", 2458 "winapi", 2459] 2460 2461[[package]] 2462name = "glib" 2463version = "0.18.5" 2464source = "registry+https://github.com/rust-lang/crates.io-index" 2465checksum = "233daaf6e83ae6a12a52055f568f9d7cf4671dabb78ff9560ab6da230ce00ee5" 2466dependencies = [ 2467 "bitflags 2.11.0", 2468 "futures-channel", 2469 "futures-core", 2470 "futures-executor", 2471 "futures-task", 2472 "futures-util", 2473 "gio-sys", 2474 "glib-macros", 2475 "glib-sys", 2476 "gobject-sys", 2477 "libc", 2478 "memchr", 2479 "once_cell", 2480 "smallvec", 2481 "thiserror 1.0.69", 2482] 2483 2484[[package]] 2485name = "glib-macros" 2486version = "0.18.5" 2487source = "registry+https://github.com/rust-lang/crates.io-index" 2488checksum = "0bb0228f477c0900c880fd78c8759b95c7636dbd7842707f49e132378aa2acdc" 2489dependencies = [ 2490 "heck 0.4.1", 2491 "proc-macro-crate 2.0.2", 2492 "proc-macro-error", 2493 "proc-macro2", 2494 "quote", 2495 "syn 2.0.116", 2496] 2497 2498[[package]] 2499name = "glib-sys" 2500version = "0.18.1" 2501source = "registry+https://github.com/rust-lang/crates.io-index" 2502checksum = "063ce2eb6a8d0ea93d2bf8ba1957e78dbab6be1c2220dd3daca57d5a9d869898" 2503dependencies = [ 2504 "libc", 2505 "system-deps", 2506] 2507 2508[[package]] 2509name = "glob" 2510version = "0.3.3" 2511source = "registry+https://github.com/rust-lang/crates.io-index" 2512checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280" 2513 2514[[package]] 2515name = "gloo-timers" 2516version = "0.2.6" 2517source = "registry+https://github.com/rust-lang/crates.io-index" 2518checksum = "9b995a66bb87bebce9a0f4a95aed01daca4872c050bfcb21653361c03bc35e5c" 2519dependencies = [ 2520 "futures-channel", 2521 "futures-core", 2522 "js-sys", 2523 "wasm-bindgen", 2524] 2525 2526[[package]] 2527name = "gloo-timers" 2528version = "0.3.0" 2529source = "registry+https://github.com/rust-lang/crates.io-index" 2530checksum = "bbb143cf96099802033e0d4f4963b19fd2e0b728bcf076cd9cf7f6634f092994" 2531dependencies = [ 2532 "futures-channel", 2533 "futures-core", 2534 "js-sys", 2535 "wasm-bindgen", 2536] 2537 2538[[package]] 2539name = "gobject-sys" 2540version = "0.18.0" 2541source = "registry+https://github.com/rust-lang/crates.io-index" 2542checksum = "0850127b514d1c4a4654ead6dedadb18198999985908e6ffe4436f53c785ce44" 2543dependencies = [ 2544 "glib-sys", 2545 "libc", 2546 "system-deps", 2547] 2548 2549[[package]] 2550name = "group" 2551version = "0.13.0" 2552source = "registry+https://github.com/rust-lang/crates.io-index" 2553checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63" 2554dependencies = [ 2555 "ff", 2556 "rand_core 0.6.4", 2557 "subtle", 2558] 2559 2560[[package]] 2561name = "gtk" 2562version = "0.18.2" 2563source = "registry+https://github.com/rust-lang/crates.io-index" 2564checksum = "fd56fb197bfc42bd5d2751f4f017d44ff59fbb58140c6b49f9b3b2bdab08506a" 2565dependencies = [ 2566 "atk", 2567 "cairo-rs", 2568 "field-offset", 2569 "futures-channel", 2570 "gdk", 2571 "gdk-pixbuf", 2572 "gio", 2573 "glib", 2574 "gtk-sys", 2575 "gtk3-macros", 2576 "libc", 2577 "pango", 2578 "pkg-config", 2579] 2580 2581[[package]] 2582name = "gtk-sys" 2583version = "0.18.2" 2584source = "registry+https://github.com/rust-lang/crates.io-index" 2585checksum = "8f29a1c21c59553eb7dd40e918be54dccd60c52b049b75119d5d96ce6b624414" 2586dependencies = [ 2587 "atk-sys", 2588 "cairo-sys-rs", 2589 "gdk-pixbuf-sys", 2590 "gdk-sys", 2591 "gio-sys", 2592 "glib-sys", 2593 "gobject-sys", 2594 "libc", 2595 "pango-sys", 2596 "system-deps", 2597] 2598 2599[[package]] 2600name = "gtk3-macros" 2601version = "0.18.2" 2602source = "registry+https://github.com/rust-lang/crates.io-index" 2603checksum = "52ff3c5b21f14f0736fed6dcfc0bfb4225ebf5725f3c0209edeec181e4d73e9d" 2604dependencies = [ 2605 "proc-macro-crate 1.3.1", 2606 "proc-macro-error", 2607 "proc-macro2", 2608 "quote", 2609 "syn 2.0.116", 2610] 2611 2612[[package]] 2613name = "h2" 2614version = "0.4.13" 2615source = "registry+https://github.com/rust-lang/crates.io-index" 2616checksum = "2f44da3a8150a6703ed5d34e164b875fd14c2cdab9af1252a9a1020bde2bdc54" 2617dependencies = [ 2618 "atomic-waker", 2619 "bytes", 2620 "fnv", 2621 "futures-core", 2622 "futures-sink", 2623 "http", 2624 "indexmap 2.13.0", 2625 "slab", 2626 "tokio", 2627 "tokio-util", 2628 "tracing", 2629] 2630 2631[[package]] 2632name = "half" 2633version = "2.7.1" 2634source = "registry+https://github.com/rust-lang/crates.io-index" 2635checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b" 2636dependencies = [ 2637 "cfg-if", 2638 "crunchy", 2639 "zerocopy", 2640] 2641 2642[[package]] 2643name = "hashbrown" 2644version = "0.12.3" 2645source = "registry+https://github.com/rust-lang/crates.io-index" 2646checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 2647dependencies = [ 2648 "ahash", 2649] 2650 2651[[package]] 2652name = "hashbrown" 2653version = "0.15.5" 2654source = "registry+https://github.com/rust-lang/crates.io-index" 2655checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1" 2656dependencies = [ 2657 "foldhash", 2658] 2659 2660[[package]] 2661name = "hashbrown" 2662version = "0.16.1" 2663source = "registry+https://github.com/rust-lang/crates.io-index" 2664checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100" 2665 2666[[package]] 2667name = "heck" 2668version = "0.4.1" 2669source = "registry+https://github.com/rust-lang/crates.io-index" 2670checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" 2671 2672[[package]] 2673name = "heck" 2674version = "0.5.0" 2675source = "registry+https://github.com/rust-lang/crates.io-index" 2676checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" 2677 2678[[package]] 2679name = "hermit-abi" 2680version = "0.5.2" 2681source = "registry+https://github.com/rust-lang/crates.io-index" 2682checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c" 2683 2684[[package]] 2685name = "hex" 2686version = "0.4.3" 2687source = "registry+https://github.com/rust-lang/crates.io-index" 2688checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 2689 2690[[package]] 2691name = "hkdf" 2692version = "0.12.4" 2693source = "registry+https://github.com/rust-lang/crates.io-index" 2694checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7" 2695dependencies = [ 2696 "hmac", 2697] 2698 2699[[package]] 2700name = "hmac" 2701version = "0.12.1" 2702source = "registry+https://github.com/rust-lang/crates.io-index" 2703checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" 2704dependencies = [ 2705 "digest", 2706] 2707 2708[[package]] 2709name = "html5ever" 2710version = "0.29.1" 2711source = "registry+https://github.com/rust-lang/crates.io-index" 2712checksum = "3b7410cae13cbc75623c98ac4cbfd1f0bedddf3227afc24f370cf0f50a44a11c" 2713dependencies = [ 2714 "log", 2715 "mac", 2716 "markup5ever", 2717 "match_token", 2718] 2719 2720[[package]] 2721name = "http" 2722version = "1.4.0" 2723source = "registry+https://github.com/rust-lang/crates.io-index" 2724checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a" 2725dependencies = [ 2726 "bytes", 2727 "itoa", 2728] 2729 2730[[package]] 2731name = "http-body" 2732version = "1.0.1" 2733source = "registry+https://github.com/rust-lang/crates.io-index" 2734checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" 2735dependencies = [ 2736 "bytes", 2737 "http", 2738] 2739 2740[[package]] 2741name = "http-body-util" 2742version = "0.1.3" 2743source = "registry+https://github.com/rust-lang/crates.io-index" 2744checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a" 2745dependencies = [ 2746 "bytes", 2747 "futures-core", 2748 "http", 2749 "http-body", 2750 "pin-project-lite", 2751] 2752 2753[[package]] 2754name = "httparse" 2755version = "1.10.1" 2756source = "registry+https://github.com/rust-lang/crates.io-index" 2757checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87" 2758 2759[[package]] 2760name = "httpdate" 2761version = "1.0.3" 2762source = "registry+https://github.com/rust-lang/crates.io-index" 2763checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" 2764 2765[[package]] 2766name = "hyper" 2767version = "1.8.1" 2768source = "registry+https://github.com/rust-lang/crates.io-index" 2769checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11" 2770dependencies = [ 2771 "atomic-waker", 2772 "bytes", 2773 "futures-channel", 2774 "futures-core", 2775 "h2", 2776 "http", 2777 "http-body", 2778 "httparse", 2779 "httpdate", 2780 "itoa", 2781 "pin-project-lite", 2782 "pin-utils", 2783 "smallvec", 2784 "tokio", 2785 "want", 2786] 2787 2788[[package]] 2789name = "hyper-rustls" 2790version = "0.27.7" 2791source = "registry+https://github.com/rust-lang/crates.io-index" 2792checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58" 2793dependencies = [ 2794 "http", 2795 "hyper", 2796 "hyper-util", 2797 "rustls 0.23.36", 2798 "rustls-pki-types", 2799 "tokio", 2800 "tokio-rustls", 2801 "tower-service", 2802] 2803 2804[[package]] 2805name = "hyper-util" 2806version = "0.1.20" 2807source = "registry+https://github.com/rust-lang/crates.io-index" 2808checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0" 2809dependencies = [ 2810 "base64 0.22.1", 2811 "bytes", 2812 "futures-channel", 2813 "futures-util", 2814 "http", 2815 "http-body", 2816 "hyper", 2817 "ipnet", 2818 "libc", 2819 "percent-encoding", 2820 "pin-project-lite", 2821 "socket2 0.6.2", 2822 "system-configuration", 2823 "tokio", 2824 "tower-service", 2825 "tracing", 2826 "windows-registry", 2827] 2828 2829[[package]] 2830name = "iana-time-zone" 2831version = "0.1.65" 2832source = "registry+https://github.com/rust-lang/crates.io-index" 2833checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470" 2834dependencies = [ 2835 "android_system_properties", 2836 "core-foundation-sys", 2837 "iana-time-zone-haiku", 2838 "js-sys", 2839 "log", 2840 "wasm-bindgen", 2841 "windows-core 0.62.2", 2842] 2843 2844[[package]] 2845name = "iana-time-zone-haiku" 2846version = "0.1.2" 2847source = "registry+https://github.com/rust-lang/crates.io-index" 2848checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" 2849dependencies = [ 2850 "cc", 2851] 2852 2853[[package]] 2854name = "ico" 2855version = "0.5.0" 2856source = "registry+https://github.com/rust-lang/crates.io-index" 2857checksum = "3e795dff5605e0f04bff85ca41b51a96b83e80b281e96231bcaaf1ac35103371" 2858dependencies = [ 2859 "byteorder", 2860 "png 0.17.16", 2861] 2862 2863[[package]] 2864name = "icu_collections" 2865version = "2.1.1" 2866source = "registry+https://github.com/rust-lang/crates.io-index" 2867checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43" 2868dependencies = [ 2869 "displaydoc", 2870 "potential_utf", 2871 "yoke", 2872 "zerofrom", 2873 "zerovec", 2874] 2875 2876[[package]] 2877name = "icu_locale_core" 2878version = "2.1.1" 2879source = "registry+https://github.com/rust-lang/crates.io-index" 2880checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6" 2881dependencies = [ 2882 "displaydoc", 2883 "litemap", 2884 "tinystr", 2885 "writeable", 2886 "zerovec", 2887] 2888 2889[[package]] 2890name = "icu_normalizer" 2891version = "2.1.1" 2892source = "registry+https://github.com/rust-lang/crates.io-index" 2893checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599" 2894dependencies = [ 2895 "icu_collections", 2896 "icu_normalizer_data", 2897 "icu_properties", 2898 "icu_provider", 2899 "smallvec", 2900 "zerovec", 2901] 2902 2903[[package]] 2904name = "icu_normalizer_data" 2905version = "2.1.1" 2906source = "registry+https://github.com/rust-lang/crates.io-index" 2907checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a" 2908 2909[[package]] 2910name = "icu_properties" 2911version = "2.1.2" 2912source = "registry+https://github.com/rust-lang/crates.io-index" 2913checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec" 2914dependencies = [ 2915 "icu_collections", 2916 "icu_locale_core", 2917 "icu_properties_data", 2918 "icu_provider", 2919 "zerotrie", 2920 "zerovec", 2921] 2922 2923[[package]] 2924name = "icu_properties_data" 2925version = "2.1.2" 2926source = "registry+https://github.com/rust-lang/crates.io-index" 2927checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af" 2928 2929[[package]] 2930name = "icu_provider" 2931version = "2.1.1" 2932source = "registry+https://github.com/rust-lang/crates.io-index" 2933checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614" 2934dependencies = [ 2935 "displaydoc", 2936 "icu_locale_core", 2937 "writeable", 2938 "yoke", 2939 "zerofrom", 2940 "zerotrie", 2941 "zerovec", 2942] 2943 2944[[package]] 2945name = "id-arena" 2946version = "2.3.0" 2947source = "registry+https://github.com/rust-lang/crates.io-index" 2948checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954" 2949 2950[[package]] 2951name = "ident_case" 2952version = "1.0.1" 2953source = "registry+https://github.com/rust-lang/crates.io-index" 2954checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" 2955 2956[[package]] 2957name = "idna" 2958version = "1.1.0" 2959source = "registry+https://github.com/rust-lang/crates.io-index" 2960checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de" 2961dependencies = [ 2962 "idna_adapter", 2963 "smallvec", 2964 "utf8_iter", 2965] 2966 2967[[package]] 2968name = "idna_adapter" 2969version = "1.2.1" 2970source = "registry+https://github.com/rust-lang/crates.io-index" 2971checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344" 2972dependencies = [ 2973 "icu_normalizer", 2974 "icu_properties", 2975] 2976 2977[[package]] 2978name = "image" 2979version = "0.25.9" 2980source = "registry+https://github.com/rust-lang/crates.io-index" 2981checksum = "e6506c6c10786659413faa717ceebcb8f70731c0a60cbae39795fdf114519c1a" 2982dependencies = [ 2983 "bytemuck", 2984 "byteorder-lite", 2985 "color_quant", 2986 "exr", 2987 "gif", 2988 "image-webp", 2989 "moxcms", 2990 "num-traits", 2991 "png 0.18.1", 2992 "qoi", 2993 "ravif", 2994 "rayon", 2995 "rgb", 2996 "tiff", 2997 "zune-core 0.5.1", 2998 "zune-jpeg 0.5.12", 2999] 3000 3001[[package]] 3002name = "image-webp" 3003version = "0.2.4" 3004source = "registry+https://github.com/rust-lang/crates.io-index" 3005checksum = "525e9ff3e1a4be2fbea1fdf0e98686a6d98b4d8f937e1bf7402245af1909e8c3" 3006dependencies = [ 3007 "byteorder-lite", 3008 "quick-error", 3009] 3010 3011[[package]] 3012name = "imgref" 3013version = "1.12.0" 3014source = "registry+https://github.com/rust-lang/crates.io-index" 3015checksum = "e7c5cedc30da3a610cac6b4ba17597bdf7152cf974e8aab3afb3d54455e371c8" 3016 3017[[package]] 3018name = "indexmap" 3019version = "1.9.3" 3020source = "registry+https://github.com/rust-lang/crates.io-index" 3021checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" 3022dependencies = [ 3023 "autocfg", 3024 "hashbrown 0.12.3", 3025 "serde", 3026] 3027 3028[[package]] 3029name = "indexmap" 3030version = "2.13.0" 3031source = "registry+https://github.com/rust-lang/crates.io-index" 3032checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017" 3033dependencies = [ 3034 "equivalent", 3035 "hashbrown 0.16.1", 3036 "serde", 3037 "serde_core", 3038] 3039 3040[[package]] 3041name = "infer" 3042version = "0.19.0" 3043source = "registry+https://github.com/rust-lang/crates.io-index" 3044checksum = "a588916bfdfd92e71cacef98a63d9b1f0d74d6599980d11894290e7ddefffcf7" 3045dependencies = [ 3046 "cfb", 3047] 3048 3049[[package]] 3050name = "inout" 3051version = "0.1.4" 3052source = "registry+https://github.com/rust-lang/crates.io-index" 3053checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01" 3054dependencies = [ 3055 "block-padding", 3056 "generic-array", 3057] 3058 3059[[package]] 3060name = "interceptor" 3061version = "0.17.1" 3062source = "registry+https://github.com/rust-lang/crates.io-index" 3063checksum = "7f73f4fdb971cab2d599cbdc2ccf0c6ea8fb27347b871ed14c65ce2353dbe75b" 3064dependencies = [ 3065 "async-trait", 3066 "bytes", 3067 "futures", 3068 "log", 3069 "portable-atomic", 3070 "rand 0.9.2", 3071 "rtcp", 3072 "rtp", 3073 "thiserror 1.0.69", 3074 "tokio", 3075 "waitgroup", 3076 "webrtc-srtp", 3077 "webrtc-util", 3078] 3079 3080[[package]] 3081name = "interpolate_name" 3082version = "0.2.4" 3083source = "registry+https://github.com/rust-lang/crates.io-index" 3084checksum = "c34819042dc3d3971c46c2190835914dfbe0c3c13f61449b2997f4e9722dfa60" 3085dependencies = [ 3086 "proc-macro2", 3087 "quote", 3088 "syn 2.0.116", 3089] 3090 3091[[package]] 3092name = "interprocess" 3093version = "2.3.1" 3094source = "registry+https://github.com/rust-lang/crates.io-index" 3095checksum = "53bf2b0e0785c5394a7392f66d7c4fb9c653633c29b27a932280da3cb344c66a" 3096dependencies = [ 3097 "doctest-file", 3098 "futures-core", 3099 "libc", 3100 "recvmsg", 3101 "tokio", 3102 "widestring", 3103 "windows-sys 0.52.0", 3104] 3105 3106[[package]] 3107name = "ipnet" 3108version = "2.11.0" 3109source = "registry+https://github.com/rust-lang/crates.io-index" 3110checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130" 3111 3112[[package]] 3113name = "iri-string" 3114version = "0.7.10" 3115source = "registry+https://github.com/rust-lang/crates.io-index" 3116checksum = "c91338f0783edbd6195decb37bae672fd3b165faffb89bf7b9e6942f8b1a731a" 3117dependencies = [ 3118 "memchr", 3119 "serde", 3120] 3121 3122[[package]] 3123name = "is-docker" 3124version = "0.2.0" 3125source = "registry+https://github.com/rust-lang/crates.io-index" 3126checksum = "928bae27f42bc99b60d9ac7334e3a21d10ad8f1835a4e12ec3ec0464765ed1b3" 3127dependencies = [ 3128 "once_cell", 3129] 3130 3131[[package]] 3132name = "is-wsl" 3133version = "0.4.0" 3134source = "registry+https://github.com/rust-lang/crates.io-index" 3135checksum = "173609498df190136aa7dea1a91db051746d339e18476eed5ca40521f02d7aa5" 3136dependencies = [ 3137 "is-docker", 3138 "once_cell", 3139] 3140 3141[[package]] 3142name = "is_terminal_polyfill" 3143version = "1.70.2" 3144source = "registry+https://github.com/rust-lang/crates.io-index" 3145checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695" 3146 3147[[package]] 3148name = "itertools" 3149version = "0.14.0" 3150source = "registry+https://github.com/rust-lang/crates.io-index" 3151checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285" 3152dependencies = [ 3153 "either", 3154] 3155 3156[[package]] 3157name = "itoa" 3158version = "1.0.17" 3159source = "registry+https://github.com/rust-lang/crates.io-index" 3160checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2" 3161 3162[[package]] 3163name = "javascriptcore-rs" 3164version = "1.1.2" 3165source = "registry+https://github.com/rust-lang/crates.io-index" 3166checksum = "ca5671e9ffce8ffba57afc24070e906da7fc4b1ba66f2cabebf61bf2ea257fcc" 3167dependencies = [ 3168 "bitflags 1.3.2", 3169 "glib", 3170 "javascriptcore-rs-sys", 3171] 3172 3173[[package]] 3174name = "javascriptcore-rs-sys" 3175version = "1.1.1" 3176source = "registry+https://github.com/rust-lang/crates.io-index" 3177checksum = "af1be78d14ffa4b75b66df31840478fef72b51f8c2465d4ca7c194da9f7a5124" 3178dependencies = [ 3179 "glib-sys", 3180 "gobject-sys", 3181 "libc", 3182 "system-deps", 3183] 3184 3185[[package]] 3186name = "jiff" 3187version = "0.2.20" 3188source = "registry+https://github.com/rust-lang/crates.io-index" 3189checksum = "c867c356cc096b33f4981825ab281ecba3db0acefe60329f044c1789d94c6543" 3190dependencies = [ 3191 "jiff-static", 3192 "log", 3193 "portable-atomic", 3194 "portable-atomic-util", 3195 "serde_core", 3196] 3197 3198[[package]] 3199name = "jiff-static" 3200version = "0.2.20" 3201source = "registry+https://github.com/rust-lang/crates.io-index" 3202checksum = "f7946b4325269738f270bb55b3c19ab5c5040525f83fd625259422a9d25d9be5" 3203dependencies = [ 3204 "proc-macro2", 3205 "quote", 3206 "syn 2.0.116", 3207] 3208 3209[[package]] 3210name = "jni" 3211version = "0.21.1" 3212source = "registry+https://github.com/rust-lang/crates.io-index" 3213checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97" 3214dependencies = [ 3215 "cesu8", 3216 "cfg-if", 3217 "combine", 3218 "jni-sys", 3219 "log", 3220 "thiserror 1.0.69", 3221 "walkdir", 3222 "windows-sys 0.45.0", 3223] 3224 3225[[package]] 3226name = "jni-sys" 3227version = "0.3.0" 3228source = "registry+https://github.com/rust-lang/crates.io-index" 3229checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130" 3230 3231[[package]] 3232name = "jobserver" 3233version = "0.1.34" 3234source = "registry+https://github.com/rust-lang/crates.io-index" 3235checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33" 3236dependencies = [ 3237 "getrandom 0.3.4", 3238 "libc", 3239] 3240 3241[[package]] 3242name = "js-sys" 3243version = "0.3.85" 3244source = "registry+https://github.com/rust-lang/crates.io-index" 3245checksum = "8c942ebf8e95485ca0d52d97da7c5a2c387d0e7f0ba4c35e93bfcaee045955b3" 3246dependencies = [ 3247 "once_cell", 3248 "wasm-bindgen", 3249] 3250 3251[[package]] 3252name = "json-patch" 3253version = "3.0.1" 3254source = "registry+https://github.com/rust-lang/crates.io-index" 3255checksum = "863726d7afb6bc2590eeff7135d923545e5e964f004c2ccf8716c25e70a86f08" 3256dependencies = [ 3257 "jsonptr", 3258 "serde", 3259 "serde_json", 3260 "thiserror 1.0.69", 3261] 3262 3263[[package]] 3264name = "jsonptr" 3265version = "0.6.3" 3266source = "registry+https://github.com/rust-lang/crates.io-index" 3267checksum = "5dea2b27dd239b2556ed7a25ba842fe47fd602e7fc7433c2a8d6106d4d9edd70" 3268dependencies = [ 3269 "serde", 3270 "serde_json", 3271] 3272 3273[[package]] 3274name = "keyboard-types" 3275version = "0.7.0" 3276source = "registry+https://github.com/rust-lang/crates.io-index" 3277checksum = "b750dcadc39a09dbadd74e118f6dd6598df77fa01df0cfcdc52c28dece74528a" 3278dependencies = [ 3279 "bitflags 2.11.0", 3280 "serde", 3281 "unicode-segmentation", 3282] 3283 3284[[package]] 3285name = "kuchikiki" 3286version = "0.8.8-speedreader" 3287source = "registry+https://github.com/rust-lang/crates.io-index" 3288checksum = "02cb977175687f33fa4afa0c95c112b987ea1443e5a51c8f8ff27dc618270cc2" 3289dependencies = [ 3290 "cssparser", 3291 "html5ever", 3292 "indexmap 2.13.0", 3293 "selectors", 3294] 3295 3296[[package]] 3297name = "kv-log-macro" 3298version = "1.0.7" 3299source = "registry+https://github.com/rust-lang/crates.io-index" 3300checksum = "0de8b303297635ad57c9f5059fd9cee7a47f8e8daa09df0fcd07dd39fb22977f" 3301dependencies = [ 3302 "log", 3303] 3304 3305[[package]] 3306name = "lazy_static" 3307version = "1.5.0" 3308source = "registry+https://github.com/rust-lang/crates.io-index" 3309checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" 3310 3311[[package]] 3312name = "leb128fmt" 3313version = "0.1.0" 3314source = "registry+https://github.com/rust-lang/crates.io-index" 3315checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2" 3316 3317[[package]] 3318name = "lebe" 3319version = "0.5.3" 3320source = "registry+https://github.com/rust-lang/crates.io-index" 3321checksum = "7a79a3332a6609480d7d0c9eab957bca6b455b91bb84e66d19f5ff66294b85b8" 3322 3323[[package]] 3324name = "libappindicator" 3325version = "0.9.0" 3326source = "registry+https://github.com/rust-lang/crates.io-index" 3327checksum = "03589b9607c868cc7ae54c0b2a22c8dc03dd41692d48f2d7df73615c6a95dc0a" 3328dependencies = [ 3329 "glib", 3330 "gtk", 3331 "gtk-sys", 3332 "libappindicator-sys", 3333 "log", 3334] 3335 3336[[package]] 3337name = "libappindicator-sys" 3338version = "0.9.0" 3339source = "registry+https://github.com/rust-lang/crates.io-index" 3340checksum = "6e9ec52138abedcc58dc17a7c6c0c00a2bdb4f3427c7f63fa97fd0d859155caf" 3341dependencies = [ 3342 "gtk-sys", 3343 "libloading", 3344 "once_cell", 3345] 3346 3347[[package]] 3348name = "libc" 3349version = "0.2.182" 3350source = "registry+https://github.com/rust-lang/crates.io-index" 3351checksum = "6800badb6cb2082ffd7b6a67e6125bb39f18782f793520caee8cb8846be06112" 3352 3353[[package]] 3354name = "libfuzzer-sys" 3355version = "0.4.12" 3356source = "registry+https://github.com/rust-lang/crates.io-index" 3357checksum = "f12a681b7dd8ce12bff52488013ba614b869148d54dd79836ab85aafdd53f08d" 3358dependencies = [ 3359 "arbitrary", 3360 "cc", 3361] 3362 3363[[package]] 3364name = "libloading" 3365version = "0.7.4" 3366source = "registry+https://github.com/rust-lang/crates.io-index" 3367checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f" 3368dependencies = [ 3369 "cfg-if", 3370 "winapi", 3371] 3372 3373[[package]] 3374name = "libredox" 3375version = "0.1.12" 3376source = "registry+https://github.com/rust-lang/crates.io-index" 3377checksum = "3d0b95e02c851351f877147b7deea7b1afb1df71b63aa5f8270716e0c5720616" 3378dependencies = [ 3379 "bitflags 2.11.0", 3380 "libc", 3381] 3382 3383[[package]] 3384name = "linux-raw-sys" 3385version = "0.11.0" 3386source = "registry+https://github.com/rust-lang/crates.io-index" 3387checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039" 3388 3389[[package]] 3390name = "litemap" 3391version = "0.8.1" 3392source = "registry+https://github.com/rust-lang/crates.io-index" 3393checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77" 3394 3395[[package]] 3396name = "lock_api" 3397version = "0.4.14" 3398source = "registry+https://github.com/rust-lang/crates.io-index" 3399checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965" 3400dependencies = [ 3401 "scopeguard", 3402] 3403 3404[[package]] 3405name = "log" 3406version = "0.4.29" 3407source = "registry+https://github.com/rust-lang/crates.io-index" 3408checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897" 3409dependencies = [ 3410 "value-bag", 3411] 3412 3413[[package]] 3414name = "loop9" 3415version = "0.1.5" 3416source = "registry+https://github.com/rust-lang/crates.io-index" 3417checksum = "0fae87c125b03c1d2c0150c90365d7d6bcc53fb73a9acaef207d2d065860f062" 3418dependencies = [ 3419 "imgref", 3420] 3421 3422[[package]] 3423name = "lru-slab" 3424version = "0.1.2" 3425source = "registry+https://github.com/rust-lang/crates.io-index" 3426checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154" 3427 3428[[package]] 3429name = "mac" 3430version = "0.1.1" 3431source = "registry+https://github.com/rust-lang/crates.io-index" 3432checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4" 3433 3434[[package]] 3435name = "mac-notification-sys" 3436version = "0.6.9" 3437source = "registry+https://github.com/rust-lang/crates.io-index" 3438checksum = "65fd3f75411f4725061682ed91f131946e912859d0044d39c4ec0aac818d7621" 3439dependencies = [ 3440 "cc", 3441 "objc2", 3442 "objc2-foundation", 3443 "time", 3444] 3445 3446[[package]] 3447name = "manhunt-app" 3448version = "0.1.0" 3449dependencies = [ 3450 "anyhow", 3451 "base64 0.22.1", 3452 "chrono", 3453 "image", 3454 "log", 3455 "manhunt-logic", 3456 "manhunt-transport", 3457 "rustls 0.23.36", 3458 "serde", 3459 "serde_json", 3460 "specta", 3461 "specta-typescript", 3462 "tauri", 3463 "tauri-build", 3464 "tauri-plugin-dialog", 3465 "tauri-plugin-fs", 3466 "tauri-plugin-geolocation", 3467 "tauri-plugin-log", 3468 "tauri-plugin-notification", 3469 "tauri-plugin-opener", 3470 "tauri-plugin-store", 3471 "tauri-specta", 3472 "tokio", 3473 "uuid", 3474] 3475 3476[[package]] 3477name = "manhunt-logic" 3478version = "0.1.0" 3479dependencies = [ 3480 "anyhow", 3481 "chrono", 3482 "rand 0.10.0", 3483 "rand_chacha 0.10.0", 3484 "serde", 3485 "specta", 3486 "tokio", 3487 "tokio-util", 3488 "uuid", 3489] 3490 3491[[package]] 3492name = "manhunt-signaling" 3493version = "0.1.0" 3494dependencies = [ 3495 "anyhow", 3496 "async-trait", 3497 "axum", 3498 "colog", 3499 "futures", 3500 "log", 3501 "matchbox_protocol", 3502 "matchbox_signaling", 3503 "rand 0.10.0", 3504 "tokio", 3505 "tokio-util", 3506 "uuid", 3507] 3508 3509[[package]] 3510name = "manhunt-testing" 3511version = "0.1.0" 3512dependencies = [ 3513 "anyhow", 3514 "clap", 3515 "interprocess", 3516 "manhunt-logic", 3517 "manhunt-transport", 3518 "serde", 3519 "serde_json", 3520 "tokio", 3521] 3522 3523[[package]] 3524name = "manhunt-transport" 3525version = "0.1.0" 3526dependencies = [ 3527 "anyhow", 3528 "const-str", 3529 "futures", 3530 "log", 3531 "manhunt-logic", 3532 "matchbox_protocol", 3533 "matchbox_socket", 3534 "rand 0.10.0", 3535 "reqwest", 3536 "rmp-serde", 3537 "serde", 3538 "tokio", 3539 "tokio-util", 3540 "uuid", 3541] 3542 3543[[package]] 3544name = "markup5ever" 3545version = "0.14.1" 3546source = "registry+https://github.com/rust-lang/crates.io-index" 3547checksum = "c7a7213d12e1864c0f002f52c2923d4556935a43dec5e71355c2760e0f6e7a18" 3548dependencies = [ 3549 "log", 3550 "phf 0.11.3", 3551 "phf_codegen 0.11.3", 3552 "string_cache", 3553 "string_cache_codegen", 3554 "tendril", 3555] 3556 3557[[package]] 3558name = "match_token" 3559version = "0.1.0" 3560source = "registry+https://github.com/rust-lang/crates.io-index" 3561checksum = "88a9689d8d44bf9964484516275f5cd4c9b59457a6940c1d5d0ecbb94510a36b" 3562dependencies = [ 3563 "proc-macro2", 3564 "quote", 3565 "syn 2.0.116", 3566] 3567 3568[[package]] 3569name = "matchbox_protocol" 3570version = "0.14.0" 3571source = "registry+https://github.com/rust-lang/crates.io-index" 3572checksum = "867e83a984f369eabc682318eec2db410aef1dbb5399cb1890e6659dfa9b7449" 3573dependencies = [ 3574 "cfg-if", 3575 "derive_more 2.1.1", 3576 "serde", 3577 "serde_json", 3578 "uuid", 3579] 3580 3581[[package]] 3582name = "matchbox_signaling" 3583version = "0.14.0" 3584source = "registry+https://github.com/rust-lang/crates.io-index" 3585checksum = "33d8eeb36f21a45699331d121b4c5d2c7fdd342f0216e4c0033787f5c5fc4470" 3586dependencies = [ 3587 "async-trait", 3588 "axum", 3589 "futures", 3590 "hyper", 3591 "matchbox_protocol", 3592 "serde", 3593 "serde_json", 3594 "thiserror 2.0.18", 3595 "tokio", 3596 "tokio-stream", 3597 "tower-http", 3598 "tracing", 3599 "uuid", 3600] 3601 3602[[package]] 3603name = "matchbox_socket" 3604version = "0.14.0" 3605source = "registry+https://github.com/rust-lang/crates.io-index" 3606checksum = "11ee21421327e145fab424cadb542bef9f745a8938b9eb8c81d3286e98f18be9" 3607dependencies = [ 3608 "async-compat", 3609 "async-trait", 3610 "async-tungstenite", 3611 "bytes", 3612 "cfg-if", 3613 "derive_more 2.1.1", 3614 "futures", 3615 "futures-channel", 3616 "futures-timer", 3617 "futures-util", 3618 "js-sys", 3619 "log", 3620 "matchbox_protocol", 3621 "once_cell", 3622 "serde", 3623 "serde-wasm-bindgen", 3624 "serde_json", 3625 "thiserror 2.0.18", 3626 "tokio-util", 3627 "wasm-bindgen", 3628 "wasm-bindgen-futures", 3629 "web-sys", 3630 "webrtc", 3631 "ws_stream_wasm", 3632] 3633 3634[[package]] 3635name = "matches" 3636version = "0.1.10" 3637source = "registry+https://github.com/rust-lang/crates.io-index" 3638checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5" 3639 3640[[package]] 3641name = "matchit" 3642version = "0.8.4" 3643source = "registry+https://github.com/rust-lang/crates.io-index" 3644checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3" 3645 3646[[package]] 3647name = "maybe-rayon" 3648version = "0.1.1" 3649source = "registry+https://github.com/rust-lang/crates.io-index" 3650checksum = "8ea1f30cedd69f0a2954655f7188c6a834246d2bcf1e315e2ac40c4b24dc9519" 3651dependencies = [ 3652 "cfg-if", 3653 "rayon", 3654] 3655 3656[[package]] 3657name = "md-5" 3658version = "0.10.6" 3659source = "registry+https://github.com/rust-lang/crates.io-index" 3660checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf" 3661dependencies = [ 3662 "cfg-if", 3663 "digest", 3664] 3665 3666[[package]] 3667name = "memchr" 3668version = "2.8.0" 3669source = "registry+https://github.com/rust-lang/crates.io-index" 3670checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79" 3671 3672[[package]] 3673name = "memoffset" 3674version = "0.7.1" 3675source = "registry+https://github.com/rust-lang/crates.io-index" 3676checksum = "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4" 3677dependencies = [ 3678 "autocfg", 3679] 3680 3681[[package]] 3682name = "memoffset" 3683version = "0.9.1" 3684source = "registry+https://github.com/rust-lang/crates.io-index" 3685checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a" 3686dependencies = [ 3687 "autocfg", 3688] 3689 3690[[package]] 3691name = "mime" 3692version = "0.3.17" 3693source = "registry+https://github.com/rust-lang/crates.io-index" 3694checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" 3695 3696[[package]] 3697name = "minimal-lexical" 3698version = "0.2.1" 3699source = "registry+https://github.com/rust-lang/crates.io-index" 3700checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" 3701 3702[[package]] 3703name = "miniz_oxide" 3704version = "0.8.9" 3705source = "registry+https://github.com/rust-lang/crates.io-index" 3706checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316" 3707dependencies = [ 3708 "adler2", 3709 "simd-adler32", 3710] 3711 3712[[package]] 3713name = "mio" 3714version = "1.1.1" 3715source = "registry+https://github.com/rust-lang/crates.io-index" 3716checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc" 3717dependencies = [ 3718 "libc", 3719 "wasi 0.11.1+wasi-snapshot-preview1", 3720 "windows-sys 0.61.2", 3721] 3722 3723[[package]] 3724name = "moxcms" 3725version = "0.7.11" 3726source = "registry+https://github.com/rust-lang/crates.io-index" 3727checksum = "ac9557c559cd6fc9867e122e20d2cbefc9ca29d80d027a8e39310920ed2f0a97" 3728dependencies = [ 3729 "num-traits", 3730 "pxfm", 3731] 3732 3733[[package]] 3734name = "muda" 3735version = "0.17.1" 3736source = "registry+https://github.com/rust-lang/crates.io-index" 3737checksum = "01c1738382f66ed56b3b9c8119e794a2e23148ac8ea214eda86622d4cb9d415a" 3738dependencies = [ 3739 "crossbeam-channel", 3740 "dpi", 3741 "gtk", 3742 "keyboard-types", 3743 "objc2", 3744 "objc2-app-kit", 3745 "objc2-core-foundation", 3746 "objc2-foundation", 3747 "once_cell", 3748 "png 0.17.16", 3749 "serde", 3750 "thiserror 2.0.18", 3751 "windows-sys 0.60.2", 3752] 3753 3754[[package]] 3755name = "munge" 3756version = "0.4.7" 3757source = "registry+https://github.com/rust-lang/crates.io-index" 3758checksum = "5e17401f259eba956ca16491461b6e8f72913a0a114e39736ce404410f915a0c" 3759dependencies = [ 3760 "munge_macro", 3761] 3762 3763[[package]] 3764name = "munge_macro" 3765version = "0.4.7" 3766source = "registry+https://github.com/rust-lang/crates.io-index" 3767checksum = "4568f25ccbd45ab5d5603dc34318c1ec56b117531781260002151b8530a9f931" 3768dependencies = [ 3769 "proc-macro2", 3770 "quote", 3771 "syn 2.0.116", 3772] 3773 3774[[package]] 3775name = "ndk" 3776version = "0.9.0" 3777source = "registry+https://github.com/rust-lang/crates.io-index" 3778checksum = "c3f42e7bbe13d351b6bead8286a43aac9534b82bd3cc43e47037f012ebfd62d4" 3779dependencies = [ 3780 "bitflags 2.11.0", 3781 "jni-sys", 3782 "log", 3783 "ndk-sys", 3784 "num_enum", 3785 "raw-window-handle", 3786 "thiserror 1.0.69", 3787] 3788 3789[[package]] 3790name = "ndk-context" 3791version = "0.1.1" 3792source = "registry+https://github.com/rust-lang/crates.io-index" 3793checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b" 3794 3795[[package]] 3796name = "ndk-sys" 3797version = "0.6.0+11769913" 3798source = "registry+https://github.com/rust-lang/crates.io-index" 3799checksum = "ee6cda3051665f1fb8d9e08fc35c96d5a244fb1be711a03b71118828afc9a873" 3800dependencies = [ 3801 "jni-sys", 3802] 3803 3804[[package]] 3805name = "new_debug_unreachable" 3806version = "1.0.6" 3807source = "registry+https://github.com/rust-lang/crates.io-index" 3808checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086" 3809 3810[[package]] 3811name = "nix" 3812version = "0.26.4" 3813source = "registry+https://github.com/rust-lang/crates.io-index" 3814checksum = "598beaf3cc6fdd9a5dfb1630c2800c7acd31df7aaf0f565796fba2b53ca1af1b" 3815dependencies = [ 3816 "bitflags 1.3.2", 3817 "cfg-if", 3818 "libc", 3819 "memoffset 0.7.1", 3820 "pin-utils", 3821] 3822 3823[[package]] 3824name = "nodrop" 3825version = "0.1.14" 3826source = "registry+https://github.com/rust-lang/crates.io-index" 3827checksum = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb" 3828 3829[[package]] 3830name = "nom" 3831version = "7.1.3" 3832source = "registry+https://github.com/rust-lang/crates.io-index" 3833checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" 3834dependencies = [ 3835 "memchr", 3836 "minimal-lexical", 3837] 3838 3839[[package]] 3840name = "nom" 3841version = "8.0.0" 3842source = "registry+https://github.com/rust-lang/crates.io-index" 3843checksum = "df9761775871bdef83bee530e60050f7e54b1105350d6884eb0fb4f46c2f9405" 3844dependencies = [ 3845 "memchr", 3846] 3847 3848[[package]] 3849name = "noop_proc_macro" 3850version = "0.3.0" 3851source = "registry+https://github.com/rust-lang/crates.io-index" 3852checksum = "0676bb32a98c1a483ce53e500a81ad9c3d5b3f7c920c28c24e9cb0980d0b5bc8" 3853 3854[[package]] 3855name = "notify-rust" 3856version = "4.12.0" 3857source = "registry+https://github.com/rust-lang/crates.io-index" 3858checksum = "21af20a1b50be5ac5861f74af1a863da53a11c38684d9818d82f1c42f7fdc6c2" 3859dependencies = [ 3860 "futures-lite", 3861 "log", 3862 "mac-notification-sys", 3863 "serde", 3864 "tauri-winrt-notification", 3865 "zbus", 3866] 3867 3868[[package]] 3869name = "num-bigint" 3870version = "0.4.6" 3871source = "registry+https://github.com/rust-lang/crates.io-index" 3872checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9" 3873dependencies = [ 3874 "num-integer", 3875 "num-traits", 3876] 3877 3878[[package]] 3879name = "num-conv" 3880version = "0.2.0" 3881source = "registry+https://github.com/rust-lang/crates.io-index" 3882checksum = "cf97ec579c3c42f953ef76dbf8d55ac91fb219dde70e49aa4a6b7d74e9919050" 3883 3884[[package]] 3885name = "num-derive" 3886version = "0.4.2" 3887source = "registry+https://github.com/rust-lang/crates.io-index" 3888checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202" 3889dependencies = [ 3890 "proc-macro2", 3891 "quote", 3892 "syn 2.0.116", 3893] 3894 3895[[package]] 3896name = "num-integer" 3897version = "0.1.46" 3898source = "registry+https://github.com/rust-lang/crates.io-index" 3899checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f" 3900dependencies = [ 3901 "num-traits", 3902] 3903 3904[[package]] 3905name = "num-rational" 3906version = "0.4.2" 3907source = "registry+https://github.com/rust-lang/crates.io-index" 3908checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824" 3909dependencies = [ 3910 "num-bigint", 3911 "num-integer", 3912 "num-traits", 3913] 3914 3915[[package]] 3916name = "num-traits" 3917version = "0.2.19" 3918source = "registry+https://github.com/rust-lang/crates.io-index" 3919checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" 3920dependencies = [ 3921 "autocfg", 3922] 3923 3924[[package]] 3925name = "num_enum" 3926version = "0.7.5" 3927source = "registry+https://github.com/rust-lang/crates.io-index" 3928checksum = "b1207a7e20ad57b847bbddc6776b968420d38292bbfe2089accff5e19e82454c" 3929dependencies = [ 3930 "num_enum_derive", 3931 "rustversion", 3932] 3933 3934[[package]] 3935name = "num_enum_derive" 3936version = "0.7.5" 3937source = "registry+https://github.com/rust-lang/crates.io-index" 3938checksum = "ff32365de1b6743cb203b710788263c44a03de03802daf96092f2da4fe6ba4d7" 3939dependencies = [ 3940 "proc-macro-crate 3.4.0", 3941 "proc-macro2", 3942 "quote", 3943 "syn 2.0.116", 3944] 3945 3946[[package]] 3947name = "num_threads" 3948version = "0.1.7" 3949source = "registry+https://github.com/rust-lang/crates.io-index" 3950checksum = "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9" 3951dependencies = [ 3952 "libc", 3953] 3954 3955[[package]] 3956name = "objc2" 3957version = "0.6.3" 3958source = "registry+https://github.com/rust-lang/crates.io-index" 3959checksum = "b7c2599ce0ec54857b29ce62166b0ed9b4f6f1a70ccc9a71165b6154caca8c05" 3960dependencies = [ 3961 "objc2-encode", 3962 "objc2-exception-helper", 3963] 3964 3965[[package]] 3966name = "objc2-app-kit" 3967version = "0.3.2" 3968source = "registry+https://github.com/rust-lang/crates.io-index" 3969checksum = "d49e936b501e5c5bf01fda3a9452ff86dc3ea98ad5f283e1455153142d97518c" 3970dependencies = [ 3971 "bitflags 2.11.0", 3972 "block2", 3973 "libc", 3974 "objc2", 3975 "objc2-cloud-kit", 3976 "objc2-core-data", 3977 "objc2-core-foundation", 3978 "objc2-core-graphics", 3979 "objc2-core-image", 3980 "objc2-core-text", 3981 "objc2-core-video", 3982 "objc2-foundation", 3983 "objc2-quartz-core", 3984] 3985 3986[[package]] 3987name = "objc2-cloud-kit" 3988version = "0.3.2" 3989source = "registry+https://github.com/rust-lang/crates.io-index" 3990checksum = "73ad74d880bb43877038da939b7427bba67e9dd42004a18b809ba7d87cee241c" 3991dependencies = [ 3992 "bitflags 2.11.0", 3993 "objc2", 3994 "objc2-foundation", 3995] 3996 3997[[package]] 3998name = "objc2-core-data" 3999version = "0.3.2" 4000source = "registry+https://github.com/rust-lang/crates.io-index" 4001checksum = "0b402a653efbb5e82ce4df10683b6b28027616a2715e90009947d50b8dd298fa" 4002dependencies = [ 4003 "bitflags 2.11.0", 4004 "objc2", 4005 "objc2-foundation", 4006] 4007 4008[[package]] 4009name = "objc2-core-foundation" 4010version = "0.3.2" 4011source = "registry+https://github.com/rust-lang/crates.io-index" 4012checksum = "2a180dd8642fa45cdb7dd721cd4c11b1cadd4929ce112ebd8b9f5803cc79d536" 4013dependencies = [ 4014 "bitflags 2.11.0", 4015 "dispatch2", 4016 "objc2", 4017] 4018 4019[[package]] 4020name = "objc2-core-graphics" 4021version = "0.3.2" 4022source = "registry+https://github.com/rust-lang/crates.io-index" 4023checksum = "e022c9d066895efa1345f8e33e584b9f958da2fd4cd116792e15e07e4720a807" 4024dependencies = [ 4025 "bitflags 2.11.0", 4026 "dispatch2", 4027 "objc2", 4028 "objc2-core-foundation", 4029 "objc2-io-surface", 4030] 4031 4032[[package]] 4033name = "objc2-core-image" 4034version = "0.3.2" 4035source = "registry+https://github.com/rust-lang/crates.io-index" 4036checksum = "e5d563b38d2b97209f8e861173de434bd0214cf020e3423a52624cd1d989f006" 4037dependencies = [ 4038 "objc2", 4039 "objc2-foundation", 4040] 4041 4042[[package]] 4043name = "objc2-core-text" 4044version = "0.3.2" 4045source = "registry+https://github.com/rust-lang/crates.io-index" 4046checksum = "0cde0dfb48d25d2b4862161a4d5fcc0e3c24367869ad306b0c9ec0073bfed92d" 4047dependencies = [ 4048 "bitflags 2.11.0", 4049 "objc2", 4050 "objc2-core-foundation", 4051 "objc2-core-graphics", 4052] 4053 4054[[package]] 4055name = "objc2-core-video" 4056version = "0.3.2" 4057source = "registry+https://github.com/rust-lang/crates.io-index" 4058checksum = "d425caf1df73233f29fd8a5c3e5edbc30d2d4307870f802d18f00d83dc5141a6" 4059dependencies = [ 4060 "bitflags 2.11.0", 4061 "objc2", 4062 "objc2-core-foundation", 4063 "objc2-core-graphics", 4064 "objc2-io-surface", 4065] 4066 4067[[package]] 4068name = "objc2-encode" 4069version = "4.1.0" 4070source = "registry+https://github.com/rust-lang/crates.io-index" 4071checksum = "ef25abbcd74fb2609453eb695bd2f860d389e457f67dc17cafc8b8cbc89d0c33" 4072 4073[[package]] 4074name = "objc2-exception-helper" 4075version = "0.1.1" 4076source = "registry+https://github.com/rust-lang/crates.io-index" 4077checksum = "c7a1c5fbb72d7735b076bb47b578523aedc40f3c439bea6dfd595c089d79d98a" 4078dependencies = [ 4079 "cc", 4080] 4081 4082[[package]] 4083name = "objc2-foundation" 4084version = "0.3.2" 4085source = "registry+https://github.com/rust-lang/crates.io-index" 4086checksum = "e3e0adef53c21f888deb4fa59fc59f7eb17404926ee8a6f59f5df0fd7f9f3272" 4087dependencies = [ 4088 "bitflags 2.11.0", 4089 "block2", 4090 "libc", 4091 "objc2", 4092 "objc2-core-foundation", 4093] 4094 4095[[package]] 4096name = "objc2-io-surface" 4097version = "0.3.2" 4098source = "registry+https://github.com/rust-lang/crates.io-index" 4099checksum = "180788110936d59bab6bd83b6060ffdfffb3b922ba1396b312ae795e1de9d81d" 4100dependencies = [ 4101 "bitflags 2.11.0", 4102 "objc2", 4103 "objc2-core-foundation", 4104] 4105 4106[[package]] 4107name = "objc2-javascript-core" 4108version = "0.3.2" 4109source = "registry+https://github.com/rust-lang/crates.io-index" 4110checksum = "2a1e6550c4caed348956ce3370c9ffeca70bb1dbed4fa96112e7c6170e074586" 4111dependencies = [ 4112 "objc2", 4113 "objc2-core-foundation", 4114] 4115 4116[[package]] 4117name = "objc2-quartz-core" 4118version = "0.3.2" 4119source = "registry+https://github.com/rust-lang/crates.io-index" 4120checksum = "96c1358452b371bf9f104e21ec536d37a650eb10f7ee379fff67d2e08d537f1f" 4121dependencies = [ 4122 "bitflags 2.11.0", 4123 "objc2", 4124 "objc2-core-foundation", 4125 "objc2-foundation", 4126] 4127 4128[[package]] 4129name = "objc2-security" 4130version = "0.3.2" 4131source = "registry+https://github.com/rust-lang/crates.io-index" 4132checksum = "709fe137109bd1e8b5a99390f77a7d8b2961dafc1a1c5db8f2e60329ad6d895a" 4133dependencies = [ 4134 "bitflags 2.11.0", 4135 "objc2", 4136 "objc2-core-foundation", 4137] 4138 4139[[package]] 4140name = "objc2-ui-kit" 4141version = "0.3.2" 4142source = "registry+https://github.com/rust-lang/crates.io-index" 4143checksum = "d87d638e33c06f577498cbcc50491496a3ed4246998a7fbba7ccb98b1e7eab22" 4144dependencies = [ 4145 "bitflags 2.11.0", 4146 "objc2", 4147 "objc2-core-foundation", 4148 "objc2-foundation", 4149] 4150 4151[[package]] 4152name = "objc2-web-kit" 4153version = "0.3.2" 4154source = "registry+https://github.com/rust-lang/crates.io-index" 4155checksum = "b2e5aaab980c433cf470df9d7af96a7b46a9d892d521a2cbbb2f8a4c16751e7f" 4156dependencies = [ 4157 "bitflags 2.11.0", 4158 "block2", 4159 "objc2", 4160 "objc2-app-kit", 4161 "objc2-core-foundation", 4162 "objc2-foundation", 4163 "objc2-javascript-core", 4164 "objc2-security", 4165] 4166 4167[[package]] 4168name = "oid-registry" 4169version = "0.7.1" 4170source = "registry+https://github.com/rust-lang/crates.io-index" 4171checksum = "a8d8034d9489cdaf79228eb9f6a3b8d7bb32ba00d6645ebd48eef4077ceb5bd9" 4172dependencies = [ 4173 "asn1-rs", 4174] 4175 4176[[package]] 4177name = "once_cell" 4178version = "1.21.3" 4179source = "registry+https://github.com/rust-lang/crates.io-index" 4180checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d" 4181 4182[[package]] 4183name = "once_cell_polyfill" 4184version = "1.70.2" 4185source = "registry+https://github.com/rust-lang/crates.io-index" 4186checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe" 4187 4188[[package]] 4189name = "opaque-debug" 4190version = "0.3.1" 4191source = "registry+https://github.com/rust-lang/crates.io-index" 4192checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381" 4193 4194[[package]] 4195name = "open" 4196version = "5.3.3" 4197source = "registry+https://github.com/rust-lang/crates.io-index" 4198checksum = "43bb73a7fa3799b198970490a51174027ba0d4ec504b03cd08caf513d40024bc" 4199dependencies = [ 4200 "dunce", 4201 "is-wsl", 4202 "libc", 4203 "pathdiff", 4204] 4205 4206[[package]] 4207name = "openssl-probe" 4208version = "0.2.1" 4209source = "registry+https://github.com/rust-lang/crates.io-index" 4210checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe" 4211 4212[[package]] 4213name = "option-ext" 4214version = "0.2.0" 4215source = "registry+https://github.com/rust-lang/crates.io-index" 4216checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d" 4217 4218[[package]] 4219name = "ordered-stream" 4220version = "0.2.0" 4221source = "registry+https://github.com/rust-lang/crates.io-index" 4222checksum = "9aa2b01e1d916879f73a53d01d1d6cee68adbb31d6d9177a8cfce093cced1d50" 4223dependencies = [ 4224 "futures-core", 4225 "pin-project-lite", 4226] 4227 4228[[package]] 4229name = "p256" 4230version = "0.13.2" 4231source = "registry+https://github.com/rust-lang/crates.io-index" 4232checksum = "c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b" 4233dependencies = [ 4234 "ecdsa", 4235 "elliptic-curve", 4236 "primeorder", 4237 "sha2", 4238] 4239 4240[[package]] 4241name = "p384" 4242version = "0.13.1" 4243source = "registry+https://github.com/rust-lang/crates.io-index" 4244checksum = "fe42f1670a52a47d448f14b6a5c61dd78fce51856e68edaa38f7ae3a46b8d6b6" 4245dependencies = [ 4246 "ecdsa", 4247 "elliptic-curve", 4248 "primeorder", 4249 "sha2", 4250] 4251 4252[[package]] 4253name = "pango" 4254version = "0.18.3" 4255source = "registry+https://github.com/rust-lang/crates.io-index" 4256checksum = "7ca27ec1eb0457ab26f3036ea52229edbdb74dee1edd29063f5b9b010e7ebee4" 4257dependencies = [ 4258 "gio", 4259 "glib", 4260 "libc", 4261 "once_cell", 4262 "pango-sys", 4263] 4264 4265[[package]] 4266name = "pango-sys" 4267version = "0.18.0" 4268source = "registry+https://github.com/rust-lang/crates.io-index" 4269checksum = "436737e391a843e5933d6d9aa102cb126d501e815b83601365a948a518555dc5" 4270dependencies = [ 4271 "glib-sys", 4272 "gobject-sys", 4273 "libc", 4274 "system-deps", 4275] 4276 4277[[package]] 4278name = "parking" 4279version = "2.2.1" 4280source = "registry+https://github.com/rust-lang/crates.io-index" 4281checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba" 4282 4283[[package]] 4284name = "parking_lot" 4285version = "0.12.5" 4286source = "registry+https://github.com/rust-lang/crates.io-index" 4287checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a" 4288dependencies = [ 4289 "lock_api", 4290 "parking_lot_core", 4291] 4292 4293[[package]] 4294name = "parking_lot_core" 4295version = "0.9.12" 4296source = "registry+https://github.com/rust-lang/crates.io-index" 4297checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1" 4298dependencies = [ 4299 "cfg-if", 4300 "libc", 4301 "redox_syscall", 4302 "smallvec", 4303 "windows-link 0.2.1", 4304] 4305 4306[[package]] 4307name = "paste" 4308version = "1.0.15" 4309source = "registry+https://github.com/rust-lang/crates.io-index" 4310checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a" 4311 4312[[package]] 4313name = "pastey" 4314version = "0.1.1" 4315source = "registry+https://github.com/rust-lang/crates.io-index" 4316checksum = "35fb2e5f958ec131621fdd531e9fc186ed768cbe395337403ae56c17a74c68ec" 4317 4318[[package]] 4319name = "pathdiff" 4320version = "0.2.3" 4321source = "registry+https://github.com/rust-lang/crates.io-index" 4322checksum = "df94ce210e5bc13cb6651479fa48d14f601d9858cfe0467f43ae157023b938d3" 4323 4324[[package]] 4325name = "pem" 4326version = "3.0.6" 4327source = "registry+https://github.com/rust-lang/crates.io-index" 4328checksum = "1d30c53c26bc5b31a98cd02d20f25a7c8567146caf63ed593a9d87b2775291be" 4329dependencies = [ 4330 "base64 0.22.1", 4331 "serde_core", 4332] 4333 4334[[package]] 4335name = "pem-rfc7468" 4336version = "0.7.0" 4337source = "registry+https://github.com/rust-lang/crates.io-index" 4338checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412" 4339dependencies = [ 4340 "base64ct", 4341] 4342 4343[[package]] 4344name = "percent-encoding" 4345version = "2.3.2" 4346source = "registry+https://github.com/rust-lang/crates.io-index" 4347checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220" 4348 4349[[package]] 4350name = "pharos" 4351version = "0.5.3" 4352source = "registry+https://github.com/rust-lang/crates.io-index" 4353checksum = "e9567389417feee6ce15dd6527a8a1ecac205ef62c2932bcf3d9f6fc5b78b414" 4354dependencies = [ 4355 "futures", 4356 "rustc_version", 4357] 4358 4359[[package]] 4360name = "phf" 4361version = "0.8.0" 4362source = "registry+https://github.com/rust-lang/crates.io-index" 4363checksum = "3dfb61232e34fcb633f43d12c58f83c1df82962dcdfa565a4e866ffc17dafe12" 4364dependencies = [ 4365 "phf_shared 0.8.0", 4366] 4367 4368[[package]] 4369name = "phf" 4370version = "0.10.1" 4371source = "registry+https://github.com/rust-lang/crates.io-index" 4372checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259" 4373dependencies = [ 4374 "phf_macros 0.10.0", 4375 "phf_shared 0.10.0", 4376 "proc-macro-hack", 4377] 4378 4379[[package]] 4380name = "phf" 4381version = "0.11.3" 4382source = "registry+https://github.com/rust-lang/crates.io-index" 4383checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078" 4384dependencies = [ 4385 "phf_macros 0.11.3", 4386 "phf_shared 0.11.3", 4387] 4388 4389[[package]] 4390name = "phf_codegen" 4391version = "0.8.0" 4392source = "registry+https://github.com/rust-lang/crates.io-index" 4393checksum = "cbffee61585b0411840d3ece935cce9cb6321f01c45477d30066498cd5e1a815" 4394dependencies = [ 4395 "phf_generator 0.8.0", 4396 "phf_shared 0.8.0", 4397] 4398 4399[[package]] 4400name = "phf_codegen" 4401version = "0.11.3" 4402source = "registry+https://github.com/rust-lang/crates.io-index" 4403checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a" 4404dependencies = [ 4405 "phf_generator 0.11.3", 4406 "phf_shared 0.11.3", 4407] 4408 4409[[package]] 4410name = "phf_generator" 4411version = "0.8.0" 4412source = "registry+https://github.com/rust-lang/crates.io-index" 4413checksum = "17367f0cc86f2d25802b2c26ee58a7b23faeccf78a396094c13dced0d0182526" 4414dependencies = [ 4415 "phf_shared 0.8.0", 4416 "rand 0.7.3", 4417] 4418 4419[[package]] 4420name = "phf_generator" 4421version = "0.10.0" 4422source = "registry+https://github.com/rust-lang/crates.io-index" 4423checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6" 4424dependencies = [ 4425 "phf_shared 0.10.0", 4426 "rand 0.8.5", 4427] 4428 4429[[package]] 4430name = "phf_generator" 4431version = "0.11.3" 4432source = "registry+https://github.com/rust-lang/crates.io-index" 4433checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d" 4434dependencies = [ 4435 "phf_shared 0.11.3", 4436 "rand 0.8.5", 4437] 4438 4439[[package]] 4440name = "phf_macros" 4441version = "0.10.0" 4442source = "registry+https://github.com/rust-lang/crates.io-index" 4443checksum = "58fdf3184dd560f160dd73922bea2d5cd6e8f064bf4b13110abd81b03697b4e0" 4444dependencies = [ 4445 "phf_generator 0.10.0", 4446 "phf_shared 0.10.0", 4447 "proc-macro-hack", 4448 "proc-macro2", 4449 "quote", 4450 "syn 1.0.109", 4451] 4452 4453[[package]] 4454name = "phf_macros" 4455version = "0.11.3" 4456source = "registry+https://github.com/rust-lang/crates.io-index" 4457checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216" 4458dependencies = [ 4459 "phf_generator 0.11.3", 4460 "phf_shared 0.11.3", 4461 "proc-macro2", 4462 "quote", 4463 "syn 2.0.116", 4464] 4465 4466[[package]] 4467name = "phf_shared" 4468version = "0.8.0" 4469source = "registry+https://github.com/rust-lang/crates.io-index" 4470checksum = "c00cf8b9eafe68dde5e9eaa2cef8ee84a9336a47d566ec55ca16589633b65af7" 4471dependencies = [ 4472 "siphasher 0.3.11", 4473] 4474 4475[[package]] 4476name = "phf_shared" 4477version = "0.10.0" 4478source = "registry+https://github.com/rust-lang/crates.io-index" 4479checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096" 4480dependencies = [ 4481 "siphasher 0.3.11", 4482] 4483 4484[[package]] 4485name = "phf_shared" 4486version = "0.11.3" 4487source = "registry+https://github.com/rust-lang/crates.io-index" 4488checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5" 4489dependencies = [ 4490 "siphasher 1.0.2", 4491] 4492 4493[[package]] 4494name = "pin-project-lite" 4495version = "0.2.16" 4496source = "registry+https://github.com/rust-lang/crates.io-index" 4497checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b" 4498 4499[[package]] 4500name = "pin-utils" 4501version = "0.1.0" 4502source = "registry+https://github.com/rust-lang/crates.io-index" 4503checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 4504 4505[[package]] 4506name = "piper" 4507version = "0.2.4" 4508source = "registry+https://github.com/rust-lang/crates.io-index" 4509checksum = "96c8c490f422ef9a4efd2cb5b42b76c8613d7e7dfc1caf667b8a3350a5acc066" 4510dependencies = [ 4511 "atomic-waker", 4512 "fastrand", 4513 "futures-io", 4514] 4515 4516[[package]] 4517name = "pkcs8" 4518version = "0.10.2" 4519source = "registry+https://github.com/rust-lang/crates.io-index" 4520checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7" 4521dependencies = [ 4522 "der", 4523 "spki", 4524] 4525 4526[[package]] 4527name = "pkg-config" 4528version = "0.3.32" 4529source = "registry+https://github.com/rust-lang/crates.io-index" 4530checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c" 4531 4532[[package]] 4533name = "plist" 4534version = "1.8.0" 4535source = "registry+https://github.com/rust-lang/crates.io-index" 4536checksum = "740ebea15c5d1428f910cd1a5f52cebf8d25006245ed8ade92702f4943d91e07" 4537dependencies = [ 4538 "base64 0.22.1", 4539 "indexmap 2.13.0", 4540 "quick-xml 0.38.4", 4541 "serde", 4542 "time", 4543] 4544 4545[[package]] 4546name = "png" 4547version = "0.17.16" 4548source = "registry+https://github.com/rust-lang/crates.io-index" 4549checksum = "82151a2fc869e011c153adc57cf2789ccb8d9906ce52c0b39a6b5697749d7526" 4550dependencies = [ 4551 "bitflags 1.3.2", 4552 "crc32fast", 4553 "fdeflate", 4554 "flate2", 4555 "miniz_oxide", 4556] 4557 4558[[package]] 4559name = "png" 4560version = "0.18.1" 4561source = "registry+https://github.com/rust-lang/crates.io-index" 4562checksum = "60769b8b31b2a9f263dae2776c37b1b28ae246943cf719eb6946a1db05128a61" 4563dependencies = [ 4564 "bitflags 2.11.0", 4565 "crc32fast", 4566 "fdeflate", 4567 "flate2", 4568 "miniz_oxide", 4569] 4570 4571[[package]] 4572name = "polling" 4573version = "3.11.0" 4574source = "registry+https://github.com/rust-lang/crates.io-index" 4575checksum = "5d0e4f59085d47d8241c88ead0f274e8a0cb551f3625263c05eb8dd897c34218" 4576dependencies = [ 4577 "cfg-if", 4578 "concurrent-queue", 4579 "hermit-abi", 4580 "pin-project-lite", 4581 "rustix", 4582 "windows-sys 0.61.2", 4583] 4584 4585[[package]] 4586name = "poly1305" 4587version = "0.8.0" 4588source = "registry+https://github.com/rust-lang/crates.io-index" 4589checksum = "8159bd90725d2df49889a078b54f4f79e87f1f8a8444194cdca81d38f5393abf" 4590dependencies = [ 4591 "cpufeatures 0.2.17", 4592 "opaque-debug", 4593 "universal-hash", 4594] 4595 4596[[package]] 4597name = "polyval" 4598version = "0.6.2" 4599source = "registry+https://github.com/rust-lang/crates.io-index" 4600checksum = "9d1fe60d06143b2430aa532c94cfe9e29783047f06c0d7fd359a9a51b729fa25" 4601dependencies = [ 4602 "cfg-if", 4603 "cpufeatures 0.2.17", 4604 "opaque-debug", 4605 "universal-hash", 4606] 4607 4608[[package]] 4609name = "portable-atomic" 4610version = "1.13.1" 4611source = "registry+https://github.com/rust-lang/crates.io-index" 4612checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49" 4613 4614[[package]] 4615name = "portable-atomic-util" 4616version = "0.2.5" 4617source = "registry+https://github.com/rust-lang/crates.io-index" 4618checksum = "7a9db96d7fa8782dd8c15ce32ffe8680bbd1e978a43bf51a34d39483540495f5" 4619dependencies = [ 4620 "portable-atomic", 4621] 4622 4623[[package]] 4624name = "potential_utf" 4625version = "0.1.4" 4626source = "registry+https://github.com/rust-lang/crates.io-index" 4627checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77" 4628dependencies = [ 4629 "zerovec", 4630] 4631 4632[[package]] 4633name = "powerfmt" 4634version = "0.2.0" 4635source = "registry+https://github.com/rust-lang/crates.io-index" 4636checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" 4637 4638[[package]] 4639name = "ppv-lite86" 4640version = "0.2.21" 4641source = "registry+https://github.com/rust-lang/crates.io-index" 4642checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9" 4643dependencies = [ 4644 "zerocopy", 4645] 4646 4647[[package]] 4648name = "precomputed-hash" 4649version = "0.1.1" 4650source = "registry+https://github.com/rust-lang/crates.io-index" 4651checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c" 4652 4653[[package]] 4654name = "prettyplease" 4655version = "0.2.37" 4656source = "registry+https://github.com/rust-lang/crates.io-index" 4657checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b" 4658dependencies = [ 4659 "proc-macro2", 4660 "syn 2.0.116", 4661] 4662 4663[[package]] 4664name = "primeorder" 4665version = "0.13.6" 4666source = "registry+https://github.com/rust-lang/crates.io-index" 4667checksum = "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6" 4668dependencies = [ 4669 "elliptic-curve", 4670] 4671 4672[[package]] 4673name = "proc-macro-crate" 4674version = "1.3.1" 4675source = "registry+https://github.com/rust-lang/crates.io-index" 4676checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919" 4677dependencies = [ 4678 "once_cell", 4679 "toml_edit 0.19.15", 4680] 4681 4682[[package]] 4683name = "proc-macro-crate" 4684version = "2.0.2" 4685source = "registry+https://github.com/rust-lang/crates.io-index" 4686checksum = "b00f26d3400549137f92511a46ac1cd8ce37cb5598a96d382381458b992a5d24" 4687dependencies = [ 4688 "toml_datetime 0.6.3", 4689 "toml_edit 0.20.2", 4690] 4691 4692[[package]] 4693name = "proc-macro-crate" 4694version = "3.4.0" 4695source = "registry+https://github.com/rust-lang/crates.io-index" 4696checksum = "219cb19e96be00ab2e37d6e299658a0cfa83e52429179969b0f0121b4ac46983" 4697dependencies = [ 4698 "toml_edit 0.23.10+spec-1.0.0", 4699] 4700 4701[[package]] 4702name = "proc-macro-error" 4703version = "1.0.4" 4704source = "registry+https://github.com/rust-lang/crates.io-index" 4705checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" 4706dependencies = [ 4707 "proc-macro-error-attr", 4708 "proc-macro2", 4709 "quote", 4710 "syn 1.0.109", 4711 "version_check", 4712] 4713 4714[[package]] 4715name = "proc-macro-error-attr" 4716version = "1.0.4" 4717source = "registry+https://github.com/rust-lang/crates.io-index" 4718checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" 4719dependencies = [ 4720 "proc-macro2", 4721 "quote", 4722 "version_check", 4723] 4724 4725[[package]] 4726name = "proc-macro-hack" 4727version = "0.5.20+deprecated" 4728source = "registry+https://github.com/rust-lang/crates.io-index" 4729checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068" 4730 4731[[package]] 4732name = "proc-macro2" 4733version = "1.0.106" 4734source = "registry+https://github.com/rust-lang/crates.io-index" 4735checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934" 4736dependencies = [ 4737 "unicode-ident", 4738] 4739 4740[[package]] 4741name = "profiling" 4742version = "1.0.17" 4743source = "registry+https://github.com/rust-lang/crates.io-index" 4744checksum = "3eb8486b569e12e2c32ad3e204dbaba5e4b5b216e9367044f25f1dba42341773" 4745dependencies = [ 4746 "profiling-procmacros", 4747] 4748 4749[[package]] 4750name = "profiling-procmacros" 4751version = "1.0.17" 4752source = "registry+https://github.com/rust-lang/crates.io-index" 4753checksum = "52717f9a02b6965224f95ca2a81e2e0c5c43baacd28ca057577988930b6c3d5b" 4754dependencies = [ 4755 "quote", 4756 "syn 2.0.116", 4757] 4758 4759[[package]] 4760name = "ptr_meta" 4761version = "0.1.4" 4762source = "registry+https://github.com/rust-lang/crates.io-index" 4763checksum = "0738ccf7ea06b608c10564b31debd4f5bc5e197fc8bfe088f68ae5ce81e7a4f1" 4764dependencies = [ 4765 "ptr_meta_derive 0.1.4", 4766] 4767 4768[[package]] 4769name = "ptr_meta" 4770version = "0.3.1" 4771source = "registry+https://github.com/rust-lang/crates.io-index" 4772checksum = "0b9a0cf95a1196af61d4f1cbdab967179516d9a4a4312af1f31948f8f6224a79" 4773dependencies = [ 4774 "ptr_meta_derive 0.3.1", 4775] 4776 4777[[package]] 4778name = "ptr_meta_derive" 4779version = "0.1.4" 4780source = "registry+https://github.com/rust-lang/crates.io-index" 4781checksum = "16b845dbfca988fa33db069c0e230574d15a3088f147a87b64c7589eb662c9ac" 4782dependencies = [ 4783 "proc-macro2", 4784 "quote", 4785 "syn 1.0.109", 4786] 4787 4788[[package]] 4789name = "ptr_meta_derive" 4790version = "0.3.1" 4791source = "registry+https://github.com/rust-lang/crates.io-index" 4792checksum = "7347867d0a7e1208d93b46767be83e2b8f978c3dad35f775ac8d8847551d6fe1" 4793dependencies = [ 4794 "proc-macro2", 4795 "quote", 4796 "syn 2.0.116", 4797] 4798 4799[[package]] 4800name = "pxfm" 4801version = "0.1.27" 4802source = "registry+https://github.com/rust-lang/crates.io-index" 4803checksum = "7186d3822593aa4393561d186d1393b3923e9d6163d3fbfd6e825e3e6cf3e6a8" 4804dependencies = [ 4805 "num-traits", 4806] 4807 4808[[package]] 4809name = "qoi" 4810version = "0.4.1" 4811source = "registry+https://github.com/rust-lang/crates.io-index" 4812checksum = "7f6d64c71eb498fe9eae14ce4ec935c555749aef511cca85b5568910d6e48001" 4813dependencies = [ 4814 "bytemuck", 4815] 4816 4817[[package]] 4818name = "quick-error" 4819version = "2.0.1" 4820source = "registry+https://github.com/rust-lang/crates.io-index" 4821checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3" 4822 4823[[package]] 4824name = "quick-xml" 4825version = "0.37.5" 4826source = "registry+https://github.com/rust-lang/crates.io-index" 4827checksum = "331e97a1af0bf59823e6eadffe373d7b27f485be8748f71471c662c1f269b7fb" 4828dependencies = [ 4829 "memchr", 4830] 4831 4832[[package]] 4833name = "quick-xml" 4834version = "0.38.4" 4835source = "registry+https://github.com/rust-lang/crates.io-index" 4836checksum = "b66c2058c55a409d601666cffe35f04333cf1013010882cec174a7467cd4e21c" 4837dependencies = [ 4838 "memchr", 4839] 4840 4841[[package]] 4842name = "quinn" 4843version = "0.11.9" 4844source = "registry+https://github.com/rust-lang/crates.io-index" 4845checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20" 4846dependencies = [ 4847 "bytes", 4848 "cfg_aliases", 4849 "pin-project-lite", 4850 "quinn-proto", 4851 "quinn-udp", 4852 "rustc-hash", 4853 "rustls 0.23.36", 4854 "socket2 0.6.2", 4855 "thiserror 2.0.18", 4856 "tokio", 4857 "tracing", 4858 "web-time", 4859] 4860 4861[[package]] 4862name = "quinn-proto" 4863version = "0.11.13" 4864source = "registry+https://github.com/rust-lang/crates.io-index" 4865checksum = "f1906b49b0c3bc04b5fe5d86a77925ae6524a19b816ae38ce1e426255f1d8a31" 4866dependencies = [ 4867 "aws-lc-rs", 4868 "bytes", 4869 "getrandom 0.3.4", 4870 "lru-slab", 4871 "rand 0.9.2", 4872 "ring", 4873 "rustc-hash", 4874 "rustls 0.23.36", 4875 "rustls-pki-types", 4876 "slab", 4877 "thiserror 2.0.18", 4878 "tinyvec", 4879 "tracing", 4880 "web-time", 4881] 4882 4883[[package]] 4884name = "quinn-udp" 4885version = "0.5.14" 4886source = "registry+https://github.com/rust-lang/crates.io-index" 4887checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd" 4888dependencies = [ 4889 "cfg_aliases", 4890 "libc", 4891 "once_cell", 4892 "socket2 0.6.2", 4893 "tracing", 4894 "windows-sys 0.60.2", 4895] 4896 4897[[package]] 4898name = "quote" 4899version = "1.0.44" 4900source = "registry+https://github.com/rust-lang/crates.io-index" 4901checksum = "21b2ebcf727b7760c461f091f9f0f539b77b8e87f2fd88131e7f1b433b3cece4" 4902dependencies = [ 4903 "proc-macro2", 4904] 4905 4906[[package]] 4907name = "r-efi" 4908version = "5.3.0" 4909source = "registry+https://github.com/rust-lang/crates.io-index" 4910checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" 4911 4912[[package]] 4913name = "radium" 4914version = "0.7.0" 4915source = "registry+https://github.com/rust-lang/crates.io-index" 4916checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09" 4917 4918[[package]] 4919name = "rancor" 4920version = "0.1.1" 4921source = "registry+https://github.com/rust-lang/crates.io-index" 4922checksum = "a063ea72381527c2a0561da9c80000ef822bdd7c3241b1cc1b12100e3df081ee" 4923dependencies = [ 4924 "ptr_meta 0.3.1", 4925] 4926 4927[[package]] 4928name = "rand" 4929version = "0.7.3" 4930source = "registry+https://github.com/rust-lang/crates.io-index" 4931checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03" 4932dependencies = [ 4933 "getrandom 0.1.16", 4934 "libc", 4935 "rand_chacha 0.2.2", 4936 "rand_core 0.5.1", 4937 "rand_hc", 4938 "rand_pcg", 4939] 4940 4941[[package]] 4942name = "rand" 4943version = "0.8.5" 4944source = "registry+https://github.com/rust-lang/crates.io-index" 4945checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 4946dependencies = [ 4947 "libc", 4948 "rand_chacha 0.3.1", 4949 "rand_core 0.6.4", 4950] 4951 4952[[package]] 4953name = "rand" 4954version = "0.9.2" 4955source = "registry+https://github.com/rust-lang/crates.io-index" 4956checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1" 4957dependencies = [ 4958 "rand_chacha 0.9.0", 4959 "rand_core 0.9.5", 4960] 4961 4962[[package]] 4963name = "rand" 4964version = "0.10.0" 4965source = "registry+https://github.com/rust-lang/crates.io-index" 4966checksum = "bc266eb313df6c5c09c1c7b1fbe2510961e5bcd3add930c1e31f7ed9da0feff8" 4967dependencies = [ 4968 "chacha20 0.10.0", 4969 "getrandom 0.4.1", 4970 "rand_core 0.10.0", 4971] 4972 4973[[package]] 4974name = "rand_chacha" 4975version = "0.2.2" 4976source = "registry+https://github.com/rust-lang/crates.io-index" 4977checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402" 4978dependencies = [ 4979 "ppv-lite86", 4980 "rand_core 0.5.1", 4981] 4982 4983[[package]] 4984name = "rand_chacha" 4985version = "0.3.1" 4986source = "registry+https://github.com/rust-lang/crates.io-index" 4987checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 4988dependencies = [ 4989 "ppv-lite86", 4990 "rand_core 0.6.4", 4991] 4992 4993[[package]] 4994name = "rand_chacha" 4995version = "0.9.0" 4996source = "registry+https://github.com/rust-lang/crates.io-index" 4997checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb" 4998dependencies = [ 4999 "ppv-lite86", 5000 "rand_core 0.9.5", 5001] 5002 5003[[package]] 5004name = "rand_chacha" 5005version = "0.10.0" 5006source = "registry+https://github.com/rust-lang/crates.io-index" 5007checksum = "3e6af7f3e25ded52c41df4e0b1af2d047e45896c2f3281792ed68a1c243daedb" 5008dependencies = [ 5009 "ppv-lite86", 5010 "rand_core 0.10.0", 5011] 5012 5013[[package]] 5014name = "rand_core" 5015version = "0.5.1" 5016source = "registry+https://github.com/rust-lang/crates.io-index" 5017checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" 5018dependencies = [ 5019 "getrandom 0.1.16", 5020] 5021 5022[[package]] 5023name = "rand_core" 5024version = "0.6.4" 5025source = "registry+https://github.com/rust-lang/crates.io-index" 5026checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 5027dependencies = [ 5028 "getrandom 0.2.17", 5029] 5030 5031[[package]] 5032name = "rand_core" 5033version = "0.9.5" 5034source = "registry+https://github.com/rust-lang/crates.io-index" 5035checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c" 5036dependencies = [ 5037 "getrandom 0.3.4", 5038] 5039 5040[[package]] 5041name = "rand_core" 5042version = "0.10.0" 5043source = "registry+https://github.com/rust-lang/crates.io-index" 5044checksum = "0c8d0fd677905edcbeedbf2edb6494d676f0e98d54d5cf9bda0b061cb8fb8aba" 5045 5046[[package]] 5047name = "rand_hc" 5048version = "0.2.0" 5049source = "registry+https://github.com/rust-lang/crates.io-index" 5050checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" 5051dependencies = [ 5052 "rand_core 0.5.1", 5053] 5054 5055[[package]] 5056name = "rand_pcg" 5057version = "0.2.1" 5058source = "registry+https://github.com/rust-lang/crates.io-index" 5059checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429" 5060dependencies = [ 5061 "rand_core 0.5.1", 5062] 5063 5064[[package]] 5065name = "rav1e" 5066version = "0.8.1" 5067source = "registry+https://github.com/rust-lang/crates.io-index" 5068checksum = "43b6dd56e85d9483277cde964fd1bdb0428de4fec5ebba7540995639a21cb32b" 5069dependencies = [ 5070 "aligned-vec", 5071 "arbitrary", 5072 "arg_enum_proc_macro", 5073 "arrayvec", 5074 "av-scenechange", 5075 "av1-grain", 5076 "bitstream-io", 5077 "built", 5078 "cfg-if", 5079 "interpolate_name", 5080 "itertools", 5081 "libc", 5082 "libfuzzer-sys", 5083 "log", 5084 "maybe-rayon", 5085 "new_debug_unreachable", 5086 "noop_proc_macro", 5087 "num-derive", 5088 "num-traits", 5089 "paste", 5090 "profiling", 5091 "rand 0.9.2", 5092 "rand_chacha 0.9.0", 5093 "simd_helpers", 5094 "thiserror 2.0.18", 5095 "v_frame", 5096 "wasm-bindgen", 5097] 5098 5099[[package]] 5100name = "ravif" 5101version = "0.12.0" 5102source = "registry+https://github.com/rust-lang/crates.io-index" 5103checksum = "ef69c1990ceef18a116855938e74793a5f7496ee907562bd0857b6ac734ab285" 5104dependencies = [ 5105 "avif-serialize", 5106 "imgref", 5107 "loop9", 5108 "quick-error", 5109 "rav1e", 5110 "rayon", 5111 "rgb", 5112] 5113 5114[[package]] 5115name = "raw-window-handle" 5116version = "0.6.2" 5117source = "registry+https://github.com/rust-lang/crates.io-index" 5118checksum = "20675572f6f24e9e76ef639bc5552774ed45f1c30e2951e1e99c59888861c539" 5119 5120[[package]] 5121name = "rayon" 5122version = "1.11.0" 5123source = "registry+https://github.com/rust-lang/crates.io-index" 5124checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f" 5125dependencies = [ 5126 "either", 5127 "rayon-core", 5128] 5129 5130[[package]] 5131name = "rayon-core" 5132version = "1.13.0" 5133source = "registry+https://github.com/rust-lang/crates.io-index" 5134checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91" 5135dependencies = [ 5136 "crossbeam-deque", 5137 "crossbeam-utils", 5138] 5139 5140[[package]] 5141name = "rcgen" 5142version = "0.13.2" 5143source = "registry+https://github.com/rust-lang/crates.io-index" 5144checksum = "75e669e5202259b5314d1ea5397316ad400819437857b90861765f24c4cf80a2" 5145dependencies = [ 5146 "pem", 5147 "ring", 5148 "rustls-pki-types", 5149 "time", 5150 "x509-parser", 5151 "yasna", 5152] 5153 5154[[package]] 5155name = "recvmsg" 5156version = "1.0.0" 5157source = "registry+https://github.com/rust-lang/crates.io-index" 5158checksum = "d3edd4d5d42c92f0a659926464d4cce56b562761267ecf0f469d85b7de384175" 5159 5160[[package]] 5161name = "redox_syscall" 5162version = "0.5.18" 5163source = "registry+https://github.com/rust-lang/crates.io-index" 5164checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d" 5165dependencies = [ 5166 "bitflags 2.11.0", 5167] 5168 5169[[package]] 5170name = "redox_users" 5171version = "0.5.2" 5172source = "registry+https://github.com/rust-lang/crates.io-index" 5173checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac" 5174dependencies = [ 5175 "getrandom 0.2.17", 5176 "libredox", 5177 "thiserror 2.0.18", 5178] 5179 5180[[package]] 5181name = "ref-cast" 5182version = "1.0.25" 5183source = "registry+https://github.com/rust-lang/crates.io-index" 5184checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d" 5185dependencies = [ 5186 "ref-cast-impl", 5187] 5188 5189[[package]] 5190name = "ref-cast-impl" 5191version = "1.0.25" 5192source = "registry+https://github.com/rust-lang/crates.io-index" 5193checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da" 5194dependencies = [ 5195 "proc-macro2", 5196 "quote", 5197 "syn 2.0.116", 5198] 5199 5200[[package]] 5201name = "regex" 5202version = "1.12.3" 5203source = "registry+https://github.com/rust-lang/crates.io-index" 5204checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276" 5205dependencies = [ 5206 "aho-corasick", 5207 "memchr", 5208 "regex-automata", 5209 "regex-syntax", 5210] 5211 5212[[package]] 5213name = "regex-automata" 5214version = "0.4.14" 5215source = "registry+https://github.com/rust-lang/crates.io-index" 5216checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f" 5217dependencies = [ 5218 "aho-corasick", 5219 "memchr", 5220 "regex-syntax", 5221] 5222 5223[[package]] 5224name = "regex-syntax" 5225version = "0.8.9" 5226source = "registry+https://github.com/rust-lang/crates.io-index" 5227checksum = "a96887878f22d7bad8a3b6dc5b7440e0ada9a245242924394987b21cf2210a4c" 5228 5229[[package]] 5230name = "rend" 5231version = "0.4.2" 5232source = "registry+https://github.com/rust-lang/crates.io-index" 5233checksum = "71fe3824f5629716b1589be05dacd749f6aa084c87e00e016714a8cdfccc997c" 5234dependencies = [ 5235 "bytecheck 0.6.12", 5236] 5237 5238[[package]] 5239name = "rend" 5240version = "0.5.3" 5241source = "registry+https://github.com/rust-lang/crates.io-index" 5242checksum = "cadadef317c2f20755a64d7fdc48f9e7178ee6b0e1f7fce33fa60f1d68a276e6" 5243dependencies = [ 5244 "bytecheck 0.8.2", 5245] 5246 5247[[package]] 5248name = "reqwest" 5249version = "0.13.2" 5250source = "registry+https://github.com/rust-lang/crates.io-index" 5251checksum = "ab3f43e3283ab1488b624b44b0e988d0acea0b3214e694730a055cb6b2efa801" 5252dependencies = [ 5253 "base64 0.22.1", 5254 "bytes", 5255 "encoding_rs", 5256 "futures-core", 5257 "futures-util", 5258 "h2", 5259 "http", 5260 "http-body", 5261 "http-body-util", 5262 "hyper", 5263 "hyper-rustls", 5264 "hyper-util", 5265 "js-sys", 5266 "log", 5267 "mime", 5268 "percent-encoding", 5269 "pin-project-lite", 5270 "quinn", 5271 "rustls 0.23.36", 5272 "rustls-pki-types", 5273 "rustls-platform-verifier", 5274 "serde", 5275 "serde_json", 5276 "sync_wrapper", 5277 "tokio", 5278 "tokio-rustls", 5279 "tokio-util", 5280 "tower", 5281 "tower-http", 5282 "tower-service", 5283 "url", 5284 "wasm-bindgen", 5285 "wasm-bindgen-futures", 5286 "wasm-streams", 5287 "web-sys", 5288] 5289 5290[[package]] 5291name = "rfc6979" 5292version = "0.4.0" 5293source = "registry+https://github.com/rust-lang/crates.io-index" 5294checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2" 5295dependencies = [ 5296 "hmac", 5297 "subtle", 5298] 5299 5300[[package]] 5301name = "rfd" 5302version = "0.16.0" 5303source = "registry+https://github.com/rust-lang/crates.io-index" 5304checksum = "a15ad77d9e70a92437d8f74c35d99b4e4691128df018833e99f90bcd36152672" 5305dependencies = [ 5306 "block2", 5307 "dispatch2", 5308 "glib-sys", 5309 "gobject-sys", 5310 "gtk-sys", 5311 "js-sys", 5312 "log", 5313 "objc2", 5314 "objc2-app-kit", 5315 "objc2-core-foundation", 5316 "objc2-foundation", 5317 "raw-window-handle", 5318 "wasm-bindgen", 5319 "wasm-bindgen-futures", 5320 "web-sys", 5321 "windows-sys 0.60.2", 5322] 5323 5324[[package]] 5325name = "rgb" 5326version = "0.8.52" 5327source = "registry+https://github.com/rust-lang/crates.io-index" 5328checksum = "0c6a884d2998352bb4daf0183589aec883f16a6da1f4dde84d8e2e9a5409a1ce" 5329 5330[[package]] 5331name = "ring" 5332version = "0.17.14" 5333source = "registry+https://github.com/rust-lang/crates.io-index" 5334checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7" 5335dependencies = [ 5336 "cc", 5337 "cfg-if", 5338 "getrandom 0.2.17", 5339 "libc", 5340 "untrusted", 5341 "windows-sys 0.52.0", 5342] 5343 5344[[package]] 5345name = "rkyv" 5346version = "0.7.46" 5347source = "registry+https://github.com/rust-lang/crates.io-index" 5348checksum = "2297bf9c81a3f0dc96bc9521370b88f054168c29826a75e89c55ff196e7ed6a1" 5349dependencies = [ 5350 "bitvec", 5351 "bytecheck 0.6.12", 5352 "bytes", 5353 "hashbrown 0.12.3", 5354 "ptr_meta 0.1.4", 5355 "rend 0.4.2", 5356 "rkyv_derive 0.7.46", 5357 "seahash", 5358 "tinyvec", 5359 "uuid", 5360] 5361 5362[[package]] 5363name = "rkyv" 5364version = "0.8.15" 5365source = "registry+https://github.com/rust-lang/crates.io-index" 5366checksum = "1a30e631b7f4a03dee9056b8ef6982e8ba371dd5bedb74d3ec86df4499132c70" 5367dependencies = [ 5368 "bytecheck 0.8.2", 5369 "bytes", 5370 "hashbrown 0.16.1", 5371 "indexmap 2.13.0", 5372 "munge", 5373 "ptr_meta 0.3.1", 5374 "rancor", 5375 "rend 0.5.3", 5376 "rkyv_derive 0.8.15", 5377 "tinyvec", 5378 "uuid", 5379] 5380 5381[[package]] 5382name = "rkyv_derive" 5383version = "0.7.46" 5384source = "registry+https://github.com/rust-lang/crates.io-index" 5385checksum = "84d7b42d4b8d06048d3ac8db0eb31bcb942cbeb709f0b5f2b2ebde398d3038f5" 5386dependencies = [ 5387 "proc-macro2", 5388 "quote", 5389 "syn 1.0.109", 5390] 5391 5392[[package]] 5393name = "rkyv_derive" 5394version = "0.8.15" 5395source = "registry+https://github.com/rust-lang/crates.io-index" 5396checksum = "8100bb34c0a1d0f907143db3149e6b4eea3c33b9ee8b189720168e818303986f" 5397dependencies = [ 5398 "proc-macro2", 5399 "quote", 5400 "syn 2.0.116", 5401] 5402 5403[[package]] 5404name = "rmp" 5405version = "0.8.15" 5406source = "registry+https://github.com/rust-lang/crates.io-index" 5407checksum = "4ba8be72d372b2c9b35542551678538b562e7cf86c3315773cae48dfbfe7790c" 5408dependencies = [ 5409 "num-traits", 5410] 5411 5412[[package]] 5413name = "rmp-serde" 5414version = "1.3.1" 5415source = "registry+https://github.com/rust-lang/crates.io-index" 5416checksum = "72f81bee8c8ef9b577d1681a70ebbc962c232461e397b22c208c43c04b67a155" 5417dependencies = [ 5418 "rmp", 5419 "serde", 5420] 5421 5422[[package]] 5423name = "rtcp" 5424version = "0.17.1" 5425source = "registry+https://github.com/rust-lang/crates.io-index" 5426checksum = "cb22f1cc99aea8152fdae6a4bc52a9caddf4bd1ff083d897c1f9f279956177e8" 5427dependencies = [ 5428 "bytes", 5429 "thiserror 1.0.69", 5430 "webrtc-util", 5431] 5432 5433[[package]] 5434name = "rtp" 5435version = "0.17.1" 5436source = "registry+https://github.com/rust-lang/crates.io-index" 5437checksum = "f8d41f3565d9add11caabe7c61745517f4ef511c168a6aa2b59ce4c701802cde" 5438dependencies = [ 5439 "bytes", 5440 "memchr", 5441 "portable-atomic", 5442 "rand 0.9.2", 5443 "serde", 5444 "thiserror 1.0.69", 5445 "webrtc-util", 5446] 5447 5448[[package]] 5449name = "rust_decimal" 5450version = "1.40.0" 5451source = "registry+https://github.com/rust-lang/crates.io-index" 5452checksum = "61f703d19852dbf87cbc513643fa81428361eb6940f1ac14fd58155d295a3eb0" 5453dependencies = [ 5454 "arrayvec", 5455 "borsh", 5456 "bytes", 5457 "num-traits", 5458 "rand 0.8.5", 5459 "rkyv 0.7.46", 5460 "serde", 5461 "serde_json", 5462] 5463 5464[[package]] 5465name = "rustc-hash" 5466version = "2.1.1" 5467source = "registry+https://github.com/rust-lang/crates.io-index" 5468checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d" 5469 5470[[package]] 5471name = "rustc_version" 5472version = "0.4.1" 5473source = "registry+https://github.com/rust-lang/crates.io-index" 5474checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92" 5475dependencies = [ 5476 "semver", 5477] 5478 5479[[package]] 5480name = "rusticata-macros" 5481version = "4.1.0" 5482source = "registry+https://github.com/rust-lang/crates.io-index" 5483checksum = "faf0c4a6ece9950b9abdb62b1cfcf2a68b3b67a10ba445b3bb85be2a293d0632" 5484dependencies = [ 5485 "nom 7.1.3", 5486] 5487 5488[[package]] 5489name = "rustix" 5490version = "1.1.3" 5491source = "registry+https://github.com/rust-lang/crates.io-index" 5492checksum = "146c9e247ccc180c1f61615433868c99f3de3ae256a30a43b49f67c2d9171f34" 5493dependencies = [ 5494 "bitflags 2.11.0", 5495 "errno", 5496 "libc", 5497 "linux-raw-sys", 5498 "windows-sys 0.61.2", 5499] 5500 5501[[package]] 5502name = "rustls" 5503version = "0.21.12" 5504source = "registry+https://github.com/rust-lang/crates.io-index" 5505checksum = "3f56a14d1f48b391359b22f731fd4bd7e43c97f3c50eee276f3aa09c94784d3e" 5506dependencies = [ 5507 "log", 5508 "ring", 5509 "rustls-webpki 0.101.7", 5510 "sct", 5511] 5512 5513[[package]] 5514name = "rustls" 5515version = "0.23.36" 5516source = "registry+https://github.com/rust-lang/crates.io-index" 5517checksum = "c665f33d38cea657d9614f766881e4d510e0eda4239891eea56b4cadcf01801b" 5518dependencies = [ 5519 "aws-lc-rs", 5520 "log", 5521 "once_cell", 5522 "ring", 5523 "rustls-pki-types", 5524 "rustls-webpki 0.103.9", 5525 "subtle", 5526 "zeroize", 5527] 5528 5529[[package]] 5530name = "rustls-native-certs" 5531version = "0.8.3" 5532source = "registry+https://github.com/rust-lang/crates.io-index" 5533checksum = "612460d5f7bea540c490b2b6395d8e34a953e52b491accd6c86c8164c5932a63" 5534dependencies = [ 5535 "openssl-probe", 5536 "rustls-pki-types", 5537 "schannel", 5538 "security-framework", 5539] 5540 5541[[package]] 5542name = "rustls-pemfile" 5543version = "1.0.4" 5544source = "registry+https://github.com/rust-lang/crates.io-index" 5545checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c" 5546dependencies = [ 5547 "base64 0.21.7", 5548] 5549 5550[[package]] 5551name = "rustls-pki-types" 5552version = "1.14.0" 5553source = "registry+https://github.com/rust-lang/crates.io-index" 5554checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd" 5555dependencies = [ 5556 "web-time", 5557 "zeroize", 5558] 5559 5560[[package]] 5561name = "rustls-platform-verifier" 5562version = "0.6.2" 5563source = "registry+https://github.com/rust-lang/crates.io-index" 5564checksum = "1d99feebc72bae7ab76ba994bb5e121b8d83d910ca40b36e0921f53becc41784" 5565dependencies = [ 5566 "core-foundation 0.10.1", 5567 "core-foundation-sys", 5568 "jni", 5569 "log", 5570 "once_cell", 5571 "rustls 0.23.36", 5572 "rustls-native-certs", 5573 "rustls-platform-verifier-android", 5574 "rustls-webpki 0.103.9", 5575 "security-framework", 5576 "security-framework-sys", 5577 "webpki-root-certs", 5578 "windows-sys 0.61.2", 5579] 5580 5581[[package]] 5582name = "rustls-platform-verifier-android" 5583version = "0.1.1" 5584source = "registry+https://github.com/rust-lang/crates.io-index" 5585checksum = "f87165f0995f63a9fbeea62b64d10b4d9d8e78ec6d7d51fb2125fda7bb36788f" 5586 5587[[package]] 5588name = "rustls-webpki" 5589version = "0.101.7" 5590source = "registry+https://github.com/rust-lang/crates.io-index" 5591checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765" 5592dependencies = [ 5593 "ring", 5594 "untrusted", 5595] 5596 5597[[package]] 5598name = "rustls-webpki" 5599version = "0.103.9" 5600source = "registry+https://github.com/rust-lang/crates.io-index" 5601checksum = "d7df23109aa6c1567d1c575b9952556388da57401e4ace1d15f79eedad0d8f53" 5602dependencies = [ 5603 "aws-lc-rs", 5604 "ring", 5605 "rustls-pki-types", 5606 "untrusted", 5607] 5608 5609[[package]] 5610name = "rustversion" 5611version = "1.0.22" 5612source = "registry+https://github.com/rust-lang/crates.io-index" 5613checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d" 5614 5615[[package]] 5616name = "ryu" 5617version = "1.0.23" 5618source = "registry+https://github.com/rust-lang/crates.io-index" 5619checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f" 5620 5621[[package]] 5622name = "same-file" 5623version = "1.0.6" 5624source = "registry+https://github.com/rust-lang/crates.io-index" 5625checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 5626dependencies = [ 5627 "winapi-util", 5628] 5629 5630[[package]] 5631name = "schannel" 5632version = "0.1.28" 5633source = "registry+https://github.com/rust-lang/crates.io-index" 5634checksum = "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1" 5635dependencies = [ 5636 "windows-sys 0.61.2", 5637] 5638 5639[[package]] 5640name = "schemars" 5641version = "0.8.22" 5642source = "registry+https://github.com/rust-lang/crates.io-index" 5643checksum = "3fbf2ae1b8bc8e02df939598064d22402220cd5bbcca1c76f7d6a310974d5615" 5644dependencies = [ 5645 "dyn-clone", 5646 "indexmap 1.9.3", 5647 "schemars_derive", 5648 "serde", 5649 "serde_json", 5650 "url", 5651 "uuid", 5652] 5653 5654[[package]] 5655name = "schemars" 5656version = "0.9.0" 5657source = "registry+https://github.com/rust-lang/crates.io-index" 5658checksum = "4cd191f9397d57d581cddd31014772520aa448f65ef991055d7f61582c65165f" 5659dependencies = [ 5660 "dyn-clone", 5661 "ref-cast", 5662 "serde", 5663 "serde_json", 5664] 5665 5666[[package]] 5667name = "schemars" 5668version = "1.2.1" 5669source = "registry+https://github.com/rust-lang/crates.io-index" 5670checksum = "a2b42f36aa1cd011945615b92222f6bf73c599a102a300334cd7f8dbeec726cc" 5671dependencies = [ 5672 "dyn-clone", 5673 "ref-cast", 5674 "serde", 5675 "serde_json", 5676] 5677 5678[[package]] 5679name = "schemars_derive" 5680version = "0.8.22" 5681source = "registry+https://github.com/rust-lang/crates.io-index" 5682checksum = "32e265784ad618884abaea0600a9adf15393368d840e0222d101a072f3f7534d" 5683dependencies = [ 5684 "proc-macro2", 5685 "quote", 5686 "serde_derive_internals", 5687 "syn 2.0.116", 5688] 5689 5690[[package]] 5691name = "scopeguard" 5692version = "1.2.0" 5693source = "registry+https://github.com/rust-lang/crates.io-index" 5694checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 5695 5696[[package]] 5697name = "sct" 5698version = "0.7.1" 5699source = "registry+https://github.com/rust-lang/crates.io-index" 5700checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414" 5701dependencies = [ 5702 "ring", 5703 "untrusted", 5704] 5705 5706[[package]] 5707name = "sdp" 5708version = "0.17.1" 5709source = "registry+https://github.com/rust-lang/crates.io-index" 5710checksum = "22c3b0257608d7de4de4c4ea650ccc2e6e3e45e3cd80039fcdee768bcb449253" 5711dependencies = [ 5712 "rand 0.9.2", 5713 "substring", 5714 "thiserror 1.0.69", 5715 "url", 5716] 5717 5718[[package]] 5719name = "seahash" 5720version = "4.1.0" 5721source = "registry+https://github.com/rust-lang/crates.io-index" 5722checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b" 5723 5724[[package]] 5725name = "sec1" 5726version = "0.7.3" 5727source = "registry+https://github.com/rust-lang/crates.io-index" 5728checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc" 5729dependencies = [ 5730 "base16ct", 5731 "der", 5732 "generic-array", 5733 "pkcs8", 5734 "subtle", 5735 "zeroize", 5736] 5737 5738[[package]] 5739name = "security-framework" 5740version = "3.6.0" 5741source = "registry+https://github.com/rust-lang/crates.io-index" 5742checksum = "d17b898a6d6948c3a8ee4372c17cb384f90d2e6e912ef00895b14fd7ab54ec38" 5743dependencies = [ 5744 "bitflags 2.11.0", 5745 "core-foundation 0.10.1", 5746 "core-foundation-sys", 5747 "libc", 5748 "security-framework-sys", 5749] 5750 5751[[package]] 5752name = "security-framework-sys" 5753version = "2.16.0" 5754source = "registry+https://github.com/rust-lang/crates.io-index" 5755checksum = "321c8673b092a9a42605034a9879d73cb79101ed5fd117bc9a597b89b4e9e61a" 5756dependencies = [ 5757 "core-foundation-sys", 5758 "libc", 5759] 5760 5761[[package]] 5762name = "selectors" 5763version = "0.24.0" 5764source = "registry+https://github.com/rust-lang/crates.io-index" 5765checksum = "0c37578180969d00692904465fb7f6b3d50b9a2b952b87c23d0e2e5cb5013416" 5766dependencies = [ 5767 "bitflags 1.3.2", 5768 "cssparser", 5769 "derive_more 0.99.20", 5770 "fxhash", 5771 "log", 5772 "phf 0.8.0", 5773 "phf_codegen 0.8.0", 5774 "precomputed-hash", 5775 "servo_arc", 5776 "smallvec", 5777] 5778 5779[[package]] 5780name = "semver" 5781version = "1.0.27" 5782source = "registry+https://github.com/rust-lang/crates.io-index" 5783checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2" 5784dependencies = [ 5785 "serde", 5786 "serde_core", 5787] 5788 5789[[package]] 5790name = "send_wrapper" 5791version = "0.4.0" 5792source = "registry+https://github.com/rust-lang/crates.io-index" 5793checksum = "f638d531eccd6e23b980caf34876660d38e265409d8e99b397ab71eb3612fad0" 5794 5795[[package]] 5796name = "send_wrapper" 5797version = "0.6.0" 5798source = "registry+https://github.com/rust-lang/crates.io-index" 5799checksum = "cd0b0ec5f1c1ca621c432a25813d8d60c88abe6d3e08a3eb9cf37d97a0fe3d73" 5800 5801[[package]] 5802name = "serde" 5803version = "1.0.228" 5804source = "registry+https://github.com/rust-lang/crates.io-index" 5805checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e" 5806dependencies = [ 5807 "serde_core", 5808 "serde_derive", 5809] 5810 5811[[package]] 5812name = "serde-untagged" 5813version = "0.1.9" 5814source = "registry+https://github.com/rust-lang/crates.io-index" 5815checksum = "f9faf48a4a2d2693be24c6289dbe26552776eb7737074e6722891fadbe6c5058" 5816dependencies = [ 5817 "erased-serde", 5818 "serde", 5819 "serde_core", 5820 "typeid", 5821] 5822 5823[[package]] 5824name = "serde-wasm-bindgen" 5825version = "0.6.5" 5826source = "registry+https://github.com/rust-lang/crates.io-index" 5827checksum = "8302e169f0eddcc139c70f139d19d6467353af16f9fce27e8c30158036a1e16b" 5828dependencies = [ 5829 "js-sys", 5830 "serde", 5831 "wasm-bindgen", 5832] 5833 5834[[package]] 5835name = "serde_core" 5836version = "1.0.228" 5837source = "registry+https://github.com/rust-lang/crates.io-index" 5838checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad" 5839dependencies = [ 5840 "serde_derive", 5841] 5842 5843[[package]] 5844name = "serde_derive" 5845version = "1.0.228" 5846source = "registry+https://github.com/rust-lang/crates.io-index" 5847checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79" 5848dependencies = [ 5849 "proc-macro2", 5850 "quote", 5851 "syn 2.0.116", 5852] 5853 5854[[package]] 5855name = "serde_derive_internals" 5856version = "0.29.1" 5857source = "registry+https://github.com/rust-lang/crates.io-index" 5858checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711" 5859dependencies = [ 5860 "proc-macro2", 5861 "quote", 5862 "syn 2.0.116", 5863] 5864 5865[[package]] 5866name = "serde_json" 5867version = "1.0.149" 5868source = "registry+https://github.com/rust-lang/crates.io-index" 5869checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86" 5870dependencies = [ 5871 "itoa", 5872 "memchr", 5873 "serde", 5874 "serde_core", 5875 "zmij", 5876] 5877 5878[[package]] 5879name = "serde_path_to_error" 5880version = "0.1.20" 5881source = "registry+https://github.com/rust-lang/crates.io-index" 5882checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457" 5883dependencies = [ 5884 "itoa", 5885 "serde", 5886 "serde_core", 5887] 5888 5889[[package]] 5890name = "serde_repr" 5891version = "0.1.20" 5892source = "registry+https://github.com/rust-lang/crates.io-index" 5893checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c" 5894dependencies = [ 5895 "proc-macro2", 5896 "quote", 5897 "syn 2.0.116", 5898] 5899 5900[[package]] 5901name = "serde_spanned" 5902version = "0.6.9" 5903source = "registry+https://github.com/rust-lang/crates.io-index" 5904checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3" 5905dependencies = [ 5906 "serde", 5907] 5908 5909[[package]] 5910name = "serde_spanned" 5911version = "1.0.4" 5912source = "registry+https://github.com/rust-lang/crates.io-index" 5913checksum = "f8bbf91e5a4d6315eee45e704372590b30e260ee83af6639d64557f51b067776" 5914dependencies = [ 5915 "serde_core", 5916] 5917 5918[[package]] 5919name = "serde_urlencoded" 5920version = "0.7.1" 5921source = "registry+https://github.com/rust-lang/crates.io-index" 5922checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 5923dependencies = [ 5924 "form_urlencoded", 5925 "itoa", 5926 "ryu", 5927 "serde", 5928] 5929 5930[[package]] 5931name = "serde_with" 5932version = "3.16.1" 5933source = "registry+https://github.com/rust-lang/crates.io-index" 5934checksum = "4fa237f2807440d238e0364a218270b98f767a00d3dada77b1c53ae88940e2e7" 5935dependencies = [ 5936 "base64 0.22.1", 5937 "chrono", 5938 "hex", 5939 "indexmap 1.9.3", 5940 "indexmap 2.13.0", 5941 "schemars 0.9.0", 5942 "schemars 1.2.1", 5943 "serde_core", 5944 "serde_json", 5945 "serde_with_macros", 5946 "time", 5947] 5948 5949[[package]] 5950name = "serde_with_macros" 5951version = "3.16.1" 5952source = "registry+https://github.com/rust-lang/crates.io-index" 5953checksum = "52a8e3ca0ca629121f70ab50f95249e5a6f925cc0f6ffe8256c45b728875706c" 5954dependencies = [ 5955 "darling", 5956 "proc-macro2", 5957 "quote", 5958 "syn 2.0.116", 5959] 5960 5961[[package]] 5962name = "serialize-to-javascript" 5963version = "0.1.2" 5964source = "registry+https://github.com/rust-lang/crates.io-index" 5965checksum = "04f3666a07a197cdb77cdf306c32be9b7f598d7060d50cfd4d5aa04bfd92f6c5" 5966dependencies = [ 5967 "serde", 5968 "serde_json", 5969 "serialize-to-javascript-impl", 5970] 5971 5972[[package]] 5973name = "serialize-to-javascript-impl" 5974version = "0.1.2" 5975source = "registry+https://github.com/rust-lang/crates.io-index" 5976checksum = "772ee033c0916d670af7860b6e1ef7d658a4629a6d0b4c8c3e67f09b3765b75d" 5977dependencies = [ 5978 "proc-macro2", 5979 "quote", 5980 "syn 2.0.116", 5981] 5982 5983[[package]] 5984name = "servo_arc" 5985version = "0.2.0" 5986source = "registry+https://github.com/rust-lang/crates.io-index" 5987checksum = "d52aa42f8fdf0fed91e5ce7f23d8138441002fa31dca008acf47e6fd4721f741" 5988dependencies = [ 5989 "nodrop", 5990 "stable_deref_trait", 5991] 5992 5993[[package]] 5994name = "sha1" 5995version = "0.10.6" 5996source = "registry+https://github.com/rust-lang/crates.io-index" 5997checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba" 5998dependencies = [ 5999 "cfg-if", 6000 "cpufeatures 0.2.17", 6001 "digest", 6002] 6003 6004[[package]] 6005name = "sha2" 6006version = "0.10.9" 6007source = "registry+https://github.com/rust-lang/crates.io-index" 6008checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283" 6009dependencies = [ 6010 "cfg-if", 6011 "cpufeatures 0.2.17", 6012 "digest", 6013] 6014 6015[[package]] 6016name = "shlex" 6017version = "1.3.0" 6018source = "registry+https://github.com/rust-lang/crates.io-index" 6019checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" 6020 6021[[package]] 6022name = "signal-hook-registry" 6023version = "1.4.8" 6024source = "registry+https://github.com/rust-lang/crates.io-index" 6025checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b" 6026dependencies = [ 6027 "errno", 6028 "libc", 6029] 6030 6031[[package]] 6032name = "signature" 6033version = "2.2.0" 6034source = "registry+https://github.com/rust-lang/crates.io-index" 6035checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de" 6036dependencies = [ 6037 "digest", 6038 "rand_core 0.6.4", 6039] 6040 6041[[package]] 6042name = "simd-adler32" 6043version = "0.3.8" 6044source = "registry+https://github.com/rust-lang/crates.io-index" 6045checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2" 6046 6047[[package]] 6048name = "simd_helpers" 6049version = "0.1.0" 6050source = "registry+https://github.com/rust-lang/crates.io-index" 6051checksum = "95890f873bec569a0362c235787f3aca6e1e887302ba4840839bcc6459c42da6" 6052dependencies = [ 6053 "quote", 6054] 6055 6056[[package]] 6057name = "simdutf8" 6058version = "0.1.5" 6059source = "registry+https://github.com/rust-lang/crates.io-index" 6060checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e" 6061 6062[[package]] 6063name = "siphasher" 6064version = "0.3.11" 6065source = "registry+https://github.com/rust-lang/crates.io-index" 6066checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d" 6067 6068[[package]] 6069name = "siphasher" 6070version = "1.0.2" 6071source = "registry+https://github.com/rust-lang/crates.io-index" 6072checksum = "b2aa850e253778c88a04c3d7323b043aeda9d3e30d5971937c1855769763678e" 6073 6074[[package]] 6075name = "slab" 6076version = "0.4.12" 6077source = "registry+https://github.com/rust-lang/crates.io-index" 6078checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5" 6079 6080[[package]] 6081name = "smallvec" 6082version = "1.15.1" 6083source = "registry+https://github.com/rust-lang/crates.io-index" 6084checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" 6085 6086[[package]] 6087name = "smol_str" 6088version = "0.2.2" 6089source = "registry+https://github.com/rust-lang/crates.io-index" 6090checksum = "dd538fb6910ac1099850255cf94a94df6551fbdd602454387d0adb2d1ca6dead" 6091dependencies = [ 6092 "serde", 6093] 6094 6095[[package]] 6096name = "socket2" 6097version = "0.5.10" 6098source = "registry+https://github.com/rust-lang/crates.io-index" 6099checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678" 6100dependencies = [ 6101 "libc", 6102 "windows-sys 0.52.0", 6103] 6104 6105[[package]] 6106name = "socket2" 6107version = "0.6.2" 6108source = "registry+https://github.com/rust-lang/crates.io-index" 6109checksum = "86f4aa3ad99f2088c990dfa82d367e19cb29268ed67c574d10d0a4bfe71f07e0" 6110dependencies = [ 6111 "libc", 6112 "windows-sys 0.60.2", 6113] 6114 6115[[package]] 6116name = "softbuffer" 6117version = "0.4.8" 6118source = "registry+https://github.com/rust-lang/crates.io-index" 6119checksum = "aac18da81ebbf05109ab275b157c22a653bb3c12cf884450179942f81bcbf6c3" 6120dependencies = [ 6121 "bytemuck", 6122 "js-sys", 6123 "ndk", 6124 "objc2", 6125 "objc2-core-foundation", 6126 "objc2-core-graphics", 6127 "objc2-foundation", 6128 "objc2-quartz-core", 6129 "raw-window-handle", 6130 "redox_syscall", 6131 "tracing", 6132 "wasm-bindgen", 6133 "web-sys", 6134 "windows-sys 0.61.2", 6135] 6136 6137[[package]] 6138name = "soup3" 6139version = "0.5.0" 6140source = "registry+https://github.com/rust-lang/crates.io-index" 6141checksum = "471f924a40f31251afc77450e781cb26d55c0b650842efafc9c6cbd2f7cc4f9f" 6142dependencies = [ 6143 "futures-channel", 6144 "gio", 6145 "glib", 6146 "libc", 6147 "soup3-sys", 6148] 6149 6150[[package]] 6151name = "soup3-sys" 6152version = "0.5.0" 6153source = "registry+https://github.com/rust-lang/crates.io-index" 6154checksum = "7ebe8950a680a12f24f15ebe1bf70db7af98ad242d9db43596ad3108aab86c27" 6155dependencies = [ 6156 "gio-sys", 6157 "glib-sys", 6158 "gobject-sys", 6159 "libc", 6160 "system-deps", 6161] 6162 6163[[package]] 6164name = "specta" 6165version = "2.0.0-rc.22" 6166source = "registry+https://github.com/rust-lang/crates.io-index" 6167checksum = "ab7f01e9310a820edd31c80fde3cae445295adde21a3f9416517d7d65015b971" 6168dependencies = [ 6169 "chrono", 6170 "ctor", 6171 "paste", 6172 "specta-macros", 6173 "thiserror 1.0.69", 6174 "uuid", 6175] 6176 6177[[package]] 6178name = "specta-macros" 6179version = "2.0.0-rc.18" 6180source = "registry+https://github.com/rust-lang/crates.io-index" 6181checksum = "c0074b9e30ed84c6924eb63ad8d2fe71cdc82628525d84b1fcb1f2fd40676517" 6182dependencies = [ 6183 "Inflector", 6184 "proc-macro2", 6185 "quote", 6186 "syn 2.0.116", 6187] 6188 6189[[package]] 6190name = "specta-serde" 6191version = "0.0.9" 6192source = "registry+https://github.com/rust-lang/crates.io-index" 6193checksum = "77216504061374659e7245eac53d30c7b3e5fe64b88da97c753e7184b0781e63" 6194dependencies = [ 6195 "specta", 6196 "thiserror 1.0.69", 6197] 6198 6199[[package]] 6200name = "specta-typescript" 6201version = "0.0.9" 6202source = "registry+https://github.com/rust-lang/crates.io-index" 6203checksum = "3220a0c365e51e248ac98eab5a6a32f544ff6f961906f09d3ee10903a4f52b2d" 6204dependencies = [ 6205 "specta", 6206 "specta-serde", 6207 "thiserror 1.0.69", 6208] 6209 6210[[package]] 6211name = "spki" 6212version = "0.7.3" 6213source = "registry+https://github.com/rust-lang/crates.io-index" 6214checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d" 6215dependencies = [ 6216 "base64ct", 6217 "der", 6218] 6219 6220[[package]] 6221name = "stable_deref_trait" 6222version = "1.2.1" 6223source = "registry+https://github.com/rust-lang/crates.io-index" 6224checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596" 6225 6226[[package]] 6227name = "string_cache" 6228version = "0.8.9" 6229source = "registry+https://github.com/rust-lang/crates.io-index" 6230checksum = "bf776ba3fa74f83bf4b63c3dcbbf82173db2632ed8452cb2d891d33f459de70f" 6231dependencies = [ 6232 "new_debug_unreachable", 6233 "parking_lot", 6234 "phf_shared 0.11.3", 6235 "precomputed-hash", 6236 "serde", 6237] 6238 6239[[package]] 6240name = "string_cache_codegen" 6241version = "0.5.4" 6242source = "registry+https://github.com/rust-lang/crates.io-index" 6243checksum = "c711928715f1fe0fe509c53b43e993a9a557babc2d0a3567d0a3006f1ac931a0" 6244dependencies = [ 6245 "phf_generator 0.11.3", 6246 "phf_shared 0.11.3", 6247 "proc-macro2", 6248 "quote", 6249] 6250 6251[[package]] 6252name = "strsim" 6253version = "0.11.1" 6254source = "registry+https://github.com/rust-lang/crates.io-index" 6255checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" 6256 6257[[package]] 6258name = "stun" 6259version = "0.17.1" 6260source = "registry+https://github.com/rust-lang/crates.io-index" 6261checksum = "2e0fd33c04d4617df42c9c84c698511c59f59869629fb7a193067eec41bce347" 6262dependencies = [ 6263 "base64 0.22.1", 6264 "crc", 6265 "lazy_static", 6266 "md-5", 6267 "rand 0.9.2", 6268 "ring", 6269 "subtle", 6270 "thiserror 1.0.69", 6271 "tokio", 6272 "url", 6273 "webrtc-util", 6274] 6275 6276[[package]] 6277name = "substring" 6278version = "1.4.5" 6279source = "registry+https://github.com/rust-lang/crates.io-index" 6280checksum = "42ee6433ecef213b2e72f587ef64a2f5943e7cd16fbd82dbe8bc07486c534c86" 6281dependencies = [ 6282 "autocfg", 6283] 6284 6285[[package]] 6286name = "subtle" 6287version = "2.6.1" 6288source = "registry+https://github.com/rust-lang/crates.io-index" 6289checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" 6290 6291[[package]] 6292name = "swift-rs" 6293version = "1.0.7" 6294source = "registry+https://github.com/rust-lang/crates.io-index" 6295checksum = "4057c98e2e852d51fdcfca832aac7b571f6b351ad159f9eda5db1655f8d0c4d7" 6296dependencies = [ 6297 "base64 0.21.7", 6298 "serde", 6299 "serde_json", 6300] 6301 6302[[package]] 6303name = "syn" 6304version = "1.0.109" 6305source = "registry+https://github.com/rust-lang/crates.io-index" 6306checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 6307dependencies = [ 6308 "proc-macro2", 6309 "quote", 6310 "unicode-ident", 6311] 6312 6313[[package]] 6314name = "syn" 6315version = "2.0.116" 6316source = "registry+https://github.com/rust-lang/crates.io-index" 6317checksum = "3df424c70518695237746f84cede799c9c58fcb37450d7b23716568cc8bc69cb" 6318dependencies = [ 6319 "proc-macro2", 6320 "quote", 6321 "unicode-ident", 6322] 6323 6324[[package]] 6325name = "sync_wrapper" 6326version = "1.0.2" 6327source = "registry+https://github.com/rust-lang/crates.io-index" 6328checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" 6329dependencies = [ 6330 "futures-core", 6331] 6332 6333[[package]] 6334name = "synstructure" 6335version = "0.13.2" 6336source = "registry+https://github.com/rust-lang/crates.io-index" 6337checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2" 6338dependencies = [ 6339 "proc-macro2", 6340 "quote", 6341 "syn 2.0.116", 6342] 6343 6344[[package]] 6345name = "system-configuration" 6346version = "0.7.0" 6347source = "registry+https://github.com/rust-lang/crates.io-index" 6348checksum = "a13f3d0daba03132c0aa9767f98351b3488edc2c100cda2d2ec2b04f3d8d3c8b" 6349dependencies = [ 6350 "bitflags 2.11.0", 6351 "core-foundation 0.9.4", 6352 "system-configuration-sys", 6353] 6354 6355[[package]] 6356name = "system-configuration-sys" 6357version = "0.6.0" 6358source = "registry+https://github.com/rust-lang/crates.io-index" 6359checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4" 6360dependencies = [ 6361 "core-foundation-sys", 6362 "libc", 6363] 6364 6365[[package]] 6366name = "system-deps" 6367version = "6.2.2" 6368source = "registry+https://github.com/rust-lang/crates.io-index" 6369checksum = "a3e535eb8dded36d55ec13eddacd30dec501792ff23a0b1682c38601b8cf2349" 6370dependencies = [ 6371 "cfg-expr", 6372 "heck 0.5.0", 6373 "pkg-config", 6374 "toml 0.8.2", 6375 "version-compare", 6376] 6377 6378[[package]] 6379name = "tao" 6380version = "0.34.5" 6381source = "registry+https://github.com/rust-lang/crates.io-index" 6382checksum = "f3a753bdc39c07b192151523a3f77cd0394aa75413802c883a0f6f6a0e5ee2e7" 6383dependencies = [ 6384 "bitflags 2.11.0", 6385 "block2", 6386 "core-foundation 0.10.1", 6387 "core-graphics", 6388 "crossbeam-channel", 6389 "dispatch", 6390 "dlopen2", 6391 "dpi", 6392 "gdkwayland-sys", 6393 "gdkx11-sys", 6394 "gtk", 6395 "jni", 6396 "lazy_static", 6397 "libc", 6398 "log", 6399 "ndk", 6400 "ndk-context", 6401 "ndk-sys", 6402 "objc2", 6403 "objc2-app-kit", 6404 "objc2-foundation", 6405 "once_cell", 6406 "parking_lot", 6407 "raw-window-handle", 6408 "scopeguard", 6409 "tao-macros", 6410 "unicode-segmentation", 6411 "url", 6412 "windows", 6413 "windows-core 0.61.2", 6414 "windows-version", 6415 "x11-dl", 6416] 6417 6418[[package]] 6419name = "tao-macros" 6420version = "0.1.3" 6421source = "registry+https://github.com/rust-lang/crates.io-index" 6422checksum = "f4e16beb8b2ac17db28eab8bca40e62dbfbb34c0fcdc6d9826b11b7b5d047dfd" 6423dependencies = [ 6424 "proc-macro2", 6425 "quote", 6426 "syn 2.0.116", 6427] 6428 6429[[package]] 6430name = "tap" 6431version = "1.0.1" 6432source = "registry+https://github.com/rust-lang/crates.io-index" 6433checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" 6434 6435[[package]] 6436name = "target-lexicon" 6437version = "0.12.16" 6438source = "registry+https://github.com/rust-lang/crates.io-index" 6439checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1" 6440 6441[[package]] 6442name = "tauri" 6443version = "2.10.2" 6444source = "registry+https://github.com/rust-lang/crates.io-index" 6445checksum = "463ae8677aa6d0f063a900b9c41ecd4ac2b7ca82f0b058cc4491540e55b20129" 6446dependencies = [ 6447 "anyhow", 6448 "bytes", 6449 "cookie", 6450 "dirs", 6451 "dunce", 6452 "embed_plist", 6453 "getrandom 0.3.4", 6454 "glob", 6455 "gtk", 6456 "heck 0.5.0", 6457 "http", 6458 "jni", 6459 "libc", 6460 "log", 6461 "mime", 6462 "muda", 6463 "objc2", 6464 "objc2-app-kit", 6465 "objc2-foundation", 6466 "objc2-ui-kit", 6467 "objc2-web-kit", 6468 "percent-encoding", 6469 "plist", 6470 "raw-window-handle", 6471 "reqwest", 6472 "serde", 6473 "serde_json", 6474 "serde_repr", 6475 "serialize-to-javascript", 6476 "specta", 6477 "swift-rs", 6478 "tauri-build", 6479 "tauri-macros", 6480 "tauri-runtime", 6481 "tauri-runtime-wry", 6482 "tauri-utils", 6483 "thiserror 2.0.18", 6484 "tokio", 6485 "tray-icon", 6486 "url", 6487 "webkit2gtk", 6488 "webview2-com", 6489 "window-vibrancy", 6490 "windows", 6491] 6492 6493[[package]] 6494name = "tauri-build" 6495version = "2.5.5" 6496source = "registry+https://github.com/rust-lang/crates.io-index" 6497checksum = "ca7bd893329425df750813e95bd2b643d5369d929438da96d5bbb7cc2c918f74" 6498dependencies = [ 6499 "anyhow", 6500 "cargo_toml", 6501 "dirs", 6502 "glob", 6503 "heck 0.5.0", 6504 "json-patch", 6505 "schemars 0.8.22", 6506 "semver", 6507 "serde", 6508 "serde_json", 6509 "tauri-utils", 6510 "tauri-winres", 6511 "toml 0.9.12+spec-1.1.0", 6512 "walkdir", 6513] 6514 6515[[package]] 6516name = "tauri-codegen" 6517version = "2.5.4" 6518source = "registry+https://github.com/rust-lang/crates.io-index" 6519checksum = "aac423e5859d9f9ccdd32e3cf6a5866a15bedbf25aa6630bcb2acde9468f6ae3" 6520dependencies = [ 6521 "base64 0.22.1", 6522 "brotli", 6523 "ico", 6524 "json-patch", 6525 "plist", 6526 "png 0.17.16", 6527 "proc-macro2", 6528 "quote", 6529 "semver", 6530 "serde", 6531 "serde_json", 6532 "sha2", 6533 "syn 2.0.116", 6534 "tauri-utils", 6535 "thiserror 2.0.18", 6536 "time", 6537 "url", 6538 "uuid", 6539 "walkdir", 6540] 6541 6542[[package]] 6543name = "tauri-macros" 6544version = "2.5.4" 6545source = "registry+https://github.com/rust-lang/crates.io-index" 6546checksum = "1b6a1bd2861ff0c8766b1d38b32a6a410f6dc6532d4ef534c47cfb2236092f59" 6547dependencies = [ 6548 "heck 0.5.0", 6549 "proc-macro2", 6550 "quote", 6551 "syn 2.0.116", 6552 "tauri-codegen", 6553 "tauri-utils", 6554] 6555 6556[[package]] 6557name = "tauri-plugin" 6558version = "2.5.3" 6559source = "registry+https://github.com/rust-lang/crates.io-index" 6560checksum = "692a77abd8b8773e107a42ec0e05b767b8d2b7ece76ab36c6c3947e34df9f53f" 6561dependencies = [ 6562 "anyhow", 6563 "glob", 6564 "plist", 6565 "schemars 0.8.22", 6566 "serde", 6567 "serde_json", 6568 "tauri-utils", 6569 "toml 0.9.12+spec-1.1.0", 6570 "walkdir", 6571] 6572 6573[[package]] 6574name = "tauri-plugin-dialog" 6575version = "2.6.0" 6576source = "registry+https://github.com/rust-lang/crates.io-index" 6577checksum = "9204b425d9be8d12aa60c2a83a289cf7d1caae40f57f336ed1155b3a5c0e359b" 6578dependencies = [ 6579 "log", 6580 "raw-window-handle", 6581 "rfd", 6582 "serde", 6583 "serde_json", 6584 "tauri", 6585 "tauri-plugin", 6586 "tauri-plugin-fs", 6587 "thiserror 2.0.18", 6588 "url", 6589] 6590 6591[[package]] 6592name = "tauri-plugin-fs" 6593version = "2.4.5" 6594source = "registry+https://github.com/rust-lang/crates.io-index" 6595checksum = "ed390cc669f937afeb8b28032ce837bac8ea023d975a2e207375ec05afaf1804" 6596dependencies = [ 6597 "anyhow", 6598 "dunce", 6599 "glob", 6600 "percent-encoding", 6601 "schemars 0.8.22", 6602 "serde", 6603 "serde_json", 6604 "serde_repr", 6605 "tauri", 6606 "tauri-plugin", 6607 "tauri-utils", 6608 "thiserror 2.0.18", 6609 "toml 0.9.12+spec-1.1.0", 6610 "url", 6611] 6612 6613[[package]] 6614name = "tauri-plugin-geolocation" 6615version = "2.3.2" 6616source = "registry+https://github.com/rust-lang/crates.io-index" 6617checksum = "0366e51823ad001ff1a47f116cd34ddfea3d94ebeb2309caf42e290dec27e0a6" 6618dependencies = [ 6619 "log", 6620 "serde", 6621 "serde_json", 6622 "tauri", 6623 "tauri-plugin", 6624 "thiserror 2.0.18", 6625] 6626 6627[[package]] 6628name = "tauri-plugin-log" 6629version = "2.8.0" 6630source = "registry+https://github.com/rust-lang/crates.io-index" 6631checksum = "7545bd67f070a4500432c826e2e0682146a1d6712aee22a2786490156b574d93" 6632dependencies = [ 6633 "android_logger", 6634 "byte-unit", 6635 "fern", 6636 "log", 6637 "objc2", 6638 "objc2-foundation", 6639 "serde", 6640 "serde_json", 6641 "serde_repr", 6642 "swift-rs", 6643 "tauri", 6644 "tauri-plugin", 6645 "thiserror 2.0.18", 6646 "time", 6647] 6648 6649[[package]] 6650name = "tauri-plugin-notification" 6651version = "2.3.3" 6652source = "registry+https://github.com/rust-lang/crates.io-index" 6653checksum = "01fc2c5ff41105bd1f7242d8201fdf3efd70749b82fa013a17f2126357d194cc" 6654dependencies = [ 6655 "log", 6656 "notify-rust", 6657 "rand 0.9.2", 6658 "serde", 6659 "serde_json", 6660 "serde_repr", 6661 "tauri", 6662 "tauri-plugin", 6663 "thiserror 2.0.18", 6664 "time", 6665 "url", 6666] 6667 6668[[package]] 6669name = "tauri-plugin-opener" 6670version = "2.5.3" 6671source = "registry+https://github.com/rust-lang/crates.io-index" 6672checksum = "fc624469b06f59f5a29f874bbc61a2ed737c0f9c23ef09855a292c389c42e83f" 6673dependencies = [ 6674 "dunce", 6675 "glob", 6676 "objc2-app-kit", 6677 "objc2-foundation", 6678 "open", 6679 "schemars 0.8.22", 6680 "serde", 6681 "serde_json", 6682 "tauri", 6683 "tauri-plugin", 6684 "thiserror 2.0.18", 6685 "url", 6686 "windows", 6687 "zbus", 6688] 6689 6690[[package]] 6691name = "tauri-plugin-store" 6692version = "2.4.2" 6693source = "registry+https://github.com/rust-lang/crates.io-index" 6694checksum = "5ca1a8ff83c269b115e98726ffc13f9e548a10161544a92ad121d6d0a96e16ea" 6695dependencies = [ 6696 "dunce", 6697 "serde", 6698 "serde_json", 6699 "tauri", 6700 "tauri-plugin", 6701 "thiserror 2.0.18", 6702 "tokio", 6703 "tracing", 6704] 6705 6706[[package]] 6707name = "tauri-runtime" 6708version = "2.10.0" 6709source = "registry+https://github.com/rust-lang/crates.io-index" 6710checksum = "b885ffeac82b00f1f6fd292b6e5aabfa7435d537cef57d11e38a489956535651" 6711dependencies = [ 6712 "cookie", 6713 "dpi", 6714 "gtk", 6715 "http", 6716 "jni", 6717 "objc2", 6718 "objc2-ui-kit", 6719 "objc2-web-kit", 6720 "raw-window-handle", 6721 "serde", 6722 "serde_json", 6723 "tauri-utils", 6724 "thiserror 2.0.18", 6725 "url", 6726 "webkit2gtk", 6727 "webview2-com", 6728 "windows", 6729] 6730 6731[[package]] 6732name = "tauri-runtime-wry" 6733version = "2.10.0" 6734source = "registry+https://github.com/rust-lang/crates.io-index" 6735checksum = "5204682391625e867d16584fedc83fc292fb998814c9f7918605c789cd876314" 6736dependencies = [ 6737 "gtk", 6738 "http", 6739 "jni", 6740 "log", 6741 "objc2", 6742 "objc2-app-kit", 6743 "objc2-foundation", 6744 "once_cell", 6745 "percent-encoding", 6746 "raw-window-handle", 6747 "softbuffer", 6748 "tao", 6749 "tauri-runtime", 6750 "tauri-utils", 6751 "url", 6752 "webkit2gtk", 6753 "webview2-com", 6754 "windows", 6755 "wry", 6756] 6757 6758[[package]] 6759name = "tauri-specta" 6760version = "2.0.0-rc.21" 6761source = "registry+https://github.com/rust-lang/crates.io-index" 6762checksum = "b23c0132dd3cf6064e5cd919b82b3f47780e9280e7b5910babfe139829b76655" 6763dependencies = [ 6764 "heck 0.5.0", 6765 "serde", 6766 "serde_json", 6767 "specta", 6768 "specta-typescript", 6769 "tauri", 6770 "tauri-specta-macros", 6771 "thiserror 2.0.18", 6772] 6773 6774[[package]] 6775name = "tauri-specta-macros" 6776version = "2.0.0-rc.16" 6777source = "registry+https://github.com/rust-lang/crates.io-index" 6778checksum = "7a4aa93823e07859546aa796b8a5d608190cd8037a3a5dce3eb63d491c34bda8" 6779dependencies = [ 6780 "heck 0.5.0", 6781 "proc-macro2", 6782 "quote", 6783 "syn 2.0.116", 6784] 6785 6786[[package]] 6787name = "tauri-utils" 6788version = "2.8.2" 6789source = "registry+https://github.com/rust-lang/crates.io-index" 6790checksum = "fcd169fccdff05eff2c1033210b9b94acd07a47e6fa9a3431cf09cfd4f01c87e" 6791dependencies = [ 6792 "anyhow", 6793 "brotli", 6794 "cargo_metadata", 6795 "ctor", 6796 "dunce", 6797 "glob", 6798 "html5ever", 6799 "http", 6800 "infer", 6801 "json-patch", 6802 "kuchikiki", 6803 "log", 6804 "memchr", 6805 "phf 0.11.3", 6806 "proc-macro2", 6807 "quote", 6808 "regex", 6809 "schemars 0.8.22", 6810 "semver", 6811 "serde", 6812 "serde-untagged", 6813 "serde_json", 6814 "serde_with", 6815 "swift-rs", 6816 "thiserror 2.0.18", 6817 "toml 0.9.12+spec-1.1.0", 6818 "url", 6819 "urlpattern", 6820 "uuid", 6821 "walkdir", 6822] 6823 6824[[package]] 6825name = "tauri-winres" 6826version = "0.3.5" 6827source = "registry+https://github.com/rust-lang/crates.io-index" 6828checksum = "1087b111fe2b005e42dbdc1990fc18593234238d47453b0c99b7de1c9ab2c1e0" 6829dependencies = [ 6830 "dunce", 6831 "embed-resource", 6832 "toml 0.9.12+spec-1.1.0", 6833] 6834 6835[[package]] 6836name = "tauri-winrt-notification" 6837version = "0.7.2" 6838source = "registry+https://github.com/rust-lang/crates.io-index" 6839checksum = "0b1e66e07de489fe43a46678dd0b8df65e0c973909df1b60ba33874e297ba9b9" 6840dependencies = [ 6841 "quick-xml 0.37.5", 6842 "thiserror 2.0.18", 6843 "windows", 6844 "windows-version", 6845] 6846 6847[[package]] 6848name = "tempfile" 6849version = "3.25.0" 6850source = "registry+https://github.com/rust-lang/crates.io-index" 6851checksum = "0136791f7c95b1f6dd99f9cc786b91bb81c3800b639b3478e561ddb7be95e5f1" 6852dependencies = [ 6853 "fastrand", 6854 "getrandom 0.4.1", 6855 "once_cell", 6856 "rustix", 6857 "windows-sys 0.61.2", 6858] 6859 6860[[package]] 6861name = "tendril" 6862version = "0.4.3" 6863source = "registry+https://github.com/rust-lang/crates.io-index" 6864checksum = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0" 6865dependencies = [ 6866 "futf", 6867 "mac", 6868 "utf-8", 6869] 6870 6871[[package]] 6872name = "thiserror" 6873version = "1.0.69" 6874source = "registry+https://github.com/rust-lang/crates.io-index" 6875checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" 6876dependencies = [ 6877 "thiserror-impl 1.0.69", 6878] 6879 6880[[package]] 6881name = "thiserror" 6882version = "2.0.18" 6883source = "registry+https://github.com/rust-lang/crates.io-index" 6884checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4" 6885dependencies = [ 6886 "thiserror-impl 2.0.18", 6887] 6888 6889[[package]] 6890name = "thiserror-impl" 6891version = "1.0.69" 6892source = "registry+https://github.com/rust-lang/crates.io-index" 6893checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" 6894dependencies = [ 6895 "proc-macro2", 6896 "quote", 6897 "syn 2.0.116", 6898] 6899 6900[[package]] 6901name = "thiserror-impl" 6902version = "2.0.18" 6903source = "registry+https://github.com/rust-lang/crates.io-index" 6904checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5" 6905dependencies = [ 6906 "proc-macro2", 6907 "quote", 6908 "syn 2.0.116", 6909] 6910 6911[[package]] 6912name = "tiff" 6913version = "0.10.3" 6914source = "registry+https://github.com/rust-lang/crates.io-index" 6915checksum = "af9605de7fee8d9551863fd692cce7637f548dbd9db9180fcc07ccc6d26c336f" 6916dependencies = [ 6917 "fax", 6918 "flate2", 6919 "half", 6920 "quick-error", 6921 "weezl", 6922 "zune-jpeg 0.4.21", 6923] 6924 6925[[package]] 6926name = "time" 6927version = "0.3.47" 6928source = "registry+https://github.com/rust-lang/crates.io-index" 6929checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c" 6930dependencies = [ 6931 "deranged", 6932 "itoa", 6933 "libc", 6934 "num-conv", 6935 "num_threads", 6936 "powerfmt", 6937 "serde_core", 6938 "time-core", 6939 "time-macros", 6940] 6941 6942[[package]] 6943name = "time-core" 6944version = "0.1.8" 6945source = "registry+https://github.com/rust-lang/crates.io-index" 6946checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca" 6947 6948[[package]] 6949name = "time-macros" 6950version = "0.2.27" 6951source = "registry+https://github.com/rust-lang/crates.io-index" 6952checksum = "2e70e4c5a0e0a8a4823ad65dfe1a6930e4f4d756dcd9dd7939022b5e8c501215" 6953dependencies = [ 6954 "num-conv", 6955 "time-core", 6956] 6957 6958[[package]] 6959name = "tinystr" 6960version = "0.8.2" 6961source = "registry+https://github.com/rust-lang/crates.io-index" 6962checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869" 6963dependencies = [ 6964 "displaydoc", 6965 "zerovec", 6966] 6967 6968[[package]] 6969name = "tinyvec" 6970version = "1.10.0" 6971source = "registry+https://github.com/rust-lang/crates.io-index" 6972checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa" 6973dependencies = [ 6974 "tinyvec_macros", 6975] 6976 6977[[package]] 6978name = "tinyvec_macros" 6979version = "0.1.1" 6980source = "registry+https://github.com/rust-lang/crates.io-index" 6981checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 6982 6983[[package]] 6984name = "tokio" 6985version = "1.49.0" 6986source = "registry+https://github.com/rust-lang/crates.io-index" 6987checksum = "72a2903cd7736441aac9df9d7688bd0ce48edccaadf181c3b90be801e81d3d86" 6988dependencies = [ 6989 "bytes", 6990 "libc", 6991 "mio", 6992 "parking_lot", 6993 "pin-project-lite", 6994 "signal-hook-registry", 6995 "socket2 0.6.2", 6996 "tokio-macros", 6997 "windows-sys 0.61.2", 6998] 6999 7000[[package]] 7001name = "tokio-macros" 7002version = "2.6.0" 7003source = "registry+https://github.com/rust-lang/crates.io-index" 7004checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5" 7005dependencies = [ 7006 "proc-macro2", 7007 "quote", 7008 "syn 2.0.116", 7009] 7010 7011[[package]] 7012name = "tokio-rustls" 7013version = "0.26.4" 7014source = "registry+https://github.com/rust-lang/crates.io-index" 7015checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61" 7016dependencies = [ 7017 "rustls 0.23.36", 7018 "tokio", 7019] 7020 7021[[package]] 7022name = "tokio-stream" 7023version = "0.1.18" 7024source = "registry+https://github.com/rust-lang/crates.io-index" 7025checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70" 7026dependencies = [ 7027 "futures-core", 7028 "pin-project-lite", 7029 "tokio", 7030] 7031 7032[[package]] 7033name = "tokio-tungstenite" 7034version = "0.28.0" 7035source = "registry+https://github.com/rust-lang/crates.io-index" 7036checksum = "d25a406cddcc431a75d3d9afc6a7c0f7428d4891dd973e4d54c56b46127bf857" 7037dependencies = [ 7038 "futures-util", 7039 "log", 7040 "tokio", 7041 "tungstenite", 7042] 7043 7044[[package]] 7045name = "tokio-util" 7046version = "0.7.18" 7047source = "registry+https://github.com/rust-lang/crates.io-index" 7048checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098" 7049dependencies = [ 7050 "bytes", 7051 "futures-core", 7052 "futures-io", 7053 "futures-sink", 7054 "pin-project-lite", 7055 "tokio", 7056] 7057 7058[[package]] 7059name = "toml" 7060version = "0.8.2" 7061source = "registry+https://github.com/rust-lang/crates.io-index" 7062checksum = "185d8ab0dfbb35cf1399a6344d8484209c088f75f8f68230da55d48d95d43e3d" 7063dependencies = [ 7064 "serde", 7065 "serde_spanned 0.6.9", 7066 "toml_datetime 0.6.3", 7067 "toml_edit 0.20.2", 7068] 7069 7070[[package]] 7071name = "toml" 7072version = "0.9.12+spec-1.1.0" 7073source = "registry+https://github.com/rust-lang/crates.io-index" 7074checksum = "cf92845e79fc2e2def6a5d828f0801e29a2f8acc037becc5ab08595c7d5e9863" 7075dependencies = [ 7076 "indexmap 2.13.0", 7077 "serde_core", 7078 "serde_spanned 1.0.4", 7079 "toml_datetime 0.7.5+spec-1.1.0", 7080 "toml_parser", 7081 "toml_writer", 7082 "winnow 0.7.14", 7083] 7084 7085[[package]] 7086name = "toml_datetime" 7087version = "0.6.3" 7088source = "registry+https://github.com/rust-lang/crates.io-index" 7089checksum = "7cda73e2f1397b1262d6dfdcef8aafae14d1de7748d66822d3bfeeb6d03e5e4b" 7090dependencies = [ 7091 "serde", 7092] 7093 7094[[package]] 7095name = "toml_datetime" 7096version = "0.7.5+spec-1.1.0" 7097source = "registry+https://github.com/rust-lang/crates.io-index" 7098checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347" 7099dependencies = [ 7100 "serde_core", 7101] 7102 7103[[package]] 7104name = "toml_edit" 7105version = "0.19.15" 7106source = "registry+https://github.com/rust-lang/crates.io-index" 7107checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421" 7108dependencies = [ 7109 "indexmap 2.13.0", 7110 "toml_datetime 0.6.3", 7111 "winnow 0.5.40", 7112] 7113 7114[[package]] 7115name = "toml_edit" 7116version = "0.20.2" 7117source = "registry+https://github.com/rust-lang/crates.io-index" 7118checksum = "396e4d48bbb2b7554c944bde63101b5ae446cff6ec4a24227428f15eb72ef338" 7119dependencies = [ 7120 "indexmap 2.13.0", 7121 "serde", 7122 "serde_spanned 0.6.9", 7123 "toml_datetime 0.6.3", 7124 "winnow 0.5.40", 7125] 7126 7127[[package]] 7128name = "toml_edit" 7129version = "0.23.10+spec-1.0.0" 7130source = "registry+https://github.com/rust-lang/crates.io-index" 7131checksum = "84c8b9f757e028cee9fa244aea147aab2a9ec09d5325a9b01e0a49730c2b5269" 7132dependencies = [ 7133 "indexmap 2.13.0", 7134 "toml_datetime 0.7.5+spec-1.1.0", 7135 "toml_parser", 7136 "winnow 0.7.14", 7137] 7138 7139[[package]] 7140name = "toml_parser" 7141version = "1.0.9+spec-1.1.0" 7142source = "registry+https://github.com/rust-lang/crates.io-index" 7143checksum = "702d4415e08923e7e1ef96cd5727c0dfed80b4d2fa25db9647fe5eb6f7c5a4c4" 7144dependencies = [ 7145 "winnow 0.7.14", 7146] 7147 7148[[package]] 7149name = "toml_writer" 7150version = "1.0.6+spec-1.1.0" 7151source = "registry+https://github.com/rust-lang/crates.io-index" 7152checksum = "ab16f14aed21ee8bfd8ec22513f7287cd4a91aa92e44edfe2c17ddd004e92607" 7153 7154[[package]] 7155name = "tower" 7156version = "0.5.3" 7157source = "registry+https://github.com/rust-lang/crates.io-index" 7158checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4" 7159dependencies = [ 7160 "futures-core", 7161 "futures-util", 7162 "pin-project-lite", 7163 "sync_wrapper", 7164 "tokio", 7165 "tower-layer", 7166 "tower-service", 7167 "tracing", 7168] 7169 7170[[package]] 7171name = "tower-http" 7172version = "0.6.8" 7173source = "registry+https://github.com/rust-lang/crates.io-index" 7174checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8" 7175dependencies = [ 7176 "bitflags 2.11.0", 7177 "bytes", 7178 "futures-util", 7179 "http", 7180 "http-body", 7181 "iri-string", 7182 "pin-project-lite", 7183 "tower", 7184 "tower-layer", 7185 "tower-service", 7186 "tracing", 7187] 7188 7189[[package]] 7190name = "tower-layer" 7191version = "0.3.3" 7192source = "registry+https://github.com/rust-lang/crates.io-index" 7193checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e" 7194 7195[[package]] 7196name = "tower-service" 7197version = "0.3.3" 7198source = "registry+https://github.com/rust-lang/crates.io-index" 7199checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" 7200 7201[[package]] 7202name = "tracing" 7203version = "0.1.44" 7204source = "registry+https://github.com/rust-lang/crates.io-index" 7205checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100" 7206dependencies = [ 7207 "log", 7208 "pin-project-lite", 7209 "tracing-attributes", 7210 "tracing-core", 7211] 7212 7213[[package]] 7214name = "tracing-attributes" 7215version = "0.1.31" 7216source = "registry+https://github.com/rust-lang/crates.io-index" 7217checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da" 7218dependencies = [ 7219 "proc-macro2", 7220 "quote", 7221 "syn 2.0.116", 7222] 7223 7224[[package]] 7225name = "tracing-core" 7226version = "0.1.36" 7227source = "registry+https://github.com/rust-lang/crates.io-index" 7228checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a" 7229dependencies = [ 7230 "once_cell", 7231] 7232 7233[[package]] 7234name = "tray-icon" 7235version = "0.21.3" 7236source = "registry+https://github.com/rust-lang/crates.io-index" 7237checksum = "a5e85aa143ceb072062fc4d6356c1b520a51d636e7bc8e77ec94be3608e5e80c" 7238dependencies = [ 7239 "crossbeam-channel", 7240 "dirs", 7241 "libappindicator", 7242 "muda", 7243 "objc2", 7244 "objc2-app-kit", 7245 "objc2-core-foundation", 7246 "objc2-core-graphics", 7247 "objc2-foundation", 7248 "once_cell", 7249 "png 0.17.16", 7250 "serde", 7251 "thiserror 2.0.18", 7252 "windows-sys 0.60.2", 7253] 7254 7255[[package]] 7256name = "try-lock" 7257version = "0.2.5" 7258source = "registry+https://github.com/rust-lang/crates.io-index" 7259checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" 7260 7261[[package]] 7262name = "tungstenite" 7263version = "0.28.0" 7264source = "registry+https://github.com/rust-lang/crates.io-index" 7265checksum = "8628dcc84e5a09eb3d8423d6cb682965dea9133204e8fb3efee74c2a0c259442" 7266dependencies = [ 7267 "bytes", 7268 "data-encoding", 7269 "http", 7270 "httparse", 7271 "log", 7272 "rand 0.9.2", 7273 "sha1", 7274 "thiserror 2.0.18", 7275 "utf-8", 7276] 7277 7278[[package]] 7279name = "turn" 7280version = "0.17.1" 7281source = "registry+https://github.com/rust-lang/crates.io-index" 7282checksum = "b6a8b8ac3543b2a8eb0b28c7ac3d5f2db6221e057f3b3ae47cf7637b1333a5c3" 7283dependencies = [ 7284 "async-trait", 7285 "base64 0.22.1", 7286 "futures", 7287 "log", 7288 "md-5", 7289 "portable-atomic", 7290 "rand 0.9.2", 7291 "ring", 7292 "stun", 7293 "thiserror 1.0.69", 7294 "tokio", 7295 "tokio-util", 7296 "webrtc-util", 7297] 7298 7299[[package]] 7300name = "typeid" 7301version = "1.0.3" 7302source = "registry+https://github.com/rust-lang/crates.io-index" 7303checksum = "bc7d623258602320d5c55d1bc22793b57daff0ec7efc270ea7d55ce1d5f5471c" 7304 7305[[package]] 7306name = "typenum" 7307version = "1.19.0" 7308source = "registry+https://github.com/rust-lang/crates.io-index" 7309checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb" 7310 7311[[package]] 7312name = "uds_windows" 7313version = "1.1.0" 7314source = "registry+https://github.com/rust-lang/crates.io-index" 7315checksum = "89daebc3e6fd160ac4aa9fc8b3bf71e1f74fbf92367ae71fb83a037e8bf164b9" 7316dependencies = [ 7317 "memoffset 0.9.1", 7318 "tempfile", 7319 "winapi", 7320] 7321 7322[[package]] 7323name = "unic-char-property" 7324version = "0.9.0" 7325source = "registry+https://github.com/rust-lang/crates.io-index" 7326checksum = "a8c57a407d9b6fa02b4795eb81c5b6652060a15a7903ea981f3d723e6c0be221" 7327dependencies = [ 7328 "unic-char-range", 7329] 7330 7331[[package]] 7332name = "unic-char-range" 7333version = "0.9.0" 7334source = "registry+https://github.com/rust-lang/crates.io-index" 7335checksum = "0398022d5f700414f6b899e10b8348231abf9173fa93144cbc1a43b9793c1fbc" 7336 7337[[package]] 7338name = "unic-common" 7339version = "0.9.0" 7340source = "registry+https://github.com/rust-lang/crates.io-index" 7341checksum = "80d7ff825a6a654ee85a63e80f92f054f904f21e7d12da4e22f9834a4aaa35bc" 7342 7343[[package]] 7344name = "unic-ucd-ident" 7345version = "0.9.0" 7346source = "registry+https://github.com/rust-lang/crates.io-index" 7347checksum = "e230a37c0381caa9219d67cf063aa3a375ffed5bf541a452db16e744bdab6987" 7348dependencies = [ 7349 "unic-char-property", 7350 "unic-char-range", 7351 "unic-ucd-version", 7352] 7353 7354[[package]] 7355name = "unic-ucd-version" 7356version = "0.9.0" 7357source = "registry+https://github.com/rust-lang/crates.io-index" 7358checksum = "96bd2f2237fe450fcd0a1d2f5f4e91711124f7857ba2e964247776ebeeb7b0c4" 7359dependencies = [ 7360 "unic-common", 7361] 7362 7363[[package]] 7364name = "unicase" 7365version = "2.9.0" 7366source = "registry+https://github.com/rust-lang/crates.io-index" 7367checksum = "dbc4bc3a9f746d862c45cb89d705aa10f187bb96c76001afab07a0d35ce60142" 7368 7369[[package]] 7370name = "unicode-ident" 7371version = "1.0.24" 7372source = "registry+https://github.com/rust-lang/crates.io-index" 7373checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75" 7374 7375[[package]] 7376name = "unicode-segmentation" 7377version = "1.12.0" 7378source = "registry+https://github.com/rust-lang/crates.io-index" 7379checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493" 7380 7381[[package]] 7382name = "unicode-xid" 7383version = "0.2.6" 7384source = "registry+https://github.com/rust-lang/crates.io-index" 7385checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853" 7386 7387[[package]] 7388name = "universal-hash" 7389version = "0.5.1" 7390source = "registry+https://github.com/rust-lang/crates.io-index" 7391checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea" 7392dependencies = [ 7393 "crypto-common", 7394 "subtle", 7395] 7396 7397[[package]] 7398name = "untrusted" 7399version = "0.9.0" 7400source = "registry+https://github.com/rust-lang/crates.io-index" 7401checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" 7402 7403[[package]] 7404name = "url" 7405version = "2.5.8" 7406source = "registry+https://github.com/rust-lang/crates.io-index" 7407checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed" 7408dependencies = [ 7409 "form_urlencoded", 7410 "idna", 7411 "percent-encoding", 7412 "serde", 7413 "serde_derive", 7414] 7415 7416[[package]] 7417name = "urlpattern" 7418version = "0.3.0" 7419source = "registry+https://github.com/rust-lang/crates.io-index" 7420checksum = "70acd30e3aa1450bc2eece896ce2ad0d178e9c079493819301573dae3c37ba6d" 7421dependencies = [ 7422 "regex", 7423 "serde", 7424 "unic-ucd-ident", 7425 "url", 7426] 7427 7428[[package]] 7429name = "utf-8" 7430version = "0.7.6" 7431source = "registry+https://github.com/rust-lang/crates.io-index" 7432checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" 7433 7434[[package]] 7435name = "utf8-width" 7436version = "0.1.8" 7437source = "registry+https://github.com/rust-lang/crates.io-index" 7438checksum = "1292c0d970b54115d14f2492fe0170adf21d68a1de108eebc51c1df4f346a091" 7439 7440[[package]] 7441name = "utf8_iter" 7442version = "1.0.4" 7443source = "registry+https://github.com/rust-lang/crates.io-index" 7444checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" 7445 7446[[package]] 7447name = "utf8parse" 7448version = "0.2.2" 7449source = "registry+https://github.com/rust-lang/crates.io-index" 7450checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" 7451 7452[[package]] 7453name = "uuid" 7454version = "1.21.0" 7455source = "registry+https://github.com/rust-lang/crates.io-index" 7456checksum = "b672338555252d43fd2240c714dc444b8c6fb0a5c5335e65a07bba7742735ddb" 7457dependencies = [ 7458 "getrandom 0.4.1", 7459 "js-sys", 7460 "serde_core", 7461 "wasm-bindgen", 7462] 7463 7464[[package]] 7465name = "v_frame" 7466version = "0.3.9" 7467source = "registry+https://github.com/rust-lang/crates.io-index" 7468checksum = "666b7727c8875d6ab5db9533418d7c764233ac9c0cff1d469aec8fa127597be2" 7469dependencies = [ 7470 "aligned-vec", 7471 "num-traits", 7472 "wasm-bindgen", 7473] 7474 7475[[package]] 7476name = "value-bag" 7477version = "1.12.0" 7478source = "registry+https://github.com/rust-lang/crates.io-index" 7479checksum = "7ba6f5989077681266825251a52748b8c1d8a4ad098cc37e440103d0ea717fc0" 7480 7481[[package]] 7482name = "version-compare" 7483version = "0.2.1" 7484source = "registry+https://github.com/rust-lang/crates.io-index" 7485checksum = "03c2856837ef78f57382f06b2b8563a2f512f7185d732608fd9176cb3b8edf0e" 7486 7487[[package]] 7488name = "version_check" 7489version = "0.9.5" 7490source = "registry+https://github.com/rust-lang/crates.io-index" 7491checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" 7492 7493[[package]] 7494name = "vswhom" 7495version = "0.1.0" 7496source = "registry+https://github.com/rust-lang/crates.io-index" 7497checksum = "be979b7f07507105799e854203b470ff7c78a1639e330a58f183b5fea574608b" 7498dependencies = [ 7499 "libc", 7500 "vswhom-sys", 7501] 7502 7503[[package]] 7504name = "vswhom-sys" 7505version = "0.1.3" 7506source = "registry+https://github.com/rust-lang/crates.io-index" 7507checksum = "fb067e4cbd1ff067d1df46c9194b5de0e98efd2810bbc95c5d5e5f25a3231150" 7508dependencies = [ 7509 "cc", 7510 "libc", 7511] 7512 7513[[package]] 7514name = "waitgroup" 7515version = "0.1.2" 7516source = "registry+https://github.com/rust-lang/crates.io-index" 7517checksum = "d1f50000a783467e6c0200f9d10642f4bc424e39efc1b770203e88b488f79292" 7518dependencies = [ 7519 "atomic-waker", 7520] 7521 7522[[package]] 7523name = "walkdir" 7524version = "2.5.0" 7525source = "registry+https://github.com/rust-lang/crates.io-index" 7526checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" 7527dependencies = [ 7528 "same-file", 7529 "winapi-util", 7530] 7531 7532[[package]] 7533name = "want" 7534version = "0.3.1" 7535source = "registry+https://github.com/rust-lang/crates.io-index" 7536checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" 7537dependencies = [ 7538 "try-lock", 7539] 7540 7541[[package]] 7542name = "wasi" 7543version = "0.9.0+wasi-snapshot-preview1" 7544source = "registry+https://github.com/rust-lang/crates.io-index" 7545checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" 7546 7547[[package]] 7548name = "wasi" 7549version = "0.11.1+wasi-snapshot-preview1" 7550source = "registry+https://github.com/rust-lang/crates.io-index" 7551checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" 7552 7553[[package]] 7554name = "wasip2" 7555version = "1.0.2+wasi-0.2.9" 7556source = "registry+https://github.com/rust-lang/crates.io-index" 7557checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5" 7558dependencies = [ 7559 "wit-bindgen", 7560] 7561 7562[[package]] 7563name = "wasip3" 7564version = "0.4.0+wasi-0.3.0-rc-2026-01-06" 7565source = "registry+https://github.com/rust-lang/crates.io-index" 7566checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5" 7567dependencies = [ 7568 "wit-bindgen", 7569] 7570 7571[[package]] 7572name = "wasm-bindgen" 7573version = "0.2.108" 7574source = "registry+https://github.com/rust-lang/crates.io-index" 7575checksum = "64024a30ec1e37399cf85a7ffefebdb72205ca1c972291c51512360d90bd8566" 7576dependencies = [ 7577 "cfg-if", 7578 "once_cell", 7579 "rustversion", 7580 "wasm-bindgen-macro", 7581 "wasm-bindgen-shared", 7582] 7583 7584[[package]] 7585name = "wasm-bindgen-futures" 7586version = "0.4.58" 7587source = "registry+https://github.com/rust-lang/crates.io-index" 7588checksum = "70a6e77fd0ae8029c9ea0063f87c46fde723e7d887703d74ad2616d792e51e6f" 7589dependencies = [ 7590 "cfg-if", 7591 "futures-util", 7592 "js-sys", 7593 "once_cell", 7594 "wasm-bindgen", 7595 "web-sys", 7596] 7597 7598[[package]] 7599name = "wasm-bindgen-macro" 7600version = "0.2.108" 7601source = "registry+https://github.com/rust-lang/crates.io-index" 7602checksum = "008b239d9c740232e71bd39e8ef6429d27097518b6b30bdf9086833bd5b6d608" 7603dependencies = [ 7604 "quote", 7605 "wasm-bindgen-macro-support", 7606] 7607 7608[[package]] 7609name = "wasm-bindgen-macro-support" 7610version = "0.2.108" 7611source = "registry+https://github.com/rust-lang/crates.io-index" 7612checksum = "5256bae2d58f54820e6490f9839c49780dff84c65aeab9e772f15d5f0e913a55" 7613dependencies = [ 7614 "bumpalo", 7615 "proc-macro2", 7616 "quote", 7617 "syn 2.0.116", 7618 "wasm-bindgen-shared", 7619] 7620 7621[[package]] 7622name = "wasm-bindgen-shared" 7623version = "0.2.108" 7624source = "registry+https://github.com/rust-lang/crates.io-index" 7625checksum = "1f01b580c9ac74c8d8f0c0e4afb04eeef2acf145458e52c03845ee9cd23e3d12" 7626dependencies = [ 7627 "unicode-ident", 7628] 7629 7630[[package]] 7631name = "wasm-encoder" 7632version = "0.244.0" 7633source = "registry+https://github.com/rust-lang/crates.io-index" 7634checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319" 7635dependencies = [ 7636 "leb128fmt", 7637 "wasmparser", 7638] 7639 7640[[package]] 7641name = "wasm-metadata" 7642version = "0.244.0" 7643source = "registry+https://github.com/rust-lang/crates.io-index" 7644checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909" 7645dependencies = [ 7646 "anyhow", 7647 "indexmap 2.13.0", 7648 "wasm-encoder", 7649 "wasmparser", 7650] 7651 7652[[package]] 7653name = "wasm-streams" 7654version = "0.5.0" 7655source = "registry+https://github.com/rust-lang/crates.io-index" 7656checksum = "9d1ec4f6517c9e11ae630e200b2b65d193279042e28edd4a2cda233e46670bbb" 7657dependencies = [ 7658 "futures-util", 7659 "js-sys", 7660 "wasm-bindgen", 7661 "wasm-bindgen-futures", 7662 "web-sys", 7663] 7664 7665[[package]] 7666name = "wasmparser" 7667version = "0.244.0" 7668source = "registry+https://github.com/rust-lang/crates.io-index" 7669checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe" 7670dependencies = [ 7671 "bitflags 2.11.0", 7672 "hashbrown 0.15.5", 7673 "indexmap 2.13.0", 7674 "semver", 7675] 7676 7677[[package]] 7678name = "web-sys" 7679version = "0.3.85" 7680source = "registry+https://github.com/rust-lang/crates.io-index" 7681checksum = "312e32e551d92129218ea9a2452120f4aabc03529ef03e4d0d82fb2780608598" 7682dependencies = [ 7683 "js-sys", 7684 "wasm-bindgen", 7685] 7686 7687[[package]] 7688name = "web-time" 7689version = "1.1.0" 7690source = "registry+https://github.com/rust-lang/crates.io-index" 7691checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb" 7692dependencies = [ 7693 "js-sys", 7694 "wasm-bindgen", 7695] 7696 7697[[package]] 7698name = "webkit2gtk" 7699version = "2.0.2" 7700source = "registry+https://github.com/rust-lang/crates.io-index" 7701checksum = "a1027150013530fb2eaf806408df88461ae4815a45c541c8975e61d6f2fc4793" 7702dependencies = [ 7703 "bitflags 1.3.2", 7704 "cairo-rs", 7705 "gdk", 7706 "gdk-sys", 7707 "gio", 7708 "gio-sys", 7709 "glib", 7710 "glib-sys", 7711 "gobject-sys", 7712 "gtk", 7713 "gtk-sys", 7714 "javascriptcore-rs", 7715 "libc", 7716 "once_cell", 7717 "soup3", 7718 "webkit2gtk-sys", 7719] 7720 7721[[package]] 7722name = "webkit2gtk-sys" 7723version = "2.0.2" 7724source = "registry+https://github.com/rust-lang/crates.io-index" 7725checksum = "916a5f65c2ef0dfe12fff695960a2ec3d4565359fdbb2e9943c974e06c734ea5" 7726dependencies = [ 7727 "bitflags 1.3.2", 7728 "cairo-sys-rs", 7729 "gdk-sys", 7730 "gio-sys", 7731 "glib-sys", 7732 "gobject-sys", 7733 "gtk-sys", 7734 "javascriptcore-rs-sys", 7735 "libc", 7736 "pkg-config", 7737 "soup3-sys", 7738 "system-deps", 7739] 7740 7741[[package]] 7742name = "webpki" 7743version = "0.22.4" 7744source = "registry+https://github.com/rust-lang/crates.io-index" 7745checksum = "ed63aea5ce73d0ff405984102c42de94fc55a6b75765d621c65262469b3c9b53" 7746dependencies = [ 7747 "ring", 7748 "untrusted", 7749] 7750 7751[[package]] 7752name = "webpki-root-certs" 7753version = "1.0.6" 7754source = "registry+https://github.com/rust-lang/crates.io-index" 7755checksum = "804f18a4ac2676ffb4e8b5b5fa9ae38af06df08162314f96a68d2a363e21a8ca" 7756dependencies = [ 7757 "rustls-pki-types", 7758] 7759 7760[[package]] 7761name = "webpki-roots" 7762version = "0.22.6" 7763source = "registry+https://github.com/rust-lang/crates.io-index" 7764checksum = "b6c71e40d7d2c34a5106301fb632274ca37242cd0c9d3e64dbece371a40a2d87" 7765dependencies = [ 7766 "webpki", 7767] 7768 7769[[package]] 7770name = "webrtc" 7771version = "0.17.1" 7772source = "registry+https://github.com/rust-lang/crates.io-index" 7773checksum = "8ba06986c4fcfbbb4b490abe4b88887b0ac9de0d3eb0aae36f3254e38d6ecdd1" 7774dependencies = [ 7775 "arc-swap", 7776 "async-trait", 7777 "bytes", 7778 "dtls", 7779 "hex", 7780 "interceptor", 7781 "lazy_static", 7782 "log", 7783 "portable-atomic", 7784 "rand 0.9.2", 7785 "rcgen", 7786 "regex", 7787 "ring", 7788 "rtcp", 7789 "rtp", 7790 "sdp", 7791 "serde", 7792 "serde_json", 7793 "sha2", 7794 "smol_str", 7795 "stun", 7796 "thiserror 1.0.69", 7797 "tokio", 7798 "turn", 7799 "unicase", 7800 "url", 7801 "waitgroup", 7802 "webrtc-data", 7803 "webrtc-ice", 7804 "webrtc-mdns", 7805 "webrtc-media", 7806 "webrtc-sctp", 7807 "webrtc-srtp", 7808 "webrtc-util", 7809] 7810 7811[[package]] 7812name = "webrtc-data" 7813version = "0.17.1" 7814source = "registry+https://github.com/rust-lang/crates.io-index" 7815checksum = "a7ca42127ee64bcb71da36d151e6f87b12488c5f14c4f379e73d2d52a8e54aa0" 7816dependencies = [ 7817 "bytes", 7818 "log", 7819 "portable-atomic", 7820 "thiserror 1.0.69", 7821 "tokio", 7822 "webrtc-sctp", 7823 "webrtc-util", 7824] 7825 7826[[package]] 7827name = "webrtc-ice" 7828version = "0.17.1" 7829source = "registry+https://github.com/rust-lang/crates.io-index" 7830checksum = "23ede72a36e5dda685814c389b2b34ac60b3ed000a81789e93626e27180eb785" 7831dependencies = [ 7832 "arc-swap", 7833 "async-trait", 7834 "crc", 7835 "log", 7836 "portable-atomic", 7837 "rand 0.9.2", 7838 "serde", 7839 "serde_json", 7840 "stun", 7841 "thiserror 1.0.69", 7842 "tokio", 7843 "turn", 7844 "url", 7845 "uuid", 7846 "waitgroup", 7847 "webrtc-mdns", 7848 "webrtc-util", 7849] 7850 7851[[package]] 7852name = "webrtc-mdns" 7853version = "0.17.1" 7854source = "registry+https://github.com/rust-lang/crates.io-index" 7855checksum = "1b62bc8d3fb5024bc6ffde5f4aad2127ce17f8359dbc6f70208a324a12e44677" 7856dependencies = [ 7857 "log", 7858 "socket2 0.5.10", 7859 "thiserror 1.0.69", 7860 "tokio", 7861 "webrtc-util", 7862] 7863 7864[[package]] 7865name = "webrtc-media" 7866version = "0.17.1" 7867source = "registry+https://github.com/rust-lang/crates.io-index" 7868checksum = "a9a28290bd0cdda196f8bf5c6f7dddaef18cc913ee0702cd1ea237bad203e337" 7869dependencies = [ 7870 "byteorder", 7871 "bytes", 7872 "rand 0.9.2", 7873 "rtp", 7874 "thiserror 1.0.69", 7875] 7876 7877[[package]] 7878name = "webrtc-sctp" 7879version = "0.17.1" 7880source = "registry+https://github.com/rust-lang/crates.io-index" 7881checksum = "2ea6633bf951b3fd71eba3244731c8d0814f6a80300620a4370cad2983a5a42f" 7882dependencies = [ 7883 "arc-swap", 7884 "async-trait", 7885 "bytes", 7886 "crc", 7887 "log", 7888 "portable-atomic", 7889 "rand 0.9.2", 7890 "thiserror 1.0.69", 7891 "tokio", 7892 "webrtc-util", 7893] 7894 7895[[package]] 7896name = "webrtc-srtp" 7897version = "0.17.1" 7898source = "registry+https://github.com/rust-lang/crates.io-index" 7899checksum = "9e437f74b04f42049192e25cbb33c21c86be308875e6afe14cf8e28d1ffa35ac" 7900dependencies = [ 7901 "aead", 7902 "aes", 7903 "aes-gcm", 7904 "byteorder", 7905 "bytes", 7906 "ctr", 7907 "hmac", 7908 "log", 7909 "rtcp", 7910 "rtp", 7911 "sha1", 7912 "subtle", 7913 "thiserror 1.0.69", 7914 "tokio", 7915 "webrtc-util", 7916] 7917 7918[[package]] 7919name = "webrtc-util" 7920version = "0.17.1" 7921source = "registry+https://github.com/rust-lang/crates.io-index" 7922checksum = "b65c1e0143a43d40f69e1d8c2ffc8734e379b49c06d45892ea4104c388bf9ead" 7923dependencies = [ 7924 "async-trait", 7925 "bitflags 1.3.2", 7926 "bytes", 7927 "ipnet", 7928 "lazy_static", 7929 "log", 7930 "nix", 7931 "portable-atomic", 7932 "rand 0.9.2", 7933 "thiserror 1.0.69", 7934 "tokio", 7935 "winapi", 7936] 7937 7938[[package]] 7939name = "webview2-com" 7940version = "0.38.2" 7941source = "registry+https://github.com/rust-lang/crates.io-index" 7942checksum = "7130243a7a5b33c54a444e54842e6a9e133de08b5ad7b5861cd8ed9a6a5bc96a" 7943dependencies = [ 7944 "webview2-com-macros", 7945 "webview2-com-sys", 7946 "windows", 7947 "windows-core 0.61.2", 7948 "windows-implement", 7949 "windows-interface", 7950] 7951 7952[[package]] 7953name = "webview2-com-macros" 7954version = "0.8.1" 7955source = "registry+https://github.com/rust-lang/crates.io-index" 7956checksum = "67a921c1b6914c367b2b823cd4cde6f96beec77d30a939c8199bb377cf9b9b54" 7957dependencies = [ 7958 "proc-macro2", 7959 "quote", 7960 "syn 2.0.116", 7961] 7962 7963[[package]] 7964name = "webview2-com-sys" 7965version = "0.38.2" 7966source = "registry+https://github.com/rust-lang/crates.io-index" 7967checksum = "381336cfffd772377d291702245447a5251a2ffa5bad679c99e61bc48bacbf9c" 7968dependencies = [ 7969 "thiserror 2.0.18", 7970 "windows", 7971 "windows-core 0.61.2", 7972] 7973 7974[[package]] 7975name = "weezl" 7976version = "0.1.12" 7977source = "registry+https://github.com/rust-lang/crates.io-index" 7978checksum = "a28ac98ddc8b9274cb41bb4d9d4d5c425b6020c50c46f25559911905610b4a88" 7979 7980[[package]] 7981name = "widestring" 7982version = "1.2.1" 7983source = "registry+https://github.com/rust-lang/crates.io-index" 7984checksum = "72069c3113ab32ab29e5584db3c6ec55d416895e60715417b5b883a357c3e471" 7985 7986[[package]] 7987name = "winapi" 7988version = "0.3.9" 7989source = "registry+https://github.com/rust-lang/crates.io-index" 7990checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 7991dependencies = [ 7992 "winapi-i686-pc-windows-gnu", 7993 "winapi-x86_64-pc-windows-gnu", 7994] 7995 7996[[package]] 7997name = "winapi-i686-pc-windows-gnu" 7998version = "0.4.0" 7999source = "registry+https://github.com/rust-lang/crates.io-index" 8000checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 8001 8002[[package]] 8003name = "winapi-util" 8004version = "0.1.11" 8005source = "registry+https://github.com/rust-lang/crates.io-index" 8006checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22" 8007dependencies = [ 8008 "windows-sys 0.61.2", 8009] 8010 8011[[package]] 8012name = "winapi-x86_64-pc-windows-gnu" 8013version = "0.4.0" 8014source = "registry+https://github.com/rust-lang/crates.io-index" 8015checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 8016 8017[[package]] 8018name = "window-vibrancy" 8019version = "0.6.0" 8020source = "registry+https://github.com/rust-lang/crates.io-index" 8021checksum = "d9bec5a31f3f9362f2258fd0e9c9dd61a9ca432e7306cc78c444258f0dce9a9c" 8022dependencies = [ 8023 "objc2", 8024 "objc2-app-kit", 8025 "objc2-core-foundation", 8026 "objc2-foundation", 8027 "raw-window-handle", 8028 "windows-sys 0.59.0", 8029 "windows-version", 8030] 8031 8032[[package]] 8033name = "windows" 8034version = "0.61.3" 8035source = "registry+https://github.com/rust-lang/crates.io-index" 8036checksum = "9babd3a767a4c1aef6900409f85f5d53ce2544ccdfaa86dad48c91782c6d6893" 8037dependencies = [ 8038 "windows-collections", 8039 "windows-core 0.61.2", 8040 "windows-future", 8041 "windows-link 0.1.3", 8042 "windows-numerics", 8043] 8044 8045[[package]] 8046name = "windows-collections" 8047version = "0.2.0" 8048source = "registry+https://github.com/rust-lang/crates.io-index" 8049checksum = "3beeceb5e5cfd9eb1d76b381630e82c4241ccd0d27f1a39ed41b2760b255c5e8" 8050dependencies = [ 8051 "windows-core 0.61.2", 8052] 8053 8054[[package]] 8055name = "windows-core" 8056version = "0.61.2" 8057source = "registry+https://github.com/rust-lang/crates.io-index" 8058checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3" 8059dependencies = [ 8060 "windows-implement", 8061 "windows-interface", 8062 "windows-link 0.1.3", 8063 "windows-result 0.3.4", 8064 "windows-strings 0.4.2", 8065] 8066 8067[[package]] 8068name = "windows-core" 8069version = "0.62.2" 8070source = "registry+https://github.com/rust-lang/crates.io-index" 8071checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb" 8072dependencies = [ 8073 "windows-implement", 8074 "windows-interface", 8075 "windows-link 0.2.1", 8076 "windows-result 0.4.1", 8077 "windows-strings 0.5.1", 8078] 8079 8080[[package]] 8081name = "windows-future" 8082version = "0.2.1" 8083source = "registry+https://github.com/rust-lang/crates.io-index" 8084checksum = "fc6a41e98427b19fe4b73c550f060b59fa592d7d686537eebf9385621bfbad8e" 8085dependencies = [ 8086 "windows-core 0.61.2", 8087 "windows-link 0.1.3", 8088 "windows-threading", 8089] 8090 8091[[package]] 8092name = "windows-implement" 8093version = "0.60.2" 8094source = "registry+https://github.com/rust-lang/crates.io-index" 8095checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf" 8096dependencies = [ 8097 "proc-macro2", 8098 "quote", 8099 "syn 2.0.116", 8100] 8101 8102[[package]] 8103name = "windows-interface" 8104version = "0.59.3" 8105source = "registry+https://github.com/rust-lang/crates.io-index" 8106checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358" 8107dependencies = [ 8108 "proc-macro2", 8109 "quote", 8110 "syn 2.0.116", 8111] 8112 8113[[package]] 8114name = "windows-link" 8115version = "0.1.3" 8116source = "registry+https://github.com/rust-lang/crates.io-index" 8117checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a" 8118 8119[[package]] 8120name = "windows-link" 8121version = "0.2.1" 8122source = "registry+https://github.com/rust-lang/crates.io-index" 8123checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5" 8124 8125[[package]] 8126name = "windows-numerics" 8127version = "0.2.0" 8128source = "registry+https://github.com/rust-lang/crates.io-index" 8129checksum = "9150af68066c4c5c07ddc0ce30421554771e528bde427614c61038bc2c92c2b1" 8130dependencies = [ 8131 "windows-core 0.61.2", 8132 "windows-link 0.1.3", 8133] 8134 8135[[package]] 8136name = "windows-registry" 8137version = "0.6.1" 8138source = "registry+https://github.com/rust-lang/crates.io-index" 8139checksum = "02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720" 8140dependencies = [ 8141 "windows-link 0.2.1", 8142 "windows-result 0.4.1", 8143 "windows-strings 0.5.1", 8144] 8145 8146[[package]] 8147name = "windows-result" 8148version = "0.3.4" 8149source = "registry+https://github.com/rust-lang/crates.io-index" 8150checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6" 8151dependencies = [ 8152 "windows-link 0.1.3", 8153] 8154 8155[[package]] 8156name = "windows-result" 8157version = "0.4.1" 8158source = "registry+https://github.com/rust-lang/crates.io-index" 8159checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5" 8160dependencies = [ 8161 "windows-link 0.2.1", 8162] 8163 8164[[package]] 8165name = "windows-strings" 8166version = "0.4.2" 8167source = "registry+https://github.com/rust-lang/crates.io-index" 8168checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57" 8169dependencies = [ 8170 "windows-link 0.1.3", 8171] 8172 8173[[package]] 8174name = "windows-strings" 8175version = "0.5.1" 8176source = "registry+https://github.com/rust-lang/crates.io-index" 8177checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091" 8178dependencies = [ 8179 "windows-link 0.2.1", 8180] 8181 8182[[package]] 8183name = "windows-sys" 8184version = "0.45.0" 8185source = "registry+https://github.com/rust-lang/crates.io-index" 8186checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" 8187dependencies = [ 8188 "windows-targets 0.42.2", 8189] 8190 8191[[package]] 8192name = "windows-sys" 8193version = "0.52.0" 8194source = "registry+https://github.com/rust-lang/crates.io-index" 8195checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 8196dependencies = [ 8197 "windows-targets 0.52.6", 8198] 8199 8200[[package]] 8201name = "windows-sys" 8202version = "0.59.0" 8203source = "registry+https://github.com/rust-lang/crates.io-index" 8204checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" 8205dependencies = [ 8206 "windows-targets 0.52.6", 8207] 8208 8209[[package]] 8210name = "windows-sys" 8211version = "0.60.2" 8212source = "registry+https://github.com/rust-lang/crates.io-index" 8213checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb" 8214dependencies = [ 8215 "windows-targets 0.53.5", 8216] 8217 8218[[package]] 8219name = "windows-sys" 8220version = "0.61.2" 8221source = "registry+https://github.com/rust-lang/crates.io-index" 8222checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc" 8223dependencies = [ 8224 "windows-link 0.2.1", 8225] 8226 8227[[package]] 8228name = "windows-targets" 8229version = "0.42.2" 8230source = "registry+https://github.com/rust-lang/crates.io-index" 8231checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" 8232dependencies = [ 8233 "windows_aarch64_gnullvm 0.42.2", 8234 "windows_aarch64_msvc 0.42.2", 8235 "windows_i686_gnu 0.42.2", 8236 "windows_i686_msvc 0.42.2", 8237 "windows_x86_64_gnu 0.42.2", 8238 "windows_x86_64_gnullvm 0.42.2", 8239 "windows_x86_64_msvc 0.42.2", 8240] 8241 8242[[package]] 8243name = "windows-targets" 8244version = "0.52.6" 8245source = "registry+https://github.com/rust-lang/crates.io-index" 8246checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" 8247dependencies = [ 8248 "windows_aarch64_gnullvm 0.52.6", 8249 "windows_aarch64_msvc 0.52.6", 8250 "windows_i686_gnu 0.52.6", 8251 "windows_i686_gnullvm 0.52.6", 8252 "windows_i686_msvc 0.52.6", 8253 "windows_x86_64_gnu 0.52.6", 8254 "windows_x86_64_gnullvm 0.52.6", 8255 "windows_x86_64_msvc 0.52.6", 8256] 8257 8258[[package]] 8259name = "windows-targets" 8260version = "0.53.5" 8261source = "registry+https://github.com/rust-lang/crates.io-index" 8262checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3" 8263dependencies = [ 8264 "windows-link 0.2.1", 8265 "windows_aarch64_gnullvm 0.53.1", 8266 "windows_aarch64_msvc 0.53.1", 8267 "windows_i686_gnu 0.53.1", 8268 "windows_i686_gnullvm 0.53.1", 8269 "windows_i686_msvc 0.53.1", 8270 "windows_x86_64_gnu 0.53.1", 8271 "windows_x86_64_gnullvm 0.53.1", 8272 "windows_x86_64_msvc 0.53.1", 8273] 8274 8275[[package]] 8276name = "windows-threading" 8277version = "0.1.0" 8278source = "registry+https://github.com/rust-lang/crates.io-index" 8279checksum = "b66463ad2e0ea3bbf808b7f1d371311c80e115c0b71d60efc142cafbcfb057a6" 8280dependencies = [ 8281 "windows-link 0.1.3", 8282] 8283 8284[[package]] 8285name = "windows-version" 8286version = "0.1.7" 8287source = "registry+https://github.com/rust-lang/crates.io-index" 8288checksum = "e4060a1da109b9d0326b7262c8e12c84df67cc0dbc9e33cf49e01ccc2eb63631" 8289dependencies = [ 8290 "windows-link 0.2.1", 8291] 8292 8293[[package]] 8294name = "windows_aarch64_gnullvm" 8295version = "0.42.2" 8296source = "registry+https://github.com/rust-lang/crates.io-index" 8297checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" 8298 8299[[package]] 8300name = "windows_aarch64_gnullvm" 8301version = "0.52.6" 8302source = "registry+https://github.com/rust-lang/crates.io-index" 8303checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" 8304 8305[[package]] 8306name = "windows_aarch64_gnullvm" 8307version = "0.53.1" 8308source = "registry+https://github.com/rust-lang/crates.io-index" 8309checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53" 8310 8311[[package]] 8312name = "windows_aarch64_msvc" 8313version = "0.42.2" 8314source = "registry+https://github.com/rust-lang/crates.io-index" 8315checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" 8316 8317[[package]] 8318name = "windows_aarch64_msvc" 8319version = "0.52.6" 8320source = "registry+https://github.com/rust-lang/crates.io-index" 8321checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" 8322 8323[[package]] 8324name = "windows_aarch64_msvc" 8325version = "0.53.1" 8326source = "registry+https://github.com/rust-lang/crates.io-index" 8327checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006" 8328 8329[[package]] 8330name = "windows_i686_gnu" 8331version = "0.42.2" 8332source = "registry+https://github.com/rust-lang/crates.io-index" 8333checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" 8334 8335[[package]] 8336name = "windows_i686_gnu" 8337version = "0.52.6" 8338source = "registry+https://github.com/rust-lang/crates.io-index" 8339checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" 8340 8341[[package]] 8342name = "windows_i686_gnu" 8343version = "0.53.1" 8344source = "registry+https://github.com/rust-lang/crates.io-index" 8345checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3" 8346 8347[[package]] 8348name = "windows_i686_gnullvm" 8349version = "0.52.6" 8350source = "registry+https://github.com/rust-lang/crates.io-index" 8351checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" 8352 8353[[package]] 8354name = "windows_i686_gnullvm" 8355version = "0.53.1" 8356source = "registry+https://github.com/rust-lang/crates.io-index" 8357checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c" 8358 8359[[package]] 8360name = "windows_i686_msvc" 8361version = "0.42.2" 8362source = "registry+https://github.com/rust-lang/crates.io-index" 8363checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" 8364 8365[[package]] 8366name = "windows_i686_msvc" 8367version = "0.52.6" 8368source = "registry+https://github.com/rust-lang/crates.io-index" 8369checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" 8370 8371[[package]] 8372name = "windows_i686_msvc" 8373version = "0.53.1" 8374source = "registry+https://github.com/rust-lang/crates.io-index" 8375checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2" 8376 8377[[package]] 8378name = "windows_x86_64_gnu" 8379version = "0.42.2" 8380source = "registry+https://github.com/rust-lang/crates.io-index" 8381checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" 8382 8383[[package]] 8384name = "windows_x86_64_gnu" 8385version = "0.52.6" 8386source = "registry+https://github.com/rust-lang/crates.io-index" 8387checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" 8388 8389[[package]] 8390name = "windows_x86_64_gnu" 8391version = "0.53.1" 8392source = "registry+https://github.com/rust-lang/crates.io-index" 8393checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499" 8394 8395[[package]] 8396name = "windows_x86_64_gnullvm" 8397version = "0.42.2" 8398source = "registry+https://github.com/rust-lang/crates.io-index" 8399checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" 8400 8401[[package]] 8402name = "windows_x86_64_gnullvm" 8403version = "0.52.6" 8404source = "registry+https://github.com/rust-lang/crates.io-index" 8405checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" 8406 8407[[package]] 8408name = "windows_x86_64_gnullvm" 8409version = "0.53.1" 8410source = "registry+https://github.com/rust-lang/crates.io-index" 8411checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1" 8412 8413[[package]] 8414name = "windows_x86_64_msvc" 8415version = "0.42.2" 8416source = "registry+https://github.com/rust-lang/crates.io-index" 8417checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" 8418 8419[[package]] 8420name = "windows_x86_64_msvc" 8421version = "0.52.6" 8422source = "registry+https://github.com/rust-lang/crates.io-index" 8423checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" 8424 8425[[package]] 8426name = "windows_x86_64_msvc" 8427version = "0.53.1" 8428source = "registry+https://github.com/rust-lang/crates.io-index" 8429checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650" 8430 8431[[package]] 8432name = "winnow" 8433version = "0.5.40" 8434source = "registry+https://github.com/rust-lang/crates.io-index" 8435checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876" 8436dependencies = [ 8437 "memchr", 8438] 8439 8440[[package]] 8441name = "winnow" 8442version = "0.7.14" 8443source = "registry+https://github.com/rust-lang/crates.io-index" 8444checksum = "5a5364e9d77fcdeeaa6062ced926ee3381faa2ee02d3eb83a5c27a8825540829" 8445dependencies = [ 8446 "memchr", 8447] 8448 8449[[package]] 8450name = "winreg" 8451version = "0.55.0" 8452source = "registry+https://github.com/rust-lang/crates.io-index" 8453checksum = "cb5a765337c50e9ec252c2069be9bf91c7df47afb103b642ba3a53bf8101be97" 8454dependencies = [ 8455 "cfg-if", 8456 "windows-sys 0.59.0", 8457] 8458 8459[[package]] 8460name = "wit-bindgen" 8461version = "0.51.0" 8462source = "registry+https://github.com/rust-lang/crates.io-index" 8463checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5" 8464dependencies = [ 8465 "wit-bindgen-rust-macro", 8466] 8467 8468[[package]] 8469name = "wit-bindgen-core" 8470version = "0.51.0" 8471source = "registry+https://github.com/rust-lang/crates.io-index" 8472checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc" 8473dependencies = [ 8474 "anyhow", 8475 "heck 0.5.0", 8476 "wit-parser", 8477] 8478 8479[[package]] 8480name = "wit-bindgen-rust" 8481version = "0.51.0" 8482source = "registry+https://github.com/rust-lang/crates.io-index" 8483checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21" 8484dependencies = [ 8485 "anyhow", 8486 "heck 0.5.0", 8487 "indexmap 2.13.0", 8488 "prettyplease", 8489 "syn 2.0.116", 8490 "wasm-metadata", 8491 "wit-bindgen-core", 8492 "wit-component", 8493] 8494 8495[[package]] 8496name = "wit-bindgen-rust-macro" 8497version = "0.51.0" 8498source = "registry+https://github.com/rust-lang/crates.io-index" 8499checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a" 8500dependencies = [ 8501 "anyhow", 8502 "prettyplease", 8503 "proc-macro2", 8504 "quote", 8505 "syn 2.0.116", 8506 "wit-bindgen-core", 8507 "wit-bindgen-rust", 8508] 8509 8510[[package]] 8511name = "wit-component" 8512version = "0.244.0" 8513source = "registry+https://github.com/rust-lang/crates.io-index" 8514checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2" 8515dependencies = [ 8516 "anyhow", 8517 "bitflags 2.11.0", 8518 "indexmap 2.13.0", 8519 "log", 8520 "serde", 8521 "serde_derive", 8522 "serde_json", 8523 "wasm-encoder", 8524 "wasm-metadata", 8525 "wasmparser", 8526 "wit-parser", 8527] 8528 8529[[package]] 8530name = "wit-parser" 8531version = "0.244.0" 8532source = "registry+https://github.com/rust-lang/crates.io-index" 8533checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736" 8534dependencies = [ 8535 "anyhow", 8536 "id-arena", 8537 "indexmap 2.13.0", 8538 "log", 8539 "semver", 8540 "serde", 8541 "serde_derive", 8542 "serde_json", 8543 "unicode-xid", 8544 "wasmparser", 8545] 8546 8547[[package]] 8548name = "writeable" 8549version = "0.6.2" 8550source = "registry+https://github.com/rust-lang/crates.io-index" 8551checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9" 8552 8553[[package]] 8554name = "wry" 8555version = "0.54.2" 8556source = "registry+https://github.com/rust-lang/crates.io-index" 8557checksum = "bb26159b420aa77684589a744ae9a9461a95395b848764ad12290a14d960a11a" 8558dependencies = [ 8559 "base64 0.22.1", 8560 "block2", 8561 "cookie", 8562 "crossbeam-channel", 8563 "dirs", 8564 "dpi", 8565 "dunce", 8566 "gdkx11", 8567 "gtk", 8568 "html5ever", 8569 "http", 8570 "javascriptcore-rs", 8571 "jni", 8572 "kuchikiki", 8573 "libc", 8574 "ndk", 8575 "objc2", 8576 "objc2-app-kit", 8577 "objc2-core-foundation", 8578 "objc2-foundation", 8579 "objc2-ui-kit", 8580 "objc2-web-kit", 8581 "once_cell", 8582 "percent-encoding", 8583 "raw-window-handle", 8584 "sha2", 8585 "soup3", 8586 "tao-macros", 8587 "thiserror 2.0.18", 8588 "url", 8589 "webkit2gtk", 8590 "webkit2gtk-sys", 8591 "webview2-com", 8592 "windows", 8593 "windows-core 0.61.2", 8594 "windows-version", 8595 "x11-dl", 8596] 8597 8598[[package]] 8599name = "ws_stream_wasm" 8600version = "0.7.5" 8601source = "registry+https://github.com/rust-lang/crates.io-index" 8602checksum = "6c173014acad22e83f16403ee360115b38846fe754e735c5d9d3803fe70c6abc" 8603dependencies = [ 8604 "async_io_stream", 8605 "futures", 8606 "js-sys", 8607 "log", 8608 "pharos", 8609 "rustc_version", 8610 "send_wrapper 0.6.0", 8611 "thiserror 2.0.18", 8612 "wasm-bindgen", 8613 "wasm-bindgen-futures", 8614 "web-sys", 8615] 8616 8617[[package]] 8618name = "wyz" 8619version = "0.5.1" 8620source = "registry+https://github.com/rust-lang/crates.io-index" 8621checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed" 8622dependencies = [ 8623 "tap", 8624] 8625 8626[[package]] 8627name = "x11" 8628version = "2.21.0" 8629source = "registry+https://github.com/rust-lang/crates.io-index" 8630checksum = "502da5464ccd04011667b11c435cb992822c2c0dbde1770c988480d312a0db2e" 8631dependencies = [ 8632 "libc", 8633 "pkg-config", 8634] 8635 8636[[package]] 8637name = "x11-dl" 8638version = "2.21.0" 8639source = "registry+https://github.com/rust-lang/crates.io-index" 8640checksum = "38735924fedd5314a6e548792904ed8c6de6636285cb9fec04d5b1db85c1516f" 8641dependencies = [ 8642 "libc", 8643 "once_cell", 8644 "pkg-config", 8645] 8646 8647[[package]] 8648name = "x25519-dalek" 8649version = "2.0.1" 8650source = "registry+https://github.com/rust-lang/crates.io-index" 8651checksum = "c7e468321c81fb07fa7f4c636c3972b9100f0346e5b6a9f2bd0603a52f7ed277" 8652dependencies = [ 8653 "curve25519-dalek", 8654 "rand_core 0.6.4", 8655 "serde", 8656 "zeroize", 8657] 8658 8659[[package]] 8660name = "x509-parser" 8661version = "0.16.0" 8662source = "registry+https://github.com/rust-lang/crates.io-index" 8663checksum = "fcbc162f30700d6f3f82a24bf7cc62ffe7caea42c0b2cba8bf7f3ae50cf51f69" 8664dependencies = [ 8665 "asn1-rs", 8666 "data-encoding", 8667 "der-parser", 8668 "lazy_static", 8669 "nom 7.1.3", 8670 "oid-registry", 8671 "ring", 8672 "rusticata-macros", 8673 "thiserror 1.0.69", 8674 "time", 8675] 8676 8677[[package]] 8678name = "y4m" 8679version = "0.8.0" 8680source = "registry+https://github.com/rust-lang/crates.io-index" 8681checksum = "7a5a4b21e1a62b67a2970e6831bc091d7b87e119e7f9791aef9702e3bef04448" 8682 8683[[package]] 8684name = "yasna" 8685version = "0.5.2" 8686source = "registry+https://github.com/rust-lang/crates.io-index" 8687checksum = "e17bb3549cc1321ae1296b9cdc2698e2b6cb1992adfa19a8c72e5b7a738f44cd" 8688dependencies = [ 8689 "time", 8690] 8691 8692[[package]] 8693name = "yoke" 8694version = "0.8.1" 8695source = "registry+https://github.com/rust-lang/crates.io-index" 8696checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954" 8697dependencies = [ 8698 "stable_deref_trait", 8699 "yoke-derive", 8700 "zerofrom", 8701] 8702 8703[[package]] 8704name = "yoke-derive" 8705version = "0.8.1" 8706source = "registry+https://github.com/rust-lang/crates.io-index" 8707checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d" 8708dependencies = [ 8709 "proc-macro2", 8710 "quote", 8711 "syn 2.0.116", 8712 "synstructure", 8713] 8714 8715[[package]] 8716name = "zbus" 8717version = "5.13.2" 8718source = "registry+https://github.com/rust-lang/crates.io-index" 8719checksum = "1bfeff997a0aaa3eb20c4652baf788d2dfa6d2839a0ead0b3ff69ce2f9c4bdd1" 8720dependencies = [ 8721 "async-broadcast", 8722 "async-executor", 8723 "async-io", 8724 "async-lock", 8725 "async-process", 8726 "async-recursion", 8727 "async-task", 8728 "async-trait", 8729 "blocking", 8730 "enumflags2", 8731 "event-listener 5.4.1", 8732 "futures-core", 8733 "futures-lite", 8734 "hex", 8735 "libc", 8736 "ordered-stream", 8737 "rustix", 8738 "serde", 8739 "serde_repr", 8740 "tracing", 8741 "uds_windows", 8742 "uuid", 8743 "windows-sys 0.61.2", 8744 "winnow 0.7.14", 8745 "zbus_macros", 8746 "zbus_names", 8747 "zvariant", 8748] 8749 8750[[package]] 8751name = "zbus_macros" 8752version = "5.13.2" 8753source = "registry+https://github.com/rust-lang/crates.io-index" 8754checksum = "0bbd5a90dbe8feee5b13def448427ae314ccd26a49cac47905cafefb9ff846f1" 8755dependencies = [ 8756 "proc-macro-crate 3.4.0", 8757 "proc-macro2", 8758 "quote", 8759 "syn 2.0.116", 8760 "zbus_names", 8761 "zvariant", 8762 "zvariant_utils", 8763] 8764 8765[[package]] 8766name = "zbus_names" 8767version = "4.3.1" 8768source = "registry+https://github.com/rust-lang/crates.io-index" 8769checksum = "ffd8af6d5b78619bab301ff3c560a5bd22426150253db278f164d6cf3b72c50f" 8770dependencies = [ 8771 "serde", 8772 "winnow 0.7.14", 8773 "zvariant", 8774] 8775 8776[[package]] 8777name = "zerocopy" 8778version = "0.8.39" 8779source = "registry+https://github.com/rust-lang/crates.io-index" 8780checksum = "db6d35d663eadb6c932438e763b262fe1a70987f9ae936e60158176d710cae4a" 8781dependencies = [ 8782 "zerocopy-derive", 8783] 8784 8785[[package]] 8786name = "zerocopy-derive" 8787version = "0.8.39" 8788source = "registry+https://github.com/rust-lang/crates.io-index" 8789checksum = "4122cd3169e94605190e77839c9a40d40ed048d305bfdc146e7df40ab0f3e517" 8790dependencies = [ 8791 "proc-macro2", 8792 "quote", 8793 "syn 2.0.116", 8794] 8795 8796[[package]] 8797name = "zerofrom" 8798version = "0.1.6" 8799source = "registry+https://github.com/rust-lang/crates.io-index" 8800checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5" 8801dependencies = [ 8802 "zerofrom-derive", 8803] 8804 8805[[package]] 8806name = "zerofrom-derive" 8807version = "0.1.6" 8808source = "registry+https://github.com/rust-lang/crates.io-index" 8809checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502" 8810dependencies = [ 8811 "proc-macro2", 8812 "quote", 8813 "syn 2.0.116", 8814 "synstructure", 8815] 8816 8817[[package]] 8818name = "zeroize" 8819version = "1.8.2" 8820source = "registry+https://github.com/rust-lang/crates.io-index" 8821checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0" 8822dependencies = [ 8823 "zeroize_derive", 8824] 8825 8826[[package]] 8827name = "zeroize_derive" 8828version = "1.4.3" 8829source = "registry+https://github.com/rust-lang/crates.io-index" 8830checksum = "85a5b4158499876c763cb03bc4e49185d3cccbabb15b33c627f7884f43db852e" 8831dependencies = [ 8832 "proc-macro2", 8833 "quote", 8834 "syn 2.0.116", 8835] 8836 8837[[package]] 8838name = "zerotrie" 8839version = "0.2.3" 8840source = "registry+https://github.com/rust-lang/crates.io-index" 8841checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851" 8842dependencies = [ 8843 "displaydoc", 8844 "yoke", 8845 "zerofrom", 8846] 8847 8848[[package]] 8849name = "zerovec" 8850version = "0.11.5" 8851source = "registry+https://github.com/rust-lang/crates.io-index" 8852checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002" 8853dependencies = [ 8854 "yoke", 8855 "zerofrom", 8856 "zerovec-derive", 8857] 8858 8859[[package]] 8860name = "zerovec-derive" 8861version = "0.11.2" 8862source = "registry+https://github.com/rust-lang/crates.io-index" 8863checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3" 8864dependencies = [ 8865 "proc-macro2", 8866 "quote", 8867 "syn 2.0.116", 8868] 8869 8870[[package]] 8871name = "zmij" 8872version = "1.0.21" 8873source = "registry+https://github.com/rust-lang/crates.io-index" 8874checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa" 8875 8876[[package]] 8877name = "zune-core" 8878version = "0.4.12" 8879source = "registry+https://github.com/rust-lang/crates.io-index" 8880checksum = "3f423a2c17029964870cfaabb1f13dfab7d092a62a29a89264f4d36990ca414a" 8881 8882[[package]] 8883name = "zune-core" 8884version = "0.5.1" 8885source = "registry+https://github.com/rust-lang/crates.io-index" 8886checksum = "cb8a0807f7c01457d0379ba880ba6322660448ddebc890ce29bb64da71fb40f9" 8887 8888[[package]] 8889name = "zune-inflate" 8890version = "0.2.54" 8891source = "registry+https://github.com/rust-lang/crates.io-index" 8892checksum = "73ab332fe2f6680068f3582b16a24f90ad7096d5d39b974d1c0aff0125116f02" 8893dependencies = [ 8894 "simd-adler32", 8895] 8896 8897[[package]] 8898name = "zune-jpeg" 8899version = "0.4.21" 8900source = "registry+https://github.com/rust-lang/crates.io-index" 8901checksum = "29ce2c8a9384ad323cf564b67da86e21d3cfdff87908bc1223ed5c99bc792713" 8902dependencies = [ 8903 "zune-core 0.4.12", 8904] 8905 8906[[package]] 8907name = "zune-jpeg" 8908version = "0.5.12" 8909source = "registry+https://github.com/rust-lang/crates.io-index" 8910checksum = "410e9ecef634c709e3831c2cfdb8d9c32164fae1c67496d5b68fff728eec37fe" 8911dependencies = [ 8912 "zune-core 0.5.1", 8913] 8914 8915[[package]] 8916name = "zvariant" 8917version = "5.9.2" 8918source = "registry+https://github.com/rust-lang/crates.io-index" 8919checksum = "68b64ef4f40c7951337ddc7023dd03528a57a3ce3408ee9da5e948bd29b232c4" 8920dependencies = [ 8921 "endi", 8922 "enumflags2", 8923 "serde", 8924 "winnow 0.7.14", 8925 "zvariant_derive", 8926 "zvariant_utils", 8927] 8928 8929[[package]] 8930name = "zvariant_derive" 8931version = "5.9.2" 8932source = "registry+https://github.com/rust-lang/crates.io-index" 8933checksum = "484d5d975eb7afb52cc6b929c13d3719a20ad650fea4120e6310de3fc55e415c" 8934dependencies = [ 8935 "proc-macro-crate 3.4.0", 8936 "proc-macro2", 8937 "quote", 8938 "syn 2.0.116", 8939 "zvariant_utils", 8940] 8941 8942[[package]] 8943name = "zvariant_utils" 8944version = "3.3.0" 8945source = "registry+https://github.com/rust-lang/crates.io-index" 8946checksum = "f75c23a64ef8f40f13a6989991e643554d9bef1d682a281160cf0c1bc389c5e9" 8947dependencies = [ 8948 "proc-macro2", 8949 "quote", 8950 "serde", 8951 "syn 2.0.116", 8952 "winnow 0.7.14", 8953]