zenith-fixer 0.3.0__tar.gz

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