tauri-agent-tools 0.9.2 → 0.9.3

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