syspulse 0.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (46) hide show
  1. syspulse-0.1.0/Cargo.lock +2852 -0
  2. syspulse-0.1.0/Cargo.toml +69 -0
  3. syspulse-0.1.0/PKG-INFO +244 -0
  4. syspulse-0.1.0/README.md +212 -0
  5. syspulse-0.1.0/crates/syspulse-core/Cargo.toml +44 -0
  6. syspulse-0.1.0/crates/syspulse-core/src/config.rs +165 -0
  7. syspulse-0.1.0/crates/syspulse-core/src/daemon.rs +136 -0
  8. syspulse-0.1.0/crates/syspulse-core/src/error.rs +33 -0
  9. syspulse-0.1.0/crates/syspulse-core/src/health/command.rs +75 -0
  10. syspulse-0.1.0/crates/syspulse-core/src/health/http.rs +59 -0
  11. syspulse-0.1.0/crates/syspulse-core/src/health/mod.rs +22 -0
  12. syspulse-0.1.0/crates/syspulse-core/src/health/tcp.rs +48 -0
  13. syspulse-0.1.0/crates/syspulse-core/src/ipc/client.rs +76 -0
  14. syspulse-0.1.0/crates/syspulse-core/src/ipc/mod.rs +3 -0
  15. syspulse-0.1.0/crates/syspulse-core/src/ipc/protocol.rs +96 -0
  16. syspulse-0.1.0/crates/syspulse-core/src/ipc/server.rs +145 -0
  17. syspulse-0.1.0/crates/syspulse-core/src/lib.rs +20 -0
  18. syspulse-0.1.0/crates/syspulse-core/src/lifecycle.rs +173 -0
  19. syspulse-0.1.0/crates/syspulse-core/src/logs.rs +173 -0
  20. syspulse-0.1.0/crates/syspulse-core/src/manager.rs +849 -0
  21. syspulse-0.1.0/crates/syspulse-core/src/paths.rs +48 -0
  22. syspulse-0.1.0/crates/syspulse-core/src/process/mod.rs +49 -0
  23. syspulse-0.1.0/crates/syspulse-core/src/process/unix.rs +177 -0
  24. syspulse-0.1.0/crates/syspulse-core/src/process/windows.rs +236 -0
  25. syspulse-0.1.0/crates/syspulse-core/src/registry.rs +305 -0
  26. syspulse-0.1.0/crates/syspulse-core/src/resources.rs +8 -0
  27. syspulse-0.1.0/crates/syspulse-core/src/restart.rs +196 -0
  28. syspulse-0.1.0/crates/syspulse-core/src/scheduler.rs +69 -0
  29. syspulse-0.1.0/crates/syspulse-py/Cargo.toml +19 -0
  30. syspulse-0.1.0/crates/syspulse-py/README.md +212 -0
  31. syspulse-0.1.0/crates/syspulse-py/src/config.rs +31 -0
  32. syspulse-0.1.0/crates/syspulse-py/src/daemon.rs +203 -0
  33. syspulse-0.1.0/crates/syspulse-py/src/errors.rs +35 -0
  34. syspulse-0.1.0/crates/syspulse-py/src/health.rs +99 -0
  35. syspulse-0.1.0/crates/syspulse-py/src/instance.rs +87 -0
  36. syspulse-0.1.0/crates/syspulse-py/src/lib.rs +60 -0
  37. syspulse-0.1.0/crates/syspulse-py/src/log_config.rs +45 -0
  38. syspulse-0.1.0/crates/syspulse-py/src/manager.rs +210 -0
  39. syspulse-0.1.0/crates/syspulse-py/src/paths.rs +13 -0
  40. syspulse-0.1.0/crates/syspulse-py/src/resources.rs +49 -0
  41. syspulse-0.1.0/crates/syspulse-py/src/types.rs +63 -0
  42. syspulse-0.1.0/pyproject.toml +46 -0
  43. syspulse-0.1.0/python/syspulse/__init__.py +59 -0
  44. syspulse-0.1.0/python/syspulse/__init__.pyi +320 -0
  45. syspulse-0.1.0/python/syspulse/async_client.py +126 -0
  46. syspulse-0.1.0/python/syspulse/py.typed +0 -0
@@ -0,0 +1,2852 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "ahash"
7
+ version = "0.8.12"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
10
+ dependencies = [
11
+ "cfg-if",
12
+ "once_cell",
13
+ "version_check",
14
+ "zerocopy",
15
+ ]
16
+
17
+ [[package]]
18
+ name = "aho-corasick"
19
+ version = "1.1.4"
20
+ source = "registry+https://github.com/rust-lang/crates.io-index"
21
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
22
+ dependencies = [
23
+ "memchr",
24
+ ]
25
+
26
+ [[package]]
27
+ name = "android_system_properties"
28
+ version = "0.1.5"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
31
+ dependencies = [
32
+ "libc",
33
+ ]
34
+
35
+ [[package]]
36
+ name = "anstream"
37
+ version = "0.6.21"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
40
+ dependencies = [
41
+ "anstyle",
42
+ "anstyle-parse",
43
+ "anstyle-query",
44
+ "anstyle-wincon",
45
+ "colorchoice",
46
+ "is_terminal_polyfill",
47
+ "utf8parse",
48
+ ]
49
+
50
+ [[package]]
51
+ name = "anstyle"
52
+ version = "1.0.13"
53
+ source = "registry+https://github.com/rust-lang/crates.io-index"
54
+ checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
55
+
56
+ [[package]]
57
+ name = "anstyle-parse"
58
+ version = "0.2.7"
59
+ source = "registry+https://github.com/rust-lang/crates.io-index"
60
+ checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
61
+ dependencies = [
62
+ "utf8parse",
63
+ ]
64
+
65
+ [[package]]
66
+ name = "anstyle-query"
67
+ version = "1.1.5"
68
+ source = "registry+https://github.com/rust-lang/crates.io-index"
69
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
70
+ dependencies = [
71
+ "windows-sys 0.61.2",
72
+ ]
73
+
74
+ [[package]]
75
+ name = "anstyle-wincon"
76
+ version = "3.0.11"
77
+ source = "registry+https://github.com/rust-lang/crates.io-index"
78
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
79
+ dependencies = [
80
+ "anstyle",
81
+ "once_cell_polyfill",
82
+ "windows-sys 0.61.2",
83
+ ]
84
+
85
+ [[package]]
86
+ name = "anyhow"
87
+ version = "1.0.101"
88
+ source = "registry+https://github.com/rust-lang/crates.io-index"
89
+ checksum = "5f0e0fee31ef5ed1ba1316088939cea399010ed7731dba877ed44aeb407a75ea"
90
+
91
+ [[package]]
92
+ name = "async-trait"
93
+ version = "0.1.89"
94
+ source = "registry+https://github.com/rust-lang/crates.io-index"
95
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
96
+ dependencies = [
97
+ "proc-macro2",
98
+ "quote",
99
+ "syn",
100
+ ]
101
+
102
+ [[package]]
103
+ name = "atomic-waker"
104
+ version = "1.1.2"
105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
106
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
107
+
108
+ [[package]]
109
+ name = "autocfg"
110
+ version = "1.5.0"
111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
112
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
113
+
114
+ [[package]]
115
+ name = "base64"
116
+ version = "0.22.1"
117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
118
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
119
+
120
+ [[package]]
121
+ name = "bitflags"
122
+ version = "2.11.0"
123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
124
+ checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
125
+
126
+ [[package]]
127
+ name = "bumpalo"
128
+ version = "3.19.1"
129
+ source = "registry+https://github.com/rust-lang/crates.io-index"
130
+ checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510"
131
+
132
+ [[package]]
133
+ name = "bytes"
134
+ version = "1.11.1"
135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
136
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
137
+
138
+ [[package]]
139
+ name = "cc"
140
+ version = "1.2.56"
141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
142
+ checksum = "aebf35691d1bfb0ac386a69bac2fde4dd276fb618cf8bf4f5318fe285e821bb2"
143
+ dependencies = [
144
+ "find-msvc-tools",
145
+ "shlex",
146
+ ]
147
+
148
+ [[package]]
149
+ name = "cfg-if"
150
+ version = "1.0.4"
151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
152
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
153
+
154
+ [[package]]
155
+ name = "cfg_aliases"
156
+ version = "0.2.1"
157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
158
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
159
+
160
+ [[package]]
161
+ name = "chrono"
162
+ version = "0.4.43"
163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
164
+ checksum = "fac4744fb15ae8337dc853fee7fb3f4e48c0fbaa23d0afe49c447b4fab126118"
165
+ dependencies = [
166
+ "iana-time-zone",
167
+ "js-sys",
168
+ "num-traits",
169
+ "serde",
170
+ "wasm-bindgen",
171
+ "windows-link",
172
+ ]
173
+
174
+ [[package]]
175
+ name = "clap"
176
+ version = "4.5.59"
177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
178
+ checksum = "c5caf74d17c3aec5495110c34cc3f78644bfa89af6c8993ed4de2790e49b6499"
179
+ dependencies = [
180
+ "clap_builder",
181
+ "clap_derive",
182
+ ]
183
+
184
+ [[package]]
185
+ name = "clap_builder"
186
+ version = "4.5.59"
187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
188
+ checksum = "370daa45065b80218950227371916a1633217ae42b2715b2287b606dcd618e24"
189
+ dependencies = [
190
+ "anstream",
191
+ "anstyle",
192
+ "clap_lex",
193
+ "strsim",
194
+ ]
195
+
196
+ [[package]]
197
+ name = "clap_derive"
198
+ version = "4.5.55"
199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
200
+ checksum = "a92793da1a46a5f2a02a6f4c46c6496b28c43638adea8306fcb0caa1634f24e5"
201
+ dependencies = [
202
+ "heck",
203
+ "proc-macro2",
204
+ "quote",
205
+ "syn",
206
+ ]
207
+
208
+ [[package]]
209
+ name = "clap_lex"
210
+ version = "1.0.0"
211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
212
+ checksum = "3a822ea5bc7590f9d40f1ba12c0dc3c2760f3482c6984db1573ad11031420831"
213
+
214
+ [[package]]
215
+ name = "colorchoice"
216
+ version = "1.0.4"
217
+ source = "registry+https://github.com/rust-lang/crates.io-index"
218
+ checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
219
+
220
+ [[package]]
221
+ name = "comfy-table"
222
+ version = "7.2.2"
223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
224
+ checksum = "958c5d6ecf1f214b4c2bbbbf6ab9523a864bd136dcf71a7e8904799acfe1ad47"
225
+ dependencies = [
226
+ "crossterm",
227
+ "unicode-segmentation",
228
+ "unicode-width",
229
+ ]
230
+
231
+ [[package]]
232
+ name = "core-foundation-sys"
233
+ version = "0.8.7"
234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
235
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
236
+
237
+ [[package]]
238
+ name = "croner"
239
+ version = "2.2.0"
240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
241
+ checksum = "c344b0690c1ad1c7176fe18eb173e0c927008fdaaa256e40dfd43ddd149c0843"
242
+ dependencies = [
243
+ "chrono",
244
+ ]
245
+
246
+ [[package]]
247
+ name = "crossbeam-deque"
248
+ version = "0.8.6"
249
+ source = "registry+https://github.com/rust-lang/crates.io-index"
250
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
251
+ dependencies = [
252
+ "crossbeam-epoch",
253
+ "crossbeam-utils",
254
+ ]
255
+
256
+ [[package]]
257
+ name = "crossbeam-epoch"
258
+ version = "0.9.18"
259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
260
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
261
+ dependencies = [
262
+ "crossbeam-utils",
263
+ ]
264
+
265
+ [[package]]
266
+ name = "crossbeam-utils"
267
+ version = "0.8.21"
268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
269
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
270
+
271
+ [[package]]
272
+ name = "crossterm"
273
+ version = "0.29.0"
274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
275
+ checksum = "d8b9f2e4c67f833b660cdb0a3523065869fb35570177239812ed4c905aeff87b"
276
+ dependencies = [
277
+ "bitflags",
278
+ "crossterm_winapi",
279
+ "document-features",
280
+ "parking_lot",
281
+ "rustix",
282
+ "winapi",
283
+ ]
284
+
285
+ [[package]]
286
+ name = "crossterm_winapi"
287
+ version = "0.9.1"
288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
289
+ checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b"
290
+ dependencies = [
291
+ "winapi",
292
+ ]
293
+
294
+ [[package]]
295
+ name = "dirs"
296
+ version = "6.0.0"
297
+ source = "registry+https://github.com/rust-lang/crates.io-index"
298
+ checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e"
299
+ dependencies = [
300
+ "dirs-sys",
301
+ ]
302
+
303
+ [[package]]
304
+ name = "dirs-sys"
305
+ version = "0.5.0"
306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
307
+ checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab"
308
+ dependencies = [
309
+ "libc",
310
+ "option-ext",
311
+ "redox_users",
312
+ "windows-sys 0.61.2",
313
+ ]
314
+
315
+ [[package]]
316
+ name = "displaydoc"
317
+ version = "0.2.5"
318
+ source = "registry+https://github.com/rust-lang/crates.io-index"
319
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
320
+ dependencies = [
321
+ "proc-macro2",
322
+ "quote",
323
+ "syn",
324
+ ]
325
+
326
+ [[package]]
327
+ name = "doctest-file"
328
+ version = "1.0.0"
329
+ source = "registry+https://github.com/rust-lang/crates.io-index"
330
+ checksum = "aac81fa3e28d21450aa4d2ac065992ba96a1d7303efbce51a95f4fd175b67562"
331
+
332
+ [[package]]
333
+ name = "document-features"
334
+ version = "0.2.12"
335
+ source = "registry+https://github.com/rust-lang/crates.io-index"
336
+ checksum = "d4b8a88685455ed29a21542a33abd9cb6510b6b129abadabdcef0f4c55bc8f61"
337
+ dependencies = [
338
+ "litrs",
339
+ ]
340
+
341
+ [[package]]
342
+ name = "either"
343
+ version = "1.15.0"
344
+ source = "registry+https://github.com/rust-lang/crates.io-index"
345
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
346
+
347
+ [[package]]
348
+ name = "equivalent"
349
+ version = "1.0.2"
350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
351
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
352
+
353
+ [[package]]
354
+ name = "errno"
355
+ version = "0.3.14"
356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
357
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
358
+ dependencies = [
359
+ "libc",
360
+ "windows-sys 0.61.2",
361
+ ]
362
+
363
+ [[package]]
364
+ name = "fallible-iterator"
365
+ version = "0.3.0"
366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
367
+ checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649"
368
+
369
+ [[package]]
370
+ name = "fallible-streaming-iterator"
371
+ version = "0.1.9"
372
+ source = "registry+https://github.com/rust-lang/crates.io-index"
373
+ checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
374
+
375
+ [[package]]
376
+ name = "fastrand"
377
+ version = "2.3.0"
378
+ source = "registry+https://github.com/rust-lang/crates.io-index"
379
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
380
+
381
+ [[package]]
382
+ name = "find-msvc-tools"
383
+ version = "0.1.9"
384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
385
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
386
+
387
+ [[package]]
388
+ name = "foldhash"
389
+ version = "0.1.5"
390
+ source = "registry+https://github.com/rust-lang/crates.io-index"
391
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
392
+
393
+ [[package]]
394
+ name = "form_urlencoded"
395
+ version = "1.2.2"
396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
397
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
398
+ dependencies = [
399
+ "percent-encoding",
400
+ ]
401
+
402
+ [[package]]
403
+ name = "futures-channel"
404
+ version = "0.3.32"
405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
406
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
407
+ dependencies = [
408
+ "futures-core",
409
+ ]
410
+
411
+ [[package]]
412
+ name = "futures-core"
413
+ version = "0.3.32"
414
+ source = "registry+https://github.com/rust-lang/crates.io-index"
415
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
416
+
417
+ [[package]]
418
+ name = "futures-task"
419
+ version = "0.3.32"
420
+ source = "registry+https://github.com/rust-lang/crates.io-index"
421
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
422
+
423
+ [[package]]
424
+ name = "futures-util"
425
+ version = "0.3.32"
426
+ source = "registry+https://github.com/rust-lang/crates.io-index"
427
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
428
+ dependencies = [
429
+ "futures-core",
430
+ "futures-task",
431
+ "pin-project-lite",
432
+ "slab",
433
+ ]
434
+
435
+ [[package]]
436
+ name = "getrandom"
437
+ version = "0.2.17"
438
+ source = "registry+https://github.com/rust-lang/crates.io-index"
439
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
440
+ dependencies = [
441
+ "cfg-if",
442
+ "js-sys",
443
+ "libc",
444
+ "wasi",
445
+ "wasm-bindgen",
446
+ ]
447
+
448
+ [[package]]
449
+ name = "getrandom"
450
+ version = "0.3.4"
451
+ source = "registry+https://github.com/rust-lang/crates.io-index"
452
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
453
+ dependencies = [
454
+ "cfg-if",
455
+ "js-sys",
456
+ "libc",
457
+ "r-efi",
458
+ "wasip2",
459
+ "wasm-bindgen",
460
+ ]
461
+
462
+ [[package]]
463
+ name = "getrandom"
464
+ version = "0.4.1"
465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
466
+ checksum = "139ef39800118c7683f2fd3c98c1b23c09ae076556b435f8e9064ae108aaeeec"
467
+ dependencies = [
468
+ "cfg-if",
469
+ "libc",
470
+ "r-efi",
471
+ "wasip2",
472
+ "wasip3",
473
+ ]
474
+
475
+ [[package]]
476
+ name = "hashbrown"
477
+ version = "0.14.5"
478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
479
+ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
480
+ dependencies = [
481
+ "ahash",
482
+ ]
483
+
484
+ [[package]]
485
+ name = "hashbrown"
486
+ version = "0.15.5"
487
+ source = "registry+https://github.com/rust-lang/crates.io-index"
488
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
489
+ dependencies = [
490
+ "foldhash",
491
+ ]
492
+
493
+ [[package]]
494
+ name = "hashbrown"
495
+ version = "0.16.1"
496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
497
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
498
+
499
+ [[package]]
500
+ name = "hashlink"
501
+ version = "0.9.1"
502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
503
+ checksum = "6ba4ff7128dee98c7dc9794b6a411377e1404dba1c97deb8d1a55297bd25d8af"
504
+ dependencies = [
505
+ "hashbrown 0.14.5",
506
+ ]
507
+
508
+ [[package]]
509
+ name = "heck"
510
+ version = "0.5.0"
511
+ source = "registry+https://github.com/rust-lang/crates.io-index"
512
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
513
+
514
+ [[package]]
515
+ name = "http"
516
+ version = "1.4.0"
517
+ source = "registry+https://github.com/rust-lang/crates.io-index"
518
+ checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
519
+ dependencies = [
520
+ "bytes",
521
+ "itoa",
522
+ ]
523
+
524
+ [[package]]
525
+ name = "http-body"
526
+ version = "1.0.1"
527
+ source = "registry+https://github.com/rust-lang/crates.io-index"
528
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
529
+ dependencies = [
530
+ "bytes",
531
+ "http",
532
+ ]
533
+
534
+ [[package]]
535
+ name = "http-body-util"
536
+ version = "0.1.3"
537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
538
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
539
+ dependencies = [
540
+ "bytes",
541
+ "futures-core",
542
+ "http",
543
+ "http-body",
544
+ "pin-project-lite",
545
+ ]
546
+
547
+ [[package]]
548
+ name = "httparse"
549
+ version = "1.10.1"
550
+ source = "registry+https://github.com/rust-lang/crates.io-index"
551
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
552
+
553
+ [[package]]
554
+ name = "humantime"
555
+ version = "2.3.0"
556
+ source = "registry+https://github.com/rust-lang/crates.io-index"
557
+ checksum = "135b12329e5e3ce057a9f972339ea52bc954fe1e9358ef27f95e89716fbc5424"
558
+
559
+ [[package]]
560
+ name = "hyper"
561
+ version = "1.8.1"
562
+ source = "registry+https://github.com/rust-lang/crates.io-index"
563
+ checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11"
564
+ dependencies = [
565
+ "atomic-waker",
566
+ "bytes",
567
+ "futures-channel",
568
+ "futures-core",
569
+ "http",
570
+ "http-body",
571
+ "httparse",
572
+ "itoa",
573
+ "pin-project-lite",
574
+ "pin-utils",
575
+ "smallvec",
576
+ "tokio",
577
+ "want",
578
+ ]
579
+
580
+ [[package]]
581
+ name = "hyper-rustls"
582
+ version = "0.27.7"
583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
584
+ checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
585
+ dependencies = [
586
+ "http",
587
+ "hyper",
588
+ "hyper-util",
589
+ "rustls",
590
+ "rustls-pki-types",
591
+ "tokio",
592
+ "tokio-rustls",
593
+ "tower-service",
594
+ "webpki-roots",
595
+ ]
596
+
597
+ [[package]]
598
+ name = "hyper-util"
599
+ version = "0.1.20"
600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
601
+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
602
+ dependencies = [
603
+ "base64",
604
+ "bytes",
605
+ "futures-channel",
606
+ "futures-util",
607
+ "http",
608
+ "http-body",
609
+ "hyper",
610
+ "ipnet",
611
+ "libc",
612
+ "percent-encoding",
613
+ "pin-project-lite",
614
+ "socket2",
615
+ "tokio",
616
+ "tower-service",
617
+ "tracing",
618
+ ]
619
+
620
+ [[package]]
621
+ name = "iana-time-zone"
622
+ version = "0.1.65"
623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
624
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
625
+ dependencies = [
626
+ "android_system_properties",
627
+ "core-foundation-sys",
628
+ "iana-time-zone-haiku",
629
+ "js-sys",
630
+ "log",
631
+ "wasm-bindgen",
632
+ "windows-core 0.62.2",
633
+ ]
634
+
635
+ [[package]]
636
+ name = "iana-time-zone-haiku"
637
+ version = "0.1.2"
638
+ source = "registry+https://github.com/rust-lang/crates.io-index"
639
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
640
+ dependencies = [
641
+ "cc",
642
+ ]
643
+
644
+ [[package]]
645
+ name = "icu_collections"
646
+ version = "2.1.1"
647
+ source = "registry+https://github.com/rust-lang/crates.io-index"
648
+ checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
649
+ dependencies = [
650
+ "displaydoc",
651
+ "potential_utf",
652
+ "yoke",
653
+ "zerofrom",
654
+ "zerovec",
655
+ ]
656
+
657
+ [[package]]
658
+ name = "icu_locale_core"
659
+ version = "2.1.1"
660
+ source = "registry+https://github.com/rust-lang/crates.io-index"
661
+ checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
662
+ dependencies = [
663
+ "displaydoc",
664
+ "litemap",
665
+ "tinystr",
666
+ "writeable",
667
+ "zerovec",
668
+ ]
669
+
670
+ [[package]]
671
+ name = "icu_normalizer"
672
+ version = "2.1.1"
673
+ source = "registry+https://github.com/rust-lang/crates.io-index"
674
+ checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
675
+ dependencies = [
676
+ "icu_collections",
677
+ "icu_normalizer_data",
678
+ "icu_properties",
679
+ "icu_provider",
680
+ "smallvec",
681
+ "zerovec",
682
+ ]
683
+
684
+ [[package]]
685
+ name = "icu_normalizer_data"
686
+ version = "2.1.1"
687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
688
+ checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
689
+
690
+ [[package]]
691
+ name = "icu_properties"
692
+ version = "2.1.2"
693
+ source = "registry+https://github.com/rust-lang/crates.io-index"
694
+ checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
695
+ dependencies = [
696
+ "icu_collections",
697
+ "icu_locale_core",
698
+ "icu_properties_data",
699
+ "icu_provider",
700
+ "zerotrie",
701
+ "zerovec",
702
+ ]
703
+
704
+ [[package]]
705
+ name = "icu_properties_data"
706
+ version = "2.1.2"
707
+ source = "registry+https://github.com/rust-lang/crates.io-index"
708
+ checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
709
+
710
+ [[package]]
711
+ name = "icu_provider"
712
+ version = "2.1.1"
713
+ source = "registry+https://github.com/rust-lang/crates.io-index"
714
+ checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
715
+ dependencies = [
716
+ "displaydoc",
717
+ "icu_locale_core",
718
+ "writeable",
719
+ "yoke",
720
+ "zerofrom",
721
+ "zerotrie",
722
+ "zerovec",
723
+ ]
724
+
725
+ [[package]]
726
+ name = "id-arena"
727
+ version = "2.3.0"
728
+ source = "registry+https://github.com/rust-lang/crates.io-index"
729
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
730
+
731
+ [[package]]
732
+ name = "idna"
733
+ version = "1.1.0"
734
+ source = "registry+https://github.com/rust-lang/crates.io-index"
735
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
736
+ dependencies = [
737
+ "idna_adapter",
738
+ "smallvec",
739
+ "utf8_iter",
740
+ ]
741
+
742
+ [[package]]
743
+ name = "idna_adapter"
744
+ version = "1.2.1"
745
+ source = "registry+https://github.com/rust-lang/crates.io-index"
746
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
747
+ dependencies = [
748
+ "icu_normalizer",
749
+ "icu_properties",
750
+ ]
751
+
752
+ [[package]]
753
+ name = "indexmap"
754
+ version = "2.13.0"
755
+ source = "registry+https://github.com/rust-lang/crates.io-index"
756
+ checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
757
+ dependencies = [
758
+ "equivalent",
759
+ "hashbrown 0.16.1",
760
+ "serde",
761
+ "serde_core",
762
+ ]
763
+
764
+ [[package]]
765
+ name = "indoc"
766
+ version = "2.0.7"
767
+ source = "registry+https://github.com/rust-lang/crates.io-index"
768
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
769
+ dependencies = [
770
+ "rustversion",
771
+ ]
772
+
773
+ [[package]]
774
+ name = "interprocess"
775
+ version = "2.3.1"
776
+ source = "registry+https://github.com/rust-lang/crates.io-index"
777
+ checksum = "53bf2b0e0785c5394a7392f66d7c4fb9c653633c29b27a932280da3cb344c66a"
778
+ dependencies = [
779
+ "doctest-file",
780
+ "futures-core",
781
+ "libc",
782
+ "recvmsg",
783
+ "tokio",
784
+ "widestring",
785
+ "windows-sys 0.52.0",
786
+ ]
787
+
788
+ [[package]]
789
+ name = "ipnet"
790
+ version = "2.11.0"
791
+ source = "registry+https://github.com/rust-lang/crates.io-index"
792
+ checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
793
+
794
+ [[package]]
795
+ name = "iri-string"
796
+ version = "0.7.10"
797
+ source = "registry+https://github.com/rust-lang/crates.io-index"
798
+ checksum = "c91338f0783edbd6195decb37bae672fd3b165faffb89bf7b9e6942f8b1a731a"
799
+ dependencies = [
800
+ "memchr",
801
+ "serde",
802
+ ]
803
+
804
+ [[package]]
805
+ name = "is_terminal_polyfill"
806
+ version = "1.70.2"
807
+ source = "registry+https://github.com/rust-lang/crates.io-index"
808
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
809
+
810
+ [[package]]
811
+ name = "itoa"
812
+ version = "1.0.17"
813
+ source = "registry+https://github.com/rust-lang/crates.io-index"
814
+ checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
815
+
816
+ [[package]]
817
+ name = "js-sys"
818
+ version = "0.3.85"
819
+ source = "registry+https://github.com/rust-lang/crates.io-index"
820
+ checksum = "8c942ebf8e95485ca0d52d97da7c5a2c387d0e7f0ba4c35e93bfcaee045955b3"
821
+ dependencies = [
822
+ "once_cell",
823
+ "wasm-bindgen",
824
+ ]
825
+
826
+ [[package]]
827
+ name = "lazy_static"
828
+ version = "1.5.0"
829
+ source = "registry+https://github.com/rust-lang/crates.io-index"
830
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
831
+
832
+ [[package]]
833
+ name = "leb128fmt"
834
+ version = "0.1.0"
835
+ source = "registry+https://github.com/rust-lang/crates.io-index"
836
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
837
+
838
+ [[package]]
839
+ name = "libc"
840
+ version = "0.2.182"
841
+ source = "registry+https://github.com/rust-lang/crates.io-index"
842
+ checksum = "6800badb6cb2082ffd7b6a67e6125bb39f18782f793520caee8cb8846be06112"
843
+
844
+ [[package]]
845
+ name = "libredox"
846
+ version = "0.1.12"
847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
848
+ checksum = "3d0b95e02c851351f877147b7deea7b1afb1df71b63aa5f8270716e0c5720616"
849
+ dependencies = [
850
+ "bitflags",
851
+ "libc",
852
+ ]
853
+
854
+ [[package]]
855
+ name = "libsqlite3-sys"
856
+ version = "0.30.1"
857
+ source = "registry+https://github.com/rust-lang/crates.io-index"
858
+ checksum = "2e99fb7a497b1e3339bc746195567ed8d3e24945ecd636e3619d20b9de9e9149"
859
+ dependencies = [
860
+ "cc",
861
+ "pkg-config",
862
+ "vcpkg",
863
+ ]
864
+
865
+ [[package]]
866
+ name = "linux-raw-sys"
867
+ version = "0.11.0"
868
+ source = "registry+https://github.com/rust-lang/crates.io-index"
869
+ checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
870
+
871
+ [[package]]
872
+ name = "litemap"
873
+ version = "0.8.1"
874
+ source = "registry+https://github.com/rust-lang/crates.io-index"
875
+ checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
876
+
877
+ [[package]]
878
+ name = "litrs"
879
+ version = "1.0.0"
880
+ source = "registry+https://github.com/rust-lang/crates.io-index"
881
+ checksum = "11d3d7f243d5c5a8b9bb5d6dd2b1602c0cb0b9db1621bafc7ed66e35ff9fe092"
882
+
883
+ [[package]]
884
+ name = "lock_api"
885
+ version = "0.4.14"
886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
887
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
888
+ dependencies = [
889
+ "scopeguard",
890
+ ]
891
+
892
+ [[package]]
893
+ name = "log"
894
+ version = "0.4.29"
895
+ source = "registry+https://github.com/rust-lang/crates.io-index"
896
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
897
+
898
+ [[package]]
899
+ name = "lru-slab"
900
+ version = "0.1.2"
901
+ source = "registry+https://github.com/rust-lang/crates.io-index"
902
+ checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
903
+
904
+ [[package]]
905
+ name = "matchers"
906
+ version = "0.2.0"
907
+ source = "registry+https://github.com/rust-lang/crates.io-index"
908
+ checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
909
+ dependencies = [
910
+ "regex-automata",
911
+ ]
912
+
913
+ [[package]]
914
+ name = "memchr"
915
+ version = "2.8.0"
916
+ source = "registry+https://github.com/rust-lang/crates.io-index"
917
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
918
+
919
+ [[package]]
920
+ name = "memoffset"
921
+ version = "0.9.1"
922
+ source = "registry+https://github.com/rust-lang/crates.io-index"
923
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
924
+ dependencies = [
925
+ "autocfg",
926
+ ]
927
+
928
+ [[package]]
929
+ name = "mio"
930
+ version = "1.1.1"
931
+ source = "registry+https://github.com/rust-lang/crates.io-index"
932
+ checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
933
+ dependencies = [
934
+ "libc",
935
+ "wasi",
936
+ "windows-sys 0.61.2",
937
+ ]
938
+
939
+ [[package]]
940
+ name = "nix"
941
+ version = "0.29.0"
942
+ source = "registry+https://github.com/rust-lang/crates.io-index"
943
+ checksum = "71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46"
944
+ dependencies = [
945
+ "bitflags",
946
+ "cfg-if",
947
+ "cfg_aliases",
948
+ "libc",
949
+ ]
950
+
951
+ [[package]]
952
+ name = "ntapi"
953
+ version = "0.4.3"
954
+ source = "registry+https://github.com/rust-lang/crates.io-index"
955
+ checksum = "c3b335231dfd352ffb0f8017f3b6027a4917f7df785ea2143d8af2adc66980ae"
956
+ dependencies = [
957
+ "winapi",
958
+ ]
959
+
960
+ [[package]]
961
+ name = "nu-ansi-term"
962
+ version = "0.50.3"
963
+ source = "registry+https://github.com/rust-lang/crates.io-index"
964
+ checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
965
+ dependencies = [
966
+ "windows-sys 0.61.2",
967
+ ]
968
+
969
+ [[package]]
970
+ name = "num-derive"
971
+ version = "0.4.2"
972
+ source = "registry+https://github.com/rust-lang/crates.io-index"
973
+ checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202"
974
+ dependencies = [
975
+ "proc-macro2",
976
+ "quote",
977
+ "syn",
978
+ ]
979
+
980
+ [[package]]
981
+ name = "num-traits"
982
+ version = "0.2.19"
983
+ source = "registry+https://github.com/rust-lang/crates.io-index"
984
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
985
+ dependencies = [
986
+ "autocfg",
987
+ ]
988
+
989
+ [[package]]
990
+ name = "once_cell"
991
+ version = "1.21.3"
992
+ source = "registry+https://github.com/rust-lang/crates.io-index"
993
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
994
+
995
+ [[package]]
996
+ name = "once_cell_polyfill"
997
+ version = "1.70.2"
998
+ source = "registry+https://github.com/rust-lang/crates.io-index"
999
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
1000
+
1001
+ [[package]]
1002
+ name = "option-ext"
1003
+ version = "0.2.0"
1004
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1005
+ checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
1006
+
1007
+ [[package]]
1008
+ name = "owo-colors"
1009
+ version = "4.2.3"
1010
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1011
+ checksum = "9c6901729fa79e91a0913333229e9ca5dc725089d1c363b2f4b4760709dc4a52"
1012
+
1013
+ [[package]]
1014
+ name = "parking_lot"
1015
+ version = "0.12.5"
1016
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1017
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
1018
+ dependencies = [
1019
+ "lock_api",
1020
+ "parking_lot_core",
1021
+ ]
1022
+
1023
+ [[package]]
1024
+ name = "parking_lot_core"
1025
+ version = "0.9.12"
1026
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1027
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
1028
+ dependencies = [
1029
+ "cfg-if",
1030
+ "libc",
1031
+ "redox_syscall",
1032
+ "smallvec",
1033
+ "windows-link",
1034
+ ]
1035
+
1036
+ [[package]]
1037
+ name = "percent-encoding"
1038
+ version = "2.3.2"
1039
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1040
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1041
+
1042
+ [[package]]
1043
+ name = "pin-project-lite"
1044
+ version = "0.2.16"
1045
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1046
+ checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
1047
+
1048
+ [[package]]
1049
+ name = "pin-utils"
1050
+ version = "0.1.0"
1051
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1052
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1053
+
1054
+ [[package]]
1055
+ name = "pkg-config"
1056
+ version = "0.3.32"
1057
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1058
+ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
1059
+
1060
+ [[package]]
1061
+ name = "portable-atomic"
1062
+ version = "1.13.1"
1063
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1064
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
1065
+
1066
+ [[package]]
1067
+ name = "potential_utf"
1068
+ version = "0.1.4"
1069
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1070
+ checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
1071
+ dependencies = [
1072
+ "zerovec",
1073
+ ]
1074
+
1075
+ [[package]]
1076
+ name = "ppv-lite86"
1077
+ version = "0.2.21"
1078
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1079
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1080
+ dependencies = [
1081
+ "zerocopy",
1082
+ ]
1083
+
1084
+ [[package]]
1085
+ name = "prettyplease"
1086
+ version = "0.2.37"
1087
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1088
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
1089
+ dependencies = [
1090
+ "proc-macro2",
1091
+ "syn",
1092
+ ]
1093
+
1094
+ [[package]]
1095
+ name = "proc-macro2"
1096
+ version = "1.0.106"
1097
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1098
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1099
+ dependencies = [
1100
+ "unicode-ident",
1101
+ ]
1102
+
1103
+ [[package]]
1104
+ name = "pyo3"
1105
+ version = "0.24.2"
1106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1107
+ checksum = "e5203598f366b11a02b13aa20cab591229ff0a89fd121a308a5df751d5fc9219"
1108
+ dependencies = [
1109
+ "cfg-if",
1110
+ "indoc",
1111
+ "libc",
1112
+ "memoffset",
1113
+ "once_cell",
1114
+ "portable-atomic",
1115
+ "pyo3-build-config",
1116
+ "pyo3-ffi",
1117
+ "pyo3-macros",
1118
+ "unindent",
1119
+ ]
1120
+
1121
+ [[package]]
1122
+ name = "pyo3-build-config"
1123
+ version = "0.24.2"
1124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1125
+ checksum = "99636d423fa2ca130fa5acde3059308006d46f98caac629418e53f7ebb1e9999"
1126
+ dependencies = [
1127
+ "once_cell",
1128
+ "target-lexicon",
1129
+ ]
1130
+
1131
+ [[package]]
1132
+ name = "pyo3-ffi"
1133
+ version = "0.24.2"
1134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1135
+ checksum = "78f9cf92ba9c409279bc3305b5409d90db2d2c22392d443a87df3a1adad59e33"
1136
+ dependencies = [
1137
+ "libc",
1138
+ "pyo3-build-config",
1139
+ ]
1140
+
1141
+ [[package]]
1142
+ name = "pyo3-macros"
1143
+ version = "0.24.2"
1144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1145
+ checksum = "0b999cb1a6ce21f9a6b147dcf1be9ffedf02e0043aec74dc390f3007047cecd9"
1146
+ dependencies = [
1147
+ "proc-macro2",
1148
+ "pyo3-macros-backend",
1149
+ "quote",
1150
+ "syn",
1151
+ ]
1152
+
1153
+ [[package]]
1154
+ name = "pyo3-macros-backend"
1155
+ version = "0.24.2"
1156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1157
+ checksum = "822ece1c7e1012745607d5cf0bcb2874769f0f7cb34c4cde03b9358eb9ef911a"
1158
+ dependencies = [
1159
+ "heck",
1160
+ "proc-macro2",
1161
+ "pyo3-build-config",
1162
+ "quote",
1163
+ "syn",
1164
+ ]
1165
+
1166
+ [[package]]
1167
+ name = "quinn"
1168
+ version = "0.11.9"
1169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1170
+ checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
1171
+ dependencies = [
1172
+ "bytes",
1173
+ "cfg_aliases",
1174
+ "pin-project-lite",
1175
+ "quinn-proto",
1176
+ "quinn-udp",
1177
+ "rustc-hash",
1178
+ "rustls",
1179
+ "socket2",
1180
+ "thiserror",
1181
+ "tokio",
1182
+ "tracing",
1183
+ "web-time",
1184
+ ]
1185
+
1186
+ [[package]]
1187
+ name = "quinn-proto"
1188
+ version = "0.11.13"
1189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1190
+ checksum = "f1906b49b0c3bc04b5fe5d86a77925ae6524a19b816ae38ce1e426255f1d8a31"
1191
+ dependencies = [
1192
+ "bytes",
1193
+ "getrandom 0.3.4",
1194
+ "lru-slab",
1195
+ "rand 0.9.2",
1196
+ "ring",
1197
+ "rustc-hash",
1198
+ "rustls",
1199
+ "rustls-pki-types",
1200
+ "slab",
1201
+ "thiserror",
1202
+ "tinyvec",
1203
+ "tracing",
1204
+ "web-time",
1205
+ ]
1206
+
1207
+ [[package]]
1208
+ name = "quinn-udp"
1209
+ version = "0.5.14"
1210
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1211
+ checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
1212
+ dependencies = [
1213
+ "cfg_aliases",
1214
+ "libc",
1215
+ "once_cell",
1216
+ "socket2",
1217
+ "tracing",
1218
+ "windows-sys 0.60.2",
1219
+ ]
1220
+
1221
+ [[package]]
1222
+ name = "quote"
1223
+ version = "1.0.44"
1224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1225
+ checksum = "21b2ebcf727b7760c461f091f9f0f539b77b8e87f2fd88131e7f1b433b3cece4"
1226
+ dependencies = [
1227
+ "proc-macro2",
1228
+ ]
1229
+
1230
+ [[package]]
1231
+ name = "r-efi"
1232
+ version = "5.3.0"
1233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1234
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1235
+
1236
+ [[package]]
1237
+ name = "rand"
1238
+ version = "0.8.5"
1239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1240
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
1241
+ dependencies = [
1242
+ "libc",
1243
+ "rand_chacha 0.3.1",
1244
+ "rand_core 0.6.4",
1245
+ ]
1246
+
1247
+ [[package]]
1248
+ name = "rand"
1249
+ version = "0.9.2"
1250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1251
+ checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
1252
+ dependencies = [
1253
+ "rand_chacha 0.9.0",
1254
+ "rand_core 0.9.5",
1255
+ ]
1256
+
1257
+ [[package]]
1258
+ name = "rand_chacha"
1259
+ version = "0.3.1"
1260
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1261
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
1262
+ dependencies = [
1263
+ "ppv-lite86",
1264
+ "rand_core 0.6.4",
1265
+ ]
1266
+
1267
+ [[package]]
1268
+ name = "rand_chacha"
1269
+ version = "0.9.0"
1270
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1271
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
1272
+ dependencies = [
1273
+ "ppv-lite86",
1274
+ "rand_core 0.9.5",
1275
+ ]
1276
+
1277
+ [[package]]
1278
+ name = "rand_core"
1279
+ version = "0.6.4"
1280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1281
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1282
+ dependencies = [
1283
+ "getrandom 0.2.17",
1284
+ ]
1285
+
1286
+ [[package]]
1287
+ name = "rand_core"
1288
+ version = "0.9.5"
1289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1290
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
1291
+ dependencies = [
1292
+ "getrandom 0.3.4",
1293
+ ]
1294
+
1295
+ [[package]]
1296
+ name = "rayon"
1297
+ version = "1.11.0"
1298
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1299
+ checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
1300
+ dependencies = [
1301
+ "either",
1302
+ "rayon-core",
1303
+ ]
1304
+
1305
+ [[package]]
1306
+ name = "rayon-core"
1307
+ version = "1.13.0"
1308
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1309
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
1310
+ dependencies = [
1311
+ "crossbeam-deque",
1312
+ "crossbeam-utils",
1313
+ ]
1314
+
1315
+ [[package]]
1316
+ name = "recvmsg"
1317
+ version = "1.0.0"
1318
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1319
+ checksum = "d3edd4d5d42c92f0a659926464d4cce56b562761267ecf0f469d85b7de384175"
1320
+
1321
+ [[package]]
1322
+ name = "redox_syscall"
1323
+ version = "0.5.18"
1324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1325
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
1326
+ dependencies = [
1327
+ "bitflags",
1328
+ ]
1329
+
1330
+ [[package]]
1331
+ name = "redox_users"
1332
+ version = "0.5.2"
1333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1334
+ checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac"
1335
+ dependencies = [
1336
+ "getrandom 0.2.17",
1337
+ "libredox",
1338
+ "thiserror",
1339
+ ]
1340
+
1341
+ [[package]]
1342
+ name = "regex-automata"
1343
+ version = "0.4.14"
1344
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1345
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
1346
+ dependencies = [
1347
+ "aho-corasick",
1348
+ "memchr",
1349
+ "regex-syntax",
1350
+ ]
1351
+
1352
+ [[package]]
1353
+ name = "regex-syntax"
1354
+ version = "0.8.9"
1355
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1356
+ checksum = "a96887878f22d7bad8a3b6dc5b7440e0ada9a245242924394987b21cf2210a4c"
1357
+
1358
+ [[package]]
1359
+ name = "reqwest"
1360
+ version = "0.12.28"
1361
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1362
+ checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
1363
+ dependencies = [
1364
+ "base64",
1365
+ "bytes",
1366
+ "futures-core",
1367
+ "http",
1368
+ "http-body",
1369
+ "http-body-util",
1370
+ "hyper",
1371
+ "hyper-rustls",
1372
+ "hyper-util",
1373
+ "js-sys",
1374
+ "log",
1375
+ "percent-encoding",
1376
+ "pin-project-lite",
1377
+ "quinn",
1378
+ "rustls",
1379
+ "rustls-pki-types",
1380
+ "serde",
1381
+ "serde_json",
1382
+ "serde_urlencoded",
1383
+ "sync_wrapper",
1384
+ "tokio",
1385
+ "tokio-rustls",
1386
+ "tower",
1387
+ "tower-http",
1388
+ "tower-service",
1389
+ "url",
1390
+ "wasm-bindgen",
1391
+ "wasm-bindgen-futures",
1392
+ "web-sys",
1393
+ "webpki-roots",
1394
+ ]
1395
+
1396
+ [[package]]
1397
+ name = "ring"
1398
+ version = "0.17.14"
1399
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1400
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
1401
+ dependencies = [
1402
+ "cc",
1403
+ "cfg-if",
1404
+ "getrandom 0.2.17",
1405
+ "libc",
1406
+ "untrusted",
1407
+ "windows-sys 0.52.0",
1408
+ ]
1409
+
1410
+ [[package]]
1411
+ name = "rlimit"
1412
+ version = "0.10.2"
1413
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1414
+ checksum = "7043b63bd0cd1aaa628e476b80e6d4023a3b50eb32789f2728908107bd0c793a"
1415
+ dependencies = [
1416
+ "libc",
1417
+ ]
1418
+
1419
+ [[package]]
1420
+ name = "rusqlite"
1421
+ version = "0.32.1"
1422
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1423
+ checksum = "7753b721174eb8ff87a9a0e799e2d7bc3749323e773db92e0984debb00019d6e"
1424
+ dependencies = [
1425
+ "bitflags",
1426
+ "fallible-iterator",
1427
+ "fallible-streaming-iterator",
1428
+ "hashlink",
1429
+ "libsqlite3-sys",
1430
+ "smallvec",
1431
+ ]
1432
+
1433
+ [[package]]
1434
+ name = "rustc-hash"
1435
+ version = "2.1.1"
1436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1437
+ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
1438
+
1439
+ [[package]]
1440
+ name = "rustix"
1441
+ version = "1.1.3"
1442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1443
+ checksum = "146c9e247ccc180c1f61615433868c99f3de3ae256a30a43b49f67c2d9171f34"
1444
+ dependencies = [
1445
+ "bitflags",
1446
+ "errno",
1447
+ "libc",
1448
+ "linux-raw-sys",
1449
+ "windows-sys 0.61.2",
1450
+ ]
1451
+
1452
+ [[package]]
1453
+ name = "rustls"
1454
+ version = "0.23.36"
1455
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1456
+ checksum = "c665f33d38cea657d9614f766881e4d510e0eda4239891eea56b4cadcf01801b"
1457
+ dependencies = [
1458
+ "once_cell",
1459
+ "ring",
1460
+ "rustls-pki-types",
1461
+ "rustls-webpki",
1462
+ "subtle",
1463
+ "zeroize",
1464
+ ]
1465
+
1466
+ [[package]]
1467
+ name = "rustls-pki-types"
1468
+ version = "1.14.0"
1469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1470
+ checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd"
1471
+ dependencies = [
1472
+ "web-time",
1473
+ "zeroize",
1474
+ ]
1475
+
1476
+ [[package]]
1477
+ name = "rustls-webpki"
1478
+ version = "0.103.9"
1479
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1480
+ checksum = "d7df23109aa6c1567d1c575b9952556388da57401e4ace1d15f79eedad0d8f53"
1481
+ dependencies = [
1482
+ "ring",
1483
+ "rustls-pki-types",
1484
+ "untrusted",
1485
+ ]
1486
+
1487
+ [[package]]
1488
+ name = "rustversion"
1489
+ version = "1.0.22"
1490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1491
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1492
+
1493
+ [[package]]
1494
+ name = "ryu"
1495
+ version = "1.0.23"
1496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1497
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
1498
+
1499
+ [[package]]
1500
+ name = "scopeguard"
1501
+ version = "1.2.0"
1502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1503
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1504
+
1505
+ [[package]]
1506
+ name = "semver"
1507
+ version = "1.0.27"
1508
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1509
+ checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
1510
+
1511
+ [[package]]
1512
+ name = "serde"
1513
+ version = "1.0.228"
1514
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1515
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1516
+ dependencies = [
1517
+ "serde_core",
1518
+ "serde_derive",
1519
+ ]
1520
+
1521
+ [[package]]
1522
+ name = "serde_core"
1523
+ version = "1.0.228"
1524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1525
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1526
+ dependencies = [
1527
+ "serde_derive",
1528
+ ]
1529
+
1530
+ [[package]]
1531
+ name = "serde_derive"
1532
+ version = "1.0.228"
1533
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1534
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1535
+ dependencies = [
1536
+ "proc-macro2",
1537
+ "quote",
1538
+ "syn",
1539
+ ]
1540
+
1541
+ [[package]]
1542
+ name = "serde_json"
1543
+ version = "1.0.149"
1544
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1545
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
1546
+ dependencies = [
1547
+ "itoa",
1548
+ "memchr",
1549
+ "serde",
1550
+ "serde_core",
1551
+ "zmij",
1552
+ ]
1553
+
1554
+ [[package]]
1555
+ name = "serde_spanned"
1556
+ version = "0.6.9"
1557
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1558
+ checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
1559
+ dependencies = [
1560
+ "serde",
1561
+ ]
1562
+
1563
+ [[package]]
1564
+ name = "serde_urlencoded"
1565
+ version = "0.7.1"
1566
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1567
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
1568
+ dependencies = [
1569
+ "form_urlencoded",
1570
+ "itoa",
1571
+ "ryu",
1572
+ "serde",
1573
+ ]
1574
+
1575
+ [[package]]
1576
+ name = "sharded-slab"
1577
+ version = "0.1.7"
1578
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1579
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
1580
+ dependencies = [
1581
+ "lazy_static",
1582
+ ]
1583
+
1584
+ [[package]]
1585
+ name = "shlex"
1586
+ version = "1.3.0"
1587
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1588
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1589
+
1590
+ [[package]]
1591
+ name = "signal-hook-registry"
1592
+ version = "1.4.8"
1593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1594
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
1595
+ dependencies = [
1596
+ "errno",
1597
+ "libc",
1598
+ ]
1599
+
1600
+ [[package]]
1601
+ name = "slab"
1602
+ version = "0.4.12"
1603
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1604
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1605
+
1606
+ [[package]]
1607
+ name = "smallvec"
1608
+ version = "1.15.1"
1609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1610
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
1611
+
1612
+ [[package]]
1613
+ name = "socket2"
1614
+ version = "0.6.2"
1615
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1616
+ checksum = "86f4aa3ad99f2088c990dfa82d367e19cb29268ed67c574d10d0a4bfe71f07e0"
1617
+ dependencies = [
1618
+ "libc",
1619
+ "windows-sys 0.60.2",
1620
+ ]
1621
+
1622
+ [[package]]
1623
+ name = "stable_deref_trait"
1624
+ version = "1.2.1"
1625
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1626
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
1627
+
1628
+ [[package]]
1629
+ name = "strsim"
1630
+ version = "0.11.1"
1631
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1632
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1633
+
1634
+ [[package]]
1635
+ name = "subtle"
1636
+ version = "2.6.1"
1637
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1638
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
1639
+
1640
+ [[package]]
1641
+ name = "syn"
1642
+ version = "2.0.116"
1643
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1644
+ checksum = "3df424c70518695237746f84cede799c9c58fcb37450d7b23716568cc8bc69cb"
1645
+ dependencies = [
1646
+ "proc-macro2",
1647
+ "quote",
1648
+ "unicode-ident",
1649
+ ]
1650
+
1651
+ [[package]]
1652
+ name = "sync_wrapper"
1653
+ version = "1.0.2"
1654
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1655
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
1656
+ dependencies = [
1657
+ "futures-core",
1658
+ ]
1659
+
1660
+ [[package]]
1661
+ name = "synstructure"
1662
+ version = "0.13.2"
1663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1664
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
1665
+ dependencies = [
1666
+ "proc-macro2",
1667
+ "quote",
1668
+ "syn",
1669
+ ]
1670
+
1671
+ [[package]]
1672
+ name = "sysinfo"
1673
+ version = "0.32.1"
1674
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1675
+ checksum = "4c33cd241af0f2e9e3b5c32163b873b29956890b5342e6745b917ce9d490f4af"
1676
+ dependencies = [
1677
+ "core-foundation-sys",
1678
+ "libc",
1679
+ "memchr",
1680
+ "ntapi",
1681
+ "rayon",
1682
+ "windows 0.57.0",
1683
+ ]
1684
+
1685
+ [[package]]
1686
+ name = "syspulse-cli"
1687
+ version = "0.1.0"
1688
+ dependencies = [
1689
+ "anyhow",
1690
+ "chrono",
1691
+ "clap",
1692
+ "comfy-table",
1693
+ "owo-colors",
1694
+ "serde",
1695
+ "serde_json",
1696
+ "syspulse-core",
1697
+ "thiserror",
1698
+ "tokio",
1699
+ "toml",
1700
+ "tracing",
1701
+ "tracing-subscriber",
1702
+ ]
1703
+
1704
+ [[package]]
1705
+ name = "syspulse-core"
1706
+ version = "0.1.0"
1707
+ dependencies = [
1708
+ "anyhow",
1709
+ "async-trait",
1710
+ "chrono",
1711
+ "dirs",
1712
+ "humantime",
1713
+ "interprocess",
1714
+ "nix",
1715
+ "rand 0.8.5",
1716
+ "reqwest",
1717
+ "rlimit",
1718
+ "rusqlite",
1719
+ "serde",
1720
+ "serde_json",
1721
+ "sysinfo",
1722
+ "tempfile",
1723
+ "thiserror",
1724
+ "tokio",
1725
+ "tokio-cron-scheduler",
1726
+ "toml",
1727
+ "tracing",
1728
+ "tracing-subscriber",
1729
+ "uuid",
1730
+ "windows 0.58.0",
1731
+ ]
1732
+
1733
+ [[package]]
1734
+ name = "syspulse-py"
1735
+ version = "0.1.0"
1736
+ dependencies = [
1737
+ "chrono",
1738
+ "pyo3",
1739
+ "serde",
1740
+ "serde_json",
1741
+ "syspulse-core",
1742
+ "tokio",
1743
+ ]
1744
+
1745
+ [[package]]
1746
+ name = "target-lexicon"
1747
+ version = "0.13.5"
1748
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1749
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
1750
+
1751
+ [[package]]
1752
+ name = "tempfile"
1753
+ version = "3.25.0"
1754
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1755
+ checksum = "0136791f7c95b1f6dd99f9cc786b91bb81c3800b639b3478e561ddb7be95e5f1"
1756
+ dependencies = [
1757
+ "fastrand",
1758
+ "getrandom 0.4.1",
1759
+ "once_cell",
1760
+ "rustix",
1761
+ "windows-sys 0.61.2",
1762
+ ]
1763
+
1764
+ [[package]]
1765
+ name = "thiserror"
1766
+ version = "2.0.18"
1767
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1768
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
1769
+ dependencies = [
1770
+ "thiserror-impl",
1771
+ ]
1772
+
1773
+ [[package]]
1774
+ name = "thiserror-impl"
1775
+ version = "2.0.18"
1776
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1777
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
1778
+ dependencies = [
1779
+ "proc-macro2",
1780
+ "quote",
1781
+ "syn",
1782
+ ]
1783
+
1784
+ [[package]]
1785
+ name = "thread_local"
1786
+ version = "1.1.9"
1787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1788
+ checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
1789
+ dependencies = [
1790
+ "cfg-if",
1791
+ ]
1792
+
1793
+ [[package]]
1794
+ name = "tinystr"
1795
+ version = "0.8.2"
1796
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1797
+ checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
1798
+ dependencies = [
1799
+ "displaydoc",
1800
+ "zerovec",
1801
+ ]
1802
+
1803
+ [[package]]
1804
+ name = "tinyvec"
1805
+ version = "1.10.0"
1806
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1807
+ checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa"
1808
+ dependencies = [
1809
+ "tinyvec_macros",
1810
+ ]
1811
+
1812
+ [[package]]
1813
+ name = "tinyvec_macros"
1814
+ version = "0.1.1"
1815
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1816
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
1817
+
1818
+ [[package]]
1819
+ name = "tokio"
1820
+ version = "1.49.0"
1821
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1822
+ checksum = "72a2903cd7736441aac9df9d7688bd0ce48edccaadf181c3b90be801e81d3d86"
1823
+ dependencies = [
1824
+ "bytes",
1825
+ "libc",
1826
+ "mio",
1827
+ "parking_lot",
1828
+ "pin-project-lite",
1829
+ "signal-hook-registry",
1830
+ "socket2",
1831
+ "tokio-macros",
1832
+ "windows-sys 0.61.2",
1833
+ ]
1834
+
1835
+ [[package]]
1836
+ name = "tokio-cron-scheduler"
1837
+ version = "0.13.0"
1838
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1839
+ checksum = "6a5597b569b4712cf78aa0c9ae29742461b7bda1e49c2a5fdad1d79bf022f8f0"
1840
+ dependencies = [
1841
+ "chrono",
1842
+ "croner",
1843
+ "num-derive",
1844
+ "num-traits",
1845
+ "tokio",
1846
+ "tracing",
1847
+ "uuid",
1848
+ ]
1849
+
1850
+ [[package]]
1851
+ name = "tokio-macros"
1852
+ version = "2.6.0"
1853
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1854
+ checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5"
1855
+ dependencies = [
1856
+ "proc-macro2",
1857
+ "quote",
1858
+ "syn",
1859
+ ]
1860
+
1861
+ [[package]]
1862
+ name = "tokio-rustls"
1863
+ version = "0.26.4"
1864
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1865
+ checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
1866
+ dependencies = [
1867
+ "rustls",
1868
+ "tokio",
1869
+ ]
1870
+
1871
+ [[package]]
1872
+ name = "toml"
1873
+ version = "0.8.23"
1874
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1875
+ checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
1876
+ dependencies = [
1877
+ "serde",
1878
+ "serde_spanned",
1879
+ "toml_datetime",
1880
+ "toml_edit",
1881
+ ]
1882
+
1883
+ [[package]]
1884
+ name = "toml_datetime"
1885
+ version = "0.6.11"
1886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1887
+ checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
1888
+ dependencies = [
1889
+ "serde",
1890
+ ]
1891
+
1892
+ [[package]]
1893
+ name = "toml_edit"
1894
+ version = "0.22.27"
1895
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1896
+ checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
1897
+ dependencies = [
1898
+ "indexmap",
1899
+ "serde",
1900
+ "serde_spanned",
1901
+ "toml_datetime",
1902
+ "toml_write",
1903
+ "winnow",
1904
+ ]
1905
+
1906
+ [[package]]
1907
+ name = "toml_write"
1908
+ version = "0.1.2"
1909
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1910
+ checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
1911
+
1912
+ [[package]]
1913
+ name = "tower"
1914
+ version = "0.5.3"
1915
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1916
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
1917
+ dependencies = [
1918
+ "futures-core",
1919
+ "futures-util",
1920
+ "pin-project-lite",
1921
+ "sync_wrapper",
1922
+ "tokio",
1923
+ "tower-layer",
1924
+ "tower-service",
1925
+ ]
1926
+
1927
+ [[package]]
1928
+ name = "tower-http"
1929
+ version = "0.6.8"
1930
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1931
+ checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
1932
+ dependencies = [
1933
+ "bitflags",
1934
+ "bytes",
1935
+ "futures-util",
1936
+ "http",
1937
+ "http-body",
1938
+ "iri-string",
1939
+ "pin-project-lite",
1940
+ "tower",
1941
+ "tower-layer",
1942
+ "tower-service",
1943
+ ]
1944
+
1945
+ [[package]]
1946
+ name = "tower-layer"
1947
+ version = "0.3.3"
1948
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1949
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
1950
+
1951
+ [[package]]
1952
+ name = "tower-service"
1953
+ version = "0.3.3"
1954
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1955
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
1956
+
1957
+ [[package]]
1958
+ name = "tracing"
1959
+ version = "0.1.44"
1960
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1961
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
1962
+ dependencies = [
1963
+ "pin-project-lite",
1964
+ "tracing-attributes",
1965
+ "tracing-core",
1966
+ ]
1967
+
1968
+ [[package]]
1969
+ name = "tracing-attributes"
1970
+ version = "0.1.31"
1971
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1972
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
1973
+ dependencies = [
1974
+ "proc-macro2",
1975
+ "quote",
1976
+ "syn",
1977
+ ]
1978
+
1979
+ [[package]]
1980
+ name = "tracing-core"
1981
+ version = "0.1.36"
1982
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1983
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
1984
+ dependencies = [
1985
+ "once_cell",
1986
+ "valuable",
1987
+ ]
1988
+
1989
+ [[package]]
1990
+ name = "tracing-log"
1991
+ version = "0.2.0"
1992
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1993
+ checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
1994
+ dependencies = [
1995
+ "log",
1996
+ "once_cell",
1997
+ "tracing-core",
1998
+ ]
1999
+
2000
+ [[package]]
2001
+ name = "tracing-serde"
2002
+ version = "0.2.0"
2003
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2004
+ checksum = "704b1aeb7be0d0a84fc9828cae51dab5970fee5088f83d1dd7ee6f6246fc6ff1"
2005
+ dependencies = [
2006
+ "serde",
2007
+ "tracing-core",
2008
+ ]
2009
+
2010
+ [[package]]
2011
+ name = "tracing-subscriber"
2012
+ version = "0.3.22"
2013
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2014
+ checksum = "2f30143827ddab0d256fd843b7a66d164e9f271cfa0dde49142c5ca0ca291f1e"
2015
+ dependencies = [
2016
+ "matchers",
2017
+ "nu-ansi-term",
2018
+ "once_cell",
2019
+ "regex-automata",
2020
+ "serde",
2021
+ "serde_json",
2022
+ "sharded-slab",
2023
+ "smallvec",
2024
+ "thread_local",
2025
+ "tracing",
2026
+ "tracing-core",
2027
+ "tracing-log",
2028
+ "tracing-serde",
2029
+ ]
2030
+
2031
+ [[package]]
2032
+ name = "try-lock"
2033
+ version = "0.2.5"
2034
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2035
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
2036
+
2037
+ [[package]]
2038
+ name = "unicode-ident"
2039
+ version = "1.0.24"
2040
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2041
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
2042
+
2043
+ [[package]]
2044
+ name = "unicode-segmentation"
2045
+ version = "1.12.0"
2046
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2047
+ checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
2048
+
2049
+ [[package]]
2050
+ name = "unicode-width"
2051
+ version = "0.2.2"
2052
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2053
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
2054
+
2055
+ [[package]]
2056
+ name = "unicode-xid"
2057
+ version = "0.2.6"
2058
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2059
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
2060
+
2061
+ [[package]]
2062
+ name = "unindent"
2063
+ version = "0.2.4"
2064
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2065
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
2066
+
2067
+ [[package]]
2068
+ name = "untrusted"
2069
+ version = "0.9.0"
2070
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2071
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
2072
+
2073
+ [[package]]
2074
+ name = "url"
2075
+ version = "2.5.8"
2076
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2077
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
2078
+ dependencies = [
2079
+ "form_urlencoded",
2080
+ "idna",
2081
+ "percent-encoding",
2082
+ "serde",
2083
+ ]
2084
+
2085
+ [[package]]
2086
+ name = "utf8_iter"
2087
+ version = "1.0.4"
2088
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2089
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
2090
+
2091
+ [[package]]
2092
+ name = "utf8parse"
2093
+ version = "0.2.2"
2094
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2095
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
2096
+
2097
+ [[package]]
2098
+ name = "uuid"
2099
+ version = "1.21.0"
2100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2101
+ checksum = "b672338555252d43fd2240c714dc444b8c6fb0a5c5335e65a07bba7742735ddb"
2102
+ dependencies = [
2103
+ "getrandom 0.4.1",
2104
+ "js-sys",
2105
+ "serde_core",
2106
+ "wasm-bindgen",
2107
+ ]
2108
+
2109
+ [[package]]
2110
+ name = "valuable"
2111
+ version = "0.1.1"
2112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2113
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
2114
+
2115
+ [[package]]
2116
+ name = "vcpkg"
2117
+ version = "0.2.15"
2118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2119
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
2120
+
2121
+ [[package]]
2122
+ name = "version_check"
2123
+ version = "0.9.5"
2124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2125
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
2126
+
2127
+ [[package]]
2128
+ name = "want"
2129
+ version = "0.3.1"
2130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2131
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
2132
+ dependencies = [
2133
+ "try-lock",
2134
+ ]
2135
+
2136
+ [[package]]
2137
+ name = "wasi"
2138
+ version = "0.11.1+wasi-snapshot-preview1"
2139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2140
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
2141
+
2142
+ [[package]]
2143
+ name = "wasip2"
2144
+ version = "1.0.2+wasi-0.2.9"
2145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2146
+ checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
2147
+ dependencies = [
2148
+ "wit-bindgen",
2149
+ ]
2150
+
2151
+ [[package]]
2152
+ name = "wasip3"
2153
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
2154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2155
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
2156
+ dependencies = [
2157
+ "wit-bindgen",
2158
+ ]
2159
+
2160
+ [[package]]
2161
+ name = "wasm-bindgen"
2162
+ version = "0.2.108"
2163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2164
+ checksum = "64024a30ec1e37399cf85a7ffefebdb72205ca1c972291c51512360d90bd8566"
2165
+ dependencies = [
2166
+ "cfg-if",
2167
+ "once_cell",
2168
+ "rustversion",
2169
+ "wasm-bindgen-macro",
2170
+ "wasm-bindgen-shared",
2171
+ ]
2172
+
2173
+ [[package]]
2174
+ name = "wasm-bindgen-futures"
2175
+ version = "0.4.58"
2176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2177
+ checksum = "70a6e77fd0ae8029c9ea0063f87c46fde723e7d887703d74ad2616d792e51e6f"
2178
+ dependencies = [
2179
+ "cfg-if",
2180
+ "futures-util",
2181
+ "js-sys",
2182
+ "once_cell",
2183
+ "wasm-bindgen",
2184
+ "web-sys",
2185
+ ]
2186
+
2187
+ [[package]]
2188
+ name = "wasm-bindgen-macro"
2189
+ version = "0.2.108"
2190
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2191
+ checksum = "008b239d9c740232e71bd39e8ef6429d27097518b6b30bdf9086833bd5b6d608"
2192
+ dependencies = [
2193
+ "quote",
2194
+ "wasm-bindgen-macro-support",
2195
+ ]
2196
+
2197
+ [[package]]
2198
+ name = "wasm-bindgen-macro-support"
2199
+ version = "0.2.108"
2200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2201
+ checksum = "5256bae2d58f54820e6490f9839c49780dff84c65aeab9e772f15d5f0e913a55"
2202
+ dependencies = [
2203
+ "bumpalo",
2204
+ "proc-macro2",
2205
+ "quote",
2206
+ "syn",
2207
+ "wasm-bindgen-shared",
2208
+ ]
2209
+
2210
+ [[package]]
2211
+ name = "wasm-bindgen-shared"
2212
+ version = "0.2.108"
2213
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2214
+ checksum = "1f01b580c9ac74c8d8f0c0e4afb04eeef2acf145458e52c03845ee9cd23e3d12"
2215
+ dependencies = [
2216
+ "unicode-ident",
2217
+ ]
2218
+
2219
+ [[package]]
2220
+ name = "wasm-encoder"
2221
+ version = "0.244.0"
2222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2223
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
2224
+ dependencies = [
2225
+ "leb128fmt",
2226
+ "wasmparser",
2227
+ ]
2228
+
2229
+ [[package]]
2230
+ name = "wasm-metadata"
2231
+ version = "0.244.0"
2232
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2233
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
2234
+ dependencies = [
2235
+ "anyhow",
2236
+ "indexmap",
2237
+ "wasm-encoder",
2238
+ "wasmparser",
2239
+ ]
2240
+
2241
+ [[package]]
2242
+ name = "wasmparser"
2243
+ version = "0.244.0"
2244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2245
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
2246
+ dependencies = [
2247
+ "bitflags",
2248
+ "hashbrown 0.15.5",
2249
+ "indexmap",
2250
+ "semver",
2251
+ ]
2252
+
2253
+ [[package]]
2254
+ name = "web-sys"
2255
+ version = "0.3.85"
2256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2257
+ checksum = "312e32e551d92129218ea9a2452120f4aabc03529ef03e4d0d82fb2780608598"
2258
+ dependencies = [
2259
+ "js-sys",
2260
+ "wasm-bindgen",
2261
+ ]
2262
+
2263
+ [[package]]
2264
+ name = "web-time"
2265
+ version = "1.1.0"
2266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2267
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
2268
+ dependencies = [
2269
+ "js-sys",
2270
+ "wasm-bindgen",
2271
+ ]
2272
+
2273
+ [[package]]
2274
+ name = "webpki-roots"
2275
+ version = "1.0.6"
2276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2277
+ checksum = "22cfaf3c063993ff62e73cb4311efde4db1efb31ab78a3e5c457939ad5cc0bed"
2278
+ dependencies = [
2279
+ "rustls-pki-types",
2280
+ ]
2281
+
2282
+ [[package]]
2283
+ name = "widestring"
2284
+ version = "1.2.1"
2285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2286
+ checksum = "72069c3113ab32ab29e5584db3c6ec55d416895e60715417b5b883a357c3e471"
2287
+
2288
+ [[package]]
2289
+ name = "winapi"
2290
+ version = "0.3.9"
2291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2292
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2293
+ dependencies = [
2294
+ "winapi-i686-pc-windows-gnu",
2295
+ "winapi-x86_64-pc-windows-gnu",
2296
+ ]
2297
+
2298
+ [[package]]
2299
+ name = "winapi-i686-pc-windows-gnu"
2300
+ version = "0.4.0"
2301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2302
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2303
+
2304
+ [[package]]
2305
+ name = "winapi-x86_64-pc-windows-gnu"
2306
+ version = "0.4.0"
2307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2308
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2309
+
2310
+ [[package]]
2311
+ name = "windows"
2312
+ version = "0.57.0"
2313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2314
+ checksum = "12342cb4d8e3b046f3d80effd474a7a02447231330ef77d71daa6fbc40681143"
2315
+ dependencies = [
2316
+ "windows-core 0.57.0",
2317
+ "windows-targets 0.52.6",
2318
+ ]
2319
+
2320
+ [[package]]
2321
+ name = "windows"
2322
+ version = "0.58.0"
2323
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2324
+ checksum = "dd04d41d93c4992d421894c18c8b43496aa748dd4c081bac0dc93eb0489272b6"
2325
+ dependencies = [
2326
+ "windows-core 0.58.0",
2327
+ "windows-targets 0.52.6",
2328
+ ]
2329
+
2330
+ [[package]]
2331
+ name = "windows-core"
2332
+ version = "0.57.0"
2333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2334
+ checksum = "d2ed2439a290666cd67ecce2b0ffaad89c2a56b976b736e6ece670297897832d"
2335
+ dependencies = [
2336
+ "windows-implement 0.57.0",
2337
+ "windows-interface 0.57.0",
2338
+ "windows-result 0.1.2",
2339
+ "windows-targets 0.52.6",
2340
+ ]
2341
+
2342
+ [[package]]
2343
+ name = "windows-core"
2344
+ version = "0.58.0"
2345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2346
+ checksum = "6ba6d44ec8c2591c134257ce647b7ea6b20335bf6379a27dac5f1641fcf59f99"
2347
+ dependencies = [
2348
+ "windows-implement 0.58.0",
2349
+ "windows-interface 0.58.0",
2350
+ "windows-result 0.2.0",
2351
+ "windows-strings 0.1.0",
2352
+ "windows-targets 0.52.6",
2353
+ ]
2354
+
2355
+ [[package]]
2356
+ name = "windows-core"
2357
+ version = "0.62.2"
2358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2359
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
2360
+ dependencies = [
2361
+ "windows-implement 0.60.2",
2362
+ "windows-interface 0.59.3",
2363
+ "windows-link",
2364
+ "windows-result 0.4.1",
2365
+ "windows-strings 0.5.1",
2366
+ ]
2367
+
2368
+ [[package]]
2369
+ name = "windows-implement"
2370
+ version = "0.57.0"
2371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2372
+ checksum = "9107ddc059d5b6fbfbffdfa7a7fe3e22a226def0b2608f72e9d552763d3e1ad7"
2373
+ dependencies = [
2374
+ "proc-macro2",
2375
+ "quote",
2376
+ "syn",
2377
+ ]
2378
+
2379
+ [[package]]
2380
+ name = "windows-implement"
2381
+ version = "0.58.0"
2382
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2383
+ checksum = "2bbd5b46c938e506ecbce286b6628a02171d56153ba733b6c741fc627ec9579b"
2384
+ dependencies = [
2385
+ "proc-macro2",
2386
+ "quote",
2387
+ "syn",
2388
+ ]
2389
+
2390
+ [[package]]
2391
+ name = "windows-implement"
2392
+ version = "0.60.2"
2393
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2394
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
2395
+ dependencies = [
2396
+ "proc-macro2",
2397
+ "quote",
2398
+ "syn",
2399
+ ]
2400
+
2401
+ [[package]]
2402
+ name = "windows-interface"
2403
+ version = "0.57.0"
2404
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2405
+ checksum = "29bee4b38ea3cde66011baa44dba677c432a78593e202392d1e9070cf2a7fca7"
2406
+ dependencies = [
2407
+ "proc-macro2",
2408
+ "quote",
2409
+ "syn",
2410
+ ]
2411
+
2412
+ [[package]]
2413
+ name = "windows-interface"
2414
+ version = "0.58.0"
2415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2416
+ checksum = "053c4c462dc91d3b1504c6fe5a726dd15e216ba718e84a0e46a88fbe5ded3515"
2417
+ dependencies = [
2418
+ "proc-macro2",
2419
+ "quote",
2420
+ "syn",
2421
+ ]
2422
+
2423
+ [[package]]
2424
+ name = "windows-interface"
2425
+ version = "0.59.3"
2426
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2427
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
2428
+ dependencies = [
2429
+ "proc-macro2",
2430
+ "quote",
2431
+ "syn",
2432
+ ]
2433
+
2434
+ [[package]]
2435
+ name = "windows-link"
2436
+ version = "0.2.1"
2437
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2438
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
2439
+
2440
+ [[package]]
2441
+ name = "windows-result"
2442
+ version = "0.1.2"
2443
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2444
+ checksum = "5e383302e8ec8515204254685643de10811af0ed97ea37210dc26fb0032647f8"
2445
+ dependencies = [
2446
+ "windows-targets 0.52.6",
2447
+ ]
2448
+
2449
+ [[package]]
2450
+ name = "windows-result"
2451
+ version = "0.2.0"
2452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2453
+ checksum = "1d1043d8214f791817bab27572aaa8af63732e11bf84aa21a45a78d6c317ae0e"
2454
+ dependencies = [
2455
+ "windows-targets 0.52.6",
2456
+ ]
2457
+
2458
+ [[package]]
2459
+ name = "windows-result"
2460
+ version = "0.4.1"
2461
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2462
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
2463
+ dependencies = [
2464
+ "windows-link",
2465
+ ]
2466
+
2467
+ [[package]]
2468
+ name = "windows-strings"
2469
+ version = "0.1.0"
2470
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2471
+ checksum = "4cd9b125c486025df0eabcb585e62173c6c9eddcec5d117d3b6e8c30e2ee4d10"
2472
+ dependencies = [
2473
+ "windows-result 0.2.0",
2474
+ "windows-targets 0.52.6",
2475
+ ]
2476
+
2477
+ [[package]]
2478
+ name = "windows-strings"
2479
+ version = "0.5.1"
2480
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2481
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
2482
+ dependencies = [
2483
+ "windows-link",
2484
+ ]
2485
+
2486
+ [[package]]
2487
+ name = "windows-sys"
2488
+ version = "0.52.0"
2489
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2490
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
2491
+ dependencies = [
2492
+ "windows-targets 0.52.6",
2493
+ ]
2494
+
2495
+ [[package]]
2496
+ name = "windows-sys"
2497
+ version = "0.60.2"
2498
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2499
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
2500
+ dependencies = [
2501
+ "windows-targets 0.53.5",
2502
+ ]
2503
+
2504
+ [[package]]
2505
+ name = "windows-sys"
2506
+ version = "0.61.2"
2507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2508
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
2509
+ dependencies = [
2510
+ "windows-link",
2511
+ ]
2512
+
2513
+ [[package]]
2514
+ name = "windows-targets"
2515
+ version = "0.52.6"
2516
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2517
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
2518
+ dependencies = [
2519
+ "windows_aarch64_gnullvm 0.52.6",
2520
+ "windows_aarch64_msvc 0.52.6",
2521
+ "windows_i686_gnu 0.52.6",
2522
+ "windows_i686_gnullvm 0.52.6",
2523
+ "windows_i686_msvc 0.52.6",
2524
+ "windows_x86_64_gnu 0.52.6",
2525
+ "windows_x86_64_gnullvm 0.52.6",
2526
+ "windows_x86_64_msvc 0.52.6",
2527
+ ]
2528
+
2529
+ [[package]]
2530
+ name = "windows-targets"
2531
+ version = "0.53.5"
2532
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2533
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
2534
+ dependencies = [
2535
+ "windows-link",
2536
+ "windows_aarch64_gnullvm 0.53.1",
2537
+ "windows_aarch64_msvc 0.53.1",
2538
+ "windows_i686_gnu 0.53.1",
2539
+ "windows_i686_gnullvm 0.53.1",
2540
+ "windows_i686_msvc 0.53.1",
2541
+ "windows_x86_64_gnu 0.53.1",
2542
+ "windows_x86_64_gnullvm 0.53.1",
2543
+ "windows_x86_64_msvc 0.53.1",
2544
+ ]
2545
+
2546
+ [[package]]
2547
+ name = "windows_aarch64_gnullvm"
2548
+ version = "0.52.6"
2549
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2550
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
2551
+
2552
+ [[package]]
2553
+ name = "windows_aarch64_gnullvm"
2554
+ version = "0.53.1"
2555
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2556
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
2557
+
2558
+ [[package]]
2559
+ name = "windows_aarch64_msvc"
2560
+ version = "0.52.6"
2561
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2562
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
2563
+
2564
+ [[package]]
2565
+ name = "windows_aarch64_msvc"
2566
+ version = "0.53.1"
2567
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2568
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
2569
+
2570
+ [[package]]
2571
+ name = "windows_i686_gnu"
2572
+ version = "0.52.6"
2573
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2574
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
2575
+
2576
+ [[package]]
2577
+ name = "windows_i686_gnu"
2578
+ version = "0.53.1"
2579
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2580
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
2581
+
2582
+ [[package]]
2583
+ name = "windows_i686_gnullvm"
2584
+ version = "0.52.6"
2585
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2586
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
2587
+
2588
+ [[package]]
2589
+ name = "windows_i686_gnullvm"
2590
+ version = "0.53.1"
2591
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2592
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
2593
+
2594
+ [[package]]
2595
+ name = "windows_i686_msvc"
2596
+ version = "0.52.6"
2597
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2598
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
2599
+
2600
+ [[package]]
2601
+ name = "windows_i686_msvc"
2602
+ version = "0.53.1"
2603
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2604
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
2605
+
2606
+ [[package]]
2607
+ name = "windows_x86_64_gnu"
2608
+ version = "0.52.6"
2609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2610
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
2611
+
2612
+ [[package]]
2613
+ name = "windows_x86_64_gnu"
2614
+ version = "0.53.1"
2615
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2616
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
2617
+
2618
+ [[package]]
2619
+ name = "windows_x86_64_gnullvm"
2620
+ version = "0.52.6"
2621
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2622
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
2623
+
2624
+ [[package]]
2625
+ name = "windows_x86_64_gnullvm"
2626
+ version = "0.53.1"
2627
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2628
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
2629
+
2630
+ [[package]]
2631
+ name = "windows_x86_64_msvc"
2632
+ version = "0.52.6"
2633
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2634
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
2635
+
2636
+ [[package]]
2637
+ name = "windows_x86_64_msvc"
2638
+ version = "0.53.1"
2639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2640
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
2641
+
2642
+ [[package]]
2643
+ name = "winnow"
2644
+ version = "0.7.14"
2645
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2646
+ checksum = "5a5364e9d77fcdeeaa6062ced926ee3381faa2ee02d3eb83a5c27a8825540829"
2647
+ dependencies = [
2648
+ "memchr",
2649
+ ]
2650
+
2651
+ [[package]]
2652
+ name = "wit-bindgen"
2653
+ version = "0.51.0"
2654
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2655
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
2656
+ dependencies = [
2657
+ "wit-bindgen-rust-macro",
2658
+ ]
2659
+
2660
+ [[package]]
2661
+ name = "wit-bindgen-core"
2662
+ version = "0.51.0"
2663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2664
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
2665
+ dependencies = [
2666
+ "anyhow",
2667
+ "heck",
2668
+ "wit-parser",
2669
+ ]
2670
+
2671
+ [[package]]
2672
+ name = "wit-bindgen-rust"
2673
+ version = "0.51.0"
2674
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2675
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
2676
+ dependencies = [
2677
+ "anyhow",
2678
+ "heck",
2679
+ "indexmap",
2680
+ "prettyplease",
2681
+ "syn",
2682
+ "wasm-metadata",
2683
+ "wit-bindgen-core",
2684
+ "wit-component",
2685
+ ]
2686
+
2687
+ [[package]]
2688
+ name = "wit-bindgen-rust-macro"
2689
+ version = "0.51.0"
2690
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2691
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
2692
+ dependencies = [
2693
+ "anyhow",
2694
+ "prettyplease",
2695
+ "proc-macro2",
2696
+ "quote",
2697
+ "syn",
2698
+ "wit-bindgen-core",
2699
+ "wit-bindgen-rust",
2700
+ ]
2701
+
2702
+ [[package]]
2703
+ name = "wit-component"
2704
+ version = "0.244.0"
2705
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2706
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
2707
+ dependencies = [
2708
+ "anyhow",
2709
+ "bitflags",
2710
+ "indexmap",
2711
+ "log",
2712
+ "serde",
2713
+ "serde_derive",
2714
+ "serde_json",
2715
+ "wasm-encoder",
2716
+ "wasm-metadata",
2717
+ "wasmparser",
2718
+ "wit-parser",
2719
+ ]
2720
+
2721
+ [[package]]
2722
+ name = "wit-parser"
2723
+ version = "0.244.0"
2724
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2725
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
2726
+ dependencies = [
2727
+ "anyhow",
2728
+ "id-arena",
2729
+ "indexmap",
2730
+ "log",
2731
+ "semver",
2732
+ "serde",
2733
+ "serde_derive",
2734
+ "serde_json",
2735
+ "unicode-xid",
2736
+ "wasmparser",
2737
+ ]
2738
+
2739
+ [[package]]
2740
+ name = "writeable"
2741
+ version = "0.6.2"
2742
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2743
+ checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
2744
+
2745
+ [[package]]
2746
+ name = "yoke"
2747
+ version = "0.8.1"
2748
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2749
+ checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
2750
+ dependencies = [
2751
+ "stable_deref_trait",
2752
+ "yoke-derive",
2753
+ "zerofrom",
2754
+ ]
2755
+
2756
+ [[package]]
2757
+ name = "yoke-derive"
2758
+ version = "0.8.1"
2759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2760
+ checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
2761
+ dependencies = [
2762
+ "proc-macro2",
2763
+ "quote",
2764
+ "syn",
2765
+ "synstructure",
2766
+ ]
2767
+
2768
+ [[package]]
2769
+ name = "zerocopy"
2770
+ version = "0.8.39"
2771
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2772
+ checksum = "db6d35d663eadb6c932438e763b262fe1a70987f9ae936e60158176d710cae4a"
2773
+ dependencies = [
2774
+ "zerocopy-derive",
2775
+ ]
2776
+
2777
+ [[package]]
2778
+ name = "zerocopy-derive"
2779
+ version = "0.8.39"
2780
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2781
+ checksum = "4122cd3169e94605190e77839c9a40d40ed048d305bfdc146e7df40ab0f3e517"
2782
+ dependencies = [
2783
+ "proc-macro2",
2784
+ "quote",
2785
+ "syn",
2786
+ ]
2787
+
2788
+ [[package]]
2789
+ name = "zerofrom"
2790
+ version = "0.1.6"
2791
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2792
+ checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
2793
+ dependencies = [
2794
+ "zerofrom-derive",
2795
+ ]
2796
+
2797
+ [[package]]
2798
+ name = "zerofrom-derive"
2799
+ version = "0.1.6"
2800
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2801
+ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
2802
+ dependencies = [
2803
+ "proc-macro2",
2804
+ "quote",
2805
+ "syn",
2806
+ "synstructure",
2807
+ ]
2808
+
2809
+ [[package]]
2810
+ name = "zeroize"
2811
+ version = "1.8.2"
2812
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2813
+ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
2814
+
2815
+ [[package]]
2816
+ name = "zerotrie"
2817
+ version = "0.2.3"
2818
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2819
+ checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
2820
+ dependencies = [
2821
+ "displaydoc",
2822
+ "yoke",
2823
+ "zerofrom",
2824
+ ]
2825
+
2826
+ [[package]]
2827
+ name = "zerovec"
2828
+ version = "0.11.5"
2829
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2830
+ checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
2831
+ dependencies = [
2832
+ "yoke",
2833
+ "zerofrom",
2834
+ "zerovec-derive",
2835
+ ]
2836
+
2837
+ [[package]]
2838
+ name = "zerovec-derive"
2839
+ version = "0.11.2"
2840
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2841
+ checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
2842
+ dependencies = [
2843
+ "proc-macro2",
2844
+ "quote",
2845
+ "syn",
2846
+ ]
2847
+
2848
+ [[package]]
2849
+ name = "zmij"
2850
+ version = "1.0.21"
2851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2852
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"