elit 3.4.3 → 3.4.5

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 (61) hide show
  1. package/Cargo.lock +3082 -0
  2. package/Cargo.toml +35 -0
  3. package/README.md +485 -988
  4. package/dist/build.js +3 -46
  5. package/dist/build.js.map +1 -1
  6. package/dist/build.mjs +3 -46
  7. package/dist/build.mjs.map +1 -1
  8. package/dist/cli.js +1717 -199
  9. package/dist/config.d.mts +41 -2
  10. package/dist/config.d.ts +40 -1
  11. package/dist/config.d.ts.map +1 -1
  12. package/dist/config.js +11 -63
  13. package/dist/config.js.map +1 -1
  14. package/dist/config.mjs +10 -63
  15. package/dist/config.mjs.map +1 -1
  16. package/dist/coverage.js +3 -46
  17. package/dist/coverage.js.map +1 -1
  18. package/dist/coverage.mjs +3 -46
  19. package/dist/coverage.mjs.map +1 -1
  20. package/dist/desktop-cli.d.ts +2 -0
  21. package/dist/desktop-cli.d.ts.map +1 -0
  22. package/dist/desktop.d.mts +68 -0
  23. package/dist/desktop.d.ts +68 -0
  24. package/dist/desktop.d.ts.map +1 -0
  25. package/dist/desktop.js +68 -0
  26. package/dist/desktop.js.map +1 -0
  27. package/dist/desktop.mjs +31 -0
  28. package/dist/desktop.mjs.map +1 -0
  29. package/dist/fs.d.ts.map +1 -1
  30. package/dist/fs.js +5 -60
  31. package/dist/fs.js.map +1 -1
  32. package/dist/fs.mjs +5 -60
  33. package/dist/fs.mjs.map +1 -1
  34. package/dist/server.js +5 -60
  35. package/dist/server.js.map +1 -1
  36. package/dist/server.mjs +5 -60
  37. package/dist/server.mjs.map +1 -1
  38. package/dist/test-runtime.js +3 -11
  39. package/dist/test-runtime.js.map +1 -1
  40. package/dist/test-runtime.mjs +3 -11
  41. package/dist/test-runtime.mjs.map +1 -1
  42. package/dist/test.js +4 -51
  43. package/dist/test.js.map +1 -1
  44. package/dist/test.mjs +4 -51
  45. package/dist/test.mjs.map +1 -1
  46. package/dist/wapk-cli.d.ts +54 -0
  47. package/dist/wapk-cli.d.ts.map +1 -0
  48. package/package.json +8 -1
  49. package/src/cli.ts +47 -5
  50. package/src/config.ts +58 -5
  51. package/src/desktop/build.rs +83 -0
  52. package/src/desktop/icon.rs +106 -0
  53. package/src/desktop/main.rs +235 -0
  54. package/src/desktop/runtime/external.rs +422 -0
  55. package/src/desktop/runtime/mod.rs +67 -0
  56. package/src/desktop/runtime/quickjs.rs +106 -0
  57. package/src/desktop/window.rs +383 -0
  58. package/src/desktop-cli.ts +970 -0
  59. package/src/desktop.ts +99 -0
  60. package/src/fs.ts +5 -74
  61. package/src/wapk-cli.ts +997 -0
package/Cargo.lock ADDED
@@ -0,0 +1,3082 @@
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 = "arrayref"
13
+ version = "0.3.9"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb"
16
+
17
+ [[package]]
18
+ name = "arrayvec"
19
+ version = "0.7.6"
20
+ source = "registry+https://github.com/rust-lang/crates.io-index"
21
+ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
22
+
23
+ [[package]]
24
+ name = "atk"
25
+ version = "0.18.2"
26
+ source = "registry+https://github.com/rust-lang/crates.io-index"
27
+ checksum = "241b621213072e993be4f6f3a9e4b45f65b7e6faad43001be957184b7bb1824b"
28
+ dependencies = [
29
+ "atk-sys",
30
+ "glib",
31
+ "libc",
32
+ ]
33
+
34
+ [[package]]
35
+ name = "atk-sys"
36
+ version = "0.18.2"
37
+ source = "registry+https://github.com/rust-lang/crates.io-index"
38
+ checksum = "c5e48b684b0ca77d2bbadeef17424c2ea3c897d44d566a1617e7e8f30614d086"
39
+ dependencies = [
40
+ "glib-sys",
41
+ "gobject-sys",
42
+ "libc",
43
+ "system-deps",
44
+ ]
45
+
46
+ [[package]]
47
+ name = "autocfg"
48
+ version = "1.5.0"
49
+ source = "registry+https://github.com/rust-lang/crates.io-index"
50
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
51
+
52
+ [[package]]
53
+ name = "base64"
54
+ version = "0.22.1"
55
+ source = "registry+https://github.com/rust-lang/crates.io-index"
56
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
57
+
58
+ [[package]]
59
+ name = "bit-set"
60
+ version = "0.8.0"
61
+ source = "registry+https://github.com/rust-lang/crates.io-index"
62
+ checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
63
+ dependencies = [
64
+ "bit-vec",
65
+ ]
66
+
67
+ [[package]]
68
+ name = "bit-vec"
69
+ version = "0.8.0"
70
+ source = "registry+https://github.com/rust-lang/crates.io-index"
71
+ checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
72
+
73
+ [[package]]
74
+ name = "bitflags"
75
+ version = "1.3.2"
76
+ source = "registry+https://github.com/rust-lang/crates.io-index"
77
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
78
+
79
+ [[package]]
80
+ name = "bitflags"
81
+ version = "2.11.0"
82
+ source = "registry+https://github.com/rust-lang/crates.io-index"
83
+ checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
84
+
85
+ [[package]]
86
+ name = "block-buffer"
87
+ version = "0.10.4"
88
+ source = "registry+https://github.com/rust-lang/crates.io-index"
89
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
90
+ dependencies = [
91
+ "generic-array",
92
+ ]
93
+
94
+ [[package]]
95
+ name = "block2"
96
+ version = "0.6.2"
97
+ source = "registry+https://github.com/rust-lang/crates.io-index"
98
+ checksum = "cdeb9d870516001442e364c5220d3574d2da8dc765554b4a617230d33fa58ef5"
99
+ dependencies = [
100
+ "objc2",
101
+ ]
102
+
103
+ [[package]]
104
+ name = "bytemuck"
105
+ version = "1.25.0"
106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
107
+ checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec"
108
+
109
+ [[package]]
110
+ name = "byteorder-lite"
111
+ version = "0.1.0"
112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
113
+ checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495"
114
+
115
+ [[package]]
116
+ name = "bytes"
117
+ version = "1.11.1"
118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
119
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
120
+
121
+ [[package]]
122
+ name = "cairo-rs"
123
+ version = "0.18.5"
124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
125
+ checksum = "8ca26ef0159422fb77631dc9d17b102f253b876fe1586b03b803e63a309b4ee2"
126
+ dependencies = [
127
+ "bitflags 2.11.0",
128
+ "cairo-sys-rs",
129
+ "glib",
130
+ "libc",
131
+ "once_cell",
132
+ "thiserror 1.0.69",
133
+ ]
134
+
135
+ [[package]]
136
+ name = "cairo-sys-rs"
137
+ version = "0.18.2"
138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
139
+ checksum = "685c9fa8e590b8b3d678873528d83411db17242a73fccaed827770ea0fedda51"
140
+ dependencies = [
141
+ "glib-sys",
142
+ "libc",
143
+ "system-deps",
144
+ ]
145
+
146
+ [[package]]
147
+ name = "cc"
148
+ version = "1.2.58"
149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
150
+ checksum = "e1e928d4b69e3077709075a938a05ffbedfa53a84c8f766efbf8220bb1ff60e1"
151
+ dependencies = [
152
+ "find-msvc-tools",
153
+ "shlex",
154
+ ]
155
+
156
+ [[package]]
157
+ name = "cesu8"
158
+ version = "1.1.0"
159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
160
+ checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"
161
+
162
+ [[package]]
163
+ name = "cfg-expr"
164
+ version = "0.15.8"
165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
166
+ checksum = "d067ad48b8650848b989a59a86c6c36a995d02d2bf778d45c3c5d57bc2718f02"
167
+ dependencies = [
168
+ "smallvec",
169
+ "target-lexicon",
170
+ ]
171
+
172
+ [[package]]
173
+ name = "cfg-if"
174
+ version = "1.0.4"
175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
176
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
177
+
178
+ [[package]]
179
+ name = "color_quant"
180
+ version = "1.1.0"
181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
182
+ checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b"
183
+
184
+ [[package]]
185
+ name = "combine"
186
+ version = "4.6.7"
187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
188
+ checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
189
+ dependencies = [
190
+ "bytes",
191
+ "memchr",
192
+ ]
193
+
194
+ [[package]]
195
+ name = "cookie"
196
+ version = "0.18.1"
197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
198
+ checksum = "4ddef33a339a91ea89fb53151bd0a4689cfce27055c291dfa69945475d22c747"
199
+ dependencies = [
200
+ "time",
201
+ "version_check",
202
+ ]
203
+
204
+ [[package]]
205
+ name = "core-foundation"
206
+ version = "0.10.1"
207
+ source = "registry+https://github.com/rust-lang/crates.io-index"
208
+ checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
209
+ dependencies = [
210
+ "core-foundation-sys",
211
+ "libc",
212
+ ]
213
+
214
+ [[package]]
215
+ name = "core-foundation-sys"
216
+ version = "0.8.7"
217
+ source = "registry+https://github.com/rust-lang/crates.io-index"
218
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
219
+
220
+ [[package]]
221
+ name = "core-graphics"
222
+ version = "0.25.0"
223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
224
+ checksum = "064badf302c3194842cf2c5d61f56cc88e54a759313879cdf03abdd27d0c3b97"
225
+ dependencies = [
226
+ "bitflags 2.11.0",
227
+ "core-foundation",
228
+ "core-graphics-types",
229
+ "foreign-types",
230
+ "libc",
231
+ ]
232
+
233
+ [[package]]
234
+ name = "core-graphics-types"
235
+ version = "0.2.0"
236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
237
+ checksum = "3d44a101f213f6c4cdc1853d4b78aef6db6bdfa3468798cc1d9912f4735013eb"
238
+ dependencies = [
239
+ "bitflags 2.11.0",
240
+ "core-foundation",
241
+ "libc",
242
+ ]
243
+
244
+ [[package]]
245
+ name = "core_maths"
246
+ version = "0.1.1"
247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
248
+ checksum = "77745e017f5edba1a9c1d854f6f3a52dac8a12dd5af5d2f54aecf61e43d80d30"
249
+ dependencies = [
250
+ "libm",
251
+ ]
252
+
253
+ [[package]]
254
+ name = "cpufeatures"
255
+ version = "0.2.17"
256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
257
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
258
+ dependencies = [
259
+ "libc",
260
+ ]
261
+
262
+ [[package]]
263
+ name = "crc32fast"
264
+ version = "1.5.0"
265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
266
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
267
+ dependencies = [
268
+ "cfg-if",
269
+ ]
270
+
271
+ [[package]]
272
+ name = "crossbeam-channel"
273
+ version = "0.5.15"
274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
275
+ checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
276
+ dependencies = [
277
+ "crossbeam-utils",
278
+ ]
279
+
280
+ [[package]]
281
+ name = "crossbeam-utils"
282
+ version = "0.8.21"
283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
284
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
285
+
286
+ [[package]]
287
+ name = "crypto-common"
288
+ version = "0.1.7"
289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
290
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
291
+ dependencies = [
292
+ "generic-array",
293
+ "typenum",
294
+ ]
295
+
296
+ [[package]]
297
+ name = "cssparser"
298
+ version = "0.36.0"
299
+ source = "registry+https://github.com/rust-lang/crates.io-index"
300
+ checksum = "dae61cf9c0abb83bd659dab65b7e4e38d8236824c85f0f804f173567bda257d2"
301
+ dependencies = [
302
+ "cssparser-macros",
303
+ "dtoa-short",
304
+ "itoa",
305
+ "phf",
306
+ "smallvec",
307
+ ]
308
+
309
+ [[package]]
310
+ name = "cssparser-macros"
311
+ version = "0.6.1"
312
+ source = "registry+https://github.com/rust-lang/crates.io-index"
313
+ checksum = "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331"
314
+ dependencies = [
315
+ "quote",
316
+ "syn 2.0.117",
317
+ ]
318
+
319
+ [[package]]
320
+ name = "data-url"
321
+ version = "0.3.2"
322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
323
+ checksum = "be1e0bca6c3637f992fc1cc7cbc52a78c1ef6db076dbf1059c4323d6a2048376"
324
+
325
+ [[package]]
326
+ name = "deranged"
327
+ version = "0.5.8"
328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
329
+ checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
330
+ dependencies = [
331
+ "powerfmt",
332
+ ]
333
+
334
+ [[package]]
335
+ name = "derive_more"
336
+ version = "2.1.1"
337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
338
+ checksum = "d751e9e49156b02b44f9c1815bcb94b984cdcc4396ecc32521c739452808b134"
339
+ dependencies = [
340
+ "derive_more-impl",
341
+ ]
342
+
343
+ [[package]]
344
+ name = "derive_more-impl"
345
+ version = "2.1.1"
346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
347
+ checksum = "799a97264921d8623a957f6c3b9011f3b5492f557bbb7a5a19b7fa6d06ba8dcb"
348
+ dependencies = [
349
+ "proc-macro2",
350
+ "quote",
351
+ "rustc_version",
352
+ "syn 2.0.117",
353
+ ]
354
+
355
+ [[package]]
356
+ name = "digest"
357
+ version = "0.10.7"
358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
359
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
360
+ dependencies = [
361
+ "block-buffer",
362
+ "crypto-common",
363
+ ]
364
+
365
+ [[package]]
366
+ name = "dirs"
367
+ version = "6.0.0"
368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
369
+ checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e"
370
+ dependencies = [
371
+ "dirs-sys",
372
+ ]
373
+
374
+ [[package]]
375
+ name = "dirs-sys"
376
+ version = "0.5.0"
377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
378
+ checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab"
379
+ dependencies = [
380
+ "libc",
381
+ "option-ext",
382
+ "redox_users",
383
+ "windows-sys 0.61.2",
384
+ ]
385
+
386
+ [[package]]
387
+ name = "dispatch2"
388
+ version = "0.3.1"
389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
390
+ checksum = "1e0e367e4e7da84520dedcac1901e4da967309406d1e51017ae1abfb97adbd38"
391
+ dependencies = [
392
+ "bitflags 2.11.0",
393
+ "block2",
394
+ "libc",
395
+ "objc2",
396
+ ]
397
+
398
+ [[package]]
399
+ name = "displaydoc"
400
+ version = "0.2.5"
401
+ source = "registry+https://github.com/rust-lang/crates.io-index"
402
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
403
+ dependencies = [
404
+ "proc-macro2",
405
+ "quote",
406
+ "syn 2.0.117",
407
+ ]
408
+
409
+ [[package]]
410
+ name = "dlopen2"
411
+ version = "0.8.2"
412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
413
+ checksum = "5e2c5bd4158e66d1e215c49b837e11d62f3267b30c92f1d171c4d3105e3dc4d4"
414
+ dependencies = [
415
+ "dlopen2_derive",
416
+ "libc",
417
+ "once_cell",
418
+ "winapi",
419
+ ]
420
+
421
+ [[package]]
422
+ name = "dlopen2_derive"
423
+ version = "0.4.3"
424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
425
+ checksum = "0fbbb781877580993a8707ec48672673ec7b81eeba04cfd2310bd28c08e47c8f"
426
+ dependencies = [
427
+ "proc-macro2",
428
+ "quote",
429
+ "syn 2.0.117",
430
+ ]
431
+
432
+ [[package]]
433
+ name = "dom_query"
434
+ version = "0.27.0"
435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
436
+ checksum = "521e380c0c8afb8d9a1e83a1822ee03556fc3e3e7dbc1fd30be14e37f9cb3f89"
437
+ dependencies = [
438
+ "bit-set",
439
+ "cssparser",
440
+ "foldhash",
441
+ "html5ever",
442
+ "precomputed-hash",
443
+ "selectors",
444
+ "tendril",
445
+ ]
446
+
447
+ [[package]]
448
+ name = "dpi"
449
+ version = "0.1.2"
450
+ source = "registry+https://github.com/rust-lang/crates.io-index"
451
+ checksum = "d8b14ccef22fc6f5a8f4d7d768562a182c04ce9a3b3157b91390b52ddfdf1a76"
452
+
453
+ [[package]]
454
+ name = "dtoa"
455
+ version = "1.0.11"
456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
457
+ checksum = "4c3cf4824e2d5f025c7b531afcb2325364084a16806f6d47fbc1f5fbd9960590"
458
+
459
+ [[package]]
460
+ name = "dtoa-short"
461
+ version = "0.3.5"
462
+ source = "registry+https://github.com/rust-lang/crates.io-index"
463
+ checksum = "cd1511a7b6a56299bd043a9c167a6d2bfb37bf84a6dfceaba651168adfb43c87"
464
+ dependencies = [
465
+ "dtoa",
466
+ ]
467
+
468
+ [[package]]
469
+ name = "dunce"
470
+ version = "1.0.5"
471
+ source = "registry+https://github.com/rust-lang/crates.io-index"
472
+ checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
473
+
474
+ [[package]]
475
+ name = "elit-desktop"
476
+ version = "0.1.0"
477
+ dependencies = [
478
+ "http",
479
+ "image",
480
+ "resvg",
481
+ "rquickjs",
482
+ "serde",
483
+ "serde_json",
484
+ "tao",
485
+ "winres",
486
+ "wry",
487
+ ]
488
+
489
+ [[package]]
490
+ name = "equivalent"
491
+ version = "1.0.2"
492
+ source = "registry+https://github.com/rust-lang/crates.io-index"
493
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
494
+
495
+ [[package]]
496
+ name = "euclid"
497
+ version = "0.22.14"
498
+ source = "registry+https://github.com/rust-lang/crates.io-index"
499
+ checksum = "f1a05365e3b1c6d1650318537c7460c6923f1abdd272ad6842baa2b509957a06"
500
+ dependencies = [
501
+ "num-traits",
502
+ ]
503
+
504
+ [[package]]
505
+ name = "fastrand"
506
+ version = "2.3.0"
507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
508
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
509
+
510
+ [[package]]
511
+ name = "fdeflate"
512
+ version = "0.3.7"
513
+ source = "registry+https://github.com/rust-lang/crates.io-index"
514
+ checksum = "1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c"
515
+ dependencies = [
516
+ "simd-adler32",
517
+ ]
518
+
519
+ [[package]]
520
+ name = "field-offset"
521
+ version = "0.3.6"
522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
523
+ checksum = "38e2275cc4e4fc009b0669731a1e5ab7ebf11f469eaede2bab9309a5b4d6057f"
524
+ dependencies = [
525
+ "memoffset",
526
+ "rustc_version",
527
+ ]
528
+
529
+ [[package]]
530
+ name = "find-msvc-tools"
531
+ version = "0.1.9"
532
+ source = "registry+https://github.com/rust-lang/crates.io-index"
533
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
534
+
535
+ [[package]]
536
+ name = "flate2"
537
+ version = "1.1.9"
538
+ source = "registry+https://github.com/rust-lang/crates.io-index"
539
+ checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
540
+ dependencies = [
541
+ "crc32fast",
542
+ "miniz_oxide",
543
+ ]
544
+
545
+ [[package]]
546
+ name = "float-cmp"
547
+ version = "0.9.0"
548
+ source = "registry+https://github.com/rust-lang/crates.io-index"
549
+ checksum = "98de4bbd547a563b716d8dfa9aad1cb19bfab00f4fa09a6a4ed21dbcf44ce9c4"
550
+
551
+ [[package]]
552
+ name = "foldhash"
553
+ version = "0.2.0"
554
+ source = "registry+https://github.com/rust-lang/crates.io-index"
555
+ checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
556
+
557
+ [[package]]
558
+ name = "fontconfig-parser"
559
+ version = "0.5.8"
560
+ source = "registry+https://github.com/rust-lang/crates.io-index"
561
+ checksum = "bbc773e24e02d4ddd8395fd30dc147524273a83e54e0f312d986ea30de5f5646"
562
+ dependencies = [
563
+ "roxmltree",
564
+ ]
565
+
566
+ [[package]]
567
+ name = "fontdb"
568
+ version = "0.23.0"
569
+ source = "registry+https://github.com/rust-lang/crates.io-index"
570
+ checksum = "457e789b3d1202543297a350643cf459f836cade38934e7a4cf6a39e7cde2905"
571
+ dependencies = [
572
+ "fontconfig-parser",
573
+ "log",
574
+ "memmap2",
575
+ "slotmap",
576
+ "tinyvec",
577
+ "ttf-parser",
578
+ ]
579
+
580
+ [[package]]
581
+ name = "foreign-types"
582
+ version = "0.5.0"
583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
584
+ checksum = "d737d9aa519fb7b749cbc3b962edcf310a8dd1f4b67c91c4f83975dbdd17d965"
585
+ dependencies = [
586
+ "foreign-types-macros",
587
+ "foreign-types-shared",
588
+ ]
589
+
590
+ [[package]]
591
+ name = "foreign-types-macros"
592
+ version = "0.2.3"
593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
594
+ checksum = "1a5c6c585bc94aaf2c7b51dd4c2ba22680844aba4c687be581871a6f518c5742"
595
+ dependencies = [
596
+ "proc-macro2",
597
+ "quote",
598
+ "syn 2.0.117",
599
+ ]
600
+
601
+ [[package]]
602
+ name = "foreign-types-shared"
603
+ version = "0.3.1"
604
+ source = "registry+https://github.com/rust-lang/crates.io-index"
605
+ checksum = "aa9a19cbb55df58761df49b23516a86d432839add4af60fc256da840f66ed35b"
606
+
607
+ [[package]]
608
+ name = "form_urlencoded"
609
+ version = "1.2.2"
610
+ source = "registry+https://github.com/rust-lang/crates.io-index"
611
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
612
+ dependencies = [
613
+ "percent-encoding",
614
+ ]
615
+
616
+ [[package]]
617
+ name = "futures-channel"
618
+ version = "0.3.32"
619
+ source = "registry+https://github.com/rust-lang/crates.io-index"
620
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
621
+ dependencies = [
622
+ "futures-core",
623
+ ]
624
+
625
+ [[package]]
626
+ name = "futures-core"
627
+ version = "0.3.32"
628
+ source = "registry+https://github.com/rust-lang/crates.io-index"
629
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
630
+
631
+ [[package]]
632
+ name = "futures-executor"
633
+ version = "0.3.32"
634
+ source = "registry+https://github.com/rust-lang/crates.io-index"
635
+ checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
636
+ dependencies = [
637
+ "futures-core",
638
+ "futures-task",
639
+ "futures-util",
640
+ ]
641
+
642
+ [[package]]
643
+ name = "futures-io"
644
+ version = "0.3.32"
645
+ source = "registry+https://github.com/rust-lang/crates.io-index"
646
+ checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
647
+
648
+ [[package]]
649
+ name = "futures-macro"
650
+ version = "0.3.32"
651
+ source = "registry+https://github.com/rust-lang/crates.io-index"
652
+ checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
653
+ dependencies = [
654
+ "proc-macro2",
655
+ "quote",
656
+ "syn 2.0.117",
657
+ ]
658
+
659
+ [[package]]
660
+ name = "futures-task"
661
+ version = "0.3.32"
662
+ source = "registry+https://github.com/rust-lang/crates.io-index"
663
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
664
+
665
+ [[package]]
666
+ name = "futures-util"
667
+ version = "0.3.32"
668
+ source = "registry+https://github.com/rust-lang/crates.io-index"
669
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
670
+ dependencies = [
671
+ "futures-core",
672
+ "futures-macro",
673
+ "futures-task",
674
+ "pin-project-lite",
675
+ "slab",
676
+ ]
677
+
678
+ [[package]]
679
+ name = "gdk"
680
+ version = "0.18.2"
681
+ source = "registry+https://github.com/rust-lang/crates.io-index"
682
+ checksum = "d9f245958c627ac99d8e529166f9823fb3b838d1d41fd2b297af3075093c2691"
683
+ dependencies = [
684
+ "cairo-rs",
685
+ "gdk-pixbuf",
686
+ "gdk-sys",
687
+ "gio",
688
+ "glib",
689
+ "libc",
690
+ "pango",
691
+ ]
692
+
693
+ [[package]]
694
+ name = "gdk-pixbuf"
695
+ version = "0.18.5"
696
+ source = "registry+https://github.com/rust-lang/crates.io-index"
697
+ checksum = "50e1f5f1b0bfb830d6ccc8066d18db35c487b1b2b1e8589b5dfe9f07e8defaec"
698
+ dependencies = [
699
+ "gdk-pixbuf-sys",
700
+ "gio",
701
+ "glib",
702
+ "libc",
703
+ "once_cell",
704
+ ]
705
+
706
+ [[package]]
707
+ name = "gdk-pixbuf-sys"
708
+ version = "0.18.0"
709
+ source = "registry+https://github.com/rust-lang/crates.io-index"
710
+ checksum = "3f9839ea644ed9c97a34d129ad56d38a25e6756f99f3a88e15cd39c20629caf7"
711
+ dependencies = [
712
+ "gio-sys",
713
+ "glib-sys",
714
+ "gobject-sys",
715
+ "libc",
716
+ "system-deps",
717
+ ]
718
+
719
+ [[package]]
720
+ name = "gdk-sys"
721
+ version = "0.18.2"
722
+ source = "registry+https://github.com/rust-lang/crates.io-index"
723
+ checksum = "5c2d13f38594ac1e66619e188c6d5a1adb98d11b2fcf7894fc416ad76aa2f3f7"
724
+ dependencies = [
725
+ "cairo-sys-rs",
726
+ "gdk-pixbuf-sys",
727
+ "gio-sys",
728
+ "glib-sys",
729
+ "gobject-sys",
730
+ "libc",
731
+ "pango-sys",
732
+ "pkg-config",
733
+ "system-deps",
734
+ ]
735
+
736
+ [[package]]
737
+ name = "gdkwayland-sys"
738
+ version = "0.18.2"
739
+ source = "registry+https://github.com/rust-lang/crates.io-index"
740
+ checksum = "140071d506d223f7572b9f09b5e155afbd77428cd5cc7af8f2694c41d98dfe69"
741
+ dependencies = [
742
+ "gdk-sys",
743
+ "glib-sys",
744
+ "gobject-sys",
745
+ "libc",
746
+ "pkg-config",
747
+ "system-deps",
748
+ ]
749
+
750
+ [[package]]
751
+ name = "gdkx11"
752
+ version = "0.18.2"
753
+ source = "registry+https://github.com/rust-lang/crates.io-index"
754
+ checksum = "3caa00e14351bebbc8183b3c36690327eb77c49abc2268dd4bd36b856db3fbfe"
755
+ dependencies = [
756
+ "gdk",
757
+ "gdkx11-sys",
758
+ "gio",
759
+ "glib",
760
+ "libc",
761
+ "x11",
762
+ ]
763
+
764
+ [[package]]
765
+ name = "gdkx11-sys"
766
+ version = "0.18.2"
767
+ source = "registry+https://github.com/rust-lang/crates.io-index"
768
+ checksum = "6e2e7445fe01ac26f11601db260dd8608fe172514eb63b3b5e261ea6b0f4428d"
769
+ dependencies = [
770
+ "gdk-sys",
771
+ "glib-sys",
772
+ "libc",
773
+ "system-deps",
774
+ "x11",
775
+ ]
776
+
777
+ [[package]]
778
+ name = "generic-array"
779
+ version = "0.14.7"
780
+ source = "registry+https://github.com/rust-lang/crates.io-index"
781
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
782
+ dependencies = [
783
+ "typenum",
784
+ "version_check",
785
+ ]
786
+
787
+ [[package]]
788
+ name = "getrandom"
789
+ version = "0.2.17"
790
+ source = "registry+https://github.com/rust-lang/crates.io-index"
791
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
792
+ dependencies = [
793
+ "cfg-if",
794
+ "libc",
795
+ "wasi",
796
+ ]
797
+
798
+ [[package]]
799
+ name = "gif"
800
+ version = "0.13.3"
801
+ source = "registry+https://github.com/rust-lang/crates.io-index"
802
+ checksum = "4ae047235e33e2829703574b54fdec96bfbad892062d97fed2f76022287de61b"
803
+ dependencies = [
804
+ "color_quant",
805
+ "weezl",
806
+ ]
807
+
808
+ [[package]]
809
+ name = "gio"
810
+ version = "0.18.4"
811
+ source = "registry+https://github.com/rust-lang/crates.io-index"
812
+ checksum = "d4fc8f532f87b79cbc51a79748f16a6828fb784be93145a322fa14d06d354c73"
813
+ dependencies = [
814
+ "futures-channel",
815
+ "futures-core",
816
+ "futures-io",
817
+ "futures-util",
818
+ "gio-sys",
819
+ "glib",
820
+ "libc",
821
+ "once_cell",
822
+ "pin-project-lite",
823
+ "smallvec",
824
+ "thiserror 1.0.69",
825
+ ]
826
+
827
+ [[package]]
828
+ name = "gio-sys"
829
+ version = "0.18.1"
830
+ source = "registry+https://github.com/rust-lang/crates.io-index"
831
+ checksum = "37566df850baf5e4cb0dfb78af2e4b9898d817ed9263d1090a2df958c64737d2"
832
+ dependencies = [
833
+ "glib-sys",
834
+ "gobject-sys",
835
+ "libc",
836
+ "system-deps",
837
+ "winapi",
838
+ ]
839
+
840
+ [[package]]
841
+ name = "glib"
842
+ version = "0.18.5"
843
+ source = "registry+https://github.com/rust-lang/crates.io-index"
844
+ checksum = "233daaf6e83ae6a12a52055f568f9d7cf4671dabb78ff9560ab6da230ce00ee5"
845
+ dependencies = [
846
+ "bitflags 2.11.0",
847
+ "futures-channel",
848
+ "futures-core",
849
+ "futures-executor",
850
+ "futures-task",
851
+ "futures-util",
852
+ "gio-sys",
853
+ "glib-macros",
854
+ "glib-sys",
855
+ "gobject-sys",
856
+ "libc",
857
+ "memchr",
858
+ "once_cell",
859
+ "smallvec",
860
+ "thiserror 1.0.69",
861
+ ]
862
+
863
+ [[package]]
864
+ name = "glib-macros"
865
+ version = "0.18.5"
866
+ source = "registry+https://github.com/rust-lang/crates.io-index"
867
+ checksum = "0bb0228f477c0900c880fd78c8759b95c7636dbd7842707f49e132378aa2acdc"
868
+ dependencies = [
869
+ "heck 0.4.1",
870
+ "proc-macro-crate 2.0.2",
871
+ "proc-macro-error",
872
+ "proc-macro2",
873
+ "quote",
874
+ "syn 2.0.117",
875
+ ]
876
+
877
+ [[package]]
878
+ name = "glib-sys"
879
+ version = "0.18.1"
880
+ source = "registry+https://github.com/rust-lang/crates.io-index"
881
+ checksum = "063ce2eb6a8d0ea93d2bf8ba1957e78dbab6be1c2220dd3daca57d5a9d869898"
882
+ dependencies = [
883
+ "libc",
884
+ "system-deps",
885
+ ]
886
+
887
+ [[package]]
888
+ name = "gobject-sys"
889
+ version = "0.18.0"
890
+ source = "registry+https://github.com/rust-lang/crates.io-index"
891
+ checksum = "0850127b514d1c4a4654ead6dedadb18198999985908e6ffe4436f53c785ce44"
892
+ dependencies = [
893
+ "glib-sys",
894
+ "libc",
895
+ "system-deps",
896
+ ]
897
+
898
+ [[package]]
899
+ name = "gtk"
900
+ version = "0.18.2"
901
+ source = "registry+https://github.com/rust-lang/crates.io-index"
902
+ checksum = "fd56fb197bfc42bd5d2751f4f017d44ff59fbb58140c6b49f9b3b2bdab08506a"
903
+ dependencies = [
904
+ "atk",
905
+ "cairo-rs",
906
+ "field-offset",
907
+ "futures-channel",
908
+ "gdk",
909
+ "gdk-pixbuf",
910
+ "gio",
911
+ "glib",
912
+ "gtk-sys",
913
+ "gtk3-macros",
914
+ "libc",
915
+ "pango",
916
+ "pkg-config",
917
+ ]
918
+
919
+ [[package]]
920
+ name = "gtk-sys"
921
+ version = "0.18.2"
922
+ source = "registry+https://github.com/rust-lang/crates.io-index"
923
+ checksum = "8f29a1c21c59553eb7dd40e918be54dccd60c52b049b75119d5d96ce6b624414"
924
+ dependencies = [
925
+ "atk-sys",
926
+ "cairo-sys-rs",
927
+ "gdk-pixbuf-sys",
928
+ "gdk-sys",
929
+ "gio-sys",
930
+ "glib-sys",
931
+ "gobject-sys",
932
+ "libc",
933
+ "pango-sys",
934
+ "system-deps",
935
+ ]
936
+
937
+ [[package]]
938
+ name = "gtk3-macros"
939
+ version = "0.18.2"
940
+ source = "registry+https://github.com/rust-lang/crates.io-index"
941
+ checksum = "52ff3c5b21f14f0736fed6dcfc0bfb4225ebf5725f3c0209edeec181e4d73e9d"
942
+ dependencies = [
943
+ "proc-macro-crate 1.3.1",
944
+ "proc-macro-error",
945
+ "proc-macro2",
946
+ "quote",
947
+ "syn 2.0.117",
948
+ ]
949
+
950
+ [[package]]
951
+ name = "hashbrown"
952
+ version = "0.16.1"
953
+ source = "registry+https://github.com/rust-lang/crates.io-index"
954
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
955
+
956
+ [[package]]
957
+ name = "heck"
958
+ version = "0.4.1"
959
+ source = "registry+https://github.com/rust-lang/crates.io-index"
960
+ checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
961
+
962
+ [[package]]
963
+ name = "heck"
964
+ version = "0.5.0"
965
+ source = "registry+https://github.com/rust-lang/crates.io-index"
966
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
967
+
968
+ [[package]]
969
+ name = "html5ever"
970
+ version = "0.38.0"
971
+ source = "registry+https://github.com/rust-lang/crates.io-index"
972
+ checksum = "1054432bae2f14e0061e33d23402fbaa67a921d319d56adc6bcf887ddad1cbc2"
973
+ dependencies = [
974
+ "log",
975
+ "markup5ever",
976
+ ]
977
+
978
+ [[package]]
979
+ name = "http"
980
+ version = "1.4.0"
981
+ source = "registry+https://github.com/rust-lang/crates.io-index"
982
+ checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
983
+ dependencies = [
984
+ "bytes",
985
+ "itoa",
986
+ ]
987
+
988
+ [[package]]
989
+ name = "icu_collections"
990
+ version = "2.1.1"
991
+ source = "registry+https://github.com/rust-lang/crates.io-index"
992
+ checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
993
+ dependencies = [
994
+ "displaydoc",
995
+ "potential_utf",
996
+ "yoke",
997
+ "zerofrom",
998
+ "zerovec",
999
+ ]
1000
+
1001
+ [[package]]
1002
+ name = "icu_locale_core"
1003
+ version = "2.1.1"
1004
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1005
+ checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
1006
+ dependencies = [
1007
+ "displaydoc",
1008
+ "litemap",
1009
+ "tinystr",
1010
+ "writeable",
1011
+ "zerovec",
1012
+ ]
1013
+
1014
+ [[package]]
1015
+ name = "icu_normalizer"
1016
+ version = "2.1.1"
1017
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1018
+ checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
1019
+ dependencies = [
1020
+ "icu_collections",
1021
+ "icu_normalizer_data",
1022
+ "icu_properties",
1023
+ "icu_provider",
1024
+ "smallvec",
1025
+ "zerovec",
1026
+ ]
1027
+
1028
+ [[package]]
1029
+ name = "icu_normalizer_data"
1030
+ version = "2.1.1"
1031
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1032
+ checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
1033
+
1034
+ [[package]]
1035
+ name = "icu_properties"
1036
+ version = "2.1.2"
1037
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1038
+ checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
1039
+ dependencies = [
1040
+ "icu_collections",
1041
+ "icu_locale_core",
1042
+ "icu_properties_data",
1043
+ "icu_provider",
1044
+ "zerotrie",
1045
+ "zerovec",
1046
+ ]
1047
+
1048
+ [[package]]
1049
+ name = "icu_properties_data"
1050
+ version = "2.1.2"
1051
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1052
+ checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
1053
+
1054
+ [[package]]
1055
+ name = "icu_provider"
1056
+ version = "2.1.1"
1057
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1058
+ checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
1059
+ dependencies = [
1060
+ "displaydoc",
1061
+ "icu_locale_core",
1062
+ "writeable",
1063
+ "yoke",
1064
+ "zerofrom",
1065
+ "zerotrie",
1066
+ "zerovec",
1067
+ ]
1068
+
1069
+ [[package]]
1070
+ name = "idna"
1071
+ version = "1.1.0"
1072
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1073
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
1074
+ dependencies = [
1075
+ "idna_adapter",
1076
+ "smallvec",
1077
+ "utf8_iter",
1078
+ ]
1079
+
1080
+ [[package]]
1081
+ name = "idna_adapter"
1082
+ version = "1.2.1"
1083
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1084
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
1085
+ dependencies = [
1086
+ "icu_normalizer",
1087
+ "icu_properties",
1088
+ ]
1089
+
1090
+ [[package]]
1091
+ name = "image"
1092
+ version = "0.25.10"
1093
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1094
+ checksum = "85ab80394333c02fe689eaf900ab500fbd0c2213da414687ebf995a65d5a6104"
1095
+ dependencies = [
1096
+ "bytemuck",
1097
+ "byteorder-lite",
1098
+ "moxcms",
1099
+ "num-traits",
1100
+ "png 0.18.1",
1101
+ ]
1102
+
1103
+ [[package]]
1104
+ name = "image-webp"
1105
+ version = "0.2.4"
1106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1107
+ checksum = "525e9ff3e1a4be2fbea1fdf0e98686a6d98b4d8f937e1bf7402245af1909e8c3"
1108
+ dependencies = [
1109
+ "byteorder-lite",
1110
+ "quick-error",
1111
+ ]
1112
+
1113
+ [[package]]
1114
+ name = "imagesize"
1115
+ version = "0.13.0"
1116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1117
+ checksum = "edcd27d72f2f071c64249075f42e205ff93c9a4c5f6c6da53e79ed9f9832c285"
1118
+
1119
+ [[package]]
1120
+ name = "indexmap"
1121
+ version = "2.13.0"
1122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1123
+ checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
1124
+ dependencies = [
1125
+ "equivalent",
1126
+ "hashbrown",
1127
+ ]
1128
+
1129
+ [[package]]
1130
+ name = "itoa"
1131
+ version = "1.0.18"
1132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1133
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
1134
+
1135
+ [[package]]
1136
+ name = "javascriptcore-rs"
1137
+ version = "1.1.2"
1138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1139
+ checksum = "ca5671e9ffce8ffba57afc24070e906da7fc4b1ba66f2cabebf61bf2ea257fcc"
1140
+ dependencies = [
1141
+ "bitflags 1.3.2",
1142
+ "glib",
1143
+ "javascriptcore-rs-sys",
1144
+ ]
1145
+
1146
+ [[package]]
1147
+ name = "javascriptcore-rs-sys"
1148
+ version = "1.1.1"
1149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1150
+ checksum = "af1be78d14ffa4b75b66df31840478fef72b51f8c2465d4ca7c194da9f7a5124"
1151
+ dependencies = [
1152
+ "glib-sys",
1153
+ "gobject-sys",
1154
+ "libc",
1155
+ "system-deps",
1156
+ ]
1157
+
1158
+ [[package]]
1159
+ name = "jni"
1160
+ version = "0.21.1"
1161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1162
+ checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97"
1163
+ dependencies = [
1164
+ "cesu8",
1165
+ "cfg-if",
1166
+ "combine",
1167
+ "jni-sys 0.3.1",
1168
+ "log",
1169
+ "thiserror 1.0.69",
1170
+ "walkdir",
1171
+ "windows-sys 0.45.0",
1172
+ ]
1173
+
1174
+ [[package]]
1175
+ name = "jni-sys"
1176
+ version = "0.3.1"
1177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1178
+ checksum = "41a652e1f9b6e0275df1f15b32661cf0d4b78d4d87ddec5e0c3c20f097433258"
1179
+ dependencies = [
1180
+ "jni-sys 0.4.1",
1181
+ ]
1182
+
1183
+ [[package]]
1184
+ name = "jni-sys"
1185
+ version = "0.4.1"
1186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1187
+ checksum = "c6377a88cb3910bee9b0fa88d4f42e1d2da8e79915598f65fb0c7ee14c878af2"
1188
+ dependencies = [
1189
+ "jni-sys-macros",
1190
+ ]
1191
+
1192
+ [[package]]
1193
+ name = "jni-sys-macros"
1194
+ version = "0.4.1"
1195
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1196
+ checksum = "38c0b942f458fe50cdac086d2f946512305e5631e720728f2a61aabcd47a6264"
1197
+ dependencies = [
1198
+ "quote",
1199
+ "syn 2.0.117",
1200
+ ]
1201
+
1202
+ [[package]]
1203
+ name = "kurbo"
1204
+ version = "0.11.3"
1205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1206
+ checksum = "c62026ae44756f8a599ba21140f350303d4f08dcdcc71b5ad9c9bb8128c13c62"
1207
+ dependencies = [
1208
+ "arrayvec",
1209
+ "euclid",
1210
+ "smallvec",
1211
+ ]
1212
+
1213
+ [[package]]
1214
+ name = "libc"
1215
+ version = "0.2.183"
1216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1217
+ checksum = "b5b646652bf6661599e1da8901b3b9522896f01e736bad5f723fe7a3a27f899d"
1218
+
1219
+ [[package]]
1220
+ name = "libm"
1221
+ version = "0.2.16"
1222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1223
+ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
1224
+
1225
+ [[package]]
1226
+ name = "libredox"
1227
+ version = "0.1.15"
1228
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1229
+ checksum = "7ddbf48fd451246b1f8c2610bd3b4ac0cc6e149d89832867093ab69a17194f08"
1230
+ dependencies = [
1231
+ "libc",
1232
+ ]
1233
+
1234
+ [[package]]
1235
+ name = "litemap"
1236
+ version = "0.8.1"
1237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1238
+ checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
1239
+
1240
+ [[package]]
1241
+ name = "lock_api"
1242
+ version = "0.4.14"
1243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1244
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
1245
+ dependencies = [
1246
+ "scopeguard",
1247
+ ]
1248
+
1249
+ [[package]]
1250
+ name = "log"
1251
+ version = "0.4.29"
1252
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1253
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
1254
+
1255
+ [[package]]
1256
+ name = "markup5ever"
1257
+ version = "0.38.0"
1258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1259
+ checksum = "8983d30f2915feeaaab2d6babdd6bc7e9ed1a00b66b5e6d74df19aa9c0e91862"
1260
+ dependencies = [
1261
+ "log",
1262
+ "tendril",
1263
+ "web_atoms",
1264
+ ]
1265
+
1266
+ [[package]]
1267
+ name = "memchr"
1268
+ version = "2.8.0"
1269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1270
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
1271
+
1272
+ [[package]]
1273
+ name = "memmap2"
1274
+ version = "0.9.10"
1275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1276
+ checksum = "714098028fe011992e1c3962653c96b2d578c4b4bce9036e15ff220319b1e0e3"
1277
+ dependencies = [
1278
+ "libc",
1279
+ ]
1280
+
1281
+ [[package]]
1282
+ name = "memoffset"
1283
+ version = "0.9.1"
1284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1285
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
1286
+ dependencies = [
1287
+ "autocfg",
1288
+ ]
1289
+
1290
+ [[package]]
1291
+ name = "miniz_oxide"
1292
+ version = "0.8.9"
1293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1294
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
1295
+ dependencies = [
1296
+ "adler2",
1297
+ "simd-adler32",
1298
+ ]
1299
+
1300
+ [[package]]
1301
+ name = "moxcms"
1302
+ version = "0.8.1"
1303
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1304
+ checksum = "bb85c154ba489f01b25c0d36ae69a87e4a1c73a72631fc6c0eb6dde34a73e44b"
1305
+ dependencies = [
1306
+ "num-traits",
1307
+ "pxfm",
1308
+ ]
1309
+
1310
+ [[package]]
1311
+ name = "ndk"
1312
+ version = "0.9.0"
1313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1314
+ checksum = "c3f42e7bbe13d351b6bead8286a43aac9534b82bd3cc43e47037f012ebfd62d4"
1315
+ dependencies = [
1316
+ "bitflags 2.11.0",
1317
+ "jni-sys 0.3.1",
1318
+ "log",
1319
+ "ndk-sys",
1320
+ "num_enum",
1321
+ "raw-window-handle",
1322
+ "thiserror 1.0.69",
1323
+ ]
1324
+
1325
+ [[package]]
1326
+ name = "ndk-context"
1327
+ version = "0.1.1"
1328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1329
+ checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b"
1330
+
1331
+ [[package]]
1332
+ name = "ndk-sys"
1333
+ version = "0.6.0+11769913"
1334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1335
+ checksum = "ee6cda3051665f1fb8d9e08fc35c96d5a244fb1be711a03b71118828afc9a873"
1336
+ dependencies = [
1337
+ "jni-sys 0.3.1",
1338
+ ]
1339
+
1340
+ [[package]]
1341
+ name = "new_debug_unreachable"
1342
+ version = "1.0.6"
1343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1344
+ checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
1345
+
1346
+ [[package]]
1347
+ name = "num-conv"
1348
+ version = "0.2.1"
1349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1350
+ checksum = "c6673768db2d862beb9b39a78fdcb1a69439615d5794a1be50caa9bc92c81967"
1351
+
1352
+ [[package]]
1353
+ name = "num-traits"
1354
+ version = "0.2.19"
1355
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1356
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1357
+ dependencies = [
1358
+ "autocfg",
1359
+ ]
1360
+
1361
+ [[package]]
1362
+ name = "num_enum"
1363
+ version = "0.7.6"
1364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1365
+ checksum = "5d0bca838442ec211fa11de3a8b0e0e8f3a4522575b5c4c06ed722e005036f26"
1366
+ dependencies = [
1367
+ "num_enum_derive",
1368
+ "rustversion",
1369
+ ]
1370
+
1371
+ [[package]]
1372
+ name = "num_enum_derive"
1373
+ version = "0.7.6"
1374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1375
+ checksum = "680998035259dcfcafe653688bf2aa6d3e2dc05e98be6ab46afb089dc84f1df8"
1376
+ dependencies = [
1377
+ "proc-macro-crate 3.5.0",
1378
+ "proc-macro2",
1379
+ "quote",
1380
+ "syn 2.0.117",
1381
+ ]
1382
+
1383
+ [[package]]
1384
+ name = "objc2"
1385
+ version = "0.6.4"
1386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1387
+ checksum = "3a12a8ed07aefc768292f076dc3ac8c48f3781c8f2d5851dd3d98950e8c5a89f"
1388
+ dependencies = [
1389
+ "objc2-encode",
1390
+ "objc2-exception-helper",
1391
+ ]
1392
+
1393
+ [[package]]
1394
+ name = "objc2-app-kit"
1395
+ version = "0.3.2"
1396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1397
+ checksum = "d49e936b501e5c5bf01fda3a9452ff86dc3ea98ad5f283e1455153142d97518c"
1398
+ dependencies = [
1399
+ "bitflags 2.11.0",
1400
+ "objc2",
1401
+ "objc2-core-foundation",
1402
+ "objc2-foundation",
1403
+ ]
1404
+
1405
+ [[package]]
1406
+ name = "objc2-core-foundation"
1407
+ version = "0.3.2"
1408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1409
+ checksum = "2a180dd8642fa45cdb7dd721cd4c11b1cadd4929ce112ebd8b9f5803cc79d536"
1410
+ dependencies = [
1411
+ "bitflags 2.11.0",
1412
+ "dispatch2",
1413
+ "objc2",
1414
+ ]
1415
+
1416
+ [[package]]
1417
+ name = "objc2-encode"
1418
+ version = "4.1.0"
1419
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1420
+ checksum = "ef25abbcd74fb2609453eb695bd2f860d389e457f67dc17cafc8b8cbc89d0c33"
1421
+
1422
+ [[package]]
1423
+ name = "objc2-exception-helper"
1424
+ version = "0.1.1"
1425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1426
+ checksum = "c7a1c5fbb72d7735b076bb47b578523aedc40f3c439bea6dfd595c089d79d98a"
1427
+ dependencies = [
1428
+ "cc",
1429
+ ]
1430
+
1431
+ [[package]]
1432
+ name = "objc2-foundation"
1433
+ version = "0.3.2"
1434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1435
+ checksum = "e3e0adef53c21f888deb4fa59fc59f7eb17404926ee8a6f59f5df0fd7f9f3272"
1436
+ dependencies = [
1437
+ "bitflags 2.11.0",
1438
+ "objc2",
1439
+ "objc2-core-foundation",
1440
+ ]
1441
+
1442
+ [[package]]
1443
+ name = "objc2-ui-kit"
1444
+ version = "0.3.2"
1445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1446
+ checksum = "d87d638e33c06f577498cbcc50491496a3ed4246998a7fbba7ccb98b1e7eab22"
1447
+ dependencies = [
1448
+ "bitflags 2.11.0",
1449
+ "objc2",
1450
+ "objc2-core-foundation",
1451
+ "objc2-foundation",
1452
+ ]
1453
+
1454
+ [[package]]
1455
+ name = "objc2-web-kit"
1456
+ version = "0.3.2"
1457
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1458
+ checksum = "b2e5aaab980c433cf470df9d7af96a7b46a9d892d521a2cbbb2f8a4c16751e7f"
1459
+ dependencies = [
1460
+ "bitflags 2.11.0",
1461
+ "block2",
1462
+ "objc2",
1463
+ "objc2-app-kit",
1464
+ "objc2-core-foundation",
1465
+ "objc2-foundation",
1466
+ ]
1467
+
1468
+ [[package]]
1469
+ name = "once_cell"
1470
+ version = "1.21.4"
1471
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1472
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
1473
+
1474
+ [[package]]
1475
+ name = "option-ext"
1476
+ version = "0.2.0"
1477
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1478
+ checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
1479
+
1480
+ [[package]]
1481
+ name = "pango"
1482
+ version = "0.18.3"
1483
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1484
+ checksum = "7ca27ec1eb0457ab26f3036ea52229edbdb74dee1edd29063f5b9b010e7ebee4"
1485
+ dependencies = [
1486
+ "gio",
1487
+ "glib",
1488
+ "libc",
1489
+ "once_cell",
1490
+ "pango-sys",
1491
+ ]
1492
+
1493
+ [[package]]
1494
+ name = "pango-sys"
1495
+ version = "0.18.0"
1496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1497
+ checksum = "436737e391a843e5933d6d9aa102cb126d501e815b83601365a948a518555dc5"
1498
+ dependencies = [
1499
+ "glib-sys",
1500
+ "gobject-sys",
1501
+ "libc",
1502
+ "system-deps",
1503
+ ]
1504
+
1505
+ [[package]]
1506
+ name = "parking_lot"
1507
+ version = "0.12.5"
1508
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1509
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
1510
+ dependencies = [
1511
+ "lock_api",
1512
+ "parking_lot_core",
1513
+ ]
1514
+
1515
+ [[package]]
1516
+ name = "parking_lot_core"
1517
+ version = "0.9.12"
1518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1519
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
1520
+ dependencies = [
1521
+ "cfg-if",
1522
+ "libc",
1523
+ "redox_syscall",
1524
+ "smallvec",
1525
+ "windows-link 0.2.1",
1526
+ ]
1527
+
1528
+ [[package]]
1529
+ name = "percent-encoding"
1530
+ version = "2.3.2"
1531
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1532
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1533
+
1534
+ [[package]]
1535
+ name = "phf"
1536
+ version = "0.13.1"
1537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1538
+ checksum = "c1562dc717473dbaa4c1f85a36410e03c047b2e7df7f45ee938fbef64ae7fadf"
1539
+ dependencies = [
1540
+ "phf_macros",
1541
+ "phf_shared",
1542
+ "serde",
1543
+ ]
1544
+
1545
+ [[package]]
1546
+ name = "phf_codegen"
1547
+ version = "0.13.1"
1548
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1549
+ checksum = "49aa7f9d80421bca176ca8dbfebe668cc7a2684708594ec9f3c0db0805d5d6e1"
1550
+ dependencies = [
1551
+ "phf_generator",
1552
+ "phf_shared",
1553
+ ]
1554
+
1555
+ [[package]]
1556
+ name = "phf_generator"
1557
+ version = "0.13.1"
1558
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1559
+ checksum = "135ace3a761e564ec88c03a77317a7c6b80bb7f7135ef2544dbe054243b89737"
1560
+ dependencies = [
1561
+ "fastrand",
1562
+ "phf_shared",
1563
+ ]
1564
+
1565
+ [[package]]
1566
+ name = "phf_macros"
1567
+ version = "0.13.1"
1568
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1569
+ checksum = "812f032b54b1e759ccd5f8b6677695d5268c588701effba24601f6932f8269ef"
1570
+ dependencies = [
1571
+ "phf_generator",
1572
+ "phf_shared",
1573
+ "proc-macro2",
1574
+ "quote",
1575
+ "syn 2.0.117",
1576
+ ]
1577
+
1578
+ [[package]]
1579
+ name = "phf_shared"
1580
+ version = "0.13.1"
1581
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1582
+ checksum = "e57fef6bc5981e38c2ce2d63bfa546861309f875b8a75f092d1d54ae2d64f266"
1583
+ dependencies = [
1584
+ "siphasher",
1585
+ ]
1586
+
1587
+ [[package]]
1588
+ name = "pico-args"
1589
+ version = "0.5.0"
1590
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1591
+ checksum = "5be167a7af36ee22fe3115051bc51f6e6c7054c9348e28deb4f49bd6f705a315"
1592
+
1593
+ [[package]]
1594
+ name = "pin-project-lite"
1595
+ version = "0.2.17"
1596
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1597
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
1598
+
1599
+ [[package]]
1600
+ name = "pkg-config"
1601
+ version = "0.3.32"
1602
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1603
+ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
1604
+
1605
+ [[package]]
1606
+ name = "png"
1607
+ version = "0.17.16"
1608
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1609
+ checksum = "82151a2fc869e011c153adc57cf2789ccb8d9906ce52c0b39a6b5697749d7526"
1610
+ dependencies = [
1611
+ "bitflags 1.3.2",
1612
+ "crc32fast",
1613
+ "fdeflate",
1614
+ "flate2",
1615
+ "miniz_oxide",
1616
+ ]
1617
+
1618
+ [[package]]
1619
+ name = "png"
1620
+ version = "0.18.1"
1621
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1622
+ checksum = "60769b8b31b2a9f263dae2776c37b1b28ae246943cf719eb6946a1db05128a61"
1623
+ dependencies = [
1624
+ "bitflags 2.11.0",
1625
+ "crc32fast",
1626
+ "fdeflate",
1627
+ "flate2",
1628
+ "miniz_oxide",
1629
+ ]
1630
+
1631
+ [[package]]
1632
+ name = "potential_utf"
1633
+ version = "0.1.4"
1634
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1635
+ checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
1636
+ dependencies = [
1637
+ "zerovec",
1638
+ ]
1639
+
1640
+ [[package]]
1641
+ name = "powerfmt"
1642
+ version = "0.2.0"
1643
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1644
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
1645
+
1646
+ [[package]]
1647
+ name = "precomputed-hash"
1648
+ version = "0.1.1"
1649
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1650
+ checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
1651
+
1652
+ [[package]]
1653
+ name = "proc-macro-crate"
1654
+ version = "1.3.1"
1655
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1656
+ checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919"
1657
+ dependencies = [
1658
+ "once_cell",
1659
+ "toml_edit 0.19.15",
1660
+ ]
1661
+
1662
+ [[package]]
1663
+ name = "proc-macro-crate"
1664
+ version = "2.0.2"
1665
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1666
+ checksum = "b00f26d3400549137f92511a46ac1cd8ce37cb5598a96d382381458b992a5d24"
1667
+ dependencies = [
1668
+ "toml_datetime 0.6.3",
1669
+ "toml_edit 0.20.2",
1670
+ ]
1671
+
1672
+ [[package]]
1673
+ name = "proc-macro-crate"
1674
+ version = "3.5.0"
1675
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1676
+ checksum = "e67ba7e9b2b56446f1d419b1d807906278ffa1a658a8a5d8a39dcb1f5a78614f"
1677
+ dependencies = [
1678
+ "toml_edit 0.25.9+spec-1.1.0",
1679
+ ]
1680
+
1681
+ [[package]]
1682
+ name = "proc-macro-error"
1683
+ version = "1.0.4"
1684
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1685
+ checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
1686
+ dependencies = [
1687
+ "proc-macro-error-attr",
1688
+ "proc-macro2",
1689
+ "quote",
1690
+ "syn 1.0.109",
1691
+ "version_check",
1692
+ ]
1693
+
1694
+ [[package]]
1695
+ name = "proc-macro-error-attr"
1696
+ version = "1.0.4"
1697
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1698
+ checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
1699
+ dependencies = [
1700
+ "proc-macro2",
1701
+ "quote",
1702
+ "version_check",
1703
+ ]
1704
+
1705
+ [[package]]
1706
+ name = "proc-macro2"
1707
+ version = "1.0.106"
1708
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1709
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1710
+ dependencies = [
1711
+ "unicode-ident",
1712
+ ]
1713
+
1714
+ [[package]]
1715
+ name = "pxfm"
1716
+ version = "0.1.28"
1717
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1718
+ checksum = "b5a041e753da8b807c9255f28de81879c78c876392ff2469cde94799b2896b9d"
1719
+
1720
+ [[package]]
1721
+ name = "quick-error"
1722
+ version = "2.0.1"
1723
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1724
+ checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3"
1725
+
1726
+ [[package]]
1727
+ name = "quote"
1728
+ version = "1.0.45"
1729
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1730
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
1731
+ dependencies = [
1732
+ "proc-macro2",
1733
+ ]
1734
+
1735
+ [[package]]
1736
+ name = "raw-window-handle"
1737
+ version = "0.6.2"
1738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1739
+ checksum = "20675572f6f24e9e76ef639bc5552774ed45f1c30e2951e1e99c59888861c539"
1740
+
1741
+ [[package]]
1742
+ name = "redox_syscall"
1743
+ version = "0.5.18"
1744
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1745
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
1746
+ dependencies = [
1747
+ "bitflags 2.11.0",
1748
+ ]
1749
+
1750
+ [[package]]
1751
+ name = "redox_users"
1752
+ version = "0.5.2"
1753
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1754
+ checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac"
1755
+ dependencies = [
1756
+ "getrandom",
1757
+ "libredox",
1758
+ "thiserror 2.0.18",
1759
+ ]
1760
+
1761
+ [[package]]
1762
+ name = "resvg"
1763
+ version = "0.45.1"
1764
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1765
+ checksum = "a8928798c0a55e03c9ca6c4c6846f76377427d2c1e1f7e6de3c06ae57942df43"
1766
+ dependencies = [
1767
+ "gif",
1768
+ "image-webp",
1769
+ "log",
1770
+ "pico-args",
1771
+ "rgb",
1772
+ "svgtypes",
1773
+ "tiny-skia",
1774
+ "usvg",
1775
+ "zune-jpeg",
1776
+ ]
1777
+
1778
+ [[package]]
1779
+ name = "rgb"
1780
+ version = "0.8.53"
1781
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1782
+ checksum = "47b34b781b31e5d73e9fbc8689c70551fd1ade9a19e3e28cfec8580a79290cc4"
1783
+ dependencies = [
1784
+ "bytemuck",
1785
+ ]
1786
+
1787
+ [[package]]
1788
+ name = "roxmltree"
1789
+ version = "0.20.0"
1790
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1791
+ checksum = "6c20b6793b5c2fa6553b250154b78d6d0db37e72700ae35fad9387a46f487c97"
1792
+
1793
+ [[package]]
1794
+ name = "rquickjs"
1795
+ version = "0.8.1"
1796
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1797
+ checksum = "d16661bff09e9ed8e01094a188b463de45ec0693ade55b92ed54027d7ba7c40c"
1798
+ dependencies = [
1799
+ "rquickjs-core",
1800
+ ]
1801
+
1802
+ [[package]]
1803
+ name = "rquickjs-core"
1804
+ version = "0.8.1"
1805
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1806
+ checksum = "6c8db6379e204ef84c0811e90e7cc3e3e4d7688701db68a00d14a6db6849087b"
1807
+ dependencies = [
1808
+ "rquickjs-sys",
1809
+ ]
1810
+
1811
+ [[package]]
1812
+ name = "rquickjs-sys"
1813
+ version = "0.8.1"
1814
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1815
+ checksum = "4bc352c6b663604c3c186c000cfcc6c271f4b50bc135a285dd6d4f2a42f9790a"
1816
+ dependencies = [
1817
+ "cc",
1818
+ ]
1819
+
1820
+ [[package]]
1821
+ name = "rustc-hash"
1822
+ version = "2.1.2"
1823
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1824
+ checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
1825
+
1826
+ [[package]]
1827
+ name = "rustc_version"
1828
+ version = "0.4.1"
1829
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1830
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
1831
+ dependencies = [
1832
+ "semver",
1833
+ ]
1834
+
1835
+ [[package]]
1836
+ name = "rustversion"
1837
+ version = "1.0.22"
1838
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1839
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1840
+
1841
+ [[package]]
1842
+ name = "rustybuzz"
1843
+ version = "0.20.1"
1844
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1845
+ checksum = "fd3c7c96f8a08ee34eff8857b11b49b07d71d1c3f4e88f8a88d4c9e9f90b1702"
1846
+ dependencies = [
1847
+ "bitflags 2.11.0",
1848
+ "bytemuck",
1849
+ "core_maths",
1850
+ "log",
1851
+ "smallvec",
1852
+ "ttf-parser",
1853
+ "unicode-bidi-mirroring",
1854
+ "unicode-ccc",
1855
+ "unicode-properties",
1856
+ "unicode-script",
1857
+ ]
1858
+
1859
+ [[package]]
1860
+ name = "same-file"
1861
+ version = "1.0.6"
1862
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1863
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1864
+ dependencies = [
1865
+ "winapi-util",
1866
+ ]
1867
+
1868
+ [[package]]
1869
+ name = "scopeguard"
1870
+ version = "1.2.0"
1871
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1872
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1873
+
1874
+ [[package]]
1875
+ name = "selectors"
1876
+ version = "0.36.1"
1877
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1878
+ checksum = "c5d9c0c92a92d33f08817311cf3f2c29a3538a8240e94a6a3c622ce652d7e00c"
1879
+ dependencies = [
1880
+ "bitflags 2.11.0",
1881
+ "cssparser",
1882
+ "derive_more",
1883
+ "log",
1884
+ "new_debug_unreachable",
1885
+ "phf",
1886
+ "phf_codegen",
1887
+ "precomputed-hash",
1888
+ "rustc-hash",
1889
+ "servo_arc",
1890
+ "smallvec",
1891
+ ]
1892
+
1893
+ [[package]]
1894
+ name = "semver"
1895
+ version = "1.0.27"
1896
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1897
+ checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
1898
+
1899
+ [[package]]
1900
+ name = "serde"
1901
+ version = "1.0.228"
1902
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1903
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1904
+ dependencies = [
1905
+ "serde_core",
1906
+ "serde_derive",
1907
+ ]
1908
+
1909
+ [[package]]
1910
+ name = "serde_core"
1911
+ version = "1.0.228"
1912
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1913
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1914
+ dependencies = [
1915
+ "serde_derive",
1916
+ ]
1917
+
1918
+ [[package]]
1919
+ name = "serde_derive"
1920
+ version = "1.0.228"
1921
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1922
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1923
+ dependencies = [
1924
+ "proc-macro2",
1925
+ "quote",
1926
+ "syn 2.0.117",
1927
+ ]
1928
+
1929
+ [[package]]
1930
+ name = "serde_json"
1931
+ version = "1.0.149"
1932
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1933
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
1934
+ dependencies = [
1935
+ "itoa",
1936
+ "memchr",
1937
+ "serde",
1938
+ "serde_core",
1939
+ "zmij",
1940
+ ]
1941
+
1942
+ [[package]]
1943
+ name = "serde_spanned"
1944
+ version = "0.6.9"
1945
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1946
+ checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
1947
+ dependencies = [
1948
+ "serde",
1949
+ ]
1950
+
1951
+ [[package]]
1952
+ name = "servo_arc"
1953
+ version = "0.4.3"
1954
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1955
+ checksum = "170fb83ab34de17dc69aa7c67482b22218ddb85da56546f9bd6b929e32a05930"
1956
+ dependencies = [
1957
+ "stable_deref_trait",
1958
+ ]
1959
+
1960
+ [[package]]
1961
+ name = "sha2"
1962
+ version = "0.10.9"
1963
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1964
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
1965
+ dependencies = [
1966
+ "cfg-if",
1967
+ "cpufeatures",
1968
+ "digest",
1969
+ ]
1970
+
1971
+ [[package]]
1972
+ name = "shlex"
1973
+ version = "1.3.0"
1974
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1975
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1976
+
1977
+ [[package]]
1978
+ name = "simd-adler32"
1979
+ version = "0.3.9"
1980
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1981
+ checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
1982
+
1983
+ [[package]]
1984
+ name = "simplecss"
1985
+ version = "0.2.2"
1986
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1987
+ checksum = "7a9c6883ca9c3c7c90e888de77b7a5c849c779d25d74a1269b0218b14e8b136c"
1988
+ dependencies = [
1989
+ "log",
1990
+ ]
1991
+
1992
+ [[package]]
1993
+ name = "siphasher"
1994
+ version = "1.0.2"
1995
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1996
+ checksum = "b2aa850e253778c88a04c3d7323b043aeda9d3e30d5971937c1855769763678e"
1997
+
1998
+ [[package]]
1999
+ name = "slab"
2000
+ version = "0.4.12"
2001
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2002
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
2003
+
2004
+ [[package]]
2005
+ name = "slotmap"
2006
+ version = "1.1.1"
2007
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2008
+ checksum = "bdd58c3c93c3d278ca835519292445cb4b0d4dc59ccfdf7ceadaab3f8aeb4038"
2009
+ dependencies = [
2010
+ "version_check",
2011
+ ]
2012
+
2013
+ [[package]]
2014
+ name = "smallvec"
2015
+ version = "1.15.1"
2016
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2017
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
2018
+
2019
+ [[package]]
2020
+ name = "soup3"
2021
+ version = "0.5.0"
2022
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2023
+ checksum = "471f924a40f31251afc77450e781cb26d55c0b650842efafc9c6cbd2f7cc4f9f"
2024
+ dependencies = [
2025
+ "futures-channel",
2026
+ "gio",
2027
+ "glib",
2028
+ "libc",
2029
+ "soup3-sys",
2030
+ ]
2031
+
2032
+ [[package]]
2033
+ name = "soup3-sys"
2034
+ version = "0.5.0"
2035
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2036
+ checksum = "7ebe8950a680a12f24f15ebe1bf70db7af98ad242d9db43596ad3108aab86c27"
2037
+ dependencies = [
2038
+ "gio-sys",
2039
+ "glib-sys",
2040
+ "gobject-sys",
2041
+ "libc",
2042
+ "system-deps",
2043
+ ]
2044
+
2045
+ [[package]]
2046
+ name = "stable_deref_trait"
2047
+ version = "1.2.1"
2048
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2049
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
2050
+
2051
+ [[package]]
2052
+ name = "strict-num"
2053
+ version = "0.1.1"
2054
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2055
+ checksum = "6637bab7722d379c8b41ba849228d680cc12d0a45ba1fa2b48f2a30577a06731"
2056
+ dependencies = [
2057
+ "float-cmp",
2058
+ ]
2059
+
2060
+ [[package]]
2061
+ name = "string_cache"
2062
+ version = "0.9.0"
2063
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2064
+ checksum = "a18596f8c785a729f2819c0f6a7eae6ebeebdfffbfe4214ae6b087f690e31901"
2065
+ dependencies = [
2066
+ "new_debug_unreachable",
2067
+ "parking_lot",
2068
+ "phf_shared",
2069
+ "precomputed-hash",
2070
+ ]
2071
+
2072
+ [[package]]
2073
+ name = "string_cache_codegen"
2074
+ version = "0.6.1"
2075
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2076
+ checksum = "585635e46db231059f76c5849798146164652513eb9e8ab2685939dd90f29b69"
2077
+ dependencies = [
2078
+ "phf_generator",
2079
+ "phf_shared",
2080
+ "proc-macro2",
2081
+ "quote",
2082
+ ]
2083
+
2084
+ [[package]]
2085
+ name = "svgtypes"
2086
+ version = "0.15.3"
2087
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2088
+ checksum = "68c7541fff44b35860c1a7a47a7cadf3e4a304c457b58f9870d9706ece028afc"
2089
+ dependencies = [
2090
+ "kurbo",
2091
+ "siphasher",
2092
+ ]
2093
+
2094
+ [[package]]
2095
+ name = "syn"
2096
+ version = "1.0.109"
2097
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2098
+ checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
2099
+ dependencies = [
2100
+ "proc-macro2",
2101
+ "unicode-ident",
2102
+ ]
2103
+
2104
+ [[package]]
2105
+ name = "syn"
2106
+ version = "2.0.117"
2107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2108
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
2109
+ dependencies = [
2110
+ "proc-macro2",
2111
+ "quote",
2112
+ "unicode-ident",
2113
+ ]
2114
+
2115
+ [[package]]
2116
+ name = "synstructure"
2117
+ version = "0.13.2"
2118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2119
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
2120
+ dependencies = [
2121
+ "proc-macro2",
2122
+ "quote",
2123
+ "syn 2.0.117",
2124
+ ]
2125
+
2126
+ [[package]]
2127
+ name = "system-deps"
2128
+ version = "6.2.2"
2129
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2130
+ checksum = "a3e535eb8dded36d55ec13eddacd30dec501792ff23a0b1682c38601b8cf2349"
2131
+ dependencies = [
2132
+ "cfg-expr",
2133
+ "heck 0.5.0",
2134
+ "pkg-config",
2135
+ "toml 0.8.2",
2136
+ "version-compare",
2137
+ ]
2138
+
2139
+ [[package]]
2140
+ name = "tao"
2141
+ version = "0.34.8"
2142
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2143
+ checksum = "9103edf55f2da3c82aea4c7fab7c4241032bfeea0e71fa557d98e00e7ce7cc20"
2144
+ dependencies = [
2145
+ "bitflags 2.11.0",
2146
+ "block2",
2147
+ "core-foundation",
2148
+ "core-graphics",
2149
+ "crossbeam-channel",
2150
+ "dispatch2",
2151
+ "dlopen2",
2152
+ "dpi",
2153
+ "gdkwayland-sys",
2154
+ "gdkx11-sys",
2155
+ "gtk",
2156
+ "jni",
2157
+ "libc",
2158
+ "log",
2159
+ "ndk",
2160
+ "ndk-context",
2161
+ "ndk-sys",
2162
+ "objc2",
2163
+ "objc2-app-kit",
2164
+ "objc2-foundation",
2165
+ "once_cell",
2166
+ "parking_lot",
2167
+ "raw-window-handle",
2168
+ "tao-macros",
2169
+ "unicode-segmentation",
2170
+ "url",
2171
+ "windows",
2172
+ "windows-core",
2173
+ "windows-version",
2174
+ "x11-dl",
2175
+ ]
2176
+
2177
+ [[package]]
2178
+ name = "tao-macros"
2179
+ version = "0.1.3"
2180
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2181
+ checksum = "f4e16beb8b2ac17db28eab8bca40e62dbfbb34c0fcdc6d9826b11b7b5d047dfd"
2182
+ dependencies = [
2183
+ "proc-macro2",
2184
+ "quote",
2185
+ "syn 2.0.117",
2186
+ ]
2187
+
2188
+ [[package]]
2189
+ name = "target-lexicon"
2190
+ version = "0.12.16"
2191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2192
+ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
2193
+
2194
+ [[package]]
2195
+ name = "tendril"
2196
+ version = "0.5.0"
2197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2198
+ checksum = "c4790fc369d5a530f4b544b094e31388b9b3a37c0f4652ade4505945f5660d24"
2199
+ dependencies = [
2200
+ "new_debug_unreachable",
2201
+ "utf-8",
2202
+ ]
2203
+
2204
+ [[package]]
2205
+ name = "thiserror"
2206
+ version = "1.0.69"
2207
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2208
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
2209
+ dependencies = [
2210
+ "thiserror-impl 1.0.69",
2211
+ ]
2212
+
2213
+ [[package]]
2214
+ name = "thiserror"
2215
+ version = "2.0.18"
2216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2217
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
2218
+ dependencies = [
2219
+ "thiserror-impl 2.0.18",
2220
+ ]
2221
+
2222
+ [[package]]
2223
+ name = "thiserror-impl"
2224
+ version = "1.0.69"
2225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2226
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
2227
+ dependencies = [
2228
+ "proc-macro2",
2229
+ "quote",
2230
+ "syn 2.0.117",
2231
+ ]
2232
+
2233
+ [[package]]
2234
+ name = "thiserror-impl"
2235
+ version = "2.0.18"
2236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2237
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
2238
+ dependencies = [
2239
+ "proc-macro2",
2240
+ "quote",
2241
+ "syn 2.0.117",
2242
+ ]
2243
+
2244
+ [[package]]
2245
+ name = "time"
2246
+ version = "0.3.47"
2247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2248
+ checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c"
2249
+ dependencies = [
2250
+ "deranged",
2251
+ "itoa",
2252
+ "num-conv",
2253
+ "powerfmt",
2254
+ "serde_core",
2255
+ "time-core",
2256
+ "time-macros",
2257
+ ]
2258
+
2259
+ [[package]]
2260
+ name = "time-core"
2261
+ version = "0.1.8"
2262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2263
+ checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca"
2264
+
2265
+ [[package]]
2266
+ name = "time-macros"
2267
+ version = "0.2.27"
2268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2269
+ checksum = "2e70e4c5a0e0a8a4823ad65dfe1a6930e4f4d756dcd9dd7939022b5e8c501215"
2270
+ dependencies = [
2271
+ "num-conv",
2272
+ "time-core",
2273
+ ]
2274
+
2275
+ [[package]]
2276
+ name = "tiny-skia"
2277
+ version = "0.11.4"
2278
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2279
+ checksum = "83d13394d44dae3207b52a326c0c85a8bf87f1541f23b0d143811088497b09ab"
2280
+ dependencies = [
2281
+ "arrayref",
2282
+ "arrayvec",
2283
+ "bytemuck",
2284
+ "cfg-if",
2285
+ "log",
2286
+ "png 0.17.16",
2287
+ "tiny-skia-path",
2288
+ ]
2289
+
2290
+ [[package]]
2291
+ name = "tiny-skia-path"
2292
+ version = "0.11.4"
2293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2294
+ checksum = "9c9e7fc0c2e86a30b117d0462aa261b72b7a99b7ebd7deb3a14ceda95c5bdc93"
2295
+ dependencies = [
2296
+ "arrayref",
2297
+ "bytemuck",
2298
+ "strict-num",
2299
+ ]
2300
+
2301
+ [[package]]
2302
+ name = "tinystr"
2303
+ version = "0.8.2"
2304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2305
+ checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
2306
+ dependencies = [
2307
+ "displaydoc",
2308
+ "zerovec",
2309
+ ]
2310
+
2311
+ [[package]]
2312
+ name = "tinyvec"
2313
+ version = "1.11.0"
2314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2315
+ checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
2316
+ dependencies = [
2317
+ "tinyvec_macros",
2318
+ ]
2319
+
2320
+ [[package]]
2321
+ name = "tinyvec_macros"
2322
+ version = "0.1.1"
2323
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2324
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2325
+
2326
+ [[package]]
2327
+ name = "toml"
2328
+ version = "0.5.11"
2329
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2330
+ checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234"
2331
+ dependencies = [
2332
+ "serde",
2333
+ ]
2334
+
2335
+ [[package]]
2336
+ name = "toml"
2337
+ version = "0.8.2"
2338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2339
+ checksum = "185d8ab0dfbb35cf1399a6344d8484209c088f75f8f68230da55d48d95d43e3d"
2340
+ dependencies = [
2341
+ "serde",
2342
+ "serde_spanned",
2343
+ "toml_datetime 0.6.3",
2344
+ "toml_edit 0.20.2",
2345
+ ]
2346
+
2347
+ [[package]]
2348
+ name = "toml_datetime"
2349
+ version = "0.6.3"
2350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2351
+ checksum = "7cda73e2f1397b1262d6dfdcef8aafae14d1de7748d66822d3bfeeb6d03e5e4b"
2352
+ dependencies = [
2353
+ "serde",
2354
+ ]
2355
+
2356
+ [[package]]
2357
+ name = "toml_datetime"
2358
+ version = "1.1.1+spec-1.1.0"
2359
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2360
+ checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7"
2361
+ dependencies = [
2362
+ "serde_core",
2363
+ ]
2364
+
2365
+ [[package]]
2366
+ name = "toml_edit"
2367
+ version = "0.19.15"
2368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2369
+ checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421"
2370
+ dependencies = [
2371
+ "indexmap",
2372
+ "toml_datetime 0.6.3",
2373
+ "winnow 0.5.40",
2374
+ ]
2375
+
2376
+ [[package]]
2377
+ name = "toml_edit"
2378
+ version = "0.20.2"
2379
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2380
+ checksum = "396e4d48bbb2b7554c944bde63101b5ae446cff6ec4a24227428f15eb72ef338"
2381
+ dependencies = [
2382
+ "indexmap",
2383
+ "serde",
2384
+ "serde_spanned",
2385
+ "toml_datetime 0.6.3",
2386
+ "winnow 0.5.40",
2387
+ ]
2388
+
2389
+ [[package]]
2390
+ name = "toml_edit"
2391
+ version = "0.25.9+spec-1.1.0"
2392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2393
+ checksum = "da053d28fe57e2c9d21b48261e14e7b4c8b670b54d2c684847b91feaf4c7dac5"
2394
+ dependencies = [
2395
+ "indexmap",
2396
+ "toml_datetime 1.1.1+spec-1.1.0",
2397
+ "toml_parser",
2398
+ "winnow 1.0.1",
2399
+ ]
2400
+
2401
+ [[package]]
2402
+ name = "toml_parser"
2403
+ version = "1.1.1+spec-1.1.0"
2404
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2405
+ checksum = "39ca317ebc49f06bd748bfba29533eac9485569dc9bf80b849024b025e814fb9"
2406
+ dependencies = [
2407
+ "winnow 1.0.1",
2408
+ ]
2409
+
2410
+ [[package]]
2411
+ name = "ttf-parser"
2412
+ version = "0.25.1"
2413
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2414
+ checksum = "d2df906b07856748fa3f6e0ad0cbaa047052d4a7dd609e231c4f72cee8c36f31"
2415
+ dependencies = [
2416
+ "core_maths",
2417
+ ]
2418
+
2419
+ [[package]]
2420
+ name = "typenum"
2421
+ version = "1.19.0"
2422
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2423
+ checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
2424
+
2425
+ [[package]]
2426
+ name = "unicode-bidi"
2427
+ version = "0.3.18"
2428
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2429
+ checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5"
2430
+
2431
+ [[package]]
2432
+ name = "unicode-bidi-mirroring"
2433
+ version = "0.4.0"
2434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2435
+ checksum = "5dfa6e8c60bb66d49db113e0125ee8711b7647b5579dc7f5f19c42357ed039fe"
2436
+
2437
+ [[package]]
2438
+ name = "unicode-ccc"
2439
+ version = "0.4.0"
2440
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2441
+ checksum = "ce61d488bcdc9bc8b5d1772c404828b17fc481c0a582b5581e95fb233aef503e"
2442
+
2443
+ [[package]]
2444
+ name = "unicode-ident"
2445
+ version = "1.0.24"
2446
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2447
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
2448
+
2449
+ [[package]]
2450
+ name = "unicode-properties"
2451
+ version = "0.1.4"
2452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2453
+ checksum = "7df058c713841ad818f1dc5d3fd88063241cc61f49f5fbea4b951e8cf5a8d71d"
2454
+
2455
+ [[package]]
2456
+ name = "unicode-script"
2457
+ version = "0.5.8"
2458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2459
+ checksum = "383ad40bb927465ec0ce7720e033cb4ca06912855fc35db31b5755d0de75b1ee"
2460
+
2461
+ [[package]]
2462
+ name = "unicode-segmentation"
2463
+ version = "1.13.2"
2464
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2465
+ checksum = "9629274872b2bfaf8d66f5f15725007f635594914870f65218920345aa11aa8c"
2466
+
2467
+ [[package]]
2468
+ name = "unicode-vo"
2469
+ version = "0.1.0"
2470
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2471
+ checksum = "b1d386ff53b415b7fe27b50bb44679e2cc4660272694b7b6f3326d8480823a94"
2472
+
2473
+ [[package]]
2474
+ name = "url"
2475
+ version = "2.5.8"
2476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2477
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
2478
+ dependencies = [
2479
+ "form_urlencoded",
2480
+ "idna",
2481
+ "percent-encoding",
2482
+ "serde",
2483
+ ]
2484
+
2485
+ [[package]]
2486
+ name = "usvg"
2487
+ version = "0.45.1"
2488
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2489
+ checksum = "80be9b06fbae3b8b303400ab20778c80bbaf338f563afe567cf3c9eea17b47ef"
2490
+ dependencies = [
2491
+ "base64",
2492
+ "data-url",
2493
+ "flate2",
2494
+ "fontdb",
2495
+ "imagesize",
2496
+ "kurbo",
2497
+ "log",
2498
+ "pico-args",
2499
+ "roxmltree",
2500
+ "rustybuzz",
2501
+ "simplecss",
2502
+ "siphasher",
2503
+ "strict-num",
2504
+ "svgtypes",
2505
+ "tiny-skia-path",
2506
+ "unicode-bidi",
2507
+ "unicode-script",
2508
+ "unicode-vo",
2509
+ "xmlwriter",
2510
+ ]
2511
+
2512
+ [[package]]
2513
+ name = "utf-8"
2514
+ version = "0.7.6"
2515
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2516
+ checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
2517
+
2518
+ [[package]]
2519
+ name = "utf8_iter"
2520
+ version = "1.0.4"
2521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2522
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
2523
+
2524
+ [[package]]
2525
+ name = "version-compare"
2526
+ version = "0.2.1"
2527
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2528
+ checksum = "03c2856837ef78f57382f06b2b8563a2f512f7185d732608fd9176cb3b8edf0e"
2529
+
2530
+ [[package]]
2531
+ name = "version_check"
2532
+ version = "0.9.5"
2533
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2534
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
2535
+
2536
+ [[package]]
2537
+ name = "walkdir"
2538
+ version = "2.5.0"
2539
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2540
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
2541
+ dependencies = [
2542
+ "same-file",
2543
+ "winapi-util",
2544
+ ]
2545
+
2546
+ [[package]]
2547
+ name = "wasi"
2548
+ version = "0.11.1+wasi-snapshot-preview1"
2549
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2550
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
2551
+
2552
+ [[package]]
2553
+ name = "web_atoms"
2554
+ version = "0.2.3"
2555
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2556
+ checksum = "57a9779e9f04d2ac1ce317aee707aa2f6b773afba7b931222bff6983843b1576"
2557
+ dependencies = [
2558
+ "phf",
2559
+ "phf_codegen",
2560
+ "string_cache",
2561
+ "string_cache_codegen",
2562
+ ]
2563
+
2564
+ [[package]]
2565
+ name = "webkit2gtk"
2566
+ version = "2.0.2"
2567
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2568
+ checksum = "a1027150013530fb2eaf806408df88461ae4815a45c541c8975e61d6f2fc4793"
2569
+ dependencies = [
2570
+ "bitflags 1.3.2",
2571
+ "cairo-rs",
2572
+ "gdk",
2573
+ "gdk-sys",
2574
+ "gio",
2575
+ "gio-sys",
2576
+ "glib",
2577
+ "glib-sys",
2578
+ "gobject-sys",
2579
+ "gtk",
2580
+ "gtk-sys",
2581
+ "javascriptcore-rs",
2582
+ "libc",
2583
+ "once_cell",
2584
+ "soup3",
2585
+ "webkit2gtk-sys",
2586
+ ]
2587
+
2588
+ [[package]]
2589
+ name = "webkit2gtk-sys"
2590
+ version = "2.0.2"
2591
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2592
+ checksum = "916a5f65c2ef0dfe12fff695960a2ec3d4565359fdbb2e9943c974e06c734ea5"
2593
+ dependencies = [
2594
+ "bitflags 1.3.2",
2595
+ "cairo-sys-rs",
2596
+ "gdk-sys",
2597
+ "gio-sys",
2598
+ "glib-sys",
2599
+ "gobject-sys",
2600
+ "gtk-sys",
2601
+ "javascriptcore-rs-sys",
2602
+ "libc",
2603
+ "pkg-config",
2604
+ "soup3-sys",
2605
+ "system-deps",
2606
+ ]
2607
+
2608
+ [[package]]
2609
+ name = "webview2-com"
2610
+ version = "0.38.2"
2611
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2612
+ checksum = "7130243a7a5b33c54a444e54842e6a9e133de08b5ad7b5861cd8ed9a6a5bc96a"
2613
+ dependencies = [
2614
+ "webview2-com-macros",
2615
+ "webview2-com-sys",
2616
+ "windows",
2617
+ "windows-core",
2618
+ "windows-implement",
2619
+ "windows-interface",
2620
+ ]
2621
+
2622
+ [[package]]
2623
+ name = "webview2-com-macros"
2624
+ version = "0.8.1"
2625
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2626
+ checksum = "67a921c1b6914c367b2b823cd4cde6f96beec77d30a939c8199bb377cf9b9b54"
2627
+ dependencies = [
2628
+ "proc-macro2",
2629
+ "quote",
2630
+ "syn 2.0.117",
2631
+ ]
2632
+
2633
+ [[package]]
2634
+ name = "webview2-com-sys"
2635
+ version = "0.38.2"
2636
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2637
+ checksum = "381336cfffd772377d291702245447a5251a2ffa5bad679c99e61bc48bacbf9c"
2638
+ dependencies = [
2639
+ "thiserror 2.0.18",
2640
+ "windows",
2641
+ "windows-core",
2642
+ ]
2643
+
2644
+ [[package]]
2645
+ name = "weezl"
2646
+ version = "0.1.12"
2647
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2648
+ checksum = "a28ac98ddc8b9274cb41bb4d9d4d5c425b6020c50c46f25559911905610b4a88"
2649
+
2650
+ [[package]]
2651
+ name = "winapi"
2652
+ version = "0.3.9"
2653
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2654
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2655
+ dependencies = [
2656
+ "winapi-i686-pc-windows-gnu",
2657
+ "winapi-x86_64-pc-windows-gnu",
2658
+ ]
2659
+
2660
+ [[package]]
2661
+ name = "winapi-i686-pc-windows-gnu"
2662
+ version = "0.4.0"
2663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2664
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2665
+
2666
+ [[package]]
2667
+ name = "winapi-util"
2668
+ version = "0.1.11"
2669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2670
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
2671
+ dependencies = [
2672
+ "windows-sys 0.61.2",
2673
+ ]
2674
+
2675
+ [[package]]
2676
+ name = "winapi-x86_64-pc-windows-gnu"
2677
+ version = "0.4.0"
2678
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2679
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2680
+
2681
+ [[package]]
2682
+ name = "windows"
2683
+ version = "0.61.3"
2684
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2685
+ checksum = "9babd3a767a4c1aef6900409f85f5d53ce2544ccdfaa86dad48c91782c6d6893"
2686
+ dependencies = [
2687
+ "windows-collections",
2688
+ "windows-core",
2689
+ "windows-future",
2690
+ "windows-link 0.1.3",
2691
+ "windows-numerics",
2692
+ ]
2693
+
2694
+ [[package]]
2695
+ name = "windows-collections"
2696
+ version = "0.2.0"
2697
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2698
+ checksum = "3beeceb5e5cfd9eb1d76b381630e82c4241ccd0d27f1a39ed41b2760b255c5e8"
2699
+ dependencies = [
2700
+ "windows-core",
2701
+ ]
2702
+
2703
+ [[package]]
2704
+ name = "windows-core"
2705
+ version = "0.61.2"
2706
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2707
+ checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3"
2708
+ dependencies = [
2709
+ "windows-implement",
2710
+ "windows-interface",
2711
+ "windows-link 0.1.3",
2712
+ "windows-result",
2713
+ "windows-strings",
2714
+ ]
2715
+
2716
+ [[package]]
2717
+ name = "windows-future"
2718
+ version = "0.2.1"
2719
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2720
+ checksum = "fc6a41e98427b19fe4b73c550f060b59fa592d7d686537eebf9385621bfbad8e"
2721
+ dependencies = [
2722
+ "windows-core",
2723
+ "windows-link 0.1.3",
2724
+ "windows-threading",
2725
+ ]
2726
+
2727
+ [[package]]
2728
+ name = "windows-implement"
2729
+ version = "0.60.2"
2730
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2731
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
2732
+ dependencies = [
2733
+ "proc-macro2",
2734
+ "quote",
2735
+ "syn 2.0.117",
2736
+ ]
2737
+
2738
+ [[package]]
2739
+ name = "windows-interface"
2740
+ version = "0.59.3"
2741
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2742
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
2743
+ dependencies = [
2744
+ "proc-macro2",
2745
+ "quote",
2746
+ "syn 2.0.117",
2747
+ ]
2748
+
2749
+ [[package]]
2750
+ name = "windows-link"
2751
+ version = "0.1.3"
2752
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2753
+ checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
2754
+
2755
+ [[package]]
2756
+ name = "windows-link"
2757
+ version = "0.2.1"
2758
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2759
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
2760
+
2761
+ [[package]]
2762
+ name = "windows-numerics"
2763
+ version = "0.2.0"
2764
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2765
+ checksum = "9150af68066c4c5c07ddc0ce30421554771e528bde427614c61038bc2c92c2b1"
2766
+ dependencies = [
2767
+ "windows-core",
2768
+ "windows-link 0.1.3",
2769
+ ]
2770
+
2771
+ [[package]]
2772
+ name = "windows-result"
2773
+ version = "0.3.4"
2774
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2775
+ checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6"
2776
+ dependencies = [
2777
+ "windows-link 0.1.3",
2778
+ ]
2779
+
2780
+ [[package]]
2781
+ name = "windows-strings"
2782
+ version = "0.4.2"
2783
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2784
+ checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57"
2785
+ dependencies = [
2786
+ "windows-link 0.1.3",
2787
+ ]
2788
+
2789
+ [[package]]
2790
+ name = "windows-sys"
2791
+ version = "0.45.0"
2792
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2793
+ checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
2794
+ dependencies = [
2795
+ "windows-targets",
2796
+ ]
2797
+
2798
+ [[package]]
2799
+ name = "windows-sys"
2800
+ version = "0.61.2"
2801
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2802
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
2803
+ dependencies = [
2804
+ "windows-link 0.2.1",
2805
+ ]
2806
+
2807
+ [[package]]
2808
+ name = "windows-targets"
2809
+ version = "0.42.2"
2810
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2811
+ checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
2812
+ dependencies = [
2813
+ "windows_aarch64_gnullvm",
2814
+ "windows_aarch64_msvc",
2815
+ "windows_i686_gnu",
2816
+ "windows_i686_msvc",
2817
+ "windows_x86_64_gnu",
2818
+ "windows_x86_64_gnullvm",
2819
+ "windows_x86_64_msvc",
2820
+ ]
2821
+
2822
+ [[package]]
2823
+ name = "windows-threading"
2824
+ version = "0.1.0"
2825
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2826
+ checksum = "b66463ad2e0ea3bbf808b7f1d371311c80e115c0b71d60efc142cafbcfb057a6"
2827
+ dependencies = [
2828
+ "windows-link 0.1.3",
2829
+ ]
2830
+
2831
+ [[package]]
2832
+ name = "windows-version"
2833
+ version = "0.1.7"
2834
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2835
+ checksum = "e4060a1da109b9d0326b7262c8e12c84df67cc0dbc9e33cf49e01ccc2eb63631"
2836
+ dependencies = [
2837
+ "windows-link 0.2.1",
2838
+ ]
2839
+
2840
+ [[package]]
2841
+ name = "windows_aarch64_gnullvm"
2842
+ version = "0.42.2"
2843
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2844
+ checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
2845
+
2846
+ [[package]]
2847
+ name = "windows_aarch64_msvc"
2848
+ version = "0.42.2"
2849
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2850
+ checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
2851
+
2852
+ [[package]]
2853
+ name = "windows_i686_gnu"
2854
+ version = "0.42.2"
2855
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2856
+ checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
2857
+
2858
+ [[package]]
2859
+ name = "windows_i686_msvc"
2860
+ version = "0.42.2"
2861
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2862
+ checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
2863
+
2864
+ [[package]]
2865
+ name = "windows_x86_64_gnu"
2866
+ version = "0.42.2"
2867
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2868
+ checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
2869
+
2870
+ [[package]]
2871
+ name = "windows_x86_64_gnullvm"
2872
+ version = "0.42.2"
2873
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2874
+ checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
2875
+
2876
+ [[package]]
2877
+ name = "windows_x86_64_msvc"
2878
+ version = "0.42.2"
2879
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2880
+ checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
2881
+
2882
+ [[package]]
2883
+ name = "winnow"
2884
+ version = "0.5.40"
2885
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2886
+ checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876"
2887
+ dependencies = [
2888
+ "memchr",
2889
+ ]
2890
+
2891
+ [[package]]
2892
+ name = "winnow"
2893
+ version = "1.0.1"
2894
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2895
+ checksum = "09dac053f1cd375980747450bfc7250c264eaae0583872e845c0c7cd578872b5"
2896
+ dependencies = [
2897
+ "memchr",
2898
+ ]
2899
+
2900
+ [[package]]
2901
+ name = "winres"
2902
+ version = "0.1.12"
2903
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2904
+ checksum = "b68db261ef59e9e52806f688020631e987592bd83619edccda9c47d42cde4f6c"
2905
+ dependencies = [
2906
+ "toml 0.5.11",
2907
+ ]
2908
+
2909
+ [[package]]
2910
+ name = "writeable"
2911
+ version = "0.6.2"
2912
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2913
+ checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
2914
+
2915
+ [[package]]
2916
+ name = "wry"
2917
+ version = "0.54.4"
2918
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2919
+ checksum = "e5a8135d8676225e5744de000d4dff5a082501bf7db6a1c1495034f8c314edbc"
2920
+ dependencies = [
2921
+ "base64",
2922
+ "block2",
2923
+ "cookie",
2924
+ "crossbeam-channel",
2925
+ "dirs",
2926
+ "dom_query",
2927
+ "dpi",
2928
+ "dunce",
2929
+ "gdkx11",
2930
+ "gtk",
2931
+ "http",
2932
+ "javascriptcore-rs",
2933
+ "jni",
2934
+ "libc",
2935
+ "ndk",
2936
+ "objc2",
2937
+ "objc2-app-kit",
2938
+ "objc2-core-foundation",
2939
+ "objc2-foundation",
2940
+ "objc2-ui-kit",
2941
+ "objc2-web-kit",
2942
+ "once_cell",
2943
+ "percent-encoding",
2944
+ "raw-window-handle",
2945
+ "sha2",
2946
+ "soup3",
2947
+ "tao-macros",
2948
+ "thiserror 2.0.18",
2949
+ "url",
2950
+ "webkit2gtk",
2951
+ "webkit2gtk-sys",
2952
+ "webview2-com",
2953
+ "windows",
2954
+ "windows-core",
2955
+ "windows-version",
2956
+ "x11-dl",
2957
+ ]
2958
+
2959
+ [[package]]
2960
+ name = "x11"
2961
+ version = "2.21.0"
2962
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2963
+ checksum = "502da5464ccd04011667b11c435cb992822c2c0dbde1770c988480d312a0db2e"
2964
+ dependencies = [
2965
+ "libc",
2966
+ "pkg-config",
2967
+ ]
2968
+
2969
+ [[package]]
2970
+ name = "x11-dl"
2971
+ version = "2.21.0"
2972
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2973
+ checksum = "38735924fedd5314a6e548792904ed8c6de6636285cb9fec04d5b1db85c1516f"
2974
+ dependencies = [
2975
+ "libc",
2976
+ "once_cell",
2977
+ "pkg-config",
2978
+ ]
2979
+
2980
+ [[package]]
2981
+ name = "xmlwriter"
2982
+ version = "0.1.0"
2983
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2984
+ checksum = "ec7a2a501ed189703dba8b08142f057e887dfc4b2cc4db2d343ac6376ba3e0b9"
2985
+
2986
+ [[package]]
2987
+ name = "yoke"
2988
+ version = "0.8.1"
2989
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2990
+ checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
2991
+ dependencies = [
2992
+ "stable_deref_trait",
2993
+ "yoke-derive",
2994
+ "zerofrom",
2995
+ ]
2996
+
2997
+ [[package]]
2998
+ name = "yoke-derive"
2999
+ version = "0.8.1"
3000
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3001
+ checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
3002
+ dependencies = [
3003
+ "proc-macro2",
3004
+ "quote",
3005
+ "syn 2.0.117",
3006
+ "synstructure",
3007
+ ]
3008
+
3009
+ [[package]]
3010
+ name = "zerofrom"
3011
+ version = "0.1.6"
3012
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3013
+ checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
3014
+ dependencies = [
3015
+ "zerofrom-derive",
3016
+ ]
3017
+
3018
+ [[package]]
3019
+ name = "zerofrom-derive"
3020
+ version = "0.1.6"
3021
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3022
+ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
3023
+ dependencies = [
3024
+ "proc-macro2",
3025
+ "quote",
3026
+ "syn 2.0.117",
3027
+ "synstructure",
3028
+ ]
3029
+
3030
+ [[package]]
3031
+ name = "zerotrie"
3032
+ version = "0.2.3"
3033
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3034
+ checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
3035
+ dependencies = [
3036
+ "displaydoc",
3037
+ "yoke",
3038
+ "zerofrom",
3039
+ ]
3040
+
3041
+ [[package]]
3042
+ name = "zerovec"
3043
+ version = "0.11.5"
3044
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3045
+ checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
3046
+ dependencies = [
3047
+ "yoke",
3048
+ "zerofrom",
3049
+ "zerovec-derive",
3050
+ ]
3051
+
3052
+ [[package]]
3053
+ name = "zerovec-derive"
3054
+ version = "0.11.2"
3055
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3056
+ checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
3057
+ dependencies = [
3058
+ "proc-macro2",
3059
+ "quote",
3060
+ "syn 2.0.117",
3061
+ ]
3062
+
3063
+ [[package]]
3064
+ name = "zmij"
3065
+ version = "1.0.21"
3066
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3067
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
3068
+
3069
+ [[package]]
3070
+ name = "zune-core"
3071
+ version = "0.4.12"
3072
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3073
+ checksum = "3f423a2c17029964870cfaabb1f13dfab7d092a62a29a89264f4d36990ca414a"
3074
+
3075
+ [[package]]
3076
+ name = "zune-jpeg"
3077
+ version = "0.4.21"
3078
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3079
+ checksum = "29ce2c8a9384ad323cf564b67da86e21d3cfdff87908bc1223ed5c99bc792713"
3080
+ dependencies = [
3081
+ "zune-core",
3082
+ ]