[READ-ONLY] Mirror of https://github.com/probablykasper/ferrum. Music library app for Mac, Linux and Windows ferrum.kasper.space
electron linux macos music music-library music-player napi windows
0

Configure Feed

Select the types of activity you want to include in your feed.

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