create-tether-app 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (48) hide show
  1. package/dist/index.d.ts +1 -0
  2. package/dist/index.js +729 -0
  3. package/package.json +59 -0
  4. package/template/.env.example +18 -0
  5. package/template/README.md.template +123 -0
  6. package/template/backend/app/__init__.py.template +5 -0
  7. package/template/backend/app/main.py +66 -0
  8. package/template/backend/app/routes/__init__.py +3 -0
  9. package/template/backend/app/routes/chat.py +151 -0
  10. package/template/backend/app/routes/health.py +28 -0
  11. package/template/backend/app/routes/models.py +126 -0
  12. package/template/backend/app/services/__init__.py +3 -0
  13. package/template/backend/app/services/llm.py +526 -0
  14. package/template/backend/pyproject.toml.template +34 -0
  15. package/template/backend/scripts/build.py +112 -0
  16. package/template/frontend/App.css +58 -0
  17. package/template/frontend/App.tsx +62 -0
  18. package/template/frontend/components/Chat.css +220 -0
  19. package/template/frontend/components/Chat.tsx +284 -0
  20. package/template/frontend/components/ChatMessage.css +206 -0
  21. package/template/frontend/components/ChatMessage.tsx +62 -0
  22. package/template/frontend/components/ModelStatus.css +62 -0
  23. package/template/frontend/components/ModelStatus.tsx +103 -0
  24. package/template/frontend/hooks/useApi.ts +334 -0
  25. package/template/frontend/index.css +92 -0
  26. package/template/frontend/main.tsx +10 -0
  27. package/template/frontend/vite-env.d.ts +1 -0
  28. package/template/index.html.template +13 -0
  29. package/template/package.json.template +33 -0
  30. package/template/postcss.config.js.template +6 -0
  31. package/template/public/tether.svg +15 -0
  32. package/template/src-tauri/.cargo/config.toml +66 -0
  33. package/template/src-tauri/Cargo.lock +4764 -0
  34. package/template/src-tauri/Cargo.toml +24 -0
  35. package/template/src-tauri/build.rs +3 -0
  36. package/template/src-tauri/capabilities/default.json +40 -0
  37. package/template/src-tauri/icons/128x128.png +0 -0
  38. package/template/src-tauri/icons/128x128@2x.png +0 -0
  39. package/template/src-tauri/icons/32x32.png +0 -0
  40. package/template/src-tauri/icons/icon.icns +0 -0
  41. package/template/src-tauri/icons/icon.ico +0 -0
  42. package/template/src-tauri/src/main.rs +65 -0
  43. package/template/src-tauri/src/sidecar.rs +110 -0
  44. package/template/src-tauri/tauri.conf.json.template +44 -0
  45. package/template/tailwind.config.js.template +19 -0
  46. package/template/tsconfig.json +21 -0
  47. package/template/tsconfig.node.json +11 -0
  48. package/template/vite.config.ts +27 -0
@@ -0,0 +1,4764 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "adler2"
7
+ version = "2.0.1"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
10
+
11
+ [[package]]
12
+ name = "aho-corasick"
13
+ version = "1.1.4"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
16
+ dependencies = [
17
+ "memchr",
18
+ ]
19
+
20
+ [[package]]
21
+ name = "alloc-no-stdlib"
22
+ version = "2.0.4"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
25
+
26
+ [[package]]
27
+ name = "alloc-stdlib"
28
+ version = "0.2.2"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece"
31
+ dependencies = [
32
+ "alloc-no-stdlib",
33
+ ]
34
+
35
+ [[package]]
36
+ name = "android_system_properties"
37
+ version = "0.1.5"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
40
+ dependencies = [
41
+ "libc",
42
+ ]
43
+
44
+ [[package]]
45
+ name = "anyhow"
46
+ version = "1.0.100"
47
+ source = "registry+https://github.com/rust-lang/crates.io-index"
48
+ checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
49
+
50
+ [[package]]
51
+ name = "atk"
52
+ version = "0.18.2"
53
+ source = "registry+https://github.com/rust-lang/crates.io-index"
54
+ checksum = "241b621213072e993be4f6f3a9e4b45f65b7e6faad43001be957184b7bb1824b"
55
+ dependencies = [
56
+ "atk-sys",
57
+ "glib",
58
+ "libc",
59
+ ]
60
+
61
+ [[package]]
62
+ name = "atk-sys"
63
+ version = "0.18.2"
64
+ source = "registry+https://github.com/rust-lang/crates.io-index"
65
+ checksum = "c5e48b684b0ca77d2bbadeef17424c2ea3c897d44d566a1617e7e8f30614d086"
66
+ dependencies = [
67
+ "glib-sys",
68
+ "gobject-sys",
69
+ "libc",
70
+ "system-deps",
71
+ ]
72
+
73
+ [[package]]
74
+ name = "atomic-waker"
75
+ version = "1.1.2"
76
+ source = "registry+https://github.com/rust-lang/crates.io-index"
77
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
78
+
79
+ [[package]]
80
+ name = "autocfg"
81
+ version = "1.5.0"
82
+ source = "registry+https://github.com/rust-lang/crates.io-index"
83
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
84
+
85
+ [[package]]
86
+ name = "base64"
87
+ version = "0.21.7"
88
+ source = "registry+https://github.com/rust-lang/crates.io-index"
89
+ checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
90
+
91
+ [[package]]
92
+ name = "base64"
93
+ version = "0.22.1"
94
+ source = "registry+https://github.com/rust-lang/crates.io-index"
95
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
96
+
97
+ [[package]]
98
+ name = "bitflags"
99
+ version = "1.3.2"
100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
101
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
102
+
103
+ [[package]]
104
+ name = "bitflags"
105
+ version = "2.10.0"
106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
107
+ checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
108
+ dependencies = [
109
+ "serde_core",
110
+ ]
111
+
112
+ [[package]]
113
+ name = "block-buffer"
114
+ version = "0.10.4"
115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
116
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
117
+ dependencies = [
118
+ "generic-array",
119
+ ]
120
+
121
+ [[package]]
122
+ name = "block2"
123
+ version = "0.6.2"
124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
125
+ checksum = "cdeb9d870516001442e364c5220d3574d2da8dc765554b4a617230d33fa58ef5"
126
+ dependencies = [
127
+ "objc2",
128
+ ]
129
+
130
+ [[package]]
131
+ name = "brotli"
132
+ version = "8.0.2"
133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
134
+ checksum = "4bd8b9603c7aa97359dbd97ecf258968c95f3adddd6db2f7e7a5bef101c84560"
135
+ dependencies = [
136
+ "alloc-no-stdlib",
137
+ "alloc-stdlib",
138
+ "brotli-decompressor",
139
+ ]
140
+
141
+ [[package]]
142
+ name = "brotli-decompressor"
143
+ version = "5.0.0"
144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
145
+ checksum = "874bb8112abecc98cbd6d81ea4fa7e94fb9449648c93cc89aa40c81c24d7de03"
146
+ dependencies = [
147
+ "alloc-no-stdlib",
148
+ "alloc-stdlib",
149
+ ]
150
+
151
+ [[package]]
152
+ name = "bumpalo"
153
+ version = "3.19.1"
154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
155
+ checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510"
156
+
157
+ [[package]]
158
+ name = "bytemuck"
159
+ version = "1.25.0"
160
+ source = "registry+https://github.com/rust-lang/crates.io-index"
161
+ checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec"
162
+
163
+ [[package]]
164
+ name = "byteorder"
165
+ version = "1.5.0"
166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
167
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
168
+
169
+ [[package]]
170
+ name = "bytes"
171
+ version = "1.11.0"
172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
173
+ checksum = "b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3"
174
+ dependencies = [
175
+ "serde",
176
+ ]
177
+
178
+ [[package]]
179
+ name = "cairo-rs"
180
+ version = "0.18.5"
181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
182
+ checksum = "8ca26ef0159422fb77631dc9d17b102f253b876fe1586b03b803e63a309b4ee2"
183
+ dependencies = [
184
+ "bitflags 2.10.0",
185
+ "cairo-sys-rs",
186
+ "glib",
187
+ "libc",
188
+ "once_cell",
189
+ "thiserror 1.0.69",
190
+ ]
191
+
192
+ [[package]]
193
+ name = "cairo-sys-rs"
194
+ version = "0.18.2"
195
+ source = "registry+https://github.com/rust-lang/crates.io-index"
196
+ checksum = "685c9fa8e590b8b3d678873528d83411db17242a73fccaed827770ea0fedda51"
197
+ dependencies = [
198
+ "glib-sys",
199
+ "libc",
200
+ "system-deps",
201
+ ]
202
+
203
+ [[package]]
204
+ name = "camino"
205
+ version = "1.2.2"
206
+ source = "registry+https://github.com/rust-lang/crates.io-index"
207
+ checksum = "e629a66d692cb9ff1a1c664e41771b3dcaf961985a9774c0eb0bd1b51cf60a48"
208
+ dependencies = [
209
+ "serde_core",
210
+ ]
211
+
212
+ [[package]]
213
+ name = "cargo-platform"
214
+ version = "0.1.9"
215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
216
+ checksum = "e35af189006b9c0f00a064685c727031e3ed2d8020f7ba284d78cc2671bd36ea"
217
+ dependencies = [
218
+ "serde",
219
+ ]
220
+
221
+ [[package]]
222
+ name = "cargo_metadata"
223
+ version = "0.19.2"
224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
225
+ checksum = "dd5eb614ed4c27c5d706420e4320fbe3216ab31fa1c33cd8246ac36dae4479ba"
226
+ dependencies = [
227
+ "camino",
228
+ "cargo-platform",
229
+ "semver",
230
+ "serde",
231
+ "serde_json",
232
+ "thiserror 2.0.18",
233
+ ]
234
+
235
+ [[package]]
236
+ name = "cargo_toml"
237
+ version = "0.22.3"
238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
239
+ checksum = "374b7c592d9c00c1f4972ea58390ac6b18cbb6ab79011f3bdc90a0b82ca06b77"
240
+ dependencies = [
241
+ "serde",
242
+ "toml 0.9.11+spec-1.1.0",
243
+ ]
244
+
245
+ [[package]]
246
+ name = "cc"
247
+ version = "1.2.55"
248
+ source = "registry+https://github.com/rust-lang/crates.io-index"
249
+ checksum = "47b26a0954ae34af09b50f0de26458fa95369a0d478d8236d3f93082b219bd29"
250
+ dependencies = [
251
+ "find-msvc-tools",
252
+ "shlex",
253
+ ]
254
+
255
+ [[package]]
256
+ name = "cesu8"
257
+ version = "1.1.0"
258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
259
+ checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"
260
+
261
+ [[package]]
262
+ name = "cfb"
263
+ version = "0.7.3"
264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
265
+ checksum = "d38f2da7a0a2c4ccf0065be06397cc26a81f4e528be095826eee9d4adbb8c60f"
266
+ dependencies = [
267
+ "byteorder",
268
+ "fnv",
269
+ "uuid",
270
+ ]
271
+
272
+ [[package]]
273
+ name = "cfg-expr"
274
+ version = "0.15.8"
275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
276
+ checksum = "d067ad48b8650848b989a59a86c6c36a995d02d2bf778d45c3c5d57bc2718f02"
277
+ dependencies = [
278
+ "smallvec",
279
+ "target-lexicon",
280
+ ]
281
+
282
+ [[package]]
283
+ name = "cfg-if"
284
+ version = "1.0.4"
285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
286
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
287
+
288
+ [[package]]
289
+ name = "chrono"
290
+ version = "0.4.43"
291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
292
+ checksum = "fac4744fb15ae8337dc853fee7fb3f4e48c0fbaa23d0afe49c447b4fab126118"
293
+ dependencies = [
294
+ "iana-time-zone",
295
+ "num-traits",
296
+ "serde",
297
+ "windows-link 0.2.1",
298
+ ]
299
+
300
+ [[package]]
301
+ name = "combine"
302
+ version = "4.6.7"
303
+ source = "registry+https://github.com/rust-lang/crates.io-index"
304
+ checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
305
+ dependencies = [
306
+ "bytes",
307
+ "memchr",
308
+ ]
309
+
310
+ [[package]]
311
+ name = "convert_case"
312
+ version = "0.4.0"
313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
314
+ checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
315
+
316
+ [[package]]
317
+ name = "cookie"
318
+ version = "0.18.1"
319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
320
+ checksum = "4ddef33a339a91ea89fb53151bd0a4689cfce27055c291dfa69945475d22c747"
321
+ dependencies = [
322
+ "time",
323
+ "version_check",
324
+ ]
325
+
326
+ [[package]]
327
+ name = "core-foundation"
328
+ version = "0.10.1"
329
+ source = "registry+https://github.com/rust-lang/crates.io-index"
330
+ checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
331
+ dependencies = [
332
+ "core-foundation-sys",
333
+ "libc",
334
+ ]
335
+
336
+ [[package]]
337
+ name = "core-foundation-sys"
338
+ version = "0.8.7"
339
+ source = "registry+https://github.com/rust-lang/crates.io-index"
340
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
341
+
342
+ [[package]]
343
+ name = "core-graphics"
344
+ version = "0.24.0"
345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
346
+ checksum = "fa95a34622365fa5bbf40b20b75dba8dfa8c94c734aea8ac9a5ca38af14316f1"
347
+ dependencies = [
348
+ "bitflags 2.10.0",
349
+ "core-foundation",
350
+ "core-graphics-types",
351
+ "foreign-types",
352
+ "libc",
353
+ ]
354
+
355
+ [[package]]
356
+ name = "core-graphics-types"
357
+ version = "0.2.0"
358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
359
+ checksum = "3d44a101f213f6c4cdc1853d4b78aef6db6bdfa3468798cc1d9912f4735013eb"
360
+ dependencies = [
361
+ "bitflags 2.10.0",
362
+ "core-foundation",
363
+ "libc",
364
+ ]
365
+
366
+ [[package]]
367
+ name = "cpufeatures"
368
+ version = "0.2.17"
369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
370
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
371
+ dependencies = [
372
+ "libc",
373
+ ]
374
+
375
+ [[package]]
376
+ name = "crc32fast"
377
+ version = "1.5.0"
378
+ source = "registry+https://github.com/rust-lang/crates.io-index"
379
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
380
+ dependencies = [
381
+ "cfg-if",
382
+ ]
383
+
384
+ [[package]]
385
+ name = "crossbeam-channel"
386
+ version = "0.5.15"
387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
388
+ checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
389
+ dependencies = [
390
+ "crossbeam-utils",
391
+ ]
392
+
393
+ [[package]]
394
+ name = "crossbeam-utils"
395
+ version = "0.8.21"
396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
397
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
398
+
399
+ [[package]]
400
+ name = "crypto-common"
401
+ version = "0.1.7"
402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
403
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
404
+ dependencies = [
405
+ "generic-array",
406
+ "typenum",
407
+ ]
408
+
409
+ [[package]]
410
+ name = "cssparser"
411
+ version = "0.29.6"
412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
413
+ checksum = "f93d03419cb5950ccfd3daf3ff1c7a36ace64609a1a8746d493df1ca0afde0fa"
414
+ dependencies = [
415
+ "cssparser-macros",
416
+ "dtoa-short",
417
+ "itoa",
418
+ "matches",
419
+ "phf 0.10.1",
420
+ "proc-macro2",
421
+ "quote",
422
+ "smallvec",
423
+ "syn 1.0.109",
424
+ ]
425
+
426
+ [[package]]
427
+ name = "cssparser-macros"
428
+ version = "0.6.1"
429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
430
+ checksum = "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331"
431
+ dependencies = [
432
+ "quote",
433
+ "syn 2.0.114",
434
+ ]
435
+
436
+ [[package]]
437
+ name = "ctor"
438
+ version = "0.2.9"
439
+ source = "registry+https://github.com/rust-lang/crates.io-index"
440
+ checksum = "32a2785755761f3ddc1492979ce1e48d2c00d09311c39e4466429188f3dd6501"
441
+ dependencies = [
442
+ "quote",
443
+ "syn 2.0.114",
444
+ ]
445
+
446
+ [[package]]
447
+ name = "darling"
448
+ version = "0.21.3"
449
+ source = "registry+https://github.com/rust-lang/crates.io-index"
450
+ checksum = "9cdf337090841a411e2a7f3deb9187445851f91b309c0c0a29e05f74a00a48c0"
451
+ dependencies = [
452
+ "darling_core",
453
+ "darling_macro",
454
+ ]
455
+
456
+ [[package]]
457
+ name = "darling_core"
458
+ version = "0.21.3"
459
+ source = "registry+https://github.com/rust-lang/crates.io-index"
460
+ checksum = "1247195ecd7e3c85f83c8d2a366e4210d588e802133e1e355180a9870b517ea4"
461
+ dependencies = [
462
+ "fnv",
463
+ "ident_case",
464
+ "proc-macro2",
465
+ "quote",
466
+ "strsim",
467
+ "syn 2.0.114",
468
+ ]
469
+
470
+ [[package]]
471
+ name = "darling_macro"
472
+ version = "0.21.3"
473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
474
+ checksum = "d38308df82d1080de0afee5d069fa14b0326a88c14f15c5ccda35b4a6c414c81"
475
+ dependencies = [
476
+ "darling_core",
477
+ "quote",
478
+ "syn 2.0.114",
479
+ ]
480
+
481
+ [[package]]
482
+ name = "deranged"
483
+ version = "0.5.5"
484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
485
+ checksum = "ececcb659e7ba858fb4f10388c250a7252eb0a27373f1a72b8748afdd248e587"
486
+ dependencies = [
487
+ "powerfmt",
488
+ "serde_core",
489
+ ]
490
+
491
+ [[package]]
492
+ name = "derive_more"
493
+ version = "0.99.20"
494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
495
+ checksum = "6edb4b64a43d977b8e99788fe3a04d483834fba1215a7e02caa415b626497f7f"
496
+ dependencies = [
497
+ "convert_case",
498
+ "proc-macro2",
499
+ "quote",
500
+ "rustc_version",
501
+ "syn 2.0.114",
502
+ ]
503
+
504
+ [[package]]
505
+ name = "digest"
506
+ version = "0.10.7"
507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
508
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
509
+ dependencies = [
510
+ "block-buffer",
511
+ "crypto-common",
512
+ ]
513
+
514
+ [[package]]
515
+ name = "dirs"
516
+ version = "6.0.0"
517
+ source = "registry+https://github.com/rust-lang/crates.io-index"
518
+ checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e"
519
+ dependencies = [
520
+ "dirs-sys",
521
+ ]
522
+
523
+ [[package]]
524
+ name = "dirs-sys"
525
+ version = "0.5.0"
526
+ source = "registry+https://github.com/rust-lang/crates.io-index"
527
+ checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab"
528
+ dependencies = [
529
+ "libc",
530
+ "option-ext",
531
+ "redox_users",
532
+ "windows-sys 0.61.2",
533
+ ]
534
+
535
+ [[package]]
536
+ name = "dispatch"
537
+ version = "0.2.0"
538
+ source = "registry+https://github.com/rust-lang/crates.io-index"
539
+ checksum = "bd0c93bb4b0c6d9b77f4435b0ae98c24d17f1c45b2ff844c6151a07256ca923b"
540
+
541
+ [[package]]
542
+ name = "dispatch2"
543
+ version = "0.3.0"
544
+ source = "registry+https://github.com/rust-lang/crates.io-index"
545
+ checksum = "89a09f22a6c6069a18470eb92d2298acf25463f14256d24778e1230d789a2aec"
546
+ dependencies = [
547
+ "bitflags 2.10.0",
548
+ "objc2",
549
+ ]
550
+
551
+ [[package]]
552
+ name = "displaydoc"
553
+ version = "0.2.5"
554
+ source = "registry+https://github.com/rust-lang/crates.io-index"
555
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
556
+ dependencies = [
557
+ "proc-macro2",
558
+ "quote",
559
+ "syn 2.0.114",
560
+ ]
561
+
562
+ [[package]]
563
+ name = "dlopen2"
564
+ version = "0.8.2"
565
+ source = "registry+https://github.com/rust-lang/crates.io-index"
566
+ checksum = "5e2c5bd4158e66d1e215c49b837e11d62f3267b30c92f1d171c4d3105e3dc4d4"
567
+ dependencies = [
568
+ "dlopen2_derive",
569
+ "libc",
570
+ "once_cell",
571
+ "winapi",
572
+ ]
573
+
574
+ [[package]]
575
+ name = "dlopen2_derive"
576
+ version = "0.4.3"
577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
578
+ checksum = "0fbbb781877580993a8707ec48672673ec7b81eeba04cfd2310bd28c08e47c8f"
579
+ dependencies = [
580
+ "proc-macro2",
581
+ "quote",
582
+ "syn 2.0.114",
583
+ ]
584
+
585
+ [[package]]
586
+ name = "dpi"
587
+ version = "0.1.2"
588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
589
+ checksum = "d8b14ccef22fc6f5a8f4d7d768562a182c04ce9a3b3157b91390b52ddfdf1a76"
590
+ dependencies = [
591
+ "serde",
592
+ ]
593
+
594
+ [[package]]
595
+ name = "dtoa"
596
+ version = "1.0.11"
597
+ source = "registry+https://github.com/rust-lang/crates.io-index"
598
+ checksum = "4c3cf4824e2d5f025c7b531afcb2325364084a16806f6d47fbc1f5fbd9960590"
599
+
600
+ [[package]]
601
+ name = "dtoa-short"
602
+ version = "0.3.5"
603
+ source = "registry+https://github.com/rust-lang/crates.io-index"
604
+ checksum = "cd1511a7b6a56299bd043a9c167a6d2bfb37bf84a6dfceaba651168adfb43c87"
605
+ dependencies = [
606
+ "dtoa",
607
+ ]
608
+
609
+ [[package]]
610
+ name = "dunce"
611
+ version = "1.0.5"
612
+ source = "registry+https://github.com/rust-lang/crates.io-index"
613
+ checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
614
+
615
+ [[package]]
616
+ name = "dyn-clone"
617
+ version = "1.0.20"
618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
619
+ checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
620
+
621
+ [[package]]
622
+ name = "embed-resource"
623
+ version = "3.0.6"
624
+ source = "registry+https://github.com/rust-lang/crates.io-index"
625
+ checksum = "55a075fc573c64510038d7ee9abc7990635863992f83ebc52c8b433b8411a02e"
626
+ dependencies = [
627
+ "cc",
628
+ "memchr",
629
+ "rustc_version",
630
+ "toml 0.9.11+spec-1.1.0",
631
+ "vswhom",
632
+ "winreg",
633
+ ]
634
+
635
+ [[package]]
636
+ name = "embed_plist"
637
+ version = "1.2.2"
638
+ source = "registry+https://github.com/rust-lang/crates.io-index"
639
+ checksum = "4ef6b89e5b37196644d8796de5268852ff179b44e96276cf4290264843743bb7"
640
+
641
+ [[package]]
642
+ name = "encoding_rs"
643
+ version = "0.8.35"
644
+ source = "registry+https://github.com/rust-lang/crates.io-index"
645
+ checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
646
+ dependencies = [
647
+ "cfg-if",
648
+ ]
649
+
650
+ [[package]]
651
+ name = "equivalent"
652
+ version = "1.0.2"
653
+ source = "registry+https://github.com/rust-lang/crates.io-index"
654
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
655
+
656
+ [[package]]
657
+ name = "erased-serde"
658
+ version = "0.4.9"
659
+ source = "registry+https://github.com/rust-lang/crates.io-index"
660
+ checksum = "89e8918065695684b2b0702da20382d5ae6065cf3327bc2d6436bd49a71ce9f3"
661
+ dependencies = [
662
+ "serde",
663
+ "serde_core",
664
+ "typeid",
665
+ ]
666
+
667
+ [[package]]
668
+ name = "errno"
669
+ version = "0.3.14"
670
+ source = "registry+https://github.com/rust-lang/crates.io-index"
671
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
672
+ dependencies = [
673
+ "libc",
674
+ "windows-sys 0.61.2",
675
+ ]
676
+
677
+ [[package]]
678
+ name = "fdeflate"
679
+ version = "0.3.7"
680
+ source = "registry+https://github.com/rust-lang/crates.io-index"
681
+ checksum = "1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c"
682
+ dependencies = [
683
+ "simd-adler32",
684
+ ]
685
+
686
+ [[package]]
687
+ name = "field-offset"
688
+ version = "0.3.6"
689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
690
+ checksum = "38e2275cc4e4fc009b0669731a1e5ab7ebf11f469eaede2bab9309a5b4d6057f"
691
+ dependencies = [
692
+ "memoffset",
693
+ "rustc_version",
694
+ ]
695
+
696
+ [[package]]
697
+ name = "find-msvc-tools"
698
+ version = "0.1.9"
699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
700
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
701
+
702
+ [[package]]
703
+ name = "flate2"
704
+ version = "1.1.8"
705
+ source = "registry+https://github.com/rust-lang/crates.io-index"
706
+ checksum = "b375d6465b98090a5f25b1c7703f3859783755aa9a80433b36e0379a3ec2f369"
707
+ dependencies = [
708
+ "crc32fast",
709
+ "miniz_oxide",
710
+ ]
711
+
712
+ [[package]]
713
+ name = "fnv"
714
+ version = "1.0.7"
715
+ source = "registry+https://github.com/rust-lang/crates.io-index"
716
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
717
+
718
+ [[package]]
719
+ name = "foreign-types"
720
+ version = "0.5.0"
721
+ source = "registry+https://github.com/rust-lang/crates.io-index"
722
+ checksum = "d737d9aa519fb7b749cbc3b962edcf310a8dd1f4b67c91c4f83975dbdd17d965"
723
+ dependencies = [
724
+ "foreign-types-macros",
725
+ "foreign-types-shared",
726
+ ]
727
+
728
+ [[package]]
729
+ name = "foreign-types-macros"
730
+ version = "0.2.3"
731
+ source = "registry+https://github.com/rust-lang/crates.io-index"
732
+ checksum = "1a5c6c585bc94aaf2c7b51dd4c2ba22680844aba4c687be581871a6f518c5742"
733
+ dependencies = [
734
+ "proc-macro2",
735
+ "quote",
736
+ "syn 2.0.114",
737
+ ]
738
+
739
+ [[package]]
740
+ name = "foreign-types-shared"
741
+ version = "0.3.1"
742
+ source = "registry+https://github.com/rust-lang/crates.io-index"
743
+ checksum = "aa9a19cbb55df58761df49b23516a86d432839add4af60fc256da840f66ed35b"
744
+
745
+ [[package]]
746
+ name = "form_urlencoded"
747
+ version = "1.2.2"
748
+ source = "registry+https://github.com/rust-lang/crates.io-index"
749
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
750
+ dependencies = [
751
+ "percent-encoding",
752
+ ]
753
+
754
+ [[package]]
755
+ name = "futf"
756
+ version = "0.1.5"
757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
758
+ checksum = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843"
759
+ dependencies = [
760
+ "mac",
761
+ "new_debug_unreachable",
762
+ ]
763
+
764
+ [[package]]
765
+ name = "futures-channel"
766
+ version = "0.3.31"
767
+ source = "registry+https://github.com/rust-lang/crates.io-index"
768
+ checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
769
+ dependencies = [
770
+ "futures-core",
771
+ ]
772
+
773
+ [[package]]
774
+ name = "futures-core"
775
+ version = "0.3.31"
776
+ source = "registry+https://github.com/rust-lang/crates.io-index"
777
+ checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
778
+
779
+ [[package]]
780
+ name = "futures-executor"
781
+ version = "0.3.31"
782
+ source = "registry+https://github.com/rust-lang/crates.io-index"
783
+ checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
784
+ dependencies = [
785
+ "futures-core",
786
+ "futures-task",
787
+ "futures-util",
788
+ ]
789
+
790
+ [[package]]
791
+ name = "futures-io"
792
+ version = "0.3.31"
793
+ source = "registry+https://github.com/rust-lang/crates.io-index"
794
+ checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
795
+
796
+ [[package]]
797
+ name = "futures-macro"
798
+ version = "0.3.31"
799
+ source = "registry+https://github.com/rust-lang/crates.io-index"
800
+ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
801
+ dependencies = [
802
+ "proc-macro2",
803
+ "quote",
804
+ "syn 2.0.114",
805
+ ]
806
+
807
+ [[package]]
808
+ name = "futures-sink"
809
+ version = "0.3.31"
810
+ source = "registry+https://github.com/rust-lang/crates.io-index"
811
+ checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
812
+
813
+ [[package]]
814
+ name = "futures-task"
815
+ version = "0.3.31"
816
+ source = "registry+https://github.com/rust-lang/crates.io-index"
817
+ checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
818
+
819
+ [[package]]
820
+ name = "futures-util"
821
+ version = "0.3.31"
822
+ source = "registry+https://github.com/rust-lang/crates.io-index"
823
+ checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
824
+ dependencies = [
825
+ "futures-core",
826
+ "futures-io",
827
+ "futures-macro",
828
+ "futures-sink",
829
+ "futures-task",
830
+ "memchr",
831
+ "pin-project-lite",
832
+ "pin-utils",
833
+ "slab",
834
+ ]
835
+
836
+ [[package]]
837
+ name = "fxhash"
838
+ version = "0.2.1"
839
+ source = "registry+https://github.com/rust-lang/crates.io-index"
840
+ checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
841
+ dependencies = [
842
+ "byteorder",
843
+ ]
844
+
845
+ [[package]]
846
+ name = "gdk"
847
+ version = "0.18.2"
848
+ source = "registry+https://github.com/rust-lang/crates.io-index"
849
+ checksum = "d9f245958c627ac99d8e529166f9823fb3b838d1d41fd2b297af3075093c2691"
850
+ dependencies = [
851
+ "cairo-rs",
852
+ "gdk-pixbuf",
853
+ "gdk-sys",
854
+ "gio",
855
+ "glib",
856
+ "libc",
857
+ "pango",
858
+ ]
859
+
860
+ [[package]]
861
+ name = "gdk-pixbuf"
862
+ version = "0.18.5"
863
+ source = "registry+https://github.com/rust-lang/crates.io-index"
864
+ checksum = "50e1f5f1b0bfb830d6ccc8066d18db35c487b1b2b1e8589b5dfe9f07e8defaec"
865
+ dependencies = [
866
+ "gdk-pixbuf-sys",
867
+ "gio",
868
+ "glib",
869
+ "libc",
870
+ "once_cell",
871
+ ]
872
+
873
+ [[package]]
874
+ name = "gdk-pixbuf-sys"
875
+ version = "0.18.0"
876
+ source = "registry+https://github.com/rust-lang/crates.io-index"
877
+ checksum = "3f9839ea644ed9c97a34d129ad56d38a25e6756f99f3a88e15cd39c20629caf7"
878
+ dependencies = [
879
+ "gio-sys",
880
+ "glib-sys",
881
+ "gobject-sys",
882
+ "libc",
883
+ "system-deps",
884
+ ]
885
+
886
+ [[package]]
887
+ name = "gdk-sys"
888
+ version = "0.18.2"
889
+ source = "registry+https://github.com/rust-lang/crates.io-index"
890
+ checksum = "5c2d13f38594ac1e66619e188c6d5a1adb98d11b2fcf7894fc416ad76aa2f3f7"
891
+ dependencies = [
892
+ "cairo-sys-rs",
893
+ "gdk-pixbuf-sys",
894
+ "gio-sys",
895
+ "glib-sys",
896
+ "gobject-sys",
897
+ "libc",
898
+ "pango-sys",
899
+ "pkg-config",
900
+ "system-deps",
901
+ ]
902
+
903
+ [[package]]
904
+ name = "gdkwayland-sys"
905
+ version = "0.18.2"
906
+ source = "registry+https://github.com/rust-lang/crates.io-index"
907
+ checksum = "140071d506d223f7572b9f09b5e155afbd77428cd5cc7af8f2694c41d98dfe69"
908
+ dependencies = [
909
+ "gdk-sys",
910
+ "glib-sys",
911
+ "gobject-sys",
912
+ "libc",
913
+ "pkg-config",
914
+ "system-deps",
915
+ ]
916
+
917
+ [[package]]
918
+ name = "gdkx11"
919
+ version = "0.18.2"
920
+ source = "registry+https://github.com/rust-lang/crates.io-index"
921
+ checksum = "3caa00e14351bebbc8183b3c36690327eb77c49abc2268dd4bd36b856db3fbfe"
922
+ dependencies = [
923
+ "gdk",
924
+ "gdkx11-sys",
925
+ "gio",
926
+ "glib",
927
+ "libc",
928
+ "x11",
929
+ ]
930
+
931
+ [[package]]
932
+ name = "gdkx11-sys"
933
+ version = "0.18.2"
934
+ source = "registry+https://github.com/rust-lang/crates.io-index"
935
+ checksum = "6e2e7445fe01ac26f11601db260dd8608fe172514eb63b3b5e261ea6b0f4428d"
936
+ dependencies = [
937
+ "gdk-sys",
938
+ "glib-sys",
939
+ "libc",
940
+ "system-deps",
941
+ "x11",
942
+ ]
943
+
944
+ [[package]]
945
+ name = "generic-array"
946
+ version = "0.14.7"
947
+ source = "registry+https://github.com/rust-lang/crates.io-index"
948
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
949
+ dependencies = [
950
+ "typenum",
951
+ "version_check",
952
+ ]
953
+
954
+ [[package]]
955
+ name = "getrandom"
956
+ version = "0.1.16"
957
+ source = "registry+https://github.com/rust-lang/crates.io-index"
958
+ checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
959
+ dependencies = [
960
+ "cfg-if",
961
+ "libc",
962
+ "wasi 0.9.0+wasi-snapshot-preview1",
963
+ ]
964
+
965
+ [[package]]
966
+ name = "getrandom"
967
+ version = "0.2.17"
968
+ source = "registry+https://github.com/rust-lang/crates.io-index"
969
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
970
+ dependencies = [
971
+ "cfg-if",
972
+ "libc",
973
+ "wasi 0.11.1+wasi-snapshot-preview1",
974
+ ]
975
+
976
+ [[package]]
977
+ name = "getrandom"
978
+ version = "0.3.4"
979
+ source = "registry+https://github.com/rust-lang/crates.io-index"
980
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
981
+ dependencies = [
982
+ "cfg-if",
983
+ "libc",
984
+ "r-efi",
985
+ "wasip2",
986
+ ]
987
+
988
+ [[package]]
989
+ name = "gio"
990
+ version = "0.18.4"
991
+ source = "registry+https://github.com/rust-lang/crates.io-index"
992
+ checksum = "d4fc8f532f87b79cbc51a79748f16a6828fb784be93145a322fa14d06d354c73"
993
+ dependencies = [
994
+ "futures-channel",
995
+ "futures-core",
996
+ "futures-io",
997
+ "futures-util",
998
+ "gio-sys",
999
+ "glib",
1000
+ "libc",
1001
+ "once_cell",
1002
+ "pin-project-lite",
1003
+ "smallvec",
1004
+ "thiserror 1.0.69",
1005
+ ]
1006
+
1007
+ [[package]]
1008
+ name = "gio-sys"
1009
+ version = "0.18.1"
1010
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1011
+ checksum = "37566df850baf5e4cb0dfb78af2e4b9898d817ed9263d1090a2df958c64737d2"
1012
+ dependencies = [
1013
+ "glib-sys",
1014
+ "gobject-sys",
1015
+ "libc",
1016
+ "system-deps",
1017
+ "winapi",
1018
+ ]
1019
+
1020
+ [[package]]
1021
+ name = "glib"
1022
+ version = "0.18.5"
1023
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1024
+ checksum = "233daaf6e83ae6a12a52055f568f9d7cf4671dabb78ff9560ab6da230ce00ee5"
1025
+ dependencies = [
1026
+ "bitflags 2.10.0",
1027
+ "futures-channel",
1028
+ "futures-core",
1029
+ "futures-executor",
1030
+ "futures-task",
1031
+ "futures-util",
1032
+ "gio-sys",
1033
+ "glib-macros",
1034
+ "glib-sys",
1035
+ "gobject-sys",
1036
+ "libc",
1037
+ "memchr",
1038
+ "once_cell",
1039
+ "smallvec",
1040
+ "thiserror 1.0.69",
1041
+ ]
1042
+
1043
+ [[package]]
1044
+ name = "glib-macros"
1045
+ version = "0.18.5"
1046
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1047
+ checksum = "0bb0228f477c0900c880fd78c8759b95c7636dbd7842707f49e132378aa2acdc"
1048
+ dependencies = [
1049
+ "heck 0.4.1",
1050
+ "proc-macro-crate 2.0.2",
1051
+ "proc-macro-error",
1052
+ "proc-macro2",
1053
+ "quote",
1054
+ "syn 2.0.114",
1055
+ ]
1056
+
1057
+ [[package]]
1058
+ name = "glib-sys"
1059
+ version = "0.18.1"
1060
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1061
+ checksum = "063ce2eb6a8d0ea93d2bf8ba1957e78dbab6be1c2220dd3daca57d5a9d869898"
1062
+ dependencies = [
1063
+ "libc",
1064
+ "system-deps",
1065
+ ]
1066
+
1067
+ [[package]]
1068
+ name = "glob"
1069
+ version = "0.3.3"
1070
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1071
+ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
1072
+
1073
+ [[package]]
1074
+ name = "gobject-sys"
1075
+ version = "0.18.0"
1076
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1077
+ checksum = "0850127b514d1c4a4654ead6dedadb18198999985908e6ffe4436f53c785ce44"
1078
+ dependencies = [
1079
+ "glib-sys",
1080
+ "libc",
1081
+ "system-deps",
1082
+ ]
1083
+
1084
+ [[package]]
1085
+ name = "gtk"
1086
+ version = "0.18.2"
1087
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1088
+ checksum = "fd56fb197bfc42bd5d2751f4f017d44ff59fbb58140c6b49f9b3b2bdab08506a"
1089
+ dependencies = [
1090
+ "atk",
1091
+ "cairo-rs",
1092
+ "field-offset",
1093
+ "futures-channel",
1094
+ "gdk",
1095
+ "gdk-pixbuf",
1096
+ "gio",
1097
+ "glib",
1098
+ "gtk-sys",
1099
+ "gtk3-macros",
1100
+ "libc",
1101
+ "pango",
1102
+ "pkg-config",
1103
+ ]
1104
+
1105
+ [[package]]
1106
+ name = "gtk-sys"
1107
+ version = "0.18.2"
1108
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1109
+ checksum = "8f29a1c21c59553eb7dd40e918be54dccd60c52b049b75119d5d96ce6b624414"
1110
+ dependencies = [
1111
+ "atk-sys",
1112
+ "cairo-sys-rs",
1113
+ "gdk-pixbuf-sys",
1114
+ "gdk-sys",
1115
+ "gio-sys",
1116
+ "glib-sys",
1117
+ "gobject-sys",
1118
+ "libc",
1119
+ "pango-sys",
1120
+ "system-deps",
1121
+ ]
1122
+
1123
+ [[package]]
1124
+ name = "gtk3-macros"
1125
+ version = "0.18.2"
1126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1127
+ checksum = "52ff3c5b21f14f0736fed6dcfc0bfb4225ebf5725f3c0209edeec181e4d73e9d"
1128
+ dependencies = [
1129
+ "proc-macro-crate 1.3.1",
1130
+ "proc-macro-error",
1131
+ "proc-macro2",
1132
+ "quote",
1133
+ "syn 2.0.114",
1134
+ ]
1135
+
1136
+ [[package]]
1137
+ name = "hashbrown"
1138
+ version = "0.12.3"
1139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1140
+ checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
1141
+
1142
+ [[package]]
1143
+ name = "hashbrown"
1144
+ version = "0.16.1"
1145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1146
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
1147
+
1148
+ [[package]]
1149
+ name = "heck"
1150
+ version = "0.4.1"
1151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1152
+ checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
1153
+
1154
+ [[package]]
1155
+ name = "heck"
1156
+ version = "0.5.0"
1157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1158
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
1159
+
1160
+ [[package]]
1161
+ name = "hex"
1162
+ version = "0.4.3"
1163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1164
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
1165
+
1166
+ [[package]]
1167
+ name = "html5ever"
1168
+ version = "0.29.1"
1169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1170
+ checksum = "3b7410cae13cbc75623c98ac4cbfd1f0bedddf3227afc24f370cf0f50a44a11c"
1171
+ dependencies = [
1172
+ "log",
1173
+ "mac",
1174
+ "markup5ever",
1175
+ "match_token",
1176
+ ]
1177
+
1178
+ [[package]]
1179
+ name = "http"
1180
+ version = "1.4.0"
1181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1182
+ checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
1183
+ dependencies = [
1184
+ "bytes",
1185
+ "itoa",
1186
+ ]
1187
+
1188
+ [[package]]
1189
+ name = "http-body"
1190
+ version = "1.0.1"
1191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1192
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
1193
+ dependencies = [
1194
+ "bytes",
1195
+ "http",
1196
+ ]
1197
+
1198
+ [[package]]
1199
+ name = "http-body-util"
1200
+ version = "0.1.3"
1201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1202
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
1203
+ dependencies = [
1204
+ "bytes",
1205
+ "futures-core",
1206
+ "http",
1207
+ "http-body",
1208
+ "pin-project-lite",
1209
+ ]
1210
+
1211
+ [[package]]
1212
+ name = "httparse"
1213
+ version = "1.10.1"
1214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1215
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
1216
+
1217
+ [[package]]
1218
+ name = "hyper"
1219
+ version = "1.8.1"
1220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1221
+ checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11"
1222
+ dependencies = [
1223
+ "atomic-waker",
1224
+ "bytes",
1225
+ "futures-channel",
1226
+ "futures-core",
1227
+ "http",
1228
+ "http-body",
1229
+ "httparse",
1230
+ "itoa",
1231
+ "pin-project-lite",
1232
+ "pin-utils",
1233
+ "smallvec",
1234
+ "tokio",
1235
+ "want",
1236
+ ]
1237
+
1238
+ [[package]]
1239
+ name = "hyper-util"
1240
+ version = "0.1.20"
1241
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1242
+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
1243
+ dependencies = [
1244
+ "base64 0.22.1",
1245
+ "bytes",
1246
+ "futures-channel",
1247
+ "futures-util",
1248
+ "http",
1249
+ "http-body",
1250
+ "hyper",
1251
+ "ipnet",
1252
+ "libc",
1253
+ "percent-encoding",
1254
+ "pin-project-lite",
1255
+ "socket2",
1256
+ "tokio",
1257
+ "tower-service",
1258
+ "tracing",
1259
+ ]
1260
+
1261
+ [[package]]
1262
+ name = "iana-time-zone"
1263
+ version = "0.1.65"
1264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1265
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
1266
+ dependencies = [
1267
+ "android_system_properties",
1268
+ "core-foundation-sys",
1269
+ "iana-time-zone-haiku",
1270
+ "js-sys",
1271
+ "log",
1272
+ "wasm-bindgen",
1273
+ "windows-core 0.62.2",
1274
+ ]
1275
+
1276
+ [[package]]
1277
+ name = "iana-time-zone-haiku"
1278
+ version = "0.1.2"
1279
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1280
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
1281
+ dependencies = [
1282
+ "cc",
1283
+ ]
1284
+
1285
+ [[package]]
1286
+ name = "ico"
1287
+ version = "0.5.0"
1288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1289
+ checksum = "3e795dff5605e0f04bff85ca41b51a96b83e80b281e96231bcaaf1ac35103371"
1290
+ dependencies = [
1291
+ "byteorder",
1292
+ "png",
1293
+ ]
1294
+
1295
+ [[package]]
1296
+ name = "icu_collections"
1297
+ version = "2.1.1"
1298
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1299
+ checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
1300
+ dependencies = [
1301
+ "displaydoc",
1302
+ "potential_utf",
1303
+ "yoke",
1304
+ "zerofrom",
1305
+ "zerovec",
1306
+ ]
1307
+
1308
+ [[package]]
1309
+ name = "icu_locale_core"
1310
+ version = "2.1.1"
1311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1312
+ checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
1313
+ dependencies = [
1314
+ "displaydoc",
1315
+ "litemap",
1316
+ "tinystr",
1317
+ "writeable",
1318
+ "zerovec",
1319
+ ]
1320
+
1321
+ [[package]]
1322
+ name = "icu_normalizer"
1323
+ version = "2.1.1"
1324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1325
+ checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
1326
+ dependencies = [
1327
+ "icu_collections",
1328
+ "icu_normalizer_data",
1329
+ "icu_properties",
1330
+ "icu_provider",
1331
+ "smallvec",
1332
+ "zerovec",
1333
+ ]
1334
+
1335
+ [[package]]
1336
+ name = "icu_normalizer_data"
1337
+ version = "2.1.1"
1338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1339
+ checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
1340
+
1341
+ [[package]]
1342
+ name = "icu_properties"
1343
+ version = "2.1.2"
1344
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1345
+ checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
1346
+ dependencies = [
1347
+ "icu_collections",
1348
+ "icu_locale_core",
1349
+ "icu_properties_data",
1350
+ "icu_provider",
1351
+ "zerotrie",
1352
+ "zerovec",
1353
+ ]
1354
+
1355
+ [[package]]
1356
+ name = "icu_properties_data"
1357
+ version = "2.1.2"
1358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1359
+ checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
1360
+
1361
+ [[package]]
1362
+ name = "icu_provider"
1363
+ version = "2.1.1"
1364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1365
+ checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
1366
+ dependencies = [
1367
+ "displaydoc",
1368
+ "icu_locale_core",
1369
+ "writeable",
1370
+ "yoke",
1371
+ "zerofrom",
1372
+ "zerotrie",
1373
+ "zerovec",
1374
+ ]
1375
+
1376
+ [[package]]
1377
+ name = "ident_case"
1378
+ version = "1.0.1"
1379
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1380
+ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
1381
+
1382
+ [[package]]
1383
+ name = "idna"
1384
+ version = "1.1.0"
1385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1386
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
1387
+ dependencies = [
1388
+ "idna_adapter",
1389
+ "smallvec",
1390
+ "utf8_iter",
1391
+ ]
1392
+
1393
+ [[package]]
1394
+ name = "idna_adapter"
1395
+ version = "1.2.1"
1396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1397
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
1398
+ dependencies = [
1399
+ "icu_normalizer",
1400
+ "icu_properties",
1401
+ ]
1402
+
1403
+ [[package]]
1404
+ name = "indexmap"
1405
+ version = "1.9.3"
1406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1407
+ checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
1408
+ dependencies = [
1409
+ "autocfg",
1410
+ "hashbrown 0.12.3",
1411
+ "serde",
1412
+ ]
1413
+
1414
+ [[package]]
1415
+ name = "indexmap"
1416
+ version = "2.13.0"
1417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1418
+ checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
1419
+ dependencies = [
1420
+ "equivalent",
1421
+ "hashbrown 0.16.1",
1422
+ "serde",
1423
+ "serde_core",
1424
+ ]
1425
+
1426
+ [[package]]
1427
+ name = "infer"
1428
+ version = "0.19.0"
1429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1430
+ checksum = "a588916bfdfd92e71cacef98a63d9b1f0d74d6599980d11894290e7ddefffcf7"
1431
+ dependencies = [
1432
+ "cfb",
1433
+ ]
1434
+
1435
+ [[package]]
1436
+ name = "ipnet"
1437
+ version = "2.11.0"
1438
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1439
+ checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
1440
+
1441
+ [[package]]
1442
+ name = "iri-string"
1443
+ version = "0.7.10"
1444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1445
+ checksum = "c91338f0783edbd6195decb37bae672fd3b165faffb89bf7b9e6942f8b1a731a"
1446
+ dependencies = [
1447
+ "memchr",
1448
+ "serde",
1449
+ ]
1450
+
1451
+ [[package]]
1452
+ name = "is-docker"
1453
+ version = "0.2.0"
1454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1455
+ checksum = "928bae27f42bc99b60d9ac7334e3a21d10ad8f1835a4e12ec3ec0464765ed1b3"
1456
+ dependencies = [
1457
+ "once_cell",
1458
+ ]
1459
+
1460
+ [[package]]
1461
+ name = "is-wsl"
1462
+ version = "0.4.0"
1463
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1464
+ checksum = "173609498df190136aa7dea1a91db051746d339e18476eed5ca40521f02d7aa5"
1465
+ dependencies = [
1466
+ "is-docker",
1467
+ "once_cell",
1468
+ ]
1469
+
1470
+ [[package]]
1471
+ name = "itoa"
1472
+ version = "1.0.17"
1473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1474
+ checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
1475
+
1476
+ [[package]]
1477
+ name = "javascriptcore-rs"
1478
+ version = "1.1.2"
1479
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1480
+ checksum = "ca5671e9ffce8ffba57afc24070e906da7fc4b1ba66f2cabebf61bf2ea257fcc"
1481
+ dependencies = [
1482
+ "bitflags 1.3.2",
1483
+ "glib",
1484
+ "javascriptcore-rs-sys",
1485
+ ]
1486
+
1487
+ [[package]]
1488
+ name = "javascriptcore-rs-sys"
1489
+ version = "1.1.1"
1490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1491
+ checksum = "af1be78d14ffa4b75b66df31840478fef72b51f8c2465d4ca7c194da9f7a5124"
1492
+ dependencies = [
1493
+ "glib-sys",
1494
+ "gobject-sys",
1495
+ "libc",
1496
+ "system-deps",
1497
+ ]
1498
+
1499
+ [[package]]
1500
+ name = "jni"
1501
+ version = "0.21.1"
1502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1503
+ checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97"
1504
+ dependencies = [
1505
+ "cesu8",
1506
+ "cfg-if",
1507
+ "combine",
1508
+ "jni-sys",
1509
+ "log",
1510
+ "thiserror 1.0.69",
1511
+ "walkdir",
1512
+ "windows-sys 0.45.0",
1513
+ ]
1514
+
1515
+ [[package]]
1516
+ name = "jni-sys"
1517
+ version = "0.3.0"
1518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1519
+ checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130"
1520
+
1521
+ [[package]]
1522
+ name = "js-sys"
1523
+ version = "0.3.85"
1524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1525
+ checksum = "8c942ebf8e95485ca0d52d97da7c5a2c387d0e7f0ba4c35e93bfcaee045955b3"
1526
+ dependencies = [
1527
+ "once_cell",
1528
+ "wasm-bindgen",
1529
+ ]
1530
+
1531
+ [[package]]
1532
+ name = "json-patch"
1533
+ version = "3.0.1"
1534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1535
+ checksum = "863726d7afb6bc2590eeff7135d923545e5e964f004c2ccf8716c25e70a86f08"
1536
+ dependencies = [
1537
+ "jsonptr",
1538
+ "serde",
1539
+ "serde_json",
1540
+ "thiserror 1.0.69",
1541
+ ]
1542
+
1543
+ [[package]]
1544
+ name = "jsonptr"
1545
+ version = "0.6.3"
1546
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1547
+ checksum = "5dea2b27dd239b2556ed7a25ba842fe47fd602e7fc7433c2a8d6106d4d9edd70"
1548
+ dependencies = [
1549
+ "serde",
1550
+ "serde_json",
1551
+ ]
1552
+
1553
+ [[package]]
1554
+ name = "keyboard-types"
1555
+ version = "0.7.0"
1556
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1557
+ checksum = "b750dcadc39a09dbadd74e118f6dd6598df77fa01df0cfcdc52c28dece74528a"
1558
+ dependencies = [
1559
+ "bitflags 2.10.0",
1560
+ "serde",
1561
+ "unicode-segmentation",
1562
+ ]
1563
+
1564
+ [[package]]
1565
+ name = "kuchikiki"
1566
+ version = "0.8.8-speedreader"
1567
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1568
+ checksum = "02cb977175687f33fa4afa0c95c112b987ea1443e5a51c8f8ff27dc618270cc2"
1569
+ dependencies = [
1570
+ "cssparser",
1571
+ "html5ever",
1572
+ "indexmap 2.13.0",
1573
+ "selectors",
1574
+ ]
1575
+
1576
+ [[package]]
1577
+ name = "lazy_static"
1578
+ version = "1.5.0"
1579
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1580
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1581
+
1582
+ [[package]]
1583
+ name = "libappindicator"
1584
+ version = "0.9.0"
1585
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1586
+ checksum = "03589b9607c868cc7ae54c0b2a22c8dc03dd41692d48f2d7df73615c6a95dc0a"
1587
+ dependencies = [
1588
+ "glib",
1589
+ "gtk",
1590
+ "gtk-sys",
1591
+ "libappindicator-sys",
1592
+ "log",
1593
+ ]
1594
+
1595
+ [[package]]
1596
+ name = "libappindicator-sys"
1597
+ version = "0.9.0"
1598
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1599
+ checksum = "6e9ec52138abedcc58dc17a7c6c0c00a2bdb4f3427c7f63fa97fd0d859155caf"
1600
+ dependencies = [
1601
+ "gtk-sys",
1602
+ "libloading",
1603
+ "once_cell",
1604
+ ]
1605
+
1606
+ [[package]]
1607
+ name = "libc"
1608
+ version = "0.2.180"
1609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1610
+ checksum = "bcc35a38544a891a5f7c865aca548a982ccb3b8650a5b06d0fd33a10283c56fc"
1611
+
1612
+ [[package]]
1613
+ name = "libloading"
1614
+ version = "0.7.4"
1615
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1616
+ checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f"
1617
+ dependencies = [
1618
+ "cfg-if",
1619
+ "winapi",
1620
+ ]
1621
+
1622
+ [[package]]
1623
+ name = "libredox"
1624
+ version = "0.1.12"
1625
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1626
+ checksum = "3d0b95e02c851351f877147b7deea7b1afb1df71b63aa5f8270716e0c5720616"
1627
+ dependencies = [
1628
+ "bitflags 2.10.0",
1629
+ "libc",
1630
+ ]
1631
+
1632
+ [[package]]
1633
+ name = "litemap"
1634
+ version = "0.8.1"
1635
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1636
+ checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
1637
+
1638
+ [[package]]
1639
+ name = "lock_api"
1640
+ version = "0.4.14"
1641
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1642
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
1643
+ dependencies = [
1644
+ "scopeguard",
1645
+ ]
1646
+
1647
+ [[package]]
1648
+ name = "log"
1649
+ version = "0.4.29"
1650
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1651
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
1652
+
1653
+ [[package]]
1654
+ name = "mac"
1655
+ version = "0.1.1"
1656
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1657
+ checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4"
1658
+
1659
+ [[package]]
1660
+ name = "markup5ever"
1661
+ version = "0.14.1"
1662
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1663
+ checksum = "c7a7213d12e1864c0f002f52c2923d4556935a43dec5e71355c2760e0f6e7a18"
1664
+ dependencies = [
1665
+ "log",
1666
+ "phf 0.11.3",
1667
+ "phf_codegen 0.11.3",
1668
+ "string_cache",
1669
+ "string_cache_codegen",
1670
+ "tendril",
1671
+ ]
1672
+
1673
+ [[package]]
1674
+ name = "match_token"
1675
+ version = "0.1.0"
1676
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1677
+ checksum = "88a9689d8d44bf9964484516275f5cd4c9b59457a6940c1d5d0ecbb94510a36b"
1678
+ dependencies = [
1679
+ "proc-macro2",
1680
+ "quote",
1681
+ "syn 2.0.114",
1682
+ ]
1683
+
1684
+ [[package]]
1685
+ name = "matches"
1686
+ version = "0.1.10"
1687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1688
+ checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5"
1689
+
1690
+ [[package]]
1691
+ name = "memchr"
1692
+ version = "2.7.6"
1693
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1694
+ checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
1695
+
1696
+ [[package]]
1697
+ name = "memoffset"
1698
+ version = "0.9.1"
1699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1700
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
1701
+ dependencies = [
1702
+ "autocfg",
1703
+ ]
1704
+
1705
+ [[package]]
1706
+ name = "mime"
1707
+ version = "0.3.17"
1708
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1709
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
1710
+
1711
+ [[package]]
1712
+ name = "miniz_oxide"
1713
+ version = "0.8.9"
1714
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1715
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
1716
+ dependencies = [
1717
+ "adler2",
1718
+ "simd-adler32",
1719
+ ]
1720
+
1721
+ [[package]]
1722
+ name = "mio"
1723
+ version = "1.1.1"
1724
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1725
+ checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
1726
+ dependencies = [
1727
+ "libc",
1728
+ "wasi 0.11.1+wasi-snapshot-preview1",
1729
+ "windows-sys 0.61.2",
1730
+ ]
1731
+
1732
+ [[package]]
1733
+ name = "muda"
1734
+ version = "0.17.1"
1735
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1736
+ checksum = "01c1738382f66ed56b3b9c8119e794a2e23148ac8ea214eda86622d4cb9d415a"
1737
+ dependencies = [
1738
+ "crossbeam-channel",
1739
+ "dpi",
1740
+ "gtk",
1741
+ "keyboard-types",
1742
+ "objc2",
1743
+ "objc2-app-kit",
1744
+ "objc2-core-foundation",
1745
+ "objc2-foundation",
1746
+ "once_cell",
1747
+ "png",
1748
+ "serde",
1749
+ "thiserror 2.0.18",
1750
+ "windows-sys 0.60.2",
1751
+ ]
1752
+
1753
+ [[package]]
1754
+ name = "ndk"
1755
+ version = "0.9.0"
1756
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1757
+ checksum = "c3f42e7bbe13d351b6bead8286a43aac9534b82bd3cc43e47037f012ebfd62d4"
1758
+ dependencies = [
1759
+ "bitflags 2.10.0",
1760
+ "jni-sys",
1761
+ "log",
1762
+ "ndk-sys",
1763
+ "num_enum",
1764
+ "raw-window-handle",
1765
+ "thiserror 1.0.69",
1766
+ ]
1767
+
1768
+ [[package]]
1769
+ name = "ndk-context"
1770
+ version = "0.1.1"
1771
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1772
+ checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b"
1773
+
1774
+ [[package]]
1775
+ name = "ndk-sys"
1776
+ version = "0.6.0+11769913"
1777
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1778
+ checksum = "ee6cda3051665f1fb8d9e08fc35c96d5a244fb1be711a03b71118828afc9a873"
1779
+ dependencies = [
1780
+ "jni-sys",
1781
+ ]
1782
+
1783
+ [[package]]
1784
+ name = "new_debug_unreachable"
1785
+ version = "1.0.6"
1786
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1787
+ checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
1788
+
1789
+ [[package]]
1790
+ name = "nodrop"
1791
+ version = "0.1.14"
1792
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1793
+ checksum = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb"
1794
+
1795
+ [[package]]
1796
+ name = "num-conv"
1797
+ version = "0.2.0"
1798
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1799
+ checksum = "cf97ec579c3c42f953ef76dbf8d55ac91fb219dde70e49aa4a6b7d74e9919050"
1800
+
1801
+ [[package]]
1802
+ name = "num-traits"
1803
+ version = "0.2.19"
1804
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1805
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1806
+ dependencies = [
1807
+ "autocfg",
1808
+ ]
1809
+
1810
+ [[package]]
1811
+ name = "num_enum"
1812
+ version = "0.7.5"
1813
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1814
+ checksum = "b1207a7e20ad57b847bbddc6776b968420d38292bbfe2089accff5e19e82454c"
1815
+ dependencies = [
1816
+ "num_enum_derive",
1817
+ "rustversion",
1818
+ ]
1819
+
1820
+ [[package]]
1821
+ name = "num_enum_derive"
1822
+ version = "0.7.5"
1823
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1824
+ checksum = "ff32365de1b6743cb203b710788263c44a03de03802daf96092f2da4fe6ba4d7"
1825
+ dependencies = [
1826
+ "proc-macro-crate 3.4.0",
1827
+ "proc-macro2",
1828
+ "quote",
1829
+ "syn 2.0.114",
1830
+ ]
1831
+
1832
+ [[package]]
1833
+ name = "objc2"
1834
+ version = "0.6.3"
1835
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1836
+ checksum = "b7c2599ce0ec54857b29ce62166b0ed9b4f6f1a70ccc9a71165b6154caca8c05"
1837
+ dependencies = [
1838
+ "objc2-encode",
1839
+ "objc2-exception-helper",
1840
+ ]
1841
+
1842
+ [[package]]
1843
+ name = "objc2-app-kit"
1844
+ version = "0.3.2"
1845
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1846
+ checksum = "d49e936b501e5c5bf01fda3a9452ff86dc3ea98ad5f283e1455153142d97518c"
1847
+ dependencies = [
1848
+ "bitflags 2.10.0",
1849
+ "block2",
1850
+ "libc",
1851
+ "objc2",
1852
+ "objc2-cloud-kit",
1853
+ "objc2-core-data",
1854
+ "objc2-core-foundation",
1855
+ "objc2-core-graphics",
1856
+ "objc2-core-image",
1857
+ "objc2-core-text",
1858
+ "objc2-core-video",
1859
+ "objc2-foundation",
1860
+ "objc2-quartz-core",
1861
+ ]
1862
+
1863
+ [[package]]
1864
+ name = "objc2-cloud-kit"
1865
+ version = "0.3.2"
1866
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1867
+ checksum = "73ad74d880bb43877038da939b7427bba67e9dd42004a18b809ba7d87cee241c"
1868
+ dependencies = [
1869
+ "bitflags 2.10.0",
1870
+ "objc2",
1871
+ "objc2-foundation",
1872
+ ]
1873
+
1874
+ [[package]]
1875
+ name = "objc2-core-data"
1876
+ version = "0.3.2"
1877
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1878
+ checksum = "0b402a653efbb5e82ce4df10683b6b28027616a2715e90009947d50b8dd298fa"
1879
+ dependencies = [
1880
+ "bitflags 2.10.0",
1881
+ "objc2",
1882
+ "objc2-foundation",
1883
+ ]
1884
+
1885
+ [[package]]
1886
+ name = "objc2-core-foundation"
1887
+ version = "0.3.2"
1888
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1889
+ checksum = "2a180dd8642fa45cdb7dd721cd4c11b1cadd4929ce112ebd8b9f5803cc79d536"
1890
+ dependencies = [
1891
+ "bitflags 2.10.0",
1892
+ "dispatch2",
1893
+ "objc2",
1894
+ ]
1895
+
1896
+ [[package]]
1897
+ name = "objc2-core-graphics"
1898
+ version = "0.3.2"
1899
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1900
+ checksum = "e022c9d066895efa1345f8e33e584b9f958da2fd4cd116792e15e07e4720a807"
1901
+ dependencies = [
1902
+ "bitflags 2.10.0",
1903
+ "dispatch2",
1904
+ "objc2",
1905
+ "objc2-core-foundation",
1906
+ "objc2-io-surface",
1907
+ ]
1908
+
1909
+ [[package]]
1910
+ name = "objc2-core-image"
1911
+ version = "0.3.2"
1912
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1913
+ checksum = "e5d563b38d2b97209f8e861173de434bd0214cf020e3423a52624cd1d989f006"
1914
+ dependencies = [
1915
+ "objc2",
1916
+ "objc2-foundation",
1917
+ ]
1918
+
1919
+ [[package]]
1920
+ name = "objc2-core-text"
1921
+ version = "0.3.2"
1922
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1923
+ checksum = "0cde0dfb48d25d2b4862161a4d5fcc0e3c24367869ad306b0c9ec0073bfed92d"
1924
+ dependencies = [
1925
+ "bitflags 2.10.0",
1926
+ "objc2",
1927
+ "objc2-core-foundation",
1928
+ "objc2-core-graphics",
1929
+ ]
1930
+
1931
+ [[package]]
1932
+ name = "objc2-core-video"
1933
+ version = "0.3.2"
1934
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1935
+ checksum = "d425caf1df73233f29fd8a5c3e5edbc30d2d4307870f802d18f00d83dc5141a6"
1936
+ dependencies = [
1937
+ "bitflags 2.10.0",
1938
+ "objc2",
1939
+ "objc2-core-foundation",
1940
+ "objc2-core-graphics",
1941
+ "objc2-io-surface",
1942
+ ]
1943
+
1944
+ [[package]]
1945
+ name = "objc2-encode"
1946
+ version = "4.1.0"
1947
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1948
+ checksum = "ef25abbcd74fb2609453eb695bd2f860d389e457f67dc17cafc8b8cbc89d0c33"
1949
+
1950
+ [[package]]
1951
+ name = "objc2-exception-helper"
1952
+ version = "0.1.1"
1953
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1954
+ checksum = "c7a1c5fbb72d7735b076bb47b578523aedc40f3c439bea6dfd595c089d79d98a"
1955
+ dependencies = [
1956
+ "cc",
1957
+ ]
1958
+
1959
+ [[package]]
1960
+ name = "objc2-foundation"
1961
+ version = "0.3.2"
1962
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1963
+ checksum = "e3e0adef53c21f888deb4fa59fc59f7eb17404926ee8a6f59f5df0fd7f9f3272"
1964
+ dependencies = [
1965
+ "bitflags 2.10.0",
1966
+ "block2",
1967
+ "libc",
1968
+ "objc2",
1969
+ "objc2-core-foundation",
1970
+ ]
1971
+
1972
+ [[package]]
1973
+ name = "objc2-io-surface"
1974
+ version = "0.3.2"
1975
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1976
+ checksum = "180788110936d59bab6bd83b6060ffdfffb3b922ba1396b312ae795e1de9d81d"
1977
+ dependencies = [
1978
+ "bitflags 2.10.0",
1979
+ "objc2",
1980
+ "objc2-core-foundation",
1981
+ ]
1982
+
1983
+ [[package]]
1984
+ name = "objc2-javascript-core"
1985
+ version = "0.3.2"
1986
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1987
+ checksum = "2a1e6550c4caed348956ce3370c9ffeca70bb1dbed4fa96112e7c6170e074586"
1988
+ dependencies = [
1989
+ "objc2",
1990
+ "objc2-core-foundation",
1991
+ ]
1992
+
1993
+ [[package]]
1994
+ name = "objc2-quartz-core"
1995
+ version = "0.3.2"
1996
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1997
+ checksum = "96c1358452b371bf9f104e21ec536d37a650eb10f7ee379fff67d2e08d537f1f"
1998
+ dependencies = [
1999
+ "bitflags 2.10.0",
2000
+ "objc2",
2001
+ "objc2-core-foundation",
2002
+ "objc2-foundation",
2003
+ ]
2004
+
2005
+ [[package]]
2006
+ name = "objc2-security"
2007
+ version = "0.3.2"
2008
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2009
+ checksum = "709fe137109bd1e8b5a99390f77a7d8b2961dafc1a1c5db8f2e60329ad6d895a"
2010
+ dependencies = [
2011
+ "bitflags 2.10.0",
2012
+ "objc2",
2013
+ "objc2-core-foundation",
2014
+ ]
2015
+
2016
+ [[package]]
2017
+ name = "objc2-ui-kit"
2018
+ version = "0.3.2"
2019
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2020
+ checksum = "d87d638e33c06f577498cbcc50491496a3ed4246998a7fbba7ccb98b1e7eab22"
2021
+ dependencies = [
2022
+ "bitflags 2.10.0",
2023
+ "objc2",
2024
+ "objc2-core-foundation",
2025
+ "objc2-foundation",
2026
+ ]
2027
+
2028
+ [[package]]
2029
+ name = "objc2-web-kit"
2030
+ version = "0.3.2"
2031
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2032
+ checksum = "b2e5aaab980c433cf470df9d7af96a7b46a9d892d521a2cbbb2f8a4c16751e7f"
2033
+ dependencies = [
2034
+ "bitflags 2.10.0",
2035
+ "block2",
2036
+ "objc2",
2037
+ "objc2-app-kit",
2038
+ "objc2-core-foundation",
2039
+ "objc2-foundation",
2040
+ "objc2-javascript-core",
2041
+ "objc2-security",
2042
+ ]
2043
+
2044
+ [[package]]
2045
+ name = "once_cell"
2046
+ version = "1.21.3"
2047
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2048
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
2049
+
2050
+ [[package]]
2051
+ name = "open"
2052
+ version = "5.3.3"
2053
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2054
+ checksum = "43bb73a7fa3799b198970490a51174027ba0d4ec504b03cd08caf513d40024bc"
2055
+ dependencies = [
2056
+ "dunce",
2057
+ "is-wsl",
2058
+ "libc",
2059
+ "pathdiff",
2060
+ ]
2061
+
2062
+ [[package]]
2063
+ name = "option-ext"
2064
+ version = "0.2.0"
2065
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2066
+ checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
2067
+
2068
+ [[package]]
2069
+ name = "os_pipe"
2070
+ version = "1.2.3"
2071
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2072
+ checksum = "7d8fae84b431384b68627d0f9b3b1245fcf9f46f6c0e3dc902e9dce64edd1967"
2073
+ dependencies = [
2074
+ "libc",
2075
+ "windows-sys 0.61.2",
2076
+ ]
2077
+
2078
+ [[package]]
2079
+ name = "pango"
2080
+ version = "0.18.3"
2081
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2082
+ checksum = "7ca27ec1eb0457ab26f3036ea52229edbdb74dee1edd29063f5b9b010e7ebee4"
2083
+ dependencies = [
2084
+ "gio",
2085
+ "glib",
2086
+ "libc",
2087
+ "once_cell",
2088
+ "pango-sys",
2089
+ ]
2090
+
2091
+ [[package]]
2092
+ name = "pango-sys"
2093
+ version = "0.18.0"
2094
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2095
+ checksum = "436737e391a843e5933d6d9aa102cb126d501e815b83601365a948a518555dc5"
2096
+ dependencies = [
2097
+ "glib-sys",
2098
+ "gobject-sys",
2099
+ "libc",
2100
+ "system-deps",
2101
+ ]
2102
+
2103
+ [[package]]
2104
+ name = "parking_lot"
2105
+ version = "0.12.5"
2106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2107
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
2108
+ dependencies = [
2109
+ "lock_api",
2110
+ "parking_lot_core",
2111
+ ]
2112
+
2113
+ [[package]]
2114
+ name = "parking_lot_core"
2115
+ version = "0.9.12"
2116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2117
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
2118
+ dependencies = [
2119
+ "cfg-if",
2120
+ "libc",
2121
+ "redox_syscall",
2122
+ "smallvec",
2123
+ "windows-link 0.2.1",
2124
+ ]
2125
+
2126
+ [[package]]
2127
+ name = "pathdiff"
2128
+ version = "0.2.3"
2129
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2130
+ checksum = "df94ce210e5bc13cb6651479fa48d14f601d9858cfe0467f43ae157023b938d3"
2131
+
2132
+ [[package]]
2133
+ name = "percent-encoding"
2134
+ version = "2.3.2"
2135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2136
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
2137
+
2138
+ [[package]]
2139
+ name = "phf"
2140
+ version = "0.8.0"
2141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2142
+ checksum = "3dfb61232e34fcb633f43d12c58f83c1df82962dcdfa565a4e866ffc17dafe12"
2143
+ dependencies = [
2144
+ "phf_shared 0.8.0",
2145
+ ]
2146
+
2147
+ [[package]]
2148
+ name = "phf"
2149
+ version = "0.10.1"
2150
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2151
+ checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259"
2152
+ dependencies = [
2153
+ "phf_macros 0.10.0",
2154
+ "phf_shared 0.10.0",
2155
+ "proc-macro-hack",
2156
+ ]
2157
+
2158
+ [[package]]
2159
+ name = "phf"
2160
+ version = "0.11.3"
2161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2162
+ checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
2163
+ dependencies = [
2164
+ "phf_macros 0.11.3",
2165
+ "phf_shared 0.11.3",
2166
+ ]
2167
+
2168
+ [[package]]
2169
+ name = "phf_codegen"
2170
+ version = "0.8.0"
2171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2172
+ checksum = "cbffee61585b0411840d3ece935cce9cb6321f01c45477d30066498cd5e1a815"
2173
+ dependencies = [
2174
+ "phf_generator 0.8.0",
2175
+ "phf_shared 0.8.0",
2176
+ ]
2177
+
2178
+ [[package]]
2179
+ name = "phf_codegen"
2180
+ version = "0.11.3"
2181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2182
+ checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a"
2183
+ dependencies = [
2184
+ "phf_generator 0.11.3",
2185
+ "phf_shared 0.11.3",
2186
+ ]
2187
+
2188
+ [[package]]
2189
+ name = "phf_generator"
2190
+ version = "0.8.0"
2191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2192
+ checksum = "17367f0cc86f2d25802b2c26ee58a7b23faeccf78a396094c13dced0d0182526"
2193
+ dependencies = [
2194
+ "phf_shared 0.8.0",
2195
+ "rand 0.7.3",
2196
+ ]
2197
+
2198
+ [[package]]
2199
+ name = "phf_generator"
2200
+ version = "0.10.0"
2201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2202
+ checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6"
2203
+ dependencies = [
2204
+ "phf_shared 0.10.0",
2205
+ "rand 0.8.5",
2206
+ ]
2207
+
2208
+ [[package]]
2209
+ name = "phf_generator"
2210
+ version = "0.11.3"
2211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2212
+ checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
2213
+ dependencies = [
2214
+ "phf_shared 0.11.3",
2215
+ "rand 0.8.5",
2216
+ ]
2217
+
2218
+ [[package]]
2219
+ name = "phf_macros"
2220
+ version = "0.10.0"
2221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2222
+ checksum = "58fdf3184dd560f160dd73922bea2d5cd6e8f064bf4b13110abd81b03697b4e0"
2223
+ dependencies = [
2224
+ "phf_generator 0.10.0",
2225
+ "phf_shared 0.10.0",
2226
+ "proc-macro-hack",
2227
+ "proc-macro2",
2228
+ "quote",
2229
+ "syn 1.0.109",
2230
+ ]
2231
+
2232
+ [[package]]
2233
+ name = "phf_macros"
2234
+ version = "0.11.3"
2235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2236
+ checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216"
2237
+ dependencies = [
2238
+ "phf_generator 0.11.3",
2239
+ "phf_shared 0.11.3",
2240
+ "proc-macro2",
2241
+ "quote",
2242
+ "syn 2.0.114",
2243
+ ]
2244
+
2245
+ [[package]]
2246
+ name = "phf_shared"
2247
+ version = "0.8.0"
2248
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2249
+ checksum = "c00cf8b9eafe68dde5e9eaa2cef8ee84a9336a47d566ec55ca16589633b65af7"
2250
+ dependencies = [
2251
+ "siphasher 0.3.11",
2252
+ ]
2253
+
2254
+ [[package]]
2255
+ name = "phf_shared"
2256
+ version = "0.10.0"
2257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2258
+ checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096"
2259
+ dependencies = [
2260
+ "siphasher 0.3.11",
2261
+ ]
2262
+
2263
+ [[package]]
2264
+ name = "phf_shared"
2265
+ version = "0.11.3"
2266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2267
+ checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
2268
+ dependencies = [
2269
+ "siphasher 1.0.2",
2270
+ ]
2271
+
2272
+ [[package]]
2273
+ name = "pin-project-lite"
2274
+ version = "0.2.16"
2275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2276
+ checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
2277
+
2278
+ [[package]]
2279
+ name = "pin-utils"
2280
+ version = "0.1.0"
2281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2282
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
2283
+
2284
+ [[package]]
2285
+ name = "pkg-config"
2286
+ version = "0.3.32"
2287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2288
+ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
2289
+
2290
+ [[package]]
2291
+ name = "plist"
2292
+ version = "1.8.0"
2293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2294
+ checksum = "740ebea15c5d1428f910cd1a5f52cebf8d25006245ed8ade92702f4943d91e07"
2295
+ dependencies = [
2296
+ "base64 0.22.1",
2297
+ "indexmap 2.13.0",
2298
+ "quick-xml",
2299
+ "serde",
2300
+ "time",
2301
+ ]
2302
+
2303
+ [[package]]
2304
+ name = "png"
2305
+ version = "0.17.16"
2306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2307
+ checksum = "82151a2fc869e011c153adc57cf2789ccb8d9906ce52c0b39a6b5697749d7526"
2308
+ dependencies = [
2309
+ "bitflags 1.3.2",
2310
+ "crc32fast",
2311
+ "fdeflate",
2312
+ "flate2",
2313
+ "miniz_oxide",
2314
+ ]
2315
+
2316
+ [[package]]
2317
+ name = "portpicker"
2318
+ version = "0.1.1"
2319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2320
+ checksum = "be97d76faf1bfab666e1375477b23fde79eccf0276e9b63b92a39d676a889ba9"
2321
+ dependencies = [
2322
+ "rand 0.8.5",
2323
+ ]
2324
+
2325
+ [[package]]
2326
+ name = "potential_utf"
2327
+ version = "0.1.4"
2328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2329
+ checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
2330
+ dependencies = [
2331
+ "zerovec",
2332
+ ]
2333
+
2334
+ [[package]]
2335
+ name = "powerfmt"
2336
+ version = "0.2.0"
2337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2338
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
2339
+
2340
+ [[package]]
2341
+ name = "ppv-lite86"
2342
+ version = "0.2.21"
2343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2344
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
2345
+ dependencies = [
2346
+ "zerocopy",
2347
+ ]
2348
+
2349
+ [[package]]
2350
+ name = "precomputed-hash"
2351
+ version = "0.1.1"
2352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2353
+ checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
2354
+
2355
+ [[package]]
2356
+ name = "proc-macro-crate"
2357
+ version = "1.3.1"
2358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2359
+ checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919"
2360
+ dependencies = [
2361
+ "once_cell",
2362
+ "toml_edit 0.19.15",
2363
+ ]
2364
+
2365
+ [[package]]
2366
+ name = "proc-macro-crate"
2367
+ version = "2.0.2"
2368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2369
+ checksum = "b00f26d3400549137f92511a46ac1cd8ce37cb5598a96d382381458b992a5d24"
2370
+ dependencies = [
2371
+ "toml_datetime 0.6.3",
2372
+ "toml_edit 0.20.2",
2373
+ ]
2374
+
2375
+ [[package]]
2376
+ name = "proc-macro-crate"
2377
+ version = "3.4.0"
2378
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2379
+ checksum = "219cb19e96be00ab2e37d6e299658a0cfa83e52429179969b0f0121b4ac46983"
2380
+ dependencies = [
2381
+ "toml_edit 0.23.10+spec-1.0.0",
2382
+ ]
2383
+
2384
+ [[package]]
2385
+ name = "proc-macro-error"
2386
+ version = "1.0.4"
2387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2388
+ checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
2389
+ dependencies = [
2390
+ "proc-macro-error-attr",
2391
+ "proc-macro2",
2392
+ "quote",
2393
+ "syn 1.0.109",
2394
+ "version_check",
2395
+ ]
2396
+
2397
+ [[package]]
2398
+ name = "proc-macro-error-attr"
2399
+ version = "1.0.4"
2400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2401
+ checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
2402
+ dependencies = [
2403
+ "proc-macro2",
2404
+ "quote",
2405
+ "version_check",
2406
+ ]
2407
+
2408
+ [[package]]
2409
+ name = "proc-macro-hack"
2410
+ version = "0.5.20+deprecated"
2411
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2412
+ checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068"
2413
+
2414
+ [[package]]
2415
+ name = "proc-macro2"
2416
+ version = "1.0.106"
2417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2418
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
2419
+ dependencies = [
2420
+ "unicode-ident",
2421
+ ]
2422
+
2423
+ [[package]]
2424
+ name = "quick-xml"
2425
+ version = "0.38.4"
2426
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2427
+ checksum = "b66c2058c55a409d601666cffe35f04333cf1013010882cec174a7467cd4e21c"
2428
+ dependencies = [
2429
+ "memchr",
2430
+ ]
2431
+
2432
+ [[package]]
2433
+ name = "quote"
2434
+ version = "1.0.44"
2435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2436
+ checksum = "21b2ebcf727b7760c461f091f9f0f539b77b8e87f2fd88131e7f1b433b3cece4"
2437
+ dependencies = [
2438
+ "proc-macro2",
2439
+ ]
2440
+
2441
+ [[package]]
2442
+ name = "r-efi"
2443
+ version = "5.3.0"
2444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2445
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
2446
+
2447
+ [[package]]
2448
+ name = "rand"
2449
+ version = "0.7.3"
2450
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2451
+ checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
2452
+ dependencies = [
2453
+ "getrandom 0.1.16",
2454
+ "libc",
2455
+ "rand_chacha 0.2.2",
2456
+ "rand_core 0.5.1",
2457
+ "rand_hc",
2458
+ "rand_pcg",
2459
+ ]
2460
+
2461
+ [[package]]
2462
+ name = "rand"
2463
+ version = "0.8.5"
2464
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2465
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
2466
+ dependencies = [
2467
+ "libc",
2468
+ "rand_chacha 0.3.1",
2469
+ "rand_core 0.6.4",
2470
+ ]
2471
+
2472
+ [[package]]
2473
+ name = "rand_chacha"
2474
+ version = "0.2.2"
2475
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2476
+ checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
2477
+ dependencies = [
2478
+ "ppv-lite86",
2479
+ "rand_core 0.5.1",
2480
+ ]
2481
+
2482
+ [[package]]
2483
+ name = "rand_chacha"
2484
+ version = "0.3.1"
2485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2486
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
2487
+ dependencies = [
2488
+ "ppv-lite86",
2489
+ "rand_core 0.6.4",
2490
+ ]
2491
+
2492
+ [[package]]
2493
+ name = "rand_core"
2494
+ version = "0.5.1"
2495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2496
+ checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
2497
+ dependencies = [
2498
+ "getrandom 0.1.16",
2499
+ ]
2500
+
2501
+ [[package]]
2502
+ name = "rand_core"
2503
+ version = "0.6.4"
2504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2505
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2506
+ dependencies = [
2507
+ "getrandom 0.2.17",
2508
+ ]
2509
+
2510
+ [[package]]
2511
+ name = "rand_hc"
2512
+ version = "0.2.0"
2513
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2514
+ checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
2515
+ dependencies = [
2516
+ "rand_core 0.5.1",
2517
+ ]
2518
+
2519
+ [[package]]
2520
+ name = "rand_pcg"
2521
+ version = "0.2.1"
2522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2523
+ checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429"
2524
+ dependencies = [
2525
+ "rand_core 0.5.1",
2526
+ ]
2527
+
2528
+ [[package]]
2529
+ name = "raw-window-handle"
2530
+ version = "0.6.2"
2531
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2532
+ checksum = "20675572f6f24e9e76ef639bc5552774ed45f1c30e2951e1e99c59888861c539"
2533
+
2534
+ [[package]]
2535
+ name = "redox_syscall"
2536
+ version = "0.5.18"
2537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2538
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
2539
+ dependencies = [
2540
+ "bitflags 2.10.0",
2541
+ ]
2542
+
2543
+ [[package]]
2544
+ name = "redox_users"
2545
+ version = "0.5.2"
2546
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2547
+ checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac"
2548
+ dependencies = [
2549
+ "getrandom 0.2.17",
2550
+ "libredox",
2551
+ "thiserror 2.0.18",
2552
+ ]
2553
+
2554
+ [[package]]
2555
+ name = "ref-cast"
2556
+ version = "1.0.25"
2557
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2558
+ checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d"
2559
+ dependencies = [
2560
+ "ref-cast-impl",
2561
+ ]
2562
+
2563
+ [[package]]
2564
+ name = "ref-cast-impl"
2565
+ version = "1.0.25"
2566
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2567
+ checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da"
2568
+ dependencies = [
2569
+ "proc-macro2",
2570
+ "quote",
2571
+ "syn 2.0.114",
2572
+ ]
2573
+
2574
+ [[package]]
2575
+ name = "regex"
2576
+ version = "1.12.2"
2577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2578
+ checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
2579
+ dependencies = [
2580
+ "aho-corasick",
2581
+ "memchr",
2582
+ "regex-automata",
2583
+ "regex-syntax",
2584
+ ]
2585
+
2586
+ [[package]]
2587
+ name = "regex-automata"
2588
+ version = "0.4.13"
2589
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2590
+ checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
2591
+ dependencies = [
2592
+ "aho-corasick",
2593
+ "memchr",
2594
+ "regex-syntax",
2595
+ ]
2596
+
2597
+ [[package]]
2598
+ name = "regex-syntax"
2599
+ version = "0.8.8"
2600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2601
+ checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
2602
+
2603
+ [[package]]
2604
+ name = "reqwest"
2605
+ version = "0.13.1"
2606
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2607
+ checksum = "04e9018c9d814e5f30cc16a0f03271aeab3571e609612d9fe78c1aa8d11c2f62"
2608
+ dependencies = [
2609
+ "base64 0.22.1",
2610
+ "bytes",
2611
+ "futures-core",
2612
+ "futures-util",
2613
+ "http",
2614
+ "http-body",
2615
+ "http-body-util",
2616
+ "hyper",
2617
+ "hyper-util",
2618
+ "js-sys",
2619
+ "log",
2620
+ "percent-encoding",
2621
+ "pin-project-lite",
2622
+ "serde",
2623
+ "serde_json",
2624
+ "sync_wrapper",
2625
+ "tokio",
2626
+ "tokio-util",
2627
+ "tower",
2628
+ "tower-http",
2629
+ "tower-service",
2630
+ "url",
2631
+ "wasm-bindgen",
2632
+ "wasm-bindgen-futures",
2633
+ "wasm-streams",
2634
+ "web-sys",
2635
+ ]
2636
+
2637
+ [[package]]
2638
+ name = "rustc_version"
2639
+ version = "0.4.1"
2640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2641
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
2642
+ dependencies = [
2643
+ "semver",
2644
+ ]
2645
+
2646
+ [[package]]
2647
+ name = "rustversion"
2648
+ version = "1.0.22"
2649
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2650
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
2651
+
2652
+ [[package]]
2653
+ name = "same-file"
2654
+ version = "1.0.6"
2655
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2656
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
2657
+ dependencies = [
2658
+ "winapi-util",
2659
+ ]
2660
+
2661
+ [[package]]
2662
+ name = "schemars"
2663
+ version = "0.8.22"
2664
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2665
+ checksum = "3fbf2ae1b8bc8e02df939598064d22402220cd5bbcca1c76f7d6a310974d5615"
2666
+ dependencies = [
2667
+ "dyn-clone",
2668
+ "indexmap 1.9.3",
2669
+ "schemars_derive",
2670
+ "serde",
2671
+ "serde_json",
2672
+ "url",
2673
+ "uuid",
2674
+ ]
2675
+
2676
+ [[package]]
2677
+ name = "schemars"
2678
+ version = "0.9.0"
2679
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2680
+ checksum = "4cd191f9397d57d581cddd31014772520aa448f65ef991055d7f61582c65165f"
2681
+ dependencies = [
2682
+ "dyn-clone",
2683
+ "ref-cast",
2684
+ "serde",
2685
+ "serde_json",
2686
+ ]
2687
+
2688
+ [[package]]
2689
+ name = "schemars"
2690
+ version = "1.2.1"
2691
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2692
+ checksum = "a2b42f36aa1cd011945615b92222f6bf73c599a102a300334cd7f8dbeec726cc"
2693
+ dependencies = [
2694
+ "dyn-clone",
2695
+ "ref-cast",
2696
+ "serde",
2697
+ "serde_json",
2698
+ ]
2699
+
2700
+ [[package]]
2701
+ name = "schemars_derive"
2702
+ version = "0.8.22"
2703
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2704
+ checksum = "32e265784ad618884abaea0600a9adf15393368d840e0222d101a072f3f7534d"
2705
+ dependencies = [
2706
+ "proc-macro2",
2707
+ "quote",
2708
+ "serde_derive_internals",
2709
+ "syn 2.0.114",
2710
+ ]
2711
+
2712
+ [[package]]
2713
+ name = "scopeguard"
2714
+ version = "1.2.0"
2715
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2716
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2717
+
2718
+ [[package]]
2719
+ name = "selectors"
2720
+ version = "0.24.0"
2721
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2722
+ checksum = "0c37578180969d00692904465fb7f6b3d50b9a2b952b87c23d0e2e5cb5013416"
2723
+ dependencies = [
2724
+ "bitflags 1.3.2",
2725
+ "cssparser",
2726
+ "derive_more",
2727
+ "fxhash",
2728
+ "log",
2729
+ "phf 0.8.0",
2730
+ "phf_codegen 0.8.0",
2731
+ "precomputed-hash",
2732
+ "servo_arc",
2733
+ "smallvec",
2734
+ ]
2735
+
2736
+ [[package]]
2737
+ name = "semver"
2738
+ version = "1.0.27"
2739
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2740
+ checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
2741
+ dependencies = [
2742
+ "serde",
2743
+ "serde_core",
2744
+ ]
2745
+
2746
+ [[package]]
2747
+ name = "serde"
2748
+ version = "1.0.228"
2749
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2750
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
2751
+ dependencies = [
2752
+ "serde_core",
2753
+ "serde_derive",
2754
+ ]
2755
+
2756
+ [[package]]
2757
+ name = "serde-untagged"
2758
+ version = "0.1.9"
2759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2760
+ checksum = "f9faf48a4a2d2693be24c6289dbe26552776eb7737074e6722891fadbe6c5058"
2761
+ dependencies = [
2762
+ "erased-serde",
2763
+ "serde",
2764
+ "serde_core",
2765
+ "typeid",
2766
+ ]
2767
+
2768
+ [[package]]
2769
+ name = "serde_core"
2770
+ version = "1.0.228"
2771
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2772
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
2773
+ dependencies = [
2774
+ "serde_derive",
2775
+ ]
2776
+
2777
+ [[package]]
2778
+ name = "serde_derive"
2779
+ version = "1.0.228"
2780
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2781
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
2782
+ dependencies = [
2783
+ "proc-macro2",
2784
+ "quote",
2785
+ "syn 2.0.114",
2786
+ ]
2787
+
2788
+ [[package]]
2789
+ name = "serde_derive_internals"
2790
+ version = "0.29.1"
2791
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2792
+ checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711"
2793
+ dependencies = [
2794
+ "proc-macro2",
2795
+ "quote",
2796
+ "syn 2.0.114",
2797
+ ]
2798
+
2799
+ [[package]]
2800
+ name = "serde_json"
2801
+ version = "1.0.149"
2802
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2803
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
2804
+ dependencies = [
2805
+ "itoa",
2806
+ "memchr",
2807
+ "serde",
2808
+ "serde_core",
2809
+ "zmij",
2810
+ ]
2811
+
2812
+ [[package]]
2813
+ name = "serde_repr"
2814
+ version = "0.1.20"
2815
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2816
+ checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c"
2817
+ dependencies = [
2818
+ "proc-macro2",
2819
+ "quote",
2820
+ "syn 2.0.114",
2821
+ ]
2822
+
2823
+ [[package]]
2824
+ name = "serde_spanned"
2825
+ version = "0.6.9"
2826
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2827
+ checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
2828
+ dependencies = [
2829
+ "serde",
2830
+ ]
2831
+
2832
+ [[package]]
2833
+ name = "serde_spanned"
2834
+ version = "1.0.4"
2835
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2836
+ checksum = "f8bbf91e5a4d6315eee45e704372590b30e260ee83af6639d64557f51b067776"
2837
+ dependencies = [
2838
+ "serde_core",
2839
+ ]
2840
+
2841
+ [[package]]
2842
+ name = "serde_with"
2843
+ version = "3.16.1"
2844
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2845
+ checksum = "4fa237f2807440d238e0364a218270b98f767a00d3dada77b1c53ae88940e2e7"
2846
+ dependencies = [
2847
+ "base64 0.22.1",
2848
+ "chrono",
2849
+ "hex",
2850
+ "indexmap 1.9.3",
2851
+ "indexmap 2.13.0",
2852
+ "schemars 0.9.0",
2853
+ "schemars 1.2.1",
2854
+ "serde_core",
2855
+ "serde_json",
2856
+ "serde_with_macros",
2857
+ "time",
2858
+ ]
2859
+
2860
+ [[package]]
2861
+ name = "serde_with_macros"
2862
+ version = "3.16.1"
2863
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2864
+ checksum = "52a8e3ca0ca629121f70ab50f95249e5a6f925cc0f6ffe8256c45b728875706c"
2865
+ dependencies = [
2866
+ "darling",
2867
+ "proc-macro2",
2868
+ "quote",
2869
+ "syn 2.0.114",
2870
+ ]
2871
+
2872
+ [[package]]
2873
+ name = "serialize-to-javascript"
2874
+ version = "0.1.2"
2875
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2876
+ checksum = "04f3666a07a197cdb77cdf306c32be9b7f598d7060d50cfd4d5aa04bfd92f6c5"
2877
+ dependencies = [
2878
+ "serde",
2879
+ "serde_json",
2880
+ "serialize-to-javascript-impl",
2881
+ ]
2882
+
2883
+ [[package]]
2884
+ name = "serialize-to-javascript-impl"
2885
+ version = "0.1.2"
2886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2887
+ checksum = "772ee033c0916d670af7860b6e1ef7d658a4629a6d0b4c8c3e67f09b3765b75d"
2888
+ dependencies = [
2889
+ "proc-macro2",
2890
+ "quote",
2891
+ "syn 2.0.114",
2892
+ ]
2893
+
2894
+ [[package]]
2895
+ name = "servo_arc"
2896
+ version = "0.2.0"
2897
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2898
+ checksum = "d52aa42f8fdf0fed91e5ce7f23d8138441002fa31dca008acf47e6fd4721f741"
2899
+ dependencies = [
2900
+ "nodrop",
2901
+ "stable_deref_trait",
2902
+ ]
2903
+
2904
+ [[package]]
2905
+ name = "sha2"
2906
+ version = "0.10.9"
2907
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2908
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
2909
+ dependencies = [
2910
+ "cfg-if",
2911
+ "cpufeatures",
2912
+ "digest",
2913
+ ]
2914
+
2915
+ [[package]]
2916
+ name = "shared_child"
2917
+ version = "1.1.1"
2918
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2919
+ checksum = "1e362d9935bc50f019969e2f9ecd66786612daae13e8f277be7bfb66e8bed3f7"
2920
+ dependencies = [
2921
+ "libc",
2922
+ "sigchld",
2923
+ "windows-sys 0.60.2",
2924
+ ]
2925
+
2926
+ [[package]]
2927
+ name = "shlex"
2928
+ version = "1.3.0"
2929
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2930
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
2931
+
2932
+ [[package]]
2933
+ name = "sigchld"
2934
+ version = "0.2.4"
2935
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2936
+ checksum = "47106eded3c154e70176fc83df9737335c94ce22f821c32d17ed1db1f83badb1"
2937
+ dependencies = [
2938
+ "libc",
2939
+ "os_pipe",
2940
+ "signal-hook",
2941
+ ]
2942
+
2943
+ [[package]]
2944
+ name = "signal-hook"
2945
+ version = "0.3.18"
2946
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2947
+ checksum = "d881a16cf4426aa584979d30bd82cb33429027e42122b169753d6ef1085ed6e2"
2948
+ dependencies = [
2949
+ "libc",
2950
+ "signal-hook-registry",
2951
+ ]
2952
+
2953
+ [[package]]
2954
+ name = "signal-hook-registry"
2955
+ version = "1.4.8"
2956
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2957
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
2958
+ dependencies = [
2959
+ "errno",
2960
+ "libc",
2961
+ ]
2962
+
2963
+ [[package]]
2964
+ name = "simd-adler32"
2965
+ version = "0.3.8"
2966
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2967
+ checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2"
2968
+
2969
+ [[package]]
2970
+ name = "siphasher"
2971
+ version = "0.3.11"
2972
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2973
+ checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d"
2974
+
2975
+ [[package]]
2976
+ name = "siphasher"
2977
+ version = "1.0.2"
2978
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2979
+ checksum = "b2aa850e253778c88a04c3d7323b043aeda9d3e30d5971937c1855769763678e"
2980
+
2981
+ [[package]]
2982
+ name = "slab"
2983
+ version = "0.4.12"
2984
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2985
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
2986
+
2987
+ [[package]]
2988
+ name = "smallvec"
2989
+ version = "1.15.1"
2990
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2991
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
2992
+
2993
+ [[package]]
2994
+ name = "socket2"
2995
+ version = "0.6.2"
2996
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2997
+ checksum = "86f4aa3ad99f2088c990dfa82d367e19cb29268ed67c574d10d0a4bfe71f07e0"
2998
+ dependencies = [
2999
+ "libc",
3000
+ "windows-sys 0.60.2",
3001
+ ]
3002
+
3003
+ [[package]]
3004
+ name = "softbuffer"
3005
+ version = "0.4.8"
3006
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3007
+ checksum = "aac18da81ebbf05109ab275b157c22a653bb3c12cf884450179942f81bcbf6c3"
3008
+ dependencies = [
3009
+ "bytemuck",
3010
+ "js-sys",
3011
+ "ndk",
3012
+ "objc2",
3013
+ "objc2-core-foundation",
3014
+ "objc2-core-graphics",
3015
+ "objc2-foundation",
3016
+ "objc2-quartz-core",
3017
+ "raw-window-handle",
3018
+ "redox_syscall",
3019
+ "tracing",
3020
+ "wasm-bindgen",
3021
+ "web-sys",
3022
+ "windows-sys 0.61.2",
3023
+ ]
3024
+
3025
+ [[package]]
3026
+ name = "soup3"
3027
+ version = "0.5.0"
3028
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3029
+ checksum = "471f924a40f31251afc77450e781cb26d55c0b650842efafc9c6cbd2f7cc4f9f"
3030
+ dependencies = [
3031
+ "futures-channel",
3032
+ "gio",
3033
+ "glib",
3034
+ "libc",
3035
+ "soup3-sys",
3036
+ ]
3037
+
3038
+ [[package]]
3039
+ name = "soup3-sys"
3040
+ version = "0.5.0"
3041
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3042
+ checksum = "7ebe8950a680a12f24f15ebe1bf70db7af98ad242d9db43596ad3108aab86c27"
3043
+ dependencies = [
3044
+ "gio-sys",
3045
+ "glib-sys",
3046
+ "gobject-sys",
3047
+ "libc",
3048
+ "system-deps",
3049
+ ]
3050
+
3051
+ [[package]]
3052
+ name = "stable_deref_trait"
3053
+ version = "1.2.1"
3054
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3055
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
3056
+
3057
+ [[package]]
3058
+ name = "string_cache"
3059
+ version = "0.8.9"
3060
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3061
+ checksum = "bf776ba3fa74f83bf4b63c3dcbbf82173db2632ed8452cb2d891d33f459de70f"
3062
+ dependencies = [
3063
+ "new_debug_unreachable",
3064
+ "parking_lot",
3065
+ "phf_shared 0.11.3",
3066
+ "precomputed-hash",
3067
+ "serde",
3068
+ ]
3069
+
3070
+ [[package]]
3071
+ name = "string_cache_codegen"
3072
+ version = "0.5.4"
3073
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3074
+ checksum = "c711928715f1fe0fe509c53b43e993a9a557babc2d0a3567d0a3006f1ac931a0"
3075
+ dependencies = [
3076
+ "phf_generator 0.11.3",
3077
+ "phf_shared 0.11.3",
3078
+ "proc-macro2",
3079
+ "quote",
3080
+ ]
3081
+
3082
+ [[package]]
3083
+ name = "strsim"
3084
+ version = "0.11.1"
3085
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3086
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
3087
+
3088
+ [[package]]
3089
+ name = "swift-rs"
3090
+ version = "1.0.7"
3091
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3092
+ checksum = "4057c98e2e852d51fdcfca832aac7b571f6b351ad159f9eda5db1655f8d0c4d7"
3093
+ dependencies = [
3094
+ "base64 0.21.7",
3095
+ "serde",
3096
+ "serde_json",
3097
+ ]
3098
+
3099
+ [[package]]
3100
+ name = "syn"
3101
+ version = "1.0.109"
3102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3103
+ checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
3104
+ dependencies = [
3105
+ "proc-macro2",
3106
+ "quote",
3107
+ "unicode-ident",
3108
+ ]
3109
+
3110
+ [[package]]
3111
+ name = "syn"
3112
+ version = "2.0.114"
3113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3114
+ checksum = "d4d107df263a3013ef9b1879b0df87d706ff80f65a86ea879bd9c31f9b307c2a"
3115
+ dependencies = [
3116
+ "proc-macro2",
3117
+ "quote",
3118
+ "unicode-ident",
3119
+ ]
3120
+
3121
+ [[package]]
3122
+ name = "sync_wrapper"
3123
+ version = "1.0.2"
3124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3125
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
3126
+ dependencies = [
3127
+ "futures-core",
3128
+ ]
3129
+
3130
+ [[package]]
3131
+ name = "synstructure"
3132
+ version = "0.13.2"
3133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3134
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
3135
+ dependencies = [
3136
+ "proc-macro2",
3137
+ "quote",
3138
+ "syn 2.0.114",
3139
+ ]
3140
+
3141
+ [[package]]
3142
+ name = "system-deps"
3143
+ version = "6.2.2"
3144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3145
+ checksum = "a3e535eb8dded36d55ec13eddacd30dec501792ff23a0b1682c38601b8cf2349"
3146
+ dependencies = [
3147
+ "cfg-expr",
3148
+ "heck 0.5.0",
3149
+ "pkg-config",
3150
+ "toml 0.8.2",
3151
+ "version-compare",
3152
+ ]
3153
+
3154
+ [[package]]
3155
+ name = "tao"
3156
+ version = "0.34.5"
3157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3158
+ checksum = "f3a753bdc39c07b192151523a3f77cd0394aa75413802c883a0f6f6a0e5ee2e7"
3159
+ dependencies = [
3160
+ "bitflags 2.10.0",
3161
+ "block2",
3162
+ "core-foundation",
3163
+ "core-graphics",
3164
+ "crossbeam-channel",
3165
+ "dispatch",
3166
+ "dlopen2",
3167
+ "dpi",
3168
+ "gdkwayland-sys",
3169
+ "gdkx11-sys",
3170
+ "gtk",
3171
+ "jni",
3172
+ "lazy_static",
3173
+ "libc",
3174
+ "log",
3175
+ "ndk",
3176
+ "ndk-context",
3177
+ "ndk-sys",
3178
+ "objc2",
3179
+ "objc2-app-kit",
3180
+ "objc2-foundation",
3181
+ "once_cell",
3182
+ "parking_lot",
3183
+ "raw-window-handle",
3184
+ "scopeguard",
3185
+ "tao-macros",
3186
+ "unicode-segmentation",
3187
+ "url",
3188
+ "windows",
3189
+ "windows-core 0.61.2",
3190
+ "windows-version",
3191
+ "x11-dl",
3192
+ ]
3193
+
3194
+ [[package]]
3195
+ name = "tao-macros"
3196
+ version = "0.1.3"
3197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3198
+ checksum = "f4e16beb8b2ac17db28eab8bca40e62dbfbb34c0fcdc6d9826b11b7b5d047dfd"
3199
+ dependencies = [
3200
+ "proc-macro2",
3201
+ "quote",
3202
+ "syn 2.0.114",
3203
+ ]
3204
+
3205
+ [[package]]
3206
+ name = "target-lexicon"
3207
+ version = "0.12.16"
3208
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3209
+ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
3210
+
3211
+ [[package]]
3212
+ name = "tauri"
3213
+ version = "2.10.0"
3214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3215
+ checksum = "e19299a5f2ccb6bcb2a38b1eb7999e8bbdbd5bdd3cf74a4f8ab412726cbd65e7"
3216
+ dependencies = [
3217
+ "anyhow",
3218
+ "bytes",
3219
+ "cookie",
3220
+ "dirs",
3221
+ "dunce",
3222
+ "embed_plist",
3223
+ "getrandom 0.3.4",
3224
+ "glob",
3225
+ "gtk",
3226
+ "heck 0.5.0",
3227
+ "http",
3228
+ "jni",
3229
+ "libc",
3230
+ "log",
3231
+ "mime",
3232
+ "muda",
3233
+ "objc2",
3234
+ "objc2-app-kit",
3235
+ "objc2-foundation",
3236
+ "objc2-ui-kit",
3237
+ "objc2-web-kit",
3238
+ "percent-encoding",
3239
+ "plist",
3240
+ "raw-window-handle",
3241
+ "reqwest",
3242
+ "serde",
3243
+ "serde_json",
3244
+ "serde_repr",
3245
+ "serialize-to-javascript",
3246
+ "swift-rs",
3247
+ "tauri-build",
3248
+ "tauri-macros",
3249
+ "tauri-runtime",
3250
+ "tauri-runtime-wry",
3251
+ "tauri-utils",
3252
+ "thiserror 2.0.18",
3253
+ "tokio",
3254
+ "tray-icon",
3255
+ "url",
3256
+ "webkit2gtk",
3257
+ "webview2-com",
3258
+ "window-vibrancy",
3259
+ "windows",
3260
+ ]
3261
+
3262
+ [[package]]
3263
+ name = "tauri-build"
3264
+ version = "2.5.4"
3265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3266
+ checksum = "76809f63061c8b25537b87f46b8733b31397cf419706dc874e1602be6479ba90"
3267
+ dependencies = [
3268
+ "anyhow",
3269
+ "cargo_toml",
3270
+ "dirs",
3271
+ "glob",
3272
+ "heck 0.5.0",
3273
+ "json-patch",
3274
+ "schemars 0.8.22",
3275
+ "semver",
3276
+ "serde",
3277
+ "serde_json",
3278
+ "tauri-utils",
3279
+ "tauri-winres",
3280
+ "toml 0.9.11+spec-1.1.0",
3281
+ "walkdir",
3282
+ ]
3283
+
3284
+ [[package]]
3285
+ name = "tauri-codegen"
3286
+ version = "2.5.3"
3287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3288
+ checksum = "8b2ebe49d690ccaea93aa81fff99277d4f445968f085ba13be67859151e9e4b8"
3289
+ dependencies = [
3290
+ "base64 0.22.1",
3291
+ "brotli",
3292
+ "ico",
3293
+ "json-patch",
3294
+ "plist",
3295
+ "png",
3296
+ "proc-macro2",
3297
+ "quote",
3298
+ "semver",
3299
+ "serde",
3300
+ "serde_json",
3301
+ "sha2",
3302
+ "syn 2.0.114",
3303
+ "tauri-utils",
3304
+ "thiserror 2.0.18",
3305
+ "time",
3306
+ "url",
3307
+ "uuid",
3308
+ "walkdir",
3309
+ ]
3310
+
3311
+ [[package]]
3312
+ name = "tauri-macros"
3313
+ version = "2.5.3"
3314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3315
+ checksum = "1119f651b0187c686c0fc72c66bba311e560e1b5f61869086ce788d43be6cf41"
3316
+ dependencies = [
3317
+ "heck 0.5.0",
3318
+ "proc-macro2",
3319
+ "quote",
3320
+ "syn 2.0.114",
3321
+ "tauri-codegen",
3322
+ "tauri-utils",
3323
+ ]
3324
+
3325
+ [[package]]
3326
+ name = "tauri-plugin"
3327
+ version = "2.5.3"
3328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3329
+ checksum = "692a77abd8b8773e107a42ec0e05b767b8d2b7ece76ab36c6c3947e34df9f53f"
3330
+ dependencies = [
3331
+ "anyhow",
3332
+ "glob",
3333
+ "plist",
3334
+ "schemars 0.8.22",
3335
+ "serde",
3336
+ "serde_json",
3337
+ "tauri-utils",
3338
+ "toml 0.9.11+spec-1.1.0",
3339
+ "walkdir",
3340
+ ]
3341
+
3342
+ [[package]]
3343
+ name = "tauri-plugin-shell"
3344
+ version = "2.3.4"
3345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3346
+ checksum = "39b76f884a3937e04b631ffdc3be506088fa979369d25147361352f2f352e5ed"
3347
+ dependencies = [
3348
+ "encoding_rs",
3349
+ "log",
3350
+ "open",
3351
+ "os_pipe",
3352
+ "regex",
3353
+ "schemars 0.8.22",
3354
+ "serde",
3355
+ "serde_json",
3356
+ "shared_child",
3357
+ "tauri",
3358
+ "tauri-plugin",
3359
+ "thiserror 2.0.18",
3360
+ "tokio",
3361
+ ]
3362
+
3363
+ [[package]]
3364
+ name = "tauri-runtime"
3365
+ version = "2.10.0"
3366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3367
+ checksum = "b885ffeac82b00f1f6fd292b6e5aabfa7435d537cef57d11e38a489956535651"
3368
+ dependencies = [
3369
+ "cookie",
3370
+ "dpi",
3371
+ "gtk",
3372
+ "http",
3373
+ "jni",
3374
+ "objc2",
3375
+ "objc2-ui-kit",
3376
+ "objc2-web-kit",
3377
+ "raw-window-handle",
3378
+ "serde",
3379
+ "serde_json",
3380
+ "tauri-utils",
3381
+ "thiserror 2.0.18",
3382
+ "url",
3383
+ "webkit2gtk",
3384
+ "webview2-com",
3385
+ "windows",
3386
+ ]
3387
+
3388
+ [[package]]
3389
+ name = "tauri-runtime-wry"
3390
+ version = "2.10.0"
3391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3392
+ checksum = "5204682391625e867d16584fedc83fc292fb998814c9f7918605c789cd876314"
3393
+ dependencies = [
3394
+ "gtk",
3395
+ "http",
3396
+ "jni",
3397
+ "log",
3398
+ "objc2",
3399
+ "objc2-app-kit",
3400
+ "objc2-foundation",
3401
+ "once_cell",
3402
+ "percent-encoding",
3403
+ "raw-window-handle",
3404
+ "softbuffer",
3405
+ "tao",
3406
+ "tauri-runtime",
3407
+ "tauri-utils",
3408
+ "url",
3409
+ "webkit2gtk",
3410
+ "webview2-com",
3411
+ "windows",
3412
+ "wry",
3413
+ ]
3414
+
3415
+ [[package]]
3416
+ name = "tauri-utils"
3417
+ version = "2.8.2"
3418
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3419
+ checksum = "fcd169fccdff05eff2c1033210b9b94acd07a47e6fa9a3431cf09cfd4f01c87e"
3420
+ dependencies = [
3421
+ "anyhow",
3422
+ "brotli",
3423
+ "cargo_metadata",
3424
+ "ctor",
3425
+ "dunce",
3426
+ "glob",
3427
+ "html5ever",
3428
+ "http",
3429
+ "infer",
3430
+ "json-patch",
3431
+ "kuchikiki",
3432
+ "log",
3433
+ "memchr",
3434
+ "phf 0.11.3",
3435
+ "proc-macro2",
3436
+ "quote",
3437
+ "regex",
3438
+ "schemars 0.8.22",
3439
+ "semver",
3440
+ "serde",
3441
+ "serde-untagged",
3442
+ "serde_json",
3443
+ "serde_with",
3444
+ "swift-rs",
3445
+ "thiserror 2.0.18",
3446
+ "toml 0.9.11+spec-1.1.0",
3447
+ "url",
3448
+ "urlpattern",
3449
+ "uuid",
3450
+ "walkdir",
3451
+ ]
3452
+
3453
+ [[package]]
3454
+ name = "tauri-winres"
3455
+ version = "0.3.5"
3456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3457
+ checksum = "1087b111fe2b005e42dbdc1990fc18593234238d47453b0c99b7de1c9ab2c1e0"
3458
+ dependencies = [
3459
+ "dunce",
3460
+ "embed-resource",
3461
+ "toml 0.9.11+spec-1.1.0",
3462
+ ]
3463
+
3464
+ [[package]]
3465
+ name = "tendril"
3466
+ version = "0.4.3"
3467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3468
+ checksum = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0"
3469
+ dependencies = [
3470
+ "futf",
3471
+ "mac",
3472
+ "utf-8",
3473
+ ]
3474
+
3475
+ [[package]]
3476
+ name = "tether-app"
3477
+ version = "0.1.0"
3478
+ dependencies = [
3479
+ "portpicker",
3480
+ "serde",
3481
+ "serde_json",
3482
+ "tauri",
3483
+ "tauri-build",
3484
+ "tauri-plugin-shell",
3485
+ "tokio",
3486
+ ]
3487
+
3488
+ [[package]]
3489
+ name = "thiserror"
3490
+ version = "1.0.69"
3491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3492
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
3493
+ dependencies = [
3494
+ "thiserror-impl 1.0.69",
3495
+ ]
3496
+
3497
+ [[package]]
3498
+ name = "thiserror"
3499
+ version = "2.0.18"
3500
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3501
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
3502
+ dependencies = [
3503
+ "thiserror-impl 2.0.18",
3504
+ ]
3505
+
3506
+ [[package]]
3507
+ name = "thiserror-impl"
3508
+ version = "1.0.69"
3509
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3510
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
3511
+ dependencies = [
3512
+ "proc-macro2",
3513
+ "quote",
3514
+ "syn 2.0.114",
3515
+ ]
3516
+
3517
+ [[package]]
3518
+ name = "thiserror-impl"
3519
+ version = "2.0.18"
3520
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3521
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
3522
+ dependencies = [
3523
+ "proc-macro2",
3524
+ "quote",
3525
+ "syn 2.0.114",
3526
+ ]
3527
+
3528
+ [[package]]
3529
+ name = "time"
3530
+ version = "0.3.46"
3531
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3532
+ checksum = "9da98b7d9b7dad93488a84b8248efc35352b0b2657397d4167e7ad67e5d535e5"
3533
+ dependencies = [
3534
+ "deranged",
3535
+ "itoa",
3536
+ "num-conv",
3537
+ "powerfmt",
3538
+ "serde_core",
3539
+ "time-core",
3540
+ "time-macros",
3541
+ ]
3542
+
3543
+ [[package]]
3544
+ name = "time-core"
3545
+ version = "0.1.8"
3546
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3547
+ checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca"
3548
+
3549
+ [[package]]
3550
+ name = "time-macros"
3551
+ version = "0.2.26"
3552
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3553
+ checksum = "78cc610bac2dcee56805c99642447d4c5dbde4d01f752ffea0199aee1f601dc4"
3554
+ dependencies = [
3555
+ "num-conv",
3556
+ "time-core",
3557
+ ]
3558
+
3559
+ [[package]]
3560
+ name = "tinystr"
3561
+ version = "0.8.2"
3562
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3563
+ checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
3564
+ dependencies = [
3565
+ "displaydoc",
3566
+ "zerovec",
3567
+ ]
3568
+
3569
+ [[package]]
3570
+ name = "tokio"
3571
+ version = "1.49.0"
3572
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3573
+ checksum = "72a2903cd7736441aac9df9d7688bd0ce48edccaadf181c3b90be801e81d3d86"
3574
+ dependencies = [
3575
+ "bytes",
3576
+ "libc",
3577
+ "mio",
3578
+ "pin-project-lite",
3579
+ "socket2",
3580
+ "windows-sys 0.61.2",
3581
+ ]
3582
+
3583
+ [[package]]
3584
+ name = "tokio-util"
3585
+ version = "0.7.18"
3586
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3587
+ checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
3588
+ dependencies = [
3589
+ "bytes",
3590
+ "futures-core",
3591
+ "futures-sink",
3592
+ "pin-project-lite",
3593
+ "tokio",
3594
+ ]
3595
+
3596
+ [[package]]
3597
+ name = "toml"
3598
+ version = "0.8.2"
3599
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3600
+ checksum = "185d8ab0dfbb35cf1399a6344d8484209c088f75f8f68230da55d48d95d43e3d"
3601
+ dependencies = [
3602
+ "serde",
3603
+ "serde_spanned 0.6.9",
3604
+ "toml_datetime 0.6.3",
3605
+ "toml_edit 0.20.2",
3606
+ ]
3607
+
3608
+ [[package]]
3609
+ name = "toml"
3610
+ version = "0.9.11+spec-1.1.0"
3611
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3612
+ checksum = "f3afc9a848309fe1aaffaed6e1546a7a14de1f935dc9d89d32afd9a44bab7c46"
3613
+ dependencies = [
3614
+ "indexmap 2.13.0",
3615
+ "serde_core",
3616
+ "serde_spanned 1.0.4",
3617
+ "toml_datetime 0.7.5+spec-1.1.0",
3618
+ "toml_parser",
3619
+ "toml_writer",
3620
+ "winnow 0.7.14",
3621
+ ]
3622
+
3623
+ [[package]]
3624
+ name = "toml_datetime"
3625
+ version = "0.6.3"
3626
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3627
+ checksum = "7cda73e2f1397b1262d6dfdcef8aafae14d1de7748d66822d3bfeeb6d03e5e4b"
3628
+ dependencies = [
3629
+ "serde",
3630
+ ]
3631
+
3632
+ [[package]]
3633
+ name = "toml_datetime"
3634
+ version = "0.7.5+spec-1.1.0"
3635
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3636
+ checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347"
3637
+ dependencies = [
3638
+ "serde_core",
3639
+ ]
3640
+
3641
+ [[package]]
3642
+ name = "toml_edit"
3643
+ version = "0.19.15"
3644
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3645
+ checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421"
3646
+ dependencies = [
3647
+ "indexmap 2.13.0",
3648
+ "toml_datetime 0.6.3",
3649
+ "winnow 0.5.40",
3650
+ ]
3651
+
3652
+ [[package]]
3653
+ name = "toml_edit"
3654
+ version = "0.20.2"
3655
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3656
+ checksum = "396e4d48bbb2b7554c944bde63101b5ae446cff6ec4a24227428f15eb72ef338"
3657
+ dependencies = [
3658
+ "indexmap 2.13.0",
3659
+ "serde",
3660
+ "serde_spanned 0.6.9",
3661
+ "toml_datetime 0.6.3",
3662
+ "winnow 0.5.40",
3663
+ ]
3664
+
3665
+ [[package]]
3666
+ name = "toml_edit"
3667
+ version = "0.23.10+spec-1.0.0"
3668
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3669
+ checksum = "84c8b9f757e028cee9fa244aea147aab2a9ec09d5325a9b01e0a49730c2b5269"
3670
+ dependencies = [
3671
+ "indexmap 2.13.0",
3672
+ "toml_datetime 0.7.5+spec-1.1.0",
3673
+ "toml_parser",
3674
+ "winnow 0.7.14",
3675
+ ]
3676
+
3677
+ [[package]]
3678
+ name = "toml_parser"
3679
+ version = "1.0.6+spec-1.1.0"
3680
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3681
+ checksum = "a3198b4b0a8e11f09dd03e133c0280504d0801269e9afa46362ffde1cbeebf44"
3682
+ dependencies = [
3683
+ "winnow 0.7.14",
3684
+ ]
3685
+
3686
+ [[package]]
3687
+ name = "toml_writer"
3688
+ version = "1.0.6+spec-1.1.0"
3689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3690
+ checksum = "ab16f14aed21ee8bfd8ec22513f7287cd4a91aa92e44edfe2c17ddd004e92607"
3691
+
3692
+ [[package]]
3693
+ name = "tower"
3694
+ version = "0.5.3"
3695
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3696
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
3697
+ dependencies = [
3698
+ "futures-core",
3699
+ "futures-util",
3700
+ "pin-project-lite",
3701
+ "sync_wrapper",
3702
+ "tokio",
3703
+ "tower-layer",
3704
+ "tower-service",
3705
+ ]
3706
+
3707
+ [[package]]
3708
+ name = "tower-http"
3709
+ version = "0.6.8"
3710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3711
+ checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
3712
+ dependencies = [
3713
+ "bitflags 2.10.0",
3714
+ "bytes",
3715
+ "futures-util",
3716
+ "http",
3717
+ "http-body",
3718
+ "iri-string",
3719
+ "pin-project-lite",
3720
+ "tower",
3721
+ "tower-layer",
3722
+ "tower-service",
3723
+ ]
3724
+
3725
+ [[package]]
3726
+ name = "tower-layer"
3727
+ version = "0.3.3"
3728
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3729
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
3730
+
3731
+ [[package]]
3732
+ name = "tower-service"
3733
+ version = "0.3.3"
3734
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3735
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
3736
+
3737
+ [[package]]
3738
+ name = "tracing"
3739
+ version = "0.1.44"
3740
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3741
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
3742
+ dependencies = [
3743
+ "pin-project-lite",
3744
+ "tracing-core",
3745
+ ]
3746
+
3747
+ [[package]]
3748
+ name = "tracing-core"
3749
+ version = "0.1.36"
3750
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3751
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
3752
+ dependencies = [
3753
+ "once_cell",
3754
+ ]
3755
+
3756
+ [[package]]
3757
+ name = "tray-icon"
3758
+ version = "0.21.3"
3759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3760
+ checksum = "a5e85aa143ceb072062fc4d6356c1b520a51d636e7bc8e77ec94be3608e5e80c"
3761
+ dependencies = [
3762
+ "crossbeam-channel",
3763
+ "dirs",
3764
+ "libappindicator",
3765
+ "muda",
3766
+ "objc2",
3767
+ "objc2-app-kit",
3768
+ "objc2-core-foundation",
3769
+ "objc2-core-graphics",
3770
+ "objc2-foundation",
3771
+ "once_cell",
3772
+ "png",
3773
+ "serde",
3774
+ "thiserror 2.0.18",
3775
+ "windows-sys 0.60.2",
3776
+ ]
3777
+
3778
+ [[package]]
3779
+ name = "try-lock"
3780
+ version = "0.2.5"
3781
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3782
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
3783
+
3784
+ [[package]]
3785
+ name = "typeid"
3786
+ version = "1.0.3"
3787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3788
+ checksum = "bc7d623258602320d5c55d1bc22793b57daff0ec7efc270ea7d55ce1d5f5471c"
3789
+
3790
+ [[package]]
3791
+ name = "typenum"
3792
+ version = "1.19.0"
3793
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3794
+ checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
3795
+
3796
+ [[package]]
3797
+ name = "unic-char-property"
3798
+ version = "0.9.0"
3799
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3800
+ checksum = "a8c57a407d9b6fa02b4795eb81c5b6652060a15a7903ea981f3d723e6c0be221"
3801
+ dependencies = [
3802
+ "unic-char-range",
3803
+ ]
3804
+
3805
+ [[package]]
3806
+ name = "unic-char-range"
3807
+ version = "0.9.0"
3808
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3809
+ checksum = "0398022d5f700414f6b899e10b8348231abf9173fa93144cbc1a43b9793c1fbc"
3810
+
3811
+ [[package]]
3812
+ name = "unic-common"
3813
+ version = "0.9.0"
3814
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3815
+ checksum = "80d7ff825a6a654ee85a63e80f92f054f904f21e7d12da4e22f9834a4aaa35bc"
3816
+
3817
+ [[package]]
3818
+ name = "unic-ucd-ident"
3819
+ version = "0.9.0"
3820
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3821
+ checksum = "e230a37c0381caa9219d67cf063aa3a375ffed5bf541a452db16e744bdab6987"
3822
+ dependencies = [
3823
+ "unic-char-property",
3824
+ "unic-char-range",
3825
+ "unic-ucd-version",
3826
+ ]
3827
+
3828
+ [[package]]
3829
+ name = "unic-ucd-version"
3830
+ version = "0.9.0"
3831
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3832
+ checksum = "96bd2f2237fe450fcd0a1d2f5f4e91711124f7857ba2e964247776ebeeb7b0c4"
3833
+ dependencies = [
3834
+ "unic-common",
3835
+ ]
3836
+
3837
+ [[package]]
3838
+ name = "unicode-ident"
3839
+ version = "1.0.22"
3840
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3841
+ checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
3842
+
3843
+ [[package]]
3844
+ name = "unicode-segmentation"
3845
+ version = "1.12.0"
3846
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3847
+ checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
3848
+
3849
+ [[package]]
3850
+ name = "url"
3851
+ version = "2.5.8"
3852
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3853
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
3854
+ dependencies = [
3855
+ "form_urlencoded",
3856
+ "idna",
3857
+ "percent-encoding",
3858
+ "serde",
3859
+ "serde_derive",
3860
+ ]
3861
+
3862
+ [[package]]
3863
+ name = "urlpattern"
3864
+ version = "0.3.0"
3865
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3866
+ checksum = "70acd30e3aa1450bc2eece896ce2ad0d178e9c079493819301573dae3c37ba6d"
3867
+ dependencies = [
3868
+ "regex",
3869
+ "serde",
3870
+ "unic-ucd-ident",
3871
+ "url",
3872
+ ]
3873
+
3874
+ [[package]]
3875
+ name = "utf-8"
3876
+ version = "0.7.6"
3877
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3878
+ checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
3879
+
3880
+ [[package]]
3881
+ name = "utf8_iter"
3882
+ version = "1.0.4"
3883
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3884
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
3885
+
3886
+ [[package]]
3887
+ name = "uuid"
3888
+ version = "1.20.0"
3889
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3890
+ checksum = "ee48d38b119b0cd71fe4141b30f5ba9c7c5d9f4e7a3a8b4a674e4b6ef789976f"
3891
+ dependencies = [
3892
+ "getrandom 0.3.4",
3893
+ "js-sys",
3894
+ "serde_core",
3895
+ "wasm-bindgen",
3896
+ ]
3897
+
3898
+ [[package]]
3899
+ name = "version-compare"
3900
+ version = "0.2.1"
3901
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3902
+ checksum = "03c2856837ef78f57382f06b2b8563a2f512f7185d732608fd9176cb3b8edf0e"
3903
+
3904
+ [[package]]
3905
+ name = "version_check"
3906
+ version = "0.9.5"
3907
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3908
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
3909
+
3910
+ [[package]]
3911
+ name = "vswhom"
3912
+ version = "0.1.0"
3913
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3914
+ checksum = "be979b7f07507105799e854203b470ff7c78a1639e330a58f183b5fea574608b"
3915
+ dependencies = [
3916
+ "libc",
3917
+ "vswhom-sys",
3918
+ ]
3919
+
3920
+ [[package]]
3921
+ name = "vswhom-sys"
3922
+ version = "0.1.3"
3923
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3924
+ checksum = "fb067e4cbd1ff067d1df46c9194b5de0e98efd2810bbc95c5d5e5f25a3231150"
3925
+ dependencies = [
3926
+ "cc",
3927
+ "libc",
3928
+ ]
3929
+
3930
+ [[package]]
3931
+ name = "walkdir"
3932
+ version = "2.5.0"
3933
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3934
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
3935
+ dependencies = [
3936
+ "same-file",
3937
+ "winapi-util",
3938
+ ]
3939
+
3940
+ [[package]]
3941
+ name = "want"
3942
+ version = "0.3.1"
3943
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3944
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
3945
+ dependencies = [
3946
+ "try-lock",
3947
+ ]
3948
+
3949
+ [[package]]
3950
+ name = "wasi"
3951
+ version = "0.9.0+wasi-snapshot-preview1"
3952
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3953
+ checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
3954
+
3955
+ [[package]]
3956
+ name = "wasi"
3957
+ version = "0.11.1+wasi-snapshot-preview1"
3958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3959
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
3960
+
3961
+ [[package]]
3962
+ name = "wasip2"
3963
+ version = "1.0.2+wasi-0.2.9"
3964
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3965
+ checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
3966
+ dependencies = [
3967
+ "wit-bindgen",
3968
+ ]
3969
+
3970
+ [[package]]
3971
+ name = "wasm-bindgen"
3972
+ version = "0.2.108"
3973
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3974
+ checksum = "64024a30ec1e37399cf85a7ffefebdb72205ca1c972291c51512360d90bd8566"
3975
+ dependencies = [
3976
+ "cfg-if",
3977
+ "once_cell",
3978
+ "rustversion",
3979
+ "wasm-bindgen-macro",
3980
+ "wasm-bindgen-shared",
3981
+ ]
3982
+
3983
+ [[package]]
3984
+ name = "wasm-bindgen-futures"
3985
+ version = "0.4.58"
3986
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3987
+ checksum = "70a6e77fd0ae8029c9ea0063f87c46fde723e7d887703d74ad2616d792e51e6f"
3988
+ dependencies = [
3989
+ "cfg-if",
3990
+ "futures-util",
3991
+ "js-sys",
3992
+ "once_cell",
3993
+ "wasm-bindgen",
3994
+ "web-sys",
3995
+ ]
3996
+
3997
+ [[package]]
3998
+ name = "wasm-bindgen-macro"
3999
+ version = "0.2.108"
4000
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4001
+ checksum = "008b239d9c740232e71bd39e8ef6429d27097518b6b30bdf9086833bd5b6d608"
4002
+ dependencies = [
4003
+ "quote",
4004
+ "wasm-bindgen-macro-support",
4005
+ ]
4006
+
4007
+ [[package]]
4008
+ name = "wasm-bindgen-macro-support"
4009
+ version = "0.2.108"
4010
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4011
+ checksum = "5256bae2d58f54820e6490f9839c49780dff84c65aeab9e772f15d5f0e913a55"
4012
+ dependencies = [
4013
+ "bumpalo",
4014
+ "proc-macro2",
4015
+ "quote",
4016
+ "syn 2.0.114",
4017
+ "wasm-bindgen-shared",
4018
+ ]
4019
+
4020
+ [[package]]
4021
+ name = "wasm-bindgen-shared"
4022
+ version = "0.2.108"
4023
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4024
+ checksum = "1f01b580c9ac74c8d8f0c0e4afb04eeef2acf145458e52c03845ee9cd23e3d12"
4025
+ dependencies = [
4026
+ "unicode-ident",
4027
+ ]
4028
+
4029
+ [[package]]
4030
+ name = "wasm-streams"
4031
+ version = "0.4.2"
4032
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4033
+ checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65"
4034
+ dependencies = [
4035
+ "futures-util",
4036
+ "js-sys",
4037
+ "wasm-bindgen",
4038
+ "wasm-bindgen-futures",
4039
+ "web-sys",
4040
+ ]
4041
+
4042
+ [[package]]
4043
+ name = "web-sys"
4044
+ version = "0.3.85"
4045
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4046
+ checksum = "312e32e551d92129218ea9a2452120f4aabc03529ef03e4d0d82fb2780608598"
4047
+ dependencies = [
4048
+ "js-sys",
4049
+ "wasm-bindgen",
4050
+ ]
4051
+
4052
+ [[package]]
4053
+ name = "webkit2gtk"
4054
+ version = "2.0.2"
4055
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4056
+ checksum = "a1027150013530fb2eaf806408df88461ae4815a45c541c8975e61d6f2fc4793"
4057
+ dependencies = [
4058
+ "bitflags 1.3.2",
4059
+ "cairo-rs",
4060
+ "gdk",
4061
+ "gdk-sys",
4062
+ "gio",
4063
+ "gio-sys",
4064
+ "glib",
4065
+ "glib-sys",
4066
+ "gobject-sys",
4067
+ "gtk",
4068
+ "gtk-sys",
4069
+ "javascriptcore-rs",
4070
+ "libc",
4071
+ "once_cell",
4072
+ "soup3",
4073
+ "webkit2gtk-sys",
4074
+ ]
4075
+
4076
+ [[package]]
4077
+ name = "webkit2gtk-sys"
4078
+ version = "2.0.2"
4079
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4080
+ checksum = "916a5f65c2ef0dfe12fff695960a2ec3d4565359fdbb2e9943c974e06c734ea5"
4081
+ dependencies = [
4082
+ "bitflags 1.3.2",
4083
+ "cairo-sys-rs",
4084
+ "gdk-sys",
4085
+ "gio-sys",
4086
+ "glib-sys",
4087
+ "gobject-sys",
4088
+ "gtk-sys",
4089
+ "javascriptcore-rs-sys",
4090
+ "libc",
4091
+ "pkg-config",
4092
+ "soup3-sys",
4093
+ "system-deps",
4094
+ ]
4095
+
4096
+ [[package]]
4097
+ name = "webview2-com"
4098
+ version = "0.38.2"
4099
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4100
+ checksum = "7130243a7a5b33c54a444e54842e6a9e133de08b5ad7b5861cd8ed9a6a5bc96a"
4101
+ dependencies = [
4102
+ "webview2-com-macros",
4103
+ "webview2-com-sys",
4104
+ "windows",
4105
+ "windows-core 0.61.2",
4106
+ "windows-implement",
4107
+ "windows-interface",
4108
+ ]
4109
+
4110
+ [[package]]
4111
+ name = "webview2-com-macros"
4112
+ version = "0.8.1"
4113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4114
+ checksum = "67a921c1b6914c367b2b823cd4cde6f96beec77d30a939c8199bb377cf9b9b54"
4115
+ dependencies = [
4116
+ "proc-macro2",
4117
+ "quote",
4118
+ "syn 2.0.114",
4119
+ ]
4120
+
4121
+ [[package]]
4122
+ name = "webview2-com-sys"
4123
+ version = "0.38.2"
4124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4125
+ checksum = "381336cfffd772377d291702245447a5251a2ffa5bad679c99e61bc48bacbf9c"
4126
+ dependencies = [
4127
+ "thiserror 2.0.18",
4128
+ "windows",
4129
+ "windows-core 0.61.2",
4130
+ ]
4131
+
4132
+ [[package]]
4133
+ name = "winapi"
4134
+ version = "0.3.9"
4135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4136
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
4137
+ dependencies = [
4138
+ "winapi-i686-pc-windows-gnu",
4139
+ "winapi-x86_64-pc-windows-gnu",
4140
+ ]
4141
+
4142
+ [[package]]
4143
+ name = "winapi-i686-pc-windows-gnu"
4144
+ version = "0.4.0"
4145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4146
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
4147
+
4148
+ [[package]]
4149
+ name = "winapi-util"
4150
+ version = "0.1.11"
4151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4152
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
4153
+ dependencies = [
4154
+ "windows-sys 0.61.2",
4155
+ ]
4156
+
4157
+ [[package]]
4158
+ name = "winapi-x86_64-pc-windows-gnu"
4159
+ version = "0.4.0"
4160
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4161
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
4162
+
4163
+ [[package]]
4164
+ name = "window-vibrancy"
4165
+ version = "0.6.0"
4166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4167
+ checksum = "d9bec5a31f3f9362f2258fd0e9c9dd61a9ca432e7306cc78c444258f0dce9a9c"
4168
+ dependencies = [
4169
+ "objc2",
4170
+ "objc2-app-kit",
4171
+ "objc2-core-foundation",
4172
+ "objc2-foundation",
4173
+ "raw-window-handle",
4174
+ "windows-sys 0.59.0",
4175
+ "windows-version",
4176
+ ]
4177
+
4178
+ [[package]]
4179
+ name = "windows"
4180
+ version = "0.61.3"
4181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4182
+ checksum = "9babd3a767a4c1aef6900409f85f5d53ce2544ccdfaa86dad48c91782c6d6893"
4183
+ dependencies = [
4184
+ "windows-collections",
4185
+ "windows-core 0.61.2",
4186
+ "windows-future",
4187
+ "windows-link 0.1.3",
4188
+ "windows-numerics",
4189
+ ]
4190
+
4191
+ [[package]]
4192
+ name = "windows-collections"
4193
+ version = "0.2.0"
4194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4195
+ checksum = "3beeceb5e5cfd9eb1d76b381630e82c4241ccd0d27f1a39ed41b2760b255c5e8"
4196
+ dependencies = [
4197
+ "windows-core 0.61.2",
4198
+ ]
4199
+
4200
+ [[package]]
4201
+ name = "windows-core"
4202
+ version = "0.61.2"
4203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4204
+ checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3"
4205
+ dependencies = [
4206
+ "windows-implement",
4207
+ "windows-interface",
4208
+ "windows-link 0.1.3",
4209
+ "windows-result 0.3.4",
4210
+ "windows-strings 0.4.2",
4211
+ ]
4212
+
4213
+ [[package]]
4214
+ name = "windows-core"
4215
+ version = "0.62.2"
4216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4217
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
4218
+ dependencies = [
4219
+ "windows-implement",
4220
+ "windows-interface",
4221
+ "windows-link 0.2.1",
4222
+ "windows-result 0.4.1",
4223
+ "windows-strings 0.5.1",
4224
+ ]
4225
+
4226
+ [[package]]
4227
+ name = "windows-future"
4228
+ version = "0.2.1"
4229
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4230
+ checksum = "fc6a41e98427b19fe4b73c550f060b59fa592d7d686537eebf9385621bfbad8e"
4231
+ dependencies = [
4232
+ "windows-core 0.61.2",
4233
+ "windows-link 0.1.3",
4234
+ "windows-threading",
4235
+ ]
4236
+
4237
+ [[package]]
4238
+ name = "windows-implement"
4239
+ version = "0.60.2"
4240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4241
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
4242
+ dependencies = [
4243
+ "proc-macro2",
4244
+ "quote",
4245
+ "syn 2.0.114",
4246
+ ]
4247
+
4248
+ [[package]]
4249
+ name = "windows-interface"
4250
+ version = "0.59.3"
4251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4252
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
4253
+ dependencies = [
4254
+ "proc-macro2",
4255
+ "quote",
4256
+ "syn 2.0.114",
4257
+ ]
4258
+
4259
+ [[package]]
4260
+ name = "windows-link"
4261
+ version = "0.1.3"
4262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4263
+ checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
4264
+
4265
+ [[package]]
4266
+ name = "windows-link"
4267
+ version = "0.2.1"
4268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4269
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
4270
+
4271
+ [[package]]
4272
+ name = "windows-numerics"
4273
+ version = "0.2.0"
4274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4275
+ checksum = "9150af68066c4c5c07ddc0ce30421554771e528bde427614c61038bc2c92c2b1"
4276
+ dependencies = [
4277
+ "windows-core 0.61.2",
4278
+ "windows-link 0.1.3",
4279
+ ]
4280
+
4281
+ [[package]]
4282
+ name = "windows-result"
4283
+ version = "0.3.4"
4284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4285
+ checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6"
4286
+ dependencies = [
4287
+ "windows-link 0.1.3",
4288
+ ]
4289
+
4290
+ [[package]]
4291
+ name = "windows-result"
4292
+ version = "0.4.1"
4293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4294
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
4295
+ dependencies = [
4296
+ "windows-link 0.2.1",
4297
+ ]
4298
+
4299
+ [[package]]
4300
+ name = "windows-strings"
4301
+ version = "0.4.2"
4302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4303
+ checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57"
4304
+ dependencies = [
4305
+ "windows-link 0.1.3",
4306
+ ]
4307
+
4308
+ [[package]]
4309
+ name = "windows-strings"
4310
+ version = "0.5.1"
4311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4312
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
4313
+ dependencies = [
4314
+ "windows-link 0.2.1",
4315
+ ]
4316
+
4317
+ [[package]]
4318
+ name = "windows-sys"
4319
+ version = "0.45.0"
4320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4321
+ checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
4322
+ dependencies = [
4323
+ "windows-targets 0.42.2",
4324
+ ]
4325
+
4326
+ [[package]]
4327
+ name = "windows-sys"
4328
+ version = "0.59.0"
4329
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4330
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
4331
+ dependencies = [
4332
+ "windows-targets 0.52.6",
4333
+ ]
4334
+
4335
+ [[package]]
4336
+ name = "windows-sys"
4337
+ version = "0.60.2"
4338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4339
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
4340
+ dependencies = [
4341
+ "windows-targets 0.53.5",
4342
+ ]
4343
+
4344
+ [[package]]
4345
+ name = "windows-sys"
4346
+ version = "0.61.2"
4347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4348
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
4349
+ dependencies = [
4350
+ "windows-link 0.2.1",
4351
+ ]
4352
+
4353
+ [[package]]
4354
+ name = "windows-targets"
4355
+ version = "0.42.2"
4356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4357
+ checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
4358
+ dependencies = [
4359
+ "windows_aarch64_gnullvm 0.42.2",
4360
+ "windows_aarch64_msvc 0.42.2",
4361
+ "windows_i686_gnu 0.42.2",
4362
+ "windows_i686_msvc 0.42.2",
4363
+ "windows_x86_64_gnu 0.42.2",
4364
+ "windows_x86_64_gnullvm 0.42.2",
4365
+ "windows_x86_64_msvc 0.42.2",
4366
+ ]
4367
+
4368
+ [[package]]
4369
+ name = "windows-targets"
4370
+ version = "0.52.6"
4371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4372
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
4373
+ dependencies = [
4374
+ "windows_aarch64_gnullvm 0.52.6",
4375
+ "windows_aarch64_msvc 0.52.6",
4376
+ "windows_i686_gnu 0.52.6",
4377
+ "windows_i686_gnullvm 0.52.6",
4378
+ "windows_i686_msvc 0.52.6",
4379
+ "windows_x86_64_gnu 0.52.6",
4380
+ "windows_x86_64_gnullvm 0.52.6",
4381
+ "windows_x86_64_msvc 0.52.6",
4382
+ ]
4383
+
4384
+ [[package]]
4385
+ name = "windows-targets"
4386
+ version = "0.53.5"
4387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4388
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
4389
+ dependencies = [
4390
+ "windows-link 0.2.1",
4391
+ "windows_aarch64_gnullvm 0.53.1",
4392
+ "windows_aarch64_msvc 0.53.1",
4393
+ "windows_i686_gnu 0.53.1",
4394
+ "windows_i686_gnullvm 0.53.1",
4395
+ "windows_i686_msvc 0.53.1",
4396
+ "windows_x86_64_gnu 0.53.1",
4397
+ "windows_x86_64_gnullvm 0.53.1",
4398
+ "windows_x86_64_msvc 0.53.1",
4399
+ ]
4400
+
4401
+ [[package]]
4402
+ name = "windows-threading"
4403
+ version = "0.1.0"
4404
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4405
+ checksum = "b66463ad2e0ea3bbf808b7f1d371311c80e115c0b71d60efc142cafbcfb057a6"
4406
+ dependencies = [
4407
+ "windows-link 0.1.3",
4408
+ ]
4409
+
4410
+ [[package]]
4411
+ name = "windows-version"
4412
+ version = "0.1.7"
4413
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4414
+ checksum = "e4060a1da109b9d0326b7262c8e12c84df67cc0dbc9e33cf49e01ccc2eb63631"
4415
+ dependencies = [
4416
+ "windows-link 0.2.1",
4417
+ ]
4418
+
4419
+ [[package]]
4420
+ name = "windows_aarch64_gnullvm"
4421
+ version = "0.42.2"
4422
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4423
+ checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
4424
+
4425
+ [[package]]
4426
+ name = "windows_aarch64_gnullvm"
4427
+ version = "0.52.6"
4428
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4429
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
4430
+
4431
+ [[package]]
4432
+ name = "windows_aarch64_gnullvm"
4433
+ version = "0.53.1"
4434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4435
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
4436
+
4437
+ [[package]]
4438
+ name = "windows_aarch64_msvc"
4439
+ version = "0.42.2"
4440
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4441
+ checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
4442
+
4443
+ [[package]]
4444
+ name = "windows_aarch64_msvc"
4445
+ version = "0.52.6"
4446
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4447
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
4448
+
4449
+ [[package]]
4450
+ name = "windows_aarch64_msvc"
4451
+ version = "0.53.1"
4452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4453
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
4454
+
4455
+ [[package]]
4456
+ name = "windows_i686_gnu"
4457
+ version = "0.42.2"
4458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4459
+ checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
4460
+
4461
+ [[package]]
4462
+ name = "windows_i686_gnu"
4463
+ version = "0.52.6"
4464
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4465
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
4466
+
4467
+ [[package]]
4468
+ name = "windows_i686_gnu"
4469
+ version = "0.53.1"
4470
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4471
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
4472
+
4473
+ [[package]]
4474
+ name = "windows_i686_gnullvm"
4475
+ version = "0.52.6"
4476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4477
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
4478
+
4479
+ [[package]]
4480
+ name = "windows_i686_gnullvm"
4481
+ version = "0.53.1"
4482
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4483
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
4484
+
4485
+ [[package]]
4486
+ name = "windows_i686_msvc"
4487
+ version = "0.42.2"
4488
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4489
+ checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
4490
+
4491
+ [[package]]
4492
+ name = "windows_i686_msvc"
4493
+ version = "0.52.6"
4494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4495
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
4496
+
4497
+ [[package]]
4498
+ name = "windows_i686_msvc"
4499
+ version = "0.53.1"
4500
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4501
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
4502
+
4503
+ [[package]]
4504
+ name = "windows_x86_64_gnu"
4505
+ version = "0.42.2"
4506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4507
+ checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
4508
+
4509
+ [[package]]
4510
+ name = "windows_x86_64_gnu"
4511
+ version = "0.52.6"
4512
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4513
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
4514
+
4515
+ [[package]]
4516
+ name = "windows_x86_64_gnu"
4517
+ version = "0.53.1"
4518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4519
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
4520
+
4521
+ [[package]]
4522
+ name = "windows_x86_64_gnullvm"
4523
+ version = "0.42.2"
4524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4525
+ checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
4526
+
4527
+ [[package]]
4528
+ name = "windows_x86_64_gnullvm"
4529
+ version = "0.52.6"
4530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4531
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
4532
+
4533
+ [[package]]
4534
+ name = "windows_x86_64_gnullvm"
4535
+ version = "0.53.1"
4536
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4537
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
4538
+
4539
+ [[package]]
4540
+ name = "windows_x86_64_msvc"
4541
+ version = "0.42.2"
4542
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4543
+ checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
4544
+
4545
+ [[package]]
4546
+ name = "windows_x86_64_msvc"
4547
+ version = "0.52.6"
4548
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4549
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
4550
+
4551
+ [[package]]
4552
+ name = "windows_x86_64_msvc"
4553
+ version = "0.53.1"
4554
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4555
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
4556
+
4557
+ [[package]]
4558
+ name = "winnow"
4559
+ version = "0.5.40"
4560
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4561
+ checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876"
4562
+ dependencies = [
4563
+ "memchr",
4564
+ ]
4565
+
4566
+ [[package]]
4567
+ name = "winnow"
4568
+ version = "0.7.14"
4569
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4570
+ checksum = "5a5364e9d77fcdeeaa6062ced926ee3381faa2ee02d3eb83a5c27a8825540829"
4571
+ dependencies = [
4572
+ "memchr",
4573
+ ]
4574
+
4575
+ [[package]]
4576
+ name = "winreg"
4577
+ version = "0.55.0"
4578
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4579
+ checksum = "cb5a765337c50e9ec252c2069be9bf91c7df47afb103b642ba3a53bf8101be97"
4580
+ dependencies = [
4581
+ "cfg-if",
4582
+ "windows-sys 0.59.0",
4583
+ ]
4584
+
4585
+ [[package]]
4586
+ name = "wit-bindgen"
4587
+ version = "0.51.0"
4588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4589
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
4590
+
4591
+ [[package]]
4592
+ name = "writeable"
4593
+ version = "0.6.2"
4594
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4595
+ checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
4596
+
4597
+ [[package]]
4598
+ name = "wry"
4599
+ version = "0.54.1"
4600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4601
+ checksum = "5ed1a195b0375491dd15a7066a10251be217ce743cf4bbbbdcf5391d6473bee0"
4602
+ dependencies = [
4603
+ "base64 0.22.1",
4604
+ "block2",
4605
+ "cookie",
4606
+ "crossbeam-channel",
4607
+ "dirs",
4608
+ "dpi",
4609
+ "dunce",
4610
+ "gdkx11",
4611
+ "gtk",
4612
+ "html5ever",
4613
+ "http",
4614
+ "javascriptcore-rs",
4615
+ "jni",
4616
+ "kuchikiki",
4617
+ "libc",
4618
+ "ndk",
4619
+ "objc2",
4620
+ "objc2-app-kit",
4621
+ "objc2-core-foundation",
4622
+ "objc2-foundation",
4623
+ "objc2-ui-kit",
4624
+ "objc2-web-kit",
4625
+ "once_cell",
4626
+ "percent-encoding",
4627
+ "raw-window-handle",
4628
+ "sha2",
4629
+ "soup3",
4630
+ "tao-macros",
4631
+ "thiserror 2.0.18",
4632
+ "url",
4633
+ "webkit2gtk",
4634
+ "webkit2gtk-sys",
4635
+ "webview2-com",
4636
+ "windows",
4637
+ "windows-core 0.61.2",
4638
+ "windows-version",
4639
+ "x11-dl",
4640
+ ]
4641
+
4642
+ [[package]]
4643
+ name = "x11"
4644
+ version = "2.21.0"
4645
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4646
+ checksum = "502da5464ccd04011667b11c435cb992822c2c0dbde1770c988480d312a0db2e"
4647
+ dependencies = [
4648
+ "libc",
4649
+ "pkg-config",
4650
+ ]
4651
+
4652
+ [[package]]
4653
+ name = "x11-dl"
4654
+ version = "2.21.0"
4655
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4656
+ checksum = "38735924fedd5314a6e548792904ed8c6de6636285cb9fec04d5b1db85c1516f"
4657
+ dependencies = [
4658
+ "libc",
4659
+ "once_cell",
4660
+ "pkg-config",
4661
+ ]
4662
+
4663
+ [[package]]
4664
+ name = "yoke"
4665
+ version = "0.8.1"
4666
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4667
+ checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
4668
+ dependencies = [
4669
+ "stable_deref_trait",
4670
+ "yoke-derive",
4671
+ "zerofrom",
4672
+ ]
4673
+
4674
+ [[package]]
4675
+ name = "yoke-derive"
4676
+ version = "0.8.1"
4677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4678
+ checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
4679
+ dependencies = [
4680
+ "proc-macro2",
4681
+ "quote",
4682
+ "syn 2.0.114",
4683
+ "synstructure",
4684
+ ]
4685
+
4686
+ [[package]]
4687
+ name = "zerocopy"
4688
+ version = "0.8.37"
4689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4690
+ checksum = "7456cf00f0685ad319c5b1693f291a650eaf345e941d082fc4e03df8a03996ac"
4691
+ dependencies = [
4692
+ "zerocopy-derive",
4693
+ ]
4694
+
4695
+ [[package]]
4696
+ name = "zerocopy-derive"
4697
+ version = "0.8.37"
4698
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4699
+ checksum = "1328722bbf2115db7e19d69ebcc15e795719e2d66b60827c6a69a117365e37a0"
4700
+ dependencies = [
4701
+ "proc-macro2",
4702
+ "quote",
4703
+ "syn 2.0.114",
4704
+ ]
4705
+
4706
+ [[package]]
4707
+ name = "zerofrom"
4708
+ version = "0.1.6"
4709
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4710
+ checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
4711
+ dependencies = [
4712
+ "zerofrom-derive",
4713
+ ]
4714
+
4715
+ [[package]]
4716
+ name = "zerofrom-derive"
4717
+ version = "0.1.6"
4718
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4719
+ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
4720
+ dependencies = [
4721
+ "proc-macro2",
4722
+ "quote",
4723
+ "syn 2.0.114",
4724
+ "synstructure",
4725
+ ]
4726
+
4727
+ [[package]]
4728
+ name = "zerotrie"
4729
+ version = "0.2.3"
4730
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4731
+ checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
4732
+ dependencies = [
4733
+ "displaydoc",
4734
+ "yoke",
4735
+ "zerofrom",
4736
+ ]
4737
+
4738
+ [[package]]
4739
+ name = "zerovec"
4740
+ version = "0.11.5"
4741
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4742
+ checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
4743
+ dependencies = [
4744
+ "yoke",
4745
+ "zerofrom",
4746
+ "zerovec-derive",
4747
+ ]
4748
+
4749
+ [[package]]
4750
+ name = "zerovec-derive"
4751
+ version = "0.11.2"
4752
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4753
+ checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
4754
+ dependencies = [
4755
+ "proc-macro2",
4756
+ "quote",
4757
+ "syn 2.0.114",
4758
+ ]
4759
+
4760
+ [[package]]
4761
+ name = "zmij"
4762
+ version = "1.0.19"
4763
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4764
+ checksum = "3ff05f8caa9038894637571ae6b9e29466c1f4f829d26c9b28f869a29cbe3445"