One-click backups for AT Protocol
at fe28dcb6f224e8f2bf16db041edcdd2e59ff0bd2 5441 lines 133 kB view raw
1# This file is automatically @generated by Cargo. 2# It is not intended for manual editing. 3version = 4 4 5[[package]] 6name = "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 = "alloc-no-stdlib" 31version = "2.0.4" 32source = "registry+https://github.com/rust-lang/crates.io-index" 33checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3" 34 35[[package]] 36name = "alloc-stdlib" 37version = "0.2.2" 38source = "registry+https://github.com/rust-lang/crates.io-index" 39checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece" 40dependencies = [ 41 "alloc-no-stdlib", 42] 43 44[[package]] 45name = "android-tzdata" 46version = "0.1.1" 47source = "registry+https://github.com/rust-lang/crates.io-index" 48checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0" 49 50[[package]] 51name = "android_system_properties" 52version = "0.1.5" 53source = "registry+https://github.com/rust-lang/crates.io-index" 54checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" 55dependencies = [ 56 "libc", 57] 58 59[[package]] 60name = "anyhow" 61version = "1.0.98" 62source = "registry+https://github.com/rust-lang/crates.io-index" 63checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487" 64 65[[package]] 66name = "async-broadcast" 67version = "0.7.2" 68source = "registry+https://github.com/rust-lang/crates.io-index" 69checksum = "435a87a52755b8f27fcf321ac4f04b2802e337c8c4872923137471ec39c37532" 70dependencies = [ 71 "event-listener", 72 "event-listener-strategy", 73 "futures-core", 74 "pin-project-lite", 75] 76 77[[package]] 78name = "async-channel" 79version = "2.5.0" 80source = "registry+https://github.com/rust-lang/crates.io-index" 81checksum = "924ed96dd52d1b75e9c1a3e6275715fd320f5f9439fb5a4a11fa51f4221158d2" 82dependencies = [ 83 "concurrent-queue", 84 "event-listener-strategy", 85 "futures-core", 86 "pin-project-lite", 87] 88 89[[package]] 90name = "async-executor" 91version = "1.13.2" 92source = "registry+https://github.com/rust-lang/crates.io-index" 93checksum = "bb812ffb58524bdd10860d7d974e2f01cc0950c2438a74ee5ec2e2280c6c4ffa" 94dependencies = [ 95 "async-task", 96 "concurrent-queue", 97 "fastrand", 98 "futures-lite", 99 "pin-project-lite", 100 "slab", 101] 102 103[[package]] 104name = "async-io" 105version = "2.4.1" 106source = "registry+https://github.com/rust-lang/crates.io-index" 107checksum = "1237c0ae75a0f3765f58910ff9cdd0a12eeb39ab2f4c7de23262f337f0aacbb3" 108dependencies = [ 109 "async-lock", 110 "cfg-if", 111 "concurrent-queue", 112 "futures-io", 113 "futures-lite", 114 "parking", 115 "polling", 116 "rustix", 117 "slab", 118 "tracing", 119 "windows-sys 0.59.0", 120] 121 122[[package]] 123name = "async-lock" 124version = "3.4.0" 125source = "registry+https://github.com/rust-lang/crates.io-index" 126checksum = "ff6e472cdea888a4bd64f342f09b3f50e1886d32afe8df3d663c01140b811b18" 127dependencies = [ 128 "event-listener", 129 "event-listener-strategy", 130 "pin-project-lite", 131] 132 133[[package]] 134name = "async-process" 135version = "2.3.1" 136source = "registry+https://github.com/rust-lang/crates.io-index" 137checksum = "cde3f4e40e6021d7acffc90095cbd6dc54cb593903d1de5832f435eb274b85dc" 138dependencies = [ 139 "async-channel", 140 "async-io", 141 "async-lock", 142 "async-signal", 143 "async-task", 144 "blocking", 145 "cfg-if", 146 "event-listener", 147 "futures-lite", 148 "rustix", 149 "tracing", 150] 151 152[[package]] 153name = "async-recursion" 154version = "1.1.1" 155source = "registry+https://github.com/rust-lang/crates.io-index" 156checksum = "3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11" 157dependencies = [ 158 "proc-macro2", 159 "quote", 160 "syn 2.0.104", 161] 162 163[[package]] 164name = "async-signal" 165version = "0.2.11" 166source = "registry+https://github.com/rust-lang/crates.io-index" 167checksum = "d7605a4e50d4b06df3898d5a70bf5fde51ed9059b0434b73105193bc27acce0d" 168dependencies = [ 169 "async-io", 170 "async-lock", 171 "atomic-waker", 172 "cfg-if", 173 "futures-core", 174 "futures-io", 175 "rustix", 176 "signal-hook-registry", 177 "slab", 178 "windows-sys 0.59.0", 179] 180 181[[package]] 182name = "async-task" 183version = "4.7.1" 184source = "registry+https://github.com/rust-lang/crates.io-index" 185checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de" 186 187[[package]] 188name = "async-trait" 189version = "0.1.88" 190source = "registry+https://github.com/rust-lang/crates.io-index" 191checksum = "e539d3fca749fcee5236ab05e93a52867dd549cc157c8cb7f99595f3cedffdb5" 192dependencies = [ 193 "proc-macro2", 194 "quote", 195 "syn 2.0.104", 196] 197 198[[package]] 199name = "atk" 200version = "0.18.2" 201source = "registry+https://github.com/rust-lang/crates.io-index" 202checksum = "241b621213072e993be4f6f3a9e4b45f65b7e6faad43001be957184b7bb1824b" 203dependencies = [ 204 "atk-sys", 205 "glib", 206 "libc", 207] 208 209[[package]] 210name = "atk-sys" 211version = "0.18.2" 212source = "registry+https://github.com/rust-lang/crates.io-index" 213checksum = "c5e48b684b0ca77d2bbadeef17424c2ea3c897d44d566a1617e7e8f30614d086" 214dependencies = [ 215 "glib-sys", 216 "gobject-sys", 217 "libc", 218 "system-deps", 219] 220 221[[package]] 222name = "atomic-waker" 223version = "1.1.2" 224source = "registry+https://github.com/rust-lang/crates.io-index" 225checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" 226 227[[package]] 228name = "atproto-backup" 229version = "0.1.0" 230dependencies = [ 231 "serde", 232 "serde_json", 233 "tauri", 234 "tauri-build", 235 "tauri-plugin-autostart", 236 "tauri-plugin-deep-link", 237 "tauri-plugin-fs", 238 "tauri-plugin-opener", 239 "tauri-plugin-single-instance", 240 "tauri-plugin-store", 241] 242 243[[package]] 244name = "auto-launch" 245version = "0.5.0" 246source = "registry+https://github.com/rust-lang/crates.io-index" 247checksum = "1f012b8cc0c850f34117ec8252a44418f2e34a2cf501de89e29b241ae5f79471" 248dependencies = [ 249 "dirs 4.0.0", 250 "thiserror 1.0.69", 251 "winreg 0.10.1", 252] 253 254[[package]] 255name = "autocfg" 256version = "1.5.0" 257source = "registry+https://github.com/rust-lang/crates.io-index" 258checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8" 259 260[[package]] 261name = "backtrace" 262version = "0.3.75" 263source = "registry+https://github.com/rust-lang/crates.io-index" 264checksum = "6806a6321ec58106fea15becdad98371e28d92ccbc7c8f1b3b6dd724fe8f1002" 265dependencies = [ 266 "addr2line", 267 "cfg-if", 268 "libc", 269 "miniz_oxide", 270 "object", 271 "rustc-demangle", 272 "windows-targets 0.52.6", 273] 274 275[[package]] 276name = "base64" 277version = "0.21.7" 278source = "registry+https://github.com/rust-lang/crates.io-index" 279checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" 280 281[[package]] 282name = "base64" 283version = "0.22.1" 284source = "registry+https://github.com/rust-lang/crates.io-index" 285checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" 286 287[[package]] 288name = "bitflags" 289version = "1.3.2" 290source = "registry+https://github.com/rust-lang/crates.io-index" 291checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 292 293[[package]] 294name = "bitflags" 295version = "2.9.1" 296source = "registry+https://github.com/rust-lang/crates.io-index" 297checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967" 298dependencies = [ 299 "serde", 300] 301 302[[package]] 303name = "block-buffer" 304version = "0.10.4" 305source = "registry+https://github.com/rust-lang/crates.io-index" 306checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 307dependencies = [ 308 "generic-array", 309] 310 311[[package]] 312name = "block2" 313version = "0.5.1" 314source = "registry+https://github.com/rust-lang/crates.io-index" 315checksum = "2c132eebf10f5cad5289222520a4a058514204aed6d791f1cf4fe8088b82d15f" 316dependencies = [ 317 "objc2 0.5.2", 318] 319 320[[package]] 321name = "block2" 322version = "0.6.1" 323source = "registry+https://github.com/rust-lang/crates.io-index" 324checksum = "340d2f0bdb2a43c1d3cd40513185b2bd7def0aa1052f956455114bc98f82dcf2" 325dependencies = [ 326 "objc2 0.6.1", 327] 328 329[[package]] 330name = "blocking" 331version = "1.6.2" 332source = "registry+https://github.com/rust-lang/crates.io-index" 333checksum = "e83f8d02be6967315521be875afa792a316e28d57b5a2d401897e2a7921b7f21" 334dependencies = [ 335 "async-channel", 336 "async-task", 337 "futures-io", 338 "futures-lite", 339 "piper", 340] 341 342[[package]] 343name = "brotli" 344version = "8.0.1" 345source = "registry+https://github.com/rust-lang/crates.io-index" 346checksum = "9991eea70ea4f293524138648e41ee89b0b2b12ddef3b255effa43c8056e0e0d" 347dependencies = [ 348 "alloc-no-stdlib", 349 "alloc-stdlib", 350 "brotli-decompressor", 351] 352 353[[package]] 354name = "brotli-decompressor" 355version = "5.0.0" 356source = "registry+https://github.com/rust-lang/crates.io-index" 357checksum = "874bb8112abecc98cbd6d81ea4fa7e94fb9449648c93cc89aa40c81c24d7de03" 358dependencies = [ 359 "alloc-no-stdlib", 360 "alloc-stdlib", 361] 362 363[[package]] 364name = "bumpalo" 365version = "3.19.0" 366source = "registry+https://github.com/rust-lang/crates.io-index" 367checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43" 368 369[[package]] 370name = "bytemuck" 371version = "1.23.1" 372source = "registry+https://github.com/rust-lang/crates.io-index" 373checksum = "5c76a5792e44e4abe34d3abf15636779261d45a7450612059293d1d2cfc63422" 374 375[[package]] 376name = "byteorder" 377version = "1.5.0" 378source = "registry+https://github.com/rust-lang/crates.io-index" 379checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" 380 381[[package]] 382name = "bytes" 383version = "1.10.1" 384source = "registry+https://github.com/rust-lang/crates.io-index" 385checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a" 386dependencies = [ 387 "serde", 388] 389 390[[package]] 391name = "cairo-rs" 392version = "0.18.5" 393source = "registry+https://github.com/rust-lang/crates.io-index" 394checksum = "8ca26ef0159422fb77631dc9d17b102f253b876fe1586b03b803e63a309b4ee2" 395dependencies = [ 396 "bitflags 2.9.1", 397 "cairo-sys-rs", 398 "glib", 399 "libc", 400 "once_cell", 401 "thiserror 1.0.69", 402] 403 404[[package]] 405name = "cairo-sys-rs" 406version = "0.18.2" 407source = "registry+https://github.com/rust-lang/crates.io-index" 408checksum = "685c9fa8e590b8b3d678873528d83411db17242a73fccaed827770ea0fedda51" 409dependencies = [ 410 "glib-sys", 411 "libc", 412 "system-deps", 413] 414 415[[package]] 416name = "camino" 417version = "1.1.10" 418source = "registry+https://github.com/rust-lang/crates.io-index" 419checksum = "0da45bc31171d8d6960122e222a67740df867c1dd53b4d51caa297084c185cab" 420dependencies = [ 421 "serde", 422] 423 424[[package]] 425name = "cargo-platform" 426version = "0.1.9" 427source = "registry+https://github.com/rust-lang/crates.io-index" 428checksum = "e35af189006b9c0f00a064685c727031e3ed2d8020f7ba284d78cc2671bd36ea" 429dependencies = [ 430 "serde", 431] 432 433[[package]] 434name = "cargo_metadata" 435version = "0.19.2" 436source = "registry+https://github.com/rust-lang/crates.io-index" 437checksum = "dd5eb614ed4c27c5d706420e4320fbe3216ab31fa1c33cd8246ac36dae4479ba" 438dependencies = [ 439 "camino", 440 "cargo-platform", 441 "semver", 442 "serde", 443 "serde_json", 444 "thiserror 2.0.12", 445] 446 447[[package]] 448name = "cargo_toml" 449version = "0.22.1" 450source = "registry+https://github.com/rust-lang/crates.io-index" 451checksum = "02260d489095346e5cafd04dea8e8cb54d1d74fcd759022a9b72986ebe9a1257" 452dependencies = [ 453 "serde", 454 "toml 0.8.23", 455] 456 457[[package]] 458name = "cc" 459version = "1.2.29" 460source = "registry+https://github.com/rust-lang/crates.io-index" 461checksum = "5c1599538de2394445747c8cf7935946e3cc27e9625f889d979bfb2aaf569362" 462dependencies = [ 463 "shlex", 464] 465 466[[package]] 467name = "cesu8" 468version = "1.1.0" 469source = "registry+https://github.com/rust-lang/crates.io-index" 470checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c" 471 472[[package]] 473name = "cfb" 474version = "0.7.3" 475source = "registry+https://github.com/rust-lang/crates.io-index" 476checksum = "d38f2da7a0a2c4ccf0065be06397cc26a81f4e528be095826eee9d4adbb8c60f" 477dependencies = [ 478 "byteorder", 479 "fnv", 480 "uuid", 481] 482 483[[package]] 484name = "cfg-expr" 485version = "0.15.8" 486source = "registry+https://github.com/rust-lang/crates.io-index" 487checksum = "d067ad48b8650848b989a59a86c6c36a995d02d2bf778d45c3c5d57bc2718f02" 488dependencies = [ 489 "smallvec", 490 "target-lexicon", 491] 492 493[[package]] 494name = "cfg-if" 495version = "1.0.1" 496source = "registry+https://github.com/rust-lang/crates.io-index" 497checksum = "9555578bc9e57714c812a1f84e4fc5b4d21fcb063490c624de019f7464c91268" 498 499[[package]] 500name = "cfg_aliases" 501version = "0.2.1" 502source = "registry+https://github.com/rust-lang/crates.io-index" 503checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" 504 505[[package]] 506name = "chrono" 507version = "0.4.41" 508source = "registry+https://github.com/rust-lang/crates.io-index" 509checksum = "c469d952047f47f91b68d1cba3f10d63c11d73e4636f24f08daf0278abf01c4d" 510dependencies = [ 511 "android-tzdata", 512 "iana-time-zone", 513 "num-traits", 514 "serde", 515 "windows-link", 516] 517 518[[package]] 519name = "combine" 520version = "4.6.7" 521source = "registry+https://github.com/rust-lang/crates.io-index" 522checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd" 523dependencies = [ 524 "bytes", 525 "memchr", 526] 527 528[[package]] 529name = "concurrent-queue" 530version = "2.5.0" 531source = "registry+https://github.com/rust-lang/crates.io-index" 532checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973" 533dependencies = [ 534 "crossbeam-utils", 535] 536 537[[package]] 538name = "const-random" 539version = "0.1.18" 540source = "registry+https://github.com/rust-lang/crates.io-index" 541checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359" 542dependencies = [ 543 "const-random-macro", 544] 545 546[[package]] 547name = "const-random-macro" 548version = "0.1.16" 549source = "registry+https://github.com/rust-lang/crates.io-index" 550checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e" 551dependencies = [ 552 "getrandom 0.2.16", 553 "once_cell", 554 "tiny-keccak", 555] 556 557[[package]] 558name = "convert_case" 559version = "0.4.0" 560source = "registry+https://github.com/rust-lang/crates.io-index" 561checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e" 562 563[[package]] 564name = "cookie" 565version = "0.18.1" 566source = "registry+https://github.com/rust-lang/crates.io-index" 567checksum = "4ddef33a339a91ea89fb53151bd0a4689cfce27055c291dfa69945475d22c747" 568dependencies = [ 569 "time", 570 "version_check", 571] 572 573[[package]] 574name = "core-foundation" 575version = "0.10.1" 576source = "registry+https://github.com/rust-lang/crates.io-index" 577checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6" 578dependencies = [ 579 "core-foundation-sys", 580 "libc", 581] 582 583[[package]] 584name = "core-foundation-sys" 585version = "0.8.7" 586source = "registry+https://github.com/rust-lang/crates.io-index" 587checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" 588 589[[package]] 590name = "core-graphics" 591version = "0.24.0" 592source = "registry+https://github.com/rust-lang/crates.io-index" 593checksum = "fa95a34622365fa5bbf40b20b75dba8dfa8c94c734aea8ac9a5ca38af14316f1" 594dependencies = [ 595 "bitflags 2.9.1", 596 "core-foundation", 597 "core-graphics-types", 598 "foreign-types", 599 "libc", 600] 601 602[[package]] 603name = "core-graphics-types" 604version = "0.2.0" 605source = "registry+https://github.com/rust-lang/crates.io-index" 606checksum = "3d44a101f213f6c4cdc1853d4b78aef6db6bdfa3468798cc1d9912f4735013eb" 607dependencies = [ 608 "bitflags 2.9.1", 609 "core-foundation", 610 "libc", 611] 612 613[[package]] 614name = "cpufeatures" 615version = "0.2.17" 616source = "registry+https://github.com/rust-lang/crates.io-index" 617checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280" 618dependencies = [ 619 "libc", 620] 621 622[[package]] 623name = "crc32fast" 624version = "1.4.2" 625source = "registry+https://github.com/rust-lang/crates.io-index" 626checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3" 627dependencies = [ 628 "cfg-if", 629] 630 631[[package]] 632name = "crossbeam-channel" 633version = "0.5.15" 634source = "registry+https://github.com/rust-lang/crates.io-index" 635checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2" 636dependencies = [ 637 "crossbeam-utils", 638] 639 640[[package]] 641name = "crossbeam-utils" 642version = "0.8.21" 643source = "registry+https://github.com/rust-lang/crates.io-index" 644checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28" 645 646[[package]] 647name = "crunchy" 648version = "0.2.4" 649source = "registry+https://github.com/rust-lang/crates.io-index" 650checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5" 651 652[[package]] 653name = "crypto-common" 654version = "0.1.6" 655source = "registry+https://github.com/rust-lang/crates.io-index" 656checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 657dependencies = [ 658 "generic-array", 659 "typenum", 660] 661 662[[package]] 663name = "cssparser" 664version = "0.29.6" 665source = "registry+https://github.com/rust-lang/crates.io-index" 666checksum = "f93d03419cb5950ccfd3daf3ff1c7a36ace64609a1a8746d493df1ca0afde0fa" 667dependencies = [ 668 "cssparser-macros", 669 "dtoa-short", 670 "itoa", 671 "matches", 672 "phf 0.10.1", 673 "proc-macro2", 674 "quote", 675 "smallvec", 676 "syn 1.0.109", 677] 678 679[[package]] 680name = "cssparser-macros" 681version = "0.6.1" 682source = "registry+https://github.com/rust-lang/crates.io-index" 683checksum = "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331" 684dependencies = [ 685 "quote", 686 "syn 2.0.104", 687] 688 689[[package]] 690name = "ctor" 691version = "0.2.9" 692source = "registry+https://github.com/rust-lang/crates.io-index" 693checksum = "32a2785755761f3ddc1492979ce1e48d2c00d09311c39e4466429188f3dd6501" 694dependencies = [ 695 "quote", 696 "syn 2.0.104", 697] 698 699[[package]] 700name = "darling" 701version = "0.20.11" 702source = "registry+https://github.com/rust-lang/crates.io-index" 703checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee" 704dependencies = [ 705 "darling_core", 706 "darling_macro", 707] 708 709[[package]] 710name = "darling_core" 711version = "0.20.11" 712source = "registry+https://github.com/rust-lang/crates.io-index" 713checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e" 714dependencies = [ 715 "fnv", 716 "ident_case", 717 "proc-macro2", 718 "quote", 719 "strsim", 720 "syn 2.0.104", 721] 722 723[[package]] 724name = "darling_macro" 725version = "0.20.11" 726source = "registry+https://github.com/rust-lang/crates.io-index" 727checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead" 728dependencies = [ 729 "darling_core", 730 "quote", 731 "syn 2.0.104", 732] 733 734[[package]] 735name = "deranged" 736version = "0.4.0" 737source = "registry+https://github.com/rust-lang/crates.io-index" 738checksum = "9c9e6a11ca8224451684bc0d7d5a7adbf8f2fd6887261a1cfc3c0432f9d4068e" 739dependencies = [ 740 "powerfmt", 741 "serde", 742] 743 744[[package]] 745name = "derive_more" 746version = "0.99.20" 747source = "registry+https://github.com/rust-lang/crates.io-index" 748checksum = "6edb4b64a43d977b8e99788fe3a04d483834fba1215a7e02caa415b626497f7f" 749dependencies = [ 750 "convert_case", 751 "proc-macro2", 752 "quote", 753 "rustc_version", 754 "syn 2.0.104", 755] 756 757[[package]] 758name = "digest" 759version = "0.10.7" 760source = "registry+https://github.com/rust-lang/crates.io-index" 761checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" 762dependencies = [ 763 "block-buffer", 764 "crypto-common", 765] 766 767[[package]] 768name = "dirs" 769version = "4.0.0" 770source = "registry+https://github.com/rust-lang/crates.io-index" 771checksum = "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059" 772dependencies = [ 773 "dirs-sys 0.3.7", 774] 775 776[[package]] 777name = "dirs" 778version = "6.0.0" 779source = "registry+https://github.com/rust-lang/crates.io-index" 780checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e" 781dependencies = [ 782 "dirs-sys 0.5.0", 783] 784 785[[package]] 786name = "dirs-sys" 787version = "0.3.7" 788source = "registry+https://github.com/rust-lang/crates.io-index" 789checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6" 790dependencies = [ 791 "libc", 792 "redox_users 0.4.6", 793 "winapi", 794] 795 796[[package]] 797name = "dirs-sys" 798version = "0.5.0" 799source = "registry+https://github.com/rust-lang/crates.io-index" 800checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab" 801dependencies = [ 802 "libc", 803 "option-ext", 804 "redox_users 0.5.0", 805 "windows-sys 0.60.2", 806] 807 808[[package]] 809name = "dispatch" 810version = "0.2.0" 811source = "registry+https://github.com/rust-lang/crates.io-index" 812checksum = "bd0c93bb4b0c6d9b77f4435b0ae98c24d17f1c45b2ff844c6151a07256ca923b" 813 814[[package]] 815name = "dispatch2" 816version = "0.3.0" 817source = "registry+https://github.com/rust-lang/crates.io-index" 818checksum = "89a09f22a6c6069a18470eb92d2298acf25463f14256d24778e1230d789a2aec" 819dependencies = [ 820 "bitflags 2.9.1", 821 "objc2 0.6.1", 822] 823 824[[package]] 825name = "displaydoc" 826version = "0.2.5" 827source = "registry+https://github.com/rust-lang/crates.io-index" 828checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" 829dependencies = [ 830 "proc-macro2", 831 "quote", 832 "syn 2.0.104", 833] 834 835[[package]] 836name = "dlopen2" 837version = "0.7.0" 838source = "registry+https://github.com/rust-lang/crates.io-index" 839checksum = "9e1297103d2bbaea85724fcee6294c2d50b1081f9ad47d0f6f6f61eda65315a6" 840dependencies = [ 841 "dlopen2_derive", 842 "libc", 843 "once_cell", 844 "winapi", 845] 846 847[[package]] 848name = "dlopen2_derive" 849version = "0.4.1" 850source = "registry+https://github.com/rust-lang/crates.io-index" 851checksum = "788160fb30de9cdd857af31c6a2675904b16ece8fc2737b2c7127ba368c9d0f4" 852dependencies = [ 853 "proc-macro2", 854 "quote", 855 "syn 2.0.104", 856] 857 858[[package]] 859name = "dlv-list" 860version = "0.5.2" 861source = "registry+https://github.com/rust-lang/crates.io-index" 862checksum = "442039f5147480ba31067cb00ada1adae6892028e40e45fc5de7b7df6dcc1b5f" 863dependencies = [ 864 "const-random", 865] 866 867[[package]] 868name = "dpi" 869version = "0.1.2" 870source = "registry+https://github.com/rust-lang/crates.io-index" 871checksum = "d8b14ccef22fc6f5a8f4d7d768562a182c04ce9a3b3157b91390b52ddfdf1a76" 872dependencies = [ 873 "serde", 874] 875 876[[package]] 877name = "dtoa" 878version = "1.0.10" 879source = "registry+https://github.com/rust-lang/crates.io-index" 880checksum = "d6add3b8cff394282be81f3fc1a0605db594ed69890078ca6e2cab1c408bcf04" 881 882[[package]] 883name = "dtoa-short" 884version = "0.3.5" 885source = "registry+https://github.com/rust-lang/crates.io-index" 886checksum = "cd1511a7b6a56299bd043a9c167a6d2bfb37bf84a6dfceaba651168adfb43c87" 887dependencies = [ 888 "dtoa", 889] 890 891[[package]] 892name = "dunce" 893version = "1.0.5" 894source = "registry+https://github.com/rust-lang/crates.io-index" 895checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813" 896 897[[package]] 898name = "dyn-clone" 899version = "1.0.19" 900source = "registry+https://github.com/rust-lang/crates.io-index" 901checksum = "1c7a8fb8a9fbf66c1f703fe16184d10ca0ee9d23be5b4436400408ba54a95005" 902 903[[package]] 904name = "embed-resource" 905version = "3.0.5" 906source = "registry+https://github.com/rust-lang/crates.io-index" 907checksum = "4c6d81016d6c977deefb2ef8d8290da019e27cc26167e102185da528e6c0ab38" 908dependencies = [ 909 "cc", 910 "memchr", 911 "rustc_version", 912 "toml 0.9.2", 913 "vswhom", 914 "winreg 0.55.0", 915] 916 917[[package]] 918name = "embed_plist" 919version = "1.2.2" 920source = "registry+https://github.com/rust-lang/crates.io-index" 921checksum = "4ef6b89e5b37196644d8796de5268852ff179b44e96276cf4290264843743bb7" 922 923[[package]] 924name = "endi" 925version = "1.1.0" 926source = "registry+https://github.com/rust-lang/crates.io-index" 927checksum = "a3d8a32ae18130a3c84dd492d4215c3d913c3b07c6b63c2eb3eb7ff1101ab7bf" 928 929[[package]] 930name = "enumflags2" 931version = "0.7.12" 932source = "registry+https://github.com/rust-lang/crates.io-index" 933checksum = "1027f7680c853e056ebcec683615fb6fbbc07dbaa13b4d5d9442b146ded4ecef" 934dependencies = [ 935 "enumflags2_derive", 936 "serde", 937] 938 939[[package]] 940name = "enumflags2_derive" 941version = "0.7.12" 942source = "registry+https://github.com/rust-lang/crates.io-index" 943checksum = "67c78a4d8fdf9953a5c9d458f9efe940fd97a0cab0941c075a813ac594733827" 944dependencies = [ 945 "proc-macro2", 946 "quote", 947 "syn 2.0.104", 948] 949 950[[package]] 951name = "equivalent" 952version = "1.0.2" 953source = "registry+https://github.com/rust-lang/crates.io-index" 954checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" 955 956[[package]] 957name = "erased-serde" 958version = "0.4.6" 959source = "registry+https://github.com/rust-lang/crates.io-index" 960checksum = "e004d887f51fcb9fef17317a2f3525c887d8aa3f4f50fed920816a688284a5b7" 961dependencies = [ 962 "serde", 963 "typeid", 964] 965 966[[package]] 967name = "errno" 968version = "0.3.13" 969source = "registry+https://github.com/rust-lang/crates.io-index" 970checksum = "778e2ac28f6c47af28e4907f13ffd1e1ddbd400980a9abd7c8df189bf578a5ad" 971dependencies = [ 972 "libc", 973 "windows-sys 0.60.2", 974] 975 976[[package]] 977name = "event-listener" 978version = "5.4.0" 979source = "registry+https://github.com/rust-lang/crates.io-index" 980checksum = "3492acde4c3fc54c845eaab3eed8bd00c7a7d881f78bfc801e43a93dec1331ae" 981dependencies = [ 982 "concurrent-queue", 983 "parking", 984 "pin-project-lite", 985] 986 987[[package]] 988name = "event-listener-strategy" 989version = "0.5.4" 990source = "registry+https://github.com/rust-lang/crates.io-index" 991checksum = "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93" 992dependencies = [ 993 "event-listener", 994 "pin-project-lite", 995] 996 997[[package]] 998name = "fastrand" 999version = "2.3.0" 1000source = "registry+https://github.com/rust-lang/crates.io-index" 1001checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be" 1002 1003[[package]] 1004name = "fdeflate" 1005version = "0.3.7" 1006source = "registry+https://github.com/rust-lang/crates.io-index" 1007checksum = "1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c" 1008dependencies = [ 1009 "simd-adler32", 1010] 1011 1012[[package]] 1013name = "field-offset" 1014version = "0.3.6" 1015source = "registry+https://github.com/rust-lang/crates.io-index" 1016checksum = "38e2275cc4e4fc009b0669731a1e5ab7ebf11f469eaede2bab9309a5b4d6057f" 1017dependencies = [ 1018 "memoffset", 1019 "rustc_version", 1020] 1021 1022[[package]] 1023name = "flate2" 1024version = "1.1.2" 1025source = "registry+https://github.com/rust-lang/crates.io-index" 1026checksum = "4a3d7db9596fecd151c5f638c0ee5d5bd487b6e0ea232e5dc96d5250f6f94b1d" 1027dependencies = [ 1028 "crc32fast", 1029 "miniz_oxide", 1030] 1031 1032[[package]] 1033name = "fnv" 1034version = "1.0.7" 1035source = "registry+https://github.com/rust-lang/crates.io-index" 1036checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 1037 1038[[package]] 1039name = "foreign-types" 1040version = "0.5.0" 1041source = "registry+https://github.com/rust-lang/crates.io-index" 1042checksum = "d737d9aa519fb7b749cbc3b962edcf310a8dd1f4b67c91c4f83975dbdd17d965" 1043dependencies = [ 1044 "foreign-types-macros", 1045 "foreign-types-shared", 1046] 1047 1048[[package]] 1049name = "foreign-types-macros" 1050version = "0.2.3" 1051source = "registry+https://github.com/rust-lang/crates.io-index" 1052checksum = "1a5c6c585bc94aaf2c7b51dd4c2ba22680844aba4c687be581871a6f518c5742" 1053dependencies = [ 1054 "proc-macro2", 1055 "quote", 1056 "syn 2.0.104", 1057] 1058 1059[[package]] 1060name = "foreign-types-shared" 1061version = "0.3.1" 1062source = "registry+https://github.com/rust-lang/crates.io-index" 1063checksum = "aa9a19cbb55df58761df49b23516a86d432839add4af60fc256da840f66ed35b" 1064 1065[[package]] 1066name = "form_urlencoded" 1067version = "1.2.1" 1068source = "registry+https://github.com/rust-lang/crates.io-index" 1069checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456" 1070dependencies = [ 1071 "percent-encoding", 1072] 1073 1074[[package]] 1075name = "futf" 1076version = "0.1.5" 1077source = "registry+https://github.com/rust-lang/crates.io-index" 1078checksum = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843" 1079dependencies = [ 1080 "mac", 1081 "new_debug_unreachable", 1082] 1083 1084[[package]] 1085name = "futures-channel" 1086version = "0.3.31" 1087source = "registry+https://github.com/rust-lang/crates.io-index" 1088checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10" 1089dependencies = [ 1090 "futures-core", 1091] 1092 1093[[package]] 1094name = "futures-core" 1095version = "0.3.31" 1096source = "registry+https://github.com/rust-lang/crates.io-index" 1097checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e" 1098 1099[[package]] 1100name = "futures-executor" 1101version = "0.3.31" 1102source = "registry+https://github.com/rust-lang/crates.io-index" 1103checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f" 1104dependencies = [ 1105 "futures-core", 1106 "futures-task", 1107 "futures-util", 1108] 1109 1110[[package]] 1111name = "futures-io" 1112version = "0.3.31" 1113source = "registry+https://github.com/rust-lang/crates.io-index" 1114checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6" 1115 1116[[package]] 1117name = "futures-lite" 1118version = "2.6.0" 1119source = "registry+https://github.com/rust-lang/crates.io-index" 1120checksum = "f5edaec856126859abb19ed65f39e90fea3a9574b9707f13539acf4abf7eb532" 1121dependencies = [ 1122 "fastrand", 1123 "futures-core", 1124 "futures-io", 1125 "parking", 1126 "pin-project-lite", 1127] 1128 1129[[package]] 1130name = "futures-macro" 1131version = "0.3.31" 1132source = "registry+https://github.com/rust-lang/crates.io-index" 1133checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650" 1134dependencies = [ 1135 "proc-macro2", 1136 "quote", 1137 "syn 2.0.104", 1138] 1139 1140[[package]] 1141name = "futures-sink" 1142version = "0.3.31" 1143source = "registry+https://github.com/rust-lang/crates.io-index" 1144checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7" 1145 1146[[package]] 1147name = "futures-task" 1148version = "0.3.31" 1149source = "registry+https://github.com/rust-lang/crates.io-index" 1150checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988" 1151 1152[[package]] 1153name = "futures-util" 1154version = "0.3.31" 1155source = "registry+https://github.com/rust-lang/crates.io-index" 1156checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81" 1157dependencies = [ 1158 "futures-core", 1159 "futures-io", 1160 "futures-macro", 1161 "futures-sink", 1162 "futures-task", 1163 "memchr", 1164 "pin-project-lite", 1165 "pin-utils", 1166 "slab", 1167] 1168 1169[[package]] 1170name = "fxhash" 1171version = "0.2.1" 1172source = "registry+https://github.com/rust-lang/crates.io-index" 1173checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c" 1174dependencies = [ 1175 "byteorder", 1176] 1177 1178[[package]] 1179name = "gdk" 1180version = "0.18.2" 1181source = "registry+https://github.com/rust-lang/crates.io-index" 1182checksum = "d9f245958c627ac99d8e529166f9823fb3b838d1d41fd2b297af3075093c2691" 1183dependencies = [ 1184 "cairo-rs", 1185 "gdk-pixbuf", 1186 "gdk-sys", 1187 "gio", 1188 "glib", 1189 "libc", 1190 "pango", 1191] 1192 1193[[package]] 1194name = "gdk-pixbuf" 1195version = "0.18.5" 1196source = "registry+https://github.com/rust-lang/crates.io-index" 1197checksum = "50e1f5f1b0bfb830d6ccc8066d18db35c487b1b2b1e8589b5dfe9f07e8defaec" 1198dependencies = [ 1199 "gdk-pixbuf-sys", 1200 "gio", 1201 "glib", 1202 "libc", 1203 "once_cell", 1204] 1205 1206[[package]] 1207name = "gdk-pixbuf-sys" 1208version = "0.18.0" 1209source = "registry+https://github.com/rust-lang/crates.io-index" 1210checksum = "3f9839ea644ed9c97a34d129ad56d38a25e6756f99f3a88e15cd39c20629caf7" 1211dependencies = [ 1212 "gio-sys", 1213 "glib-sys", 1214 "gobject-sys", 1215 "libc", 1216 "system-deps", 1217] 1218 1219[[package]] 1220name = "gdk-sys" 1221version = "0.18.2" 1222source = "registry+https://github.com/rust-lang/crates.io-index" 1223checksum = "5c2d13f38594ac1e66619e188c6d5a1adb98d11b2fcf7894fc416ad76aa2f3f7" 1224dependencies = [ 1225 "cairo-sys-rs", 1226 "gdk-pixbuf-sys", 1227 "gio-sys", 1228 "glib-sys", 1229 "gobject-sys", 1230 "libc", 1231 "pango-sys", 1232 "pkg-config", 1233 "system-deps", 1234] 1235 1236[[package]] 1237name = "gdkwayland-sys" 1238version = "0.18.2" 1239source = "registry+https://github.com/rust-lang/crates.io-index" 1240checksum = "140071d506d223f7572b9f09b5e155afbd77428cd5cc7af8f2694c41d98dfe69" 1241dependencies = [ 1242 "gdk-sys", 1243 "glib-sys", 1244 "gobject-sys", 1245 "libc", 1246 "pkg-config", 1247 "system-deps", 1248] 1249 1250[[package]] 1251name = "gdkx11" 1252version = "0.18.2" 1253source = "registry+https://github.com/rust-lang/crates.io-index" 1254checksum = "3caa00e14351bebbc8183b3c36690327eb77c49abc2268dd4bd36b856db3fbfe" 1255dependencies = [ 1256 "gdk", 1257 "gdkx11-sys", 1258 "gio", 1259 "glib", 1260 "libc", 1261 "x11", 1262] 1263 1264[[package]] 1265name = "gdkx11-sys" 1266version = "0.18.2" 1267source = "registry+https://github.com/rust-lang/crates.io-index" 1268checksum = "6e2e7445fe01ac26f11601db260dd8608fe172514eb63b3b5e261ea6b0f4428d" 1269dependencies = [ 1270 "gdk-sys", 1271 "glib-sys", 1272 "libc", 1273 "system-deps", 1274 "x11", 1275] 1276 1277[[package]] 1278name = "generic-array" 1279version = "0.14.7" 1280source = "registry+https://github.com/rust-lang/crates.io-index" 1281checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" 1282dependencies = [ 1283 "typenum", 1284 "version_check", 1285] 1286 1287[[package]] 1288name = "getrandom" 1289version = "0.1.16" 1290source = "registry+https://github.com/rust-lang/crates.io-index" 1291checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce" 1292dependencies = [ 1293 "cfg-if", 1294 "libc", 1295 "wasi 0.9.0+wasi-snapshot-preview1", 1296] 1297 1298[[package]] 1299name = "getrandom" 1300version = "0.2.16" 1301source = "registry+https://github.com/rust-lang/crates.io-index" 1302checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592" 1303dependencies = [ 1304 "cfg-if", 1305 "libc", 1306 "wasi 0.11.1+wasi-snapshot-preview1", 1307] 1308 1309[[package]] 1310name = "getrandom" 1311version = "0.3.3" 1312source = "registry+https://github.com/rust-lang/crates.io-index" 1313checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4" 1314dependencies = [ 1315 "cfg-if", 1316 "libc", 1317 "r-efi", 1318 "wasi 0.14.2+wasi-0.2.4", 1319] 1320 1321[[package]] 1322name = "gimli" 1323version = "0.31.1" 1324source = "registry+https://github.com/rust-lang/crates.io-index" 1325checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f" 1326 1327[[package]] 1328name = "gio" 1329version = "0.18.4" 1330source = "registry+https://github.com/rust-lang/crates.io-index" 1331checksum = "d4fc8f532f87b79cbc51a79748f16a6828fb784be93145a322fa14d06d354c73" 1332dependencies = [ 1333 "futures-channel", 1334 "futures-core", 1335 "futures-io", 1336 "futures-util", 1337 "gio-sys", 1338 "glib", 1339 "libc", 1340 "once_cell", 1341 "pin-project-lite", 1342 "smallvec", 1343 "thiserror 1.0.69", 1344] 1345 1346[[package]] 1347name = "gio-sys" 1348version = "0.18.1" 1349source = "registry+https://github.com/rust-lang/crates.io-index" 1350checksum = "37566df850baf5e4cb0dfb78af2e4b9898d817ed9263d1090a2df958c64737d2" 1351dependencies = [ 1352 "glib-sys", 1353 "gobject-sys", 1354 "libc", 1355 "system-deps", 1356 "winapi", 1357] 1358 1359[[package]] 1360name = "glib" 1361version = "0.18.5" 1362source = "registry+https://github.com/rust-lang/crates.io-index" 1363checksum = "233daaf6e83ae6a12a52055f568f9d7cf4671dabb78ff9560ab6da230ce00ee5" 1364dependencies = [ 1365 "bitflags 2.9.1", 1366 "futures-channel", 1367 "futures-core", 1368 "futures-executor", 1369 "futures-task", 1370 "futures-util", 1371 "gio-sys", 1372 "glib-macros", 1373 "glib-sys", 1374 "gobject-sys", 1375 "libc", 1376 "memchr", 1377 "once_cell", 1378 "smallvec", 1379 "thiserror 1.0.69", 1380] 1381 1382[[package]] 1383name = "glib-macros" 1384version = "0.18.5" 1385source = "registry+https://github.com/rust-lang/crates.io-index" 1386checksum = "0bb0228f477c0900c880fd78c8759b95c7636dbd7842707f49e132378aa2acdc" 1387dependencies = [ 1388 "heck 0.4.1", 1389 "proc-macro-crate 2.0.0", 1390 "proc-macro-error", 1391 "proc-macro2", 1392 "quote", 1393 "syn 2.0.104", 1394] 1395 1396[[package]] 1397name = "glib-sys" 1398version = "0.18.1" 1399source = "registry+https://github.com/rust-lang/crates.io-index" 1400checksum = "063ce2eb6a8d0ea93d2bf8ba1957e78dbab6be1c2220dd3daca57d5a9d869898" 1401dependencies = [ 1402 "libc", 1403 "system-deps", 1404] 1405 1406[[package]] 1407name = "glob" 1408version = "0.3.2" 1409source = "registry+https://github.com/rust-lang/crates.io-index" 1410checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2" 1411 1412[[package]] 1413name = "gobject-sys" 1414version = "0.18.0" 1415source = "registry+https://github.com/rust-lang/crates.io-index" 1416checksum = "0850127b514d1c4a4654ead6dedadb18198999985908e6ffe4436f53c785ce44" 1417dependencies = [ 1418 "glib-sys", 1419 "libc", 1420 "system-deps", 1421] 1422 1423[[package]] 1424name = "gtk" 1425version = "0.18.2" 1426source = "registry+https://github.com/rust-lang/crates.io-index" 1427checksum = "fd56fb197bfc42bd5d2751f4f017d44ff59fbb58140c6b49f9b3b2bdab08506a" 1428dependencies = [ 1429 "atk", 1430 "cairo-rs", 1431 "field-offset", 1432 "futures-channel", 1433 "gdk", 1434 "gdk-pixbuf", 1435 "gio", 1436 "glib", 1437 "gtk-sys", 1438 "gtk3-macros", 1439 "libc", 1440 "pango", 1441 "pkg-config", 1442] 1443 1444[[package]] 1445name = "gtk-sys" 1446version = "0.18.2" 1447source = "registry+https://github.com/rust-lang/crates.io-index" 1448checksum = "8f29a1c21c59553eb7dd40e918be54dccd60c52b049b75119d5d96ce6b624414" 1449dependencies = [ 1450 "atk-sys", 1451 "cairo-sys-rs", 1452 "gdk-pixbuf-sys", 1453 "gdk-sys", 1454 "gio-sys", 1455 "glib-sys", 1456 "gobject-sys", 1457 "libc", 1458 "pango-sys", 1459 "system-deps", 1460] 1461 1462[[package]] 1463name = "gtk3-macros" 1464version = "0.18.2" 1465source = "registry+https://github.com/rust-lang/crates.io-index" 1466checksum = "52ff3c5b21f14f0736fed6dcfc0bfb4225ebf5725f3c0209edeec181e4d73e9d" 1467dependencies = [ 1468 "proc-macro-crate 1.3.1", 1469 "proc-macro-error", 1470 "proc-macro2", 1471 "quote", 1472 "syn 2.0.104", 1473] 1474 1475[[package]] 1476name = "hashbrown" 1477version = "0.12.3" 1478source = "registry+https://github.com/rust-lang/crates.io-index" 1479checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 1480 1481[[package]] 1482name = "hashbrown" 1483version = "0.14.5" 1484source = "registry+https://github.com/rust-lang/crates.io-index" 1485checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" 1486 1487[[package]] 1488name = "hashbrown" 1489version = "0.15.4" 1490source = "registry+https://github.com/rust-lang/crates.io-index" 1491checksum = "5971ac85611da7067dbfcabef3c70ebb5606018acd9e2a3903a0da507521e0d5" 1492 1493[[package]] 1494name = "heck" 1495version = "0.4.1" 1496source = "registry+https://github.com/rust-lang/crates.io-index" 1497checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" 1498 1499[[package]] 1500name = "heck" 1501version = "0.5.0" 1502source = "registry+https://github.com/rust-lang/crates.io-index" 1503checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" 1504 1505[[package]] 1506name = "hermit-abi" 1507version = "0.5.2" 1508source = "registry+https://github.com/rust-lang/crates.io-index" 1509checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c" 1510 1511[[package]] 1512name = "hex" 1513version = "0.4.3" 1514source = "registry+https://github.com/rust-lang/crates.io-index" 1515checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 1516 1517[[package]] 1518name = "html5ever" 1519version = "0.29.1" 1520source = "registry+https://github.com/rust-lang/crates.io-index" 1521checksum = "3b7410cae13cbc75623c98ac4cbfd1f0bedddf3227afc24f370cf0f50a44a11c" 1522dependencies = [ 1523 "log", 1524 "mac", 1525 "markup5ever", 1526 "match_token", 1527] 1528 1529[[package]] 1530name = "http" 1531version = "1.3.1" 1532source = "registry+https://github.com/rust-lang/crates.io-index" 1533checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565" 1534dependencies = [ 1535 "bytes", 1536 "fnv", 1537 "itoa", 1538] 1539 1540[[package]] 1541name = "http-body" 1542version = "1.0.1" 1543source = "registry+https://github.com/rust-lang/crates.io-index" 1544checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" 1545dependencies = [ 1546 "bytes", 1547 "http", 1548] 1549 1550[[package]] 1551name = "http-body-util" 1552version = "0.1.3" 1553source = "registry+https://github.com/rust-lang/crates.io-index" 1554checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a" 1555dependencies = [ 1556 "bytes", 1557 "futures-core", 1558 "http", 1559 "http-body", 1560 "pin-project-lite", 1561] 1562 1563[[package]] 1564name = "httparse" 1565version = "1.10.1" 1566source = "registry+https://github.com/rust-lang/crates.io-index" 1567checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87" 1568 1569[[package]] 1570name = "hyper" 1571version = "1.6.0" 1572source = "registry+https://github.com/rust-lang/crates.io-index" 1573checksum = "cc2b571658e38e0c01b1fdca3bbbe93c00d3d71693ff2770043f8c29bc7d6f80" 1574dependencies = [ 1575 "bytes", 1576 "futures-channel", 1577 "futures-util", 1578 "http", 1579 "http-body", 1580 "httparse", 1581 "itoa", 1582 "pin-project-lite", 1583 "smallvec", 1584 "tokio", 1585 "want", 1586] 1587 1588[[package]] 1589name = "hyper-util" 1590version = "0.1.15" 1591source = "registry+https://github.com/rust-lang/crates.io-index" 1592checksum = "7f66d5bd4c6f02bf0542fad85d626775bab9258cf795a4256dcaf3161114d1df" 1593dependencies = [ 1594 "base64 0.22.1", 1595 "bytes", 1596 "futures-channel", 1597 "futures-core", 1598 "futures-util", 1599 "http", 1600 "http-body", 1601 "hyper", 1602 "ipnet", 1603 "libc", 1604 "percent-encoding", 1605 "pin-project-lite", 1606 "socket2", 1607 "tokio", 1608 "tower-service", 1609 "tracing", 1610] 1611 1612[[package]] 1613name = "iana-time-zone" 1614version = "0.1.63" 1615source = "registry+https://github.com/rust-lang/crates.io-index" 1616checksum = "b0c919e5debc312ad217002b8048a17b7d83f80703865bbfcfebb0458b0b27d8" 1617dependencies = [ 1618 "android_system_properties", 1619 "core-foundation-sys", 1620 "iana-time-zone-haiku", 1621 "js-sys", 1622 "log", 1623 "wasm-bindgen", 1624 "windows-core", 1625] 1626 1627[[package]] 1628name = "iana-time-zone-haiku" 1629version = "0.1.2" 1630source = "registry+https://github.com/rust-lang/crates.io-index" 1631checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" 1632dependencies = [ 1633 "cc", 1634] 1635 1636[[package]] 1637name = "ico" 1638version = "0.4.0" 1639source = "registry+https://github.com/rust-lang/crates.io-index" 1640checksum = "cc50b891e4acf8fe0e71ef88ec43ad82ee07b3810ad09de10f1d01f072ed4b98" 1641dependencies = [ 1642 "byteorder", 1643 "png", 1644] 1645 1646[[package]] 1647name = "icu_collections" 1648version = "2.0.0" 1649source = "registry+https://github.com/rust-lang/crates.io-index" 1650checksum = "200072f5d0e3614556f94a9930d5dc3e0662a652823904c3a75dc3b0af7fee47" 1651dependencies = [ 1652 "displaydoc", 1653 "potential_utf", 1654 "yoke", 1655 "zerofrom", 1656 "zerovec", 1657] 1658 1659[[package]] 1660name = "icu_locale_core" 1661version = "2.0.0" 1662source = "registry+https://github.com/rust-lang/crates.io-index" 1663checksum = "0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a" 1664dependencies = [ 1665 "displaydoc", 1666 "litemap", 1667 "tinystr", 1668 "writeable", 1669 "zerovec", 1670] 1671 1672[[package]] 1673name = "icu_normalizer" 1674version = "2.0.0" 1675source = "registry+https://github.com/rust-lang/crates.io-index" 1676checksum = "436880e8e18df4d7bbc06d58432329d6458cc84531f7ac5f024e93deadb37979" 1677dependencies = [ 1678 "displaydoc", 1679 "icu_collections", 1680 "icu_normalizer_data", 1681 "icu_properties", 1682 "icu_provider", 1683 "smallvec", 1684 "zerovec", 1685] 1686 1687[[package]] 1688name = "icu_normalizer_data" 1689version = "2.0.0" 1690source = "registry+https://github.com/rust-lang/crates.io-index" 1691checksum = "00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3" 1692 1693[[package]] 1694name = "icu_properties" 1695version = "2.0.1" 1696source = "registry+https://github.com/rust-lang/crates.io-index" 1697checksum = "016c619c1eeb94efb86809b015c58f479963de65bdb6253345c1a1276f22e32b" 1698dependencies = [ 1699 "displaydoc", 1700 "icu_collections", 1701 "icu_locale_core", 1702 "icu_properties_data", 1703 "icu_provider", 1704 "potential_utf", 1705 "zerotrie", 1706 "zerovec", 1707] 1708 1709[[package]] 1710name = "icu_properties_data" 1711version = "2.0.1" 1712source = "registry+https://github.com/rust-lang/crates.io-index" 1713checksum = "298459143998310acd25ffe6810ed544932242d3f07083eee1084d83a71bd632" 1714 1715[[package]] 1716name = "icu_provider" 1717version = "2.0.0" 1718source = "registry+https://github.com/rust-lang/crates.io-index" 1719checksum = "03c80da27b5f4187909049ee2d72f276f0d9f99a42c306bd0131ecfe04d8e5af" 1720dependencies = [ 1721 "displaydoc", 1722 "icu_locale_core", 1723 "stable_deref_trait", 1724 "tinystr", 1725 "writeable", 1726 "yoke", 1727 "zerofrom", 1728 "zerotrie", 1729 "zerovec", 1730] 1731 1732[[package]] 1733name = "ident_case" 1734version = "1.0.1" 1735source = "registry+https://github.com/rust-lang/crates.io-index" 1736checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" 1737 1738[[package]] 1739name = "idna" 1740version = "1.0.3" 1741source = "registry+https://github.com/rust-lang/crates.io-index" 1742checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e" 1743dependencies = [ 1744 "idna_adapter", 1745 "smallvec", 1746 "utf8_iter", 1747] 1748 1749[[package]] 1750name = "idna_adapter" 1751version = "1.2.1" 1752source = "registry+https://github.com/rust-lang/crates.io-index" 1753checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344" 1754dependencies = [ 1755 "icu_normalizer", 1756 "icu_properties", 1757] 1758 1759[[package]] 1760name = "indexmap" 1761version = "1.9.3" 1762source = "registry+https://github.com/rust-lang/crates.io-index" 1763checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" 1764dependencies = [ 1765 "autocfg", 1766 "hashbrown 0.12.3", 1767 "serde", 1768] 1769 1770[[package]] 1771name = "indexmap" 1772version = "2.10.0" 1773source = "registry+https://github.com/rust-lang/crates.io-index" 1774checksum = "fe4cd85333e22411419a0bcae1297d25e58c9443848b11dc6a86fefe8c78a661" 1775dependencies = [ 1776 "equivalent", 1777 "hashbrown 0.15.4", 1778 "serde", 1779] 1780 1781[[package]] 1782name = "infer" 1783version = "0.19.0" 1784source = "registry+https://github.com/rust-lang/crates.io-index" 1785checksum = "a588916bfdfd92e71cacef98a63d9b1f0d74d6599980d11894290e7ddefffcf7" 1786dependencies = [ 1787 "cfb", 1788] 1789 1790[[package]] 1791name = "io-uring" 1792version = "0.7.8" 1793source = "registry+https://github.com/rust-lang/crates.io-index" 1794checksum = "b86e202f00093dcba4275d4636b93ef9dd75d025ae560d2521b45ea28ab49013" 1795dependencies = [ 1796 "bitflags 2.9.1", 1797 "cfg-if", 1798 "libc", 1799] 1800 1801[[package]] 1802name = "ipnet" 1803version = "2.11.0" 1804source = "registry+https://github.com/rust-lang/crates.io-index" 1805checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130" 1806 1807[[package]] 1808name = "iri-string" 1809version = "0.7.8" 1810source = "registry+https://github.com/rust-lang/crates.io-index" 1811checksum = "dbc5ebe9c3a1a7a5127f920a418f7585e9e758e911d0466ed004f393b0e380b2" 1812dependencies = [ 1813 "memchr", 1814 "serde", 1815] 1816 1817[[package]] 1818name = "is-docker" 1819version = "0.2.0" 1820source = "registry+https://github.com/rust-lang/crates.io-index" 1821checksum = "928bae27f42bc99b60d9ac7334e3a21d10ad8f1835a4e12ec3ec0464765ed1b3" 1822dependencies = [ 1823 "once_cell", 1824] 1825 1826[[package]] 1827name = "is-wsl" 1828version = "0.4.0" 1829source = "registry+https://github.com/rust-lang/crates.io-index" 1830checksum = "173609498df190136aa7dea1a91db051746d339e18476eed5ca40521f02d7aa5" 1831dependencies = [ 1832 "is-docker", 1833 "once_cell", 1834] 1835 1836[[package]] 1837name = "itoa" 1838version = "1.0.15" 1839source = "registry+https://github.com/rust-lang/crates.io-index" 1840checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c" 1841 1842[[package]] 1843name = "javascriptcore-rs" 1844version = "1.1.2" 1845source = "registry+https://github.com/rust-lang/crates.io-index" 1846checksum = "ca5671e9ffce8ffba57afc24070e906da7fc4b1ba66f2cabebf61bf2ea257fcc" 1847dependencies = [ 1848 "bitflags 1.3.2", 1849 "glib", 1850 "javascriptcore-rs-sys", 1851] 1852 1853[[package]] 1854name = "javascriptcore-rs-sys" 1855version = "1.1.1" 1856source = "registry+https://github.com/rust-lang/crates.io-index" 1857checksum = "af1be78d14ffa4b75b66df31840478fef72b51f8c2465d4ca7c194da9f7a5124" 1858dependencies = [ 1859 "glib-sys", 1860 "gobject-sys", 1861 "libc", 1862 "system-deps", 1863] 1864 1865[[package]] 1866name = "jni" 1867version = "0.21.1" 1868source = "registry+https://github.com/rust-lang/crates.io-index" 1869checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97" 1870dependencies = [ 1871 "cesu8", 1872 "cfg-if", 1873 "combine", 1874 "jni-sys", 1875 "log", 1876 "thiserror 1.0.69", 1877 "walkdir", 1878 "windows-sys 0.45.0", 1879] 1880 1881[[package]] 1882name = "jni-sys" 1883version = "0.3.0" 1884source = "registry+https://github.com/rust-lang/crates.io-index" 1885checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130" 1886 1887[[package]] 1888name = "js-sys" 1889version = "0.3.77" 1890source = "registry+https://github.com/rust-lang/crates.io-index" 1891checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f" 1892dependencies = [ 1893 "once_cell", 1894 "wasm-bindgen", 1895] 1896 1897[[package]] 1898name = "json-patch" 1899version = "3.0.1" 1900source = "registry+https://github.com/rust-lang/crates.io-index" 1901checksum = "863726d7afb6bc2590eeff7135d923545e5e964f004c2ccf8716c25e70a86f08" 1902dependencies = [ 1903 "jsonptr", 1904 "serde", 1905 "serde_json", 1906 "thiserror 1.0.69", 1907] 1908 1909[[package]] 1910name = "jsonptr" 1911version = "0.6.3" 1912source = "registry+https://github.com/rust-lang/crates.io-index" 1913checksum = "5dea2b27dd239b2556ed7a25ba842fe47fd602e7fc7433c2a8d6106d4d9edd70" 1914dependencies = [ 1915 "serde", 1916 "serde_json", 1917] 1918 1919[[package]] 1920name = "keyboard-types" 1921version = "0.7.0" 1922source = "registry+https://github.com/rust-lang/crates.io-index" 1923checksum = "b750dcadc39a09dbadd74e118f6dd6598df77fa01df0cfcdc52c28dece74528a" 1924dependencies = [ 1925 "bitflags 2.9.1", 1926 "serde", 1927 "unicode-segmentation", 1928] 1929 1930[[package]] 1931name = "kuchikiki" 1932version = "0.8.8-speedreader" 1933source = "registry+https://github.com/rust-lang/crates.io-index" 1934checksum = "02cb977175687f33fa4afa0c95c112b987ea1443e5a51c8f8ff27dc618270cc2" 1935dependencies = [ 1936 "cssparser", 1937 "html5ever", 1938 "indexmap 2.10.0", 1939 "selectors", 1940] 1941 1942[[package]] 1943name = "lazy_static" 1944version = "1.5.0" 1945source = "registry+https://github.com/rust-lang/crates.io-index" 1946checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" 1947 1948[[package]] 1949name = "libappindicator" 1950version = "0.9.0" 1951source = "registry+https://github.com/rust-lang/crates.io-index" 1952checksum = "03589b9607c868cc7ae54c0b2a22c8dc03dd41692d48f2d7df73615c6a95dc0a" 1953dependencies = [ 1954 "glib", 1955 "gtk", 1956 "gtk-sys", 1957 "libappindicator-sys", 1958 "log", 1959] 1960 1961[[package]] 1962name = "libappindicator-sys" 1963version = "0.9.0" 1964source = "registry+https://github.com/rust-lang/crates.io-index" 1965checksum = "6e9ec52138abedcc58dc17a7c6c0c00a2bdb4f3427c7f63fa97fd0d859155caf" 1966dependencies = [ 1967 "gtk-sys", 1968 "libloading", 1969 "once_cell", 1970] 1971 1972[[package]] 1973name = "libc" 1974version = "0.2.174" 1975source = "registry+https://github.com/rust-lang/crates.io-index" 1976checksum = "1171693293099992e19cddea4e8b849964e9846f4acee11b3948bcc337be8776" 1977 1978[[package]] 1979name = "libloading" 1980version = "0.7.4" 1981source = "registry+https://github.com/rust-lang/crates.io-index" 1982checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f" 1983dependencies = [ 1984 "cfg-if", 1985 "winapi", 1986] 1987 1988[[package]] 1989name = "libredox" 1990version = "0.1.4" 1991source = "registry+https://github.com/rust-lang/crates.io-index" 1992checksum = "1580801010e535496706ba011c15f8532df6b42297d2e471fec38ceadd8c0638" 1993dependencies = [ 1994 "bitflags 2.9.1", 1995 "libc", 1996] 1997 1998[[package]] 1999name = "linux-raw-sys" 2000version = "0.9.4" 2001source = "registry+https://github.com/rust-lang/crates.io-index" 2002checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12" 2003 2004[[package]] 2005name = "litemap" 2006version = "0.8.0" 2007source = "registry+https://github.com/rust-lang/crates.io-index" 2008checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956" 2009 2010[[package]] 2011name = "lock_api" 2012version = "0.4.13" 2013source = "registry+https://github.com/rust-lang/crates.io-index" 2014checksum = "96936507f153605bddfcda068dd804796c84324ed2510809e5b2a624c81da765" 2015dependencies = [ 2016 "autocfg", 2017 "scopeguard", 2018] 2019 2020[[package]] 2021name = "log" 2022version = "0.4.27" 2023source = "registry+https://github.com/rust-lang/crates.io-index" 2024checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94" 2025 2026[[package]] 2027name = "mac" 2028version = "0.1.1" 2029source = "registry+https://github.com/rust-lang/crates.io-index" 2030checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4" 2031 2032[[package]] 2033name = "markup5ever" 2034version = "0.14.1" 2035source = "registry+https://github.com/rust-lang/crates.io-index" 2036checksum = "c7a7213d12e1864c0f002f52c2923d4556935a43dec5e71355c2760e0f6e7a18" 2037dependencies = [ 2038 "log", 2039 "phf 0.11.3", 2040 "phf_codegen 0.11.3", 2041 "string_cache", 2042 "string_cache_codegen", 2043 "tendril", 2044] 2045 2046[[package]] 2047name = "match_token" 2048version = "0.1.0" 2049source = "registry+https://github.com/rust-lang/crates.io-index" 2050checksum = "88a9689d8d44bf9964484516275f5cd4c9b59457a6940c1d5d0ecbb94510a36b" 2051dependencies = [ 2052 "proc-macro2", 2053 "quote", 2054 "syn 2.0.104", 2055] 2056 2057[[package]] 2058name = "matches" 2059version = "0.1.10" 2060source = "registry+https://github.com/rust-lang/crates.io-index" 2061checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5" 2062 2063[[package]] 2064name = "memchr" 2065version = "2.7.5" 2066source = "registry+https://github.com/rust-lang/crates.io-index" 2067checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0" 2068 2069[[package]] 2070name = "memoffset" 2071version = "0.9.1" 2072source = "registry+https://github.com/rust-lang/crates.io-index" 2073checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a" 2074dependencies = [ 2075 "autocfg", 2076] 2077 2078[[package]] 2079name = "mime" 2080version = "0.3.17" 2081source = "registry+https://github.com/rust-lang/crates.io-index" 2082checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" 2083 2084[[package]] 2085name = "miniz_oxide" 2086version = "0.8.9" 2087source = "registry+https://github.com/rust-lang/crates.io-index" 2088checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316" 2089dependencies = [ 2090 "adler2", 2091 "simd-adler32", 2092] 2093 2094[[package]] 2095name = "mio" 2096version = "1.0.4" 2097source = "registry+https://github.com/rust-lang/crates.io-index" 2098checksum = "78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c" 2099dependencies = [ 2100 "libc", 2101 "wasi 0.11.1+wasi-snapshot-preview1", 2102 "windows-sys 0.59.0", 2103] 2104 2105[[package]] 2106name = "muda" 2107version = "0.17.0" 2108source = "registry+https://github.com/rust-lang/crates.io-index" 2109checksum = "58b89bf91c19bf036347f1ab85a81c560f08c0667c8601bece664d860a600988" 2110dependencies = [ 2111 "crossbeam-channel", 2112 "dpi", 2113 "gtk", 2114 "keyboard-types", 2115 "objc2 0.6.1", 2116 "objc2-app-kit", 2117 "objc2-core-foundation", 2118 "objc2-foundation 0.3.1", 2119 "once_cell", 2120 "png", 2121 "serde", 2122 "thiserror 2.0.12", 2123 "windows-sys 0.59.0", 2124] 2125 2126[[package]] 2127name = "ndk" 2128version = "0.9.0" 2129source = "registry+https://github.com/rust-lang/crates.io-index" 2130checksum = "c3f42e7bbe13d351b6bead8286a43aac9534b82bd3cc43e47037f012ebfd62d4" 2131dependencies = [ 2132 "bitflags 2.9.1", 2133 "jni-sys", 2134 "log", 2135 "ndk-sys", 2136 "num_enum", 2137 "raw-window-handle", 2138 "thiserror 1.0.69", 2139] 2140 2141[[package]] 2142name = "ndk-context" 2143version = "0.1.1" 2144source = "registry+https://github.com/rust-lang/crates.io-index" 2145checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b" 2146 2147[[package]] 2148name = "ndk-sys" 2149version = "0.6.0+11769913" 2150source = "registry+https://github.com/rust-lang/crates.io-index" 2151checksum = "ee6cda3051665f1fb8d9e08fc35c96d5a244fb1be711a03b71118828afc9a873" 2152dependencies = [ 2153 "jni-sys", 2154] 2155 2156[[package]] 2157name = "new_debug_unreachable" 2158version = "1.0.6" 2159source = "registry+https://github.com/rust-lang/crates.io-index" 2160checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086" 2161 2162[[package]] 2163name = "nix" 2164version = "0.30.1" 2165source = "registry+https://github.com/rust-lang/crates.io-index" 2166checksum = "74523f3a35e05aba87a1d978330aef40f67b0304ac79c1c00b294c9830543db6" 2167dependencies = [ 2168 "bitflags 2.9.1", 2169 "cfg-if", 2170 "cfg_aliases", 2171 "libc", 2172 "memoffset", 2173] 2174 2175[[package]] 2176name = "nodrop" 2177version = "0.1.14" 2178source = "registry+https://github.com/rust-lang/crates.io-index" 2179checksum = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb" 2180 2181[[package]] 2182name = "num-conv" 2183version = "0.1.0" 2184source = "registry+https://github.com/rust-lang/crates.io-index" 2185checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" 2186 2187[[package]] 2188name = "num-traits" 2189version = "0.2.19" 2190source = "registry+https://github.com/rust-lang/crates.io-index" 2191checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" 2192dependencies = [ 2193 "autocfg", 2194] 2195 2196[[package]] 2197name = "num_enum" 2198version = "0.7.4" 2199source = "registry+https://github.com/rust-lang/crates.io-index" 2200checksum = "a973b4e44ce6cad84ce69d797acf9a044532e4184c4f267913d1b546a0727b7a" 2201dependencies = [ 2202 "num_enum_derive", 2203 "rustversion", 2204] 2205 2206[[package]] 2207name = "num_enum_derive" 2208version = "0.7.4" 2209source = "registry+https://github.com/rust-lang/crates.io-index" 2210checksum = "77e878c846a8abae00dd069496dbe8751b16ac1c3d6bd2a7283a938e8228f90d" 2211dependencies = [ 2212 "proc-macro-crate 3.3.0", 2213 "proc-macro2", 2214 "quote", 2215 "syn 2.0.104", 2216] 2217 2218[[package]] 2219name = "objc-sys" 2220version = "0.3.5" 2221source = "registry+https://github.com/rust-lang/crates.io-index" 2222checksum = "cdb91bdd390c7ce1a8607f35f3ca7151b65afc0ff5ff3b34fa350f7d7c7e4310" 2223 2224[[package]] 2225name = "objc2" 2226version = "0.5.2" 2227source = "registry+https://github.com/rust-lang/crates.io-index" 2228checksum = "46a785d4eeff09c14c487497c162e92766fbb3e4059a71840cecc03d9a50b804" 2229dependencies = [ 2230 "objc-sys", 2231 "objc2-encode", 2232] 2233 2234[[package]] 2235name = "objc2" 2236version = "0.6.1" 2237source = "registry+https://github.com/rust-lang/crates.io-index" 2238checksum = "88c6597e14493ab2e44ce58f2fdecf095a51f12ca57bec060a11c57332520551" 2239dependencies = [ 2240 "objc2-encode", 2241 "objc2-exception-helper", 2242] 2243 2244[[package]] 2245name = "objc2-app-kit" 2246version = "0.3.1" 2247source = "registry+https://github.com/rust-lang/crates.io-index" 2248checksum = "e6f29f568bec459b0ddff777cec4fe3fd8666d82d5a40ebd0ff7e66134f89bcc" 2249dependencies = [ 2250 "bitflags 2.9.1", 2251 "block2 0.6.1", 2252 "libc", 2253 "objc2 0.6.1", 2254 "objc2-cloud-kit", 2255 "objc2-core-data", 2256 "objc2-core-foundation", 2257 "objc2-core-graphics", 2258 "objc2-core-image", 2259 "objc2-foundation 0.3.1", 2260 "objc2-quartz-core 0.3.1", 2261] 2262 2263[[package]] 2264name = "objc2-cloud-kit" 2265version = "0.3.1" 2266source = "registry+https://github.com/rust-lang/crates.io-index" 2267checksum = "17614fdcd9b411e6ff1117dfb1d0150f908ba83a7df81b1f118005fe0a8ea15d" 2268dependencies = [ 2269 "bitflags 2.9.1", 2270 "objc2 0.6.1", 2271 "objc2-foundation 0.3.1", 2272] 2273 2274[[package]] 2275name = "objc2-core-data" 2276version = "0.3.1" 2277source = "registry+https://github.com/rust-lang/crates.io-index" 2278checksum = "291fbbf7d29287518e8686417cf7239c74700fd4b607623140a7d4a3c834329d" 2279dependencies = [ 2280 "bitflags 2.9.1", 2281 "objc2 0.6.1", 2282 "objc2-foundation 0.3.1", 2283] 2284 2285[[package]] 2286name = "objc2-core-foundation" 2287version = "0.3.1" 2288source = "registry+https://github.com/rust-lang/crates.io-index" 2289checksum = "1c10c2894a6fed806ade6027bcd50662746363a9589d3ec9d9bef30a4e4bc166" 2290dependencies = [ 2291 "bitflags 2.9.1", 2292 "dispatch2", 2293 "objc2 0.6.1", 2294] 2295 2296[[package]] 2297name = "objc2-core-graphics" 2298version = "0.3.1" 2299source = "registry+https://github.com/rust-lang/crates.io-index" 2300checksum = "989c6c68c13021b5c2d6b71456ebb0f9dc78d752e86a98da7c716f4f9470f5a4" 2301dependencies = [ 2302 "bitflags 2.9.1", 2303 "dispatch2", 2304 "objc2 0.6.1", 2305 "objc2-core-foundation", 2306 "objc2-io-surface", 2307] 2308 2309[[package]] 2310name = "objc2-core-image" 2311version = "0.3.1" 2312source = "registry+https://github.com/rust-lang/crates.io-index" 2313checksum = "79b3dc0cc4386b6ccf21c157591b34a7f44c8e75b064f85502901ab2188c007e" 2314dependencies = [ 2315 "objc2 0.6.1", 2316 "objc2-foundation 0.3.1", 2317] 2318 2319[[package]] 2320name = "objc2-encode" 2321version = "4.1.0" 2322source = "registry+https://github.com/rust-lang/crates.io-index" 2323checksum = "ef25abbcd74fb2609453eb695bd2f860d389e457f67dc17cafc8b8cbc89d0c33" 2324 2325[[package]] 2326name = "objc2-exception-helper" 2327version = "0.1.1" 2328source = "registry+https://github.com/rust-lang/crates.io-index" 2329checksum = "c7a1c5fbb72d7735b076bb47b578523aedc40f3c439bea6dfd595c089d79d98a" 2330dependencies = [ 2331 "cc", 2332] 2333 2334[[package]] 2335name = "objc2-foundation" 2336version = "0.2.2" 2337source = "registry+https://github.com/rust-lang/crates.io-index" 2338checksum = "0ee638a5da3799329310ad4cfa62fbf045d5f56e3ef5ba4149e7452dcf89d5a8" 2339dependencies = [ 2340 "bitflags 2.9.1", 2341 "block2 0.5.1", 2342 "libc", 2343 "objc2 0.5.2", 2344] 2345 2346[[package]] 2347name = "objc2-foundation" 2348version = "0.3.1" 2349source = "registry+https://github.com/rust-lang/crates.io-index" 2350checksum = "900831247d2fe1a09a683278e5384cfb8c80c79fe6b166f9d14bfdde0ea1b03c" 2351dependencies = [ 2352 "bitflags 2.9.1", 2353 "block2 0.6.1", 2354 "libc", 2355 "objc2 0.6.1", 2356 "objc2-core-foundation", 2357] 2358 2359[[package]] 2360name = "objc2-io-surface" 2361version = "0.3.1" 2362source = "registry+https://github.com/rust-lang/crates.io-index" 2363checksum = "7282e9ac92529fa3457ce90ebb15f4ecbc383e8338060960760fa2cf75420c3c" 2364dependencies = [ 2365 "bitflags 2.9.1", 2366 "objc2 0.6.1", 2367 "objc2-core-foundation", 2368] 2369 2370[[package]] 2371name = "objc2-metal" 2372version = "0.2.2" 2373source = "registry+https://github.com/rust-lang/crates.io-index" 2374checksum = "dd0cba1276f6023976a406a14ffa85e1fdd19df6b0f737b063b95f6c8c7aadd6" 2375dependencies = [ 2376 "bitflags 2.9.1", 2377 "block2 0.5.1", 2378 "objc2 0.5.2", 2379 "objc2-foundation 0.2.2", 2380] 2381 2382[[package]] 2383name = "objc2-quartz-core" 2384version = "0.2.2" 2385source = "registry+https://github.com/rust-lang/crates.io-index" 2386checksum = "e42bee7bff906b14b167da2bac5efe6b6a07e6f7c0a21a7308d40c960242dc7a" 2387dependencies = [ 2388 "bitflags 2.9.1", 2389 "block2 0.5.1", 2390 "objc2 0.5.2", 2391 "objc2-foundation 0.2.2", 2392 "objc2-metal", 2393] 2394 2395[[package]] 2396name = "objc2-quartz-core" 2397version = "0.3.1" 2398source = "registry+https://github.com/rust-lang/crates.io-index" 2399checksum = "90ffb6a0cd5f182dc964334388560b12a57f7b74b3e2dec5e2722aa2dfb2ccd5" 2400dependencies = [ 2401 "bitflags 2.9.1", 2402 "objc2 0.6.1", 2403 "objc2-foundation 0.3.1", 2404] 2405 2406[[package]] 2407name = "objc2-ui-kit" 2408version = "0.3.1" 2409source = "registry+https://github.com/rust-lang/crates.io-index" 2410checksum = "25b1312ad7bc8a0e92adae17aa10f90aae1fb618832f9b993b022b591027daed" 2411dependencies = [ 2412 "bitflags 2.9.1", 2413 "objc2 0.6.1", 2414 "objc2-core-foundation", 2415 "objc2-foundation 0.3.1", 2416] 2417 2418[[package]] 2419name = "objc2-web-kit" 2420version = "0.3.1" 2421source = "registry+https://github.com/rust-lang/crates.io-index" 2422checksum = "91672909de8b1ce1c2252e95bbee8c1649c9ad9d14b9248b3d7b4c47903c47ad" 2423dependencies = [ 2424 "bitflags 2.9.1", 2425 "block2 0.6.1", 2426 "objc2 0.6.1", 2427 "objc2-app-kit", 2428 "objc2-core-foundation", 2429 "objc2-foundation 0.3.1", 2430] 2431 2432[[package]] 2433name = "object" 2434version = "0.36.7" 2435source = "registry+https://github.com/rust-lang/crates.io-index" 2436checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87" 2437dependencies = [ 2438 "memchr", 2439] 2440 2441[[package]] 2442name = "once_cell" 2443version = "1.21.3" 2444source = "registry+https://github.com/rust-lang/crates.io-index" 2445checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d" 2446 2447[[package]] 2448name = "open" 2449version = "5.3.2" 2450source = "registry+https://github.com/rust-lang/crates.io-index" 2451checksum = "e2483562e62ea94312f3576a7aca397306df7990b8d89033e18766744377ef95" 2452dependencies = [ 2453 "dunce", 2454 "is-wsl", 2455 "libc", 2456 "pathdiff", 2457] 2458 2459[[package]] 2460name = "option-ext" 2461version = "0.2.0" 2462source = "registry+https://github.com/rust-lang/crates.io-index" 2463checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d" 2464 2465[[package]] 2466name = "ordered-multimap" 2467version = "0.7.3" 2468source = "registry+https://github.com/rust-lang/crates.io-index" 2469checksum = "49203cdcae0030493bad186b28da2fa25645fa276a51b6fec8010d281e02ef79" 2470dependencies = [ 2471 "dlv-list", 2472 "hashbrown 0.14.5", 2473] 2474 2475[[package]] 2476name = "ordered-stream" 2477version = "0.2.0" 2478source = "registry+https://github.com/rust-lang/crates.io-index" 2479checksum = "9aa2b01e1d916879f73a53d01d1d6cee68adbb31d6d9177a8cfce093cced1d50" 2480dependencies = [ 2481 "futures-core", 2482 "pin-project-lite", 2483] 2484 2485[[package]] 2486name = "pango" 2487version = "0.18.3" 2488source = "registry+https://github.com/rust-lang/crates.io-index" 2489checksum = "7ca27ec1eb0457ab26f3036ea52229edbdb74dee1edd29063f5b9b010e7ebee4" 2490dependencies = [ 2491 "gio", 2492 "glib", 2493 "libc", 2494 "once_cell", 2495 "pango-sys", 2496] 2497 2498[[package]] 2499name = "pango-sys" 2500version = "0.18.0" 2501source = "registry+https://github.com/rust-lang/crates.io-index" 2502checksum = "436737e391a843e5933d6d9aa102cb126d501e815b83601365a948a518555dc5" 2503dependencies = [ 2504 "glib-sys", 2505 "gobject-sys", 2506 "libc", 2507 "system-deps", 2508] 2509 2510[[package]] 2511name = "parking" 2512version = "2.2.1" 2513source = "registry+https://github.com/rust-lang/crates.io-index" 2514checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba" 2515 2516[[package]] 2517name = "parking_lot" 2518version = "0.12.4" 2519source = "registry+https://github.com/rust-lang/crates.io-index" 2520checksum = "70d58bf43669b5795d1576d0641cfb6fbb2057bf629506267a92807158584a13" 2521dependencies = [ 2522 "lock_api", 2523 "parking_lot_core", 2524] 2525 2526[[package]] 2527name = "parking_lot_core" 2528version = "0.9.11" 2529source = "registry+https://github.com/rust-lang/crates.io-index" 2530checksum = "bc838d2a56b5b1a6c25f55575dfc605fabb63bb2365f6c2353ef9159aa69e4a5" 2531dependencies = [ 2532 "cfg-if", 2533 "libc", 2534 "redox_syscall", 2535 "smallvec", 2536 "windows-targets 0.52.6", 2537] 2538 2539[[package]] 2540name = "pathdiff" 2541version = "0.2.3" 2542source = "registry+https://github.com/rust-lang/crates.io-index" 2543checksum = "df94ce210e5bc13cb6651479fa48d14f601d9858cfe0467f43ae157023b938d3" 2544 2545[[package]] 2546name = "percent-encoding" 2547version = "2.3.1" 2548source = "registry+https://github.com/rust-lang/crates.io-index" 2549checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" 2550 2551[[package]] 2552name = "phf" 2553version = "0.8.0" 2554source = "registry+https://github.com/rust-lang/crates.io-index" 2555checksum = "3dfb61232e34fcb633f43d12c58f83c1df82962dcdfa565a4e866ffc17dafe12" 2556dependencies = [ 2557 "phf_shared 0.8.0", 2558] 2559 2560[[package]] 2561name = "phf" 2562version = "0.10.1" 2563source = "registry+https://github.com/rust-lang/crates.io-index" 2564checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259" 2565dependencies = [ 2566 "phf_macros 0.10.0", 2567 "phf_shared 0.10.0", 2568 "proc-macro-hack", 2569] 2570 2571[[package]] 2572name = "phf" 2573version = "0.11.3" 2574source = "registry+https://github.com/rust-lang/crates.io-index" 2575checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078" 2576dependencies = [ 2577 "phf_macros 0.11.3", 2578 "phf_shared 0.11.3", 2579] 2580 2581[[package]] 2582name = "phf_codegen" 2583version = "0.8.0" 2584source = "registry+https://github.com/rust-lang/crates.io-index" 2585checksum = "cbffee61585b0411840d3ece935cce9cb6321f01c45477d30066498cd5e1a815" 2586dependencies = [ 2587 "phf_generator 0.8.0", 2588 "phf_shared 0.8.0", 2589] 2590 2591[[package]] 2592name = "phf_codegen" 2593version = "0.11.3" 2594source = "registry+https://github.com/rust-lang/crates.io-index" 2595checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a" 2596dependencies = [ 2597 "phf_generator 0.11.3", 2598 "phf_shared 0.11.3", 2599] 2600 2601[[package]] 2602name = "phf_generator" 2603version = "0.8.0" 2604source = "registry+https://github.com/rust-lang/crates.io-index" 2605checksum = "17367f0cc86f2d25802b2c26ee58a7b23faeccf78a396094c13dced0d0182526" 2606dependencies = [ 2607 "phf_shared 0.8.0", 2608 "rand 0.7.3", 2609] 2610 2611[[package]] 2612name = "phf_generator" 2613version = "0.10.0" 2614source = "registry+https://github.com/rust-lang/crates.io-index" 2615checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6" 2616dependencies = [ 2617 "phf_shared 0.10.0", 2618 "rand 0.8.5", 2619] 2620 2621[[package]] 2622name = "phf_generator" 2623version = "0.11.3" 2624source = "registry+https://github.com/rust-lang/crates.io-index" 2625checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d" 2626dependencies = [ 2627 "phf_shared 0.11.3", 2628 "rand 0.8.5", 2629] 2630 2631[[package]] 2632name = "phf_macros" 2633version = "0.10.0" 2634source = "registry+https://github.com/rust-lang/crates.io-index" 2635checksum = "58fdf3184dd560f160dd73922bea2d5cd6e8f064bf4b13110abd81b03697b4e0" 2636dependencies = [ 2637 "phf_generator 0.10.0", 2638 "phf_shared 0.10.0", 2639 "proc-macro-hack", 2640 "proc-macro2", 2641 "quote", 2642 "syn 1.0.109", 2643] 2644 2645[[package]] 2646name = "phf_macros" 2647version = "0.11.3" 2648source = "registry+https://github.com/rust-lang/crates.io-index" 2649checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216" 2650dependencies = [ 2651 "phf_generator 0.11.3", 2652 "phf_shared 0.11.3", 2653 "proc-macro2", 2654 "quote", 2655 "syn 2.0.104", 2656] 2657 2658[[package]] 2659name = "phf_shared" 2660version = "0.8.0" 2661source = "registry+https://github.com/rust-lang/crates.io-index" 2662checksum = "c00cf8b9eafe68dde5e9eaa2cef8ee84a9336a47d566ec55ca16589633b65af7" 2663dependencies = [ 2664 "siphasher 0.3.11", 2665] 2666 2667[[package]] 2668name = "phf_shared" 2669version = "0.10.0" 2670source = "registry+https://github.com/rust-lang/crates.io-index" 2671checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096" 2672dependencies = [ 2673 "siphasher 0.3.11", 2674] 2675 2676[[package]] 2677name = "phf_shared" 2678version = "0.11.3" 2679source = "registry+https://github.com/rust-lang/crates.io-index" 2680checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5" 2681dependencies = [ 2682 "siphasher 1.0.1", 2683] 2684 2685[[package]] 2686name = "pin-project-lite" 2687version = "0.2.16" 2688source = "registry+https://github.com/rust-lang/crates.io-index" 2689checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b" 2690 2691[[package]] 2692name = "pin-utils" 2693version = "0.1.0" 2694source = "registry+https://github.com/rust-lang/crates.io-index" 2695checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 2696 2697[[package]] 2698name = "piper" 2699version = "0.2.4" 2700source = "registry+https://github.com/rust-lang/crates.io-index" 2701checksum = "96c8c490f422ef9a4efd2cb5b42b76c8613d7e7dfc1caf667b8a3350a5acc066" 2702dependencies = [ 2703 "atomic-waker", 2704 "fastrand", 2705 "futures-io", 2706] 2707 2708[[package]] 2709name = "pkg-config" 2710version = "0.3.32" 2711source = "registry+https://github.com/rust-lang/crates.io-index" 2712checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c" 2713 2714[[package]] 2715name = "plist" 2716version = "1.7.4" 2717source = "registry+https://github.com/rust-lang/crates.io-index" 2718checksum = "3af6b589e163c5a788fab00ce0c0366f6efbb9959c2f9874b224936af7fce7e1" 2719dependencies = [ 2720 "base64 0.22.1", 2721 "indexmap 2.10.0", 2722 "quick-xml", 2723 "serde", 2724 "time", 2725] 2726 2727[[package]] 2728name = "png" 2729version = "0.17.16" 2730source = "registry+https://github.com/rust-lang/crates.io-index" 2731checksum = "82151a2fc869e011c153adc57cf2789ccb8d9906ce52c0b39a6b5697749d7526" 2732dependencies = [ 2733 "bitflags 1.3.2", 2734 "crc32fast", 2735 "fdeflate", 2736 "flate2", 2737 "miniz_oxide", 2738] 2739 2740[[package]] 2741name = "polling" 2742version = "3.8.0" 2743source = "registry+https://github.com/rust-lang/crates.io-index" 2744checksum = "b53a684391ad002dd6a596ceb6c74fd004fdce75f4be2e3f615068abbea5fd50" 2745dependencies = [ 2746 "cfg-if", 2747 "concurrent-queue", 2748 "hermit-abi", 2749 "pin-project-lite", 2750 "rustix", 2751 "tracing", 2752 "windows-sys 0.59.0", 2753] 2754 2755[[package]] 2756name = "potential_utf" 2757version = "0.1.2" 2758source = "registry+https://github.com/rust-lang/crates.io-index" 2759checksum = "e5a7c30837279ca13e7c867e9e40053bc68740f988cb07f7ca6df43cc734b585" 2760dependencies = [ 2761 "zerovec", 2762] 2763 2764[[package]] 2765name = "powerfmt" 2766version = "0.2.0" 2767source = "registry+https://github.com/rust-lang/crates.io-index" 2768checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" 2769 2770[[package]] 2771name = "ppv-lite86" 2772version = "0.2.21" 2773source = "registry+https://github.com/rust-lang/crates.io-index" 2774checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9" 2775dependencies = [ 2776 "zerocopy", 2777] 2778 2779[[package]] 2780name = "precomputed-hash" 2781version = "0.1.1" 2782source = "registry+https://github.com/rust-lang/crates.io-index" 2783checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c" 2784 2785[[package]] 2786name = "proc-macro-crate" 2787version = "1.3.1" 2788source = "registry+https://github.com/rust-lang/crates.io-index" 2789checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919" 2790dependencies = [ 2791 "once_cell", 2792 "toml_edit 0.19.15", 2793] 2794 2795[[package]] 2796name = "proc-macro-crate" 2797version = "2.0.0" 2798source = "registry+https://github.com/rust-lang/crates.io-index" 2799checksum = "7e8366a6159044a37876a2b9817124296703c586a5c92e2c53751fa06d8d43e8" 2800dependencies = [ 2801 "toml_edit 0.20.7", 2802] 2803 2804[[package]] 2805name = "proc-macro-crate" 2806version = "3.3.0" 2807source = "registry+https://github.com/rust-lang/crates.io-index" 2808checksum = "edce586971a4dfaa28950c6f18ed55e0406c1ab88bbce2c6f6293a7aaba73d35" 2809dependencies = [ 2810 "toml_edit 0.22.27", 2811] 2812 2813[[package]] 2814name = "proc-macro-error" 2815version = "1.0.4" 2816source = "registry+https://github.com/rust-lang/crates.io-index" 2817checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" 2818dependencies = [ 2819 "proc-macro-error-attr", 2820 "proc-macro2", 2821 "quote", 2822 "syn 1.0.109", 2823 "version_check", 2824] 2825 2826[[package]] 2827name = "proc-macro-error-attr" 2828version = "1.0.4" 2829source = "registry+https://github.com/rust-lang/crates.io-index" 2830checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" 2831dependencies = [ 2832 "proc-macro2", 2833 "quote", 2834 "version_check", 2835] 2836 2837[[package]] 2838name = "proc-macro-hack" 2839version = "0.5.20+deprecated" 2840source = "registry+https://github.com/rust-lang/crates.io-index" 2841checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068" 2842 2843[[package]] 2844name = "proc-macro2" 2845version = "1.0.95" 2846source = "registry+https://github.com/rust-lang/crates.io-index" 2847checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778" 2848dependencies = [ 2849 "unicode-ident", 2850] 2851 2852[[package]] 2853name = "quick-xml" 2854version = "0.38.0" 2855source = "registry+https://github.com/rust-lang/crates.io-index" 2856checksum = "8927b0664f5c5a98265138b7e3f90aa19a6b21353182469ace36d4ac527b7b1b" 2857dependencies = [ 2858 "memchr", 2859] 2860 2861[[package]] 2862name = "quote" 2863version = "1.0.40" 2864source = "registry+https://github.com/rust-lang/crates.io-index" 2865checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d" 2866dependencies = [ 2867 "proc-macro2", 2868] 2869 2870[[package]] 2871name = "r-efi" 2872version = "5.3.0" 2873source = "registry+https://github.com/rust-lang/crates.io-index" 2874checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" 2875 2876[[package]] 2877name = "rand" 2878version = "0.7.3" 2879source = "registry+https://github.com/rust-lang/crates.io-index" 2880checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03" 2881dependencies = [ 2882 "getrandom 0.1.16", 2883 "libc", 2884 "rand_chacha 0.2.2", 2885 "rand_core 0.5.1", 2886 "rand_hc", 2887 "rand_pcg", 2888] 2889 2890[[package]] 2891name = "rand" 2892version = "0.8.5" 2893source = "registry+https://github.com/rust-lang/crates.io-index" 2894checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 2895dependencies = [ 2896 "libc", 2897 "rand_chacha 0.3.1", 2898 "rand_core 0.6.4", 2899] 2900 2901[[package]] 2902name = "rand_chacha" 2903version = "0.2.2" 2904source = "registry+https://github.com/rust-lang/crates.io-index" 2905checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402" 2906dependencies = [ 2907 "ppv-lite86", 2908 "rand_core 0.5.1", 2909] 2910 2911[[package]] 2912name = "rand_chacha" 2913version = "0.3.1" 2914source = "registry+https://github.com/rust-lang/crates.io-index" 2915checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 2916dependencies = [ 2917 "ppv-lite86", 2918 "rand_core 0.6.4", 2919] 2920 2921[[package]] 2922name = "rand_core" 2923version = "0.5.1" 2924source = "registry+https://github.com/rust-lang/crates.io-index" 2925checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" 2926dependencies = [ 2927 "getrandom 0.1.16", 2928] 2929 2930[[package]] 2931name = "rand_core" 2932version = "0.6.4" 2933source = "registry+https://github.com/rust-lang/crates.io-index" 2934checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 2935dependencies = [ 2936 "getrandom 0.2.16", 2937] 2938 2939[[package]] 2940name = "rand_hc" 2941version = "0.2.0" 2942source = "registry+https://github.com/rust-lang/crates.io-index" 2943checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" 2944dependencies = [ 2945 "rand_core 0.5.1", 2946] 2947 2948[[package]] 2949name = "rand_pcg" 2950version = "0.2.1" 2951source = "registry+https://github.com/rust-lang/crates.io-index" 2952checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429" 2953dependencies = [ 2954 "rand_core 0.5.1", 2955] 2956 2957[[package]] 2958name = "raw-window-handle" 2959version = "0.6.2" 2960source = "registry+https://github.com/rust-lang/crates.io-index" 2961checksum = "20675572f6f24e9e76ef639bc5552774ed45f1c30e2951e1e99c59888861c539" 2962 2963[[package]] 2964name = "redox_syscall" 2965version = "0.5.13" 2966source = "registry+https://github.com/rust-lang/crates.io-index" 2967checksum = "0d04b7d0ee6b4a0207a0a7adb104d23ecb0b47d6beae7152d0fa34b692b29fd6" 2968dependencies = [ 2969 "bitflags 2.9.1", 2970] 2971 2972[[package]] 2973name = "redox_users" 2974version = "0.4.6" 2975source = "registry+https://github.com/rust-lang/crates.io-index" 2976checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43" 2977dependencies = [ 2978 "getrandom 0.2.16", 2979 "libredox", 2980 "thiserror 1.0.69", 2981] 2982 2983[[package]] 2984name = "redox_users" 2985version = "0.5.0" 2986source = "registry+https://github.com/rust-lang/crates.io-index" 2987checksum = "dd6f9d3d47bdd2ad6945c5015a226ec6155d0bcdfd8f7cd29f86b71f8de99d2b" 2988dependencies = [ 2989 "getrandom 0.2.16", 2990 "libredox", 2991 "thiserror 2.0.12", 2992] 2993 2994[[package]] 2995name = "ref-cast" 2996version = "1.0.24" 2997source = "registry+https://github.com/rust-lang/crates.io-index" 2998checksum = "4a0ae411dbe946a674d89546582cea4ba2bb8defac896622d6496f14c23ba5cf" 2999dependencies = [ 3000 "ref-cast-impl", 3001] 3002 3003[[package]] 3004name = "ref-cast-impl" 3005version = "1.0.24" 3006source = "registry+https://github.com/rust-lang/crates.io-index" 3007checksum = "1165225c21bff1f3bbce98f5a1f889949bc902d3575308cc7b0de30b4f6d27c7" 3008dependencies = [ 3009 "proc-macro2", 3010 "quote", 3011 "syn 2.0.104", 3012] 3013 3014[[package]] 3015name = "regex" 3016version = "1.11.1" 3017source = "registry+https://github.com/rust-lang/crates.io-index" 3018checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191" 3019dependencies = [ 3020 "aho-corasick", 3021 "memchr", 3022 "regex-automata", 3023 "regex-syntax", 3024] 3025 3026[[package]] 3027name = "regex-automata" 3028version = "0.4.9" 3029source = "registry+https://github.com/rust-lang/crates.io-index" 3030checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908" 3031dependencies = [ 3032 "aho-corasick", 3033 "memchr", 3034 "regex-syntax", 3035] 3036 3037[[package]] 3038name = "regex-syntax" 3039version = "0.8.5" 3040source = "registry+https://github.com/rust-lang/crates.io-index" 3041checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c" 3042 3043[[package]] 3044name = "reqwest" 3045version = "0.12.22" 3046source = "registry+https://github.com/rust-lang/crates.io-index" 3047checksum = "cbc931937e6ca3a06e3b6c0aa7841849b160a90351d6ab467a8b9b9959767531" 3048dependencies = [ 3049 "base64 0.22.1", 3050 "bytes", 3051 "futures-core", 3052 "futures-util", 3053 "http", 3054 "http-body", 3055 "http-body-util", 3056 "hyper", 3057 "hyper-util", 3058 "js-sys", 3059 "log", 3060 "percent-encoding", 3061 "pin-project-lite", 3062 "serde", 3063 "serde_json", 3064 "serde_urlencoded", 3065 "sync_wrapper", 3066 "tokio", 3067 "tokio-util", 3068 "tower", 3069 "tower-http", 3070 "tower-service", 3071 "url", 3072 "wasm-bindgen", 3073 "wasm-bindgen-futures", 3074 "wasm-streams", 3075 "web-sys", 3076] 3077 3078[[package]] 3079name = "rust-ini" 3080version = "0.21.2" 3081source = "registry+https://github.com/rust-lang/crates.io-index" 3082checksum = "e7295b7ce3bf4806b419dc3420745998b447178b7005e2011947b38fc5aa6791" 3083dependencies = [ 3084 "cfg-if", 3085 "ordered-multimap", 3086] 3087 3088[[package]] 3089name = "rustc-demangle" 3090version = "0.1.25" 3091source = "registry+https://github.com/rust-lang/crates.io-index" 3092checksum = "989e6739f80c4ad5b13e0fd7fe89531180375b18520cc8c82080e4dc4035b84f" 3093 3094[[package]] 3095name = "rustc_version" 3096version = "0.4.1" 3097source = "registry+https://github.com/rust-lang/crates.io-index" 3098checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92" 3099dependencies = [ 3100 "semver", 3101] 3102 3103[[package]] 3104name = "rustix" 3105version = "1.0.7" 3106source = "registry+https://github.com/rust-lang/crates.io-index" 3107checksum = "c71e83d6afe7ff64890ec6b71d6a69bb8a610ab78ce364b3352876bb4c801266" 3108dependencies = [ 3109 "bitflags 2.9.1", 3110 "errno", 3111 "libc", 3112 "linux-raw-sys", 3113 "windows-sys 0.59.0", 3114] 3115 3116[[package]] 3117name = "rustversion" 3118version = "1.0.21" 3119source = "registry+https://github.com/rust-lang/crates.io-index" 3120checksum = "8a0d197bd2c9dc6e53b84da9556a69ba4cdfab8619eb41a8bd1cc2027a0f6b1d" 3121 3122[[package]] 3123name = "ryu" 3124version = "1.0.20" 3125source = "registry+https://github.com/rust-lang/crates.io-index" 3126checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f" 3127 3128[[package]] 3129name = "same-file" 3130version = "1.0.6" 3131source = "registry+https://github.com/rust-lang/crates.io-index" 3132checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 3133dependencies = [ 3134 "winapi-util", 3135] 3136 3137[[package]] 3138name = "schemars" 3139version = "0.8.22" 3140source = "registry+https://github.com/rust-lang/crates.io-index" 3141checksum = "3fbf2ae1b8bc8e02df939598064d22402220cd5bbcca1c76f7d6a310974d5615" 3142dependencies = [ 3143 "dyn-clone", 3144 "indexmap 1.9.3", 3145 "schemars_derive", 3146 "serde", 3147 "serde_json", 3148 "url", 3149 "uuid", 3150] 3151 3152[[package]] 3153name = "schemars" 3154version = "0.9.0" 3155source = "registry+https://github.com/rust-lang/crates.io-index" 3156checksum = "4cd191f9397d57d581cddd31014772520aa448f65ef991055d7f61582c65165f" 3157dependencies = [ 3158 "dyn-clone", 3159 "ref-cast", 3160 "serde", 3161 "serde_json", 3162] 3163 3164[[package]] 3165name = "schemars" 3166version = "1.0.4" 3167source = "registry+https://github.com/rust-lang/crates.io-index" 3168checksum = "82d20c4491bc164fa2f6c5d44565947a52ad80b9505d8e36f8d54c27c739fcd0" 3169dependencies = [ 3170 "dyn-clone", 3171 "ref-cast", 3172 "serde", 3173 "serde_json", 3174] 3175 3176[[package]] 3177name = "schemars_derive" 3178version = "0.8.22" 3179source = "registry+https://github.com/rust-lang/crates.io-index" 3180checksum = "32e265784ad618884abaea0600a9adf15393368d840e0222d101a072f3f7534d" 3181dependencies = [ 3182 "proc-macro2", 3183 "quote", 3184 "serde_derive_internals", 3185 "syn 2.0.104", 3186] 3187 3188[[package]] 3189name = "scopeguard" 3190version = "1.2.0" 3191source = "registry+https://github.com/rust-lang/crates.io-index" 3192checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 3193 3194[[package]] 3195name = "selectors" 3196version = "0.24.0" 3197source = "registry+https://github.com/rust-lang/crates.io-index" 3198checksum = "0c37578180969d00692904465fb7f6b3d50b9a2b952b87c23d0e2e5cb5013416" 3199dependencies = [ 3200 "bitflags 1.3.2", 3201 "cssparser", 3202 "derive_more", 3203 "fxhash", 3204 "log", 3205 "phf 0.8.0", 3206 "phf_codegen 0.8.0", 3207 "precomputed-hash", 3208 "servo_arc", 3209 "smallvec", 3210] 3211 3212[[package]] 3213name = "semver" 3214version = "1.0.26" 3215source = "registry+https://github.com/rust-lang/crates.io-index" 3216checksum = "56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0" 3217dependencies = [ 3218 "serde", 3219] 3220 3221[[package]] 3222name = "serde" 3223version = "1.0.219" 3224source = "registry+https://github.com/rust-lang/crates.io-index" 3225checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6" 3226dependencies = [ 3227 "serde_derive", 3228] 3229 3230[[package]] 3231name = "serde-untagged" 3232version = "0.1.7" 3233source = "registry+https://github.com/rust-lang/crates.io-index" 3234checksum = "299d9c19d7d466db4ab10addd5703e4c615dec2a5a16dbbafe191045e87ee66e" 3235dependencies = [ 3236 "erased-serde", 3237 "serde", 3238 "typeid", 3239] 3240 3241[[package]] 3242name = "serde_derive" 3243version = "1.0.219" 3244source = "registry+https://github.com/rust-lang/crates.io-index" 3245checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00" 3246dependencies = [ 3247 "proc-macro2", 3248 "quote", 3249 "syn 2.0.104", 3250] 3251 3252[[package]] 3253name = "serde_derive_internals" 3254version = "0.29.1" 3255source = "registry+https://github.com/rust-lang/crates.io-index" 3256checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711" 3257dependencies = [ 3258 "proc-macro2", 3259 "quote", 3260 "syn 2.0.104", 3261] 3262 3263[[package]] 3264name = "serde_json" 3265version = "1.0.140" 3266source = "registry+https://github.com/rust-lang/crates.io-index" 3267checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373" 3268dependencies = [ 3269 "itoa", 3270 "memchr", 3271 "ryu", 3272 "serde", 3273] 3274 3275[[package]] 3276name = "serde_repr" 3277version = "0.1.20" 3278source = "registry+https://github.com/rust-lang/crates.io-index" 3279checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c" 3280dependencies = [ 3281 "proc-macro2", 3282 "quote", 3283 "syn 2.0.104", 3284] 3285 3286[[package]] 3287name = "serde_spanned" 3288version = "0.6.9" 3289source = "registry+https://github.com/rust-lang/crates.io-index" 3290checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3" 3291dependencies = [ 3292 "serde", 3293] 3294 3295[[package]] 3296name = "serde_spanned" 3297version = "1.0.0" 3298source = "registry+https://github.com/rust-lang/crates.io-index" 3299checksum = "40734c41988f7306bb04f0ecf60ec0f3f1caa34290e4e8ea471dcd3346483b83" 3300dependencies = [ 3301 "serde", 3302] 3303 3304[[package]] 3305name = "serde_urlencoded" 3306version = "0.7.1" 3307source = "registry+https://github.com/rust-lang/crates.io-index" 3308checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 3309dependencies = [ 3310 "form_urlencoded", 3311 "itoa", 3312 "ryu", 3313 "serde", 3314] 3315 3316[[package]] 3317name = "serde_with" 3318version = "3.14.0" 3319source = "registry+https://github.com/rust-lang/crates.io-index" 3320checksum = "f2c45cd61fefa9db6f254525d46e392b852e0e61d9a1fd36e5bd183450a556d5" 3321dependencies = [ 3322 "base64 0.22.1", 3323 "chrono", 3324 "hex", 3325 "indexmap 1.9.3", 3326 "indexmap 2.10.0", 3327 "schemars 0.9.0", 3328 "schemars 1.0.4", 3329 "serde", 3330 "serde_derive", 3331 "serde_json", 3332 "serde_with_macros", 3333 "time", 3334] 3335 3336[[package]] 3337name = "serde_with_macros" 3338version = "3.14.0" 3339source = "registry+https://github.com/rust-lang/crates.io-index" 3340checksum = "de90945e6565ce0d9a25098082ed4ee4002e047cb59892c318d66821e14bb30f" 3341dependencies = [ 3342 "darling", 3343 "proc-macro2", 3344 "quote", 3345 "syn 2.0.104", 3346] 3347 3348[[package]] 3349name = "serialize-to-javascript" 3350version = "0.1.1" 3351source = "registry+https://github.com/rust-lang/crates.io-index" 3352checksum = "c9823f2d3b6a81d98228151fdeaf848206a7855a7a042bbf9bf870449a66cafb" 3353dependencies = [ 3354 "serde", 3355 "serde_json", 3356 "serialize-to-javascript-impl", 3357] 3358 3359[[package]] 3360name = "serialize-to-javascript-impl" 3361version = "0.1.1" 3362source = "registry+https://github.com/rust-lang/crates.io-index" 3363checksum = "74064874e9f6a15f04c1f3cb627902d0e6b410abbf36668afa873c61889f1763" 3364dependencies = [ 3365 "proc-macro2", 3366 "quote", 3367 "syn 1.0.109", 3368] 3369 3370[[package]] 3371name = "servo_arc" 3372version = "0.2.0" 3373source = "registry+https://github.com/rust-lang/crates.io-index" 3374checksum = "d52aa42f8fdf0fed91e5ce7f23d8138441002fa31dca008acf47e6fd4721f741" 3375dependencies = [ 3376 "nodrop", 3377 "stable_deref_trait", 3378] 3379 3380[[package]] 3381name = "sha2" 3382version = "0.10.9" 3383source = "registry+https://github.com/rust-lang/crates.io-index" 3384checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283" 3385dependencies = [ 3386 "cfg-if", 3387 "cpufeatures", 3388 "digest", 3389] 3390 3391[[package]] 3392name = "shlex" 3393version = "1.3.0" 3394source = "registry+https://github.com/rust-lang/crates.io-index" 3395checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" 3396 3397[[package]] 3398name = "signal-hook-registry" 3399version = "1.4.5" 3400source = "registry+https://github.com/rust-lang/crates.io-index" 3401checksum = "9203b8055f63a2a00e2f593bb0510367fe707d7ff1e5c872de2f537b339e5410" 3402dependencies = [ 3403 "libc", 3404] 3405 3406[[package]] 3407name = "simd-adler32" 3408version = "0.3.7" 3409source = "registry+https://github.com/rust-lang/crates.io-index" 3410checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe" 3411 3412[[package]] 3413name = "siphasher" 3414version = "0.3.11" 3415source = "registry+https://github.com/rust-lang/crates.io-index" 3416checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d" 3417 3418[[package]] 3419name = "siphasher" 3420version = "1.0.1" 3421source = "registry+https://github.com/rust-lang/crates.io-index" 3422checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d" 3423 3424[[package]] 3425name = "slab" 3426version = "0.4.10" 3427source = "registry+https://github.com/rust-lang/crates.io-index" 3428checksum = "04dc19736151f35336d325007ac991178d504a119863a2fcb3758cdb5e52c50d" 3429 3430[[package]] 3431name = "smallvec" 3432version = "1.15.1" 3433source = "registry+https://github.com/rust-lang/crates.io-index" 3434checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" 3435 3436[[package]] 3437name = "socket2" 3438version = "0.5.10" 3439source = "registry+https://github.com/rust-lang/crates.io-index" 3440checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678" 3441dependencies = [ 3442 "libc", 3443 "windows-sys 0.52.0", 3444] 3445 3446[[package]] 3447name = "softbuffer" 3448version = "0.4.6" 3449source = "registry+https://github.com/rust-lang/crates.io-index" 3450checksum = "18051cdd562e792cad055119e0cdb2cfc137e44e3987532e0f9659a77931bb08" 3451dependencies = [ 3452 "bytemuck", 3453 "cfg_aliases", 3454 "core-graphics", 3455 "foreign-types", 3456 "js-sys", 3457 "log", 3458 "objc2 0.5.2", 3459 "objc2-foundation 0.2.2", 3460 "objc2-quartz-core 0.2.2", 3461 "raw-window-handle", 3462 "redox_syscall", 3463 "wasm-bindgen", 3464 "web-sys", 3465 "windows-sys 0.59.0", 3466] 3467 3468[[package]] 3469name = "soup3" 3470version = "0.5.0" 3471source = "registry+https://github.com/rust-lang/crates.io-index" 3472checksum = "471f924a40f31251afc77450e781cb26d55c0b650842efafc9c6cbd2f7cc4f9f" 3473dependencies = [ 3474 "futures-channel", 3475 "gio", 3476 "glib", 3477 "libc", 3478 "soup3-sys", 3479] 3480 3481[[package]] 3482name = "soup3-sys" 3483version = "0.5.0" 3484source = "registry+https://github.com/rust-lang/crates.io-index" 3485checksum = "7ebe8950a680a12f24f15ebe1bf70db7af98ad242d9db43596ad3108aab86c27" 3486dependencies = [ 3487 "gio-sys", 3488 "glib-sys", 3489 "gobject-sys", 3490 "libc", 3491 "system-deps", 3492] 3493 3494[[package]] 3495name = "stable_deref_trait" 3496version = "1.2.0" 3497source = "registry+https://github.com/rust-lang/crates.io-index" 3498checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" 3499 3500[[package]] 3501name = "static_assertions" 3502version = "1.1.0" 3503source = "registry+https://github.com/rust-lang/crates.io-index" 3504checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" 3505 3506[[package]] 3507name = "string_cache" 3508version = "0.8.9" 3509source = "registry+https://github.com/rust-lang/crates.io-index" 3510checksum = "bf776ba3fa74f83bf4b63c3dcbbf82173db2632ed8452cb2d891d33f459de70f" 3511dependencies = [ 3512 "new_debug_unreachable", 3513 "parking_lot", 3514 "phf_shared 0.11.3", 3515 "precomputed-hash", 3516 "serde", 3517] 3518 3519[[package]] 3520name = "string_cache_codegen" 3521version = "0.5.4" 3522source = "registry+https://github.com/rust-lang/crates.io-index" 3523checksum = "c711928715f1fe0fe509c53b43e993a9a557babc2d0a3567d0a3006f1ac931a0" 3524dependencies = [ 3525 "phf_generator 0.11.3", 3526 "phf_shared 0.11.3", 3527 "proc-macro2", 3528 "quote", 3529] 3530 3531[[package]] 3532name = "strsim" 3533version = "0.11.1" 3534source = "registry+https://github.com/rust-lang/crates.io-index" 3535checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" 3536 3537[[package]] 3538name = "swift-rs" 3539version = "1.0.7" 3540source = "registry+https://github.com/rust-lang/crates.io-index" 3541checksum = "4057c98e2e852d51fdcfca832aac7b571f6b351ad159f9eda5db1655f8d0c4d7" 3542dependencies = [ 3543 "base64 0.21.7", 3544 "serde", 3545 "serde_json", 3546] 3547 3548[[package]] 3549name = "syn" 3550version = "1.0.109" 3551source = "registry+https://github.com/rust-lang/crates.io-index" 3552checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 3553dependencies = [ 3554 "proc-macro2", 3555 "quote", 3556 "unicode-ident", 3557] 3558 3559[[package]] 3560name = "syn" 3561version = "2.0.104" 3562source = "registry+https://github.com/rust-lang/crates.io-index" 3563checksum = "17b6f705963418cdb9927482fa304bc562ece2fdd4f616084c50b7023b435a40" 3564dependencies = [ 3565 "proc-macro2", 3566 "quote", 3567 "unicode-ident", 3568] 3569 3570[[package]] 3571name = "sync_wrapper" 3572version = "1.0.2" 3573source = "registry+https://github.com/rust-lang/crates.io-index" 3574checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" 3575dependencies = [ 3576 "futures-core", 3577] 3578 3579[[package]] 3580name = "synstructure" 3581version = "0.13.2" 3582source = "registry+https://github.com/rust-lang/crates.io-index" 3583checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2" 3584dependencies = [ 3585 "proc-macro2", 3586 "quote", 3587 "syn 2.0.104", 3588] 3589 3590[[package]] 3591name = "system-deps" 3592version = "6.2.2" 3593source = "registry+https://github.com/rust-lang/crates.io-index" 3594checksum = "a3e535eb8dded36d55ec13eddacd30dec501792ff23a0b1682c38601b8cf2349" 3595dependencies = [ 3596 "cfg-expr", 3597 "heck 0.5.0", 3598 "pkg-config", 3599 "toml 0.8.23", 3600 "version-compare", 3601] 3602 3603[[package]] 3604name = "tao" 3605version = "0.34.0" 3606source = "registry+https://github.com/rust-lang/crates.io-index" 3607checksum = "49c380ca75a231b87b6c9dd86948f035012e7171d1a7c40a9c2890489a7ffd8a" 3608dependencies = [ 3609 "bitflags 2.9.1", 3610 "core-foundation", 3611 "core-graphics", 3612 "crossbeam-channel", 3613 "dispatch", 3614 "dlopen2", 3615 "dpi", 3616 "gdkwayland-sys", 3617 "gdkx11-sys", 3618 "gtk", 3619 "jni", 3620 "lazy_static", 3621 "libc", 3622 "log", 3623 "ndk", 3624 "ndk-context", 3625 "ndk-sys", 3626 "objc2 0.6.1", 3627 "objc2-app-kit", 3628 "objc2-foundation 0.3.1", 3629 "once_cell", 3630 "parking_lot", 3631 "raw-window-handle", 3632 "scopeguard", 3633 "tao-macros", 3634 "unicode-segmentation", 3635 "url", 3636 "windows", 3637 "windows-core", 3638 "windows-version", 3639 "x11-dl", 3640] 3641 3642[[package]] 3643name = "tao-macros" 3644version = "0.1.3" 3645source = "registry+https://github.com/rust-lang/crates.io-index" 3646checksum = "f4e16beb8b2ac17db28eab8bca40e62dbfbb34c0fcdc6d9826b11b7b5d047dfd" 3647dependencies = [ 3648 "proc-macro2", 3649 "quote", 3650 "syn 2.0.104", 3651] 3652 3653[[package]] 3654name = "target-lexicon" 3655version = "0.12.16" 3656source = "registry+https://github.com/rust-lang/crates.io-index" 3657checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1" 3658 3659[[package]] 3660name = "tauri" 3661version = "2.6.2" 3662source = "registry+https://github.com/rust-lang/crates.io-index" 3663checksum = "124e129c9c0faa6bec792c5948c89e86c90094133b0b9044df0ce5f0a8efaa0d" 3664dependencies = [ 3665 "anyhow", 3666 "bytes", 3667 "dirs 6.0.0", 3668 "dunce", 3669 "embed_plist", 3670 "getrandom 0.3.3", 3671 "glob", 3672 "gtk", 3673 "heck 0.5.0", 3674 "http", 3675 "jni", 3676 "libc", 3677 "log", 3678 "mime", 3679 "muda", 3680 "objc2 0.6.1", 3681 "objc2-app-kit", 3682 "objc2-foundation 0.3.1", 3683 "objc2-ui-kit", 3684 "percent-encoding", 3685 "plist", 3686 "raw-window-handle", 3687 "reqwest", 3688 "serde", 3689 "serde_json", 3690 "serde_repr", 3691 "serialize-to-javascript", 3692 "swift-rs", 3693 "tauri-build", 3694 "tauri-macros", 3695 "tauri-runtime", 3696 "tauri-runtime-wry", 3697 "tauri-utils", 3698 "thiserror 2.0.12", 3699 "tokio", 3700 "tray-icon", 3701 "url", 3702 "urlpattern", 3703 "webkit2gtk", 3704 "webview2-com", 3705 "window-vibrancy", 3706 "windows", 3707] 3708 3709[[package]] 3710name = "tauri-build" 3711version = "2.3.0" 3712source = "registry+https://github.com/rust-lang/crates.io-index" 3713checksum = "12f025c389d3adb83114bec704da973142e82fc6ec799c7c750c5e21cefaec83" 3714dependencies = [ 3715 "anyhow", 3716 "cargo_toml", 3717 "dirs 6.0.0", 3718 "glob", 3719 "heck 0.5.0", 3720 "json-patch", 3721 "schemars 0.8.22", 3722 "semver", 3723 "serde", 3724 "serde_json", 3725 "tauri-utils", 3726 "tauri-winres", 3727 "toml 0.8.23", 3728 "walkdir", 3729] 3730 3731[[package]] 3732name = "tauri-codegen" 3733version = "2.3.0" 3734source = "registry+https://github.com/rust-lang/crates.io-index" 3735checksum = "f5df493a1075a241065bc865ed5ef8d0fbc1e76c7afdc0bf0eccfaa7d4f0e406" 3736dependencies = [ 3737 "base64 0.22.1", 3738 "brotli", 3739 "ico", 3740 "json-patch", 3741 "plist", 3742 "png", 3743 "proc-macro2", 3744 "quote", 3745 "semver", 3746 "serde", 3747 "serde_json", 3748 "sha2", 3749 "syn 2.0.104", 3750 "tauri-utils", 3751 "thiserror 2.0.12", 3752 "time", 3753 "url", 3754 "uuid", 3755 "walkdir", 3756] 3757 3758[[package]] 3759name = "tauri-macros" 3760version = "2.3.1" 3761source = "registry+https://github.com/rust-lang/crates.io-index" 3762checksum = "f237fbea5866fa5f2a60a21bea807a2d6e0379db070d89c3a10ac0f2d4649bbc" 3763dependencies = [ 3764 "heck 0.5.0", 3765 "proc-macro2", 3766 "quote", 3767 "syn 2.0.104", 3768 "tauri-codegen", 3769 "tauri-utils", 3770] 3771 3772[[package]] 3773name = "tauri-plugin" 3774version = "2.3.0" 3775source = "registry+https://github.com/rust-lang/crates.io-index" 3776checksum = "1d9a0bd00bf1930ad1a604d08b0eb6b2a9c1822686d65d7f4731a7723b8901d3" 3777dependencies = [ 3778 "anyhow", 3779 "glob", 3780 "plist", 3781 "schemars 0.8.22", 3782 "serde", 3783 "serde_json", 3784 "tauri-utils", 3785 "toml 0.8.23", 3786 "walkdir", 3787] 3788 3789[[package]] 3790name = "tauri-plugin-autostart" 3791version = "2.5.0" 3792source = "registry+https://github.com/rust-lang/crates.io-index" 3793checksum = "062cdcd483d5e3148c9a64dabf8c574e239e2aa1193cf208d95cf89a676f87a5" 3794dependencies = [ 3795 "auto-launch", 3796 "serde", 3797 "serde_json", 3798 "tauri", 3799 "tauri-plugin", 3800 "thiserror 2.0.12", 3801] 3802 3803[[package]] 3804name = "tauri-plugin-deep-link" 3805version = "2.4.0" 3806source = "registry+https://github.com/rust-lang/crates.io-index" 3807checksum = "ab261eb006db10ab478e3fbb5a4e2692df3f7eb3e28300ee2b64428979167ed0" 3808dependencies = [ 3809 "dunce", 3810 "rust-ini", 3811 "serde", 3812 "serde_json", 3813 "tauri", 3814 "tauri-plugin", 3815 "tauri-utils", 3816 "thiserror 2.0.12", 3817 "tracing", 3818 "url", 3819 "windows-registry", 3820 "windows-result", 3821] 3822 3823[[package]] 3824name = "tauri-plugin-fs" 3825version = "2.4.0" 3826source = "registry+https://github.com/rust-lang/crates.io-index" 3827checksum = "c341290d31991dbca38b31d412c73dfbdb070bb11536784f19dd2211d13b778f" 3828dependencies = [ 3829 "anyhow", 3830 "dunce", 3831 "glob", 3832 "percent-encoding", 3833 "schemars 0.8.22", 3834 "serde", 3835 "serde_json", 3836 "serde_repr", 3837 "tauri", 3838 "tauri-plugin", 3839 "tauri-utils", 3840 "thiserror 2.0.12", 3841 "toml 0.8.23", 3842 "url", 3843] 3844 3845[[package]] 3846name = "tauri-plugin-opener" 3847version = "2.4.0" 3848source = "registry+https://github.com/rust-lang/crates.io-index" 3849checksum = "ecee219f11cdac713ab32959db5d0cceec4810ba4f4458da992292ecf9660321" 3850dependencies = [ 3851 "dunce", 3852 "glob", 3853 "objc2-app-kit", 3854 "objc2-foundation 0.3.1", 3855 "open", 3856 "schemars 0.8.22", 3857 "serde", 3858 "serde_json", 3859 "tauri", 3860 "tauri-plugin", 3861 "thiserror 2.0.12", 3862 "url", 3863 "windows", 3864 "zbus", 3865] 3866 3867[[package]] 3868name = "tauri-plugin-single-instance" 3869version = "2.3.0" 3870source = "registry+https://github.com/rust-lang/crates.io-index" 3871checksum = "b441b6d5d1a194e9fee0b358fe0d602ded845d0f580e1f8c8ef78ebc3c8b225d" 3872dependencies = [ 3873 "serde", 3874 "serde_json", 3875 "tauri", 3876 "tauri-plugin-deep-link", 3877 "thiserror 2.0.12", 3878 "tracing", 3879 "windows-sys 0.60.2", 3880 "zbus", 3881] 3882 3883[[package]] 3884name = "tauri-plugin-store" 3885version = "2.3.0" 3886source = "registry+https://github.com/rust-lang/crates.io-index" 3887checksum = "5916c609664a56c82aeaefffca9851fd072d4d41f73d63f22ee3ee451508194f" 3888dependencies = [ 3889 "dunce", 3890 "serde", 3891 "serde_json", 3892 "tauri", 3893 "tauri-plugin", 3894 "thiserror 2.0.12", 3895 "tokio", 3896 "tracing", 3897] 3898 3899[[package]] 3900name = "tauri-runtime" 3901version = "2.7.0" 3902source = "registry+https://github.com/rust-lang/crates.io-index" 3903checksum = "9e7bb73d1bceac06c20b3f755b2c8a2cb13b20b50083084a8cf3700daf397ba4" 3904dependencies = [ 3905 "cookie", 3906 "dpi", 3907 "gtk", 3908 "http", 3909 "jni", 3910 "objc2 0.6.1", 3911 "objc2-ui-kit", 3912 "raw-window-handle", 3913 "serde", 3914 "serde_json", 3915 "tauri-utils", 3916 "thiserror 2.0.12", 3917 "url", 3918 "windows", 3919] 3920 3921[[package]] 3922name = "tauri-runtime-wry" 3923version = "2.7.1" 3924source = "registry+https://github.com/rust-lang/crates.io-index" 3925checksum = "902b5aa9035e16f342eb64f8bf06ccdc2808e411a2525ed1d07672fa4e780bad" 3926dependencies = [ 3927 "gtk", 3928 "http", 3929 "jni", 3930 "log", 3931 "objc2 0.6.1", 3932 "objc2-app-kit", 3933 "objc2-foundation 0.3.1", 3934 "once_cell", 3935 "percent-encoding", 3936 "raw-window-handle", 3937 "softbuffer", 3938 "tao", 3939 "tauri-runtime", 3940 "tauri-utils", 3941 "url", 3942 "webkit2gtk", 3943 "webview2-com", 3944 "windows", 3945 "wry", 3946] 3947 3948[[package]] 3949name = "tauri-utils" 3950version = "2.5.0" 3951source = "registry+https://github.com/rust-lang/crates.io-index" 3952checksum = "41743bbbeb96c3a100d234e5a0b60a46d5aa068f266160862c7afdbf828ca02e" 3953dependencies = [ 3954 "anyhow", 3955 "brotli", 3956 "cargo_metadata", 3957 "ctor", 3958 "dunce", 3959 "glob", 3960 "html5ever", 3961 "http", 3962 "infer", 3963 "json-patch", 3964 "kuchikiki", 3965 "log", 3966 "memchr", 3967 "phf 0.11.3", 3968 "proc-macro2", 3969 "quote", 3970 "regex", 3971 "schemars 0.8.22", 3972 "semver", 3973 "serde", 3974 "serde-untagged", 3975 "serde_json", 3976 "serde_with", 3977 "swift-rs", 3978 "thiserror 2.0.12", 3979 "toml 0.8.23", 3980 "url", 3981 "urlpattern", 3982 "uuid", 3983 "walkdir", 3984] 3985 3986[[package]] 3987name = "tauri-winres" 3988version = "0.3.1" 3989source = "registry+https://github.com/rust-lang/crates.io-index" 3990checksum = "e8d321dbc6f998d825ab3f0d62673e810c861aac2d0de2cc2c395328f1d113b4" 3991dependencies = [ 3992 "embed-resource", 3993 "indexmap 2.10.0", 3994 "toml 0.8.23", 3995] 3996 3997[[package]] 3998name = "tempfile" 3999version = "3.20.0" 4000source = "registry+https://github.com/rust-lang/crates.io-index" 4001checksum = "e8a64e3985349f2441a1a9ef0b853f869006c3855f2cda6862a94d26ebb9d6a1" 4002dependencies = [ 4003 "fastrand", 4004 "getrandom 0.3.3", 4005 "once_cell", 4006 "rustix", 4007 "windows-sys 0.59.0", 4008] 4009 4010[[package]] 4011name = "tendril" 4012version = "0.4.3" 4013source = "registry+https://github.com/rust-lang/crates.io-index" 4014checksum = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0" 4015dependencies = [ 4016 "futf", 4017 "mac", 4018 "utf-8", 4019] 4020 4021[[package]] 4022name = "thiserror" 4023version = "1.0.69" 4024source = "registry+https://github.com/rust-lang/crates.io-index" 4025checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" 4026dependencies = [ 4027 "thiserror-impl 1.0.69", 4028] 4029 4030[[package]] 4031name = "thiserror" 4032version = "2.0.12" 4033source = "registry+https://github.com/rust-lang/crates.io-index" 4034checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708" 4035dependencies = [ 4036 "thiserror-impl 2.0.12", 4037] 4038 4039[[package]] 4040name = "thiserror-impl" 4041version = "1.0.69" 4042source = "registry+https://github.com/rust-lang/crates.io-index" 4043checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" 4044dependencies = [ 4045 "proc-macro2", 4046 "quote", 4047 "syn 2.0.104", 4048] 4049 4050[[package]] 4051name = "thiserror-impl" 4052version = "2.0.12" 4053source = "registry+https://github.com/rust-lang/crates.io-index" 4054checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d" 4055dependencies = [ 4056 "proc-macro2", 4057 "quote", 4058 "syn 2.0.104", 4059] 4060 4061[[package]] 4062name = "time" 4063version = "0.3.41" 4064source = "registry+https://github.com/rust-lang/crates.io-index" 4065checksum = "8a7619e19bc266e0f9c5e6686659d394bc57973859340060a69221e57dbc0c40" 4066dependencies = [ 4067 "deranged", 4068 "itoa", 4069 "num-conv", 4070 "powerfmt", 4071 "serde", 4072 "time-core", 4073 "time-macros", 4074] 4075 4076[[package]] 4077name = "time-core" 4078version = "0.1.4" 4079source = "registry+https://github.com/rust-lang/crates.io-index" 4080checksum = "c9e9a38711f559d9e3ce1cdb06dd7c5b8ea546bc90052da6d06bb76da74bb07c" 4081 4082[[package]] 4083name = "time-macros" 4084version = "0.2.22" 4085source = "registry+https://github.com/rust-lang/crates.io-index" 4086checksum = "3526739392ec93fd8b359c8e98514cb3e8e021beb4e5f597b00a0221f8ed8a49" 4087dependencies = [ 4088 "num-conv", 4089 "time-core", 4090] 4091 4092[[package]] 4093name = "tiny-keccak" 4094version = "2.0.2" 4095source = "registry+https://github.com/rust-lang/crates.io-index" 4096checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237" 4097dependencies = [ 4098 "crunchy", 4099] 4100 4101[[package]] 4102name = "tinystr" 4103version = "0.8.1" 4104source = "registry+https://github.com/rust-lang/crates.io-index" 4105checksum = "5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b" 4106dependencies = [ 4107 "displaydoc", 4108 "zerovec", 4109] 4110 4111[[package]] 4112name = "tokio" 4113version = "1.46.1" 4114source = "registry+https://github.com/rust-lang/crates.io-index" 4115checksum = "0cc3a2344dafbe23a245241fe8b09735b521110d30fcefbbd5feb1797ca35d17" 4116dependencies = [ 4117 "backtrace", 4118 "bytes", 4119 "io-uring", 4120 "libc", 4121 "mio", 4122 "pin-project-lite", 4123 "slab", 4124 "socket2", 4125 "tokio-macros", 4126 "windows-sys 0.52.0", 4127] 4128 4129[[package]] 4130name = "tokio-macros" 4131version = "2.5.0" 4132source = "registry+https://github.com/rust-lang/crates.io-index" 4133checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8" 4134dependencies = [ 4135 "proc-macro2", 4136 "quote", 4137 "syn 2.0.104", 4138] 4139 4140[[package]] 4141name = "tokio-util" 4142version = "0.7.15" 4143source = "registry+https://github.com/rust-lang/crates.io-index" 4144checksum = "66a539a9ad6d5d281510d5bd368c973d636c02dbf8a67300bfb6b950696ad7df" 4145dependencies = [ 4146 "bytes", 4147 "futures-core", 4148 "futures-sink", 4149 "pin-project-lite", 4150 "tokio", 4151] 4152 4153[[package]] 4154name = "toml" 4155version = "0.8.23" 4156source = "registry+https://github.com/rust-lang/crates.io-index" 4157checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362" 4158dependencies = [ 4159 "serde", 4160 "serde_spanned 0.6.9", 4161 "toml_datetime 0.6.11", 4162 "toml_edit 0.22.27", 4163] 4164 4165[[package]] 4166name = "toml" 4167version = "0.9.2" 4168source = "registry+https://github.com/rust-lang/crates.io-index" 4169checksum = "ed0aee96c12fa71097902e0bb061a5e1ebd766a6636bb605ba401c45c1650eac" 4170dependencies = [ 4171 "indexmap 2.10.0", 4172 "serde", 4173 "serde_spanned 1.0.0", 4174 "toml_datetime 0.7.0", 4175 "toml_parser", 4176 "toml_writer", 4177 "winnow 0.7.12", 4178] 4179 4180[[package]] 4181name = "toml_datetime" 4182version = "0.6.11" 4183source = "registry+https://github.com/rust-lang/crates.io-index" 4184checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c" 4185dependencies = [ 4186 "serde", 4187] 4188 4189[[package]] 4190name = "toml_datetime" 4191version = "0.7.0" 4192source = "registry+https://github.com/rust-lang/crates.io-index" 4193checksum = "bade1c3e902f58d73d3f294cd7f20391c1cb2fbcb643b73566bc773971df91e3" 4194dependencies = [ 4195 "serde", 4196] 4197 4198[[package]] 4199name = "toml_edit" 4200version = "0.19.15" 4201source = "registry+https://github.com/rust-lang/crates.io-index" 4202checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421" 4203dependencies = [ 4204 "indexmap 2.10.0", 4205 "toml_datetime 0.6.11", 4206 "winnow 0.5.40", 4207] 4208 4209[[package]] 4210name = "toml_edit" 4211version = "0.20.7" 4212source = "registry+https://github.com/rust-lang/crates.io-index" 4213checksum = "70f427fce4d84c72b5b732388bf4a9f4531b53f74e2887e3ecb2481f68f66d81" 4214dependencies = [ 4215 "indexmap 2.10.0", 4216 "toml_datetime 0.6.11", 4217 "winnow 0.5.40", 4218] 4219 4220[[package]] 4221name = "toml_edit" 4222version = "0.22.27" 4223source = "registry+https://github.com/rust-lang/crates.io-index" 4224checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a" 4225dependencies = [ 4226 "indexmap 2.10.0", 4227 "serde", 4228 "serde_spanned 0.6.9", 4229 "toml_datetime 0.6.11", 4230 "toml_write", 4231 "winnow 0.7.12", 4232] 4233 4234[[package]] 4235name = "toml_parser" 4236version = "1.0.1" 4237source = "registry+https://github.com/rust-lang/crates.io-index" 4238checksum = "97200572db069e74c512a14117b296ba0a80a30123fbbb5aa1f4a348f639ca30" 4239dependencies = [ 4240 "winnow 0.7.12", 4241] 4242 4243[[package]] 4244name = "toml_write" 4245version = "0.1.2" 4246source = "registry+https://github.com/rust-lang/crates.io-index" 4247checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801" 4248 4249[[package]] 4250name = "toml_writer" 4251version = "1.0.2" 4252source = "registry+https://github.com/rust-lang/crates.io-index" 4253checksum = "fcc842091f2def52017664b53082ecbbeb5c7731092bad69d2c63050401dfd64" 4254 4255[[package]] 4256name = "tower" 4257version = "0.5.2" 4258source = "registry+https://github.com/rust-lang/crates.io-index" 4259checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9" 4260dependencies = [ 4261 "futures-core", 4262 "futures-util", 4263 "pin-project-lite", 4264 "sync_wrapper", 4265 "tokio", 4266 "tower-layer", 4267 "tower-service", 4268] 4269 4270[[package]] 4271name = "tower-http" 4272version = "0.6.6" 4273source = "registry+https://github.com/rust-lang/crates.io-index" 4274checksum = "adc82fd73de2a9722ac5da747f12383d2bfdb93591ee6c58486e0097890f05f2" 4275dependencies = [ 4276 "bitflags 2.9.1", 4277 "bytes", 4278 "futures-util", 4279 "http", 4280 "http-body", 4281 "iri-string", 4282 "pin-project-lite", 4283 "tower", 4284 "tower-layer", 4285 "tower-service", 4286] 4287 4288[[package]] 4289name = "tower-layer" 4290version = "0.3.3" 4291source = "registry+https://github.com/rust-lang/crates.io-index" 4292checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e" 4293 4294[[package]] 4295name = "tower-service" 4296version = "0.3.3" 4297source = "registry+https://github.com/rust-lang/crates.io-index" 4298checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" 4299 4300[[package]] 4301name = "tracing" 4302version = "0.1.41" 4303source = "registry+https://github.com/rust-lang/crates.io-index" 4304checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0" 4305dependencies = [ 4306 "pin-project-lite", 4307 "tracing-attributes", 4308 "tracing-core", 4309] 4310 4311[[package]] 4312name = "tracing-attributes" 4313version = "0.1.30" 4314source = "registry+https://github.com/rust-lang/crates.io-index" 4315checksum = "81383ab64e72a7a8b8e13130c49e3dab29def6d0c7d76a03087b3cf71c5c6903" 4316dependencies = [ 4317 "proc-macro2", 4318 "quote", 4319 "syn 2.0.104", 4320] 4321 4322[[package]] 4323name = "tracing-core" 4324version = "0.1.34" 4325source = "registry+https://github.com/rust-lang/crates.io-index" 4326checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678" 4327dependencies = [ 4328 "once_cell", 4329] 4330 4331[[package]] 4332name = "tray-icon" 4333version = "0.21.0" 4334source = "registry+https://github.com/rust-lang/crates.io-index" 4335checksum = "2da75ec677957aa21f6e0b361df0daab972f13a5bee3606de0638fd4ee1c666a" 4336dependencies = [ 4337 "crossbeam-channel", 4338 "dirs 6.0.0", 4339 "libappindicator", 4340 "muda", 4341 "objc2 0.6.1", 4342 "objc2-app-kit", 4343 "objc2-core-foundation", 4344 "objc2-core-graphics", 4345 "objc2-foundation 0.3.1", 4346 "once_cell", 4347 "png", 4348 "serde", 4349 "thiserror 2.0.12", 4350 "windows-sys 0.59.0", 4351] 4352 4353[[package]] 4354name = "try-lock" 4355version = "0.2.5" 4356source = "registry+https://github.com/rust-lang/crates.io-index" 4357checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" 4358 4359[[package]] 4360name = "typeid" 4361version = "1.0.3" 4362source = "registry+https://github.com/rust-lang/crates.io-index" 4363checksum = "bc7d623258602320d5c55d1bc22793b57daff0ec7efc270ea7d55ce1d5f5471c" 4364 4365[[package]] 4366name = "typenum" 4367version = "1.18.0" 4368source = "registry+https://github.com/rust-lang/crates.io-index" 4369checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f" 4370 4371[[package]] 4372name = "uds_windows" 4373version = "1.1.0" 4374source = "registry+https://github.com/rust-lang/crates.io-index" 4375checksum = "89daebc3e6fd160ac4aa9fc8b3bf71e1f74fbf92367ae71fb83a037e8bf164b9" 4376dependencies = [ 4377 "memoffset", 4378 "tempfile", 4379 "winapi", 4380] 4381 4382[[package]] 4383name = "unic-char-property" 4384version = "0.9.0" 4385source = "registry+https://github.com/rust-lang/crates.io-index" 4386checksum = "a8c57a407d9b6fa02b4795eb81c5b6652060a15a7903ea981f3d723e6c0be221" 4387dependencies = [ 4388 "unic-char-range", 4389] 4390 4391[[package]] 4392name = "unic-char-range" 4393version = "0.9.0" 4394source = "registry+https://github.com/rust-lang/crates.io-index" 4395checksum = "0398022d5f700414f6b899e10b8348231abf9173fa93144cbc1a43b9793c1fbc" 4396 4397[[package]] 4398name = "unic-common" 4399version = "0.9.0" 4400source = "registry+https://github.com/rust-lang/crates.io-index" 4401checksum = "80d7ff825a6a654ee85a63e80f92f054f904f21e7d12da4e22f9834a4aaa35bc" 4402 4403[[package]] 4404name = "unic-ucd-ident" 4405version = "0.9.0" 4406source = "registry+https://github.com/rust-lang/crates.io-index" 4407checksum = "e230a37c0381caa9219d67cf063aa3a375ffed5bf541a452db16e744bdab6987" 4408dependencies = [ 4409 "unic-char-property", 4410 "unic-char-range", 4411 "unic-ucd-version", 4412] 4413 4414[[package]] 4415name = "unic-ucd-version" 4416version = "0.9.0" 4417source = "registry+https://github.com/rust-lang/crates.io-index" 4418checksum = "96bd2f2237fe450fcd0a1d2f5f4e91711124f7857ba2e964247776ebeeb7b0c4" 4419dependencies = [ 4420 "unic-common", 4421] 4422 4423[[package]] 4424name = "unicode-ident" 4425version = "1.0.18" 4426source = "registry+https://github.com/rust-lang/crates.io-index" 4427checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512" 4428 4429[[package]] 4430name = "unicode-segmentation" 4431version = "1.12.0" 4432source = "registry+https://github.com/rust-lang/crates.io-index" 4433checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493" 4434 4435[[package]] 4436name = "url" 4437version = "2.5.4" 4438source = "registry+https://github.com/rust-lang/crates.io-index" 4439checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60" 4440dependencies = [ 4441 "form_urlencoded", 4442 "idna", 4443 "percent-encoding", 4444 "serde", 4445] 4446 4447[[package]] 4448name = "urlpattern" 4449version = "0.3.0" 4450source = "registry+https://github.com/rust-lang/crates.io-index" 4451checksum = "70acd30e3aa1450bc2eece896ce2ad0d178e9c079493819301573dae3c37ba6d" 4452dependencies = [ 4453 "regex", 4454 "serde", 4455 "unic-ucd-ident", 4456 "url", 4457] 4458 4459[[package]] 4460name = "utf-8" 4461version = "0.7.6" 4462source = "registry+https://github.com/rust-lang/crates.io-index" 4463checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" 4464 4465[[package]] 4466name = "utf8_iter" 4467version = "1.0.4" 4468source = "registry+https://github.com/rust-lang/crates.io-index" 4469checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" 4470 4471[[package]] 4472name = "uuid" 4473version = "1.17.0" 4474source = "registry+https://github.com/rust-lang/crates.io-index" 4475checksum = "3cf4199d1e5d15ddd86a694e4d0dffa9c323ce759fea589f00fef9d81cc1931d" 4476dependencies = [ 4477 "getrandom 0.3.3", 4478 "js-sys", 4479 "serde", 4480 "wasm-bindgen", 4481] 4482 4483[[package]] 4484name = "version-compare" 4485version = "0.2.0" 4486source = "registry+https://github.com/rust-lang/crates.io-index" 4487checksum = "852e951cb7832cb45cb1169900d19760cfa39b82bc0ea9c0e5a14ae88411c98b" 4488 4489[[package]] 4490name = "version_check" 4491version = "0.9.5" 4492source = "registry+https://github.com/rust-lang/crates.io-index" 4493checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" 4494 4495[[package]] 4496name = "vswhom" 4497version = "0.1.0" 4498source = "registry+https://github.com/rust-lang/crates.io-index" 4499checksum = "be979b7f07507105799e854203b470ff7c78a1639e330a58f183b5fea574608b" 4500dependencies = [ 4501 "libc", 4502 "vswhom-sys", 4503] 4504 4505[[package]] 4506name = "vswhom-sys" 4507version = "0.1.3" 4508source = "registry+https://github.com/rust-lang/crates.io-index" 4509checksum = "fb067e4cbd1ff067d1df46c9194b5de0e98efd2810bbc95c5d5e5f25a3231150" 4510dependencies = [ 4511 "cc", 4512 "libc", 4513] 4514 4515[[package]] 4516name = "walkdir" 4517version = "2.5.0" 4518source = "registry+https://github.com/rust-lang/crates.io-index" 4519checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" 4520dependencies = [ 4521 "same-file", 4522 "winapi-util", 4523] 4524 4525[[package]] 4526name = "want" 4527version = "0.3.1" 4528source = "registry+https://github.com/rust-lang/crates.io-index" 4529checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" 4530dependencies = [ 4531 "try-lock", 4532] 4533 4534[[package]] 4535name = "wasi" 4536version = "0.9.0+wasi-snapshot-preview1" 4537source = "registry+https://github.com/rust-lang/crates.io-index" 4538checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" 4539 4540[[package]] 4541name = "wasi" 4542version = "0.11.1+wasi-snapshot-preview1" 4543source = "registry+https://github.com/rust-lang/crates.io-index" 4544checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" 4545 4546[[package]] 4547name = "wasi" 4548version = "0.14.2+wasi-0.2.4" 4549source = "registry+https://github.com/rust-lang/crates.io-index" 4550checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3" 4551dependencies = [ 4552 "wit-bindgen-rt", 4553] 4554 4555[[package]] 4556name = "wasm-bindgen" 4557version = "0.2.100" 4558source = "registry+https://github.com/rust-lang/crates.io-index" 4559checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5" 4560dependencies = [ 4561 "cfg-if", 4562 "once_cell", 4563 "rustversion", 4564 "wasm-bindgen-macro", 4565] 4566 4567[[package]] 4568name = "wasm-bindgen-backend" 4569version = "0.2.100" 4570source = "registry+https://github.com/rust-lang/crates.io-index" 4571checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6" 4572dependencies = [ 4573 "bumpalo", 4574 "log", 4575 "proc-macro2", 4576 "quote", 4577 "syn 2.0.104", 4578 "wasm-bindgen-shared", 4579] 4580 4581[[package]] 4582name = "wasm-bindgen-futures" 4583version = "0.4.50" 4584source = "registry+https://github.com/rust-lang/crates.io-index" 4585checksum = "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61" 4586dependencies = [ 4587 "cfg-if", 4588 "js-sys", 4589 "once_cell", 4590 "wasm-bindgen", 4591 "web-sys", 4592] 4593 4594[[package]] 4595name = "wasm-bindgen-macro" 4596version = "0.2.100" 4597source = "registry+https://github.com/rust-lang/crates.io-index" 4598checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407" 4599dependencies = [ 4600 "quote", 4601 "wasm-bindgen-macro-support", 4602] 4603 4604[[package]] 4605name = "wasm-bindgen-macro-support" 4606version = "0.2.100" 4607source = "registry+https://github.com/rust-lang/crates.io-index" 4608checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de" 4609dependencies = [ 4610 "proc-macro2", 4611 "quote", 4612 "syn 2.0.104", 4613 "wasm-bindgen-backend", 4614 "wasm-bindgen-shared", 4615] 4616 4617[[package]] 4618name = "wasm-bindgen-shared" 4619version = "0.2.100" 4620source = "registry+https://github.com/rust-lang/crates.io-index" 4621checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d" 4622dependencies = [ 4623 "unicode-ident", 4624] 4625 4626[[package]] 4627name = "wasm-streams" 4628version = "0.4.2" 4629source = "registry+https://github.com/rust-lang/crates.io-index" 4630checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65" 4631dependencies = [ 4632 "futures-util", 4633 "js-sys", 4634 "wasm-bindgen", 4635 "wasm-bindgen-futures", 4636 "web-sys", 4637] 4638 4639[[package]] 4640name = "web-sys" 4641version = "0.3.77" 4642source = "registry+https://github.com/rust-lang/crates.io-index" 4643checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2" 4644dependencies = [ 4645 "js-sys", 4646 "wasm-bindgen", 4647] 4648 4649[[package]] 4650name = "webkit2gtk" 4651version = "2.0.1" 4652source = "registry+https://github.com/rust-lang/crates.io-index" 4653checksum = "76b1bc1e54c581da1e9f179d0b38512ba358fb1af2d634a1affe42e37172361a" 4654dependencies = [ 4655 "bitflags 1.3.2", 4656 "cairo-rs", 4657 "gdk", 4658 "gdk-sys", 4659 "gio", 4660 "gio-sys", 4661 "glib", 4662 "glib-sys", 4663 "gobject-sys", 4664 "gtk", 4665 "gtk-sys", 4666 "javascriptcore-rs", 4667 "libc", 4668 "once_cell", 4669 "soup3", 4670 "webkit2gtk-sys", 4671] 4672 4673[[package]] 4674name = "webkit2gtk-sys" 4675version = "2.0.1" 4676source = "registry+https://github.com/rust-lang/crates.io-index" 4677checksum = "62daa38afc514d1f8f12b8693d30d5993ff77ced33ce30cd04deebc267a6d57c" 4678dependencies = [ 4679 "bitflags 1.3.2", 4680 "cairo-sys-rs", 4681 "gdk-sys", 4682 "gio-sys", 4683 "glib-sys", 4684 "gobject-sys", 4685 "gtk-sys", 4686 "javascriptcore-rs-sys", 4687 "libc", 4688 "pkg-config", 4689 "soup3-sys", 4690 "system-deps", 4691] 4692 4693[[package]] 4694name = "webview2-com" 4695version = "0.38.0" 4696source = "registry+https://github.com/rust-lang/crates.io-index" 4697checksum = "d4ba622a989277ef3886dd5afb3e280e3dd6d974b766118950a08f8f678ad6a4" 4698dependencies = [ 4699 "webview2-com-macros", 4700 "webview2-com-sys", 4701 "windows", 4702 "windows-core", 4703 "windows-implement", 4704 "windows-interface", 4705] 4706 4707[[package]] 4708name = "webview2-com-macros" 4709version = "0.8.0" 4710source = "registry+https://github.com/rust-lang/crates.io-index" 4711checksum = "1d228f15bba3b9d56dde8bddbee66fa24545bd17b48d5128ccf4a8742b18e431" 4712dependencies = [ 4713 "proc-macro2", 4714 "quote", 4715 "syn 2.0.104", 4716] 4717 4718[[package]] 4719name = "webview2-com-sys" 4720version = "0.38.0" 4721source = "registry+https://github.com/rust-lang/crates.io-index" 4722checksum = "36695906a1b53a3bf5c4289621efedac12b73eeb0b89e7e1a89b517302d5d75c" 4723dependencies = [ 4724 "thiserror 2.0.12", 4725 "windows", 4726 "windows-core", 4727] 4728 4729[[package]] 4730name = "winapi" 4731version = "0.3.9" 4732source = "registry+https://github.com/rust-lang/crates.io-index" 4733checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 4734dependencies = [ 4735 "winapi-i686-pc-windows-gnu", 4736 "winapi-x86_64-pc-windows-gnu", 4737] 4738 4739[[package]] 4740name = "winapi-i686-pc-windows-gnu" 4741version = "0.4.0" 4742source = "registry+https://github.com/rust-lang/crates.io-index" 4743checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 4744 4745[[package]] 4746name = "winapi-util" 4747version = "0.1.9" 4748source = "registry+https://github.com/rust-lang/crates.io-index" 4749checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb" 4750dependencies = [ 4751 "windows-sys 0.59.0", 4752] 4753 4754[[package]] 4755name = "winapi-x86_64-pc-windows-gnu" 4756version = "0.4.0" 4757source = "registry+https://github.com/rust-lang/crates.io-index" 4758checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 4759 4760[[package]] 4761name = "window-vibrancy" 4762version = "0.6.0" 4763source = "registry+https://github.com/rust-lang/crates.io-index" 4764checksum = "d9bec5a31f3f9362f2258fd0e9c9dd61a9ca432e7306cc78c444258f0dce9a9c" 4765dependencies = [ 4766 "objc2 0.6.1", 4767 "objc2-app-kit", 4768 "objc2-core-foundation", 4769 "objc2-foundation 0.3.1", 4770 "raw-window-handle", 4771 "windows-sys 0.59.0", 4772 "windows-version", 4773] 4774 4775[[package]] 4776name = "windows" 4777version = "0.61.3" 4778source = "registry+https://github.com/rust-lang/crates.io-index" 4779checksum = "9babd3a767a4c1aef6900409f85f5d53ce2544ccdfaa86dad48c91782c6d6893" 4780dependencies = [ 4781 "windows-collections", 4782 "windows-core", 4783 "windows-future", 4784 "windows-link", 4785 "windows-numerics", 4786] 4787 4788[[package]] 4789name = "windows-collections" 4790version = "0.2.0" 4791source = "registry+https://github.com/rust-lang/crates.io-index" 4792checksum = "3beeceb5e5cfd9eb1d76b381630e82c4241ccd0d27f1a39ed41b2760b255c5e8" 4793dependencies = [ 4794 "windows-core", 4795] 4796 4797[[package]] 4798name = "windows-core" 4799version = "0.61.2" 4800source = "registry+https://github.com/rust-lang/crates.io-index" 4801checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3" 4802dependencies = [ 4803 "windows-implement", 4804 "windows-interface", 4805 "windows-link", 4806 "windows-result", 4807 "windows-strings", 4808] 4809 4810[[package]] 4811name = "windows-future" 4812version = "0.2.1" 4813source = "registry+https://github.com/rust-lang/crates.io-index" 4814checksum = "fc6a41e98427b19fe4b73c550f060b59fa592d7d686537eebf9385621bfbad8e" 4815dependencies = [ 4816 "windows-core", 4817 "windows-link", 4818 "windows-threading", 4819] 4820 4821[[package]] 4822name = "windows-implement" 4823version = "0.60.0" 4824source = "registry+https://github.com/rust-lang/crates.io-index" 4825checksum = "a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836" 4826dependencies = [ 4827 "proc-macro2", 4828 "quote", 4829 "syn 2.0.104", 4830] 4831 4832[[package]] 4833name = "windows-interface" 4834version = "0.59.1" 4835source = "registry+https://github.com/rust-lang/crates.io-index" 4836checksum = "bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8" 4837dependencies = [ 4838 "proc-macro2", 4839 "quote", 4840 "syn 2.0.104", 4841] 4842 4843[[package]] 4844name = "windows-link" 4845version = "0.1.3" 4846source = "registry+https://github.com/rust-lang/crates.io-index" 4847checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a" 4848 4849[[package]] 4850name = "windows-numerics" 4851version = "0.2.0" 4852source = "registry+https://github.com/rust-lang/crates.io-index" 4853checksum = "9150af68066c4c5c07ddc0ce30421554771e528bde427614c61038bc2c92c2b1" 4854dependencies = [ 4855 "windows-core", 4856 "windows-link", 4857] 4858 4859[[package]] 4860name = "windows-registry" 4861version = "0.5.3" 4862source = "registry+https://github.com/rust-lang/crates.io-index" 4863checksum = "5b8a9ed28765efc97bbc954883f4e6796c33a06546ebafacbabee9696967499e" 4864dependencies = [ 4865 "windows-link", 4866 "windows-result", 4867 "windows-strings", 4868] 4869 4870[[package]] 4871name = "windows-result" 4872version = "0.3.4" 4873source = "registry+https://github.com/rust-lang/crates.io-index" 4874checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6" 4875dependencies = [ 4876 "windows-link", 4877] 4878 4879[[package]] 4880name = "windows-strings" 4881version = "0.4.2" 4882source = "registry+https://github.com/rust-lang/crates.io-index" 4883checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57" 4884dependencies = [ 4885 "windows-link", 4886] 4887 4888[[package]] 4889name = "windows-sys" 4890version = "0.45.0" 4891source = "registry+https://github.com/rust-lang/crates.io-index" 4892checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" 4893dependencies = [ 4894 "windows-targets 0.42.2", 4895] 4896 4897[[package]] 4898name = "windows-sys" 4899version = "0.52.0" 4900source = "registry+https://github.com/rust-lang/crates.io-index" 4901checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 4902dependencies = [ 4903 "windows-targets 0.52.6", 4904] 4905 4906[[package]] 4907name = "windows-sys" 4908version = "0.59.0" 4909source = "registry+https://github.com/rust-lang/crates.io-index" 4910checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" 4911dependencies = [ 4912 "windows-targets 0.52.6", 4913] 4914 4915[[package]] 4916name = "windows-sys" 4917version = "0.60.2" 4918source = "registry+https://github.com/rust-lang/crates.io-index" 4919checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb" 4920dependencies = [ 4921 "windows-targets 0.53.2", 4922] 4923 4924[[package]] 4925name = "windows-targets" 4926version = "0.42.2" 4927source = "registry+https://github.com/rust-lang/crates.io-index" 4928checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" 4929dependencies = [ 4930 "windows_aarch64_gnullvm 0.42.2", 4931 "windows_aarch64_msvc 0.42.2", 4932 "windows_i686_gnu 0.42.2", 4933 "windows_i686_msvc 0.42.2", 4934 "windows_x86_64_gnu 0.42.2", 4935 "windows_x86_64_gnullvm 0.42.2", 4936 "windows_x86_64_msvc 0.42.2", 4937] 4938 4939[[package]] 4940name = "windows-targets" 4941version = "0.52.6" 4942source = "registry+https://github.com/rust-lang/crates.io-index" 4943checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" 4944dependencies = [ 4945 "windows_aarch64_gnullvm 0.52.6", 4946 "windows_aarch64_msvc 0.52.6", 4947 "windows_i686_gnu 0.52.6", 4948 "windows_i686_gnullvm 0.52.6", 4949 "windows_i686_msvc 0.52.6", 4950 "windows_x86_64_gnu 0.52.6", 4951 "windows_x86_64_gnullvm 0.52.6", 4952 "windows_x86_64_msvc 0.52.6", 4953] 4954 4955[[package]] 4956name = "windows-targets" 4957version = "0.53.2" 4958source = "registry+https://github.com/rust-lang/crates.io-index" 4959checksum = "c66f69fcc9ce11da9966ddb31a40968cad001c5bedeb5c2b82ede4253ab48aef" 4960dependencies = [ 4961 "windows_aarch64_gnullvm 0.53.0", 4962 "windows_aarch64_msvc 0.53.0", 4963 "windows_i686_gnu 0.53.0", 4964 "windows_i686_gnullvm 0.53.0", 4965 "windows_i686_msvc 0.53.0", 4966 "windows_x86_64_gnu 0.53.0", 4967 "windows_x86_64_gnullvm 0.53.0", 4968 "windows_x86_64_msvc 0.53.0", 4969] 4970 4971[[package]] 4972name = "windows-threading" 4973version = "0.1.0" 4974source = "registry+https://github.com/rust-lang/crates.io-index" 4975checksum = "b66463ad2e0ea3bbf808b7f1d371311c80e115c0b71d60efc142cafbcfb057a6" 4976dependencies = [ 4977 "windows-link", 4978] 4979 4980[[package]] 4981name = "windows-version" 4982version = "0.1.4" 4983source = "registry+https://github.com/rust-lang/crates.io-index" 4984checksum = "e04a5c6627e310a23ad2358483286c7df260c964eb2d003d8efd6d0f4e79265c" 4985dependencies = [ 4986 "windows-link", 4987] 4988 4989[[package]] 4990name = "windows_aarch64_gnullvm" 4991version = "0.42.2" 4992source = "registry+https://github.com/rust-lang/crates.io-index" 4993checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" 4994 4995[[package]] 4996name = "windows_aarch64_gnullvm" 4997version = "0.52.6" 4998source = "registry+https://github.com/rust-lang/crates.io-index" 4999checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" 5000 5001[[package]] 5002name = "windows_aarch64_gnullvm" 5003version = "0.53.0" 5004source = "registry+https://github.com/rust-lang/crates.io-index" 5005checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764" 5006 5007[[package]] 5008name = "windows_aarch64_msvc" 5009version = "0.42.2" 5010source = "registry+https://github.com/rust-lang/crates.io-index" 5011checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" 5012 5013[[package]] 5014name = "windows_aarch64_msvc" 5015version = "0.52.6" 5016source = "registry+https://github.com/rust-lang/crates.io-index" 5017checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" 5018 5019[[package]] 5020name = "windows_aarch64_msvc" 5021version = "0.53.0" 5022source = "registry+https://github.com/rust-lang/crates.io-index" 5023checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c" 5024 5025[[package]] 5026name = "windows_i686_gnu" 5027version = "0.42.2" 5028source = "registry+https://github.com/rust-lang/crates.io-index" 5029checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" 5030 5031[[package]] 5032name = "windows_i686_gnu" 5033version = "0.52.6" 5034source = "registry+https://github.com/rust-lang/crates.io-index" 5035checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" 5036 5037[[package]] 5038name = "windows_i686_gnu" 5039version = "0.53.0" 5040source = "registry+https://github.com/rust-lang/crates.io-index" 5041checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3" 5042 5043[[package]] 5044name = "windows_i686_gnullvm" 5045version = "0.52.6" 5046source = "registry+https://github.com/rust-lang/crates.io-index" 5047checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" 5048 5049[[package]] 5050name = "windows_i686_gnullvm" 5051version = "0.53.0" 5052source = "registry+https://github.com/rust-lang/crates.io-index" 5053checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11" 5054 5055[[package]] 5056name = "windows_i686_msvc" 5057version = "0.42.2" 5058source = "registry+https://github.com/rust-lang/crates.io-index" 5059checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" 5060 5061[[package]] 5062name = "windows_i686_msvc" 5063version = "0.52.6" 5064source = "registry+https://github.com/rust-lang/crates.io-index" 5065checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" 5066 5067[[package]] 5068name = "windows_i686_msvc" 5069version = "0.53.0" 5070source = "registry+https://github.com/rust-lang/crates.io-index" 5071checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d" 5072 5073[[package]] 5074name = "windows_x86_64_gnu" 5075version = "0.42.2" 5076source = "registry+https://github.com/rust-lang/crates.io-index" 5077checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" 5078 5079[[package]] 5080name = "windows_x86_64_gnu" 5081version = "0.52.6" 5082source = "registry+https://github.com/rust-lang/crates.io-index" 5083checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" 5084 5085[[package]] 5086name = "windows_x86_64_gnu" 5087version = "0.53.0" 5088source = "registry+https://github.com/rust-lang/crates.io-index" 5089checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba" 5090 5091[[package]] 5092name = "windows_x86_64_gnullvm" 5093version = "0.42.2" 5094source = "registry+https://github.com/rust-lang/crates.io-index" 5095checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" 5096 5097[[package]] 5098name = "windows_x86_64_gnullvm" 5099version = "0.52.6" 5100source = "registry+https://github.com/rust-lang/crates.io-index" 5101checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" 5102 5103[[package]] 5104name = "windows_x86_64_gnullvm" 5105version = "0.53.0" 5106source = "registry+https://github.com/rust-lang/crates.io-index" 5107checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57" 5108 5109[[package]] 5110name = "windows_x86_64_msvc" 5111version = "0.42.2" 5112source = "registry+https://github.com/rust-lang/crates.io-index" 5113checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" 5114 5115[[package]] 5116name = "windows_x86_64_msvc" 5117version = "0.52.6" 5118source = "registry+https://github.com/rust-lang/crates.io-index" 5119checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" 5120 5121[[package]] 5122name = "windows_x86_64_msvc" 5123version = "0.53.0" 5124source = "registry+https://github.com/rust-lang/crates.io-index" 5125checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486" 5126 5127[[package]] 5128name = "winnow" 5129version = "0.5.40" 5130source = "registry+https://github.com/rust-lang/crates.io-index" 5131checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876" 5132dependencies = [ 5133 "memchr", 5134] 5135 5136[[package]] 5137name = "winnow" 5138version = "0.7.12" 5139source = "registry+https://github.com/rust-lang/crates.io-index" 5140checksum = "f3edebf492c8125044983378ecb5766203ad3b4c2f7a922bd7dd207f6d443e95" 5141dependencies = [ 5142 "memchr", 5143] 5144 5145[[package]] 5146name = "winreg" 5147version = "0.10.1" 5148source = "registry+https://github.com/rust-lang/crates.io-index" 5149checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d" 5150dependencies = [ 5151 "winapi", 5152] 5153 5154[[package]] 5155name = "winreg" 5156version = "0.55.0" 5157source = "registry+https://github.com/rust-lang/crates.io-index" 5158checksum = "cb5a765337c50e9ec252c2069be9bf91c7df47afb103b642ba3a53bf8101be97" 5159dependencies = [ 5160 "cfg-if", 5161 "windows-sys 0.59.0", 5162] 5163 5164[[package]] 5165name = "wit-bindgen-rt" 5166version = "0.39.0" 5167source = "registry+https://github.com/rust-lang/crates.io-index" 5168checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1" 5169dependencies = [ 5170 "bitflags 2.9.1", 5171] 5172 5173[[package]] 5174name = "writeable" 5175version = "0.6.1" 5176source = "registry+https://github.com/rust-lang/crates.io-index" 5177checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb" 5178 5179[[package]] 5180name = "wry" 5181version = "0.52.1" 5182source = "registry+https://github.com/rust-lang/crates.io-index" 5183checksum = "12a714d9ba7075aae04a6e50229d6109e3d584774b99a6a8c60de1698ca111b9" 5184dependencies = [ 5185 "base64 0.22.1", 5186 "block2 0.6.1", 5187 "cookie", 5188 "crossbeam-channel", 5189 "dpi", 5190 "dunce", 5191 "gdkx11", 5192 "gtk", 5193 "html5ever", 5194 "http", 5195 "javascriptcore-rs", 5196 "jni", 5197 "kuchikiki", 5198 "libc", 5199 "ndk", 5200 "objc2 0.6.1", 5201 "objc2-app-kit", 5202 "objc2-core-foundation", 5203 "objc2-foundation 0.3.1", 5204 "objc2-ui-kit", 5205 "objc2-web-kit", 5206 "once_cell", 5207 "percent-encoding", 5208 "raw-window-handle", 5209 "sha2", 5210 "soup3", 5211 "tao-macros", 5212 "thiserror 2.0.12", 5213 "url", 5214 "webkit2gtk", 5215 "webkit2gtk-sys", 5216 "webview2-com", 5217 "windows", 5218 "windows-core", 5219 "windows-version", 5220 "x11-dl", 5221] 5222 5223[[package]] 5224name = "x11" 5225version = "2.21.0" 5226source = "registry+https://github.com/rust-lang/crates.io-index" 5227checksum = "502da5464ccd04011667b11c435cb992822c2c0dbde1770c988480d312a0db2e" 5228dependencies = [ 5229 "libc", 5230 "pkg-config", 5231] 5232 5233[[package]] 5234name = "x11-dl" 5235version = "2.21.0" 5236source = "registry+https://github.com/rust-lang/crates.io-index" 5237checksum = "38735924fedd5314a6e548792904ed8c6de6636285cb9fec04d5b1db85c1516f" 5238dependencies = [ 5239 "libc", 5240 "once_cell", 5241 "pkg-config", 5242] 5243 5244[[package]] 5245name = "yoke" 5246version = "0.8.0" 5247source = "registry+https://github.com/rust-lang/crates.io-index" 5248checksum = "5f41bb01b8226ef4bfd589436a297c53d118f65921786300e427be8d487695cc" 5249dependencies = [ 5250 "serde", 5251 "stable_deref_trait", 5252 "yoke-derive", 5253 "zerofrom", 5254] 5255 5256[[package]] 5257name = "yoke-derive" 5258version = "0.8.0" 5259source = "registry+https://github.com/rust-lang/crates.io-index" 5260checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6" 5261dependencies = [ 5262 "proc-macro2", 5263 "quote", 5264 "syn 2.0.104", 5265 "synstructure", 5266] 5267 5268[[package]] 5269name = "zbus" 5270version = "5.8.0" 5271source = "registry+https://github.com/rust-lang/crates.io-index" 5272checksum = "597f45e98bc7e6f0988276012797855613cd8269e23b5be62cc4e5d28b7e515d" 5273dependencies = [ 5274 "async-broadcast", 5275 "async-executor", 5276 "async-io", 5277 "async-lock", 5278 "async-process", 5279 "async-recursion", 5280 "async-task", 5281 "async-trait", 5282 "blocking", 5283 "enumflags2", 5284 "event-listener", 5285 "futures-core", 5286 "futures-lite", 5287 "hex", 5288 "nix", 5289 "ordered-stream", 5290 "serde", 5291 "serde_repr", 5292 "tracing", 5293 "uds_windows", 5294 "windows-sys 0.59.0", 5295 "winnow 0.7.12", 5296 "zbus_macros", 5297 "zbus_names", 5298 "zvariant", 5299] 5300 5301[[package]] 5302name = "zbus_macros" 5303version = "5.8.0" 5304source = "registry+https://github.com/rust-lang/crates.io-index" 5305checksum = "e5c8e4e14dcdd9d97a98b189cd1220f30e8394ad271e8c987da84f73693862c2" 5306dependencies = [ 5307 "proc-macro-crate 3.3.0", 5308 "proc-macro2", 5309 "quote", 5310 "syn 2.0.104", 5311 "zbus_names", 5312 "zvariant", 5313 "zvariant_utils", 5314] 5315 5316[[package]] 5317name = "zbus_names" 5318version = "4.2.0" 5319source = "registry+https://github.com/rust-lang/crates.io-index" 5320checksum = "7be68e64bf6ce8db94f63e72f0c7eb9a60d733f7e0499e628dfab0f84d6bcb97" 5321dependencies = [ 5322 "serde", 5323 "static_assertions", 5324 "winnow 0.7.12", 5325 "zvariant", 5326] 5327 5328[[package]] 5329name = "zerocopy" 5330version = "0.8.26" 5331source = "registry+https://github.com/rust-lang/crates.io-index" 5332checksum = "1039dd0d3c310cf05de012d8a39ff557cb0d23087fd44cad61df08fc31907a2f" 5333dependencies = [ 5334 "zerocopy-derive", 5335] 5336 5337[[package]] 5338name = "zerocopy-derive" 5339version = "0.8.26" 5340source = "registry+https://github.com/rust-lang/crates.io-index" 5341checksum = "9ecf5b4cc5364572d7f4c329661bcc82724222973f2cab6f050a4e5c22f75181" 5342dependencies = [ 5343 "proc-macro2", 5344 "quote", 5345 "syn 2.0.104", 5346] 5347 5348[[package]] 5349name = "zerofrom" 5350version = "0.1.6" 5351source = "registry+https://github.com/rust-lang/crates.io-index" 5352checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5" 5353dependencies = [ 5354 "zerofrom-derive", 5355] 5356 5357[[package]] 5358name = "zerofrom-derive" 5359version = "0.1.6" 5360source = "registry+https://github.com/rust-lang/crates.io-index" 5361checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502" 5362dependencies = [ 5363 "proc-macro2", 5364 "quote", 5365 "syn 2.0.104", 5366 "synstructure", 5367] 5368 5369[[package]] 5370name = "zerotrie" 5371version = "0.2.2" 5372source = "registry+https://github.com/rust-lang/crates.io-index" 5373checksum = "36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595" 5374dependencies = [ 5375 "displaydoc", 5376 "yoke", 5377 "zerofrom", 5378] 5379 5380[[package]] 5381name = "zerovec" 5382version = "0.11.2" 5383source = "registry+https://github.com/rust-lang/crates.io-index" 5384checksum = "4a05eb080e015ba39cc9e23bbe5e7fb04d5fb040350f99f34e338d5fdd294428" 5385dependencies = [ 5386 "yoke", 5387 "zerofrom", 5388 "zerovec-derive", 5389] 5390 5391[[package]] 5392name = "zerovec-derive" 5393version = "0.11.1" 5394source = "registry+https://github.com/rust-lang/crates.io-index" 5395checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f" 5396dependencies = [ 5397 "proc-macro2", 5398 "quote", 5399 "syn 2.0.104", 5400] 5401 5402[[package]] 5403name = "zvariant" 5404version = "5.6.0" 5405source = "registry+https://github.com/rust-lang/crates.io-index" 5406checksum = "d91b3680bb339216abd84714172b5138a4edac677e641ef17e1d8cb1b3ca6e6f" 5407dependencies = [ 5408 "endi", 5409 "enumflags2", 5410 "serde", 5411 "winnow 0.7.12", 5412 "zvariant_derive", 5413 "zvariant_utils", 5414] 5415 5416[[package]] 5417name = "zvariant_derive" 5418version = "5.6.0" 5419source = "registry+https://github.com/rust-lang/crates.io-index" 5420checksum = "3a8c68501be459a8dbfffbe5d792acdd23b4959940fc87785fb013b32edbc208" 5421dependencies = [ 5422 "proc-macro-crate 3.3.0", 5423 "proc-macro2", 5424 "quote", 5425 "syn 2.0.104", 5426 "zvariant_utils", 5427] 5428 5429[[package]] 5430name = "zvariant_utils" 5431version = "3.2.0" 5432source = "registry+https://github.com/rust-lang/crates.io-index" 5433checksum = "e16edfee43e5d7b553b77872d99bc36afdda75c223ca7ad5e3fbecd82ca5fc34" 5434dependencies = [ 5435 "proc-macro2", 5436 "quote", 5437 "serde", 5438 "static_assertions", 5439 "syn 2.0.104", 5440 "winnow 0.7.12", 5441]