A photo manager for VRChat.
1# This file is automatically @generated by Cargo. 2# It is not intended for manual editing. 3version = 4 4 5[[package]] 6name = "addr2line" 7version = "0.24.2" 8source = "registry+https://github.com/rust-lang/crates.io-index" 9checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1" 10dependencies = [ 11 "gimli", 12] 13 14[[package]] 15name = "adler2" 16version = "2.0.1" 17source = "registry+https://github.com/rust-lang/crates.io-index" 18checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa" 19 20[[package]] 21name = "aho-corasick" 22version = "1.1.3" 23source = "registry+https://github.com/rust-lang/crates.io-index" 24checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" 25dependencies = [ 26 "memchr", 27] 28 29[[package]] 30name = "aligned-vec" 31version = "0.6.4" 32source = "registry+https://github.com/rust-lang/crates.io-index" 33checksum = "dc890384c8602f339876ded803c97ad529f3842aba97f6392b3dba0dd171769b" 34dependencies = [ 35 "equator", 36] 37 38[[package]] 39name = "alloc-no-stdlib" 40version = "2.0.4" 41source = "registry+https://github.com/rust-lang/crates.io-index" 42checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3" 43 44[[package]] 45name = "alloc-stdlib" 46version = "0.2.2" 47source = "registry+https://github.com/rust-lang/crates.io-index" 48checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece" 49dependencies = [ 50 "alloc-no-stdlib", 51] 52 53[[package]] 54name = "android-tzdata" 55version = "0.1.1" 56source = "registry+https://github.com/rust-lang/crates.io-index" 57checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0" 58 59[[package]] 60name = "android_system_properties" 61version = "0.1.5" 62source = "registry+https://github.com/rust-lang/crates.io-index" 63checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" 64dependencies = [ 65 "libc", 66] 67 68[[package]] 69name = "anyhow" 70version = "1.0.98" 71source = "registry+https://github.com/rust-lang/crates.io-index" 72checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487" 73 74[[package]] 75name = "arbitrary" 76version = "1.4.1" 77source = "registry+https://github.com/rust-lang/crates.io-index" 78checksum = "dde20b3d026af13f561bdd0f15edf01fc734f0dafcedbaf42bba506a9517f223" 79 80[[package]] 81name = "arg_enum_proc_macro" 82version = "0.3.4" 83source = "registry+https://github.com/rust-lang/crates.io-index" 84checksum = "0ae92a5119aa49cdbcf6b9f893fe4e1d98b04ccbf82ee0584ad948a44a734dea" 85dependencies = [ 86 "proc-macro2", 87 "quote", 88 "syn 2.0.104", 89] 90 91[[package]] 92name = "arrayvec" 93version = "0.7.6" 94source = "registry+https://github.com/rust-lang/crates.io-index" 95checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50" 96 97[[package]] 98name = "async-broadcast" 99version = "0.7.2" 100source = "registry+https://github.com/rust-lang/crates.io-index" 101checksum = "435a87a52755b8f27fcf321ac4f04b2802e337c8c4872923137471ec39c37532" 102dependencies = [ 103 "event-listener", 104 "event-listener-strategy", 105 "futures-core", 106 "pin-project-lite", 107] 108 109[[package]] 110name = "async-channel" 111version = "2.5.0" 112source = "registry+https://github.com/rust-lang/crates.io-index" 113checksum = "924ed96dd52d1b75e9c1a3e6275715fd320f5f9439fb5a4a11fa51f4221158d2" 114dependencies = [ 115 "concurrent-queue", 116 "event-listener-strategy", 117 "futures-core", 118 "pin-project-lite", 119] 120 121[[package]] 122name = "async-executor" 123version = "1.13.2" 124source = "registry+https://github.com/rust-lang/crates.io-index" 125checksum = "bb812ffb58524bdd10860d7d974e2f01cc0950c2438a74ee5ec2e2280c6c4ffa" 126dependencies = [ 127 "async-task", 128 "concurrent-queue", 129 "fastrand", 130 "futures-lite", 131 "pin-project-lite", 132 "slab", 133] 134 135[[package]] 136name = "async-fs" 137version = "2.1.3" 138source = "registry+https://github.com/rust-lang/crates.io-index" 139checksum = "09f7e37c0ed80b2a977691c47dae8625cfb21e205827106c64f7c588766b2e50" 140dependencies = [ 141 "async-lock", 142 "blocking", 143 "futures-lite", 144] 145 146[[package]] 147name = "async-io" 148version = "2.5.0" 149source = "registry+https://github.com/rust-lang/crates.io-index" 150checksum = "19634d6336019ef220f09fd31168ce5c184b295cbf80345437cc36094ef223ca" 151dependencies = [ 152 "async-lock", 153 "cfg-if", 154 "concurrent-queue", 155 "futures-io", 156 "futures-lite", 157 "parking", 158 "polling", 159 "rustix", 160 "slab", 161 "windows-sys 0.60.2", 162] 163 164[[package]] 165name = "async-lock" 166version = "3.4.0" 167source = "registry+https://github.com/rust-lang/crates.io-index" 168checksum = "ff6e472cdea888a4bd64f342f09b3f50e1886d32afe8df3d663c01140b811b18" 169dependencies = [ 170 "event-listener", 171 "event-listener-strategy", 172 "pin-project-lite", 173] 174 175[[package]] 176name = "async-process" 177version = "2.4.0" 178source = "registry+https://github.com/rust-lang/crates.io-index" 179checksum = "65daa13722ad51e6ab1a1b9c01299142bc75135b337923cfa10e79bbbd669f00" 180dependencies = [ 181 "async-channel", 182 "async-io", 183 "async-lock", 184 "async-signal", 185 "async-task", 186 "blocking", 187 "cfg-if", 188 "event-listener", 189 "futures-lite", 190 "rustix", 191] 192 193[[package]] 194name = "async-recursion" 195version = "1.1.1" 196source = "registry+https://github.com/rust-lang/crates.io-index" 197checksum = "3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11" 198dependencies = [ 199 "proc-macro2", 200 "quote", 201 "syn 2.0.104", 202] 203 204[[package]] 205name = "async-signal" 206version = "0.2.12" 207source = "registry+https://github.com/rust-lang/crates.io-index" 208checksum = "f567af260ef69e1d52c2b560ce0ea230763e6fbb9214a85d768760a920e3e3c1" 209dependencies = [ 210 "async-io", 211 "async-lock", 212 "atomic-waker", 213 "cfg-if", 214 "futures-core", 215 "futures-io", 216 "rustix", 217 "signal-hook-registry", 218 "slab", 219 "windows-sys 0.60.2", 220] 221 222[[package]] 223name = "async-task" 224version = "4.7.1" 225source = "registry+https://github.com/rust-lang/crates.io-index" 226checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de" 227 228[[package]] 229name = "async-trait" 230version = "0.1.88" 231source = "registry+https://github.com/rust-lang/crates.io-index" 232checksum = "e539d3fca749fcee5236ab05e93a52867dd549cc157c8cb7f99595f3cedffdb5" 233dependencies = [ 234 "proc-macro2", 235 "quote", 236 "syn 2.0.104", 237] 238 239[[package]] 240name = "atk" 241version = "0.18.2" 242source = "registry+https://github.com/rust-lang/crates.io-index" 243checksum = "241b621213072e993be4f6f3a9e4b45f65b7e6faad43001be957184b7bb1824b" 244dependencies = [ 245 "atk-sys", 246 "glib", 247 "libc", 248] 249 250[[package]] 251name = "atk-sys" 252version = "0.18.2" 253source = "registry+https://github.com/rust-lang/crates.io-index" 254checksum = "c5e48b684b0ca77d2bbadeef17424c2ea3c897d44d566a1617e7e8f30614d086" 255dependencies = [ 256 "glib-sys", 257 "gobject-sys", 258 "libc", 259 "system-deps", 260] 261 262[[package]] 263name = "atomic-waker" 264version = "1.1.2" 265source = "registry+https://github.com/rust-lang/crates.io-index" 266checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" 267 268[[package]] 269name = "autocfg" 270version = "1.5.0" 271source = "registry+https://github.com/rust-lang/crates.io-index" 272checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8" 273 274[[package]] 275name = "av1-grain" 276version = "0.2.4" 277source = "registry+https://github.com/rust-lang/crates.io-index" 278checksum = "4f3efb2ca85bc610acfa917b5aaa36f3fcbebed5b3182d7f877b02531c4b80c8" 279dependencies = [ 280 "anyhow", 281 "arrayvec", 282 "log", 283 "nom", 284 "num-rational", 285 "v_frame", 286] 287 288[[package]] 289name = "avif-serialize" 290version = "0.8.5" 291source = "registry+https://github.com/rust-lang/crates.io-index" 292checksum = "2ea8ef51aced2b9191c08197f55450d830876d9933f8f48a429b354f1d496b42" 293dependencies = [ 294 "arrayvec", 295] 296 297[[package]] 298name = "backtrace" 299version = "0.3.75" 300source = "registry+https://github.com/rust-lang/crates.io-index" 301checksum = "6806a6321ec58106fea15becdad98371e28d92ccbc7c8f1b3b6dd724fe8f1002" 302dependencies = [ 303 "addr2line", 304 "cfg-if", 305 "libc", 306 "miniz_oxide", 307 "object", 308 "rustc-demangle", 309 "windows-targets 0.52.6", 310] 311 312[[package]] 313name = "base64" 314version = "0.21.7" 315source = "registry+https://github.com/rust-lang/crates.io-index" 316checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" 317 318[[package]] 319name = "base64" 320version = "0.22.1" 321source = "registry+https://github.com/rust-lang/crates.io-index" 322checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" 323 324[[package]] 325name = "bit_field" 326version = "0.10.2" 327source = "registry+https://github.com/rust-lang/crates.io-index" 328checksum = "dc827186963e592360843fb5ba4b973e145841266c1357f7180c43526f2e5b61" 329 330[[package]] 331name = "bitflags" 332version = "1.3.2" 333source = "registry+https://github.com/rust-lang/crates.io-index" 334checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 335 336[[package]] 337name = "bitflags" 338version = "2.9.1" 339source = "registry+https://github.com/rust-lang/crates.io-index" 340checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967" 341dependencies = [ 342 "serde", 343] 344 345[[package]] 346name = "bitstream-io" 347version = "2.6.0" 348source = "registry+https://github.com/rust-lang/crates.io-index" 349checksum = "6099cdc01846bc367c4e7dd630dc5966dccf36b652fae7a74e17b640411a91b2" 350 351[[package]] 352name = "block-buffer" 353version = "0.10.4" 354source = "registry+https://github.com/rust-lang/crates.io-index" 355checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 356dependencies = [ 357 "generic-array", 358] 359 360[[package]] 361name = "block2" 362version = "0.5.1" 363source = "registry+https://github.com/rust-lang/crates.io-index" 364checksum = "2c132eebf10f5cad5289222520a4a058514204aed6d791f1cf4fe8088b82d15f" 365dependencies = [ 366 "objc2 0.5.2", 367] 368 369[[package]] 370name = "block2" 371version = "0.6.1" 372source = "registry+https://github.com/rust-lang/crates.io-index" 373checksum = "340d2f0bdb2a43c1d3cd40513185b2bd7def0aa1052f956455114bc98f82dcf2" 374dependencies = [ 375 "objc2 0.6.1", 376] 377 378[[package]] 379name = "blocking" 380version = "1.6.2" 381source = "registry+https://github.com/rust-lang/crates.io-index" 382checksum = "e83f8d02be6967315521be875afa792a316e28d57b5a2d401897e2a7921b7f21" 383dependencies = [ 384 "async-channel", 385 "async-task", 386 "futures-io", 387 "futures-lite", 388 "piper", 389] 390 391[[package]] 392name = "brotli" 393version = "8.0.1" 394source = "registry+https://github.com/rust-lang/crates.io-index" 395checksum = "9991eea70ea4f293524138648e41ee89b0b2b12ddef3b255effa43c8056e0e0d" 396dependencies = [ 397 "alloc-no-stdlib", 398 "alloc-stdlib", 399 "brotli-decompressor", 400] 401 402[[package]] 403name = "brotli-decompressor" 404version = "5.0.0" 405source = "registry+https://github.com/rust-lang/crates.io-index" 406checksum = "874bb8112abecc98cbd6d81ea4fa7e94fb9449648c93cc89aa40c81c24d7de03" 407dependencies = [ 408 "alloc-no-stdlib", 409 "alloc-stdlib", 410] 411 412[[package]] 413name = "built" 414version = "0.7.7" 415source = "registry+https://github.com/rust-lang/crates.io-index" 416checksum = "56ed6191a7e78c36abdb16ab65341eefd73d64d303fffccdbb00d51e4205967b" 417 418[[package]] 419name = "bumpalo" 420version = "3.19.0" 421source = "registry+https://github.com/rust-lang/crates.io-index" 422checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43" 423 424[[package]] 425name = "bytemuck" 426version = "1.23.1" 427source = "registry+https://github.com/rust-lang/crates.io-index" 428checksum = "5c76a5792e44e4abe34d3abf15636779261d45a7450612059293d1d2cfc63422" 429 430[[package]] 431name = "byteorder" 432version = "1.5.0" 433source = "registry+https://github.com/rust-lang/crates.io-index" 434checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" 435 436[[package]] 437name = "byteorder-lite" 438version = "0.1.0" 439source = "registry+https://github.com/rust-lang/crates.io-index" 440checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495" 441 442[[package]] 443name = "bytes" 444version = "1.10.1" 445source = "registry+https://github.com/rust-lang/crates.io-index" 446checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a" 447dependencies = [ 448 "serde", 449] 450 451[[package]] 452name = "cairo-rs" 453version = "0.18.5" 454source = "registry+https://github.com/rust-lang/crates.io-index" 455checksum = "8ca26ef0159422fb77631dc9d17b102f253b876fe1586b03b803e63a309b4ee2" 456dependencies = [ 457 "bitflags 2.9.1", 458 "cairo-sys-rs", 459 "glib", 460 "libc", 461 "once_cell", 462 "thiserror 1.0.69", 463] 464 465[[package]] 466name = "cairo-sys-rs" 467version = "0.18.2" 468source = "registry+https://github.com/rust-lang/crates.io-index" 469checksum = "685c9fa8e590b8b3d678873528d83411db17242a73fccaed827770ea0fedda51" 470dependencies = [ 471 "glib-sys", 472 "libc", 473 "system-deps", 474] 475 476[[package]] 477name = "camino" 478version = "1.1.10" 479source = "registry+https://github.com/rust-lang/crates.io-index" 480checksum = "0da45bc31171d8d6960122e222a67740df867c1dd53b4d51caa297084c185cab" 481dependencies = [ 482 "serde", 483] 484 485[[package]] 486name = "cargo-platform" 487version = "0.1.9" 488source = "registry+https://github.com/rust-lang/crates.io-index" 489checksum = "e35af189006b9c0f00a064685c727031e3ed2d8020f7ba284d78cc2671bd36ea" 490dependencies = [ 491 "serde", 492] 493 494[[package]] 495name = "cargo_metadata" 496version = "0.19.2" 497source = "registry+https://github.com/rust-lang/crates.io-index" 498checksum = "dd5eb614ed4c27c5d706420e4320fbe3216ab31fa1c33cd8246ac36dae4479ba" 499dependencies = [ 500 "camino", 501 "cargo-platform", 502 "semver", 503 "serde", 504 "serde_json", 505 "thiserror 2.0.12", 506] 507 508[[package]] 509name = "cargo_toml" 510version = "0.22.3" 511source = "registry+https://github.com/rust-lang/crates.io-index" 512checksum = "374b7c592d9c00c1f4972ea58390ac6b18cbb6ab79011f3bdc90a0b82ca06b77" 513dependencies = [ 514 "serde", 515 "toml 0.9.4", 516] 517 518[[package]] 519name = "cc" 520version = "1.2.30" 521source = "registry+https://github.com/rust-lang/crates.io-index" 522checksum = "deec109607ca693028562ed836a5f1c4b8bd77755c4e132fc5ce11b0b6211ae7" 523dependencies = [ 524 "jobserver", 525 "libc", 526 "shlex", 527] 528 529[[package]] 530name = "cesu8" 531version = "1.1.0" 532source = "registry+https://github.com/rust-lang/crates.io-index" 533checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c" 534 535[[package]] 536name = "cfb" 537version = "0.7.3" 538source = "registry+https://github.com/rust-lang/crates.io-index" 539checksum = "d38f2da7a0a2c4ccf0065be06397cc26a81f4e528be095826eee9d4adbb8c60f" 540dependencies = [ 541 "byteorder", 542 "fnv", 543 "uuid", 544] 545 546[[package]] 547name = "cfg-expr" 548version = "0.15.8" 549source = "registry+https://github.com/rust-lang/crates.io-index" 550checksum = "d067ad48b8650848b989a59a86c6c36a995d02d2bf778d45c3c5d57bc2718f02" 551dependencies = [ 552 "smallvec", 553 "target-lexicon", 554] 555 556[[package]] 557name = "cfg-if" 558version = "1.0.1" 559source = "registry+https://github.com/rust-lang/crates.io-index" 560checksum = "9555578bc9e57714c812a1f84e4fc5b4d21fcb063490c624de019f7464c91268" 561 562[[package]] 563name = "cfg_aliases" 564version = "0.2.1" 565source = "registry+https://github.com/rust-lang/crates.io-index" 566checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" 567 568[[package]] 569name = "chrono" 570version = "0.4.41" 571source = "registry+https://github.com/rust-lang/crates.io-index" 572checksum = "c469d952047f47f91b68d1cba3f10d63c11d73e4636f24f08daf0278abf01c4d" 573dependencies = [ 574 "android-tzdata", 575 "iana-time-zone", 576 "num-traits", 577 "serde", 578 "windows-link", 579] 580 581[[package]] 582name = "color_quant" 583version = "1.1.0" 584source = "registry+https://github.com/rust-lang/crates.io-index" 585checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b" 586 587[[package]] 588name = "combine" 589version = "4.6.7" 590source = "registry+https://github.com/rust-lang/crates.io-index" 591checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd" 592dependencies = [ 593 "bytes", 594 "memchr", 595] 596 597[[package]] 598name = "concurrent-queue" 599version = "2.5.0" 600source = "registry+https://github.com/rust-lang/crates.io-index" 601checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973" 602dependencies = [ 603 "crossbeam-utils", 604] 605 606[[package]] 607name = "const-random" 608version = "0.1.18" 609source = "registry+https://github.com/rust-lang/crates.io-index" 610checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359" 611dependencies = [ 612 "const-random-macro", 613] 614 615[[package]] 616name = "const-random-macro" 617version = "0.1.16" 618source = "registry+https://github.com/rust-lang/crates.io-index" 619checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e" 620dependencies = [ 621 "getrandom 0.2.16", 622 "once_cell", 623 "tiny-keccak", 624] 625 626[[package]] 627name = "convert_case" 628version = "0.4.0" 629source = "registry+https://github.com/rust-lang/crates.io-index" 630checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e" 631 632[[package]] 633name = "cookie" 634version = "0.18.1" 635source = "registry+https://github.com/rust-lang/crates.io-index" 636checksum = "4ddef33a339a91ea89fb53151bd0a4689cfce27055c291dfa69945475d22c747" 637dependencies = [ 638 "percent-encoding", 639 "time", 640 "version_check", 641] 642 643[[package]] 644name = "cookie_store" 645version = "0.21.1" 646source = "registry+https://github.com/rust-lang/crates.io-index" 647checksum = "2eac901828f88a5241ee0600950ab981148a18f2f756900ffba1b125ca6a3ef9" 648dependencies = [ 649 "cookie", 650 "document-features", 651 "idna", 652 "log", 653 "publicsuffix", 654 "serde", 655 "serde_derive", 656 "serde_json", 657 "time", 658 "url", 659] 660 661[[package]] 662name = "core-foundation" 663version = "0.9.4" 664source = "registry+https://github.com/rust-lang/crates.io-index" 665checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" 666dependencies = [ 667 "core-foundation-sys", 668 "libc", 669] 670 671[[package]] 672name = "core-foundation" 673version = "0.10.1" 674source = "registry+https://github.com/rust-lang/crates.io-index" 675checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6" 676dependencies = [ 677 "core-foundation-sys", 678 "libc", 679] 680 681[[package]] 682name = "core-foundation-sys" 683version = "0.8.7" 684source = "registry+https://github.com/rust-lang/crates.io-index" 685checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" 686 687[[package]] 688name = "core-graphics" 689version = "0.24.0" 690source = "registry+https://github.com/rust-lang/crates.io-index" 691checksum = "fa95a34622365fa5bbf40b20b75dba8dfa8c94c734aea8ac9a5ca38af14316f1" 692dependencies = [ 693 "bitflags 2.9.1", 694 "core-foundation 0.10.1", 695 "core-graphics-types", 696 "foreign-types 0.5.0", 697 "libc", 698] 699 700[[package]] 701name = "core-graphics-types" 702version = "0.2.0" 703source = "registry+https://github.com/rust-lang/crates.io-index" 704checksum = "3d44a101f213f6c4cdc1853d4b78aef6db6bdfa3468798cc1d9912f4735013eb" 705dependencies = [ 706 "bitflags 2.9.1", 707 "core-foundation 0.10.1", 708 "libc", 709] 710 711[[package]] 712name = "cpufeatures" 713version = "0.2.17" 714source = "registry+https://github.com/rust-lang/crates.io-index" 715checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280" 716dependencies = [ 717 "libc", 718] 719 720[[package]] 721name = "crc32fast" 722version = "1.5.0" 723source = "registry+https://github.com/rust-lang/crates.io-index" 724checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511" 725dependencies = [ 726 "cfg-if", 727] 728 729[[package]] 730name = "crossbeam-channel" 731version = "0.5.15" 732source = "registry+https://github.com/rust-lang/crates.io-index" 733checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2" 734dependencies = [ 735 "crossbeam-utils", 736] 737 738[[package]] 739name = "crossbeam-deque" 740version = "0.8.6" 741source = "registry+https://github.com/rust-lang/crates.io-index" 742checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51" 743dependencies = [ 744 "crossbeam-epoch", 745 "crossbeam-utils", 746] 747 748[[package]] 749name = "crossbeam-epoch" 750version = "0.9.18" 751source = "registry+https://github.com/rust-lang/crates.io-index" 752checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" 753dependencies = [ 754 "crossbeam-utils", 755] 756 757[[package]] 758name = "crossbeam-utils" 759version = "0.8.21" 760source = "registry+https://github.com/rust-lang/crates.io-index" 761checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28" 762 763[[package]] 764name = "crunchy" 765version = "0.2.4" 766source = "registry+https://github.com/rust-lang/crates.io-index" 767checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5" 768 769[[package]] 770name = "crypto-common" 771version = "0.1.6" 772source = "registry+https://github.com/rust-lang/crates.io-index" 773checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 774dependencies = [ 775 "generic-array", 776 "typenum", 777] 778 779[[package]] 780name = "cssparser" 781version = "0.29.6" 782source = "registry+https://github.com/rust-lang/crates.io-index" 783checksum = "f93d03419cb5950ccfd3daf3ff1c7a36ace64609a1a8746d493df1ca0afde0fa" 784dependencies = [ 785 "cssparser-macros", 786 "dtoa-short", 787 "itoa", 788 "matches", 789 "phf 0.10.1", 790 "proc-macro2", 791 "quote", 792 "smallvec", 793 "syn 1.0.109", 794] 795 796[[package]] 797name = "cssparser-macros" 798version = "0.6.1" 799source = "registry+https://github.com/rust-lang/crates.io-index" 800checksum = "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331" 801dependencies = [ 802 "quote", 803 "syn 2.0.104", 804] 805 806[[package]] 807name = "ctor" 808version = "0.2.9" 809source = "registry+https://github.com/rust-lang/crates.io-index" 810checksum = "32a2785755761f3ddc1492979ce1e48d2c00d09311c39e4466429188f3dd6501" 811dependencies = [ 812 "quote", 813 "syn 2.0.104", 814] 815 816[[package]] 817name = "darling" 818version = "0.20.11" 819source = "registry+https://github.com/rust-lang/crates.io-index" 820checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee" 821dependencies = [ 822 "darling_core", 823 "darling_macro", 824] 825 826[[package]] 827name = "darling_core" 828version = "0.20.11" 829source = "registry+https://github.com/rust-lang/crates.io-index" 830checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e" 831dependencies = [ 832 "fnv", 833 "ident_case", 834 "proc-macro2", 835 "quote", 836 "strsim", 837 "syn 2.0.104", 838] 839 840[[package]] 841name = "darling_macro" 842version = "0.20.11" 843source = "registry+https://github.com/rust-lang/crates.io-index" 844checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead" 845dependencies = [ 846 "darling_core", 847 "quote", 848 "syn 2.0.104", 849] 850 851[[package]] 852name = "data-url" 853version = "0.3.1" 854source = "registry+https://github.com/rust-lang/crates.io-index" 855checksum = "5c297a1c74b71ae29df00c3e22dd9534821d60eb9af5a0192823fa2acea70c2a" 856 857[[package]] 858name = "deranged" 859version = "0.4.0" 860source = "registry+https://github.com/rust-lang/crates.io-index" 861checksum = "9c9e6a11ca8224451684bc0d7d5a7adbf8f2fd6887261a1cfc3c0432f9d4068e" 862dependencies = [ 863 "powerfmt", 864 "serde", 865] 866 867[[package]] 868name = "derivative" 869version = "2.2.0" 870source = "registry+https://github.com/rust-lang/crates.io-index" 871checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b" 872dependencies = [ 873 "proc-macro2", 874 "quote", 875 "syn 1.0.109", 876] 877 878[[package]] 879name = "derive_more" 880version = "0.99.20" 881source = "registry+https://github.com/rust-lang/crates.io-index" 882checksum = "6edb4b64a43d977b8e99788fe3a04d483834fba1215a7e02caa415b626497f7f" 883dependencies = [ 884 "convert_case", 885 "proc-macro2", 886 "quote", 887 "rustc_version", 888 "syn 2.0.104", 889] 890 891[[package]] 892name = "digest" 893version = "0.10.7" 894source = "registry+https://github.com/rust-lang/crates.io-index" 895checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" 896dependencies = [ 897 "block-buffer", 898 "crypto-common", 899] 900 901[[package]] 902name = "dirs" 903version = "5.0.1" 904source = "registry+https://github.com/rust-lang/crates.io-index" 905checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225" 906dependencies = [ 907 "dirs-sys 0.4.1", 908] 909 910[[package]] 911name = "dirs" 912version = "6.0.0" 913source = "registry+https://github.com/rust-lang/crates.io-index" 914checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e" 915dependencies = [ 916 "dirs-sys 0.5.0", 917] 918 919[[package]] 920name = "dirs-sys" 921version = "0.4.1" 922source = "registry+https://github.com/rust-lang/crates.io-index" 923checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c" 924dependencies = [ 925 "libc", 926 "option-ext", 927 "redox_users 0.4.6", 928 "windows-sys 0.48.0", 929] 930 931[[package]] 932name = "dirs-sys" 933version = "0.5.0" 934source = "registry+https://github.com/rust-lang/crates.io-index" 935checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab" 936dependencies = [ 937 "libc", 938 "option-ext", 939 "redox_users 0.5.2", 940 "windows-sys 0.60.2", 941] 942 943[[package]] 944name = "dispatch" 945version = "0.2.0" 946source = "registry+https://github.com/rust-lang/crates.io-index" 947checksum = "bd0c93bb4b0c6d9b77f4435b0ae98c24d17f1c45b2ff844c6151a07256ca923b" 948 949[[package]] 950name = "dispatch2" 951version = "0.3.0" 952source = "registry+https://github.com/rust-lang/crates.io-index" 953checksum = "89a09f22a6c6069a18470eb92d2298acf25463f14256d24778e1230d789a2aec" 954dependencies = [ 955 "bitflags 2.9.1", 956 "objc2 0.6.1", 957] 958 959[[package]] 960name = "displaydoc" 961version = "0.2.5" 962source = "registry+https://github.com/rust-lang/crates.io-index" 963checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" 964dependencies = [ 965 "proc-macro2", 966 "quote", 967 "syn 2.0.104", 968] 969 970[[package]] 971name = "dlopen2" 972version = "0.7.0" 973source = "registry+https://github.com/rust-lang/crates.io-index" 974checksum = "9e1297103d2bbaea85724fcee6294c2d50b1081f9ad47d0f6f6f61eda65315a6" 975dependencies = [ 976 "dlopen2_derive", 977 "libc", 978 "once_cell", 979 "winapi", 980] 981 982[[package]] 983name = "dlopen2_derive" 984version = "0.4.1" 985source = "registry+https://github.com/rust-lang/crates.io-index" 986checksum = "788160fb30de9cdd857af31c6a2675904b16ece8fc2737b2c7127ba368c9d0f4" 987dependencies = [ 988 "proc-macro2", 989 "quote", 990 "syn 2.0.104", 991] 992 993[[package]] 994name = "dlv-list" 995version = "0.5.2" 996source = "registry+https://github.com/rust-lang/crates.io-index" 997checksum = "442039f5147480ba31067cb00ada1adae6892028e40e45fc5de7b7df6dcc1b5f" 998dependencies = [ 999 "const-random", 1000] 1001 1002[[package]] 1003name = "document-features" 1004version = "0.2.11" 1005source = "registry+https://github.com/rust-lang/crates.io-index" 1006checksum = "95249b50c6c185bee49034bcb378a49dc2b5dff0be90ff6616d31d64febab05d" 1007dependencies = [ 1008 "litrs", 1009] 1010 1011[[package]] 1012name = "dpi" 1013version = "0.1.2" 1014source = "registry+https://github.com/rust-lang/crates.io-index" 1015checksum = "d8b14ccef22fc6f5a8f4d7d768562a182c04ce9a3b3157b91390b52ddfdf1a76" 1016dependencies = [ 1017 "serde", 1018] 1019 1020[[package]] 1021name = "dtoa" 1022version = "1.0.10" 1023source = "registry+https://github.com/rust-lang/crates.io-index" 1024checksum = "d6add3b8cff394282be81f3fc1a0605db594ed69890078ca6e2cab1c408bcf04" 1025 1026[[package]] 1027name = "dtoa-short" 1028version = "0.3.5" 1029source = "registry+https://github.com/rust-lang/crates.io-index" 1030checksum = "cd1511a7b6a56299bd043a9c167a6d2bfb37bf84a6dfceaba651168adfb43c87" 1031dependencies = [ 1032 "dtoa", 1033] 1034 1035[[package]] 1036name = "dunce" 1037version = "1.0.5" 1038source = "registry+https://github.com/rust-lang/crates.io-index" 1039checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813" 1040 1041[[package]] 1042name = "dyn-clone" 1043version = "1.0.20" 1044source = "registry+https://github.com/rust-lang/crates.io-index" 1045checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555" 1046 1047[[package]] 1048name = "either" 1049version = "1.15.0" 1050source = "registry+https://github.com/rust-lang/crates.io-index" 1051checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719" 1052 1053[[package]] 1054name = "embed-resource" 1055version = "3.0.5" 1056source = "registry+https://github.com/rust-lang/crates.io-index" 1057checksum = "4c6d81016d6c977deefb2ef8d8290da019e27cc26167e102185da528e6c0ab38" 1058dependencies = [ 1059 "cc", 1060 "memchr", 1061 "rustc_version", 1062 "toml 0.9.4", 1063 "vswhom", 1064 "winreg", 1065] 1066 1067[[package]] 1068name = "embed_plist" 1069version = "1.2.2" 1070source = "registry+https://github.com/rust-lang/crates.io-index" 1071checksum = "4ef6b89e5b37196644d8796de5268852ff179b44e96276cf4290264843743bb7" 1072 1073[[package]] 1074name = "encoding_rs" 1075version = "0.8.35" 1076source = "registry+https://github.com/rust-lang/crates.io-index" 1077checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3" 1078dependencies = [ 1079 "cfg-if", 1080] 1081 1082[[package]] 1083name = "endi" 1084version = "1.1.0" 1085source = "registry+https://github.com/rust-lang/crates.io-index" 1086checksum = "a3d8a32ae18130a3c84dd492d4215c3d913c3b07c6b63c2eb3eb7ff1101ab7bf" 1087 1088[[package]] 1089name = "enumflags2" 1090version = "0.7.12" 1091source = "registry+https://github.com/rust-lang/crates.io-index" 1092checksum = "1027f7680c853e056ebcec683615fb6fbbc07dbaa13b4d5d9442b146ded4ecef" 1093dependencies = [ 1094 "enumflags2_derive", 1095 "serde", 1096] 1097 1098[[package]] 1099name = "enumflags2_derive" 1100version = "0.7.12" 1101source = "registry+https://github.com/rust-lang/crates.io-index" 1102checksum = "67c78a4d8fdf9953a5c9d458f9efe940fd97a0cab0941c075a813ac594733827" 1103dependencies = [ 1104 "proc-macro2", 1105 "quote", 1106 "syn 2.0.104", 1107] 1108 1109[[package]] 1110name = "equator" 1111version = "0.4.2" 1112source = "registry+https://github.com/rust-lang/crates.io-index" 1113checksum = "4711b213838dfee0117e3be6ac926007d7f433d7bbe33595975d4190cb07e6fc" 1114dependencies = [ 1115 "equator-macro", 1116] 1117 1118[[package]] 1119name = "equator-macro" 1120version = "0.4.2" 1121source = "registry+https://github.com/rust-lang/crates.io-index" 1122checksum = "44f23cf4b44bfce11a86ace86f8a73ffdec849c9fd00a386a53d278bd9e81fb3" 1123dependencies = [ 1124 "proc-macro2", 1125 "quote", 1126 "syn 2.0.104", 1127] 1128 1129[[package]] 1130name = "equivalent" 1131version = "1.0.2" 1132source = "registry+https://github.com/rust-lang/crates.io-index" 1133checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" 1134 1135[[package]] 1136name = "erased-serde" 1137version = "0.4.6" 1138source = "registry+https://github.com/rust-lang/crates.io-index" 1139checksum = "e004d887f51fcb9fef17317a2f3525c887d8aa3f4f50fed920816a688284a5b7" 1140dependencies = [ 1141 "serde", 1142 "typeid", 1143] 1144 1145[[package]] 1146name = "errno" 1147version = "0.3.13" 1148source = "registry+https://github.com/rust-lang/crates.io-index" 1149checksum = "778e2ac28f6c47af28e4907f13ffd1e1ddbd400980a9abd7c8df189bf578a5ad" 1150dependencies = [ 1151 "libc", 1152 "windows-sys 0.60.2", 1153] 1154 1155[[package]] 1156name = "event-listener" 1157version = "5.4.0" 1158source = "registry+https://github.com/rust-lang/crates.io-index" 1159checksum = "3492acde4c3fc54c845eaab3eed8bd00c7a7d881f78bfc801e43a93dec1331ae" 1160dependencies = [ 1161 "concurrent-queue", 1162 "parking", 1163 "pin-project-lite", 1164] 1165 1166[[package]] 1167name = "event-listener-strategy" 1168version = "0.5.4" 1169source = "registry+https://github.com/rust-lang/crates.io-index" 1170checksum = "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93" 1171dependencies = [ 1172 "event-listener", 1173 "pin-project-lite", 1174] 1175 1176[[package]] 1177name = "exr" 1178version = "1.73.0" 1179source = "registry+https://github.com/rust-lang/crates.io-index" 1180checksum = "f83197f59927b46c04a183a619b7c29df34e63e63c7869320862268c0ef687e0" 1181dependencies = [ 1182 "bit_field", 1183 "half", 1184 "lebe", 1185 "miniz_oxide", 1186 "rayon-core", 1187 "smallvec", 1188 "zune-inflate", 1189] 1190 1191[[package]] 1192name = "fast_image_resize" 1193version = "4.2.3" 1194source = "registry+https://github.com/rust-lang/crates.io-index" 1195checksum = "43e5ce628b529e9bd2e2f378c1193215104b526fd494a572aa23414adc4e5553" 1196dependencies = [ 1197 "bytemuck", 1198 "cfg-if", 1199 "document-features", 1200 "image", 1201 "num-traits", 1202 "thiserror 1.0.69", 1203] 1204 1205[[package]] 1206name = "fastrand" 1207version = "2.3.0" 1208source = "registry+https://github.com/rust-lang/crates.io-index" 1209checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be" 1210 1211[[package]] 1212name = "fdeflate" 1213version = "0.3.7" 1214source = "registry+https://github.com/rust-lang/crates.io-index" 1215checksum = "1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c" 1216dependencies = [ 1217 "simd-adler32", 1218] 1219 1220[[package]] 1221name = "field-offset" 1222version = "0.3.6" 1223source = "registry+https://github.com/rust-lang/crates.io-index" 1224checksum = "38e2275cc4e4fc009b0669731a1e5ab7ebf11f469eaede2bab9309a5b4d6057f" 1225dependencies = [ 1226 "memoffset", 1227 "rustc_version", 1228] 1229 1230[[package]] 1231name = "filetime" 1232version = "0.2.25" 1233source = "registry+https://github.com/rust-lang/crates.io-index" 1234checksum = "35c0522e981e68cbfa8c3f978441a5f34b30b96e146b33cd3359176b50fe8586" 1235dependencies = [ 1236 "cfg-if", 1237 "libc", 1238 "libredox", 1239 "windows-sys 0.59.0", 1240] 1241 1242[[package]] 1243name = "flate2" 1244version = "1.1.2" 1245source = "registry+https://github.com/rust-lang/crates.io-index" 1246checksum = "4a3d7db9596fecd151c5f638c0ee5d5bd487b6e0ea232e5dc96d5250f6f94b1d" 1247dependencies = [ 1248 "crc32fast", 1249 "miniz_oxide", 1250] 1251 1252[[package]] 1253name = "fnv" 1254version = "1.0.7" 1255source = "registry+https://github.com/rust-lang/crates.io-index" 1256checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 1257 1258[[package]] 1259name = "foreign-types" 1260version = "0.3.2" 1261source = "registry+https://github.com/rust-lang/crates.io-index" 1262checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" 1263dependencies = [ 1264 "foreign-types-shared 0.1.1", 1265] 1266 1267[[package]] 1268name = "foreign-types" 1269version = "0.5.0" 1270source = "registry+https://github.com/rust-lang/crates.io-index" 1271checksum = "d737d9aa519fb7b749cbc3b962edcf310a8dd1f4b67c91c4f83975dbdd17d965" 1272dependencies = [ 1273 "foreign-types-macros", 1274 "foreign-types-shared 0.3.1", 1275] 1276 1277[[package]] 1278name = "foreign-types-macros" 1279version = "0.2.3" 1280source = "registry+https://github.com/rust-lang/crates.io-index" 1281checksum = "1a5c6c585bc94aaf2c7b51dd4c2ba22680844aba4c687be581871a6f518c5742" 1282dependencies = [ 1283 "proc-macro2", 1284 "quote", 1285 "syn 2.0.104", 1286] 1287 1288[[package]] 1289name = "foreign-types-shared" 1290version = "0.1.1" 1291source = "registry+https://github.com/rust-lang/crates.io-index" 1292checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" 1293 1294[[package]] 1295name = "foreign-types-shared" 1296version = "0.3.1" 1297source = "registry+https://github.com/rust-lang/crates.io-index" 1298checksum = "aa9a19cbb55df58761df49b23516a86d432839add4af60fc256da840f66ed35b" 1299 1300[[package]] 1301name = "form_urlencoded" 1302version = "1.2.1" 1303source = "registry+https://github.com/rust-lang/crates.io-index" 1304checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456" 1305dependencies = [ 1306 "percent-encoding", 1307] 1308 1309[[package]] 1310name = "fsevent-sys" 1311version = "4.1.0" 1312source = "registry+https://github.com/rust-lang/crates.io-index" 1313checksum = "76ee7a02da4d231650c7cea31349b889be2f45ddb3ef3032d2ec8185f6313fd2" 1314dependencies = [ 1315 "libc", 1316] 1317 1318[[package]] 1319name = "futf" 1320version = "0.1.5" 1321source = "registry+https://github.com/rust-lang/crates.io-index" 1322checksum = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843" 1323dependencies = [ 1324 "mac", 1325 "new_debug_unreachable", 1326] 1327 1328[[package]] 1329name = "futures-channel" 1330version = "0.3.31" 1331source = "registry+https://github.com/rust-lang/crates.io-index" 1332checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10" 1333dependencies = [ 1334 "futures-core", 1335 "futures-sink", 1336] 1337 1338[[package]] 1339name = "futures-core" 1340version = "0.3.31" 1341source = "registry+https://github.com/rust-lang/crates.io-index" 1342checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e" 1343 1344[[package]] 1345name = "futures-executor" 1346version = "0.3.31" 1347source = "registry+https://github.com/rust-lang/crates.io-index" 1348checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f" 1349dependencies = [ 1350 "futures-core", 1351 "futures-task", 1352 "futures-util", 1353] 1354 1355[[package]] 1356name = "futures-io" 1357version = "0.3.31" 1358source = "registry+https://github.com/rust-lang/crates.io-index" 1359checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6" 1360 1361[[package]] 1362name = "futures-lite" 1363version = "2.6.0" 1364source = "registry+https://github.com/rust-lang/crates.io-index" 1365checksum = "f5edaec856126859abb19ed65f39e90fea3a9574b9707f13539acf4abf7eb532" 1366dependencies = [ 1367 "fastrand", 1368 "futures-core", 1369 "futures-io", 1370 "parking", 1371 "pin-project-lite", 1372] 1373 1374[[package]] 1375name = "futures-macro" 1376version = "0.3.31" 1377source = "registry+https://github.com/rust-lang/crates.io-index" 1378checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650" 1379dependencies = [ 1380 "proc-macro2", 1381 "quote", 1382 "syn 2.0.104", 1383] 1384 1385[[package]] 1386name = "futures-sink" 1387version = "0.3.31" 1388source = "registry+https://github.com/rust-lang/crates.io-index" 1389checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7" 1390 1391[[package]] 1392name = "futures-task" 1393version = "0.3.31" 1394source = "registry+https://github.com/rust-lang/crates.io-index" 1395checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988" 1396 1397[[package]] 1398name = "futures-util" 1399version = "0.3.31" 1400source = "registry+https://github.com/rust-lang/crates.io-index" 1401checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81" 1402dependencies = [ 1403 "futures-core", 1404 "futures-io", 1405 "futures-macro", 1406 "futures-sink", 1407 "futures-task", 1408 "memchr", 1409 "pin-project-lite", 1410 "pin-utils", 1411 "slab", 1412] 1413 1414[[package]] 1415name = "fxhash" 1416version = "0.2.1" 1417source = "registry+https://github.com/rust-lang/crates.io-index" 1418checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c" 1419dependencies = [ 1420 "byteorder", 1421] 1422 1423[[package]] 1424name = "gdk" 1425version = "0.18.2" 1426source = "registry+https://github.com/rust-lang/crates.io-index" 1427checksum = "d9f245958c627ac99d8e529166f9823fb3b838d1d41fd2b297af3075093c2691" 1428dependencies = [ 1429 "cairo-rs", 1430 "gdk-pixbuf", 1431 "gdk-sys", 1432 "gio", 1433 "glib", 1434 "libc", 1435 "pango", 1436] 1437 1438[[package]] 1439name = "gdk-pixbuf" 1440version = "0.18.5" 1441source = "registry+https://github.com/rust-lang/crates.io-index" 1442checksum = "50e1f5f1b0bfb830d6ccc8066d18db35c487b1b2b1e8589b5dfe9f07e8defaec" 1443dependencies = [ 1444 "gdk-pixbuf-sys", 1445 "gio", 1446 "glib", 1447 "libc", 1448 "once_cell", 1449] 1450 1451[[package]] 1452name = "gdk-pixbuf-sys" 1453version = "0.18.0" 1454source = "registry+https://github.com/rust-lang/crates.io-index" 1455checksum = "3f9839ea644ed9c97a34d129ad56d38a25e6756f99f3a88e15cd39c20629caf7" 1456dependencies = [ 1457 "gio-sys", 1458 "glib-sys", 1459 "gobject-sys", 1460 "libc", 1461 "system-deps", 1462] 1463 1464[[package]] 1465name = "gdk-sys" 1466version = "0.18.2" 1467source = "registry+https://github.com/rust-lang/crates.io-index" 1468checksum = "5c2d13f38594ac1e66619e188c6d5a1adb98d11b2fcf7894fc416ad76aa2f3f7" 1469dependencies = [ 1470 "cairo-sys-rs", 1471 "gdk-pixbuf-sys", 1472 "gio-sys", 1473 "glib-sys", 1474 "gobject-sys", 1475 "libc", 1476 "pango-sys", 1477 "pkg-config", 1478 "system-deps", 1479] 1480 1481[[package]] 1482name = "gdkwayland-sys" 1483version = "0.18.2" 1484source = "registry+https://github.com/rust-lang/crates.io-index" 1485checksum = "140071d506d223f7572b9f09b5e155afbd77428cd5cc7af8f2694c41d98dfe69" 1486dependencies = [ 1487 "gdk-sys", 1488 "glib-sys", 1489 "gobject-sys", 1490 "libc", 1491 "pkg-config", 1492 "system-deps", 1493] 1494 1495[[package]] 1496name = "gdkx11" 1497version = "0.18.2" 1498source = "registry+https://github.com/rust-lang/crates.io-index" 1499checksum = "3caa00e14351bebbc8183b3c36690327eb77c49abc2268dd4bd36b856db3fbfe" 1500dependencies = [ 1501 "gdk", 1502 "gdkx11-sys", 1503 "gio", 1504 "glib", 1505 "libc", 1506 "x11", 1507] 1508 1509[[package]] 1510name = "gdkx11-sys" 1511version = "0.18.2" 1512source = "registry+https://github.com/rust-lang/crates.io-index" 1513checksum = "6e2e7445fe01ac26f11601db260dd8608fe172514eb63b3b5e261ea6b0f4428d" 1514dependencies = [ 1515 "gdk-sys", 1516 "glib-sys", 1517 "libc", 1518 "system-deps", 1519 "x11", 1520] 1521 1522[[package]] 1523name = "generic-array" 1524version = "0.14.7" 1525source = "registry+https://github.com/rust-lang/crates.io-index" 1526checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" 1527dependencies = [ 1528 "typenum", 1529 "version_check", 1530] 1531 1532[[package]] 1533name = "getrandom" 1534version = "0.1.16" 1535source = "registry+https://github.com/rust-lang/crates.io-index" 1536checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce" 1537dependencies = [ 1538 "cfg-if", 1539 "libc", 1540 "wasi 0.9.0+wasi-snapshot-preview1", 1541] 1542 1543[[package]] 1544name = "getrandom" 1545version = "0.2.16" 1546source = "registry+https://github.com/rust-lang/crates.io-index" 1547checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592" 1548dependencies = [ 1549 "cfg-if", 1550 "js-sys", 1551 "libc", 1552 "wasi 0.11.1+wasi-snapshot-preview1", 1553 "wasm-bindgen", 1554] 1555 1556[[package]] 1557name = "getrandom" 1558version = "0.3.3" 1559source = "registry+https://github.com/rust-lang/crates.io-index" 1560checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4" 1561dependencies = [ 1562 "cfg-if", 1563 "js-sys", 1564 "libc", 1565 "r-efi", 1566 "wasi 0.14.2+wasi-0.2.4", 1567 "wasm-bindgen", 1568] 1569 1570[[package]] 1571name = "gif" 1572version = "0.13.3" 1573source = "registry+https://github.com/rust-lang/crates.io-index" 1574checksum = "4ae047235e33e2829703574b54fdec96bfbad892062d97fed2f76022287de61b" 1575dependencies = [ 1576 "color_quant", 1577 "weezl", 1578] 1579 1580[[package]] 1581name = "gimli" 1582version = "0.31.1" 1583source = "registry+https://github.com/rust-lang/crates.io-index" 1584checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f" 1585 1586[[package]] 1587name = "gio" 1588version = "0.18.4" 1589source = "registry+https://github.com/rust-lang/crates.io-index" 1590checksum = "d4fc8f532f87b79cbc51a79748f16a6828fb784be93145a322fa14d06d354c73" 1591dependencies = [ 1592 "futures-channel", 1593 "futures-core", 1594 "futures-io", 1595 "futures-util", 1596 "gio-sys", 1597 "glib", 1598 "libc", 1599 "once_cell", 1600 "pin-project-lite", 1601 "smallvec", 1602 "thiserror 1.0.69", 1603] 1604 1605[[package]] 1606name = "gio-sys" 1607version = "0.18.1" 1608source = "registry+https://github.com/rust-lang/crates.io-index" 1609checksum = "37566df850baf5e4cb0dfb78af2e4b9898d817ed9263d1090a2df958c64737d2" 1610dependencies = [ 1611 "glib-sys", 1612 "gobject-sys", 1613 "libc", 1614 "system-deps", 1615 "winapi", 1616] 1617 1618[[package]] 1619name = "glib" 1620version = "0.18.5" 1621source = "registry+https://github.com/rust-lang/crates.io-index" 1622checksum = "233daaf6e83ae6a12a52055f568f9d7cf4671dabb78ff9560ab6da230ce00ee5" 1623dependencies = [ 1624 "bitflags 2.9.1", 1625 "futures-channel", 1626 "futures-core", 1627 "futures-executor", 1628 "futures-task", 1629 "futures-util", 1630 "gio-sys", 1631 "glib-macros", 1632 "glib-sys", 1633 "gobject-sys", 1634 "libc", 1635 "memchr", 1636 "once_cell", 1637 "smallvec", 1638 "thiserror 1.0.69", 1639] 1640 1641[[package]] 1642name = "glib-macros" 1643version = "0.18.5" 1644source = "registry+https://github.com/rust-lang/crates.io-index" 1645checksum = "0bb0228f477c0900c880fd78c8759b95c7636dbd7842707f49e132378aa2acdc" 1646dependencies = [ 1647 "heck 0.4.1", 1648 "proc-macro-crate 2.0.2", 1649 "proc-macro-error", 1650 "proc-macro2", 1651 "quote", 1652 "syn 2.0.104", 1653] 1654 1655[[package]] 1656name = "glib-sys" 1657version = "0.18.1" 1658source = "registry+https://github.com/rust-lang/crates.io-index" 1659checksum = "063ce2eb6a8d0ea93d2bf8ba1957e78dbab6be1c2220dd3daca57d5a9d869898" 1660dependencies = [ 1661 "libc", 1662 "system-deps", 1663] 1664 1665[[package]] 1666name = "glob" 1667version = "0.3.2" 1668source = "registry+https://github.com/rust-lang/crates.io-index" 1669checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2" 1670 1671[[package]] 1672name = "gobject-sys" 1673version = "0.18.0" 1674source = "registry+https://github.com/rust-lang/crates.io-index" 1675checksum = "0850127b514d1c4a4654ead6dedadb18198999985908e6ffe4436f53c785ce44" 1676dependencies = [ 1677 "glib-sys", 1678 "libc", 1679 "system-deps", 1680] 1681 1682[[package]] 1683name = "gtk" 1684version = "0.18.2" 1685source = "registry+https://github.com/rust-lang/crates.io-index" 1686checksum = "fd56fb197bfc42bd5d2751f4f017d44ff59fbb58140c6b49f9b3b2bdab08506a" 1687dependencies = [ 1688 "atk", 1689 "cairo-rs", 1690 "field-offset", 1691 "futures-channel", 1692 "gdk", 1693 "gdk-pixbuf", 1694 "gio", 1695 "glib", 1696 "gtk-sys", 1697 "gtk3-macros", 1698 "libc", 1699 "pango", 1700 "pkg-config", 1701] 1702 1703[[package]] 1704name = "gtk-sys" 1705version = "0.18.2" 1706source = "registry+https://github.com/rust-lang/crates.io-index" 1707checksum = "8f29a1c21c59553eb7dd40e918be54dccd60c52b049b75119d5d96ce6b624414" 1708dependencies = [ 1709 "atk-sys", 1710 "cairo-sys-rs", 1711 "gdk-pixbuf-sys", 1712 "gdk-sys", 1713 "gio-sys", 1714 "glib-sys", 1715 "gobject-sys", 1716 "libc", 1717 "pango-sys", 1718 "system-deps", 1719] 1720 1721[[package]] 1722name = "gtk3-macros" 1723version = "0.18.2" 1724source = "registry+https://github.com/rust-lang/crates.io-index" 1725checksum = "52ff3c5b21f14f0736fed6dcfc0bfb4225ebf5725f3c0209edeec181e4d73e9d" 1726dependencies = [ 1727 "proc-macro-crate 1.3.1", 1728 "proc-macro-error", 1729 "proc-macro2", 1730 "quote", 1731 "syn 2.0.104", 1732] 1733 1734[[package]] 1735name = "h2" 1736version = "0.4.11" 1737source = "registry+https://github.com/rust-lang/crates.io-index" 1738checksum = "17da50a276f1e01e0ba6c029e47b7100754904ee8a278f886546e98575380785" 1739dependencies = [ 1740 "atomic-waker", 1741 "bytes", 1742 "fnv", 1743 "futures-core", 1744 "futures-sink", 1745 "http", 1746 "indexmap 2.10.0", 1747 "slab", 1748 "tokio", 1749 "tokio-util", 1750 "tracing", 1751] 1752 1753[[package]] 1754name = "half" 1755version = "2.6.0" 1756source = "registry+https://github.com/rust-lang/crates.io-index" 1757checksum = "459196ed295495a68f7d7fe1d84f6c4b7ff0e21fe3017b2f283c6fac3ad803c9" 1758dependencies = [ 1759 "cfg-if", 1760 "crunchy", 1761] 1762 1763[[package]] 1764name = "hashbrown" 1765version = "0.12.3" 1766source = "registry+https://github.com/rust-lang/crates.io-index" 1767checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 1768 1769[[package]] 1770name = "hashbrown" 1771version = "0.14.5" 1772source = "registry+https://github.com/rust-lang/crates.io-index" 1773checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" 1774 1775[[package]] 1776name = "hashbrown" 1777version = "0.15.4" 1778source = "registry+https://github.com/rust-lang/crates.io-index" 1779checksum = "5971ac85611da7067dbfcabef3c70ebb5606018acd9e2a3903a0da507521e0d5" 1780 1781[[package]] 1782name = "heck" 1783version = "0.4.1" 1784source = "registry+https://github.com/rust-lang/crates.io-index" 1785checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" 1786 1787[[package]] 1788name = "heck" 1789version = "0.5.0" 1790source = "registry+https://github.com/rust-lang/crates.io-index" 1791checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" 1792 1793[[package]] 1794name = "hermit-abi" 1795version = "0.5.2" 1796source = "registry+https://github.com/rust-lang/crates.io-index" 1797checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c" 1798 1799[[package]] 1800name = "hex" 1801version = "0.4.3" 1802source = "registry+https://github.com/rust-lang/crates.io-index" 1803checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 1804 1805[[package]] 1806name = "html5ever" 1807version = "0.29.1" 1808source = "registry+https://github.com/rust-lang/crates.io-index" 1809checksum = "3b7410cae13cbc75623c98ac4cbfd1f0bedddf3227afc24f370cf0f50a44a11c" 1810dependencies = [ 1811 "log", 1812 "mac", 1813 "markup5ever", 1814 "match_token", 1815] 1816 1817[[package]] 1818name = "http" 1819version = "1.3.1" 1820source = "registry+https://github.com/rust-lang/crates.io-index" 1821checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565" 1822dependencies = [ 1823 "bytes", 1824 "fnv", 1825 "itoa", 1826] 1827 1828[[package]] 1829name = "http-body" 1830version = "1.0.1" 1831source = "registry+https://github.com/rust-lang/crates.io-index" 1832checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" 1833dependencies = [ 1834 "bytes", 1835 "http", 1836] 1837 1838[[package]] 1839name = "http-body-util" 1840version = "0.1.3" 1841source = "registry+https://github.com/rust-lang/crates.io-index" 1842checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a" 1843dependencies = [ 1844 "bytes", 1845 "futures-core", 1846 "http", 1847 "http-body", 1848 "pin-project-lite", 1849] 1850 1851[[package]] 1852name = "httparse" 1853version = "1.10.1" 1854source = "registry+https://github.com/rust-lang/crates.io-index" 1855checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87" 1856 1857[[package]] 1858name = "hyper" 1859version = "1.6.0" 1860source = "registry+https://github.com/rust-lang/crates.io-index" 1861checksum = "cc2b571658e38e0c01b1fdca3bbbe93c00d3d71693ff2770043f8c29bc7d6f80" 1862dependencies = [ 1863 "bytes", 1864 "futures-channel", 1865 "futures-util", 1866 "h2", 1867 "http", 1868 "http-body", 1869 "httparse", 1870 "itoa", 1871 "pin-project-lite", 1872 "smallvec", 1873 "tokio", 1874 "want", 1875] 1876 1877[[package]] 1878name = "hyper-rustls" 1879version = "0.27.7" 1880source = "registry+https://github.com/rust-lang/crates.io-index" 1881checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58" 1882dependencies = [ 1883 "http", 1884 "hyper", 1885 "hyper-util", 1886 "rustls", 1887 "rustls-pki-types", 1888 "tokio", 1889 "tokio-rustls", 1890 "tower-service", 1891 "webpki-roots", 1892] 1893 1894[[package]] 1895name = "hyper-tls" 1896version = "0.6.0" 1897source = "registry+https://github.com/rust-lang/crates.io-index" 1898checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0" 1899dependencies = [ 1900 "bytes", 1901 "http-body-util", 1902 "hyper", 1903 "hyper-util", 1904 "native-tls", 1905 "tokio", 1906 "tokio-native-tls", 1907 "tower-service", 1908] 1909 1910[[package]] 1911name = "hyper-util" 1912version = "0.1.16" 1913source = "registry+https://github.com/rust-lang/crates.io-index" 1914checksum = "8d9b05277c7e8da2c93a568989bb6207bef0112e8d17df7a6eda4a3cf143bc5e" 1915dependencies = [ 1916 "base64 0.22.1", 1917 "bytes", 1918 "futures-channel", 1919 "futures-core", 1920 "futures-util", 1921 "http", 1922 "http-body", 1923 "hyper", 1924 "ipnet", 1925 "libc", 1926 "percent-encoding", 1927 "pin-project-lite", 1928 "socket2 0.6.0", 1929 "system-configuration", 1930 "tokio", 1931 "tower-service", 1932 "tracing", 1933 "windows-registry", 1934] 1935 1936[[package]] 1937name = "iana-time-zone" 1938version = "0.1.63" 1939source = "registry+https://github.com/rust-lang/crates.io-index" 1940checksum = "b0c919e5debc312ad217002b8048a17b7d83f80703865bbfcfebb0458b0b27d8" 1941dependencies = [ 1942 "android_system_properties", 1943 "core-foundation-sys", 1944 "iana-time-zone-haiku", 1945 "js-sys", 1946 "log", 1947 "wasm-bindgen", 1948 "windows-core", 1949] 1950 1951[[package]] 1952name = "iana-time-zone-haiku" 1953version = "0.1.2" 1954source = "registry+https://github.com/rust-lang/crates.io-index" 1955checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" 1956dependencies = [ 1957 "cc", 1958] 1959 1960[[package]] 1961name = "ico" 1962version = "0.4.0" 1963source = "registry+https://github.com/rust-lang/crates.io-index" 1964checksum = "cc50b891e4acf8fe0e71ef88ec43ad82ee07b3810ad09de10f1d01f072ed4b98" 1965dependencies = [ 1966 "byteorder", 1967 "png", 1968] 1969 1970[[package]] 1971name = "icu_collections" 1972version = "2.0.0" 1973source = "registry+https://github.com/rust-lang/crates.io-index" 1974checksum = "200072f5d0e3614556f94a9930d5dc3e0662a652823904c3a75dc3b0af7fee47" 1975dependencies = [ 1976 "displaydoc", 1977 "potential_utf", 1978 "yoke", 1979 "zerofrom", 1980 "zerovec", 1981] 1982 1983[[package]] 1984name = "icu_locale_core" 1985version = "2.0.0" 1986source = "registry+https://github.com/rust-lang/crates.io-index" 1987checksum = "0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a" 1988dependencies = [ 1989 "displaydoc", 1990 "litemap", 1991 "tinystr", 1992 "writeable", 1993 "zerovec", 1994] 1995 1996[[package]] 1997name = "icu_normalizer" 1998version = "2.0.0" 1999source = "registry+https://github.com/rust-lang/crates.io-index" 2000checksum = "436880e8e18df4d7bbc06d58432329d6458cc84531f7ac5f024e93deadb37979" 2001dependencies = [ 2002 "displaydoc", 2003 "icu_collections", 2004 "icu_normalizer_data", 2005 "icu_properties", 2006 "icu_provider", 2007 "smallvec", 2008 "zerovec", 2009] 2010 2011[[package]] 2012name = "icu_normalizer_data" 2013version = "2.0.0" 2014source = "registry+https://github.com/rust-lang/crates.io-index" 2015checksum = "00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3" 2016 2017[[package]] 2018name = "icu_properties" 2019version = "2.0.1" 2020source = "registry+https://github.com/rust-lang/crates.io-index" 2021checksum = "016c619c1eeb94efb86809b015c58f479963de65bdb6253345c1a1276f22e32b" 2022dependencies = [ 2023 "displaydoc", 2024 "icu_collections", 2025 "icu_locale_core", 2026 "icu_properties_data", 2027 "icu_provider", 2028 "potential_utf", 2029 "zerotrie", 2030 "zerovec", 2031] 2032 2033[[package]] 2034name = "icu_properties_data" 2035version = "2.0.1" 2036source = "registry+https://github.com/rust-lang/crates.io-index" 2037checksum = "298459143998310acd25ffe6810ed544932242d3f07083eee1084d83a71bd632" 2038 2039[[package]] 2040name = "icu_provider" 2041version = "2.0.0" 2042source = "registry+https://github.com/rust-lang/crates.io-index" 2043checksum = "03c80da27b5f4187909049ee2d72f276f0d9f99a42c306bd0131ecfe04d8e5af" 2044dependencies = [ 2045 "displaydoc", 2046 "icu_locale_core", 2047 "stable_deref_trait", 2048 "tinystr", 2049 "writeable", 2050 "yoke", 2051 "zerofrom", 2052 "zerotrie", 2053 "zerovec", 2054] 2055 2056[[package]] 2057name = "ident_case" 2058version = "1.0.1" 2059source = "registry+https://github.com/rust-lang/crates.io-index" 2060checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" 2061 2062[[package]] 2063name = "idna" 2064version = "1.0.3" 2065source = "registry+https://github.com/rust-lang/crates.io-index" 2066checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e" 2067dependencies = [ 2068 "idna_adapter", 2069 "smallvec", 2070 "utf8_iter", 2071] 2072 2073[[package]] 2074name = "idna_adapter" 2075version = "1.2.1" 2076source = "registry+https://github.com/rust-lang/crates.io-index" 2077checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344" 2078dependencies = [ 2079 "icu_normalizer", 2080 "icu_properties", 2081] 2082 2083[[package]] 2084name = "image" 2085version = "0.25.6" 2086source = "registry+https://github.com/rust-lang/crates.io-index" 2087checksum = "db35664ce6b9810857a38a906215e75a9c879f0696556a39f59c62829710251a" 2088dependencies = [ 2089 "bytemuck", 2090 "byteorder-lite", 2091 "color_quant", 2092 "exr", 2093 "gif", 2094 "image-webp", 2095 "num-traits", 2096 "png", 2097 "qoi", 2098 "ravif", 2099 "rayon", 2100 "rgb", 2101 "tiff", 2102 "zune-core", 2103 "zune-jpeg", 2104] 2105 2106[[package]] 2107name = "image-webp" 2108version = "0.2.3" 2109source = "registry+https://github.com/rust-lang/crates.io-index" 2110checksum = "f6970fe7a5300b4b42e62c52efa0187540a5bef546c60edaf554ef595d2e6f0b" 2111dependencies = [ 2112 "byteorder-lite", 2113 "quick-error", 2114] 2115 2116[[package]] 2117name = "imgref" 2118version = "1.11.0" 2119source = "registry+https://github.com/rust-lang/crates.io-index" 2120checksum = "d0263a3d970d5c054ed9312c0057b4f3bde9c0b33836d3637361d4a9e6e7a408" 2121 2122[[package]] 2123name = "indexmap" 2124version = "1.9.3" 2125source = "registry+https://github.com/rust-lang/crates.io-index" 2126checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" 2127dependencies = [ 2128 "autocfg", 2129 "hashbrown 0.12.3", 2130 "serde", 2131] 2132 2133[[package]] 2134name = "indexmap" 2135version = "2.10.0" 2136source = "registry+https://github.com/rust-lang/crates.io-index" 2137checksum = "fe4cd85333e22411419a0bcae1297d25e58c9443848b11dc6a86fefe8c78a661" 2138dependencies = [ 2139 "equivalent", 2140 "hashbrown 0.15.4", 2141 "serde", 2142] 2143 2144[[package]] 2145name = "infer" 2146version = "0.19.0" 2147source = "registry+https://github.com/rust-lang/crates.io-index" 2148checksum = "a588916bfdfd92e71cacef98a63d9b1f0d74d6599980d11894290e7ddefffcf7" 2149dependencies = [ 2150 "cfb", 2151] 2152 2153[[package]] 2154name = "inotify" 2155version = "0.9.6" 2156source = "registry+https://github.com/rust-lang/crates.io-index" 2157checksum = "f8069d3ec154eb856955c1c0fbffefbf5f3c40a104ec912d4797314c1801abff" 2158dependencies = [ 2159 "bitflags 1.3.2", 2160 "inotify-sys", 2161 "libc", 2162] 2163 2164[[package]] 2165name = "inotify-sys" 2166version = "0.1.5" 2167source = "registry+https://github.com/rust-lang/crates.io-index" 2168checksum = "e05c02b5e89bff3b946cedeca278abc628fe811e604f027c45a8aa3cf793d0eb" 2169dependencies = [ 2170 "libc", 2171] 2172 2173[[package]] 2174name = "interpolate_name" 2175version = "0.2.4" 2176source = "registry+https://github.com/rust-lang/crates.io-index" 2177checksum = "c34819042dc3d3971c46c2190835914dfbe0c3c13f61449b2997f4e9722dfa60" 2178dependencies = [ 2179 "proc-macro2", 2180 "quote", 2181 "syn 2.0.104", 2182] 2183 2184[[package]] 2185name = "io-uring" 2186version = "0.7.9" 2187source = "registry+https://github.com/rust-lang/crates.io-index" 2188checksum = "d93587f37623a1a17d94ef2bc9ada592f5465fe7732084ab7beefabe5c77c0c4" 2189dependencies = [ 2190 "bitflags 2.9.1", 2191 "cfg-if", 2192 "libc", 2193] 2194 2195[[package]] 2196name = "ipnet" 2197version = "2.11.0" 2198source = "registry+https://github.com/rust-lang/crates.io-index" 2199checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130" 2200 2201[[package]] 2202name = "iri-string" 2203version = "0.7.8" 2204source = "registry+https://github.com/rust-lang/crates.io-index" 2205checksum = "dbc5ebe9c3a1a7a5127f920a418f7585e9e758e911d0466ed004f393b0e380b2" 2206dependencies = [ 2207 "memchr", 2208 "serde", 2209] 2210 2211[[package]] 2212name = "is-docker" 2213version = "0.2.0" 2214source = "registry+https://github.com/rust-lang/crates.io-index" 2215checksum = "928bae27f42bc99b60d9ac7334e3a21d10ad8f1835a4e12ec3ec0464765ed1b3" 2216dependencies = [ 2217 "once_cell", 2218] 2219 2220[[package]] 2221name = "is-wsl" 2222version = "0.4.0" 2223source = "registry+https://github.com/rust-lang/crates.io-index" 2224checksum = "173609498df190136aa7dea1a91db051746d339e18476eed5ca40521f02d7aa5" 2225dependencies = [ 2226 "is-docker", 2227 "once_cell", 2228] 2229 2230[[package]] 2231name = "itertools" 2232version = "0.12.1" 2233source = "registry+https://github.com/rust-lang/crates.io-index" 2234checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569" 2235dependencies = [ 2236 "either", 2237] 2238 2239[[package]] 2240name = "itoa" 2241version = "1.0.15" 2242source = "registry+https://github.com/rust-lang/crates.io-index" 2243checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c" 2244 2245[[package]] 2246name = "javascriptcore-rs" 2247version = "1.1.2" 2248source = "registry+https://github.com/rust-lang/crates.io-index" 2249checksum = "ca5671e9ffce8ffba57afc24070e906da7fc4b1ba66f2cabebf61bf2ea257fcc" 2250dependencies = [ 2251 "bitflags 1.3.2", 2252 "glib", 2253 "javascriptcore-rs-sys", 2254] 2255 2256[[package]] 2257name = "javascriptcore-rs-sys" 2258version = "1.1.1" 2259source = "registry+https://github.com/rust-lang/crates.io-index" 2260checksum = "af1be78d14ffa4b75b66df31840478fef72b51f8c2465d4ca7c194da9f7a5124" 2261dependencies = [ 2262 "glib-sys", 2263 "gobject-sys", 2264 "libc", 2265 "system-deps", 2266] 2267 2268[[package]] 2269name = "jni" 2270version = "0.21.1" 2271source = "registry+https://github.com/rust-lang/crates.io-index" 2272checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97" 2273dependencies = [ 2274 "cesu8", 2275 "cfg-if", 2276 "combine", 2277 "jni-sys", 2278 "log", 2279 "thiserror 1.0.69", 2280 "walkdir", 2281 "windows-sys 0.45.0", 2282] 2283 2284[[package]] 2285name = "jni-sys" 2286version = "0.3.0" 2287source = "registry+https://github.com/rust-lang/crates.io-index" 2288checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130" 2289 2290[[package]] 2291name = "jobserver" 2292version = "0.1.33" 2293source = "registry+https://github.com/rust-lang/crates.io-index" 2294checksum = "38f262f097c174adebe41eb73d66ae9c06b2844fb0da69969647bbddd9b0538a" 2295dependencies = [ 2296 "getrandom 0.3.3", 2297 "libc", 2298] 2299 2300[[package]] 2301name = "jpeg-decoder" 2302version = "0.3.2" 2303source = "registry+https://github.com/rust-lang/crates.io-index" 2304checksum = "00810f1d8b74be64b13dbf3db89ac67740615d6c891f0e7b6179326533011a07" 2305 2306[[package]] 2307name = "js-sys" 2308version = "0.3.77" 2309source = "registry+https://github.com/rust-lang/crates.io-index" 2310checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f" 2311dependencies = [ 2312 "once_cell", 2313 "wasm-bindgen", 2314] 2315 2316[[package]] 2317name = "json-patch" 2318version = "3.0.1" 2319source = "registry+https://github.com/rust-lang/crates.io-index" 2320checksum = "863726d7afb6bc2590eeff7135d923545e5e964f004c2ccf8716c25e70a86f08" 2321dependencies = [ 2322 "jsonptr", 2323 "serde", 2324 "serde_json", 2325 "thiserror 1.0.69", 2326] 2327 2328[[package]] 2329name = "jsonptr" 2330version = "0.6.3" 2331source = "registry+https://github.com/rust-lang/crates.io-index" 2332checksum = "5dea2b27dd239b2556ed7a25ba842fe47fd602e7fc7433c2a8d6106d4d9edd70" 2333dependencies = [ 2334 "serde", 2335 "serde_json", 2336] 2337 2338[[package]] 2339name = "keyboard-types" 2340version = "0.7.0" 2341source = "registry+https://github.com/rust-lang/crates.io-index" 2342checksum = "b750dcadc39a09dbadd74e118f6dd6598df77fa01df0cfcdc52c28dece74528a" 2343dependencies = [ 2344 "bitflags 2.9.1", 2345 "serde", 2346 "unicode-segmentation", 2347] 2348 2349[[package]] 2350name = "kqueue" 2351version = "1.1.1" 2352source = "registry+https://github.com/rust-lang/crates.io-index" 2353checksum = "eac30106d7dce88daf4a3fcb4879ea939476d5074a9b7ddd0fb97fa4bed5596a" 2354dependencies = [ 2355 "kqueue-sys", 2356 "libc", 2357] 2358 2359[[package]] 2360name = "kqueue-sys" 2361version = "1.0.4" 2362source = "registry+https://github.com/rust-lang/crates.io-index" 2363checksum = "ed9625ffda8729b85e45cf04090035ac368927b8cebc34898e7c120f52e4838b" 2364dependencies = [ 2365 "bitflags 1.3.2", 2366 "libc", 2367] 2368 2369[[package]] 2370name = "kuchikiki" 2371version = "0.8.8-speedreader" 2372source = "registry+https://github.com/rust-lang/crates.io-index" 2373checksum = "02cb977175687f33fa4afa0c95c112b987ea1443e5a51c8f8ff27dc618270cc2" 2374dependencies = [ 2375 "cssparser", 2376 "html5ever", 2377 "indexmap 2.10.0", 2378 "selectors", 2379] 2380 2381[[package]] 2382name = "lazy_static" 2383version = "1.5.0" 2384source = "registry+https://github.com/rust-lang/crates.io-index" 2385checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" 2386 2387[[package]] 2388name = "lebe" 2389version = "0.5.2" 2390source = "registry+https://github.com/rust-lang/crates.io-index" 2391checksum = "03087c2bad5e1034e8cace5926dec053fb3790248370865f5117a7d0213354c8" 2392 2393[[package]] 2394name = "libappindicator" 2395version = "0.9.0" 2396source = "registry+https://github.com/rust-lang/crates.io-index" 2397checksum = "03589b9607c868cc7ae54c0b2a22c8dc03dd41692d48f2d7df73615c6a95dc0a" 2398dependencies = [ 2399 "glib", 2400 "gtk", 2401 "gtk-sys", 2402 "libappindicator-sys", 2403 "log", 2404] 2405 2406[[package]] 2407name = "libappindicator-sys" 2408version = "0.9.0" 2409source = "registry+https://github.com/rust-lang/crates.io-index" 2410checksum = "6e9ec52138abedcc58dc17a7c6c0c00a2bdb4f3427c7f63fa97fd0d859155caf" 2411dependencies = [ 2412 "gtk-sys", 2413 "libloading", 2414 "once_cell", 2415] 2416 2417[[package]] 2418name = "libc" 2419version = "0.2.174" 2420source = "registry+https://github.com/rust-lang/crates.io-index" 2421checksum = "1171693293099992e19cddea4e8b849964e9846f4acee11b3948bcc337be8776" 2422 2423[[package]] 2424name = "libfuzzer-sys" 2425version = "0.4.10" 2426source = "registry+https://github.com/rust-lang/crates.io-index" 2427checksum = "5037190e1f70cbeef565bd267599242926f724d3b8a9f510fd7e0b540cfa4404" 2428dependencies = [ 2429 "arbitrary", 2430 "cc", 2431] 2432 2433[[package]] 2434name = "libloading" 2435version = "0.7.4" 2436source = "registry+https://github.com/rust-lang/crates.io-index" 2437checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f" 2438dependencies = [ 2439 "cfg-if", 2440 "winapi", 2441] 2442 2443[[package]] 2444name = "libredox" 2445version = "0.1.9" 2446source = "registry+https://github.com/rust-lang/crates.io-index" 2447checksum = "391290121bad3d37fbddad76d8f5d1c1c314cfc646d143d7e07a3086ddff0ce3" 2448dependencies = [ 2449 "bitflags 2.9.1", 2450 "libc", 2451 "redox_syscall", 2452] 2453 2454[[package]] 2455name = "linux-raw-sys" 2456version = "0.9.4" 2457source = "registry+https://github.com/rust-lang/crates.io-index" 2458checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12" 2459 2460[[package]] 2461name = "litemap" 2462version = "0.8.0" 2463source = "registry+https://github.com/rust-lang/crates.io-index" 2464checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956" 2465 2466[[package]] 2467name = "litrs" 2468version = "0.4.2" 2469source = "registry+https://github.com/rust-lang/crates.io-index" 2470checksum = "f5e54036fe321fd421e10d732f155734c4e4afd610dd556d9a82833ab3ee0bed" 2471 2472[[package]] 2473name = "lock_api" 2474version = "0.4.13" 2475source = "registry+https://github.com/rust-lang/crates.io-index" 2476checksum = "96936507f153605bddfcda068dd804796c84324ed2510809e5b2a624c81da765" 2477dependencies = [ 2478 "autocfg", 2479 "scopeguard", 2480] 2481 2482[[package]] 2483name = "log" 2484version = "0.4.27" 2485source = "registry+https://github.com/rust-lang/crates.io-index" 2486checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94" 2487 2488[[package]] 2489name = "loop9" 2490version = "0.1.5" 2491source = "registry+https://github.com/rust-lang/crates.io-index" 2492checksum = "0fae87c125b03c1d2c0150c90365d7d6bcc53fb73a9acaef207d2d065860f062" 2493dependencies = [ 2494 "imgref", 2495] 2496 2497[[package]] 2498name = "lru-slab" 2499version = "0.1.2" 2500source = "registry+https://github.com/rust-lang/crates.io-index" 2501checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154" 2502 2503[[package]] 2504name = "mac" 2505version = "0.1.1" 2506source = "registry+https://github.com/rust-lang/crates.io-index" 2507checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4" 2508 2509[[package]] 2510name = "markup5ever" 2511version = "0.14.1" 2512source = "registry+https://github.com/rust-lang/crates.io-index" 2513checksum = "c7a7213d12e1864c0f002f52c2923d4556935a43dec5e71355c2760e0f6e7a18" 2514dependencies = [ 2515 "log", 2516 "phf 0.11.3", 2517 "phf_codegen 0.11.3", 2518 "string_cache", 2519 "string_cache_codegen", 2520 "tendril", 2521] 2522 2523[[package]] 2524name = "match_token" 2525version = "0.1.0" 2526source = "registry+https://github.com/rust-lang/crates.io-index" 2527checksum = "88a9689d8d44bf9964484516275f5cd4c9b59457a6940c1d5d0ecbb94510a36b" 2528dependencies = [ 2529 "proc-macro2", 2530 "quote", 2531 "syn 2.0.104", 2532] 2533 2534[[package]] 2535name = "matches" 2536version = "0.1.10" 2537source = "registry+https://github.com/rust-lang/crates.io-index" 2538checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5" 2539 2540[[package]] 2541name = "maybe-rayon" 2542version = "0.1.1" 2543source = "registry+https://github.com/rust-lang/crates.io-index" 2544checksum = "8ea1f30cedd69f0a2954655f7188c6a834246d2bcf1e315e2ac40c4b24dc9519" 2545dependencies = [ 2546 "cfg-if", 2547 "rayon", 2548] 2549 2550[[package]] 2551name = "memchr" 2552version = "2.7.5" 2553source = "registry+https://github.com/rust-lang/crates.io-index" 2554checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0" 2555 2556[[package]] 2557name = "memoffset" 2558version = "0.9.1" 2559source = "registry+https://github.com/rust-lang/crates.io-index" 2560checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a" 2561dependencies = [ 2562 "autocfg", 2563] 2564 2565[[package]] 2566name = "mime" 2567version = "0.3.17" 2568source = "registry+https://github.com/rust-lang/crates.io-index" 2569checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" 2570 2571[[package]] 2572name = "minimal-lexical" 2573version = "0.2.1" 2574source = "registry+https://github.com/rust-lang/crates.io-index" 2575checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" 2576 2577[[package]] 2578name = "miniz_oxide" 2579version = "0.8.9" 2580source = "registry+https://github.com/rust-lang/crates.io-index" 2581checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316" 2582dependencies = [ 2583 "adler2", 2584 "simd-adler32", 2585] 2586 2587[[package]] 2588name = "mio" 2589version = "0.8.11" 2590source = "registry+https://github.com/rust-lang/crates.io-index" 2591checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c" 2592dependencies = [ 2593 "libc", 2594 "log", 2595 "wasi 0.11.1+wasi-snapshot-preview1", 2596 "windows-sys 0.48.0", 2597] 2598 2599[[package]] 2600name = "mio" 2601version = "1.0.4" 2602source = "registry+https://github.com/rust-lang/crates.io-index" 2603checksum = "78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c" 2604dependencies = [ 2605 "libc", 2606 "wasi 0.11.1+wasi-snapshot-preview1", 2607 "windows-sys 0.59.0", 2608] 2609 2610[[package]] 2611name = "mslnk" 2612version = "0.1.8" 2613source = "registry+https://github.com/rust-lang/crates.io-index" 2614checksum = "86c97310150b7f496a93f31690da7822b99d95ff68ca9d30fb09d3ad54375c76" 2615dependencies = [ 2616 "bitflags 1.3.2", 2617 "byteorder", 2618 "log", 2619] 2620 2621[[package]] 2622name = "muda" 2623version = "0.17.1" 2624source = "registry+https://github.com/rust-lang/crates.io-index" 2625checksum = "01c1738382f66ed56b3b9c8119e794a2e23148ac8ea214eda86622d4cb9d415a" 2626dependencies = [ 2627 "crossbeam-channel", 2628 "dpi", 2629 "gtk", 2630 "keyboard-types", 2631 "objc2 0.6.1", 2632 "objc2-app-kit", 2633 "objc2-core-foundation", 2634 "objc2-foundation 0.3.1", 2635 "once_cell", 2636 "png", 2637 "serde", 2638 "thiserror 2.0.12", 2639 "windows-sys 0.60.2", 2640] 2641 2642[[package]] 2643name = "native-tls" 2644version = "0.2.14" 2645source = "registry+https://github.com/rust-lang/crates.io-index" 2646checksum = "87de3442987e9dbec73158d5c715e7ad9072fda936bb03d19d7fa10e00520f0e" 2647dependencies = [ 2648 "libc", 2649 "log", 2650 "openssl", 2651 "openssl-probe", 2652 "openssl-sys", 2653 "schannel", 2654 "security-framework", 2655 "security-framework-sys", 2656 "tempfile", 2657] 2658 2659[[package]] 2660name = "ndk" 2661version = "0.9.0" 2662source = "registry+https://github.com/rust-lang/crates.io-index" 2663checksum = "c3f42e7bbe13d351b6bead8286a43aac9534b82bd3cc43e47037f012ebfd62d4" 2664dependencies = [ 2665 "bitflags 2.9.1", 2666 "jni-sys", 2667 "log", 2668 "ndk-sys", 2669 "num_enum", 2670 "raw-window-handle", 2671 "thiserror 1.0.69", 2672] 2673 2674[[package]] 2675name = "ndk-context" 2676version = "0.1.1" 2677source = "registry+https://github.com/rust-lang/crates.io-index" 2678checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b" 2679 2680[[package]] 2681name = "ndk-sys" 2682version = "0.6.0+11769913" 2683source = "registry+https://github.com/rust-lang/crates.io-index" 2684checksum = "ee6cda3051665f1fb8d9e08fc35c96d5a244fb1be711a03b71118828afc9a873" 2685dependencies = [ 2686 "jni-sys", 2687] 2688 2689[[package]] 2690name = "new_debug_unreachable" 2691version = "1.0.6" 2692source = "registry+https://github.com/rust-lang/crates.io-index" 2693checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086" 2694 2695[[package]] 2696name = "nix" 2697version = "0.27.1" 2698source = "registry+https://github.com/rust-lang/crates.io-index" 2699checksum = "2eb04e9c688eff1c89d72b407f168cf79bb9e867a9d3323ed6c01519eb9cc053" 2700dependencies = [ 2701 "bitflags 2.9.1", 2702 "cfg-if", 2703 "libc", 2704 "memoffset", 2705] 2706 2707[[package]] 2708name = "nodrop" 2709version = "0.1.14" 2710source = "registry+https://github.com/rust-lang/crates.io-index" 2711checksum = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb" 2712 2713[[package]] 2714name = "nom" 2715version = "7.1.3" 2716source = "registry+https://github.com/rust-lang/crates.io-index" 2717checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" 2718dependencies = [ 2719 "memchr", 2720 "minimal-lexical", 2721] 2722 2723[[package]] 2724name = "noop_proc_macro" 2725version = "0.3.0" 2726source = "registry+https://github.com/rust-lang/crates.io-index" 2727checksum = "0676bb32a98c1a483ce53e500a81ad9c3d5b3f7c920c28c24e9cb0980d0b5bc8" 2728 2729[[package]] 2730name = "notify" 2731version = "6.1.1" 2732source = "registry+https://github.com/rust-lang/crates.io-index" 2733checksum = "6205bd8bb1e454ad2e27422015fb5e4f2bcc7e08fa8f27058670d208324a4d2d" 2734dependencies = [ 2735 "bitflags 2.9.1", 2736 "crossbeam-channel", 2737 "filetime", 2738 "fsevent-sys", 2739 "inotify", 2740 "kqueue", 2741 "libc", 2742 "log", 2743 "mio 0.8.11", 2744 "walkdir", 2745 "windows-sys 0.48.0", 2746] 2747 2748[[package]] 2749name = "num-bigint" 2750version = "0.4.6" 2751source = "registry+https://github.com/rust-lang/crates.io-index" 2752checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9" 2753dependencies = [ 2754 "num-integer", 2755 "num-traits", 2756] 2757 2758[[package]] 2759name = "num-conv" 2760version = "0.1.0" 2761source = "registry+https://github.com/rust-lang/crates.io-index" 2762checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" 2763 2764[[package]] 2765name = "num-derive" 2766version = "0.4.2" 2767source = "registry+https://github.com/rust-lang/crates.io-index" 2768checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202" 2769dependencies = [ 2770 "proc-macro2", 2771 "quote", 2772 "syn 2.0.104", 2773] 2774 2775[[package]] 2776name = "num-integer" 2777version = "0.1.46" 2778source = "registry+https://github.com/rust-lang/crates.io-index" 2779checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f" 2780dependencies = [ 2781 "num-traits", 2782] 2783 2784[[package]] 2785name = "num-rational" 2786version = "0.4.2" 2787source = "registry+https://github.com/rust-lang/crates.io-index" 2788checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824" 2789dependencies = [ 2790 "num-bigint", 2791 "num-integer", 2792 "num-traits", 2793] 2794 2795[[package]] 2796name = "num-traits" 2797version = "0.2.19" 2798source = "registry+https://github.com/rust-lang/crates.io-index" 2799checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" 2800dependencies = [ 2801 "autocfg", 2802] 2803 2804[[package]] 2805name = "num_enum" 2806version = "0.7.4" 2807source = "registry+https://github.com/rust-lang/crates.io-index" 2808checksum = "a973b4e44ce6cad84ce69d797acf9a044532e4184c4f267913d1b546a0727b7a" 2809dependencies = [ 2810 "num_enum_derive", 2811 "rustversion", 2812] 2813 2814[[package]] 2815name = "num_enum_derive" 2816version = "0.7.4" 2817source = "registry+https://github.com/rust-lang/crates.io-index" 2818checksum = "77e878c846a8abae00dd069496dbe8751b16ac1c3d6bd2a7283a938e8228f90d" 2819dependencies = [ 2820 "proc-macro-crate 2.0.2", 2821 "proc-macro2", 2822 "quote", 2823 "syn 2.0.104", 2824] 2825 2826[[package]] 2827name = "objc-sys" 2828version = "0.3.5" 2829source = "registry+https://github.com/rust-lang/crates.io-index" 2830checksum = "cdb91bdd390c7ce1a8607f35f3ca7151b65afc0ff5ff3b34fa350f7d7c7e4310" 2831 2832[[package]] 2833name = "objc2" 2834version = "0.5.2" 2835source = "registry+https://github.com/rust-lang/crates.io-index" 2836checksum = "46a785d4eeff09c14c487497c162e92766fbb3e4059a71840cecc03d9a50b804" 2837dependencies = [ 2838 "objc-sys", 2839 "objc2-encode", 2840] 2841 2842[[package]] 2843name = "objc2" 2844version = "0.6.1" 2845source = "registry+https://github.com/rust-lang/crates.io-index" 2846checksum = "88c6597e14493ab2e44ce58f2fdecf095a51f12ca57bec060a11c57332520551" 2847dependencies = [ 2848 "objc2-encode", 2849 "objc2-exception-helper", 2850] 2851 2852[[package]] 2853name = "objc2-app-kit" 2854version = "0.3.1" 2855source = "registry+https://github.com/rust-lang/crates.io-index" 2856checksum = "e6f29f568bec459b0ddff777cec4fe3fd8666d82d5a40ebd0ff7e66134f89bcc" 2857dependencies = [ 2858 "bitflags 2.9.1", 2859 "block2 0.6.1", 2860 "libc", 2861 "objc2 0.6.1", 2862 "objc2-cloud-kit", 2863 "objc2-core-data", 2864 "objc2-core-foundation", 2865 "objc2-core-graphics", 2866 "objc2-core-image", 2867 "objc2-foundation 0.3.1", 2868 "objc2-quartz-core 0.3.1", 2869] 2870 2871[[package]] 2872name = "objc2-cloud-kit" 2873version = "0.3.1" 2874source = "registry+https://github.com/rust-lang/crates.io-index" 2875checksum = "17614fdcd9b411e6ff1117dfb1d0150f908ba83a7df81b1f118005fe0a8ea15d" 2876dependencies = [ 2877 "bitflags 2.9.1", 2878 "objc2 0.6.1", 2879 "objc2-foundation 0.3.1", 2880] 2881 2882[[package]] 2883name = "objc2-core-data" 2884version = "0.3.1" 2885source = "registry+https://github.com/rust-lang/crates.io-index" 2886checksum = "291fbbf7d29287518e8686417cf7239c74700fd4b607623140a7d4a3c834329d" 2887dependencies = [ 2888 "bitflags 2.9.1", 2889 "objc2 0.6.1", 2890 "objc2-foundation 0.3.1", 2891] 2892 2893[[package]] 2894name = "objc2-core-foundation" 2895version = "0.3.1" 2896source = "registry+https://github.com/rust-lang/crates.io-index" 2897checksum = "1c10c2894a6fed806ade6027bcd50662746363a9589d3ec9d9bef30a4e4bc166" 2898dependencies = [ 2899 "bitflags 2.9.1", 2900 "dispatch2", 2901 "objc2 0.6.1", 2902] 2903 2904[[package]] 2905name = "objc2-core-graphics" 2906version = "0.3.1" 2907source = "registry+https://github.com/rust-lang/crates.io-index" 2908checksum = "989c6c68c13021b5c2d6b71456ebb0f9dc78d752e86a98da7c716f4f9470f5a4" 2909dependencies = [ 2910 "bitflags 2.9.1", 2911 "dispatch2", 2912 "objc2 0.6.1", 2913 "objc2-core-foundation", 2914 "objc2-io-surface", 2915] 2916 2917[[package]] 2918name = "objc2-core-image" 2919version = "0.3.1" 2920source = "registry+https://github.com/rust-lang/crates.io-index" 2921checksum = "79b3dc0cc4386b6ccf21c157591b34a7f44c8e75b064f85502901ab2188c007e" 2922dependencies = [ 2923 "objc2 0.6.1", 2924 "objc2-foundation 0.3.1", 2925] 2926 2927[[package]] 2928name = "objc2-encode" 2929version = "4.1.0" 2930source = "registry+https://github.com/rust-lang/crates.io-index" 2931checksum = "ef25abbcd74fb2609453eb695bd2f860d389e457f67dc17cafc8b8cbc89d0c33" 2932 2933[[package]] 2934name = "objc2-exception-helper" 2935version = "0.1.1" 2936source = "registry+https://github.com/rust-lang/crates.io-index" 2937checksum = "c7a1c5fbb72d7735b076bb47b578523aedc40f3c439bea6dfd595c089d79d98a" 2938dependencies = [ 2939 "cc", 2940] 2941 2942[[package]] 2943name = "objc2-foundation" 2944version = "0.2.2" 2945source = "registry+https://github.com/rust-lang/crates.io-index" 2946checksum = "0ee638a5da3799329310ad4cfa62fbf045d5f56e3ef5ba4149e7452dcf89d5a8" 2947dependencies = [ 2948 "bitflags 2.9.1", 2949 "block2 0.5.1", 2950 "libc", 2951 "objc2 0.5.2", 2952] 2953 2954[[package]] 2955name = "objc2-foundation" 2956version = "0.3.1" 2957source = "registry+https://github.com/rust-lang/crates.io-index" 2958checksum = "900831247d2fe1a09a683278e5384cfb8c80c79fe6b166f9d14bfdde0ea1b03c" 2959dependencies = [ 2960 "bitflags 2.9.1", 2961 "block2 0.6.1", 2962 "libc", 2963 "objc2 0.6.1", 2964 "objc2-core-foundation", 2965] 2966 2967[[package]] 2968name = "objc2-io-surface" 2969version = "0.3.1" 2970source = "registry+https://github.com/rust-lang/crates.io-index" 2971checksum = "7282e9ac92529fa3457ce90ebb15f4ecbc383e8338060960760fa2cf75420c3c" 2972dependencies = [ 2973 "bitflags 2.9.1", 2974 "objc2 0.6.1", 2975 "objc2-core-foundation", 2976] 2977 2978[[package]] 2979name = "objc2-metal" 2980version = "0.2.2" 2981source = "registry+https://github.com/rust-lang/crates.io-index" 2982checksum = "dd0cba1276f6023976a406a14ffa85e1fdd19df6b0f737b063b95f6c8c7aadd6" 2983dependencies = [ 2984 "bitflags 2.9.1", 2985 "block2 0.5.1", 2986 "objc2 0.5.2", 2987 "objc2-foundation 0.2.2", 2988] 2989 2990[[package]] 2991name = "objc2-quartz-core" 2992version = "0.2.2" 2993source = "registry+https://github.com/rust-lang/crates.io-index" 2994checksum = "e42bee7bff906b14b167da2bac5efe6b6a07e6f7c0a21a7308d40c960242dc7a" 2995dependencies = [ 2996 "bitflags 2.9.1", 2997 "block2 0.5.1", 2998 "objc2 0.5.2", 2999 "objc2-foundation 0.2.2", 3000 "objc2-metal", 3001] 3002 3003[[package]] 3004name = "objc2-quartz-core" 3005version = "0.3.1" 3006source = "registry+https://github.com/rust-lang/crates.io-index" 3007checksum = "90ffb6a0cd5f182dc964334388560b12a57f7b74b3e2dec5e2722aa2dfb2ccd5" 3008dependencies = [ 3009 "bitflags 2.9.1", 3010 "objc2 0.6.1", 3011 "objc2-foundation 0.3.1", 3012] 3013 3014[[package]] 3015name = "objc2-ui-kit" 3016version = "0.3.1" 3017source = "registry+https://github.com/rust-lang/crates.io-index" 3018checksum = "25b1312ad7bc8a0e92adae17aa10f90aae1fb618832f9b993b022b591027daed" 3019dependencies = [ 3020 "bitflags 2.9.1", 3021 "objc2 0.6.1", 3022 "objc2-core-foundation", 3023 "objc2-foundation 0.3.1", 3024] 3025 3026[[package]] 3027name = "objc2-web-kit" 3028version = "0.3.1" 3029source = "registry+https://github.com/rust-lang/crates.io-index" 3030checksum = "91672909de8b1ce1c2252e95bbee8c1649c9ad9d14b9248b3d7b4c47903c47ad" 3031dependencies = [ 3032 "bitflags 2.9.1", 3033 "block2 0.6.1", 3034 "objc2 0.6.1", 3035 "objc2-app-kit", 3036 "objc2-core-foundation", 3037 "objc2-foundation 0.3.1", 3038] 3039 3040[[package]] 3041name = "object" 3042version = "0.36.7" 3043source = "registry+https://github.com/rust-lang/crates.io-index" 3044checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87" 3045dependencies = [ 3046 "memchr", 3047] 3048 3049[[package]] 3050name = "once_cell" 3051version = "1.21.3" 3052source = "registry+https://github.com/rust-lang/crates.io-index" 3053checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d" 3054 3055[[package]] 3056name = "open" 3057version = "5.3.2" 3058source = "registry+https://github.com/rust-lang/crates.io-index" 3059checksum = "e2483562e62ea94312f3576a7aca397306df7990b8d89033e18766744377ef95" 3060dependencies = [ 3061 "dunce", 3062 "is-wsl", 3063 "libc", 3064 "pathdiff", 3065] 3066 3067[[package]] 3068name = "openssl" 3069version = "0.10.73" 3070source = "registry+https://github.com/rust-lang/crates.io-index" 3071checksum = "8505734d46c8ab1e19a1dce3aef597ad87dcb4c37e7188231769bd6bd51cebf8" 3072dependencies = [ 3073 "bitflags 2.9.1", 3074 "cfg-if", 3075 "foreign-types 0.3.2", 3076 "libc", 3077 "once_cell", 3078 "openssl-macros", 3079 "openssl-sys", 3080] 3081 3082[[package]] 3083name = "openssl-macros" 3084version = "0.1.1" 3085source = "registry+https://github.com/rust-lang/crates.io-index" 3086checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" 3087dependencies = [ 3088 "proc-macro2", 3089 "quote", 3090 "syn 2.0.104", 3091] 3092 3093[[package]] 3094name = "openssl-probe" 3095version = "0.1.6" 3096source = "registry+https://github.com/rust-lang/crates.io-index" 3097checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e" 3098 3099[[package]] 3100name = "openssl-sys" 3101version = "0.9.109" 3102source = "registry+https://github.com/rust-lang/crates.io-index" 3103checksum = "90096e2e47630d78b7d1c20952dc621f957103f8bc2c8359ec81290d75238571" 3104dependencies = [ 3105 "cc", 3106 "libc", 3107 "pkg-config", 3108 "vcpkg", 3109] 3110 3111[[package]] 3112name = "option-ext" 3113version = "0.2.0" 3114source = "registry+https://github.com/rust-lang/crates.io-index" 3115checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d" 3116 3117[[package]] 3118name = "ordered-multimap" 3119version = "0.7.3" 3120source = "registry+https://github.com/rust-lang/crates.io-index" 3121checksum = "49203cdcae0030493bad186b28da2fa25645fa276a51b6fec8010d281e02ef79" 3122dependencies = [ 3123 "dlv-list", 3124 "hashbrown 0.14.5", 3125] 3126 3127[[package]] 3128name = "ordered-stream" 3129version = "0.2.0" 3130source = "registry+https://github.com/rust-lang/crates.io-index" 3131checksum = "9aa2b01e1d916879f73a53d01d1d6cee68adbb31d6d9177a8cfce093cced1d50" 3132dependencies = [ 3133 "futures-core", 3134 "pin-project-lite", 3135] 3136 3137[[package]] 3138name = "os_pipe" 3139version = "1.2.2" 3140source = "registry+https://github.com/rust-lang/crates.io-index" 3141checksum = "db335f4760b14ead6290116f2427bf33a14d4f0617d49f78a246de10c1831224" 3142dependencies = [ 3143 "libc", 3144 "windows-sys 0.59.0", 3145] 3146 3147[[package]] 3148name = "pango" 3149version = "0.18.3" 3150source = "registry+https://github.com/rust-lang/crates.io-index" 3151checksum = "7ca27ec1eb0457ab26f3036ea52229edbdb74dee1edd29063f5b9b010e7ebee4" 3152dependencies = [ 3153 "gio", 3154 "glib", 3155 "libc", 3156 "once_cell", 3157 "pango-sys", 3158] 3159 3160[[package]] 3161name = "pango-sys" 3162version = "0.18.0" 3163source = "registry+https://github.com/rust-lang/crates.io-index" 3164checksum = "436737e391a843e5933d6d9aa102cb126d501e815b83601365a948a518555dc5" 3165dependencies = [ 3166 "glib-sys", 3167 "gobject-sys", 3168 "libc", 3169 "system-deps", 3170] 3171 3172[[package]] 3173name = "parking" 3174version = "2.2.1" 3175source = "registry+https://github.com/rust-lang/crates.io-index" 3176checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba" 3177 3178[[package]] 3179name = "parking_lot" 3180version = "0.12.4" 3181source = "registry+https://github.com/rust-lang/crates.io-index" 3182checksum = "70d58bf43669b5795d1576d0641cfb6fbb2057bf629506267a92807158584a13" 3183dependencies = [ 3184 "lock_api", 3185 "parking_lot_core", 3186] 3187 3188[[package]] 3189name = "parking_lot_core" 3190version = "0.9.11" 3191source = "registry+https://github.com/rust-lang/crates.io-index" 3192checksum = "bc838d2a56b5b1a6c25f55575dfc605fabb63bb2365f6c2353ef9159aa69e4a5" 3193dependencies = [ 3194 "cfg-if", 3195 "libc", 3196 "redox_syscall", 3197 "smallvec", 3198 "windows-targets 0.52.6", 3199] 3200 3201[[package]] 3202name = "paste" 3203version = "1.0.15" 3204source = "registry+https://github.com/rust-lang/crates.io-index" 3205checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a" 3206 3207[[package]] 3208name = "pathdiff" 3209version = "0.2.3" 3210source = "registry+https://github.com/rust-lang/crates.io-index" 3211checksum = "df94ce210e5bc13cb6651479fa48d14f601d9858cfe0467f43ae157023b938d3" 3212 3213[[package]] 3214name = "percent-encoding" 3215version = "2.3.1" 3216source = "registry+https://github.com/rust-lang/crates.io-index" 3217checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" 3218 3219[[package]] 3220name = "phf" 3221version = "0.8.0" 3222source = "registry+https://github.com/rust-lang/crates.io-index" 3223checksum = "3dfb61232e34fcb633f43d12c58f83c1df82962dcdfa565a4e866ffc17dafe12" 3224dependencies = [ 3225 "phf_shared 0.8.0", 3226] 3227 3228[[package]] 3229name = "phf" 3230version = "0.10.1" 3231source = "registry+https://github.com/rust-lang/crates.io-index" 3232checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259" 3233dependencies = [ 3234 "phf_macros 0.10.0", 3235 "phf_shared 0.10.0", 3236 "proc-macro-hack", 3237] 3238 3239[[package]] 3240name = "phf" 3241version = "0.11.3" 3242source = "registry+https://github.com/rust-lang/crates.io-index" 3243checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078" 3244dependencies = [ 3245 "phf_macros 0.11.3", 3246 "phf_shared 0.11.3", 3247] 3248 3249[[package]] 3250name = "phf_codegen" 3251version = "0.8.0" 3252source = "registry+https://github.com/rust-lang/crates.io-index" 3253checksum = "cbffee61585b0411840d3ece935cce9cb6321f01c45477d30066498cd5e1a815" 3254dependencies = [ 3255 "phf_generator 0.8.0", 3256 "phf_shared 0.8.0", 3257] 3258 3259[[package]] 3260name = "phf_codegen" 3261version = "0.11.3" 3262source = "registry+https://github.com/rust-lang/crates.io-index" 3263checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a" 3264dependencies = [ 3265 "phf_generator 0.11.3", 3266 "phf_shared 0.11.3", 3267] 3268 3269[[package]] 3270name = "phf_generator" 3271version = "0.8.0" 3272source = "registry+https://github.com/rust-lang/crates.io-index" 3273checksum = "17367f0cc86f2d25802b2c26ee58a7b23faeccf78a396094c13dced0d0182526" 3274dependencies = [ 3275 "phf_shared 0.8.0", 3276 "rand 0.7.3", 3277] 3278 3279[[package]] 3280name = "phf_generator" 3281version = "0.10.0" 3282source = "registry+https://github.com/rust-lang/crates.io-index" 3283checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6" 3284dependencies = [ 3285 "phf_shared 0.10.0", 3286 "rand 0.8.5", 3287] 3288 3289[[package]] 3290name = "phf_generator" 3291version = "0.11.3" 3292source = "registry+https://github.com/rust-lang/crates.io-index" 3293checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d" 3294dependencies = [ 3295 "phf_shared 0.11.3", 3296 "rand 0.8.5", 3297] 3298 3299[[package]] 3300name = "phf_macros" 3301version = "0.10.0" 3302source = "registry+https://github.com/rust-lang/crates.io-index" 3303checksum = "58fdf3184dd560f160dd73922bea2d5cd6e8f064bf4b13110abd81b03697b4e0" 3304dependencies = [ 3305 "phf_generator 0.10.0", 3306 "phf_shared 0.10.0", 3307 "proc-macro-hack", 3308 "proc-macro2", 3309 "quote", 3310 "syn 1.0.109", 3311] 3312 3313[[package]] 3314name = "phf_macros" 3315version = "0.11.3" 3316source = "registry+https://github.com/rust-lang/crates.io-index" 3317checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216" 3318dependencies = [ 3319 "phf_generator 0.11.3", 3320 "phf_shared 0.11.3", 3321 "proc-macro2", 3322 "quote", 3323 "syn 2.0.104", 3324] 3325 3326[[package]] 3327name = "phf_shared" 3328version = "0.8.0" 3329source = "registry+https://github.com/rust-lang/crates.io-index" 3330checksum = "c00cf8b9eafe68dde5e9eaa2cef8ee84a9336a47d566ec55ca16589633b65af7" 3331dependencies = [ 3332 "siphasher 0.3.11", 3333] 3334 3335[[package]] 3336name = "phf_shared" 3337version = "0.10.0" 3338source = "registry+https://github.com/rust-lang/crates.io-index" 3339checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096" 3340dependencies = [ 3341 "siphasher 0.3.11", 3342] 3343 3344[[package]] 3345name = "phf_shared" 3346version = "0.11.3" 3347source = "registry+https://github.com/rust-lang/crates.io-index" 3348checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5" 3349dependencies = [ 3350 "siphasher 1.0.1", 3351] 3352 3353[[package]] 3354name = "pin-project-lite" 3355version = "0.2.16" 3356source = "registry+https://github.com/rust-lang/crates.io-index" 3357checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b" 3358 3359[[package]] 3360name = "pin-utils" 3361version = "0.1.0" 3362source = "registry+https://github.com/rust-lang/crates.io-index" 3363checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 3364 3365[[package]] 3366name = "piper" 3367version = "0.2.4" 3368source = "registry+https://github.com/rust-lang/crates.io-index" 3369checksum = "96c8c490f422ef9a4efd2cb5b42b76c8613d7e7dfc1caf667b8a3350a5acc066" 3370dependencies = [ 3371 "atomic-waker", 3372 "fastrand", 3373 "futures-io", 3374] 3375 3376[[package]] 3377name = "pkg-config" 3378version = "0.3.32" 3379source = "registry+https://github.com/rust-lang/crates.io-index" 3380checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c" 3381 3382[[package]] 3383name = "plist" 3384version = "1.7.4" 3385source = "registry+https://github.com/rust-lang/crates.io-index" 3386checksum = "3af6b589e163c5a788fab00ce0c0366f6efbb9959c2f9874b224936af7fce7e1" 3387dependencies = [ 3388 "base64 0.22.1", 3389 "indexmap 2.10.0", 3390 "quick-xml", 3391 "serde", 3392 "time", 3393] 3394 3395[[package]] 3396name = "png" 3397version = "0.17.16" 3398source = "registry+https://github.com/rust-lang/crates.io-index" 3399checksum = "82151a2fc869e011c153adc57cf2789ccb8d9906ce52c0b39a6b5697749d7526" 3400dependencies = [ 3401 "bitflags 1.3.2", 3402 "crc32fast", 3403 "fdeflate", 3404 "flate2", 3405 "miniz_oxide", 3406] 3407 3408[[package]] 3409name = "polling" 3410version = "3.9.0" 3411source = "registry+https://github.com/rust-lang/crates.io-index" 3412checksum = "8ee9b2fa7a4517d2c91ff5bc6c297a427a96749d15f98fcdbb22c05571a4d4b7" 3413dependencies = [ 3414 "cfg-if", 3415 "concurrent-queue", 3416 "hermit-abi", 3417 "pin-project-lite", 3418 "rustix", 3419 "windows-sys 0.60.2", 3420] 3421 3422[[package]] 3423name = "potential_utf" 3424version = "0.1.2" 3425source = "registry+https://github.com/rust-lang/crates.io-index" 3426checksum = "e5a7c30837279ca13e7c867e9e40053bc68740f988cb07f7ca6df43cc734b585" 3427dependencies = [ 3428 "zerovec", 3429] 3430 3431[[package]] 3432name = "powerfmt" 3433version = "0.2.0" 3434source = "registry+https://github.com/rust-lang/crates.io-index" 3435checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" 3436 3437[[package]] 3438name = "ppv-lite86" 3439version = "0.2.21" 3440source = "registry+https://github.com/rust-lang/crates.io-index" 3441checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9" 3442dependencies = [ 3443 "zerocopy", 3444] 3445 3446[[package]] 3447name = "precomputed-hash" 3448version = "0.1.1" 3449source = "registry+https://github.com/rust-lang/crates.io-index" 3450checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c" 3451 3452[[package]] 3453name = "proc-macro-crate" 3454version = "1.3.1" 3455source = "registry+https://github.com/rust-lang/crates.io-index" 3456checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919" 3457dependencies = [ 3458 "once_cell", 3459 "toml_edit 0.19.15", 3460] 3461 3462[[package]] 3463name = "proc-macro-crate" 3464version = "2.0.2" 3465source = "registry+https://github.com/rust-lang/crates.io-index" 3466checksum = "b00f26d3400549137f92511a46ac1cd8ce37cb5598a96d382381458b992a5d24" 3467dependencies = [ 3468 "toml_datetime 0.6.3", 3469 "toml_edit 0.20.2", 3470] 3471 3472[[package]] 3473name = "proc-macro-error" 3474version = "1.0.4" 3475source = "registry+https://github.com/rust-lang/crates.io-index" 3476checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" 3477dependencies = [ 3478 "proc-macro-error-attr", 3479 "proc-macro2", 3480 "quote", 3481 "syn 1.0.109", 3482 "version_check", 3483] 3484 3485[[package]] 3486name = "proc-macro-error-attr" 3487version = "1.0.4" 3488source = "registry+https://github.com/rust-lang/crates.io-index" 3489checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" 3490dependencies = [ 3491 "proc-macro2", 3492 "quote", 3493 "version_check", 3494] 3495 3496[[package]] 3497name = "proc-macro-hack" 3498version = "0.5.20+deprecated" 3499source = "registry+https://github.com/rust-lang/crates.io-index" 3500checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068" 3501 3502[[package]] 3503name = "proc-macro2" 3504version = "1.0.95" 3505source = "registry+https://github.com/rust-lang/crates.io-index" 3506checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778" 3507dependencies = [ 3508 "unicode-ident", 3509] 3510 3511[[package]] 3512name = "profiling" 3513version = "1.0.17" 3514source = "registry+https://github.com/rust-lang/crates.io-index" 3515checksum = "3eb8486b569e12e2c32ad3e204dbaba5e4b5b216e9367044f25f1dba42341773" 3516dependencies = [ 3517 "profiling-procmacros", 3518] 3519 3520[[package]] 3521name = "profiling-procmacros" 3522version = "1.0.17" 3523source = "registry+https://github.com/rust-lang/crates.io-index" 3524checksum = "52717f9a02b6965224f95ca2a81e2e0c5c43baacd28ca057577988930b6c3d5b" 3525dependencies = [ 3526 "quote", 3527 "syn 2.0.104", 3528] 3529 3530[[package]] 3531name = "psl-types" 3532version = "2.0.11" 3533source = "registry+https://github.com/rust-lang/crates.io-index" 3534checksum = "33cb294fe86a74cbcf50d4445b37da762029549ebeea341421c7c70370f86cac" 3535 3536[[package]] 3537name = "publicsuffix" 3538version = "2.3.0" 3539source = "registry+https://github.com/rust-lang/crates.io-index" 3540checksum = "6f42ea446cab60335f76979ec15e12619a2165b5ae2c12166bef27d283a9fadf" 3541dependencies = [ 3542 "idna", 3543 "psl-types", 3544] 3545 3546[[package]] 3547name = "qoi" 3548version = "0.4.1" 3549source = "registry+https://github.com/rust-lang/crates.io-index" 3550checksum = "7f6d64c71eb498fe9eae14ce4ec935c555749aef511cca85b5568910d6e48001" 3551dependencies = [ 3552 "bytemuck", 3553] 3554 3555[[package]] 3556name = "quick-error" 3557version = "2.0.1" 3558source = "registry+https://github.com/rust-lang/crates.io-index" 3559checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3" 3560 3561[[package]] 3562name = "quick-xml" 3563version = "0.38.0" 3564source = "registry+https://github.com/rust-lang/crates.io-index" 3565checksum = "8927b0664f5c5a98265138b7e3f90aa19a6b21353182469ace36d4ac527b7b1b" 3566dependencies = [ 3567 "memchr", 3568] 3569 3570[[package]] 3571name = "quinn" 3572version = "0.11.8" 3573source = "registry+https://github.com/rust-lang/crates.io-index" 3574checksum = "626214629cda6781b6dc1d316ba307189c85ba657213ce642d9c77670f8202c8" 3575dependencies = [ 3576 "bytes", 3577 "cfg_aliases", 3578 "pin-project-lite", 3579 "quinn-proto", 3580 "quinn-udp", 3581 "rustc-hash", 3582 "rustls", 3583 "socket2 0.5.10", 3584 "thiserror 2.0.12", 3585 "tokio", 3586 "tracing", 3587 "web-time", 3588] 3589 3590[[package]] 3591name = "quinn-proto" 3592version = "0.11.12" 3593source = "registry+https://github.com/rust-lang/crates.io-index" 3594checksum = "49df843a9161c85bb8aae55f101bc0bac8bcafd637a620d9122fd7e0b2f7422e" 3595dependencies = [ 3596 "bytes", 3597 "getrandom 0.3.3", 3598 "lru-slab", 3599 "rand 0.9.2", 3600 "ring", 3601 "rustc-hash", 3602 "rustls", 3603 "rustls-pki-types", 3604 "slab", 3605 "thiserror 2.0.12", 3606 "tinyvec", 3607 "tracing", 3608 "web-time", 3609] 3610 3611[[package]] 3612name = "quinn-udp" 3613version = "0.5.13" 3614source = "registry+https://github.com/rust-lang/crates.io-index" 3615checksum = "fcebb1209ee276352ef14ff8732e24cc2b02bbac986cd74a4c81bcb2f9881970" 3616dependencies = [ 3617 "cfg_aliases", 3618 "libc", 3619 "once_cell", 3620 "socket2 0.5.10", 3621 "tracing", 3622 "windows-sys 0.59.0", 3623] 3624 3625[[package]] 3626name = "quote" 3627version = "1.0.40" 3628source = "registry+https://github.com/rust-lang/crates.io-index" 3629checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d" 3630dependencies = [ 3631 "proc-macro2", 3632] 3633 3634[[package]] 3635name = "r-efi" 3636version = "5.3.0" 3637source = "registry+https://github.com/rust-lang/crates.io-index" 3638checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" 3639 3640[[package]] 3641name = "rand" 3642version = "0.7.3" 3643source = "registry+https://github.com/rust-lang/crates.io-index" 3644checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03" 3645dependencies = [ 3646 "getrandom 0.1.16", 3647 "libc", 3648 "rand_chacha 0.2.2", 3649 "rand_core 0.5.1", 3650 "rand_hc", 3651 "rand_pcg", 3652] 3653 3654[[package]] 3655name = "rand" 3656version = "0.8.5" 3657source = "registry+https://github.com/rust-lang/crates.io-index" 3658checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 3659dependencies = [ 3660 "libc", 3661 "rand_chacha 0.3.1", 3662 "rand_core 0.6.4", 3663] 3664 3665[[package]] 3666name = "rand" 3667version = "0.9.2" 3668source = "registry+https://github.com/rust-lang/crates.io-index" 3669checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1" 3670dependencies = [ 3671 "rand_chacha 0.9.0", 3672 "rand_core 0.9.3", 3673] 3674 3675[[package]] 3676name = "rand_chacha" 3677version = "0.2.2" 3678source = "registry+https://github.com/rust-lang/crates.io-index" 3679checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402" 3680dependencies = [ 3681 "ppv-lite86", 3682 "rand_core 0.5.1", 3683] 3684 3685[[package]] 3686name = "rand_chacha" 3687version = "0.3.1" 3688source = "registry+https://github.com/rust-lang/crates.io-index" 3689checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 3690dependencies = [ 3691 "ppv-lite86", 3692 "rand_core 0.6.4", 3693] 3694 3695[[package]] 3696name = "rand_chacha" 3697version = "0.9.0" 3698source = "registry+https://github.com/rust-lang/crates.io-index" 3699checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb" 3700dependencies = [ 3701 "ppv-lite86", 3702 "rand_core 0.9.3", 3703] 3704 3705[[package]] 3706name = "rand_core" 3707version = "0.5.1" 3708source = "registry+https://github.com/rust-lang/crates.io-index" 3709checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" 3710dependencies = [ 3711 "getrandom 0.1.16", 3712] 3713 3714[[package]] 3715name = "rand_core" 3716version = "0.6.4" 3717source = "registry+https://github.com/rust-lang/crates.io-index" 3718checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 3719dependencies = [ 3720 "getrandom 0.2.16", 3721] 3722 3723[[package]] 3724name = "rand_core" 3725version = "0.9.3" 3726source = "registry+https://github.com/rust-lang/crates.io-index" 3727checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38" 3728dependencies = [ 3729 "getrandom 0.3.3", 3730] 3731 3732[[package]] 3733name = "rand_hc" 3734version = "0.2.0" 3735source = "registry+https://github.com/rust-lang/crates.io-index" 3736checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" 3737dependencies = [ 3738 "rand_core 0.5.1", 3739] 3740 3741[[package]] 3742name = "rand_pcg" 3743version = "0.2.1" 3744source = "registry+https://github.com/rust-lang/crates.io-index" 3745checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429" 3746dependencies = [ 3747 "rand_core 0.5.1", 3748] 3749 3750[[package]] 3751name = "rav1e" 3752version = "0.7.1" 3753source = "registry+https://github.com/rust-lang/crates.io-index" 3754checksum = "cd87ce80a7665b1cce111f8a16c1f3929f6547ce91ade6addf4ec86a8dda5ce9" 3755dependencies = [ 3756 "arbitrary", 3757 "arg_enum_proc_macro", 3758 "arrayvec", 3759 "av1-grain", 3760 "bitstream-io", 3761 "built", 3762 "cfg-if", 3763 "interpolate_name", 3764 "itertools", 3765 "libc", 3766 "libfuzzer-sys", 3767 "log", 3768 "maybe-rayon", 3769 "new_debug_unreachable", 3770 "noop_proc_macro", 3771 "num-derive", 3772 "num-traits", 3773 "once_cell", 3774 "paste", 3775 "profiling", 3776 "rand 0.8.5", 3777 "rand_chacha 0.3.1", 3778 "simd_helpers", 3779 "system-deps", 3780 "thiserror 1.0.69", 3781 "v_frame", 3782 "wasm-bindgen", 3783] 3784 3785[[package]] 3786name = "ravif" 3787version = "0.11.20" 3788source = "registry+https://github.com/rust-lang/crates.io-index" 3789checksum = "5825c26fddd16ab9f515930d49028a630efec172e903483c94796cfe31893e6b" 3790dependencies = [ 3791 "avif-serialize", 3792 "imgref", 3793 "loop9", 3794 "quick-error", 3795 "rav1e", 3796 "rayon", 3797 "rgb", 3798] 3799 3800[[package]] 3801name = "raw-window-handle" 3802version = "0.6.2" 3803source = "registry+https://github.com/rust-lang/crates.io-index" 3804checksum = "20675572f6f24e9e76ef639bc5552774ed45f1c30e2951e1e99c59888861c539" 3805 3806[[package]] 3807name = "rayon" 3808version = "1.10.0" 3809source = "registry+https://github.com/rust-lang/crates.io-index" 3810checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa" 3811dependencies = [ 3812 "either", 3813 "rayon-core", 3814] 3815 3816[[package]] 3817name = "rayon-core" 3818version = "1.12.1" 3819source = "registry+https://github.com/rust-lang/crates.io-index" 3820checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2" 3821dependencies = [ 3822 "crossbeam-deque", 3823 "crossbeam-utils", 3824] 3825 3826[[package]] 3827name = "redox_syscall" 3828version = "0.5.17" 3829source = "registry+https://github.com/rust-lang/crates.io-index" 3830checksum = "5407465600fb0548f1442edf71dd20683c6ed326200ace4b1ef0763521bb3b77" 3831dependencies = [ 3832 "bitflags 2.9.1", 3833] 3834 3835[[package]] 3836name = "redox_users" 3837version = "0.4.6" 3838source = "registry+https://github.com/rust-lang/crates.io-index" 3839checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43" 3840dependencies = [ 3841 "getrandom 0.2.16", 3842 "libredox", 3843 "thiserror 1.0.69", 3844] 3845 3846[[package]] 3847name = "redox_users" 3848version = "0.5.2" 3849source = "registry+https://github.com/rust-lang/crates.io-index" 3850checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac" 3851dependencies = [ 3852 "getrandom 0.2.16", 3853 "libredox", 3854 "thiserror 2.0.12", 3855] 3856 3857[[package]] 3858name = "ref-cast" 3859version = "1.0.24" 3860source = "registry+https://github.com/rust-lang/crates.io-index" 3861checksum = "4a0ae411dbe946a674d89546582cea4ba2bb8defac896622d6496f14c23ba5cf" 3862dependencies = [ 3863 "ref-cast-impl", 3864] 3865 3866[[package]] 3867name = "ref-cast-impl" 3868version = "1.0.24" 3869source = "registry+https://github.com/rust-lang/crates.io-index" 3870checksum = "1165225c21bff1f3bbce98f5a1f889949bc902d3575308cc7b0de30b4f6d27c7" 3871dependencies = [ 3872 "proc-macro2", 3873 "quote", 3874 "syn 2.0.104", 3875] 3876 3877[[package]] 3878name = "regex" 3879version = "1.11.1" 3880source = "registry+https://github.com/rust-lang/crates.io-index" 3881checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191" 3882dependencies = [ 3883 "aho-corasick", 3884 "memchr", 3885 "regex-automata", 3886 "regex-syntax", 3887] 3888 3889[[package]] 3890name = "regex-automata" 3891version = "0.4.9" 3892source = "registry+https://github.com/rust-lang/crates.io-index" 3893checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908" 3894dependencies = [ 3895 "aho-corasick", 3896 "memchr", 3897 "regex-syntax", 3898] 3899 3900[[package]] 3901name = "regex-syntax" 3902version = "0.8.5" 3903source = "registry+https://github.com/rust-lang/crates.io-index" 3904checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c" 3905 3906[[package]] 3907name = "reqwest" 3908version = "0.12.22" 3909source = "registry+https://github.com/rust-lang/crates.io-index" 3910checksum = "cbc931937e6ca3a06e3b6c0aa7841849b160a90351d6ab467a8b9b9959767531" 3911dependencies = [ 3912 "base64 0.22.1", 3913 "bytes", 3914 "cookie", 3915 "cookie_store", 3916 "encoding_rs", 3917 "futures-channel", 3918 "futures-core", 3919 "futures-util", 3920 "h2", 3921 "http", 3922 "http-body", 3923 "http-body-util", 3924 "hyper", 3925 "hyper-rustls", 3926 "hyper-tls", 3927 "hyper-util", 3928 "js-sys", 3929 "log", 3930 "mime", 3931 "native-tls", 3932 "percent-encoding", 3933 "pin-project-lite", 3934 "quinn", 3935 "rustls", 3936 "rustls-pki-types", 3937 "serde", 3938 "serde_json", 3939 "serde_urlencoded", 3940 "sync_wrapper", 3941 "tokio", 3942 "tokio-native-tls", 3943 "tokio-rustls", 3944 "tokio-util", 3945 "tower", 3946 "tower-http", 3947 "tower-service", 3948 "url", 3949 "wasm-bindgen", 3950 "wasm-bindgen-futures", 3951 "wasm-streams", 3952 "web-sys", 3953 "webpki-roots", 3954] 3955 3956[[package]] 3957name = "rgb" 3958version = "0.8.52" 3959source = "registry+https://github.com/rust-lang/crates.io-index" 3960checksum = "0c6a884d2998352bb4daf0183589aec883f16a6da1f4dde84d8e2e9a5409a1ce" 3961 3962[[package]] 3963name = "ring" 3964version = "0.17.14" 3965source = "registry+https://github.com/rust-lang/crates.io-index" 3966checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7" 3967dependencies = [ 3968 "cc", 3969 "cfg-if", 3970 "getrandom 0.2.16", 3971 "libc", 3972 "untrusted", 3973 "windows-sys 0.52.0", 3974] 3975 3976[[package]] 3977name = "rust-ini" 3978version = "0.21.2" 3979source = "registry+https://github.com/rust-lang/crates.io-index" 3980checksum = "e7295b7ce3bf4806b419dc3420745998b447178b7005e2011947b38fc5aa6791" 3981dependencies = [ 3982 "cfg-if", 3983 "ordered-multimap", 3984] 3985 3986[[package]] 3987name = "rustc-demangle" 3988version = "0.1.26" 3989source = "registry+https://github.com/rust-lang/crates.io-index" 3990checksum = "56f7d92ca342cea22a06f2121d944b4fd82af56988c270852495420f961d4ace" 3991 3992[[package]] 3993name = "rustc-hash" 3994version = "2.1.1" 3995source = "registry+https://github.com/rust-lang/crates.io-index" 3996checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d" 3997 3998[[package]] 3999name = "rustc_version" 4000version = "0.4.1" 4001source = "registry+https://github.com/rust-lang/crates.io-index" 4002checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92" 4003dependencies = [ 4004 "semver", 4005] 4006 4007[[package]] 4008name = "rustix" 4009version = "1.0.8" 4010source = "registry+https://github.com/rust-lang/crates.io-index" 4011checksum = "11181fbabf243db407ef8df94a6ce0b2f9a733bd8be4ad02b4eda9602296cac8" 4012dependencies = [ 4013 "bitflags 2.9.1", 4014 "errno", 4015 "libc", 4016 "linux-raw-sys", 4017 "windows-sys 0.60.2", 4018] 4019 4020[[package]] 4021name = "rustls" 4022version = "0.23.31" 4023source = "registry+https://github.com/rust-lang/crates.io-index" 4024checksum = "c0ebcbd2f03de0fc1122ad9bb24b127a5a6cd51d72604a3f3c50ac459762b6cc" 4025dependencies = [ 4026 "once_cell", 4027 "ring", 4028 "rustls-pki-types", 4029 "rustls-webpki", 4030 "subtle", 4031 "zeroize", 4032] 4033 4034[[package]] 4035name = "rustls-pki-types" 4036version = "1.12.0" 4037source = "registry+https://github.com/rust-lang/crates.io-index" 4038checksum = "229a4a4c221013e7e1f1a043678c5cc39fe5171437c88fb47151a21e6f5b5c79" 4039dependencies = [ 4040 "web-time", 4041 "zeroize", 4042] 4043 4044[[package]] 4045name = "rustls-webpki" 4046version = "0.103.4" 4047source = "registry+https://github.com/rust-lang/crates.io-index" 4048checksum = "0a17884ae0c1b773f1ccd2bd4a8c72f16da897310a98b0e84bf349ad5ead92fc" 4049dependencies = [ 4050 "ring", 4051 "rustls-pki-types", 4052 "untrusted", 4053] 4054 4055[[package]] 4056name = "rustversion" 4057version = "1.0.21" 4058source = "registry+https://github.com/rust-lang/crates.io-index" 4059checksum = "8a0d197bd2c9dc6e53b84da9556a69ba4cdfab8619eb41a8bd1cc2027a0f6b1d" 4060 4061[[package]] 4062name = "ryu" 4063version = "1.0.20" 4064source = "registry+https://github.com/rust-lang/crates.io-index" 4065checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f" 4066 4067[[package]] 4068name = "same-file" 4069version = "1.0.6" 4070source = "registry+https://github.com/rust-lang/crates.io-index" 4071checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 4072dependencies = [ 4073 "winapi-util", 4074] 4075 4076[[package]] 4077name = "schannel" 4078version = "0.1.27" 4079source = "registry+https://github.com/rust-lang/crates.io-index" 4080checksum = "1f29ebaa345f945cec9fbbc532eb307f0fdad8161f281b6369539c8d84876b3d" 4081dependencies = [ 4082 "windows-sys 0.59.0", 4083] 4084 4085[[package]] 4086name = "schemars" 4087version = "0.8.22" 4088source = "registry+https://github.com/rust-lang/crates.io-index" 4089checksum = "3fbf2ae1b8bc8e02df939598064d22402220cd5bbcca1c76f7d6a310974d5615" 4090dependencies = [ 4091 "dyn-clone", 4092 "indexmap 1.9.3", 4093 "schemars_derive", 4094 "serde", 4095 "serde_json", 4096 "url", 4097 "uuid", 4098] 4099 4100[[package]] 4101name = "schemars" 4102version = "0.9.0" 4103source = "registry+https://github.com/rust-lang/crates.io-index" 4104checksum = "4cd191f9397d57d581cddd31014772520aa448f65ef991055d7f61582c65165f" 4105dependencies = [ 4106 "dyn-clone", 4107 "ref-cast", 4108 "serde", 4109 "serde_json", 4110] 4111 4112[[package]] 4113name = "schemars" 4114version = "1.0.4" 4115source = "registry+https://github.com/rust-lang/crates.io-index" 4116checksum = "82d20c4491bc164fa2f6c5d44565947a52ad80b9505d8e36f8d54c27c739fcd0" 4117dependencies = [ 4118 "dyn-clone", 4119 "ref-cast", 4120 "serde", 4121 "serde_json", 4122] 4123 4124[[package]] 4125name = "schemars_derive" 4126version = "0.8.22" 4127source = "registry+https://github.com/rust-lang/crates.io-index" 4128checksum = "32e265784ad618884abaea0600a9adf15393368d840e0222d101a072f3f7534d" 4129dependencies = [ 4130 "proc-macro2", 4131 "quote", 4132 "serde_derive_internals", 4133 "syn 2.0.104", 4134] 4135 4136[[package]] 4137name = "scopeguard" 4138version = "1.2.0" 4139source = "registry+https://github.com/rust-lang/crates.io-index" 4140checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 4141 4142[[package]] 4143name = "security-framework" 4144version = "2.11.1" 4145source = "registry+https://github.com/rust-lang/crates.io-index" 4146checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02" 4147dependencies = [ 4148 "bitflags 2.9.1", 4149 "core-foundation 0.9.4", 4150 "core-foundation-sys", 4151 "libc", 4152 "security-framework-sys", 4153] 4154 4155[[package]] 4156name = "security-framework-sys" 4157version = "2.14.0" 4158source = "registry+https://github.com/rust-lang/crates.io-index" 4159checksum = "49db231d56a190491cb4aeda9527f1ad45345af50b0851622a7adb8c03b01c32" 4160dependencies = [ 4161 "core-foundation-sys", 4162 "libc", 4163] 4164 4165[[package]] 4166name = "selectors" 4167version = "0.24.0" 4168source = "registry+https://github.com/rust-lang/crates.io-index" 4169checksum = "0c37578180969d00692904465fb7f6b3d50b9a2b952b87c23d0e2e5cb5013416" 4170dependencies = [ 4171 "bitflags 1.3.2", 4172 "cssparser", 4173 "derive_more", 4174 "fxhash", 4175 "log", 4176 "phf 0.8.0", 4177 "phf_codegen 0.8.0", 4178 "precomputed-hash", 4179 "servo_arc", 4180 "smallvec", 4181] 4182 4183[[package]] 4184name = "semver" 4185version = "1.0.26" 4186source = "registry+https://github.com/rust-lang/crates.io-index" 4187checksum = "56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0" 4188dependencies = [ 4189 "serde", 4190] 4191 4192[[package]] 4193name = "serde" 4194version = "1.0.219" 4195source = "registry+https://github.com/rust-lang/crates.io-index" 4196checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6" 4197dependencies = [ 4198 "serde_derive", 4199] 4200 4201[[package]] 4202name = "serde-untagged" 4203version = "0.1.7" 4204source = "registry+https://github.com/rust-lang/crates.io-index" 4205checksum = "299d9c19d7d466db4ab10addd5703e4c615dec2a5a16dbbafe191045e87ee66e" 4206dependencies = [ 4207 "erased-serde", 4208 "serde", 4209 "typeid", 4210] 4211 4212[[package]] 4213name = "serde_derive" 4214version = "1.0.219" 4215source = "registry+https://github.com/rust-lang/crates.io-index" 4216checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00" 4217dependencies = [ 4218 "proc-macro2", 4219 "quote", 4220 "syn 2.0.104", 4221] 4222 4223[[package]] 4224name = "serde_derive_internals" 4225version = "0.29.1" 4226source = "registry+https://github.com/rust-lang/crates.io-index" 4227checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711" 4228dependencies = [ 4229 "proc-macro2", 4230 "quote", 4231 "syn 2.0.104", 4232] 4233 4234[[package]] 4235name = "serde_json" 4236version = "1.0.141" 4237source = "registry+https://github.com/rust-lang/crates.io-index" 4238checksum = "30b9eff21ebe718216c6ec64e1d9ac57087aad11efc64e32002bce4a0d4c03d3" 4239dependencies = [ 4240 "itoa", 4241 "memchr", 4242 "ryu", 4243 "serde", 4244] 4245 4246[[package]] 4247name = "serde_repr" 4248version = "0.1.20" 4249source = "registry+https://github.com/rust-lang/crates.io-index" 4250checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c" 4251dependencies = [ 4252 "proc-macro2", 4253 "quote", 4254 "syn 2.0.104", 4255] 4256 4257[[package]] 4258name = "serde_spanned" 4259version = "0.6.9" 4260source = "registry+https://github.com/rust-lang/crates.io-index" 4261checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3" 4262dependencies = [ 4263 "serde", 4264] 4265 4266[[package]] 4267name = "serde_spanned" 4268version = "1.0.0" 4269source = "registry+https://github.com/rust-lang/crates.io-index" 4270checksum = "40734c41988f7306bb04f0ecf60ec0f3f1caa34290e4e8ea471dcd3346483b83" 4271dependencies = [ 4272 "serde", 4273] 4274 4275[[package]] 4276name = "serde_urlencoded" 4277version = "0.7.1" 4278source = "registry+https://github.com/rust-lang/crates.io-index" 4279checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 4280dependencies = [ 4281 "form_urlencoded", 4282 "itoa", 4283 "ryu", 4284 "serde", 4285] 4286 4287[[package]] 4288name = "serde_with" 4289version = "3.14.0" 4290source = "registry+https://github.com/rust-lang/crates.io-index" 4291checksum = "f2c45cd61fefa9db6f254525d46e392b852e0e61d9a1fd36e5bd183450a556d5" 4292dependencies = [ 4293 "base64 0.22.1", 4294 "chrono", 4295 "hex", 4296 "indexmap 1.9.3", 4297 "indexmap 2.10.0", 4298 "schemars 0.9.0", 4299 "schemars 1.0.4", 4300 "serde", 4301 "serde_derive", 4302 "serde_json", 4303 "serde_with_macros", 4304 "time", 4305] 4306 4307[[package]] 4308name = "serde_with_macros" 4309version = "3.14.0" 4310source = "registry+https://github.com/rust-lang/crates.io-index" 4311checksum = "de90945e6565ce0d9a25098082ed4ee4002e047cb59892c318d66821e14bb30f" 4312dependencies = [ 4313 "darling", 4314 "proc-macro2", 4315 "quote", 4316 "syn 2.0.104", 4317] 4318 4319[[package]] 4320name = "serialize-to-javascript" 4321version = "0.1.1" 4322source = "registry+https://github.com/rust-lang/crates.io-index" 4323checksum = "c9823f2d3b6a81d98228151fdeaf848206a7855a7a042bbf9bf870449a66cafb" 4324dependencies = [ 4325 "serde", 4326 "serde_json", 4327 "serialize-to-javascript-impl", 4328] 4329 4330[[package]] 4331name = "serialize-to-javascript-impl" 4332version = "0.1.1" 4333source = "registry+https://github.com/rust-lang/crates.io-index" 4334checksum = "74064874e9f6a15f04c1f3cb627902d0e6b410abbf36668afa873c61889f1763" 4335dependencies = [ 4336 "proc-macro2", 4337 "quote", 4338 "syn 1.0.109", 4339] 4340 4341[[package]] 4342name = "servo_arc" 4343version = "0.2.0" 4344source = "registry+https://github.com/rust-lang/crates.io-index" 4345checksum = "d52aa42f8fdf0fed91e5ce7f23d8138441002fa31dca008acf47e6fd4721f741" 4346dependencies = [ 4347 "nodrop", 4348 "stable_deref_trait", 4349] 4350 4351[[package]] 4352name = "sha1" 4353version = "0.10.6" 4354source = "registry+https://github.com/rust-lang/crates.io-index" 4355checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba" 4356dependencies = [ 4357 "cfg-if", 4358 "cpufeatures", 4359 "digest", 4360] 4361 4362[[package]] 4363name = "sha2" 4364version = "0.10.9" 4365source = "registry+https://github.com/rust-lang/crates.io-index" 4366checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283" 4367dependencies = [ 4368 "cfg-if", 4369 "cpufeatures", 4370 "digest", 4371] 4372 4373[[package]] 4374name = "shared_child" 4375version = "1.1.1" 4376source = "registry+https://github.com/rust-lang/crates.io-index" 4377checksum = "1e362d9935bc50f019969e2f9ecd66786612daae13e8f277be7bfb66e8bed3f7" 4378dependencies = [ 4379 "libc", 4380 "sigchld", 4381 "windows-sys 0.60.2", 4382] 4383 4384[[package]] 4385name = "shlex" 4386version = "1.3.0" 4387source = "registry+https://github.com/rust-lang/crates.io-index" 4388checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" 4389 4390[[package]] 4391name = "sigchld" 4392version = "0.2.4" 4393source = "registry+https://github.com/rust-lang/crates.io-index" 4394checksum = "47106eded3c154e70176fc83df9737335c94ce22f821c32d17ed1db1f83badb1" 4395dependencies = [ 4396 "libc", 4397 "os_pipe", 4398 "signal-hook", 4399] 4400 4401[[package]] 4402name = "signal-hook" 4403version = "0.3.18" 4404source = "registry+https://github.com/rust-lang/crates.io-index" 4405checksum = "d881a16cf4426aa584979d30bd82cb33429027e42122b169753d6ef1085ed6e2" 4406dependencies = [ 4407 "libc", 4408 "signal-hook-registry", 4409] 4410 4411[[package]] 4412name = "signal-hook-registry" 4413version = "1.4.5" 4414source = "registry+https://github.com/rust-lang/crates.io-index" 4415checksum = "9203b8055f63a2a00e2f593bb0510367fe707d7ff1e5c872de2f537b339e5410" 4416dependencies = [ 4417 "libc", 4418] 4419 4420[[package]] 4421name = "simd-adler32" 4422version = "0.3.7" 4423source = "registry+https://github.com/rust-lang/crates.io-index" 4424checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe" 4425 4426[[package]] 4427name = "simd_helpers" 4428version = "0.1.0" 4429source = "registry+https://github.com/rust-lang/crates.io-index" 4430checksum = "95890f873bec569a0362c235787f3aca6e1e887302ba4840839bcc6459c42da6" 4431dependencies = [ 4432 "quote", 4433] 4434 4435[[package]] 4436name = "siphasher" 4437version = "0.3.11" 4438source = "registry+https://github.com/rust-lang/crates.io-index" 4439checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d" 4440 4441[[package]] 4442name = "siphasher" 4443version = "1.0.1" 4444source = "registry+https://github.com/rust-lang/crates.io-index" 4445checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d" 4446 4447[[package]] 4448name = "slab" 4449version = "0.4.10" 4450source = "registry+https://github.com/rust-lang/crates.io-index" 4451checksum = "04dc19736151f35336d325007ac991178d504a119863a2fcb3758cdb5e52c50d" 4452 4453[[package]] 4454name = "smallvec" 4455version = "1.15.1" 4456source = "registry+https://github.com/rust-lang/crates.io-index" 4457checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" 4458 4459[[package]] 4460name = "socket2" 4461version = "0.5.10" 4462source = "registry+https://github.com/rust-lang/crates.io-index" 4463checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678" 4464dependencies = [ 4465 "libc", 4466 "windows-sys 0.52.0", 4467] 4468 4469[[package]] 4470name = "socket2" 4471version = "0.6.0" 4472source = "registry+https://github.com/rust-lang/crates.io-index" 4473checksum = "233504af464074f9d066d7b5416c5f9b894a5862a6506e306f7b816cdd6f1807" 4474dependencies = [ 4475 "libc", 4476 "windows-sys 0.59.0", 4477] 4478 4479[[package]] 4480name = "softbuffer" 4481version = "0.4.6" 4482source = "registry+https://github.com/rust-lang/crates.io-index" 4483checksum = "18051cdd562e792cad055119e0cdb2cfc137e44e3987532e0f9659a77931bb08" 4484dependencies = [ 4485 "bytemuck", 4486 "cfg_aliases", 4487 "core-graphics", 4488 "foreign-types 0.5.0", 4489 "js-sys", 4490 "log", 4491 "objc2 0.5.2", 4492 "objc2-foundation 0.2.2", 4493 "objc2-quartz-core 0.2.2", 4494 "raw-window-handle", 4495 "redox_syscall", 4496 "wasm-bindgen", 4497 "web-sys", 4498 "windows-sys 0.59.0", 4499] 4500 4501[[package]] 4502name = "soup3" 4503version = "0.5.0" 4504source = "registry+https://github.com/rust-lang/crates.io-index" 4505checksum = "471f924a40f31251afc77450e781cb26d55c0b650842efafc9c6cbd2f7cc4f9f" 4506dependencies = [ 4507 "futures-channel", 4508 "gio", 4509 "glib", 4510 "libc", 4511 "soup3-sys", 4512] 4513 4514[[package]] 4515name = "soup3-sys" 4516version = "0.5.0" 4517source = "registry+https://github.com/rust-lang/crates.io-index" 4518checksum = "7ebe8950a680a12f24f15ebe1bf70db7af98ad242d9db43596ad3108aab86c27" 4519dependencies = [ 4520 "gio-sys", 4521 "glib-sys", 4522 "gobject-sys", 4523 "libc", 4524 "system-deps", 4525] 4526 4527[[package]] 4528name = "stable_deref_trait" 4529version = "1.2.0" 4530source = "registry+https://github.com/rust-lang/crates.io-index" 4531checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" 4532 4533[[package]] 4534name = "static_assertions" 4535version = "1.1.0" 4536source = "registry+https://github.com/rust-lang/crates.io-index" 4537checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" 4538 4539[[package]] 4540name = "string_cache" 4541version = "0.8.9" 4542source = "registry+https://github.com/rust-lang/crates.io-index" 4543checksum = "bf776ba3fa74f83bf4b63c3dcbbf82173db2632ed8452cb2d891d33f459de70f" 4544dependencies = [ 4545 "new_debug_unreachable", 4546 "parking_lot", 4547 "phf_shared 0.11.3", 4548 "precomputed-hash", 4549 "serde", 4550] 4551 4552[[package]] 4553name = "string_cache_codegen" 4554version = "0.5.4" 4555source = "registry+https://github.com/rust-lang/crates.io-index" 4556checksum = "c711928715f1fe0fe509c53b43e993a9a557babc2d0a3567d0a3006f1ac931a0" 4557dependencies = [ 4558 "phf_generator 0.11.3", 4559 "phf_shared 0.11.3", 4560 "proc-macro2", 4561 "quote", 4562] 4563 4564[[package]] 4565name = "strsim" 4566version = "0.11.1" 4567source = "registry+https://github.com/rust-lang/crates.io-index" 4568checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" 4569 4570[[package]] 4571name = "subtle" 4572version = "2.6.1" 4573source = "registry+https://github.com/rust-lang/crates.io-index" 4574checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" 4575 4576[[package]] 4577name = "swift-rs" 4578version = "1.0.7" 4579source = "registry+https://github.com/rust-lang/crates.io-index" 4580checksum = "4057c98e2e852d51fdcfca832aac7b571f6b351ad159f9eda5db1655f8d0c4d7" 4581dependencies = [ 4582 "base64 0.21.7", 4583 "serde", 4584 "serde_json", 4585] 4586 4587[[package]] 4588name = "syn" 4589version = "1.0.109" 4590source = "registry+https://github.com/rust-lang/crates.io-index" 4591checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 4592dependencies = [ 4593 "proc-macro2", 4594 "quote", 4595 "unicode-ident", 4596] 4597 4598[[package]] 4599name = "syn" 4600version = "2.0.104" 4601source = "registry+https://github.com/rust-lang/crates.io-index" 4602checksum = "17b6f705963418cdb9927482fa304bc562ece2fdd4f616084c50b7023b435a40" 4603dependencies = [ 4604 "proc-macro2", 4605 "quote", 4606 "unicode-ident", 4607] 4608 4609[[package]] 4610name = "sync_wrapper" 4611version = "1.0.2" 4612source = "registry+https://github.com/rust-lang/crates.io-index" 4613checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" 4614dependencies = [ 4615 "futures-core", 4616] 4617 4618[[package]] 4619name = "synstructure" 4620version = "0.13.2" 4621source = "registry+https://github.com/rust-lang/crates.io-index" 4622checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2" 4623dependencies = [ 4624 "proc-macro2", 4625 "quote", 4626 "syn 2.0.104", 4627] 4628 4629[[package]] 4630name = "system-configuration" 4631version = "0.6.1" 4632source = "registry+https://github.com/rust-lang/crates.io-index" 4633checksum = "3c879d448e9d986b661742763247d3693ed13609438cf3d006f51f5368a5ba6b" 4634dependencies = [ 4635 "bitflags 2.9.1", 4636 "core-foundation 0.9.4", 4637 "system-configuration-sys", 4638] 4639 4640[[package]] 4641name = "system-configuration-sys" 4642version = "0.6.0" 4643source = "registry+https://github.com/rust-lang/crates.io-index" 4644checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4" 4645dependencies = [ 4646 "core-foundation-sys", 4647 "libc", 4648] 4649 4650[[package]] 4651name = "system-deps" 4652version = "6.2.2" 4653source = "registry+https://github.com/rust-lang/crates.io-index" 4654checksum = "a3e535eb8dded36d55ec13eddacd30dec501792ff23a0b1682c38601b8cf2349" 4655dependencies = [ 4656 "cfg-expr", 4657 "heck 0.5.0", 4658 "pkg-config", 4659 "toml 0.8.2", 4660 "version-compare", 4661] 4662 4663[[package]] 4664name = "tao" 4665version = "0.34.0" 4666source = "registry+https://github.com/rust-lang/crates.io-index" 4667checksum = "49c380ca75a231b87b6c9dd86948f035012e7171d1a7c40a9c2890489a7ffd8a" 4668dependencies = [ 4669 "bitflags 2.9.1", 4670 "core-foundation 0.10.1", 4671 "core-graphics", 4672 "crossbeam-channel", 4673 "dispatch", 4674 "dlopen2", 4675 "dpi", 4676 "gdkwayland-sys", 4677 "gdkx11-sys", 4678 "gtk", 4679 "jni", 4680 "lazy_static", 4681 "libc", 4682 "log", 4683 "ndk", 4684 "ndk-context", 4685 "ndk-sys", 4686 "objc2 0.6.1", 4687 "objc2-app-kit", 4688 "objc2-foundation 0.3.1", 4689 "once_cell", 4690 "parking_lot", 4691 "raw-window-handle", 4692 "scopeguard", 4693 "tao-macros", 4694 "unicode-segmentation", 4695 "url", 4696 "windows", 4697 "windows-core", 4698 "windows-version", 4699 "x11-dl", 4700] 4701 4702[[package]] 4703name = "tao-macros" 4704version = "0.1.3" 4705source = "registry+https://github.com/rust-lang/crates.io-index" 4706checksum = "f4e16beb8b2ac17db28eab8bca40e62dbfbb34c0fcdc6d9826b11b7b5d047dfd" 4707dependencies = [ 4708 "proc-macro2", 4709 "quote", 4710 "syn 2.0.104", 4711] 4712 4713[[package]] 4714name = "target-lexicon" 4715version = "0.12.16" 4716source = "registry+https://github.com/rust-lang/crates.io-index" 4717checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1" 4718 4719[[package]] 4720name = "tauri" 4721version = "2.7.0" 4722source = "registry+https://github.com/rust-lang/crates.io-index" 4723checksum = "352a4bc7bf6c25f5624227e3641adf475a6535707451b09bb83271df8b7a6ac7" 4724dependencies = [ 4725 "anyhow", 4726 "bytes", 4727 "dirs 6.0.0", 4728 "dunce", 4729 "embed_plist", 4730 "getrandom 0.3.3", 4731 "glob", 4732 "gtk", 4733 "heck 0.5.0", 4734 "http", 4735 "image", 4736 "jni", 4737 "libc", 4738 "log", 4739 "mime", 4740 "muda", 4741 "objc2 0.6.1", 4742 "objc2-app-kit", 4743 "objc2-foundation 0.3.1", 4744 "objc2-ui-kit", 4745 "percent-encoding", 4746 "plist", 4747 "raw-window-handle", 4748 "reqwest", 4749 "serde", 4750 "serde_json", 4751 "serde_repr", 4752 "serialize-to-javascript", 4753 "swift-rs", 4754 "tauri-build", 4755 "tauri-macros", 4756 "tauri-runtime", 4757 "tauri-runtime-wry", 4758 "tauri-utils", 4759 "thiserror 2.0.12", 4760 "tokio", 4761 "tray-icon", 4762 "url", 4763 "urlpattern", 4764 "webkit2gtk", 4765 "webview2-com", 4766 "window-vibrancy", 4767 "windows", 4768] 4769 4770[[package]] 4771name = "tauri-build" 4772version = "2.3.1" 4773source = "registry+https://github.com/rust-lang/crates.io-index" 4774checksum = "182d688496c06bf08ea896459bf483eb29cdff35c1c4c115fb14053514303064" 4775dependencies = [ 4776 "anyhow", 4777 "cargo_toml", 4778 "dirs 6.0.0", 4779 "glob", 4780 "heck 0.5.0", 4781 "json-patch", 4782 "schemars 0.8.22", 4783 "semver", 4784 "serde", 4785 "serde_json", 4786 "tauri-utils", 4787 "tauri-winres", 4788 "toml 0.8.2", 4789 "walkdir", 4790] 4791 4792[[package]] 4793name = "tauri-codegen" 4794version = "2.3.1" 4795source = "registry+https://github.com/rust-lang/crates.io-index" 4796checksum = "b54a99a6cd8e01abcfa61508177e6096a4fe2681efecee9214e962f2f073ae4a" 4797dependencies = [ 4798 "base64 0.22.1", 4799 "brotli", 4800 "ico", 4801 "json-patch", 4802 "plist", 4803 "png", 4804 "proc-macro2", 4805 "quote", 4806 "semver", 4807 "serde", 4808 "serde_json", 4809 "sha2", 4810 "syn 2.0.104", 4811 "tauri-utils", 4812 "thiserror 2.0.12", 4813 "time", 4814 "url", 4815 "uuid", 4816 "walkdir", 4817] 4818 4819[[package]] 4820name = "tauri-macros" 4821version = "2.3.2" 4822source = "registry+https://github.com/rust-lang/crates.io-index" 4823checksum = "7945b14dc45e23532f2ded6e120170bbdd4af5ceaa45784a6b33d250fbce3f9e" 4824dependencies = [ 4825 "heck 0.5.0", 4826 "proc-macro2", 4827 "quote", 4828 "syn 2.0.104", 4829 "tauri-codegen", 4830 "tauri-utils", 4831] 4832 4833[[package]] 4834name = "tauri-plugin" 4835version = "2.3.1" 4836source = "registry+https://github.com/rust-lang/crates.io-index" 4837checksum = "5bd5c1e56990c70a906ef67a9851bbdba9136d26075ee9a2b19c8b46986b3e02" 4838dependencies = [ 4839 "anyhow", 4840 "glob", 4841 "plist", 4842 "schemars 0.8.22", 4843 "serde", 4844 "serde_json", 4845 "tauri-utils", 4846 "toml 0.8.2", 4847 "walkdir", 4848] 4849 4850[[package]] 4851name = "tauri-plugin-deep-link" 4852version = "2.4.1" 4853source = "registry+https://github.com/rust-lang/crates.io-index" 4854checksum = "1fec67f32d7a06d80bd3dc009fdb678c35a66116d9cb8cd2bb32e406c2b5bbd2" 4855dependencies = [ 4856 "dunce", 4857 "rust-ini", 4858 "serde", 4859 "serde_json", 4860 "tauri", 4861 "tauri-plugin", 4862 "tauri-utils", 4863 "thiserror 2.0.12", 4864 "tracing", 4865 "url", 4866 "windows-registry", 4867 "windows-result", 4868] 4869 4870[[package]] 4871name = "tauri-plugin-fs" 4872version = "2.4.1" 4873source = "registry+https://github.com/rust-lang/crates.io-index" 4874checksum = "8c6ef84ee2f2094ce093e55106d90d763ba343fad57566992962e8f76d113f99" 4875dependencies = [ 4876 "anyhow", 4877 "dunce", 4878 "glob", 4879 "percent-encoding", 4880 "schemars 0.8.22", 4881 "serde", 4882 "serde_json", 4883 "serde_repr", 4884 "tauri", 4885 "tauri-plugin", 4886 "tauri-utils", 4887 "thiserror 2.0.12", 4888 "toml 0.8.2", 4889 "url", 4890] 4891 4892[[package]] 4893name = "tauri-plugin-http" 4894version = "2.5.1" 4895source = "registry+https://github.com/rust-lang/crates.io-index" 4896checksum = "fcde333d97e565a7765aad82f32d8672458f7bd77b6ee653830d5dded9d7b5c2" 4897dependencies = [ 4898 "bytes", 4899 "cookie_store", 4900 "data-url", 4901 "http", 4902 "regex", 4903 "reqwest", 4904 "schemars 0.8.22", 4905 "serde", 4906 "serde_json", 4907 "tauri", 4908 "tauri-plugin", 4909 "tauri-plugin-fs", 4910 "thiserror 2.0.12", 4911 "tokio", 4912 "url", 4913 "urlpattern", 4914] 4915 4916[[package]] 4917name = "tauri-plugin-process" 4918version = "2.3.0" 4919source = "registry+https://github.com/rust-lang/crates.io-index" 4920checksum = "7461c622a5ea00eb9cd9f7a08dbd3bf79484499fd5c21aa2964677f64ca651ab" 4921dependencies = [ 4922 "tauri", 4923 "tauri-plugin", 4924] 4925 4926[[package]] 4927name = "tauri-plugin-shell" 4928version = "2.3.0" 4929source = "registry+https://github.com/rust-lang/crates.io-index" 4930checksum = "2b9ffadec5c3523f11e8273465cacb3d86ea7652a28e6e2a2e9b5c182f791d25" 4931dependencies = [ 4932 "encoding_rs", 4933 "log", 4934 "open", 4935 "os_pipe", 4936 "regex", 4937 "schemars 0.8.22", 4938 "serde", 4939 "serde_json", 4940 "shared_child", 4941 "tauri", 4942 "tauri-plugin", 4943 "thiserror 2.0.12", 4944 "tokio", 4945] 4946 4947[[package]] 4948name = "tauri-plugin-single-instance" 4949version = "2.2.0" 4950source = "registry+https://github.com/rust-lang/crates.io-index" 4951checksum = "0f36019ee9832dc99e4450bb55a21cfad8633b19c2c18bd17c7741939b070ede" 4952dependencies = [ 4953 "serde", 4954 "serde_json", 4955 "tauri", 4956 "tauri-plugin-deep-link", 4957 "thiserror 2.0.12", 4958 "tracing", 4959 "windows-sys 0.59.0", 4960 "zbus", 4961] 4962 4963[[package]] 4964name = "tauri-runtime" 4965version = "2.7.1" 4966source = "registry+https://github.com/rust-lang/crates.io-index" 4967checksum = "2b1cc885be806ea15ff7b0eb47098a7b16323d9228876afda329e34e2d6c4676" 4968dependencies = [ 4969 "cookie", 4970 "dpi", 4971 "gtk", 4972 "http", 4973 "jni", 4974 "objc2 0.6.1", 4975 "objc2-ui-kit", 4976 "raw-window-handle", 4977 "serde", 4978 "serde_json", 4979 "tauri-utils", 4980 "thiserror 2.0.12", 4981 "url", 4982 "windows", 4983] 4984 4985[[package]] 4986name = "tauri-runtime-wry" 4987version = "2.7.2" 4988source = "registry+https://github.com/rust-lang/crates.io-index" 4989checksum = "fe653a2fbbef19fe898efc774bc52c8742576342a33d3d028c189b57eb1d2439" 4990dependencies = [ 4991 "gtk", 4992 "http", 4993 "jni", 4994 "log", 4995 "objc2 0.6.1", 4996 "objc2-app-kit", 4997 "objc2-foundation 0.3.1", 4998 "once_cell", 4999 "percent-encoding", 5000 "raw-window-handle", 5001 "softbuffer", 5002 "tao", 5003 "tauri-runtime", 5004 "tauri-utils", 5005 "url", 5006 "webkit2gtk", 5007 "webview2-com", 5008 "windows", 5009 "wry", 5010] 5011 5012[[package]] 5013name = "tauri-utils" 5014version = "2.6.0" 5015source = "registry+https://github.com/rust-lang/crates.io-index" 5016checksum = "9330c15cabfe1d9f213478c9e8ec2b0c76dab26bb6f314b8ad1c8a568c1d186e" 5017dependencies = [ 5018 "anyhow", 5019 "brotli", 5020 "cargo_metadata", 5021 "ctor", 5022 "dunce", 5023 "glob", 5024 "html5ever", 5025 "http", 5026 "infer", 5027 "json-patch", 5028 "kuchikiki", 5029 "log", 5030 "memchr", 5031 "phf 0.11.3", 5032 "proc-macro2", 5033 "quote", 5034 "regex", 5035 "schemars 0.8.22", 5036 "semver", 5037 "serde", 5038 "serde-untagged", 5039 "serde_json", 5040 "serde_with", 5041 "swift-rs", 5042 "thiserror 2.0.12", 5043 "toml 0.8.2", 5044 "url", 5045 "urlpattern", 5046 "uuid", 5047 "walkdir", 5048] 5049 5050[[package]] 5051name = "tauri-winres" 5052version = "0.3.2" 5053source = "registry+https://github.com/rust-lang/crates.io-index" 5054checksum = "7c6d9028d41d4de835e3c482c677a8cb88137ac435d6ff9a71f392d4421576c9" 5055dependencies = [ 5056 "embed-resource", 5057 "indexmap 2.10.0", 5058 "toml 0.9.4", 5059] 5060 5061[[package]] 5062name = "tempfile" 5063version = "3.20.0" 5064source = "registry+https://github.com/rust-lang/crates.io-index" 5065checksum = "e8a64e3985349f2441a1a9ef0b853f869006c3855f2cda6862a94d26ebb9d6a1" 5066dependencies = [ 5067 "fastrand", 5068 "getrandom 0.3.3", 5069 "once_cell", 5070 "rustix", 5071 "windows-sys 0.59.0", 5072] 5073 5074[[package]] 5075name = "tendril" 5076version = "0.4.3" 5077source = "registry+https://github.com/rust-lang/crates.io-index" 5078checksum = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0" 5079dependencies = [ 5080 "futf", 5081 "mac", 5082 "utf-8", 5083] 5084 5085[[package]] 5086name = "thiserror" 5087version = "1.0.69" 5088source = "registry+https://github.com/rust-lang/crates.io-index" 5089checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" 5090dependencies = [ 5091 "thiserror-impl 1.0.69", 5092] 5093 5094[[package]] 5095name = "thiserror" 5096version = "2.0.12" 5097source = "registry+https://github.com/rust-lang/crates.io-index" 5098checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708" 5099dependencies = [ 5100 "thiserror-impl 2.0.12", 5101] 5102 5103[[package]] 5104name = "thiserror-impl" 5105version = "1.0.69" 5106source = "registry+https://github.com/rust-lang/crates.io-index" 5107checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" 5108dependencies = [ 5109 "proc-macro2", 5110 "quote", 5111 "syn 2.0.104", 5112] 5113 5114[[package]] 5115name = "thiserror-impl" 5116version = "2.0.12" 5117source = "registry+https://github.com/rust-lang/crates.io-index" 5118checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d" 5119dependencies = [ 5120 "proc-macro2", 5121 "quote", 5122 "syn 2.0.104", 5123] 5124 5125[[package]] 5126name = "tiff" 5127version = "0.9.1" 5128source = "registry+https://github.com/rust-lang/crates.io-index" 5129checksum = "ba1310fcea54c6a9a4fd1aad794ecc02c31682f6bfbecdf460bf19533eed1e3e" 5130dependencies = [ 5131 "flate2", 5132 "jpeg-decoder", 5133 "weezl", 5134] 5135 5136[[package]] 5137name = "time" 5138version = "0.3.41" 5139source = "registry+https://github.com/rust-lang/crates.io-index" 5140checksum = "8a7619e19bc266e0f9c5e6686659d394bc57973859340060a69221e57dbc0c40" 5141dependencies = [ 5142 "deranged", 5143 "itoa", 5144 "num-conv", 5145 "powerfmt", 5146 "serde", 5147 "time-core", 5148 "time-macros", 5149] 5150 5151[[package]] 5152name = "time-core" 5153version = "0.1.4" 5154source = "registry+https://github.com/rust-lang/crates.io-index" 5155checksum = "c9e9a38711f559d9e3ce1cdb06dd7c5b8ea546bc90052da6d06bb76da74bb07c" 5156 5157[[package]] 5158name = "time-macros" 5159version = "0.2.22" 5160source = "registry+https://github.com/rust-lang/crates.io-index" 5161checksum = "3526739392ec93fd8b359c8e98514cb3e8e021beb4e5f597b00a0221f8ed8a49" 5162dependencies = [ 5163 "num-conv", 5164 "time-core", 5165] 5166 5167[[package]] 5168name = "tiny-keccak" 5169version = "2.0.2" 5170source = "registry+https://github.com/rust-lang/crates.io-index" 5171checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237" 5172dependencies = [ 5173 "crunchy", 5174] 5175 5176[[package]] 5177name = "tinystr" 5178version = "0.8.1" 5179source = "registry+https://github.com/rust-lang/crates.io-index" 5180checksum = "5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b" 5181dependencies = [ 5182 "displaydoc", 5183 "zerovec", 5184] 5185 5186[[package]] 5187name = "tinyvec" 5188version = "1.9.0" 5189source = "registry+https://github.com/rust-lang/crates.io-index" 5190checksum = "09b3661f17e86524eccd4371ab0429194e0d7c008abb45f7a7495b1719463c71" 5191dependencies = [ 5192 "tinyvec_macros", 5193] 5194 5195[[package]] 5196name = "tinyvec_macros" 5197version = "0.1.1" 5198source = "registry+https://github.com/rust-lang/crates.io-index" 5199checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 5200 5201[[package]] 5202name = "tokio" 5203version = "1.47.0" 5204source = "registry+https://github.com/rust-lang/crates.io-index" 5205checksum = "43864ed400b6043a4757a25c7a64a8efde741aed79a056a2fb348a406701bb35" 5206dependencies = [ 5207 "backtrace", 5208 "bytes", 5209 "io-uring", 5210 "libc", 5211 "mio 1.0.4", 5212 "pin-project-lite", 5213 "slab", 5214 "socket2 0.6.0", 5215 "tokio-macros", 5216 "windows-sys 0.59.0", 5217] 5218 5219[[package]] 5220name = "tokio-macros" 5221version = "2.5.0" 5222source = "registry+https://github.com/rust-lang/crates.io-index" 5223checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8" 5224dependencies = [ 5225 "proc-macro2", 5226 "quote", 5227 "syn 2.0.104", 5228] 5229 5230[[package]] 5231name = "tokio-native-tls" 5232version = "0.3.1" 5233source = "registry+https://github.com/rust-lang/crates.io-index" 5234checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2" 5235dependencies = [ 5236 "native-tls", 5237 "tokio", 5238] 5239 5240[[package]] 5241name = "tokio-rustls" 5242version = "0.26.2" 5243source = "registry+https://github.com/rust-lang/crates.io-index" 5244checksum = "8e727b36a1a0e8b74c376ac2211e40c2c8af09fb4013c60d910495810f008e9b" 5245dependencies = [ 5246 "rustls", 5247 "tokio", 5248] 5249 5250[[package]] 5251name = "tokio-util" 5252version = "0.7.15" 5253source = "registry+https://github.com/rust-lang/crates.io-index" 5254checksum = "66a539a9ad6d5d281510d5bd368c973d636c02dbf8a67300bfb6b950696ad7df" 5255dependencies = [ 5256 "bytes", 5257 "futures-core", 5258 "futures-sink", 5259 "pin-project-lite", 5260 "tokio", 5261] 5262 5263[[package]] 5264name = "toml" 5265version = "0.8.2" 5266source = "registry+https://github.com/rust-lang/crates.io-index" 5267checksum = "185d8ab0dfbb35cf1399a6344d8484209c088f75f8f68230da55d48d95d43e3d" 5268dependencies = [ 5269 "serde", 5270 "serde_spanned 0.6.9", 5271 "toml_datetime 0.6.3", 5272 "toml_edit 0.20.2", 5273] 5274 5275[[package]] 5276name = "toml" 5277version = "0.9.4" 5278source = "registry+https://github.com/rust-lang/crates.io-index" 5279checksum = "41ae868b5a0f67631c14589f7e250c1ea2c574ee5ba21c6c8dd4b1485705a5a1" 5280dependencies = [ 5281 "indexmap 2.10.0", 5282 "serde", 5283 "serde_spanned 1.0.0", 5284 "toml_datetime 0.7.0", 5285 "toml_parser", 5286 "toml_writer", 5287 "winnow 0.7.12", 5288] 5289 5290[[package]] 5291name = "toml_datetime" 5292version = "0.6.3" 5293source = "registry+https://github.com/rust-lang/crates.io-index" 5294checksum = "7cda73e2f1397b1262d6dfdcef8aafae14d1de7748d66822d3bfeeb6d03e5e4b" 5295dependencies = [ 5296 "serde", 5297] 5298 5299[[package]] 5300name = "toml_datetime" 5301version = "0.7.0" 5302source = "registry+https://github.com/rust-lang/crates.io-index" 5303checksum = "bade1c3e902f58d73d3f294cd7f20391c1cb2fbcb643b73566bc773971df91e3" 5304dependencies = [ 5305 "serde", 5306] 5307 5308[[package]] 5309name = "toml_edit" 5310version = "0.19.15" 5311source = "registry+https://github.com/rust-lang/crates.io-index" 5312checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421" 5313dependencies = [ 5314 "indexmap 2.10.0", 5315 "toml_datetime 0.6.3", 5316 "winnow 0.5.40", 5317] 5318 5319[[package]] 5320name = "toml_edit" 5321version = "0.20.2" 5322source = "registry+https://github.com/rust-lang/crates.io-index" 5323checksum = "396e4d48bbb2b7554c944bde63101b5ae446cff6ec4a24227428f15eb72ef338" 5324dependencies = [ 5325 "indexmap 2.10.0", 5326 "serde", 5327 "serde_spanned 0.6.9", 5328 "toml_datetime 0.6.3", 5329 "winnow 0.5.40", 5330] 5331 5332[[package]] 5333name = "toml_parser" 5334version = "1.0.1" 5335source = "registry+https://github.com/rust-lang/crates.io-index" 5336checksum = "97200572db069e74c512a14117b296ba0a80a30123fbbb5aa1f4a348f639ca30" 5337dependencies = [ 5338 "winnow 0.7.12", 5339] 5340 5341[[package]] 5342name = "toml_writer" 5343version = "1.0.2" 5344source = "registry+https://github.com/rust-lang/crates.io-index" 5345checksum = "fcc842091f2def52017664b53082ecbbeb5c7731092bad69d2c63050401dfd64" 5346 5347[[package]] 5348name = "tower" 5349version = "0.5.2" 5350source = "registry+https://github.com/rust-lang/crates.io-index" 5351checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9" 5352dependencies = [ 5353 "futures-core", 5354 "futures-util", 5355 "pin-project-lite", 5356 "sync_wrapper", 5357 "tokio", 5358 "tower-layer", 5359 "tower-service", 5360] 5361 5362[[package]] 5363name = "tower-http" 5364version = "0.6.6" 5365source = "registry+https://github.com/rust-lang/crates.io-index" 5366checksum = "adc82fd73de2a9722ac5da747f12383d2bfdb93591ee6c58486e0097890f05f2" 5367dependencies = [ 5368 "bitflags 2.9.1", 5369 "bytes", 5370 "futures-util", 5371 "http", 5372 "http-body", 5373 "iri-string", 5374 "pin-project-lite", 5375 "tower", 5376 "tower-layer", 5377 "tower-service", 5378] 5379 5380[[package]] 5381name = "tower-layer" 5382version = "0.3.3" 5383source = "registry+https://github.com/rust-lang/crates.io-index" 5384checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e" 5385 5386[[package]] 5387name = "tower-service" 5388version = "0.3.3" 5389source = "registry+https://github.com/rust-lang/crates.io-index" 5390checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" 5391 5392[[package]] 5393name = "tracing" 5394version = "0.1.41" 5395source = "registry+https://github.com/rust-lang/crates.io-index" 5396checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0" 5397dependencies = [ 5398 "pin-project-lite", 5399 "tracing-attributes", 5400 "tracing-core", 5401] 5402 5403[[package]] 5404name = "tracing-attributes" 5405version = "0.1.30" 5406source = "registry+https://github.com/rust-lang/crates.io-index" 5407checksum = "81383ab64e72a7a8b8e13130c49e3dab29def6d0c7d76a03087b3cf71c5c6903" 5408dependencies = [ 5409 "proc-macro2", 5410 "quote", 5411 "syn 2.0.104", 5412] 5413 5414[[package]] 5415name = "tracing-core" 5416version = "0.1.34" 5417source = "registry+https://github.com/rust-lang/crates.io-index" 5418checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678" 5419dependencies = [ 5420 "once_cell", 5421] 5422 5423[[package]] 5424name = "tray-icon" 5425version = "0.21.1" 5426source = "registry+https://github.com/rust-lang/crates.io-index" 5427checksum = "a0d92153331e7d02ec09137538996a7786fe679c629c279e82a6be762b7e6fe2" 5428dependencies = [ 5429 "crossbeam-channel", 5430 "dirs 6.0.0", 5431 "libappindicator", 5432 "muda", 5433 "objc2 0.6.1", 5434 "objc2-app-kit", 5435 "objc2-core-foundation", 5436 "objc2-core-graphics", 5437 "objc2-foundation 0.3.1", 5438 "once_cell", 5439 "png", 5440 "serde", 5441 "thiserror 2.0.12", 5442 "windows-sys 0.59.0", 5443] 5444 5445[[package]] 5446name = "try-lock" 5447version = "0.2.5" 5448source = "registry+https://github.com/rust-lang/crates.io-index" 5449checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" 5450 5451[[package]] 5452name = "typeid" 5453version = "1.0.3" 5454source = "registry+https://github.com/rust-lang/crates.io-index" 5455checksum = "bc7d623258602320d5c55d1bc22793b57daff0ec7efc270ea7d55ce1d5f5471c" 5456 5457[[package]] 5458name = "typenum" 5459version = "1.18.0" 5460source = "registry+https://github.com/rust-lang/crates.io-index" 5461checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f" 5462 5463[[package]] 5464name = "uds_windows" 5465version = "1.1.0" 5466source = "registry+https://github.com/rust-lang/crates.io-index" 5467checksum = "89daebc3e6fd160ac4aa9fc8b3bf71e1f74fbf92367ae71fb83a037e8bf164b9" 5468dependencies = [ 5469 "memoffset", 5470 "tempfile", 5471 "winapi", 5472] 5473 5474[[package]] 5475name = "unic-char-property" 5476version = "0.9.0" 5477source = "registry+https://github.com/rust-lang/crates.io-index" 5478checksum = "a8c57a407d9b6fa02b4795eb81c5b6652060a15a7903ea981f3d723e6c0be221" 5479dependencies = [ 5480 "unic-char-range", 5481] 5482 5483[[package]] 5484name = "unic-char-range" 5485version = "0.9.0" 5486source = "registry+https://github.com/rust-lang/crates.io-index" 5487checksum = "0398022d5f700414f6b899e10b8348231abf9173fa93144cbc1a43b9793c1fbc" 5488 5489[[package]] 5490name = "unic-common" 5491version = "0.9.0" 5492source = "registry+https://github.com/rust-lang/crates.io-index" 5493checksum = "80d7ff825a6a654ee85a63e80f92f054f904f21e7d12da4e22f9834a4aaa35bc" 5494 5495[[package]] 5496name = "unic-ucd-ident" 5497version = "0.9.0" 5498source = "registry+https://github.com/rust-lang/crates.io-index" 5499checksum = "e230a37c0381caa9219d67cf063aa3a375ffed5bf541a452db16e744bdab6987" 5500dependencies = [ 5501 "unic-char-property", 5502 "unic-char-range", 5503 "unic-ucd-version", 5504] 5505 5506[[package]] 5507name = "unic-ucd-version" 5508version = "0.9.0" 5509source = "registry+https://github.com/rust-lang/crates.io-index" 5510checksum = "96bd2f2237fe450fcd0a1d2f5f4e91711124f7857ba2e964247776ebeeb7b0c4" 5511dependencies = [ 5512 "unic-common", 5513] 5514 5515[[package]] 5516name = "unicode-ident" 5517version = "1.0.18" 5518source = "registry+https://github.com/rust-lang/crates.io-index" 5519checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512" 5520 5521[[package]] 5522name = "unicode-segmentation" 5523version = "1.12.0" 5524source = "registry+https://github.com/rust-lang/crates.io-index" 5525checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493" 5526 5527[[package]] 5528name = "untrusted" 5529version = "0.9.0" 5530source = "registry+https://github.com/rust-lang/crates.io-index" 5531checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" 5532 5533[[package]] 5534name = "url" 5535version = "2.5.4" 5536source = "registry+https://github.com/rust-lang/crates.io-index" 5537checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60" 5538dependencies = [ 5539 "form_urlencoded", 5540 "idna", 5541 "percent-encoding", 5542 "serde", 5543] 5544 5545[[package]] 5546name = "urlpattern" 5547version = "0.3.0" 5548source = "registry+https://github.com/rust-lang/crates.io-index" 5549checksum = "70acd30e3aa1450bc2eece896ce2ad0d178e9c079493819301573dae3c37ba6d" 5550dependencies = [ 5551 "regex", 5552 "serde", 5553 "unic-ucd-ident", 5554 "url", 5555] 5556 5557[[package]] 5558name = "utf-8" 5559version = "0.7.6" 5560source = "registry+https://github.com/rust-lang/crates.io-index" 5561checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" 5562 5563[[package]] 5564name = "utf8_iter" 5565version = "1.0.4" 5566source = "registry+https://github.com/rust-lang/crates.io-index" 5567checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" 5568 5569[[package]] 5570name = "uuid" 5571version = "1.17.0" 5572source = "registry+https://github.com/rust-lang/crates.io-index" 5573checksum = "3cf4199d1e5d15ddd86a694e4d0dffa9c323ce759fea589f00fef9d81cc1931d" 5574dependencies = [ 5575 "getrandom 0.3.3", 5576 "js-sys", 5577 "serde", 5578 "wasm-bindgen", 5579] 5580 5581[[package]] 5582name = "v_frame" 5583version = "0.3.9" 5584source = "registry+https://github.com/rust-lang/crates.io-index" 5585checksum = "666b7727c8875d6ab5db9533418d7c764233ac9c0cff1d469aec8fa127597be2" 5586dependencies = [ 5587 "aligned-vec", 5588 "num-traits", 5589 "wasm-bindgen", 5590] 5591 5592[[package]] 5593name = "vcpkg" 5594version = "0.2.15" 5595source = "registry+https://github.com/rust-lang/crates.io-index" 5596checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" 5597 5598[[package]] 5599name = "version-compare" 5600version = "0.2.0" 5601source = "registry+https://github.com/rust-lang/crates.io-index" 5602checksum = "852e951cb7832cb45cb1169900d19760cfa39b82bc0ea9c0e5a14ae88411c98b" 5603 5604[[package]] 5605name = "version_check" 5606version = "0.9.5" 5607source = "registry+https://github.com/rust-lang/crates.io-index" 5608checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" 5609 5610[[package]] 5611name = "vrcpm-rs" 5612version = "0.2.4" 5613dependencies = [ 5614 "dirs 5.0.1", 5615 "fast_image_resize", 5616 "image", 5617 "mslnk", 5618 "notify", 5619 "open", 5620 "regex", 5621 "reqwest", 5622 "serde", 5623 "serde_json", 5624 "tauri", 5625 "tauri-build", 5626 "tauri-plugin-deep-link", 5627 "tauri-plugin-http", 5628 "tauri-plugin-process", 5629 "tauri-plugin-shell", 5630 "tauri-plugin-single-instance", 5631] 5632 5633[[package]] 5634name = "vswhom" 5635version = "0.1.0" 5636source = "registry+https://github.com/rust-lang/crates.io-index" 5637checksum = "be979b7f07507105799e854203b470ff7c78a1639e330a58f183b5fea574608b" 5638dependencies = [ 5639 "libc", 5640 "vswhom-sys", 5641] 5642 5643[[package]] 5644name = "vswhom-sys" 5645version = "0.1.3" 5646source = "registry+https://github.com/rust-lang/crates.io-index" 5647checksum = "fb067e4cbd1ff067d1df46c9194b5de0e98efd2810bbc95c5d5e5f25a3231150" 5648dependencies = [ 5649 "cc", 5650 "libc", 5651] 5652 5653[[package]] 5654name = "walkdir" 5655version = "2.5.0" 5656source = "registry+https://github.com/rust-lang/crates.io-index" 5657checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" 5658dependencies = [ 5659 "same-file", 5660 "winapi-util", 5661] 5662 5663[[package]] 5664name = "want" 5665version = "0.3.1" 5666source = "registry+https://github.com/rust-lang/crates.io-index" 5667checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" 5668dependencies = [ 5669 "try-lock", 5670] 5671 5672[[package]] 5673name = "wasi" 5674version = "0.9.0+wasi-snapshot-preview1" 5675source = "registry+https://github.com/rust-lang/crates.io-index" 5676checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" 5677 5678[[package]] 5679name = "wasi" 5680version = "0.11.1+wasi-snapshot-preview1" 5681source = "registry+https://github.com/rust-lang/crates.io-index" 5682checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" 5683 5684[[package]] 5685name = "wasi" 5686version = "0.14.2+wasi-0.2.4" 5687source = "registry+https://github.com/rust-lang/crates.io-index" 5688checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3" 5689dependencies = [ 5690 "wit-bindgen-rt", 5691] 5692 5693[[package]] 5694name = "wasm-bindgen" 5695version = "0.2.100" 5696source = "registry+https://github.com/rust-lang/crates.io-index" 5697checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5" 5698dependencies = [ 5699 "cfg-if", 5700 "once_cell", 5701 "rustversion", 5702 "wasm-bindgen-macro", 5703] 5704 5705[[package]] 5706name = "wasm-bindgen-backend" 5707version = "0.2.100" 5708source = "registry+https://github.com/rust-lang/crates.io-index" 5709checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6" 5710dependencies = [ 5711 "bumpalo", 5712 "log", 5713 "proc-macro2", 5714 "quote", 5715 "syn 2.0.104", 5716 "wasm-bindgen-shared", 5717] 5718 5719[[package]] 5720name = "wasm-bindgen-futures" 5721version = "0.4.50" 5722source = "registry+https://github.com/rust-lang/crates.io-index" 5723checksum = "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61" 5724dependencies = [ 5725 "cfg-if", 5726 "js-sys", 5727 "once_cell", 5728 "wasm-bindgen", 5729 "web-sys", 5730] 5731 5732[[package]] 5733name = "wasm-bindgen-macro" 5734version = "0.2.100" 5735source = "registry+https://github.com/rust-lang/crates.io-index" 5736checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407" 5737dependencies = [ 5738 "quote", 5739 "wasm-bindgen-macro-support", 5740] 5741 5742[[package]] 5743name = "wasm-bindgen-macro-support" 5744version = "0.2.100" 5745source = "registry+https://github.com/rust-lang/crates.io-index" 5746checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de" 5747dependencies = [ 5748 "proc-macro2", 5749 "quote", 5750 "syn 2.0.104", 5751 "wasm-bindgen-backend", 5752 "wasm-bindgen-shared", 5753] 5754 5755[[package]] 5756name = "wasm-bindgen-shared" 5757version = "0.2.100" 5758source = "registry+https://github.com/rust-lang/crates.io-index" 5759checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d" 5760dependencies = [ 5761 "unicode-ident", 5762] 5763 5764[[package]] 5765name = "wasm-streams" 5766version = "0.4.2" 5767source = "registry+https://github.com/rust-lang/crates.io-index" 5768checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65" 5769dependencies = [ 5770 "futures-util", 5771 "js-sys", 5772 "wasm-bindgen", 5773 "wasm-bindgen-futures", 5774 "web-sys", 5775] 5776 5777[[package]] 5778name = "web-sys" 5779version = "0.3.77" 5780source = "registry+https://github.com/rust-lang/crates.io-index" 5781checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2" 5782dependencies = [ 5783 "js-sys", 5784 "wasm-bindgen", 5785] 5786 5787[[package]] 5788name = "web-time" 5789version = "1.1.0" 5790source = "registry+https://github.com/rust-lang/crates.io-index" 5791checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb" 5792dependencies = [ 5793 "js-sys", 5794 "wasm-bindgen", 5795] 5796 5797[[package]] 5798name = "webkit2gtk" 5799version = "2.0.1" 5800source = "registry+https://github.com/rust-lang/crates.io-index" 5801checksum = "76b1bc1e54c581da1e9f179d0b38512ba358fb1af2d634a1affe42e37172361a" 5802dependencies = [ 5803 "bitflags 1.3.2", 5804 "cairo-rs", 5805 "gdk", 5806 "gdk-sys", 5807 "gio", 5808 "gio-sys", 5809 "glib", 5810 "glib-sys", 5811 "gobject-sys", 5812 "gtk", 5813 "gtk-sys", 5814 "javascriptcore-rs", 5815 "libc", 5816 "once_cell", 5817 "soup3", 5818 "webkit2gtk-sys", 5819] 5820 5821[[package]] 5822name = "webkit2gtk-sys" 5823version = "2.0.1" 5824source = "registry+https://github.com/rust-lang/crates.io-index" 5825checksum = "62daa38afc514d1f8f12b8693d30d5993ff77ced33ce30cd04deebc267a6d57c" 5826dependencies = [ 5827 "bitflags 1.3.2", 5828 "cairo-sys-rs", 5829 "gdk-sys", 5830 "gio-sys", 5831 "glib-sys", 5832 "gobject-sys", 5833 "gtk-sys", 5834 "javascriptcore-rs-sys", 5835 "libc", 5836 "pkg-config", 5837 "soup3-sys", 5838 "system-deps", 5839] 5840 5841[[package]] 5842name = "webpki-roots" 5843version = "1.0.2" 5844source = "registry+https://github.com/rust-lang/crates.io-index" 5845checksum = "7e8983c3ab33d6fb807cfcdad2491c4ea8cbc8ed839181c7dfd9c67c83e261b2" 5846dependencies = [ 5847 "rustls-pki-types", 5848] 5849 5850[[package]] 5851name = "webview2-com" 5852version = "0.38.0" 5853source = "registry+https://github.com/rust-lang/crates.io-index" 5854checksum = "d4ba622a989277ef3886dd5afb3e280e3dd6d974b766118950a08f8f678ad6a4" 5855dependencies = [ 5856 "webview2-com-macros", 5857 "webview2-com-sys", 5858 "windows", 5859 "windows-core", 5860 "windows-implement", 5861 "windows-interface", 5862] 5863 5864[[package]] 5865name = "webview2-com-macros" 5866version = "0.8.0" 5867source = "registry+https://github.com/rust-lang/crates.io-index" 5868checksum = "1d228f15bba3b9d56dde8bddbee66fa24545bd17b48d5128ccf4a8742b18e431" 5869dependencies = [ 5870 "proc-macro2", 5871 "quote", 5872 "syn 2.0.104", 5873] 5874 5875[[package]] 5876name = "webview2-com-sys" 5877version = "0.38.0" 5878source = "registry+https://github.com/rust-lang/crates.io-index" 5879checksum = "36695906a1b53a3bf5c4289621efedac12b73eeb0b89e7e1a89b517302d5d75c" 5880dependencies = [ 5881 "thiserror 2.0.12", 5882 "windows", 5883 "windows-core", 5884] 5885 5886[[package]] 5887name = "weezl" 5888version = "0.1.10" 5889source = "registry+https://github.com/rust-lang/crates.io-index" 5890checksum = "a751b3277700db47d3e574514de2eced5e54dc8a5436a3bf7a0b248b2cee16f3" 5891 5892[[package]] 5893name = "winapi" 5894version = "0.3.9" 5895source = "registry+https://github.com/rust-lang/crates.io-index" 5896checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 5897dependencies = [ 5898 "winapi-i686-pc-windows-gnu", 5899 "winapi-x86_64-pc-windows-gnu", 5900] 5901 5902[[package]] 5903name = "winapi-i686-pc-windows-gnu" 5904version = "0.4.0" 5905source = "registry+https://github.com/rust-lang/crates.io-index" 5906checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 5907 5908[[package]] 5909name = "winapi-util" 5910version = "0.1.9" 5911source = "registry+https://github.com/rust-lang/crates.io-index" 5912checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb" 5913dependencies = [ 5914 "windows-sys 0.59.0", 5915] 5916 5917[[package]] 5918name = "winapi-x86_64-pc-windows-gnu" 5919version = "0.4.0" 5920source = "registry+https://github.com/rust-lang/crates.io-index" 5921checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 5922 5923[[package]] 5924name = "window-vibrancy" 5925version = "0.6.0" 5926source = "registry+https://github.com/rust-lang/crates.io-index" 5927checksum = "d9bec5a31f3f9362f2258fd0e9c9dd61a9ca432e7306cc78c444258f0dce9a9c" 5928dependencies = [ 5929 "objc2 0.6.1", 5930 "objc2-app-kit", 5931 "objc2-core-foundation", 5932 "objc2-foundation 0.3.1", 5933 "raw-window-handle", 5934 "windows-sys 0.59.0", 5935 "windows-version", 5936] 5937 5938[[package]] 5939name = "windows" 5940version = "0.61.3" 5941source = "registry+https://github.com/rust-lang/crates.io-index" 5942checksum = "9babd3a767a4c1aef6900409f85f5d53ce2544ccdfaa86dad48c91782c6d6893" 5943dependencies = [ 5944 "windows-collections", 5945 "windows-core", 5946 "windows-future", 5947 "windows-link", 5948 "windows-numerics", 5949] 5950 5951[[package]] 5952name = "windows-collections" 5953version = "0.2.0" 5954source = "registry+https://github.com/rust-lang/crates.io-index" 5955checksum = "3beeceb5e5cfd9eb1d76b381630e82c4241ccd0d27f1a39ed41b2760b255c5e8" 5956dependencies = [ 5957 "windows-core", 5958] 5959 5960[[package]] 5961name = "windows-core" 5962version = "0.61.2" 5963source = "registry+https://github.com/rust-lang/crates.io-index" 5964checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3" 5965dependencies = [ 5966 "windows-implement", 5967 "windows-interface", 5968 "windows-link", 5969 "windows-result", 5970 "windows-strings", 5971] 5972 5973[[package]] 5974name = "windows-future" 5975version = "0.2.1" 5976source = "registry+https://github.com/rust-lang/crates.io-index" 5977checksum = "fc6a41e98427b19fe4b73c550f060b59fa592d7d686537eebf9385621bfbad8e" 5978dependencies = [ 5979 "windows-core", 5980 "windows-link", 5981 "windows-threading", 5982] 5983 5984[[package]] 5985name = "windows-implement" 5986version = "0.60.0" 5987source = "registry+https://github.com/rust-lang/crates.io-index" 5988checksum = "a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836" 5989dependencies = [ 5990 "proc-macro2", 5991 "quote", 5992 "syn 2.0.104", 5993] 5994 5995[[package]] 5996name = "windows-interface" 5997version = "0.59.1" 5998source = "registry+https://github.com/rust-lang/crates.io-index" 5999checksum = "bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8" 6000dependencies = [ 6001 "proc-macro2", 6002 "quote", 6003 "syn 2.0.104", 6004] 6005 6006[[package]] 6007name = "windows-link" 6008version = "0.1.3" 6009source = "registry+https://github.com/rust-lang/crates.io-index" 6010checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a" 6011 6012[[package]] 6013name = "windows-numerics" 6014version = "0.2.0" 6015source = "registry+https://github.com/rust-lang/crates.io-index" 6016checksum = "9150af68066c4c5c07ddc0ce30421554771e528bde427614c61038bc2c92c2b1" 6017dependencies = [ 6018 "windows-core", 6019 "windows-link", 6020] 6021 6022[[package]] 6023name = "windows-registry" 6024version = "0.5.3" 6025source = "registry+https://github.com/rust-lang/crates.io-index" 6026checksum = "5b8a9ed28765efc97bbc954883f4e6796c33a06546ebafacbabee9696967499e" 6027dependencies = [ 6028 "windows-link", 6029 "windows-result", 6030 "windows-strings", 6031] 6032 6033[[package]] 6034name = "windows-result" 6035version = "0.3.4" 6036source = "registry+https://github.com/rust-lang/crates.io-index" 6037checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6" 6038dependencies = [ 6039 "windows-link", 6040] 6041 6042[[package]] 6043name = "windows-strings" 6044version = "0.4.2" 6045source = "registry+https://github.com/rust-lang/crates.io-index" 6046checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57" 6047dependencies = [ 6048 "windows-link", 6049] 6050 6051[[package]] 6052name = "windows-sys" 6053version = "0.45.0" 6054source = "registry+https://github.com/rust-lang/crates.io-index" 6055checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" 6056dependencies = [ 6057 "windows-targets 0.42.2", 6058] 6059 6060[[package]] 6061name = "windows-sys" 6062version = "0.48.0" 6063source = "registry+https://github.com/rust-lang/crates.io-index" 6064checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 6065dependencies = [ 6066 "windows-targets 0.48.5", 6067] 6068 6069[[package]] 6070name = "windows-sys" 6071version = "0.52.0" 6072source = "registry+https://github.com/rust-lang/crates.io-index" 6073checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 6074dependencies = [ 6075 "windows-targets 0.52.6", 6076] 6077 6078[[package]] 6079name = "windows-sys" 6080version = "0.59.0" 6081source = "registry+https://github.com/rust-lang/crates.io-index" 6082checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" 6083dependencies = [ 6084 "windows-targets 0.52.6", 6085] 6086 6087[[package]] 6088name = "windows-sys" 6089version = "0.60.2" 6090source = "registry+https://github.com/rust-lang/crates.io-index" 6091checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb" 6092dependencies = [ 6093 "windows-targets 0.53.3", 6094] 6095 6096[[package]] 6097name = "windows-targets" 6098version = "0.42.2" 6099source = "registry+https://github.com/rust-lang/crates.io-index" 6100checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" 6101dependencies = [ 6102 "windows_aarch64_gnullvm 0.42.2", 6103 "windows_aarch64_msvc 0.42.2", 6104 "windows_i686_gnu 0.42.2", 6105 "windows_i686_msvc 0.42.2", 6106 "windows_x86_64_gnu 0.42.2", 6107 "windows_x86_64_gnullvm 0.42.2", 6108 "windows_x86_64_msvc 0.42.2", 6109] 6110 6111[[package]] 6112name = "windows-targets" 6113version = "0.48.5" 6114source = "registry+https://github.com/rust-lang/crates.io-index" 6115checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" 6116dependencies = [ 6117 "windows_aarch64_gnullvm 0.48.5", 6118 "windows_aarch64_msvc 0.48.5", 6119 "windows_i686_gnu 0.48.5", 6120 "windows_i686_msvc 0.48.5", 6121 "windows_x86_64_gnu 0.48.5", 6122 "windows_x86_64_gnullvm 0.48.5", 6123 "windows_x86_64_msvc 0.48.5", 6124] 6125 6126[[package]] 6127name = "windows-targets" 6128version = "0.52.6" 6129source = "registry+https://github.com/rust-lang/crates.io-index" 6130checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" 6131dependencies = [ 6132 "windows_aarch64_gnullvm 0.52.6", 6133 "windows_aarch64_msvc 0.52.6", 6134 "windows_i686_gnu 0.52.6", 6135 "windows_i686_gnullvm 0.52.6", 6136 "windows_i686_msvc 0.52.6", 6137 "windows_x86_64_gnu 0.52.6", 6138 "windows_x86_64_gnullvm 0.52.6", 6139 "windows_x86_64_msvc 0.52.6", 6140] 6141 6142[[package]] 6143name = "windows-targets" 6144version = "0.53.3" 6145source = "registry+https://github.com/rust-lang/crates.io-index" 6146checksum = "d5fe6031c4041849d7c496a8ded650796e7b6ecc19df1a431c1a363342e5dc91" 6147dependencies = [ 6148 "windows-link", 6149 "windows_aarch64_gnullvm 0.53.0", 6150 "windows_aarch64_msvc 0.53.0", 6151 "windows_i686_gnu 0.53.0", 6152 "windows_i686_gnullvm 0.53.0", 6153 "windows_i686_msvc 0.53.0", 6154 "windows_x86_64_gnu 0.53.0", 6155 "windows_x86_64_gnullvm 0.53.0", 6156 "windows_x86_64_msvc 0.53.0", 6157] 6158 6159[[package]] 6160name = "windows-threading" 6161version = "0.1.0" 6162source = "registry+https://github.com/rust-lang/crates.io-index" 6163checksum = "b66463ad2e0ea3bbf808b7f1d371311c80e115c0b71d60efc142cafbcfb057a6" 6164dependencies = [ 6165 "windows-link", 6166] 6167 6168[[package]] 6169name = "windows-version" 6170version = "0.1.4" 6171source = "registry+https://github.com/rust-lang/crates.io-index" 6172checksum = "e04a5c6627e310a23ad2358483286c7df260c964eb2d003d8efd6d0f4e79265c" 6173dependencies = [ 6174 "windows-link", 6175] 6176 6177[[package]] 6178name = "windows_aarch64_gnullvm" 6179version = "0.42.2" 6180source = "registry+https://github.com/rust-lang/crates.io-index" 6181checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" 6182 6183[[package]] 6184name = "windows_aarch64_gnullvm" 6185version = "0.48.5" 6186source = "registry+https://github.com/rust-lang/crates.io-index" 6187checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 6188 6189[[package]] 6190name = "windows_aarch64_gnullvm" 6191version = "0.52.6" 6192source = "registry+https://github.com/rust-lang/crates.io-index" 6193checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" 6194 6195[[package]] 6196name = "windows_aarch64_gnullvm" 6197version = "0.53.0" 6198source = "registry+https://github.com/rust-lang/crates.io-index" 6199checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764" 6200 6201[[package]] 6202name = "windows_aarch64_msvc" 6203version = "0.42.2" 6204source = "registry+https://github.com/rust-lang/crates.io-index" 6205checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" 6206 6207[[package]] 6208name = "windows_aarch64_msvc" 6209version = "0.48.5" 6210source = "registry+https://github.com/rust-lang/crates.io-index" 6211checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 6212 6213[[package]] 6214name = "windows_aarch64_msvc" 6215version = "0.52.6" 6216source = "registry+https://github.com/rust-lang/crates.io-index" 6217checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" 6218 6219[[package]] 6220name = "windows_aarch64_msvc" 6221version = "0.53.0" 6222source = "registry+https://github.com/rust-lang/crates.io-index" 6223checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c" 6224 6225[[package]] 6226name = "windows_i686_gnu" 6227version = "0.42.2" 6228source = "registry+https://github.com/rust-lang/crates.io-index" 6229checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" 6230 6231[[package]] 6232name = "windows_i686_gnu" 6233version = "0.48.5" 6234source = "registry+https://github.com/rust-lang/crates.io-index" 6235checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 6236 6237[[package]] 6238name = "windows_i686_gnu" 6239version = "0.52.6" 6240source = "registry+https://github.com/rust-lang/crates.io-index" 6241checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" 6242 6243[[package]] 6244name = "windows_i686_gnu" 6245version = "0.53.0" 6246source = "registry+https://github.com/rust-lang/crates.io-index" 6247checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3" 6248 6249[[package]] 6250name = "windows_i686_gnullvm" 6251version = "0.52.6" 6252source = "registry+https://github.com/rust-lang/crates.io-index" 6253checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" 6254 6255[[package]] 6256name = "windows_i686_gnullvm" 6257version = "0.53.0" 6258source = "registry+https://github.com/rust-lang/crates.io-index" 6259checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11" 6260 6261[[package]] 6262name = "windows_i686_msvc" 6263version = "0.42.2" 6264source = "registry+https://github.com/rust-lang/crates.io-index" 6265checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" 6266 6267[[package]] 6268name = "windows_i686_msvc" 6269version = "0.48.5" 6270source = "registry+https://github.com/rust-lang/crates.io-index" 6271checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 6272 6273[[package]] 6274name = "windows_i686_msvc" 6275version = "0.52.6" 6276source = "registry+https://github.com/rust-lang/crates.io-index" 6277checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" 6278 6279[[package]] 6280name = "windows_i686_msvc" 6281version = "0.53.0" 6282source = "registry+https://github.com/rust-lang/crates.io-index" 6283checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d" 6284 6285[[package]] 6286name = "windows_x86_64_gnu" 6287version = "0.42.2" 6288source = "registry+https://github.com/rust-lang/crates.io-index" 6289checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" 6290 6291[[package]] 6292name = "windows_x86_64_gnu" 6293version = "0.48.5" 6294source = "registry+https://github.com/rust-lang/crates.io-index" 6295checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 6296 6297[[package]] 6298name = "windows_x86_64_gnu" 6299version = "0.52.6" 6300source = "registry+https://github.com/rust-lang/crates.io-index" 6301checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" 6302 6303[[package]] 6304name = "windows_x86_64_gnu" 6305version = "0.53.0" 6306source = "registry+https://github.com/rust-lang/crates.io-index" 6307checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba" 6308 6309[[package]] 6310name = "windows_x86_64_gnullvm" 6311version = "0.42.2" 6312source = "registry+https://github.com/rust-lang/crates.io-index" 6313checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" 6314 6315[[package]] 6316name = "windows_x86_64_gnullvm" 6317version = "0.48.5" 6318source = "registry+https://github.com/rust-lang/crates.io-index" 6319checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 6320 6321[[package]] 6322name = "windows_x86_64_gnullvm" 6323version = "0.52.6" 6324source = "registry+https://github.com/rust-lang/crates.io-index" 6325checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" 6326 6327[[package]] 6328name = "windows_x86_64_gnullvm" 6329version = "0.53.0" 6330source = "registry+https://github.com/rust-lang/crates.io-index" 6331checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57" 6332 6333[[package]] 6334name = "windows_x86_64_msvc" 6335version = "0.42.2" 6336source = "registry+https://github.com/rust-lang/crates.io-index" 6337checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" 6338 6339[[package]] 6340name = "windows_x86_64_msvc" 6341version = "0.48.5" 6342source = "registry+https://github.com/rust-lang/crates.io-index" 6343checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 6344 6345[[package]] 6346name = "windows_x86_64_msvc" 6347version = "0.52.6" 6348source = "registry+https://github.com/rust-lang/crates.io-index" 6349checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" 6350 6351[[package]] 6352name = "windows_x86_64_msvc" 6353version = "0.53.0" 6354source = "registry+https://github.com/rust-lang/crates.io-index" 6355checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486" 6356 6357[[package]] 6358name = "winnow" 6359version = "0.5.40" 6360source = "registry+https://github.com/rust-lang/crates.io-index" 6361checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876" 6362dependencies = [ 6363 "memchr", 6364] 6365 6366[[package]] 6367name = "winnow" 6368version = "0.7.12" 6369source = "registry+https://github.com/rust-lang/crates.io-index" 6370checksum = "f3edebf492c8125044983378ecb5766203ad3b4c2f7a922bd7dd207f6d443e95" 6371 6372[[package]] 6373name = "winreg" 6374version = "0.55.0" 6375source = "registry+https://github.com/rust-lang/crates.io-index" 6376checksum = "cb5a765337c50e9ec252c2069be9bf91c7df47afb103b642ba3a53bf8101be97" 6377dependencies = [ 6378 "cfg-if", 6379 "windows-sys 0.59.0", 6380] 6381 6382[[package]] 6383name = "wit-bindgen-rt" 6384version = "0.39.0" 6385source = "registry+https://github.com/rust-lang/crates.io-index" 6386checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1" 6387dependencies = [ 6388 "bitflags 2.9.1", 6389] 6390 6391[[package]] 6392name = "writeable" 6393version = "0.6.1" 6394source = "registry+https://github.com/rust-lang/crates.io-index" 6395checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb" 6396 6397[[package]] 6398name = "wry" 6399version = "0.52.1" 6400source = "registry+https://github.com/rust-lang/crates.io-index" 6401checksum = "12a714d9ba7075aae04a6e50229d6109e3d584774b99a6a8c60de1698ca111b9" 6402dependencies = [ 6403 "base64 0.22.1", 6404 "block2 0.6.1", 6405 "cookie", 6406 "crossbeam-channel", 6407 "dpi", 6408 "dunce", 6409 "gdkx11", 6410 "gtk", 6411 "html5ever", 6412 "http", 6413 "javascriptcore-rs", 6414 "jni", 6415 "kuchikiki", 6416 "libc", 6417 "ndk", 6418 "objc2 0.6.1", 6419 "objc2-app-kit", 6420 "objc2-core-foundation", 6421 "objc2-foundation 0.3.1", 6422 "objc2-ui-kit", 6423 "objc2-web-kit", 6424 "once_cell", 6425 "percent-encoding", 6426 "raw-window-handle", 6427 "sha2", 6428 "soup3", 6429 "tao-macros", 6430 "thiserror 2.0.12", 6431 "url", 6432 "webkit2gtk", 6433 "webkit2gtk-sys", 6434 "webview2-com", 6435 "windows", 6436 "windows-core", 6437 "windows-version", 6438 "x11-dl", 6439] 6440 6441[[package]] 6442name = "x11" 6443version = "2.21.0" 6444source = "registry+https://github.com/rust-lang/crates.io-index" 6445checksum = "502da5464ccd04011667b11c435cb992822c2c0dbde1770c988480d312a0db2e" 6446dependencies = [ 6447 "libc", 6448 "pkg-config", 6449] 6450 6451[[package]] 6452name = "x11-dl" 6453version = "2.21.0" 6454source = "registry+https://github.com/rust-lang/crates.io-index" 6455checksum = "38735924fedd5314a6e548792904ed8c6de6636285cb9fec04d5b1db85c1516f" 6456dependencies = [ 6457 "libc", 6458 "once_cell", 6459 "pkg-config", 6460] 6461 6462[[package]] 6463name = "xdg-home" 6464version = "1.3.0" 6465source = "registry+https://github.com/rust-lang/crates.io-index" 6466checksum = "ec1cdab258fb55c0da61328dc52c8764709b249011b2cad0454c72f0bf10a1f6" 6467dependencies = [ 6468 "libc", 6469 "windows-sys 0.59.0", 6470] 6471 6472[[package]] 6473name = "yoke" 6474version = "0.8.0" 6475source = "registry+https://github.com/rust-lang/crates.io-index" 6476checksum = "5f41bb01b8226ef4bfd589436a297c53d118f65921786300e427be8d487695cc" 6477dependencies = [ 6478 "serde", 6479 "stable_deref_trait", 6480 "yoke-derive", 6481 "zerofrom", 6482] 6483 6484[[package]] 6485name = "yoke-derive" 6486version = "0.8.0" 6487source = "registry+https://github.com/rust-lang/crates.io-index" 6488checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6" 6489dependencies = [ 6490 "proc-macro2", 6491 "quote", 6492 "syn 2.0.104", 6493 "synstructure", 6494] 6495 6496[[package]] 6497name = "zbus" 6498version = "4.0.1" 6499source = "registry+https://github.com/rust-lang/crates.io-index" 6500checksum = "7b8e3d6ae3342792a6cc2340e4394334c7402f3d793b390d2c5494a4032b3030" 6501dependencies = [ 6502 "async-broadcast", 6503 "async-executor", 6504 "async-fs", 6505 "async-io", 6506 "async-lock", 6507 "async-process", 6508 "async-recursion", 6509 "async-task", 6510 "async-trait", 6511 "blocking", 6512 "derivative", 6513 "enumflags2", 6514 "event-listener", 6515 "futures-core", 6516 "futures-sink", 6517 "futures-util", 6518 "hex", 6519 "nix", 6520 "ordered-stream", 6521 "rand 0.8.5", 6522 "serde", 6523 "serde_repr", 6524 "sha1", 6525 "static_assertions", 6526 "tracing", 6527 "uds_windows", 6528 "windows-sys 0.52.0", 6529 "xdg-home", 6530 "zbus_macros", 6531 "zbus_names", 6532 "zvariant", 6533] 6534 6535[[package]] 6536name = "zbus_macros" 6537version = "4.0.1" 6538source = "registry+https://github.com/rust-lang/crates.io-index" 6539checksum = "b7a3e850ff1e7217a3b7a07eba90d37fe9bb9e89a310f718afcde5885ca9b6d7" 6540dependencies = [ 6541 "proc-macro-crate 1.3.1", 6542 "proc-macro2", 6543 "quote", 6544 "regex", 6545 "syn 1.0.109", 6546 "zvariant_utils", 6547] 6548 6549[[package]] 6550name = "zbus_names" 6551version = "3.0.0" 6552source = "registry+https://github.com/rust-lang/crates.io-index" 6553checksum = "4b9b1fef7d021261cc16cba64c351d291b715febe0fa10dc3a443ac5a5022e6c" 6554dependencies = [ 6555 "serde", 6556 "static_assertions", 6557 "zvariant", 6558] 6559 6560[[package]] 6561name = "zerocopy" 6562version = "0.8.26" 6563source = "registry+https://github.com/rust-lang/crates.io-index" 6564checksum = "1039dd0d3c310cf05de012d8a39ff557cb0d23087fd44cad61df08fc31907a2f" 6565dependencies = [ 6566 "zerocopy-derive", 6567] 6568 6569[[package]] 6570name = "zerocopy-derive" 6571version = "0.8.26" 6572source = "registry+https://github.com/rust-lang/crates.io-index" 6573checksum = "9ecf5b4cc5364572d7f4c329661bcc82724222973f2cab6f050a4e5c22f75181" 6574dependencies = [ 6575 "proc-macro2", 6576 "quote", 6577 "syn 2.0.104", 6578] 6579 6580[[package]] 6581name = "zerofrom" 6582version = "0.1.6" 6583source = "registry+https://github.com/rust-lang/crates.io-index" 6584checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5" 6585dependencies = [ 6586 "zerofrom-derive", 6587] 6588 6589[[package]] 6590name = "zerofrom-derive" 6591version = "0.1.6" 6592source = "registry+https://github.com/rust-lang/crates.io-index" 6593checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502" 6594dependencies = [ 6595 "proc-macro2", 6596 "quote", 6597 "syn 2.0.104", 6598 "synstructure", 6599] 6600 6601[[package]] 6602name = "zeroize" 6603version = "1.8.1" 6604source = "registry+https://github.com/rust-lang/crates.io-index" 6605checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde" 6606 6607[[package]] 6608name = "zerotrie" 6609version = "0.2.2" 6610source = "registry+https://github.com/rust-lang/crates.io-index" 6611checksum = "36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595" 6612dependencies = [ 6613 "displaydoc", 6614 "yoke", 6615 "zerofrom", 6616] 6617 6618[[package]] 6619name = "zerovec" 6620version = "0.11.2" 6621source = "registry+https://github.com/rust-lang/crates.io-index" 6622checksum = "4a05eb080e015ba39cc9e23bbe5e7fb04d5fb040350f99f34e338d5fdd294428" 6623dependencies = [ 6624 "yoke", 6625 "zerofrom", 6626 "zerovec-derive", 6627] 6628 6629[[package]] 6630name = "zerovec-derive" 6631version = "0.11.1" 6632source = "registry+https://github.com/rust-lang/crates.io-index" 6633checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f" 6634dependencies = [ 6635 "proc-macro2", 6636 "quote", 6637 "syn 2.0.104", 6638] 6639 6640[[package]] 6641name = "zune-core" 6642version = "0.4.12" 6643source = "registry+https://github.com/rust-lang/crates.io-index" 6644checksum = "3f423a2c17029964870cfaabb1f13dfab7d092a62a29a89264f4d36990ca414a" 6645 6646[[package]] 6647name = "zune-inflate" 6648version = "0.2.54" 6649source = "registry+https://github.com/rust-lang/crates.io-index" 6650checksum = "73ab332fe2f6680068f3582b16a24f90ad7096d5d39b974d1c0aff0125116f02" 6651dependencies = [ 6652 "simd-adler32", 6653] 6654 6655[[package]] 6656name = "zune-jpeg" 6657version = "0.4.20" 6658source = "registry+https://github.com/rust-lang/crates.io-index" 6659checksum = "fc1f7e205ce79eb2da3cd71c5f55f3589785cb7c79f6a03d1c8d1491bda5d089" 6660dependencies = [ 6661 "zune-core", 6662] 6663 6664[[package]] 6665name = "zvariant" 6666version = "4.0.0" 6667source = "registry+https://github.com/rust-lang/crates.io-index" 6668checksum = "4e09e8be97d44eeab994d752f341e67b3b0d80512a8b315a0671d47232ef1b65" 6669dependencies = [ 6670 "endi", 6671 "enumflags2", 6672 "serde", 6673 "static_assertions", 6674 "zvariant_derive", 6675] 6676 6677[[package]] 6678name = "zvariant_derive" 6679version = "4.0.0" 6680source = "registry+https://github.com/rust-lang/crates.io-index" 6681checksum = "72a5857e2856435331636a9fbb415b09243df4521a267c5bedcd5289b4d5799e" 6682dependencies = [ 6683 "proc-macro-crate 1.3.1", 6684 "proc-macro2", 6685 "quote", 6686 "syn 1.0.109", 6687 "zvariant_utils", 6688] 6689 6690[[package]] 6691name = "zvariant_utils" 6692version = "1.1.0" 6693source = "registry+https://github.com/rust-lang/crates.io-index" 6694checksum = "00bedb16a193cc12451873fee2a1bc6550225acece0e36f333e68326c73c8172" 6695dependencies = [ 6696 "proc-macro2", 6697 "quote", 6698 "syn 1.0.109", 6699]