microvms 0.1.1__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 (63) hide show
  1. microvms-0.1.1/Cargo.lock +4945 -0
  2. microvms-0.1.1/Cargo.toml +55 -0
  3. microvms-0.1.1/PKG-INFO +61 -0
  4. microvms-0.1.1/README.md +34 -0
  5. microvms-0.1.1/microvms-core/Cargo.toml +129 -0
  6. microvms-0.1.1/microvms-core/README.md +35 -0
  7. microvms-0.1.1/microvms-core/proptest-regressions/cost.txt +7 -0
  8. microvms-0.1.1/microvms-core/src/constants.rs +1268 -0
  9. microvms-0.1.1/microvms-core/src/control/artifact.rs +1045 -0
  10. microvms-0.1.1/microvms-core/src/control/connector.rs +181 -0
  11. microvms-0.1.1/microvms-core/src/control/fake.rs +743 -0
  12. microvms-0.1.1/microvms-core/src/control/image.rs +3462 -0
  13. microvms-0.1.1/microvms-core/src/control/microvm.rs +2009 -0
  14. microvms-0.1.1/microvms-core/src/control/mod.rs +1525 -0
  15. microvms-0.1.1/microvms-core/src/control/ops.rs +2272 -0
  16. microvms-0.1.1/microvms-core/src/control/token.rs +427 -0
  17. microvms-0.1.1/microvms-core/src/control/transport.rs +1509 -0
  18. microvms-0.1.1/microvms-core/src/cost.rs +4127 -0
  19. microvms-0.1.1/microvms-core/src/error.rs +578 -0
  20. microvms-0.1.1/microvms-core/src/hooks.rs +272 -0
  21. microvms-0.1.1/microvms-core/src/lib.rs +85 -0
  22. microvms-0.1.1/microvms-core/src/region.rs +269 -0
  23. microvms-0.1.1/microvms-core/src/sandbox.rs +2371 -0
  24. microvms-0.1.1/microvms-core/src/session/exec.rs +1711 -0
  25. microvms-0.1.1/microvms-core/src/session/files.rs +258 -0
  26. microvms-0.1.1/microvms-core/src/session/http.rs +531 -0
  27. microvms-0.1.1/microvms-core/src/session/mod.rs +1200 -0
  28. microvms-0.1.1/microvms-core/src/session/proxy.rs +1484 -0
  29. microvms-0.1.1/microvms-core/src/session/sse.rs +656 -0
  30. microvms-0.1.1/microvms-core/src/sizing.rs +497 -0
  31. microvms-0.1.1/microvms-core/tests/live_pagination.rs +454 -0
  32. microvms-0.1.1/microvms-core/tests/live_versions.rs +520 -0
  33. microvms-0.1.1/microvms-core/tests/turmoil_client.rs +1449 -0
  34. microvms-0.1.1/microvms-py/Cargo.toml +65 -0
  35. microvms-0.1.1/microvms-py/README.md +34 -0
  36. microvms-0.1.1/microvms-py/examples/typed_usage.py +159 -0
  37. microvms-0.1.1/microvms-py/microvms.pyi +1476 -0
  38. microvms-0.1.1/microvms-py/py.typed +0 -0
  39. microvms-0.1.1/microvms-py/src/cost.rs +1123 -0
  40. microvms-0.1.1/microvms-py/src/errors.rs +226 -0
  41. microvms-0.1.1/microvms-py/src/exec.rs +631 -0
  42. microvms-0.1.1/microvms-py/src/hooks.rs +117 -0
  43. microvms-0.1.1/microvms-py/src/lib.rs +138 -0
  44. microvms-0.1.1/microvms-py/src/region.rs +144 -0
  45. microvms-0.1.1/microvms-py/src/runtime.rs +92 -0
  46. microvms-0.1.1/microvms-py/src/sandbox.rs +780 -0
  47. microvms-0.1.1/microvms-py/src/session.rs +605 -0
  48. microvms-0.1.1/microvms-py/tests/conftest.py +149 -0
  49. microvms-0.1.1/microvms-py/tests/test_cost.py +753 -0
  50. microvms-0.1.1/microvms-py/tests/test_errors.py +283 -0
  51. microvms-0.1.1/microvms-py/tests/test_exec.py +655 -0
  52. microvms-0.1.1/microvms-py/tests/test_region.py +261 -0
  53. microvms-0.1.1/microvms-py/tests/test_session.py +390 -0
  54. microvms-0.1.1/microvms-py/tests/test_smoke.py +520 -0
  55. microvms-0.1.1/microvms-py/tests/test_stubs.py +261 -0
  56. microvms-0.1.1/protocol/Cargo.toml +33 -0
  57. microvms-0.1.1/protocol/README.md +32 -0
  58. microvms-0.1.1/protocol/src/exec.rs +415 -0
  59. microvms-0.1.1/protocol/src/fs.rs +92 -0
  60. microvms-0.1.1/protocol/src/health.rs +152 -0
  61. microvms-0.1.1/protocol/src/hook.rs +263 -0
  62. microvms-0.1.1/protocol/src/lib.rs +66 -0
  63. microvms-0.1.1/pyproject.toml +73 -0
@@ -0,0 +1,4945 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "adler2"
7
+ version = "2.0.1"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
10
+
11
+ [[package]]
12
+ name = "agentd"
13
+ version = "0.1.0"
14
+ dependencies = [
15
+ "axum",
16
+ "base64 0.23.1",
17
+ "bytes",
18
+ "futures-util",
19
+ "http-body-util",
20
+ "hyper",
21
+ "hyper-util",
22
+ "microvms-protocol",
23
+ "nix 0.31.3",
24
+ "pin-project-lite",
25
+ "proptest",
26
+ "schemars",
27
+ "serde",
28
+ "serde_json",
29
+ "subtle",
30
+ "tar",
31
+ "tempfile",
32
+ "tokio",
33
+ "tokio-util",
34
+ "tower",
35
+ "tower-http 0.7.0",
36
+ "tracing",
37
+ "tracing-subscriber",
38
+ "turmoil",
39
+ ]
40
+
41
+ [[package]]
42
+ name = "agentd-model"
43
+ version = "0.1.0"
44
+ dependencies = [
45
+ "stateright",
46
+ ]
47
+
48
+ [[package]]
49
+ name = "ahash"
50
+ version = "0.7.8"
51
+ source = "registry+https://github.com/rust-lang/crates.io-index"
52
+ checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9"
53
+ dependencies = [
54
+ "getrandom 0.2.17",
55
+ "once_cell",
56
+ "version_check",
57
+ ]
58
+
59
+ [[package]]
60
+ name = "ahash"
61
+ version = "0.8.12"
62
+ source = "registry+https://github.com/rust-lang/crates.io-index"
63
+ checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
64
+ dependencies = [
65
+ "cfg-if",
66
+ "getrandom 0.3.4",
67
+ "once_cell",
68
+ "version_check",
69
+ "zerocopy",
70
+ ]
71
+
72
+ [[package]]
73
+ name = "aho-corasick"
74
+ version = "1.1.5"
75
+ source = "registry+https://github.com/rust-lang/crates.io-index"
76
+ checksum = "c982642fa9e8606056828ee9a8505737230110bb1099153c79efe865c59d12ba"
77
+ dependencies = [
78
+ "memchr",
79
+ ]
80
+
81
+ [[package]]
82
+ name = "allocator-api2"
83
+ version = "0.2.21"
84
+ source = "registry+https://github.com/rust-lang/crates.io-index"
85
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
86
+
87
+ [[package]]
88
+ name = "anstream"
89
+ version = "1.0.0"
90
+ source = "registry+https://github.com/rust-lang/crates.io-index"
91
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
92
+ dependencies = [
93
+ "anstyle",
94
+ "anstyle-parse",
95
+ "anstyle-query",
96
+ "anstyle-wincon",
97
+ "colorchoice",
98
+ "is_terminal_polyfill",
99
+ "utf8parse",
100
+ ]
101
+
102
+ [[package]]
103
+ name = "anstyle"
104
+ version = "1.0.14"
105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
106
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
107
+
108
+ [[package]]
109
+ name = "anstyle-parse"
110
+ version = "1.0.0"
111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
112
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
113
+ dependencies = [
114
+ "utf8parse",
115
+ ]
116
+
117
+ [[package]]
118
+ name = "anstyle-query"
119
+ version = "1.1.5"
120
+ source = "registry+https://github.com/rust-lang/crates.io-index"
121
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
122
+ dependencies = [
123
+ "windows-sys 0.61.2",
124
+ ]
125
+
126
+ [[package]]
127
+ name = "anstyle-wincon"
128
+ version = "3.0.11"
129
+ source = "registry+https://github.com/rust-lang/crates.io-index"
130
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
131
+ dependencies = [
132
+ "anstyle",
133
+ "once_cell_polyfill",
134
+ "windows-sys 0.61.2",
135
+ ]
136
+
137
+ [[package]]
138
+ name = "anyhow"
139
+ version = "1.0.104"
140
+ source = "registry+https://github.com/rust-lang/crates.io-index"
141
+ checksum = "330a5ed07fa54e4702c9d6c4174f74427fc0ef6e214bbd677ae50a5099946470"
142
+
143
+ [[package]]
144
+ name = "approx"
145
+ version = "0.5.1"
146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
147
+ checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6"
148
+ dependencies = [
149
+ "num-traits",
150
+ ]
151
+
152
+ [[package]]
153
+ name = "arc-swap"
154
+ version = "1.9.2"
155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
156
+ checksum = "c049c0be4daef0b145cb3555416b3b8ef5b7888a38aea1a3a155801fe7b0810b"
157
+ dependencies = [
158
+ "rustversion",
159
+ ]
160
+
161
+ [[package]]
162
+ name = "arrayvec"
163
+ version = "0.7.8"
164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
165
+ checksum = "d3fb67a6e08acf24fdeccbac2cb6ac4305825bd1f117462e0e6f2f193345ad56"
166
+
167
+ [[package]]
168
+ name = "ascii"
169
+ version = "1.1.0"
170
+ source = "registry+https://github.com/rust-lang/crates.io-index"
171
+ checksum = "d92bec98840b8f03a5ff5413de5293bfcd8bf96467cf5452609f939ec6f5de16"
172
+
173
+ [[package]]
174
+ name = "atomic"
175
+ version = "0.6.1"
176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
177
+ checksum = "a89cbf775b137e9b968e67227ef7f775587cde3fd31b0d8599dbd0f598a48340"
178
+ dependencies = [
179
+ "bytemuck",
180
+ ]
181
+
182
+ [[package]]
183
+ name = "atomic-waker"
184
+ version = "1.1.2"
185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
186
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
187
+
188
+ [[package]]
189
+ name = "autocfg"
190
+ version = "1.5.1"
191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
192
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
193
+
194
+ [[package]]
195
+ name = "aws-config"
196
+ version = "1.11.0"
197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
198
+ checksum = "a767267da9e2c2e189b2f9df8b5657e850ecf5352644734ba130d4a57095cf1b"
199
+ dependencies = [
200
+ "aws-credential-types",
201
+ "aws-runtime",
202
+ "aws-sdk-sso",
203
+ "aws-sdk-ssooidc",
204
+ "aws-sdk-sts",
205
+ "aws-smithy-async",
206
+ "aws-smithy-http",
207
+ "aws-smithy-json",
208
+ "aws-smithy-runtime",
209
+ "aws-smithy-runtime-api",
210
+ "aws-smithy-schema",
211
+ "aws-smithy-types",
212
+ "aws-types",
213
+ "bytes",
214
+ "fastrand",
215
+ "hex",
216
+ "http 1.5.0",
217
+ "sha1",
218
+ "time",
219
+ "tokio",
220
+ "tracing",
221
+ "url",
222
+ "zeroize",
223
+ ]
224
+
225
+ [[package]]
226
+ name = "aws-credential-types"
227
+ version = "1.3.0"
228
+ source = "registry+https://github.com/rust-lang/crates.io-index"
229
+ checksum = "e93964ffdaf57857f544be3666a5f57570bb699e934700f11b49708f61bb556e"
230
+ dependencies = [
231
+ "aws-smithy-async",
232
+ "aws-smithy-runtime-api",
233
+ "aws-smithy-types",
234
+ "zeroize",
235
+ ]
236
+
237
+ [[package]]
238
+ name = "aws-lc-rs"
239
+ version = "1.18.0"
240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
241
+ checksum = "ce2b2dcc879c3bae0d371e77c99f2238400ef24ec001394befa67b6e543add9e"
242
+ dependencies = [
243
+ "aws-lc-sys",
244
+ "zeroize",
245
+ ]
246
+
247
+ [[package]]
248
+ name = "aws-lc-sys"
249
+ version = "0.44.0"
250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
251
+ checksum = "f09fae7be8bb3174e05c6afdb34199e6dc0c7c04ba9fa237b1967adfbde27483"
252
+ dependencies = [
253
+ "cc",
254
+ "cmake",
255
+ "dunce",
256
+ "fs_extra",
257
+ "pkg-config",
258
+ ]
259
+
260
+ [[package]]
261
+ name = "aws-runtime"
262
+ version = "1.9.1"
263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
264
+ checksum = "c9007227e10b5fed2f3e0a2beff489211e2b5604c400b7a9d5d81ca9d64c24bb"
265
+ dependencies = [
266
+ "aws-credential-types",
267
+ "aws-sigv4",
268
+ "aws-smithy-async",
269
+ "aws-smithy-http",
270
+ "aws-smithy-runtime",
271
+ "aws-smithy-runtime-api",
272
+ "aws-smithy-types",
273
+ "aws-types",
274
+ "bytes",
275
+ "bytes-utils",
276
+ "fastrand",
277
+ "http 1.5.0",
278
+ "http-body 1.1.0",
279
+ "percent-encoding",
280
+ "pin-project-lite",
281
+ "tracing",
282
+ "uuid",
283
+ ]
284
+
285
+ [[package]]
286
+ name = "aws-sdk-sso"
287
+ version = "1.107.0"
288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
289
+ checksum = "769b0abd0f89cfe11da5099986dd493e4f94347ce9a4562cb86ddecfe926b6c0"
290
+ dependencies = [
291
+ "arc-swap",
292
+ "aws-credential-types",
293
+ "aws-runtime",
294
+ "aws-smithy-async",
295
+ "aws-smithy-http",
296
+ "aws-smithy-json",
297
+ "aws-smithy-observability",
298
+ "aws-smithy-runtime",
299
+ "aws-smithy-runtime-api",
300
+ "aws-smithy-schema",
301
+ "aws-smithy-types",
302
+ "aws-types",
303
+ "bytes",
304
+ "fastrand",
305
+ "http 0.2.12",
306
+ "http 1.5.0",
307
+ "regex-lite",
308
+ "tracing",
309
+ ]
310
+
311
+ [[package]]
312
+ name = "aws-sdk-ssooidc"
313
+ version = "1.109.0"
314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
315
+ checksum = "f4075b8a2c8cda4076a3dcc43b9d6dabd93e0c2502abeaaf7e14aaead9bb312b"
316
+ dependencies = [
317
+ "arc-swap",
318
+ "aws-credential-types",
319
+ "aws-runtime",
320
+ "aws-smithy-async",
321
+ "aws-smithy-http",
322
+ "aws-smithy-json",
323
+ "aws-smithy-observability",
324
+ "aws-smithy-runtime",
325
+ "aws-smithy-runtime-api",
326
+ "aws-smithy-schema",
327
+ "aws-smithy-types",
328
+ "aws-types",
329
+ "bytes",
330
+ "fastrand",
331
+ "http 0.2.12",
332
+ "http 1.5.0",
333
+ "regex-lite",
334
+ "tracing",
335
+ ]
336
+
337
+ [[package]]
338
+ name = "aws-sdk-sts"
339
+ version = "1.112.0"
340
+ source = "registry+https://github.com/rust-lang/crates.io-index"
341
+ checksum = "3f582002918346a3e685be1b391c7bea155073088cea6bd4e4b7663df9e43b6c"
342
+ dependencies = [
343
+ "arc-swap",
344
+ "aws-credential-types",
345
+ "aws-runtime",
346
+ "aws-smithy-async",
347
+ "aws-smithy-http",
348
+ "aws-smithy-json",
349
+ "aws-smithy-observability",
350
+ "aws-smithy-query",
351
+ "aws-smithy-runtime",
352
+ "aws-smithy-runtime-api",
353
+ "aws-smithy-schema",
354
+ "aws-smithy-types",
355
+ "aws-smithy-xml",
356
+ "aws-types",
357
+ "fastrand",
358
+ "http 0.2.12",
359
+ "http 1.5.0",
360
+ "regex-lite",
361
+ "tracing",
362
+ ]
363
+
364
+ [[package]]
365
+ name = "aws-sigv4"
366
+ version = "1.5.1"
367
+ source = "registry+https://github.com/rust-lang/crates.io-index"
368
+ checksum = "723c2234ad7511ceef63eab016b7ba6ff7c55590fefb96fa8467af014a07309f"
369
+ dependencies = [
370
+ "aws-credential-types",
371
+ "aws-smithy-http",
372
+ "aws-smithy-runtime-api",
373
+ "aws-smithy-types",
374
+ "bytes",
375
+ "form_urlencoded",
376
+ "hex",
377
+ "hmac",
378
+ "http 0.2.12",
379
+ "http 1.5.0",
380
+ "percent-encoding",
381
+ "sha2 0.11.0",
382
+ "time",
383
+ "tracing",
384
+ ]
385
+
386
+ [[package]]
387
+ name = "aws-smithy-async"
388
+ version = "1.3.0"
389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
390
+ checksum = "f02e407fb3b54891734224b9ffac8a71fdd35f542500fa1af95754a6b2beb316"
391
+ dependencies = [
392
+ "futures-util",
393
+ "pin-project-lite",
394
+ "tokio",
395
+ ]
396
+
397
+ [[package]]
398
+ name = "aws-smithy-http"
399
+ version = "0.64.0"
400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
401
+ checksum = "37843d9add67c3aff5856f409c6dc315d3cdff60f9c0cb5b670dab1e9920306d"
402
+ dependencies = [
403
+ "aws-smithy-runtime-api",
404
+ "aws-smithy-types",
405
+ "bytes",
406
+ "bytes-utils",
407
+ "futures-core",
408
+ "futures-util",
409
+ "http 1.5.0",
410
+ "http-body 1.1.0",
411
+ "http-body-util",
412
+ "percent-encoding",
413
+ "pin-project-lite",
414
+ "pin-utils",
415
+ "tracing",
416
+ ]
417
+
418
+ [[package]]
419
+ name = "aws-smithy-http-client"
420
+ version = "1.4.0"
421
+ source = "registry+https://github.com/rust-lang/crates.io-index"
422
+ checksum = "ebfd138fac0337cee7516c352757ea73b9f2266e57d0bcb5bc70e9547e45aef1"
423
+ dependencies = [
424
+ "aws-smithy-async",
425
+ "aws-smithy-runtime-api",
426
+ "aws-smithy-types",
427
+ "h2",
428
+ "http 1.5.0",
429
+ "hyper",
430
+ "hyper-rustls",
431
+ "hyper-util",
432
+ "pin-project-lite",
433
+ "rustls",
434
+ "rustls-native-certs",
435
+ "rustls-pki-types",
436
+ "tokio",
437
+ "tokio-rustls",
438
+ "tower",
439
+ "tracing",
440
+ ]
441
+
442
+ [[package]]
443
+ name = "aws-smithy-json"
444
+ version = "0.63.0"
445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
446
+ checksum = "3dc65a121adb4b33729919fcfa14fa36fb33c1555a8f06bb0e2188dbfdc1d9ef"
447
+ dependencies = [
448
+ "aws-smithy-runtime-api",
449
+ "aws-smithy-schema",
450
+ "aws-smithy-types",
451
+ ]
452
+
453
+ [[package]]
454
+ name = "aws-smithy-observability"
455
+ version = "0.3.0"
456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
457
+ checksum = "8e86338c869539a581bf161247762a6e87f92c5c075060057b5ed6d06632ed0c"
458
+ dependencies = [
459
+ "aws-smithy-runtime-api",
460
+ ]
461
+
462
+ [[package]]
463
+ name = "aws-smithy-query"
464
+ version = "0.62.0"
465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
466
+ checksum = "512346c7212ab7436df2d77a16d976a468ae44a418835511d2a69269810aaf62"
467
+ dependencies = [
468
+ "aws-smithy-runtime-api",
469
+ "aws-smithy-schema",
470
+ "aws-smithy-types",
471
+ "aws-smithy-xml",
472
+ "urlencoding",
473
+ ]
474
+
475
+ [[package]]
476
+ name = "aws-smithy-runtime"
477
+ version = "1.14.0"
478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
479
+ checksum = "b82e438d30e02a825d363bd639a9efaed68a8089d86101054b0081e7e0d3e606"
480
+ dependencies = [
481
+ "aws-smithy-async",
482
+ "aws-smithy-http",
483
+ "aws-smithy-http-client",
484
+ "aws-smithy-observability",
485
+ "aws-smithy-runtime-api",
486
+ "aws-smithy-schema",
487
+ "aws-smithy-types",
488
+ "bytes",
489
+ "fastrand",
490
+ "http 0.2.12",
491
+ "http 1.5.0",
492
+ "http-body 0.4.6",
493
+ "http-body 1.1.0",
494
+ "http-body-util",
495
+ "pin-project-lite",
496
+ "pin-utils",
497
+ "tokio",
498
+ "tracing",
499
+ ]
500
+
501
+ [[package]]
502
+ name = "aws-smithy-runtime-api"
503
+ version = "1.15.0"
504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
505
+ checksum = "954c563ce84507722d2679f07a35d21b9c6466b3872d513020d0281fc8112ac9"
506
+ dependencies = [
507
+ "aws-smithy-async",
508
+ "aws-smithy-runtime-api-macros",
509
+ "aws-smithy-types",
510
+ "bytes",
511
+ "http 0.2.12",
512
+ "http 1.5.0",
513
+ "pin-project-lite",
514
+ "tokio",
515
+ "tracing",
516
+ "zeroize",
517
+ ]
518
+
519
+ [[package]]
520
+ name = "aws-smithy-runtime-api-macros"
521
+ version = "1.1.0"
522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
523
+ checksum = "221eaa237ddf1ca79b60d1372aad77e47f9c0ea5b3ce5099da8c61d027dc77b3"
524
+ dependencies = [
525
+ "proc-macro2",
526
+ "quote",
527
+ "syn 2.0.119",
528
+ ]
529
+
530
+ [[package]]
531
+ name = "aws-smithy-schema"
532
+ version = "0.2.0"
533
+ source = "registry+https://github.com/rust-lang/crates.io-index"
534
+ checksum = "7d56e0a4e53127a632224e43633b0fe045fa9e1e3cfc68b9830f1115e103f910"
535
+ dependencies = [
536
+ "aws-smithy-runtime-api",
537
+ "aws-smithy-types",
538
+ "http 1.5.0",
539
+ ]
540
+
541
+ [[package]]
542
+ name = "aws-smithy-types"
543
+ version = "1.6.2"
544
+ source = "registry+https://github.com/rust-lang/crates.io-index"
545
+ checksum = "fce83ce9abbb198d25bc7131e468d0f9fe1257125e58c39f3f9fc9f5098c9647"
546
+ dependencies = [
547
+ "base64-simd",
548
+ "bytes",
549
+ "bytes-utils",
550
+ "http 0.2.12",
551
+ "http 1.5.0",
552
+ "http-body 0.4.6",
553
+ "http-body 1.1.0",
554
+ "http-body-util",
555
+ "itoa",
556
+ "num-integer",
557
+ "pin-project-lite",
558
+ "pin-utils",
559
+ "ryu",
560
+ "serde",
561
+ "time",
562
+ ]
563
+
564
+ [[package]]
565
+ name = "aws-smithy-xml"
566
+ version = "0.62.0"
567
+ source = "registry+https://github.com/rust-lang/crates.io-index"
568
+ checksum = "ce84f71c72fee2cbbadde6e7d082f5fb466e3a84733855295fa7aafd1b31b7d8"
569
+ dependencies = [
570
+ "aws-smithy-runtime-api",
571
+ "aws-smithy-schema",
572
+ "aws-smithy-types",
573
+ "xmlparser",
574
+ ]
575
+
576
+ [[package]]
577
+ name = "aws-types"
578
+ version = "1.5.0"
579
+ source = "registry+https://github.com/rust-lang/crates.io-index"
580
+ checksum = "eec1cd5469f328c782dc3e33d4153cf118a54e33cbb3356d60d16f89883e1f94"
581
+ dependencies = [
582
+ "aws-credential-types",
583
+ "aws-smithy-async",
584
+ "aws-smithy-runtime-api",
585
+ "aws-smithy-schema",
586
+ "aws-smithy-types",
587
+ "rustc_version",
588
+ "tracing",
589
+ ]
590
+
591
+ [[package]]
592
+ name = "axum"
593
+ version = "0.8.9"
594
+ source = "registry+https://github.com/rust-lang/crates.io-index"
595
+ checksum = "31b698c5f9a010f6573133b09e0de5408834d0c82f8d7475a89fc1867a71cd90"
596
+ dependencies = [
597
+ "axum-core",
598
+ "bytes",
599
+ "form_urlencoded",
600
+ "futures-util",
601
+ "http 1.5.0",
602
+ "http-body 1.1.0",
603
+ "http-body-util",
604
+ "hyper",
605
+ "hyper-util",
606
+ "itoa",
607
+ "matchit",
608
+ "memchr",
609
+ "mime",
610
+ "percent-encoding",
611
+ "pin-project-lite",
612
+ "serde_core",
613
+ "serde_json",
614
+ "serde_path_to_error",
615
+ "serde_urlencoded",
616
+ "sync_wrapper",
617
+ "tokio",
618
+ "tower",
619
+ "tower-layer",
620
+ "tower-service",
621
+ "tracing",
622
+ ]
623
+
624
+ [[package]]
625
+ name = "axum-core"
626
+ version = "0.5.6"
627
+ source = "registry+https://github.com/rust-lang/crates.io-index"
628
+ checksum = "08c78f31d7b1291f7ee735c1c6780ccde7785daae9a9206026862dab7d8792d1"
629
+ dependencies = [
630
+ "bytes",
631
+ "futures-core",
632
+ "http 1.5.0",
633
+ "http-body 1.1.0",
634
+ "http-body-util",
635
+ "mime",
636
+ "pin-project-lite",
637
+ "sync_wrapper",
638
+ "tower-layer",
639
+ "tower-service",
640
+ "tracing",
641
+ ]
642
+
643
+ [[package]]
644
+ name = "backon"
645
+ version = "1.6.0"
646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
647
+ checksum = "cffb0e931875b666fc4fcb20fee52e9bbd1ef836fd9e9e04ec21555f9f85f7ef"
648
+ dependencies = [
649
+ "fastrand",
650
+ "gloo-timers",
651
+ "tokio",
652
+ ]
653
+
654
+ [[package]]
655
+ name = "base64"
656
+ version = "0.22.1"
657
+ source = "registry+https://github.com/rust-lang/crates.io-index"
658
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
659
+
660
+ [[package]]
661
+ name = "base64"
662
+ version = "0.23.1"
663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
664
+ checksum = "ac07cdecf99051d9a5238b80f35af32cdeba5b336e55d957b318b50137e18da5"
665
+
666
+ [[package]]
667
+ name = "base64-simd"
668
+ version = "0.8.0"
669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
670
+ checksum = "339abbe78e73178762e23bea9dfd08e697eb3f3301cd4be981c0f78ba5859195"
671
+ dependencies = [
672
+ "outref",
673
+ "vsimd",
674
+ ]
675
+
676
+ [[package]]
677
+ name = "bit-set"
678
+ version = "0.5.3"
679
+ source = "registry+https://github.com/rust-lang/crates.io-index"
680
+ checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1"
681
+ dependencies = [
682
+ "bit-vec 0.6.3",
683
+ ]
684
+
685
+ [[package]]
686
+ name = "bit-set"
687
+ version = "0.8.0"
688
+ source = "registry+https://github.com/rust-lang/crates.io-index"
689
+ checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
690
+ dependencies = [
691
+ "bit-vec 0.8.0",
692
+ ]
693
+
694
+ [[package]]
695
+ name = "bit-vec"
696
+ version = "0.6.3"
697
+ source = "registry+https://github.com/rust-lang/crates.io-index"
698
+ checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb"
699
+
700
+ [[package]]
701
+ name = "bit-vec"
702
+ version = "0.8.0"
703
+ source = "registry+https://github.com/rust-lang/crates.io-index"
704
+ checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
705
+
706
+ [[package]]
707
+ name = "bitflags"
708
+ version = "1.3.2"
709
+ source = "registry+https://github.com/rust-lang/crates.io-index"
710
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
711
+
712
+ [[package]]
713
+ name = "bitflags"
714
+ version = "2.13.1"
715
+ source = "registry+https://github.com/rust-lang/crates.io-index"
716
+ checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
717
+
718
+ [[package]]
719
+ name = "bitvec"
720
+ version = "1.1.1"
721
+ source = "registry+https://github.com/rust-lang/crates.io-index"
722
+ checksum = "ddcec3d12c579d40898fe0a9a358a803c23e9c52ca3c425707f81c9436211837"
723
+ dependencies = [
724
+ "funty",
725
+ "radium",
726
+ "tap",
727
+ "wyz",
728
+ ]
729
+
730
+ [[package]]
731
+ name = "block-buffer"
732
+ version = "0.10.4"
733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
734
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
735
+ dependencies = [
736
+ "generic-array",
737
+ ]
738
+
739
+ [[package]]
740
+ name = "block-buffer"
741
+ version = "0.12.1"
742
+ source = "registry+https://github.com/rust-lang/crates.io-index"
743
+ checksum = "d2f6c7dbe95a6ed67ad9f18e57daf93a2f034c524b99fd2b76d18fdfeb6660aa"
744
+ dependencies = [
745
+ "hybrid-array",
746
+ ]
747
+
748
+ [[package]]
749
+ name = "borsh"
750
+ version = "1.8.0"
751
+ source = "registry+https://github.com/rust-lang/crates.io-index"
752
+ checksum = "a88b7ea17d208c4193f2c1e6de3c35fe71f98c96982d5ced308bdcc749ff6e1f"
753
+ dependencies = [
754
+ "borsh-derive",
755
+ "bytes",
756
+ "cfg_aliases",
757
+ ]
758
+
759
+ [[package]]
760
+ name = "borsh-derive"
761
+ version = "1.8.0"
762
+ source = "registry+https://github.com/rust-lang/crates.io-index"
763
+ checksum = "d8f347189c62a579b8cd5f80714efa178f52e461dc2e6d701d264f5ff22e566c"
764
+ dependencies = [
765
+ "once_cell",
766
+ "proc-macro-crate",
767
+ "proc-macro2",
768
+ "quote",
769
+ "syn 2.0.119",
770
+ ]
771
+
772
+ [[package]]
773
+ name = "bumpalo"
774
+ version = "3.20.3"
775
+ source = "registry+https://github.com/rust-lang/crates.io-index"
776
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
777
+
778
+ [[package]]
779
+ name = "by_address"
780
+ version = "1.2.1"
781
+ source = "registry+https://github.com/rust-lang/crates.io-index"
782
+ checksum = "64fa3c856b712db6612c019f14756e64e4bcea13337a6b33b696333a9eaa2d06"
783
+
784
+ [[package]]
785
+ name = "bytecheck"
786
+ version = "0.6.12"
787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
788
+ checksum = "23cdc57ce23ac53c931e88a43d06d070a6fd142f2617be5855eb75efc9beb1c2"
789
+ dependencies = [
790
+ "bytecheck_derive",
791
+ "ptr_meta",
792
+ "simdutf8",
793
+ ]
794
+
795
+ [[package]]
796
+ name = "bytecheck_derive"
797
+ version = "0.6.12"
798
+ source = "registry+https://github.com/rust-lang/crates.io-index"
799
+ checksum = "3db406d29fbcd95542e92559bed4d8ad92636d1ca8b3b72ede10b4bcc010e659"
800
+ dependencies = [
801
+ "proc-macro2",
802
+ "quote",
803
+ "syn 1.0.109",
804
+ ]
805
+
806
+ [[package]]
807
+ name = "bytemuck"
808
+ version = "1.25.2"
809
+ source = "registry+https://github.com/rust-lang/crates.io-index"
810
+ checksum = "95832e849adfb21180ccb6826a99da14e5d266ae5c2e668e1602cf234f153797"
811
+
812
+ [[package]]
813
+ name = "bytes"
814
+ version = "1.12.1"
815
+ source = "registry+https://github.com/rust-lang/crates.io-index"
816
+ checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04"
817
+
818
+ [[package]]
819
+ name = "bytes-utils"
820
+ version = "0.1.4"
821
+ source = "registry+https://github.com/rust-lang/crates.io-index"
822
+ checksum = "7dafe3a8757b027e2be6e4e5601ed563c55989fcf1546e933c66c8eb3a058d35"
823
+ dependencies = [
824
+ "bytes",
825
+ "either",
826
+ ]
827
+
828
+ [[package]]
829
+ name = "camino"
830
+ version = "1.2.5"
831
+ source = "registry+https://github.com/rust-lang/crates.io-index"
832
+ checksum = "bb1307f12aa967b5a58416e87b3653360e0fd614a016b6e970db08fecbb1b80d"
833
+ dependencies = [
834
+ "serde_core",
835
+ ]
836
+
837
+ [[package]]
838
+ name = "cargo-platform"
839
+ version = "0.3.3"
840
+ source = "registry+https://github.com/rust-lang/crates.io-index"
841
+ checksum = "dd0061da739915fae12ea00e16397555ed4371a6bb285431aab930f61b0aa4ba"
842
+ dependencies = [
843
+ "serde",
844
+ "serde_core",
845
+ ]
846
+
847
+ [[package]]
848
+ name = "cargo_metadata"
849
+ version = "0.23.1"
850
+ source = "registry+https://github.com/rust-lang/crates.io-index"
851
+ checksum = "ef987d17b0a113becdd19d3d0022d04d7ef41f9efe4f3fb63ac44ba61df3ade9"
852
+ dependencies = [
853
+ "camino",
854
+ "cargo-platform",
855
+ "semver",
856
+ "serde",
857
+ "serde_json",
858
+ "thiserror 2.0.20",
859
+ ]
860
+
861
+ [[package]]
862
+ name = "castaway"
863
+ version = "0.2.4"
864
+ source = "registry+https://github.com/rust-lang/crates.io-index"
865
+ checksum = "dec551ab6e7578819132c713a93c022a05d60159dc86e7a7050223577484c55a"
866
+ dependencies = [
867
+ "rustversion",
868
+ ]
869
+
870
+ [[package]]
871
+ name = "cc"
872
+ version = "1.4.2"
873
+ source = "registry+https://github.com/rust-lang/crates.io-index"
874
+ checksum = "5d262e149917187838d5b42777c8253bcb64500067342904e7d429499a6f277e"
875
+ dependencies = [
876
+ "find-msvc-tools",
877
+ "jobserver",
878
+ "libc",
879
+ "shlex",
880
+ ]
881
+
882
+ [[package]]
883
+ name = "cfg-if"
884
+ version = "1.0.4"
885
+ source = "registry+https://github.com/rust-lang/crates.io-index"
886
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
887
+
888
+ [[package]]
889
+ name = "cfg_aliases"
890
+ version = "0.2.2"
891
+ source = "registry+https://github.com/rust-lang/crates.io-index"
892
+ checksum = "f079e83a288787bcd14a6aea84cee5c87a67c5a3e660c30f557a3d24761b3527"
893
+
894
+ [[package]]
895
+ name = "chacha20"
896
+ version = "0.10.1"
897
+ source = "registry+https://github.com/rust-lang/crates.io-index"
898
+ checksum = "d524456ba66e72eb8b115ff89e01e497f8e6d11d78b70b1aa13c0fbd97540a81"
899
+ dependencies = [
900
+ "cfg-if",
901
+ "cpufeatures 0.3.0",
902
+ "rand_core 0.10.1",
903
+ ]
904
+
905
+ [[package]]
906
+ name = "choice"
907
+ version = "0.0.2"
908
+ source = "registry+https://github.com/rust-lang/crates.io-index"
909
+ checksum = "a3b71fc821deaf602a933ada5c845d088156d0cdf2ebf43ede390afe93466553"
910
+
911
+ [[package]]
912
+ name = "chunked_transfer"
913
+ version = "1.5.0"
914
+ source = "registry+https://github.com/rust-lang/crates.io-index"
915
+ checksum = "6e4de3bc4ea267985becf712dc6d9eed8b04c953b3fcfb339ebc87acd9804901"
916
+
917
+ [[package]]
918
+ name = "clap"
919
+ version = "4.6.6"
920
+ source = "registry+https://github.com/rust-lang/crates.io-index"
921
+ checksum = "473c7e07f409a8d772161724aa8db6a765a2532a70f9667eeb7b49d3d02fbdca"
922
+ dependencies = [
923
+ "clap_builder",
924
+ "clap_derive",
925
+ ]
926
+
927
+ [[package]]
928
+ name = "clap_builder"
929
+ version = "4.6.6"
930
+ source = "registry+https://github.com/rust-lang/crates.io-index"
931
+ checksum = "7b48fea5a88e9ae728a2dcbedbfc0e730f7d60da42e1cb049a83c9fb8b789889"
932
+ dependencies = [
933
+ "anstream",
934
+ "anstyle",
935
+ "clap_lex",
936
+ "strsim",
937
+ ]
938
+
939
+ [[package]]
940
+ name = "clap_derive"
941
+ version = "4.6.4"
942
+ source = "registry+https://github.com/rust-lang/crates.io-index"
943
+ checksum = "d012d2b9d65aca7f18f4d9878a045bc17899bba951561ba5ec3c2ba1eed9a061"
944
+ dependencies = [
945
+ "heck",
946
+ "proc-macro2",
947
+ "quote",
948
+ "syn 3.0.3",
949
+ ]
950
+
951
+ [[package]]
952
+ name = "clap_lex"
953
+ version = "1.1.0"
954
+ source = "registry+https://github.com/rust-lang/crates.io-index"
955
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
956
+
957
+ [[package]]
958
+ name = "cmake"
959
+ version = "0.1.58"
960
+ source = "registry+https://github.com/rust-lang/crates.io-index"
961
+ checksum = "c0f78a02292a74a88ac736019ab962ece0bc380e3f977bf72e376c5d78ff0678"
962
+ dependencies = [
963
+ "cc",
964
+ ]
965
+
966
+ [[package]]
967
+ name = "cmov"
968
+ version = "0.5.4"
969
+ source = "registry+https://github.com/rust-lang/crates.io-index"
970
+ checksum = "0c9ea0ac24bc397ab3c98583a3c9ba74fa56b09a4449bbe172b9b1ddb016027a"
971
+
972
+ [[package]]
973
+ name = "colorchoice"
974
+ version = "1.0.5"
975
+ source = "registry+https://github.com/rust-lang/crates.io-index"
976
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
977
+
978
+ [[package]]
979
+ name = "combine"
980
+ version = "4.6.7"
981
+ source = "registry+https://github.com/rust-lang/crates.io-index"
982
+ checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
983
+ dependencies = [
984
+ "bytes",
985
+ "memchr",
986
+ ]
987
+
988
+ [[package]]
989
+ name = "compact_str"
990
+ version = "0.9.1"
991
+ source = "registry+https://github.com/rust-lang/crates.io-index"
992
+ checksum = "9dfdd1c2274d9aa354115b09dc9a901d6c5576818cdf70d14cae2bdb47df00ab"
993
+ dependencies = [
994
+ "castaway",
995
+ "cfg-if",
996
+ "itoa",
997
+ "rustversion",
998
+ "ryu",
999
+ "static_assertions",
1000
+ ]
1001
+
1002
+ [[package]]
1003
+ name = "const-oid"
1004
+ version = "0.10.2"
1005
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1006
+ checksum = "a6ef517f0926dd24a1582492c791b6a4818a4d94e789a334894aa15b0d12f55c"
1007
+
1008
+ [[package]]
1009
+ name = "convert_case"
1010
+ version = "0.10.0"
1011
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1012
+ checksum = "633458d4ef8c78b72454de2d54fd6ab2e60f9e02be22f3c6104cdc8a4e0fceb9"
1013
+ dependencies = [
1014
+ "unicode-segmentation",
1015
+ ]
1016
+
1017
+ [[package]]
1018
+ name = "convert_case"
1019
+ version = "0.11.0"
1020
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1021
+ checksum = "affbf0190ed2caf063e3def54ff444b449371d55c58e513a95ab98eca50adb49"
1022
+ dependencies = [
1023
+ "unicode-segmentation",
1024
+ ]
1025
+
1026
+ [[package]]
1027
+ name = "core-foundation"
1028
+ version = "0.10.1"
1029
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1030
+ checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
1031
+ dependencies = [
1032
+ "core-foundation-sys",
1033
+ "libc",
1034
+ ]
1035
+
1036
+ [[package]]
1037
+ name = "core-foundation-sys"
1038
+ version = "0.8.7"
1039
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1040
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
1041
+
1042
+ [[package]]
1043
+ name = "cpufeatures"
1044
+ version = "0.2.17"
1045
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1046
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
1047
+ dependencies = [
1048
+ "libc",
1049
+ ]
1050
+
1051
+ [[package]]
1052
+ name = "cpufeatures"
1053
+ version = "0.3.0"
1054
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1055
+ checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
1056
+ dependencies = [
1057
+ "libc",
1058
+ ]
1059
+
1060
+ [[package]]
1061
+ name = "crc32fast"
1062
+ version = "1.5.0"
1063
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1064
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
1065
+ dependencies = [
1066
+ "cfg-if",
1067
+ ]
1068
+
1069
+ [[package]]
1070
+ name = "critical-section"
1071
+ version = "1.2.0"
1072
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1073
+ checksum = "790eea4361631c5e7d22598ecd5723ff611904e3344ce8720784c93e3d83d40b"
1074
+
1075
+ [[package]]
1076
+ name = "crossbeam-utils"
1077
+ version = "0.8.22"
1078
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1079
+ checksum = "61803da095bee82a81bb1a452ecc25d3b2f1416d1897eb86430c6159ef717c17"
1080
+
1081
+ [[package]]
1082
+ name = "crossterm"
1083
+ version = "0.29.0"
1084
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1085
+ checksum = "d8b9f2e4c67f833b660cdb0a3523065869fb35570177239812ed4c905aeff87b"
1086
+ dependencies = [
1087
+ "bitflags 2.13.1",
1088
+ "crossterm_winapi",
1089
+ "derive_more",
1090
+ "document-features",
1091
+ "mio",
1092
+ "parking_lot",
1093
+ "rustix",
1094
+ "signal-hook",
1095
+ "signal-hook-mio",
1096
+ "winapi",
1097
+ ]
1098
+
1099
+ [[package]]
1100
+ name = "crossterm_winapi"
1101
+ version = "0.9.1"
1102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1103
+ checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b"
1104
+ dependencies = [
1105
+ "winapi",
1106
+ ]
1107
+
1108
+ [[package]]
1109
+ name = "crypto-common"
1110
+ version = "0.1.7"
1111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1112
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
1113
+ dependencies = [
1114
+ "generic-array",
1115
+ "typenum",
1116
+ ]
1117
+
1118
+ [[package]]
1119
+ name = "crypto-common"
1120
+ version = "0.2.2"
1121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1122
+ checksum = "ce6e4c961d6cd6c9a86db418387425e8bdeaf05b3c8bc1411e6dca4c252f1453"
1123
+ dependencies = [
1124
+ "hybrid-array",
1125
+ ]
1126
+
1127
+ [[package]]
1128
+ name = "csscolorparser"
1129
+ version = "0.6.2"
1130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1131
+ checksum = "eb2a7d3066da2de787b7f032c736763eb7ae5d355f81a68bab2675a96008b0bf"
1132
+ dependencies = [
1133
+ "lab",
1134
+ "phf",
1135
+ ]
1136
+
1137
+ [[package]]
1138
+ name = "ctor"
1139
+ version = "1.0.12"
1140
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1141
+ checksum = "2d83cb7e7a873830708d6b02a78cd36a592c6fa14bf267b68725103b85c0d77f"
1142
+
1143
+ [[package]]
1144
+ name = "ctutils"
1145
+ version = "0.4.2"
1146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1147
+ checksum = "7d5515a3834141de9eafb9717ad39eea8247b5674e6066c404e8c4b365d2a29e"
1148
+ dependencies = [
1149
+ "cmov",
1150
+ ]
1151
+
1152
+ [[package]]
1153
+ name = "darling"
1154
+ version = "0.24.0"
1155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1156
+ checksum = "88490bf1b990d87eaaa7ac8aa887f629a08e7359765b4911faf63c3763347d23"
1157
+ dependencies = [
1158
+ "darling_core",
1159
+ "darling_macro",
1160
+ ]
1161
+
1162
+ [[package]]
1163
+ name = "darling_core"
1164
+ version = "0.24.0"
1165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1166
+ checksum = "084e274f91c482280130e1e34e0b8d6e66776a060d7b6de7b84289ca778868c4"
1167
+ dependencies = [
1168
+ "ident_case",
1169
+ "proc-macro2",
1170
+ "quote",
1171
+ "strsim",
1172
+ "syn 3.0.3",
1173
+ ]
1174
+
1175
+ [[package]]
1176
+ name = "darling_macro"
1177
+ version = "0.24.0"
1178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1179
+ checksum = "68f5792fa0d41cd2325ce0ffa64f0a340eaebd4971a3a0c5e1ffd2cc488a355e"
1180
+ dependencies = [
1181
+ "darling_core",
1182
+ "quote",
1183
+ "syn 3.0.3",
1184
+ ]
1185
+
1186
+ [[package]]
1187
+ name = "dashmap"
1188
+ version = "6.2.1"
1189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1190
+ checksum = "e6361d5c062261c78a176addb82d4c821ae42bed6089de0e12603cd25de2059c"
1191
+ dependencies = [
1192
+ "cfg-if",
1193
+ "crossbeam-utils",
1194
+ "hashbrown 0.14.5",
1195
+ "lock_api",
1196
+ "once_cell",
1197
+ "parking_lot_core",
1198
+ ]
1199
+
1200
+ [[package]]
1201
+ name = "deltae"
1202
+ version = "0.3.2"
1203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1204
+ checksum = "5729f5117e208430e437df2f4843f5e5952997175992d1414f94c57d61e270b4"
1205
+
1206
+ [[package]]
1207
+ name = "deranged"
1208
+ version = "0.5.8"
1209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1210
+ checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
1211
+
1212
+ [[package]]
1213
+ name = "derive_more"
1214
+ version = "2.1.1"
1215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1216
+ checksum = "d751e9e49156b02b44f9c1815bcb94b984cdcc4396ecc32521c739452808b134"
1217
+ dependencies = [
1218
+ "derive_more-impl",
1219
+ ]
1220
+
1221
+ [[package]]
1222
+ name = "derive_more-impl"
1223
+ version = "2.1.1"
1224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1225
+ checksum = "799a97264921d8623a957f6c3b9011f3b5492f557bbb7a5a19b7fa6d06ba8dcb"
1226
+ dependencies = [
1227
+ "convert_case 0.10.0",
1228
+ "proc-macro2",
1229
+ "quote",
1230
+ "rustc_version",
1231
+ "syn 2.0.119",
1232
+ ]
1233
+
1234
+ [[package]]
1235
+ name = "digest"
1236
+ version = "0.10.7"
1237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1238
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
1239
+ dependencies = [
1240
+ "block-buffer 0.10.4",
1241
+ "crypto-common 0.1.7",
1242
+ ]
1243
+
1244
+ [[package]]
1245
+ name = "digest"
1246
+ version = "0.11.3"
1247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1248
+ checksum = "f1dd6dbb5841937940781866fa1281a1ff7bd3bf827091440879f9994983d5c2"
1249
+ dependencies = [
1250
+ "block-buffer 0.12.1",
1251
+ "const-oid",
1252
+ "crypto-common 0.2.2",
1253
+ "ctutils",
1254
+ ]
1255
+
1256
+ [[package]]
1257
+ name = "displaydoc"
1258
+ version = "0.2.7"
1259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1260
+ checksum = "c6232dd377dcc64799954cbd3a9bb882e9cdc1308ccd87b1c098f1fb2eaf82a8"
1261
+ dependencies = [
1262
+ "proc-macro2",
1263
+ "quote",
1264
+ "syn 3.0.3",
1265
+ ]
1266
+
1267
+ [[package]]
1268
+ name = "document-features"
1269
+ version = "0.2.12"
1270
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1271
+ checksum = "d4b8a88685455ed29a21542a33abd9cb6510b6b129abadabdcef0f4c55bc8f61"
1272
+ dependencies = [
1273
+ "litrs",
1274
+ ]
1275
+
1276
+ [[package]]
1277
+ name = "dunce"
1278
+ version = "1.0.5"
1279
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1280
+ checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
1281
+
1282
+ [[package]]
1283
+ name = "dyn-clone"
1284
+ version = "1.0.20"
1285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1286
+ checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
1287
+
1288
+ [[package]]
1289
+ name = "either"
1290
+ version = "1.17.0"
1291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1292
+ checksum = "9e5e8f6c15a24b9a3ee5efec809ccd006d3b30e8b3bb63c39af737c7f87daa1d"
1293
+
1294
+ [[package]]
1295
+ name = "encoding_rs"
1296
+ version = "0.8.35"
1297
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1298
+ checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
1299
+ dependencies = [
1300
+ "cfg-if",
1301
+ ]
1302
+
1303
+ [[package]]
1304
+ name = "equivalent"
1305
+ version = "1.0.2"
1306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1307
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
1308
+
1309
+ [[package]]
1310
+ name = "errno"
1311
+ version = "0.3.14"
1312
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1313
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
1314
+ dependencies = [
1315
+ "libc",
1316
+ "windows-sys 0.61.2",
1317
+ ]
1318
+
1319
+ [[package]]
1320
+ name = "euclid"
1321
+ version = "0.22.14"
1322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1323
+ checksum = "f1a05365e3b1c6d1650318537c7460c6923f1abdd272ad6842baa2b509957a06"
1324
+ dependencies = [
1325
+ "num-traits",
1326
+ ]
1327
+
1328
+ [[package]]
1329
+ name = "fancy-regex"
1330
+ version = "0.11.0"
1331
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1332
+ checksum = "b95f7c0680e4142284cf8b22c14a476e87d61b004a3a0861872b32ef7ead40a2"
1333
+ dependencies = [
1334
+ "bit-set 0.5.3",
1335
+ "regex",
1336
+ ]
1337
+
1338
+ [[package]]
1339
+ name = "fastrand"
1340
+ version = "2.5.0"
1341
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1342
+ checksum = "da7c62ceae207dd37ea5b845da6a0696c799f85e97da1ab5b7910be3c1c80223"
1343
+
1344
+ [[package]]
1345
+ name = "filedescriptor"
1346
+ version = "0.8.3"
1347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1348
+ checksum = "e40758ed24c9b2eeb76c35fb0aebc66c626084edd827e07e1552279814c6682d"
1349
+ dependencies = [
1350
+ "libc",
1351
+ "thiserror 1.0.69",
1352
+ "winapi",
1353
+ ]
1354
+
1355
+ [[package]]
1356
+ name = "filetime"
1357
+ version = "0.2.29"
1358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1359
+ checksum = "5c287a33c7f0a620c38e641e7f60827713987b3c0f26e8ddc9462cc69cf75759"
1360
+ dependencies = [
1361
+ "cfg-if",
1362
+ "libc",
1363
+ ]
1364
+
1365
+ [[package]]
1366
+ name = "find-msvc-tools"
1367
+ version = "0.1.10"
1368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1369
+ checksum = "26b73573e6edcd2af0cdf47bd6cb58f0b3839491263c314eaad1ccf24430e1de"
1370
+
1371
+ [[package]]
1372
+ name = "finl_unicode"
1373
+ version = "1.4.0"
1374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1375
+ checksum = "9844ddc3a6e533d62bba727eb6c28b5d360921d5175e9ff0f1e621a5c590a4d5"
1376
+
1377
+ [[package]]
1378
+ name = "fixedbitset"
1379
+ version = "0.4.2"
1380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1381
+ checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
1382
+
1383
+ [[package]]
1384
+ name = "flate2"
1385
+ version = "1.1.9"
1386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1387
+ checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
1388
+ dependencies = [
1389
+ "miniz_oxide",
1390
+ "zlib-rs",
1391
+ ]
1392
+
1393
+ [[package]]
1394
+ name = "fnv"
1395
+ version = "1.0.7"
1396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1397
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
1398
+
1399
+ [[package]]
1400
+ name = "foldhash"
1401
+ version = "0.2.0"
1402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1403
+ checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
1404
+
1405
+ [[package]]
1406
+ name = "form_urlencoded"
1407
+ version = "1.2.2"
1408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1409
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
1410
+ dependencies = [
1411
+ "percent-encoding",
1412
+ ]
1413
+
1414
+ [[package]]
1415
+ name = "fs_extra"
1416
+ version = "1.3.0"
1417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1418
+ checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
1419
+
1420
+ [[package]]
1421
+ name = "funty"
1422
+ version = "2.0.0"
1423
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1424
+ checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
1425
+
1426
+ [[package]]
1427
+ name = "futures"
1428
+ version = "0.3.34"
1429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1430
+ checksum = "9a31d2a3fbaaeb2af2368bbdd904aa8e812d3c04a1ee10d3171f52d556e5d0a3"
1431
+ dependencies = [
1432
+ "futures-channel",
1433
+ "futures-core",
1434
+ "futures-executor",
1435
+ "futures-io",
1436
+ "futures-sink",
1437
+ "futures-task",
1438
+ "futures-util",
1439
+ ]
1440
+
1441
+ [[package]]
1442
+ name = "futures-channel"
1443
+ version = "0.3.34"
1444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1445
+ checksum = "b1f9e3d69d39e4862ffed03ed071a76f9a13ba1d9109d355b0f0aa6b15e393c4"
1446
+ dependencies = [
1447
+ "futures-core",
1448
+ "futures-sink",
1449
+ ]
1450
+
1451
+ [[package]]
1452
+ name = "futures-core"
1453
+ version = "0.3.34"
1454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1455
+ checksum = "92d699e522242e69e3003b94ecc1f960f3a5e015aa7c5d7486e65ad01dd94f5e"
1456
+
1457
+ [[package]]
1458
+ name = "futures-executor"
1459
+ version = "0.3.34"
1460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1461
+ checksum = "031b47cf1a3c6cc8bc2fc76cd437f521619387907d469316e7c0bc278f1f5432"
1462
+ dependencies = [
1463
+ "futures-core",
1464
+ "futures-task",
1465
+ "futures-util",
1466
+ ]
1467
+
1468
+ [[package]]
1469
+ name = "futures-io"
1470
+ version = "0.3.34"
1471
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1472
+ checksum = "53c0fa8157de1303bfffdaa1cc2a673bfffb60102f76b0ef4441659124373fed"
1473
+
1474
+ [[package]]
1475
+ name = "futures-macro"
1476
+ version = "0.3.34"
1477
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1478
+ checksum = "9fb9654ba8355388abeb8dcb4fc62f511300867002afc858860463bdd9fe0c44"
1479
+ dependencies = [
1480
+ "proc-macro2",
1481
+ "quote",
1482
+ "syn 3.0.3",
1483
+ ]
1484
+
1485
+ [[package]]
1486
+ name = "futures-sink"
1487
+ version = "0.3.34"
1488
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1489
+ checksum = "1944426bf7d03f1d14f708785e4b33efd750b36d48a157b836b3efc15ede8e1d"
1490
+
1491
+ [[package]]
1492
+ name = "futures-task"
1493
+ version = "0.3.34"
1494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1495
+ checksum = "cd417de3d1d015fc3bfd2b1ea46dfc7bab72ef86f1cc7cc9c78e728b34a6d1fd"
1496
+
1497
+ [[package]]
1498
+ name = "futures-util"
1499
+ version = "0.3.34"
1500
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1501
+ checksum = "0d50a92467f8ba5dd6e3ee5d4bd04d73ab2e4e1c44474a0674821dfce14b79bc"
1502
+ dependencies = [
1503
+ "futures-channel",
1504
+ "futures-core",
1505
+ "futures-io",
1506
+ "futures-macro",
1507
+ "futures-sink",
1508
+ "futures-task",
1509
+ "memchr",
1510
+ "pin-project-lite",
1511
+ "slab",
1512
+ ]
1513
+
1514
+ [[package]]
1515
+ name = "generic-array"
1516
+ version = "0.14.7"
1517
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1518
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
1519
+ dependencies = [
1520
+ "typenum",
1521
+ "version_check",
1522
+ ]
1523
+
1524
+ [[package]]
1525
+ name = "getrandom"
1526
+ version = "0.2.17"
1527
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1528
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
1529
+ dependencies = [
1530
+ "cfg-if",
1531
+ "js-sys",
1532
+ "libc",
1533
+ "wasi",
1534
+ "wasm-bindgen",
1535
+ ]
1536
+
1537
+ [[package]]
1538
+ name = "getrandom"
1539
+ version = "0.3.4"
1540
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1541
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
1542
+ dependencies = [
1543
+ "cfg-if",
1544
+ "libc",
1545
+ "r-efi 5.3.0",
1546
+ "wasip2",
1547
+ ]
1548
+
1549
+ [[package]]
1550
+ name = "getrandom"
1551
+ version = "0.4.3"
1552
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1553
+ checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
1554
+ dependencies = [
1555
+ "cfg-if",
1556
+ "js-sys",
1557
+ "libc",
1558
+ "r-efi 6.0.0",
1559
+ "rand_core 0.10.1",
1560
+ "wasm-bindgen",
1561
+ ]
1562
+
1563
+ [[package]]
1564
+ name = "gloo-timers"
1565
+ version = "0.3.0"
1566
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1567
+ checksum = "bbb143cf96099802033e0d4f4963b19fd2e0b728bcf076cd9cf7f6634f092994"
1568
+ dependencies = [
1569
+ "futures-channel",
1570
+ "futures-core",
1571
+ "js-sys",
1572
+ "wasm-bindgen",
1573
+ ]
1574
+
1575
+ [[package]]
1576
+ name = "h2"
1577
+ version = "0.4.16"
1578
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1579
+ checksum = "a9f37a958b41b3b19ee2707c06439c0e9e547e847223eb791ecb0cb821c65e27"
1580
+ dependencies = [
1581
+ "atomic-waker",
1582
+ "bytes",
1583
+ "fnv",
1584
+ "futures-core",
1585
+ "futures-sink",
1586
+ "http 1.5.0",
1587
+ "indexmap",
1588
+ "slab",
1589
+ "tokio",
1590
+ "tokio-util",
1591
+ "tracing",
1592
+ ]
1593
+
1594
+ [[package]]
1595
+ name = "hashbrown"
1596
+ version = "0.12.3"
1597
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1598
+ checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
1599
+ dependencies = [
1600
+ "ahash 0.7.8",
1601
+ ]
1602
+
1603
+ [[package]]
1604
+ name = "hashbrown"
1605
+ version = "0.14.5"
1606
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1607
+ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
1608
+
1609
+ [[package]]
1610
+ name = "hashbrown"
1611
+ version = "0.16.1"
1612
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1613
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
1614
+ dependencies = [
1615
+ "allocator-api2",
1616
+ "equivalent",
1617
+ "foldhash",
1618
+ ]
1619
+
1620
+ [[package]]
1621
+ name = "hashbrown"
1622
+ version = "0.17.1"
1623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1624
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
1625
+ dependencies = [
1626
+ "allocator-api2",
1627
+ "equivalent",
1628
+ "foldhash",
1629
+ ]
1630
+
1631
+ [[package]]
1632
+ name = "heck"
1633
+ version = "0.5.0"
1634
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1635
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
1636
+
1637
+ [[package]]
1638
+ name = "hex"
1639
+ version = "0.4.3"
1640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1641
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
1642
+
1643
+ [[package]]
1644
+ name = "hmac"
1645
+ version = "0.13.0"
1646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1647
+ checksum = "6303bc9732ae41b04cb554b844a762b4115a61bfaa81e3e83050991eeb56863f"
1648
+ dependencies = [
1649
+ "digest 0.11.3",
1650
+ ]
1651
+
1652
+ [[package]]
1653
+ name = "http"
1654
+ version = "0.2.12"
1655
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1656
+ checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1"
1657
+ dependencies = [
1658
+ "bytes",
1659
+ "fnv",
1660
+ "itoa",
1661
+ ]
1662
+
1663
+ [[package]]
1664
+ name = "http"
1665
+ version = "1.5.0"
1666
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1667
+ checksum = "918d3568bebf352712bc2ef3d46a8bcf1a75b373be6539de198e9105cbbf9ce0"
1668
+ dependencies = [
1669
+ "bytes",
1670
+ "itoa",
1671
+ ]
1672
+
1673
+ [[package]]
1674
+ name = "http-body"
1675
+ version = "0.4.6"
1676
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1677
+ checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2"
1678
+ dependencies = [
1679
+ "bytes",
1680
+ "http 0.2.12",
1681
+ "pin-project-lite",
1682
+ ]
1683
+
1684
+ [[package]]
1685
+ name = "http-body"
1686
+ version = "1.1.0"
1687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1688
+ checksum = "ca2a8f2913ee65f60facd6a5905613afaa448497a0230cc41ce022d93290bc2c"
1689
+ dependencies = [
1690
+ "bytes",
1691
+ "http 1.5.0",
1692
+ ]
1693
+
1694
+ [[package]]
1695
+ name = "http-body-util"
1696
+ version = "0.1.5"
1697
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1698
+ checksum = "23169fe34a5fbcdd3f3862e78fb9b6fccd5f02a6dc6f732547005d45631ce71c"
1699
+ dependencies = [
1700
+ "bytes",
1701
+ "futures-core",
1702
+ "http 1.5.0",
1703
+ "http-body 1.1.0",
1704
+ "pin-project-lite",
1705
+ ]
1706
+
1707
+ [[package]]
1708
+ name = "httparse"
1709
+ version = "1.10.1"
1710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1711
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
1712
+
1713
+ [[package]]
1714
+ name = "httpdate"
1715
+ version = "1.0.3"
1716
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1717
+ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
1718
+
1719
+ [[package]]
1720
+ name = "hybrid-array"
1721
+ version = "0.4.14"
1722
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1723
+ checksum = "707114b52a152fa7bdb290cd7cd5912d9467273b6d74e21b8d81aca1f8533f6b"
1724
+ dependencies = [
1725
+ "typenum",
1726
+ ]
1727
+
1728
+ [[package]]
1729
+ name = "hyper"
1730
+ version = "1.11.0"
1731
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1732
+ checksum = "d22053281f852e11534f5198498373cbb59295120a20771d90f7ed1897490a72"
1733
+ dependencies = [
1734
+ "atomic-waker",
1735
+ "bytes",
1736
+ "futures-channel",
1737
+ "futures-core",
1738
+ "h2",
1739
+ "http 1.5.0",
1740
+ "http-body 1.1.0",
1741
+ "httparse",
1742
+ "httpdate",
1743
+ "itoa",
1744
+ "pin-project-lite",
1745
+ "smallvec",
1746
+ "tokio",
1747
+ "want",
1748
+ ]
1749
+
1750
+ [[package]]
1751
+ name = "hyper-rustls"
1752
+ version = "0.27.9"
1753
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1754
+ checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f"
1755
+ dependencies = [
1756
+ "http 1.5.0",
1757
+ "hyper",
1758
+ "hyper-util",
1759
+ "rustls",
1760
+ "rustls-native-certs",
1761
+ "tokio",
1762
+ "tokio-rustls",
1763
+ "tower-service",
1764
+ ]
1765
+
1766
+ [[package]]
1767
+ name = "hyper-util"
1768
+ version = "0.1.20"
1769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1770
+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
1771
+ dependencies = [
1772
+ "base64 0.22.1",
1773
+ "bytes",
1774
+ "futures-channel",
1775
+ "futures-util",
1776
+ "http 1.5.0",
1777
+ "http-body 1.1.0",
1778
+ "hyper",
1779
+ "ipnet",
1780
+ "libc",
1781
+ "percent-encoding",
1782
+ "pin-project-lite",
1783
+ "socket2",
1784
+ "tokio",
1785
+ "tower-service",
1786
+ "tracing",
1787
+ ]
1788
+
1789
+ [[package]]
1790
+ name = "icu_collections"
1791
+ version = "2.2.0"
1792
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1793
+ checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
1794
+ dependencies = [
1795
+ "displaydoc",
1796
+ "potential_utf",
1797
+ "utf8_iter",
1798
+ "yoke",
1799
+ "zerofrom",
1800
+ "zerovec",
1801
+ ]
1802
+
1803
+ [[package]]
1804
+ name = "icu_locale_core"
1805
+ version = "2.2.0"
1806
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1807
+ checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
1808
+ dependencies = [
1809
+ "displaydoc",
1810
+ "litemap",
1811
+ "tinystr",
1812
+ "writeable",
1813
+ "zerovec",
1814
+ ]
1815
+
1816
+ [[package]]
1817
+ name = "icu_normalizer"
1818
+ version = "2.2.0"
1819
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1820
+ checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
1821
+ dependencies = [
1822
+ "icu_collections",
1823
+ "icu_normalizer_data",
1824
+ "icu_properties",
1825
+ "icu_provider",
1826
+ "smallvec",
1827
+ "zerovec",
1828
+ ]
1829
+
1830
+ [[package]]
1831
+ name = "icu_normalizer_data"
1832
+ version = "2.2.0"
1833
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1834
+ checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
1835
+
1836
+ [[package]]
1837
+ name = "icu_properties"
1838
+ version = "2.2.0"
1839
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1840
+ checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
1841
+ dependencies = [
1842
+ "icu_collections",
1843
+ "icu_locale_core",
1844
+ "icu_properties_data",
1845
+ "icu_provider",
1846
+ "zerotrie",
1847
+ "zerovec",
1848
+ ]
1849
+
1850
+ [[package]]
1851
+ name = "icu_properties_data"
1852
+ version = "2.2.0"
1853
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1854
+ checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
1855
+
1856
+ [[package]]
1857
+ name = "icu_provider"
1858
+ version = "2.2.0"
1859
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1860
+ checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
1861
+ dependencies = [
1862
+ "displaydoc",
1863
+ "icu_locale_core",
1864
+ "writeable",
1865
+ "yoke",
1866
+ "zerofrom",
1867
+ "zerotrie",
1868
+ "zerovec",
1869
+ ]
1870
+
1871
+ [[package]]
1872
+ name = "id-set"
1873
+ version = "0.2.2"
1874
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1875
+ checksum = "9633fadf6346456cf8531119ba4838bc6d82ac4ce84d9852126dd2aa34d49264"
1876
+
1877
+ [[package]]
1878
+ name = "ident_case"
1879
+ version = "1.0.1"
1880
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1881
+ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
1882
+
1883
+ [[package]]
1884
+ name = "idna"
1885
+ version = "1.1.0"
1886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1887
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
1888
+ dependencies = [
1889
+ "idna_adapter",
1890
+ "smallvec",
1891
+ "utf8_iter",
1892
+ ]
1893
+
1894
+ [[package]]
1895
+ name = "idna_adapter"
1896
+ version = "1.2.2"
1897
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1898
+ checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
1899
+ dependencies = [
1900
+ "icu_normalizer",
1901
+ "icu_properties",
1902
+ ]
1903
+
1904
+ [[package]]
1905
+ name = "indexmap"
1906
+ version = "2.14.0"
1907
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1908
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
1909
+ dependencies = [
1910
+ "equivalent",
1911
+ "hashbrown 0.17.1",
1912
+ ]
1913
+
1914
+ [[package]]
1915
+ name = "indoc"
1916
+ version = "2.0.7"
1917
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1918
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
1919
+ dependencies = [
1920
+ "rustversion",
1921
+ ]
1922
+
1923
+ [[package]]
1924
+ name = "instability"
1925
+ version = "0.3.13"
1926
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1927
+ checksum = "2bf84e73fa6f27f299dec58e13223cf70db80da872eb921d4f6138342a0eabc8"
1928
+ dependencies = [
1929
+ "darling",
1930
+ "indoc",
1931
+ "proc-macro2",
1932
+ "quote",
1933
+ "syn 3.0.3",
1934
+ ]
1935
+
1936
+ [[package]]
1937
+ name = "ipnet"
1938
+ version = "2.12.1"
1939
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1940
+ checksum = "6a756c3fac73139e83f14c2d742155dd2b78d3ee56597b419a0579b7bdd6dd78"
1941
+
1942
+ [[package]]
1943
+ name = "is_terminal_polyfill"
1944
+ version = "1.70.2"
1945
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1946
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
1947
+
1948
+ [[package]]
1949
+ name = "itertools"
1950
+ version = "0.14.0"
1951
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1952
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
1953
+ dependencies = [
1954
+ "either",
1955
+ ]
1956
+
1957
+ [[package]]
1958
+ name = "itoa"
1959
+ version = "1.0.18"
1960
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1961
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
1962
+
1963
+ [[package]]
1964
+ name = "jni"
1965
+ version = "0.22.4"
1966
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1967
+ checksum = "5efd9a482cf3a427f00d6b35f14332adc7902ce91efb778580e180ff90fa3498"
1968
+ dependencies = [
1969
+ "cfg-if",
1970
+ "combine",
1971
+ "jni-macros",
1972
+ "jni-sys",
1973
+ "log",
1974
+ "simd_cesu8",
1975
+ "thiserror 2.0.20",
1976
+ "walkdir",
1977
+ "windows-link",
1978
+ ]
1979
+
1980
+ [[package]]
1981
+ name = "jni-macros"
1982
+ version = "0.22.4"
1983
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1984
+ checksum = "a00109accc170f0bdb141fed3e393c565b6f5e072365c3bd58f5b062591560a3"
1985
+ dependencies = [
1986
+ "proc-macro2",
1987
+ "quote",
1988
+ "rustc_version",
1989
+ "simd_cesu8",
1990
+ "syn 2.0.119",
1991
+ ]
1992
+
1993
+ [[package]]
1994
+ name = "jni-sys"
1995
+ version = "0.4.1"
1996
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1997
+ checksum = "c6377a88cb3910bee9b0fa88d4f42e1d2da8e79915598f65fb0c7ee14c878af2"
1998
+ dependencies = [
1999
+ "jni-sys-macros",
2000
+ ]
2001
+
2002
+ [[package]]
2003
+ name = "jni-sys-macros"
2004
+ version = "0.4.1"
2005
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2006
+ checksum = "38c0b942f458fe50cdac086d2f946512305e5631e720728f2a61aabcd47a6264"
2007
+ dependencies = [
2008
+ "quote",
2009
+ "syn 2.0.119",
2010
+ ]
2011
+
2012
+ [[package]]
2013
+ name = "jobserver"
2014
+ version = "0.1.35"
2015
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2016
+ checksum = "1c00acbd29eabad4a2392fa0e921c874934dbbf4194312ad20f04a0ed67a3cb3"
2017
+ dependencies = [
2018
+ "getrandom 0.4.3",
2019
+ "libc",
2020
+ ]
2021
+
2022
+ [[package]]
2023
+ name = "js-sys"
2024
+ version = "0.3.104"
2025
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2026
+ checksum = "0e0c1080212aad755ea003d18543e8768dd432c48819efd73a7bf1e39b7a5a3a"
2027
+ dependencies = [
2028
+ "cfg-if",
2029
+ "futures-util",
2030
+ "wasm-bindgen",
2031
+ ]
2032
+
2033
+ [[package]]
2034
+ name = "kasuari"
2035
+ version = "0.4.12"
2036
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2037
+ checksum = "bde5057d6143cc94e861d90f591b9303d6716c6b9602309150bd068853c10899"
2038
+ dependencies = [
2039
+ "hashbrown 0.16.1",
2040
+ "portable-atomic",
2041
+ "thiserror 2.0.20",
2042
+ ]
2043
+
2044
+ [[package]]
2045
+ name = "lab"
2046
+ version = "0.11.0"
2047
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2048
+ checksum = "bf36173d4167ed999940f804952e6b08197cae5ad5d572eb4db150ce8ad5d58f"
2049
+
2050
+ [[package]]
2051
+ name = "lazy_static"
2052
+ version = "1.5.0"
2053
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2054
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
2055
+
2056
+ [[package]]
2057
+ name = "libc"
2058
+ version = "0.2.189"
2059
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2060
+ checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
2061
+
2062
+ [[package]]
2063
+ name = "libloading"
2064
+ version = "0.9.0"
2065
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2066
+ checksum = "754ca22de805bb5744484a5b151a9e1a8e837d5dc232c2d7d8c2e3492edc8b60"
2067
+ dependencies = [
2068
+ "cfg-if",
2069
+ "windows-link",
2070
+ ]
2071
+
2072
+ [[package]]
2073
+ name = "libm"
2074
+ version = "0.2.16"
2075
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2076
+ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
2077
+
2078
+ [[package]]
2079
+ name = "line-clipping"
2080
+ version = "0.3.8"
2081
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2082
+ checksum = "e752191d037c44ad111a8caa762921926658402f01cc1253f7bef2020ece4f5e"
2083
+ dependencies = [
2084
+ "bitflags 2.13.1",
2085
+ ]
2086
+
2087
+ [[package]]
2088
+ name = "linux-raw-sys"
2089
+ version = "0.12.1"
2090
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2091
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
2092
+
2093
+ [[package]]
2094
+ name = "litemap"
2095
+ version = "0.8.2"
2096
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2097
+ checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
2098
+
2099
+ [[package]]
2100
+ name = "litrs"
2101
+ version = "1.0.0"
2102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2103
+ checksum = "11d3d7f243d5c5a8b9bb5d6dd2b1602c0cb0b9db1621bafc7ed66e35ff9fe092"
2104
+
2105
+ [[package]]
2106
+ name = "lock_api"
2107
+ version = "0.4.14"
2108
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2109
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
2110
+ dependencies = [
2111
+ "scopeguard",
2112
+ ]
2113
+
2114
+ [[package]]
2115
+ name = "log"
2116
+ version = "0.4.33"
2117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2118
+ checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
2119
+
2120
+ [[package]]
2121
+ name = "lru"
2122
+ version = "0.18.2"
2123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2124
+ checksum = "5d2f2f9b4ba7e6b24d95e7e899329d35be83bcded72c8540cdd5368932d1d90a"
2125
+ dependencies = [
2126
+ "hashbrown 0.17.1",
2127
+ ]
2128
+
2129
+ [[package]]
2130
+ name = "lru-slab"
2131
+ version = "0.1.2"
2132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2133
+ checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
2134
+
2135
+ [[package]]
2136
+ name = "mac_address"
2137
+ version = "1.1.8"
2138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2139
+ checksum = "c0aeb26bf5e836cc1c341c8106051b573f1766dfa05aa87f0b98be5e51b02303"
2140
+ dependencies = [
2141
+ "nix 0.29.0",
2142
+ "winapi",
2143
+ ]
2144
+
2145
+ [[package]]
2146
+ name = "matchers"
2147
+ version = "0.2.0"
2148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2149
+ checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
2150
+ dependencies = [
2151
+ "regex-automata",
2152
+ ]
2153
+
2154
+ [[package]]
2155
+ name = "matchit"
2156
+ version = "0.8.4"
2157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2158
+ checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3"
2159
+
2160
+ [[package]]
2161
+ name = "memchr"
2162
+ version = "2.8.3"
2163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2164
+ checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
2165
+
2166
+ [[package]]
2167
+ name = "memmem"
2168
+ version = "0.1.1"
2169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2170
+ checksum = "a64a92489e2744ce060c349162be1c5f33c6969234104dbd99ddb5feb08b8c15"
2171
+
2172
+ [[package]]
2173
+ name = "memoffset"
2174
+ version = "0.9.1"
2175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2176
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
2177
+ dependencies = [
2178
+ "autocfg",
2179
+ ]
2180
+
2181
+ [[package]]
2182
+ name = "microvms-cli"
2183
+ version = "0.1.1"
2184
+ dependencies = [
2185
+ "cargo_metadata",
2186
+ "clap",
2187
+ "microvms-core",
2188
+ "ratatui",
2189
+ "serde",
2190
+ "serde_json",
2191
+ "tokio",
2192
+ ]
2193
+
2194
+ [[package]]
2195
+ name = "microvms-core"
2196
+ version = "0.1.1"
2197
+ dependencies = [
2198
+ "aws-config",
2199
+ "aws-credential-types",
2200
+ "aws-sigv4",
2201
+ "backon",
2202
+ "base64 0.23.1",
2203
+ "futures-util",
2204
+ "http 1.5.0",
2205
+ "hyper",
2206
+ "hyper-util",
2207
+ "microvms-protocol",
2208
+ "proptest",
2209
+ "reqwest",
2210
+ "rust_decimal",
2211
+ "rust_decimal_macros",
2212
+ "serde",
2213
+ "serde_json",
2214
+ "sha2 0.11.0",
2215
+ "thiserror 2.0.20",
2216
+ "tokio",
2217
+ "turmoil",
2218
+ "zip",
2219
+ ]
2220
+
2221
+ [[package]]
2222
+ name = "microvms-js"
2223
+ version = "0.1.0"
2224
+ dependencies = [
2225
+ "microvms-core",
2226
+ "microvms-protocol",
2227
+ "napi",
2228
+ "napi-build",
2229
+ "napi-derive",
2230
+ "tokio",
2231
+ ]
2232
+
2233
+ [[package]]
2234
+ name = "microvms-protocol"
2235
+ version = "0.1.1"
2236
+ dependencies = [
2237
+ "schemars",
2238
+ "serde",
2239
+ "serde_json",
2240
+ ]
2241
+
2242
+ [[package]]
2243
+ name = "microvms-py"
2244
+ version = "0.1.0"
2245
+ dependencies = [
2246
+ "microvms-core",
2247
+ "microvms-protocol",
2248
+ "pyo3",
2249
+ "tokio",
2250
+ ]
2251
+
2252
+ [[package]]
2253
+ name = "mime"
2254
+ version = "0.3.17"
2255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2256
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
2257
+
2258
+ [[package]]
2259
+ name = "minimal-lexical"
2260
+ version = "0.2.1"
2261
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2262
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
2263
+
2264
+ [[package]]
2265
+ name = "miniz_oxide"
2266
+ version = "0.8.9"
2267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2268
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
2269
+ dependencies = [
2270
+ "adler2",
2271
+ "simd-adler32",
2272
+ ]
2273
+
2274
+ [[package]]
2275
+ name = "mio"
2276
+ version = "1.2.2"
2277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2278
+ checksum = "30d65c71f1ce40ab09135ce117d742b9f8a19ff91a41a8b57ed50bc2de59c427"
2279
+ dependencies = [
2280
+ "libc",
2281
+ "log",
2282
+ "wasi",
2283
+ "windows-sys 0.61.2",
2284
+ ]
2285
+
2286
+ [[package]]
2287
+ name = "napi"
2288
+ version = "3.12.2"
2289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2290
+ checksum = "58c5f4d5375213fdb7be2655e152386e82f026f9a5ba36a75556e11359aafe09"
2291
+ dependencies = [
2292
+ "bitflags 2.13.1",
2293
+ "ctor",
2294
+ "futures",
2295
+ "futures-core",
2296
+ "libc",
2297
+ "napi-build",
2298
+ "napi-sys",
2299
+ "nohash-hasher",
2300
+ "rustc-hash",
2301
+ "tokio",
2302
+ "tokio-stream",
2303
+ ]
2304
+
2305
+ [[package]]
2306
+ name = "napi-build"
2307
+ version = "2.4.1"
2308
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2309
+ checksum = "60fdf9b392c50e7c4170fa633bd909490ed7835cea4c046776d1a4dd8d2ae0ab"
2310
+
2311
+ [[package]]
2312
+ name = "napi-derive"
2313
+ version = "3.6.3"
2314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2315
+ checksum = "0fa55ea69990c90b888e9e77044410e304ce7f35de599dc6d0b5c1923d2e59af"
2316
+ dependencies = [
2317
+ "convert_case 0.11.0",
2318
+ "ctor",
2319
+ "napi-derive-backend",
2320
+ "proc-macro2",
2321
+ "quote",
2322
+ "syn 2.0.119",
2323
+ ]
2324
+
2325
+ [[package]]
2326
+ name = "napi-derive-backend"
2327
+ version = "6.1.2"
2328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2329
+ checksum = "df4056ac7c18e4438ccf0edaed4340ca0d269278c8ec19284f7b23cb039fd0ae"
2330
+ dependencies = [
2331
+ "convert_case 0.11.0",
2332
+ "proc-macro2",
2333
+ "quote",
2334
+ "semver",
2335
+ "syn 2.0.119",
2336
+ ]
2337
+
2338
+ [[package]]
2339
+ name = "napi-sys"
2340
+ version = "3.3.0"
2341
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2342
+ checksum = "85fbf1fa9f1babfe396d74bbbf52b3643770243e8f5b0b46715d4caf7f0dfc9a"
2343
+ dependencies = [
2344
+ "libloading",
2345
+ ]
2346
+
2347
+ [[package]]
2348
+ name = "nix"
2349
+ version = "0.29.0"
2350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2351
+ checksum = "71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46"
2352
+ dependencies = [
2353
+ "bitflags 2.13.1",
2354
+ "cfg-if",
2355
+ "cfg_aliases",
2356
+ "libc",
2357
+ "memoffset",
2358
+ ]
2359
+
2360
+ [[package]]
2361
+ name = "nix"
2362
+ version = "0.31.3"
2363
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2364
+ checksum = "cf20d2fde8ff38632c426f1165ed7436270b44f199fc55284c38276f9db47c3d"
2365
+ dependencies = [
2366
+ "bitflags 2.13.1",
2367
+ "cfg-if",
2368
+ "cfg_aliases",
2369
+ "libc",
2370
+ ]
2371
+
2372
+ [[package]]
2373
+ name = "nohash-hasher"
2374
+ version = "0.2.0"
2375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2376
+ checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451"
2377
+
2378
+ [[package]]
2379
+ name = "nom"
2380
+ version = "7.1.3"
2381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2382
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
2383
+ dependencies = [
2384
+ "memchr",
2385
+ "minimal-lexical",
2386
+ ]
2387
+
2388
+ [[package]]
2389
+ name = "nu-ansi-term"
2390
+ version = "0.50.3"
2391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2392
+ checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
2393
+ dependencies = [
2394
+ "windows-sys 0.61.2",
2395
+ ]
2396
+
2397
+ [[package]]
2398
+ name = "num-conv"
2399
+ version = "0.2.2"
2400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2401
+ checksum = "521739c6d2bac4aa25192232afe6841231376b2b26d4d9fae5ecf8ca5772e441"
2402
+
2403
+ [[package]]
2404
+ name = "num-derive"
2405
+ version = "0.4.2"
2406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2407
+ checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202"
2408
+ dependencies = [
2409
+ "proc-macro2",
2410
+ "quote",
2411
+ "syn 2.0.119",
2412
+ ]
2413
+
2414
+ [[package]]
2415
+ name = "num-integer"
2416
+ version = "0.1.46"
2417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2418
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
2419
+ dependencies = [
2420
+ "num-traits",
2421
+ ]
2422
+
2423
+ [[package]]
2424
+ name = "num-traits"
2425
+ version = "0.2.19"
2426
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2427
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
2428
+ dependencies = [
2429
+ "autocfg",
2430
+ "libm",
2431
+ ]
2432
+
2433
+ [[package]]
2434
+ name = "num_threads"
2435
+ version = "0.1.7"
2436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2437
+ checksum = "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9"
2438
+ dependencies = [
2439
+ "libc",
2440
+ ]
2441
+
2442
+ [[package]]
2443
+ name = "once_cell"
2444
+ version = "1.21.4"
2445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2446
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
2447
+
2448
+ [[package]]
2449
+ name = "once_cell_polyfill"
2450
+ version = "1.70.2"
2451
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2452
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
2453
+
2454
+ [[package]]
2455
+ name = "openssl-probe"
2456
+ version = "0.2.1"
2457
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2458
+ checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
2459
+
2460
+ [[package]]
2461
+ name = "ordered-float"
2462
+ version = "4.6.0"
2463
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2464
+ checksum = "7bb71e1b3fa6ca1c61f383464aaf2bb0e2f8e772a1f01d486832464de363b951"
2465
+ dependencies = [
2466
+ "num-traits",
2467
+ ]
2468
+
2469
+ [[package]]
2470
+ name = "outref"
2471
+ version = "0.5.2"
2472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2473
+ checksum = "1a80800c0488c3a21695ea981a54918fbb37abf04f4d0720c453632255e2ff0e"
2474
+
2475
+ [[package]]
2476
+ name = "palette"
2477
+ version = "0.7.7"
2478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2479
+ checksum = "ddeed8580d347d2abf3dcf06a5f0b3dc020258338526b277847cd4248a70fc64"
2480
+ dependencies = [
2481
+ "approx",
2482
+ "libm",
2483
+ "palette_derive",
2484
+ "palette_math",
2485
+ ]
2486
+
2487
+ [[package]]
2488
+ name = "palette_derive"
2489
+ version = "0.7.7"
2490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2491
+ checksum = "88537020289b719d81be994ccf1bbf4990f477e2f69ee52fe3e45f43a02e56be"
2492
+ dependencies = [
2493
+ "by_address",
2494
+ "proc-macro2",
2495
+ "quote",
2496
+ "syn 2.0.119",
2497
+ ]
2498
+
2499
+ [[package]]
2500
+ name = "palette_math"
2501
+ version = "0.7.7"
2502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2503
+ checksum = "6e6eb142958d64335fb0e345c5b9ead2ecd6fc438c307e9d7d3c4fd428dbaf12"
2504
+ dependencies = [
2505
+ "libm",
2506
+ ]
2507
+
2508
+ [[package]]
2509
+ name = "parking_lot"
2510
+ version = "0.12.5"
2511
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2512
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
2513
+ dependencies = [
2514
+ "lock_api",
2515
+ "parking_lot_core",
2516
+ ]
2517
+
2518
+ [[package]]
2519
+ name = "parking_lot_core"
2520
+ version = "0.9.12"
2521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2522
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
2523
+ dependencies = [
2524
+ "cfg-if",
2525
+ "libc",
2526
+ "redox_syscall",
2527
+ "smallvec",
2528
+ "windows-link",
2529
+ ]
2530
+
2531
+ [[package]]
2532
+ name = "percent-encoding"
2533
+ version = "2.3.2"
2534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2535
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
2536
+
2537
+ [[package]]
2538
+ name = "pest"
2539
+ version = "2.8.8"
2540
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2541
+ checksum = "7df728be843c7070fab6ab7c328c4e9e9d78e23bf749c0669c86ee7ebfa050a2"
2542
+ dependencies = [
2543
+ "memchr",
2544
+ "ucd-trie",
2545
+ ]
2546
+
2547
+ [[package]]
2548
+ name = "pest_derive"
2549
+ version = "2.8.8"
2550
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2551
+ checksum = "9e2dd6fc3b26b3462ee188aac870f5a41d398f1cd5e2408d16531bd71c9591fd"
2552
+ dependencies = [
2553
+ "pest",
2554
+ "pest_generator",
2555
+ ]
2556
+
2557
+ [[package]]
2558
+ name = "pest_generator"
2559
+ version = "2.8.8"
2560
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2561
+ checksum = "6a7a9205cfb6f596a9e8b689c0a15f9ceb7a1aafae7aaf788150ac65b29975b6"
2562
+ dependencies = [
2563
+ "pest",
2564
+ "pest_meta",
2565
+ "proc-macro2",
2566
+ "quote",
2567
+ "syn 2.0.119",
2568
+ ]
2569
+
2570
+ [[package]]
2571
+ name = "pest_meta"
2572
+ version = "2.8.8"
2573
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2574
+ checksum = "85abd351c0de1e8384fc791a0737111a350394937e92b956b743dac12429f57c"
2575
+ dependencies = [
2576
+ "pest",
2577
+ ]
2578
+
2579
+ [[package]]
2580
+ name = "phf"
2581
+ version = "0.11.3"
2582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2583
+ checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
2584
+ dependencies = [
2585
+ "phf_macros",
2586
+ "phf_shared",
2587
+ ]
2588
+
2589
+ [[package]]
2590
+ name = "phf_codegen"
2591
+ version = "0.11.3"
2592
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2593
+ checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a"
2594
+ dependencies = [
2595
+ "phf_generator",
2596
+ "phf_shared",
2597
+ ]
2598
+
2599
+ [[package]]
2600
+ name = "phf_generator"
2601
+ version = "0.11.3"
2602
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2603
+ checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
2604
+ dependencies = [
2605
+ "phf_shared",
2606
+ "rand 0.8.7",
2607
+ ]
2608
+
2609
+ [[package]]
2610
+ name = "phf_macros"
2611
+ version = "0.11.3"
2612
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2613
+ checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216"
2614
+ dependencies = [
2615
+ "phf_generator",
2616
+ "phf_shared",
2617
+ "proc-macro2",
2618
+ "quote",
2619
+ "syn 2.0.119",
2620
+ ]
2621
+
2622
+ [[package]]
2623
+ name = "phf_shared"
2624
+ version = "0.11.3"
2625
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2626
+ checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
2627
+ dependencies = [
2628
+ "siphasher",
2629
+ ]
2630
+
2631
+ [[package]]
2632
+ name = "pin-project-lite"
2633
+ version = "0.2.17"
2634
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2635
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
2636
+
2637
+ [[package]]
2638
+ name = "pin-utils"
2639
+ version = "0.1.0"
2640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2641
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
2642
+
2643
+ [[package]]
2644
+ name = "pkg-config"
2645
+ version = "0.3.33"
2646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2647
+ checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
2648
+
2649
+ [[package]]
2650
+ name = "portable-atomic"
2651
+ version = "1.14.0"
2652
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2653
+ checksum = "3d20d5497ef88037a52ff98267d066e7f11fcc5e99bbfbd58a42336193aacec3"
2654
+
2655
+ [[package]]
2656
+ name = "potential_utf"
2657
+ version = "0.1.5"
2658
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2659
+ checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
2660
+ dependencies = [
2661
+ "zerovec",
2662
+ ]
2663
+
2664
+ [[package]]
2665
+ name = "powerfmt"
2666
+ version = "0.2.0"
2667
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2668
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
2669
+
2670
+ [[package]]
2671
+ name = "ppv-lite86"
2672
+ version = "0.2.21"
2673
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2674
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
2675
+ dependencies = [
2676
+ "zerocopy",
2677
+ ]
2678
+
2679
+ [[package]]
2680
+ name = "proc-macro-crate"
2681
+ version = "3.5.0"
2682
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2683
+ checksum = "e67ba7e9b2b56446f1d419b1d807906278ffa1a658a8a5d8a39dcb1f5a78614f"
2684
+ dependencies = [
2685
+ "toml_edit",
2686
+ ]
2687
+
2688
+ [[package]]
2689
+ name = "proc-macro2"
2690
+ version = "1.0.107"
2691
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2692
+ checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
2693
+ dependencies = [
2694
+ "unicode-ident",
2695
+ ]
2696
+
2697
+ [[package]]
2698
+ name = "proptest"
2699
+ version = "1.11.0"
2700
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2701
+ checksum = "4b45fcc2344c680f5025fe57779faef368840d0bd1f42f216291f0dc4ace4744"
2702
+ dependencies = [
2703
+ "bit-set 0.8.0",
2704
+ "bit-vec 0.8.0",
2705
+ "bitflags 2.13.1",
2706
+ "num-traits",
2707
+ "rand 0.9.5",
2708
+ "rand_chacha 0.9.0",
2709
+ "rand_xorshift",
2710
+ "regex-syntax",
2711
+ "rusty-fork",
2712
+ "tempfile",
2713
+ "unarray",
2714
+ ]
2715
+
2716
+ [[package]]
2717
+ name = "ptr_meta"
2718
+ version = "0.1.4"
2719
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2720
+ checksum = "0738ccf7ea06b608c10564b31debd4f5bc5e197fc8bfe088f68ae5ce81e7a4f1"
2721
+ dependencies = [
2722
+ "ptr_meta_derive",
2723
+ ]
2724
+
2725
+ [[package]]
2726
+ name = "ptr_meta_derive"
2727
+ version = "0.1.4"
2728
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2729
+ checksum = "16b845dbfca988fa33db069c0e230574d15a3088f147a87b64c7589eb662c9ac"
2730
+ dependencies = [
2731
+ "proc-macro2",
2732
+ "quote",
2733
+ "syn 1.0.109",
2734
+ ]
2735
+
2736
+ [[package]]
2737
+ name = "pyo3"
2738
+ version = "0.29.2"
2739
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2740
+ checksum = "4688ddedf473e32662b9b067670129a8afb8c18e351482c70d62ba4a88171e8b"
2741
+ dependencies = [
2742
+ "libc",
2743
+ "once_cell",
2744
+ "portable-atomic",
2745
+ "pyo3-build-config",
2746
+ "pyo3-ffi",
2747
+ "pyo3-macros",
2748
+ ]
2749
+
2750
+ [[package]]
2751
+ name = "pyo3-build-config"
2752
+ version = "0.29.2"
2753
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2754
+ checksum = "f41027e41b4bd03f6e60f9f417fe24a6341a6bb744edd62b6f709f2a52ea30e9"
2755
+ dependencies = [
2756
+ "target-lexicon",
2757
+ ]
2758
+
2759
+ [[package]]
2760
+ name = "pyo3-ffi"
2761
+ version = "0.29.2"
2762
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2763
+ checksum = "e591a95526fead067432c3b3a33fc74770b87b1e04e73671090d9c2055a2b327"
2764
+ dependencies = [
2765
+ "libc",
2766
+ "pyo3-build-config",
2767
+ ]
2768
+
2769
+ [[package]]
2770
+ name = "pyo3-macros"
2771
+ version = "0.29.2"
2772
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2773
+ checksum = "73225868fc1cd84eef2c3c230ddb91273bf1de46aeb8a4248da76d32a0924a1c"
2774
+ dependencies = [
2775
+ "proc-macro2",
2776
+ "pyo3-macros-backend",
2777
+ "quote",
2778
+ "syn 2.0.119",
2779
+ ]
2780
+
2781
+ [[package]]
2782
+ name = "pyo3-macros-backend"
2783
+ version = "0.29.2"
2784
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2785
+ checksum = "571575aa3749fa6216757dd47d2a3e7ef360f329a40f0666a9fbd14889024952"
2786
+ dependencies = [
2787
+ "heck",
2788
+ "proc-macro2",
2789
+ "quote",
2790
+ "syn 2.0.119",
2791
+ ]
2792
+
2793
+ [[package]]
2794
+ name = "quick-error"
2795
+ version = "1.2.3"
2796
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2797
+ checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
2798
+
2799
+ [[package]]
2800
+ name = "quinn"
2801
+ version = "0.11.11"
2802
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2803
+ checksum = "0c1a41e437b6bbd489372cd4971de128e85c855f56c57f283d20ff016cf7c0a8"
2804
+ dependencies = [
2805
+ "bytes",
2806
+ "cfg_aliases",
2807
+ "pin-project-lite",
2808
+ "quinn-proto",
2809
+ "quinn-udp",
2810
+ "rustc-hash",
2811
+ "rustls",
2812
+ "socket2",
2813
+ "thiserror 2.0.20",
2814
+ "tokio",
2815
+ "tracing",
2816
+ "web-time",
2817
+ ]
2818
+
2819
+ [[package]]
2820
+ name = "quinn-proto"
2821
+ version = "0.11.16"
2822
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2823
+ checksum = "2f4bfc015262b9df63c8845072ce59068853ff5872180c2ce2f13038b970e560"
2824
+ dependencies = [
2825
+ "aws-lc-rs",
2826
+ "bytes",
2827
+ "getrandom 0.4.3",
2828
+ "lru-slab",
2829
+ "rand 0.10.2",
2830
+ "rand_pcg",
2831
+ "ring",
2832
+ "rustc-hash",
2833
+ "rustls",
2834
+ "rustls-pki-types",
2835
+ "slab",
2836
+ "thiserror 2.0.20",
2837
+ "tinyvec",
2838
+ "tracing",
2839
+ "web-time",
2840
+ ]
2841
+
2842
+ [[package]]
2843
+ name = "quinn-udp"
2844
+ version = "0.5.15"
2845
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2846
+ checksum = "35a133f956daabe89a61a685c2649f13d82d5aa4bd5d12d1277e1072a21c0694"
2847
+ dependencies = [
2848
+ "cfg_aliases",
2849
+ "libc",
2850
+ "once_cell",
2851
+ "socket2",
2852
+ "tracing",
2853
+ "windows-sys 0.61.2",
2854
+ ]
2855
+
2856
+ [[package]]
2857
+ name = "quote"
2858
+ version = "1.0.47"
2859
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2860
+ checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
2861
+ dependencies = [
2862
+ "proc-macro2",
2863
+ ]
2864
+
2865
+ [[package]]
2866
+ name = "r-efi"
2867
+ version = "5.3.0"
2868
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2869
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
2870
+
2871
+ [[package]]
2872
+ name = "r-efi"
2873
+ version = "6.0.0"
2874
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2875
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
2876
+
2877
+ [[package]]
2878
+ name = "radium"
2879
+ version = "0.7.0"
2880
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2881
+ checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
2882
+
2883
+ [[package]]
2884
+ name = "rand"
2885
+ version = "0.8.7"
2886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2887
+ checksum = "22f6172bdec972074665ed81ed53b71da00bfc44b65a753cfde883ec4c702a1a"
2888
+ dependencies = [
2889
+ "libc",
2890
+ "rand_chacha 0.3.1",
2891
+ "rand_core 0.6.4",
2892
+ ]
2893
+
2894
+ [[package]]
2895
+ name = "rand"
2896
+ version = "0.9.5"
2897
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2898
+ checksum = "b9ef1d0d795eb7d84685bca4f72f3649f064e6641543d3a8c415898726a57b41"
2899
+ dependencies = [
2900
+ "rand_chacha 0.9.0",
2901
+ "rand_core 0.9.5",
2902
+ ]
2903
+
2904
+ [[package]]
2905
+ name = "rand"
2906
+ version = "0.10.2"
2907
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2908
+ checksum = "c7f5fa3a058cd35567ef9bfa5e75732bee0f9e4c55fa90477bef2dfcdbc4be80"
2909
+ dependencies = [
2910
+ "chacha20",
2911
+ "getrandom 0.4.3",
2912
+ "rand_core 0.10.1",
2913
+ ]
2914
+
2915
+ [[package]]
2916
+ name = "rand_chacha"
2917
+ version = "0.3.1"
2918
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2919
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
2920
+ dependencies = [
2921
+ "ppv-lite86",
2922
+ "rand_core 0.6.4",
2923
+ ]
2924
+
2925
+ [[package]]
2926
+ name = "rand_chacha"
2927
+ version = "0.9.0"
2928
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2929
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
2930
+ dependencies = [
2931
+ "ppv-lite86",
2932
+ "rand_core 0.9.5",
2933
+ ]
2934
+
2935
+ [[package]]
2936
+ name = "rand_core"
2937
+ version = "0.6.4"
2938
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2939
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2940
+ dependencies = [
2941
+ "getrandom 0.2.17",
2942
+ ]
2943
+
2944
+ [[package]]
2945
+ name = "rand_core"
2946
+ version = "0.9.5"
2947
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2948
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
2949
+ dependencies = [
2950
+ "getrandom 0.3.4",
2951
+ ]
2952
+
2953
+ [[package]]
2954
+ name = "rand_core"
2955
+ version = "0.10.1"
2956
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2957
+ checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69"
2958
+
2959
+ [[package]]
2960
+ name = "rand_distr"
2961
+ version = "0.5.1"
2962
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2963
+ checksum = "6a8615d50dcf34fa31f7ab52692afec947c4dd0ab803cc87cb3b0b4570ff7463"
2964
+ dependencies = [
2965
+ "num-traits",
2966
+ "rand 0.9.5",
2967
+ ]
2968
+
2969
+ [[package]]
2970
+ name = "rand_pcg"
2971
+ version = "0.10.2"
2972
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2973
+ checksum = "caa0f4137e1c0a72f4c651489402276c8e8e1cf081f3b0ba156d2cbeef09e86a"
2974
+ dependencies = [
2975
+ "rand_core 0.10.1",
2976
+ ]
2977
+
2978
+ [[package]]
2979
+ name = "rand_xorshift"
2980
+ version = "0.4.0"
2981
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2982
+ checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
2983
+ dependencies = [
2984
+ "rand_core 0.9.5",
2985
+ ]
2986
+
2987
+ [[package]]
2988
+ name = "ratatui"
2989
+ version = "0.30.2"
2990
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2991
+ checksum = "3274ba0a2c5e1bcad2a2005d20f4dc59dad26b2eb0940fb094500dba4099d57d"
2992
+ dependencies = [
2993
+ "instability",
2994
+ "ratatui-core",
2995
+ "ratatui-crossterm",
2996
+ "ratatui-macros",
2997
+ "ratatui-termina",
2998
+ "ratatui-termwiz",
2999
+ "ratatui-widgets",
3000
+ "serde",
3001
+ ]
3002
+
3003
+ [[package]]
3004
+ name = "ratatui-core"
3005
+ version = "0.1.2"
3006
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3007
+ checksum = "cbb175c433c8e28a809d1f5773a2ae96e68c0ce40db865cbab1020bf33ae479c"
3008
+ dependencies = [
3009
+ "bitflags 2.13.1",
3010
+ "compact_str",
3011
+ "critical-section",
3012
+ "hashbrown 0.17.1",
3013
+ "itertools",
3014
+ "kasuari",
3015
+ "lru",
3016
+ "palette",
3017
+ "serde",
3018
+ "strum",
3019
+ "thiserror 2.0.20",
3020
+ "unicode-segmentation",
3021
+ "unicode-truncate",
3022
+ "unicode-width",
3023
+ ]
3024
+
3025
+ [[package]]
3026
+ name = "ratatui-crossterm"
3027
+ version = "0.1.2"
3028
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3029
+ checksum = "567584a3b0e6a8203c23de40b4861497266725eb5363dbfd18a1edd603cca9f0"
3030
+ dependencies = [
3031
+ "cfg-if",
3032
+ "crossterm",
3033
+ "instability",
3034
+ "ratatui-core",
3035
+ ]
3036
+
3037
+ [[package]]
3038
+ name = "ratatui-macros"
3039
+ version = "0.7.2"
3040
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3041
+ checksum = "ed7dc68daa7498a43e4d68e0eb078427e10c38fbcfbb1e42d955f1fa2140d814"
3042
+ dependencies = [
3043
+ "ratatui-core",
3044
+ "ratatui-widgets",
3045
+ ]
3046
+
3047
+ [[package]]
3048
+ name = "ratatui-termina"
3049
+ version = "0.1.0"
3050
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3051
+ checksum = "c0bf912d9e66f057a759d92e386a280ea886b352ab757d6ac4d653c7ed2c43c2"
3052
+ dependencies = [
3053
+ "instability",
3054
+ "ratatui-core",
3055
+ "termina",
3056
+ ]
3057
+
3058
+ [[package]]
3059
+ name = "ratatui-termwiz"
3060
+ version = "0.1.2"
3061
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3062
+ checksum = "faf03e0380b7744054d6cb74224fe3adf062a029754933f575ca1e3b4c2ce977"
3063
+ dependencies = [
3064
+ "ratatui-core",
3065
+ "termwiz",
3066
+ ]
3067
+
3068
+ [[package]]
3069
+ name = "ratatui-widgets"
3070
+ version = "0.3.2"
3071
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3072
+ checksum = "66e3d19bcc9130ca376277d93b60767ff121ace3be06f5f95f81dd68956407d1"
3073
+ dependencies = [
3074
+ "bitflags 2.13.1",
3075
+ "hashbrown 0.17.1",
3076
+ "indoc",
3077
+ "instability",
3078
+ "itertools",
3079
+ "line-clipping",
3080
+ "ratatui-core",
3081
+ "serde",
3082
+ "strum",
3083
+ "time",
3084
+ "unicode-segmentation",
3085
+ "unicode-width",
3086
+ ]
3087
+
3088
+ [[package]]
3089
+ name = "redox_syscall"
3090
+ version = "0.5.18"
3091
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3092
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
3093
+ dependencies = [
3094
+ "bitflags 2.13.1",
3095
+ ]
3096
+
3097
+ [[package]]
3098
+ name = "ref-cast"
3099
+ version = "1.0.26"
3100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3101
+ checksum = "216e8f773d7923bcba9ceb86a86c93cabb3903a11872fc3f138c49630e50b96d"
3102
+ dependencies = [
3103
+ "ref-cast-impl",
3104
+ ]
3105
+
3106
+ [[package]]
3107
+ name = "ref-cast-impl"
3108
+ version = "1.0.26"
3109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3110
+ checksum = "2c9283685feec7d69af75fb0e858d5e7378f33fe4fc699383b2916ab9273e03c"
3111
+ dependencies = [
3112
+ "proc-macro2",
3113
+ "quote",
3114
+ "syn 3.0.3",
3115
+ ]
3116
+
3117
+ [[package]]
3118
+ name = "regex"
3119
+ version = "1.13.1"
3120
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3121
+ checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d"
3122
+ dependencies = [
3123
+ "aho-corasick",
3124
+ "memchr",
3125
+ "regex-automata",
3126
+ "regex-syntax",
3127
+ ]
3128
+
3129
+ [[package]]
3130
+ name = "regex-automata"
3131
+ version = "0.4.18"
3132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3133
+ checksum = "ad8553b9b26413251cbf30e620595c7a41b3887f03da04579c0e6b0d6a06b4b2"
3134
+ dependencies = [
3135
+ "aho-corasick",
3136
+ "memchr",
3137
+ "regex-syntax",
3138
+ ]
3139
+
3140
+ [[package]]
3141
+ name = "regex-lite"
3142
+ version = "0.1.9"
3143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3144
+ checksum = "cab834c73d247e67f4fae452806d17d3c7501756d98c8808d7c9c7aa7d18f973"
3145
+
3146
+ [[package]]
3147
+ name = "regex-syntax"
3148
+ version = "0.8.11"
3149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3150
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
3151
+
3152
+ [[package]]
3153
+ name = "rend"
3154
+ version = "0.4.2"
3155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3156
+ checksum = "71fe3824f5629716b1589be05dacd749f6aa084c87e00e016714a8cdfccc997c"
3157
+ dependencies = [
3158
+ "bytecheck",
3159
+ ]
3160
+
3161
+ [[package]]
3162
+ name = "reqwest"
3163
+ version = "0.13.4"
3164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3165
+ checksum = "219c5811de6525e5416c7d5d53bb656d3afdbc6c5af816e0802bcfa42dbdc1c3"
3166
+ dependencies = [
3167
+ "base64 0.22.1",
3168
+ "bytes",
3169
+ "encoding_rs",
3170
+ "futures-core",
3171
+ "futures-util",
3172
+ "h2",
3173
+ "http 1.5.0",
3174
+ "http-body 1.1.0",
3175
+ "http-body-util",
3176
+ "hyper",
3177
+ "hyper-rustls",
3178
+ "hyper-util",
3179
+ "js-sys",
3180
+ "log",
3181
+ "mime",
3182
+ "percent-encoding",
3183
+ "pin-project-lite",
3184
+ "quinn",
3185
+ "rustls",
3186
+ "rustls-pki-types",
3187
+ "rustls-platform-verifier",
3188
+ "sync_wrapper",
3189
+ "tokio",
3190
+ "tokio-rustls",
3191
+ "tokio-util",
3192
+ "tower",
3193
+ "tower-http 0.6.11",
3194
+ "tower-service",
3195
+ "url",
3196
+ "wasm-bindgen",
3197
+ "wasm-bindgen-futures",
3198
+ "wasm-streams",
3199
+ "web-sys",
3200
+ ]
3201
+
3202
+ [[package]]
3203
+ name = "ring"
3204
+ version = "0.17.14"
3205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3206
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
3207
+ dependencies = [
3208
+ "cc",
3209
+ "cfg-if",
3210
+ "getrandom 0.2.17",
3211
+ "libc",
3212
+ "untrusted",
3213
+ "windows-sys 0.52.0",
3214
+ ]
3215
+
3216
+ [[package]]
3217
+ name = "rkyv"
3218
+ version = "0.7.46"
3219
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3220
+ checksum = "2297bf9c81a3f0dc96bc9521370b88f054168c29826a75e89c55ff196e7ed6a1"
3221
+ dependencies = [
3222
+ "bitvec",
3223
+ "bytecheck",
3224
+ "bytes",
3225
+ "hashbrown 0.12.3",
3226
+ "ptr_meta",
3227
+ "rend",
3228
+ "rkyv_derive",
3229
+ "seahash",
3230
+ "tinyvec",
3231
+ "uuid",
3232
+ ]
3233
+
3234
+ [[package]]
3235
+ name = "rkyv_derive"
3236
+ version = "0.7.46"
3237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3238
+ checksum = "84d7b42d4b8d06048d3ac8db0eb31bcb942cbeb709f0b5f2b2ebde398d3038f5"
3239
+ dependencies = [
3240
+ "proc-macro2",
3241
+ "quote",
3242
+ "syn 1.0.109",
3243
+ ]
3244
+
3245
+ [[package]]
3246
+ name = "rust_decimal"
3247
+ version = "1.42.1"
3248
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3249
+ checksum = "be2a24f50780bc85f09cc6ac299bdf1424302742d77221106859c9d8b102126a"
3250
+ dependencies = [
3251
+ "arrayvec",
3252
+ "borsh",
3253
+ "bytes",
3254
+ "num-traits",
3255
+ "rand 0.8.7",
3256
+ "rkyv",
3257
+ "serde",
3258
+ "serde_json",
3259
+ "wasm-bindgen",
3260
+ ]
3261
+
3262
+ [[package]]
3263
+ name = "rust_decimal_macros"
3264
+ version = "1.40.0"
3265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3266
+ checksum = "74a5a6f027e892c7a035c6fddb50435a1fbf5a734ffc0c2a9fed4d0221440519"
3267
+ dependencies = [
3268
+ "quote",
3269
+ "syn 2.0.119",
3270
+ ]
3271
+
3272
+ [[package]]
3273
+ name = "rustc-hash"
3274
+ version = "2.1.3"
3275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3276
+ checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
3277
+
3278
+ [[package]]
3279
+ name = "rustc_version"
3280
+ version = "0.4.1"
3281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3282
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
3283
+ dependencies = [
3284
+ "semver",
3285
+ ]
3286
+
3287
+ [[package]]
3288
+ name = "rustix"
3289
+ version = "1.1.4"
3290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3291
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
3292
+ dependencies = [
3293
+ "bitflags 2.13.1",
3294
+ "errno",
3295
+ "libc",
3296
+ "linux-raw-sys",
3297
+ "windows-sys 0.61.2",
3298
+ ]
3299
+
3300
+ [[package]]
3301
+ name = "rustls"
3302
+ version = "0.23.43"
3303
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3304
+ checksum = "0283386ce02abc0151e1761d08802dfe86c173b0b494af5cbc086574e453da06"
3305
+ dependencies = [
3306
+ "aws-lc-rs",
3307
+ "once_cell",
3308
+ "rustls-pki-types",
3309
+ "rustls-webpki",
3310
+ "subtle",
3311
+ "zeroize",
3312
+ ]
3313
+
3314
+ [[package]]
3315
+ name = "rustls-native-certs"
3316
+ version = "0.8.4"
3317
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3318
+ checksum = "dab5152771c58876a2146916e53e35057e1a4dfa2b9df0f0305b07f611fdea4d"
3319
+ dependencies = [
3320
+ "openssl-probe",
3321
+ "rustls-pki-types",
3322
+ "schannel",
3323
+ "security-framework",
3324
+ ]
3325
+
3326
+ [[package]]
3327
+ name = "rustls-pki-types"
3328
+ version = "1.15.1"
3329
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3330
+ checksum = "2f4925028c7eb5d1fcdaf196971378ed9d2c1c4efc7dc5d011256f76c99c0a96"
3331
+ dependencies = [
3332
+ "web-time",
3333
+ "zeroize",
3334
+ ]
3335
+
3336
+ [[package]]
3337
+ name = "rustls-platform-verifier"
3338
+ version = "0.7.0"
3339
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3340
+ checksum = "26d1e2536ce4f35f4846aa13bff16bd0ff40157cdb14cc056c7b14ba41233ba0"
3341
+ dependencies = [
3342
+ "core-foundation",
3343
+ "core-foundation-sys",
3344
+ "jni",
3345
+ "log",
3346
+ "once_cell",
3347
+ "rustls",
3348
+ "rustls-native-certs",
3349
+ "rustls-platform-verifier-android",
3350
+ "rustls-webpki",
3351
+ "security-framework",
3352
+ "security-framework-sys",
3353
+ "webpki-root-certs",
3354
+ "windows-sys 0.61.2",
3355
+ ]
3356
+
3357
+ [[package]]
3358
+ name = "rustls-platform-verifier-android"
3359
+ version = "0.1.1"
3360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3361
+ checksum = "f87165f0995f63a9fbeea62b64d10b4d9d8e78ec6d7d51fb2125fda7bb36788f"
3362
+
3363
+ [[package]]
3364
+ name = "rustls-webpki"
3365
+ version = "0.103.13"
3366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3367
+ checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
3368
+ dependencies = [
3369
+ "aws-lc-rs",
3370
+ "ring",
3371
+ "rustls-pki-types",
3372
+ "untrusted",
3373
+ ]
3374
+
3375
+ [[package]]
3376
+ name = "rustversion"
3377
+ version = "1.0.23"
3378
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3379
+ checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
3380
+
3381
+ [[package]]
3382
+ name = "rusty-fork"
3383
+ version = "0.3.1"
3384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3385
+ checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2"
3386
+ dependencies = [
3387
+ "fnv",
3388
+ "quick-error",
3389
+ "tempfile",
3390
+ "wait-timeout",
3391
+ ]
3392
+
3393
+ [[package]]
3394
+ name = "ryu"
3395
+ version = "1.0.23"
3396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3397
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
3398
+
3399
+ [[package]]
3400
+ name = "same-file"
3401
+ version = "1.0.6"
3402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3403
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
3404
+ dependencies = [
3405
+ "winapi-util",
3406
+ ]
3407
+
3408
+ [[package]]
3409
+ name = "schannel"
3410
+ version = "0.1.29"
3411
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3412
+ checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939"
3413
+ dependencies = [
3414
+ "windows-sys 0.61.2",
3415
+ ]
3416
+
3417
+ [[package]]
3418
+ name = "schemars"
3419
+ version = "1.2.2"
3420
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3421
+ checksum = "687274d293b6cdc6e73e0fee520bf2049650090d7164f87672d212a3c530cf4a"
3422
+ dependencies = [
3423
+ "dyn-clone",
3424
+ "ref-cast",
3425
+ "schemars_derive",
3426
+ "serde",
3427
+ "serde_json",
3428
+ ]
3429
+
3430
+ [[package]]
3431
+ name = "schemars_derive"
3432
+ version = "1.2.2"
3433
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3434
+ checksum = "d98c67716b46af2f0b8cf752abc930f6f9aecfbf671ecfb531db8a31dbe4e2ba"
3435
+ dependencies = [
3436
+ "proc-macro2",
3437
+ "quote",
3438
+ "serde_derive_internals",
3439
+ "syn 3.0.3",
3440
+ ]
3441
+
3442
+ [[package]]
3443
+ name = "scoped-tls"
3444
+ version = "1.0.1"
3445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3446
+ checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"
3447
+
3448
+ [[package]]
3449
+ name = "scopeguard"
3450
+ version = "1.2.0"
3451
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3452
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
3453
+
3454
+ [[package]]
3455
+ name = "seahash"
3456
+ version = "4.1.0"
3457
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3458
+ checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b"
3459
+
3460
+ [[package]]
3461
+ name = "security-framework"
3462
+ version = "3.7.0"
3463
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3464
+ checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
3465
+ dependencies = [
3466
+ "bitflags 2.13.1",
3467
+ "core-foundation",
3468
+ "core-foundation-sys",
3469
+ "libc",
3470
+ "security-framework-sys",
3471
+ ]
3472
+
3473
+ [[package]]
3474
+ name = "security-framework-sys"
3475
+ version = "2.17.0"
3476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3477
+ checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
3478
+ dependencies = [
3479
+ "core-foundation-sys",
3480
+ "libc",
3481
+ ]
3482
+
3483
+ [[package]]
3484
+ name = "semver"
3485
+ version = "1.0.28"
3486
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3487
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
3488
+ dependencies = [
3489
+ "serde",
3490
+ "serde_core",
3491
+ ]
3492
+
3493
+ [[package]]
3494
+ name = "serde"
3495
+ version = "1.0.229"
3496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3497
+ checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
3498
+ dependencies = [
3499
+ "serde_core",
3500
+ "serde_derive",
3501
+ ]
3502
+
3503
+ [[package]]
3504
+ name = "serde_core"
3505
+ version = "1.0.229"
3506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3507
+ checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
3508
+ dependencies = [
3509
+ "serde_derive",
3510
+ ]
3511
+
3512
+ [[package]]
3513
+ name = "serde_derive"
3514
+ version = "1.0.229"
3515
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3516
+ checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
3517
+ dependencies = [
3518
+ "proc-macro2",
3519
+ "quote",
3520
+ "syn 3.0.3",
3521
+ ]
3522
+
3523
+ [[package]]
3524
+ name = "serde_derive_internals"
3525
+ version = "0.30.0"
3526
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3527
+ checksum = "f852137cce035d6a4df67ccce505ff6b3e9fd3a10e3e52b24dc71e650bb1a9bd"
3528
+ dependencies = [
3529
+ "proc-macro2",
3530
+ "quote",
3531
+ "syn 3.0.3",
3532
+ ]
3533
+
3534
+ [[package]]
3535
+ name = "serde_json"
3536
+ version = "1.0.151"
3537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3538
+ checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
3539
+ dependencies = [
3540
+ "itoa",
3541
+ "memchr",
3542
+ "serde",
3543
+ "serde_core",
3544
+ "zmij",
3545
+ ]
3546
+
3547
+ [[package]]
3548
+ name = "serde_path_to_error"
3549
+ version = "0.1.20"
3550
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3551
+ checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457"
3552
+ dependencies = [
3553
+ "itoa",
3554
+ "serde",
3555
+ "serde_core",
3556
+ ]
3557
+
3558
+ [[package]]
3559
+ name = "serde_urlencoded"
3560
+ version = "0.7.1"
3561
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3562
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
3563
+ dependencies = [
3564
+ "form_urlencoded",
3565
+ "itoa",
3566
+ "ryu",
3567
+ "serde",
3568
+ ]
3569
+
3570
+ [[package]]
3571
+ name = "sha1"
3572
+ version = "0.10.7"
3573
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3574
+ checksum = "a978451301f4db1d02937a4ab3ccce137717b81826e79b7d49ffe3244a13c3b8"
3575
+ dependencies = [
3576
+ "cfg-if",
3577
+ "cpufeatures 0.2.17",
3578
+ "digest 0.10.7",
3579
+ ]
3580
+
3581
+ [[package]]
3582
+ name = "sha2"
3583
+ version = "0.10.9"
3584
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3585
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
3586
+ dependencies = [
3587
+ "cfg-if",
3588
+ "cpufeatures 0.2.17",
3589
+ "digest 0.10.7",
3590
+ ]
3591
+
3592
+ [[package]]
3593
+ name = "sha2"
3594
+ version = "0.11.0"
3595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3596
+ checksum = "446ba717509524cb3f22f17ecc096f10f4822d76ab5c0b9822c5f9c284e825f4"
3597
+ dependencies = [
3598
+ "cfg-if",
3599
+ "cpufeatures 0.3.0",
3600
+ "digest 0.11.3",
3601
+ ]
3602
+
3603
+ [[package]]
3604
+ name = "sharded-slab"
3605
+ version = "0.1.7"
3606
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3607
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
3608
+ dependencies = [
3609
+ "lazy_static",
3610
+ ]
3611
+
3612
+ [[package]]
3613
+ name = "shlex"
3614
+ version = "2.0.1"
3615
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3616
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
3617
+
3618
+ [[package]]
3619
+ name = "signal-hook"
3620
+ version = "0.3.18"
3621
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3622
+ checksum = "d881a16cf4426aa584979d30bd82cb33429027e42122b169753d6ef1085ed6e2"
3623
+ dependencies = [
3624
+ "libc",
3625
+ "signal-hook-registry",
3626
+ ]
3627
+
3628
+ [[package]]
3629
+ name = "signal-hook-mio"
3630
+ version = "0.2.5"
3631
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3632
+ checksum = "b75a19a7a740b25bc7944bdee6172368f988763b744e3d4dfe753f6b4ece40cc"
3633
+ dependencies = [
3634
+ "libc",
3635
+ "mio",
3636
+ "signal-hook",
3637
+ ]
3638
+
3639
+ [[package]]
3640
+ name = "signal-hook-registry"
3641
+ version = "1.4.8"
3642
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3643
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
3644
+ dependencies = [
3645
+ "errno",
3646
+ "libc",
3647
+ ]
3648
+
3649
+ [[package]]
3650
+ name = "simd-adler32"
3651
+ version = "0.3.10"
3652
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3653
+ checksum = "3a219298ac11a56ea9a6d2120044824d6f01aeb034955e7af7bc16858527deea"
3654
+
3655
+ [[package]]
3656
+ name = "simd_cesu8"
3657
+ version = "1.2.0"
3658
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3659
+ checksum = "11031e251abf8611c80f460e19dbdeb54a66db918e49c65a7065b46ac7aec520"
3660
+ dependencies = [
3661
+ "rustc_version",
3662
+ "simdutf8",
3663
+ ]
3664
+
3665
+ [[package]]
3666
+ name = "simdutf8"
3667
+ version = "0.1.5"
3668
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3669
+ checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
3670
+
3671
+ [[package]]
3672
+ name = "siphasher"
3673
+ version = "1.0.3"
3674
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3675
+ checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649"
3676
+
3677
+ [[package]]
3678
+ name = "slab"
3679
+ version = "0.4.12"
3680
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3681
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
3682
+
3683
+ [[package]]
3684
+ name = "smallvec"
3685
+ version = "1.15.2"
3686
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3687
+ checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
3688
+
3689
+ [[package]]
3690
+ name = "socket2"
3691
+ version = "0.6.5"
3692
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3693
+ checksum = "c3d1e2c7f27f8d4cb10542a02c49005dbd6e93095799d6f3be745fae9f8fedd4"
3694
+ dependencies = [
3695
+ "libc",
3696
+ "windows-sys 0.61.2",
3697
+ ]
3698
+
3699
+ [[package]]
3700
+ name = "stable_deref_trait"
3701
+ version = "1.2.1"
3702
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3703
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
3704
+
3705
+ [[package]]
3706
+ name = "stateright"
3707
+ version = "0.31.0"
3708
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3709
+ checksum = "fd1157f21b11916f90fe1f2ac9a8d0e09a8813b28701584141060f414eedf6ba"
3710
+ dependencies = [
3711
+ "ahash 0.8.12",
3712
+ "choice",
3713
+ "crossbeam-utils",
3714
+ "dashmap",
3715
+ "id-set",
3716
+ "log",
3717
+ "nohash-hasher",
3718
+ "parking_lot",
3719
+ "rand 0.9.5",
3720
+ "serde",
3721
+ "serde_json",
3722
+ "tiny_http",
3723
+ ]
3724
+
3725
+ [[package]]
3726
+ name = "static_assertions"
3727
+ version = "1.1.0"
3728
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3729
+ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
3730
+
3731
+ [[package]]
3732
+ name = "strsim"
3733
+ version = "0.11.1"
3734
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3735
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
3736
+
3737
+ [[package]]
3738
+ name = "strum"
3739
+ version = "0.28.0"
3740
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3741
+ checksum = "9628de9b8791db39ceda2b119bbe13134770b56c138ec1d3af810d045c04f9bd"
3742
+ dependencies = [
3743
+ "strum_macros",
3744
+ ]
3745
+
3746
+ [[package]]
3747
+ name = "strum_macros"
3748
+ version = "0.28.0"
3749
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3750
+ checksum = "ab85eea0270ee17587ed4156089e10b9e6880ee688791d45a905f5b1ca36f664"
3751
+ dependencies = [
3752
+ "heck",
3753
+ "proc-macro2",
3754
+ "quote",
3755
+ "syn 2.0.119",
3756
+ ]
3757
+
3758
+ [[package]]
3759
+ name = "subtle"
3760
+ version = "2.6.1"
3761
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3762
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
3763
+
3764
+ [[package]]
3765
+ name = "syn"
3766
+ version = "1.0.109"
3767
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3768
+ checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
3769
+ dependencies = [
3770
+ "proc-macro2",
3771
+ "quote",
3772
+ "unicode-ident",
3773
+ ]
3774
+
3775
+ [[package]]
3776
+ name = "syn"
3777
+ version = "2.0.119"
3778
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3779
+ checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
3780
+ dependencies = [
3781
+ "proc-macro2",
3782
+ "quote",
3783
+ "unicode-ident",
3784
+ ]
3785
+
3786
+ [[package]]
3787
+ name = "syn"
3788
+ version = "3.0.3"
3789
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3790
+ checksum = "53e9bae58849f64dfa4f5d5ae372c8341f7305f82a3868709269343628b659a3"
3791
+ dependencies = [
3792
+ "proc-macro2",
3793
+ "quote",
3794
+ "unicode-ident",
3795
+ ]
3796
+
3797
+ [[package]]
3798
+ name = "sync_wrapper"
3799
+ version = "1.0.2"
3800
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3801
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
3802
+ dependencies = [
3803
+ "futures-core",
3804
+ ]
3805
+
3806
+ [[package]]
3807
+ name = "synstructure"
3808
+ version = "0.13.2"
3809
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3810
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
3811
+ dependencies = [
3812
+ "proc-macro2",
3813
+ "quote",
3814
+ "syn 2.0.119",
3815
+ ]
3816
+
3817
+ [[package]]
3818
+ name = "tap"
3819
+ version = "1.0.1"
3820
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3821
+ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
3822
+
3823
+ [[package]]
3824
+ name = "tar"
3825
+ version = "0.4.46"
3826
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3827
+ checksum = "3f6221d9a6003c78398e3b239969f352578258df48c8eb051caadae0015bc840"
3828
+ dependencies = [
3829
+ "filetime",
3830
+ "libc",
3831
+ "xattr",
3832
+ ]
3833
+
3834
+ [[package]]
3835
+ name = "target-lexicon"
3836
+ version = "0.13.5"
3837
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3838
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
3839
+
3840
+ [[package]]
3841
+ name = "tempfile"
3842
+ version = "3.27.0"
3843
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3844
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
3845
+ dependencies = [
3846
+ "fastrand",
3847
+ "getrandom 0.4.3",
3848
+ "once_cell",
3849
+ "rustix",
3850
+ "windows-sys 0.61.2",
3851
+ ]
3852
+
3853
+ [[package]]
3854
+ name = "termina"
3855
+ version = "0.3.3"
3856
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3857
+ checksum = "9048a889effe34a5cddee0af7f53285198b16dca3be510858d38dfdb3e62a04e"
3858
+ dependencies = [
3859
+ "bitflags 2.13.1",
3860
+ "parking_lot",
3861
+ "rustix",
3862
+ "signal-hook",
3863
+ "windows-sys 0.61.2",
3864
+ ]
3865
+
3866
+ [[package]]
3867
+ name = "terminfo"
3868
+ version = "0.9.0"
3869
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3870
+ checksum = "d4ea810f0692f9f51b382fff5893887bb4580f5fa246fde546e0b13e7fcee662"
3871
+ dependencies = [
3872
+ "fnv",
3873
+ "nom",
3874
+ "phf",
3875
+ "phf_codegen",
3876
+ ]
3877
+
3878
+ [[package]]
3879
+ name = "termios"
3880
+ version = "0.3.3"
3881
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3882
+ checksum = "411c5bf740737c7918b8b1fe232dca4dc9f8e754b8ad5e20966814001ed0ac6b"
3883
+ dependencies = [
3884
+ "libc",
3885
+ ]
3886
+
3887
+ [[package]]
3888
+ name = "termwiz"
3889
+ version = "0.23.3"
3890
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3891
+ checksum = "4676b37242ccbd1aabf56edb093a4827dc49086c0ffd764a5705899e0f35f8f7"
3892
+ dependencies = [
3893
+ "anyhow",
3894
+ "base64 0.22.1",
3895
+ "bitflags 2.13.1",
3896
+ "fancy-regex",
3897
+ "filedescriptor",
3898
+ "finl_unicode",
3899
+ "fixedbitset",
3900
+ "hex",
3901
+ "lazy_static",
3902
+ "libc",
3903
+ "log",
3904
+ "memmem",
3905
+ "nix 0.29.0",
3906
+ "num-derive",
3907
+ "num-traits",
3908
+ "ordered-float",
3909
+ "pest",
3910
+ "pest_derive",
3911
+ "phf",
3912
+ "sha2 0.10.9",
3913
+ "signal-hook",
3914
+ "siphasher",
3915
+ "terminfo",
3916
+ "termios",
3917
+ "thiserror 1.0.69",
3918
+ "ucd-trie",
3919
+ "unicode-segmentation",
3920
+ "vtparse",
3921
+ "wezterm-bidi",
3922
+ "wezterm-blob-leases",
3923
+ "wezterm-color-types",
3924
+ "wezterm-dynamic",
3925
+ "wezterm-input-types",
3926
+ "winapi",
3927
+ ]
3928
+
3929
+ [[package]]
3930
+ name = "thiserror"
3931
+ version = "1.0.69"
3932
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3933
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
3934
+ dependencies = [
3935
+ "thiserror-impl 1.0.69",
3936
+ ]
3937
+
3938
+ [[package]]
3939
+ name = "thiserror"
3940
+ version = "2.0.20"
3941
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3942
+ checksum = "ec86235f5fcc2a73650310756d2ac5b138a5780bbbdfae3eeccec992c435ba4f"
3943
+ dependencies = [
3944
+ "thiserror-impl 2.0.20",
3945
+ ]
3946
+
3947
+ [[package]]
3948
+ name = "thiserror-impl"
3949
+ version = "1.0.69"
3950
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3951
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
3952
+ dependencies = [
3953
+ "proc-macro2",
3954
+ "quote",
3955
+ "syn 2.0.119",
3956
+ ]
3957
+
3958
+ [[package]]
3959
+ name = "thiserror-impl"
3960
+ version = "2.0.20"
3961
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3962
+ checksum = "bc04cd3e1236dd4a98afca4569f2deb3f120e5422a4023be2cb683f8486292af"
3963
+ dependencies = [
3964
+ "proc-macro2",
3965
+ "quote",
3966
+ "syn 3.0.3",
3967
+ ]
3968
+
3969
+ [[package]]
3970
+ name = "thread_local"
3971
+ version = "1.1.10"
3972
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3973
+ checksum = "1ad99c4c6d32803332c548b1af0540b357b3f5fc0be8f6c6bfe8b2e6ae784070"
3974
+ dependencies = [
3975
+ "cfg-if",
3976
+ ]
3977
+
3978
+ [[package]]
3979
+ name = "time"
3980
+ version = "0.3.55"
3981
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3982
+ checksum = "cdb87b95ec50ddfa440816d227a17b2ccbdda963a316a727fda0fc4334f7d134"
3983
+ dependencies = [
3984
+ "deranged",
3985
+ "libc",
3986
+ "num-conv",
3987
+ "num_threads",
3988
+ "powerfmt",
3989
+ "serde_core",
3990
+ "time-core",
3991
+ "time-macros",
3992
+ ]
3993
+
3994
+ [[package]]
3995
+ name = "time-core"
3996
+ version = "0.1.9"
3997
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3998
+ checksum = "9e1c906769ad99c88eaa54e728060edef082f8e358ff32030cb7c7d315e81109"
3999
+
4000
+ [[package]]
4001
+ name = "time-macros"
4002
+ version = "0.2.32"
4003
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4004
+ checksum = "7e689342a48d2ea927c87ea50cabf8594854bf940e9310208848d680d668ed85"
4005
+ dependencies = [
4006
+ "num-conv",
4007
+ "time-core",
4008
+ ]
4009
+
4010
+ [[package]]
4011
+ name = "tiny_http"
4012
+ version = "0.12.0"
4013
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4014
+ checksum = "389915df6413a2e74fb181895f933386023c71110878cd0825588928e64cdc82"
4015
+ dependencies = [
4016
+ "ascii",
4017
+ "chunked_transfer",
4018
+ "httpdate",
4019
+ "log",
4020
+ ]
4021
+
4022
+ [[package]]
4023
+ name = "tinystr"
4024
+ version = "0.8.3"
4025
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4026
+ checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
4027
+ dependencies = [
4028
+ "displaydoc",
4029
+ "zerovec",
4030
+ ]
4031
+
4032
+ [[package]]
4033
+ name = "tinyvec"
4034
+ version = "1.12.0"
4035
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4036
+ checksum = "bb4ebadaa0af04fab11ae01eb5f9fdb5f9c5b875506e210e71c07873528baa7f"
4037
+ dependencies = [
4038
+ "tinyvec_macros",
4039
+ ]
4040
+
4041
+ [[package]]
4042
+ name = "tinyvec_macros"
4043
+ version = "0.1.1"
4044
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4045
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
4046
+
4047
+ [[package]]
4048
+ name = "tokio"
4049
+ version = "1.53.1"
4050
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4051
+ checksum = "202caea871b69668250d242070849eb495be178ed697a3e98aebce5bc81a0bed"
4052
+ dependencies = [
4053
+ "bytes",
4054
+ "libc",
4055
+ "mio",
4056
+ "pin-project-lite",
4057
+ "signal-hook-registry",
4058
+ "socket2",
4059
+ "tokio-macros",
4060
+ "windows-sys 0.61.2",
4061
+ ]
4062
+
4063
+ [[package]]
4064
+ name = "tokio-macros"
4065
+ version = "2.7.2"
4066
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4067
+ checksum = "78773a2a397f451582ce068015985c33193cf6dea8b74d2a639fe457b2f07b0e"
4068
+ dependencies = [
4069
+ "proc-macro2",
4070
+ "quote",
4071
+ "syn 3.0.3",
4072
+ ]
4073
+
4074
+ [[package]]
4075
+ name = "tokio-rustls"
4076
+ version = "0.26.4"
4077
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4078
+ checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
4079
+ dependencies = [
4080
+ "rustls",
4081
+ "tokio",
4082
+ ]
4083
+
4084
+ [[package]]
4085
+ name = "tokio-stream"
4086
+ version = "0.1.19"
4087
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4088
+ checksum = "a3d06f0b082ba57c26b79407372e57cf2a1e28124f78e9479fe80322cf53420b"
4089
+ dependencies = [
4090
+ "futures-core",
4091
+ "pin-project-lite",
4092
+ "tokio",
4093
+ ]
4094
+
4095
+ [[package]]
4096
+ name = "tokio-util"
4097
+ version = "0.7.19"
4098
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4099
+ checksum = "494815d09bf52b5548659851081238f0ca39ff638363907596da739561c62c52"
4100
+ dependencies = [
4101
+ "bytes",
4102
+ "futures-core",
4103
+ "futures-sink",
4104
+ "libc",
4105
+ "pin-project-lite",
4106
+ "tokio",
4107
+ ]
4108
+
4109
+ [[package]]
4110
+ name = "toml_datetime"
4111
+ version = "1.1.1+spec-1.1.0"
4112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4113
+ checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7"
4114
+ dependencies = [
4115
+ "serde_core",
4116
+ ]
4117
+
4118
+ [[package]]
4119
+ name = "toml_edit"
4120
+ version = "0.25.13+spec-1.1.0"
4121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4122
+ checksum = "6975367e4d2ef766d86af01ffad14b622fecc8d4357a998fbc4deb6e9bacaf9b"
4123
+ dependencies = [
4124
+ "indexmap",
4125
+ "toml_datetime",
4126
+ "toml_parser",
4127
+ "winnow",
4128
+ ]
4129
+
4130
+ [[package]]
4131
+ name = "toml_parser"
4132
+ version = "1.1.3+spec-1.1.0"
4133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4134
+ checksum = "1d38ac1cf9b95face32296c0a3ede1fdc270627c9d9c02a7274dd6d960dc4d56"
4135
+ dependencies = [
4136
+ "winnow",
4137
+ ]
4138
+
4139
+ [[package]]
4140
+ name = "tower"
4141
+ version = "0.5.3"
4142
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4143
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
4144
+ dependencies = [
4145
+ "futures-core",
4146
+ "futures-util",
4147
+ "pin-project-lite",
4148
+ "sync_wrapper",
4149
+ "tokio",
4150
+ "tower-layer",
4151
+ "tower-service",
4152
+ "tracing",
4153
+ ]
4154
+
4155
+ [[package]]
4156
+ name = "tower-http"
4157
+ version = "0.6.11"
4158
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4159
+ checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840"
4160
+ dependencies = [
4161
+ "bitflags 2.13.1",
4162
+ "bytes",
4163
+ "futures-util",
4164
+ "http 1.5.0",
4165
+ "http-body 1.1.0",
4166
+ "pin-project-lite",
4167
+ "tower",
4168
+ "tower-layer",
4169
+ "tower-service",
4170
+ "url",
4171
+ ]
4172
+
4173
+ [[package]]
4174
+ name = "tower-http"
4175
+ version = "0.7.0"
4176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4177
+ checksum = "b11f75e912b0c2be01b63d8cf8057b8c3f97cf34abb3d431a3a4c8675498e233"
4178
+ dependencies = [
4179
+ "bitflags 2.13.1",
4180
+ "bytes",
4181
+ "futures-util",
4182
+ "http 1.5.0",
4183
+ "http-body 1.1.0",
4184
+ "http-body-util",
4185
+ "percent-encoding",
4186
+ "pin-project-lite",
4187
+ "tower-layer",
4188
+ "tower-service",
4189
+ "tracing",
4190
+ ]
4191
+
4192
+ [[package]]
4193
+ name = "tower-layer"
4194
+ version = "0.3.3"
4195
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4196
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
4197
+
4198
+ [[package]]
4199
+ name = "tower-service"
4200
+ version = "0.3.3"
4201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4202
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
4203
+
4204
+ [[package]]
4205
+ name = "tracing"
4206
+ version = "0.1.44"
4207
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4208
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
4209
+ dependencies = [
4210
+ "log",
4211
+ "pin-project-lite",
4212
+ "tracing-attributes",
4213
+ "tracing-core",
4214
+ ]
4215
+
4216
+ [[package]]
4217
+ name = "tracing-attributes"
4218
+ version = "0.1.31"
4219
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4220
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
4221
+ dependencies = [
4222
+ "proc-macro2",
4223
+ "quote",
4224
+ "syn 2.0.119",
4225
+ ]
4226
+
4227
+ [[package]]
4228
+ name = "tracing-core"
4229
+ version = "0.1.36"
4230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4231
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
4232
+ dependencies = [
4233
+ "once_cell",
4234
+ "valuable",
4235
+ ]
4236
+
4237
+ [[package]]
4238
+ name = "tracing-log"
4239
+ version = "0.2.0"
4240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4241
+ checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
4242
+ dependencies = [
4243
+ "log",
4244
+ "once_cell",
4245
+ "tracing-core",
4246
+ ]
4247
+
4248
+ [[package]]
4249
+ name = "tracing-serde"
4250
+ version = "0.2.0"
4251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4252
+ checksum = "704b1aeb7be0d0a84fc9828cae51dab5970fee5088f83d1dd7ee6f6246fc6ff1"
4253
+ dependencies = [
4254
+ "serde",
4255
+ "tracing-core",
4256
+ ]
4257
+
4258
+ [[package]]
4259
+ name = "tracing-subscriber"
4260
+ version = "0.3.23"
4261
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4262
+ checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319"
4263
+ dependencies = [
4264
+ "matchers",
4265
+ "nu-ansi-term",
4266
+ "once_cell",
4267
+ "regex-automata",
4268
+ "serde",
4269
+ "serde_json",
4270
+ "sharded-slab",
4271
+ "smallvec",
4272
+ "thread_local",
4273
+ "tracing",
4274
+ "tracing-core",
4275
+ "tracing-log",
4276
+ "tracing-serde",
4277
+ ]
4278
+
4279
+ [[package]]
4280
+ name = "try-lock"
4281
+ version = "0.2.5"
4282
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4283
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
4284
+
4285
+ [[package]]
4286
+ name = "turmoil"
4287
+ version = "0.7.2"
4288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4289
+ checksum = "0061c28f1469e94771bb8aa626ce6b29265c2fb5034115046a170b0cba2e33d2"
4290
+ dependencies = [
4291
+ "bytes",
4292
+ "indexmap",
4293
+ "rand 0.9.5",
4294
+ "rand_distr",
4295
+ "scoped-tls",
4296
+ "tokio",
4297
+ "tracing",
4298
+ ]
4299
+
4300
+ [[package]]
4301
+ name = "typed-path"
4302
+ version = "0.12.3"
4303
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4304
+ checksum = "8e28f89b80c87b8fb0cf04ab448d5dd0dd0ade2f8891bae878de66a75a28600e"
4305
+
4306
+ [[package]]
4307
+ name = "typenum"
4308
+ version = "1.20.1"
4309
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4310
+ checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
4311
+
4312
+ [[package]]
4313
+ name = "ucd-trie"
4314
+ version = "0.1.7"
4315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4316
+ checksum = "2896d95c02a80c6d6a5d6e953d479f5ddf2dfdb6a244441010e373ac0fb88971"
4317
+
4318
+ [[package]]
4319
+ name = "unarray"
4320
+ version = "0.1.4"
4321
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4322
+ checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
4323
+
4324
+ [[package]]
4325
+ name = "unicode-ident"
4326
+ version = "1.0.24"
4327
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4328
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
4329
+
4330
+ [[package]]
4331
+ name = "unicode-segmentation"
4332
+ version = "1.13.3"
4333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4334
+ checksum = "c6f5d3c3b1bf09027a88a6bc961fc00497d651009560b5463668dc81b0fa87a8"
4335
+
4336
+ [[package]]
4337
+ name = "unicode-truncate"
4338
+ version = "2.0.1"
4339
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4340
+ checksum = "16b380a1238663e5f8a691f9039c73e1cdae598a30e9855f541d29b08b53e9a5"
4341
+ dependencies = [
4342
+ "itertools",
4343
+ "unicode-segmentation",
4344
+ "unicode-width",
4345
+ ]
4346
+
4347
+ [[package]]
4348
+ name = "unicode-width"
4349
+ version = "0.2.2"
4350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4351
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
4352
+
4353
+ [[package]]
4354
+ name = "untrusted"
4355
+ version = "0.9.0"
4356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4357
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
4358
+
4359
+ [[package]]
4360
+ name = "url"
4361
+ version = "2.5.8"
4362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4363
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
4364
+ dependencies = [
4365
+ "form_urlencoded",
4366
+ "idna",
4367
+ "percent-encoding",
4368
+ "serde",
4369
+ ]
4370
+
4371
+ [[package]]
4372
+ name = "urlencoding"
4373
+ version = "2.1.3"
4374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4375
+ checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da"
4376
+
4377
+ [[package]]
4378
+ name = "utf8_iter"
4379
+ version = "1.0.4"
4380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4381
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
4382
+
4383
+ [[package]]
4384
+ name = "utf8parse"
4385
+ version = "0.2.2"
4386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4387
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
4388
+
4389
+ [[package]]
4390
+ name = "uuid"
4391
+ version = "1.24.0"
4392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4393
+ checksum = "bf3923a6f5c4c6382e0b653c4117f48d631ea17f38ed86e2a828e6f7412f5239"
4394
+ dependencies = [
4395
+ "atomic",
4396
+ "getrandom 0.4.3",
4397
+ "js-sys",
4398
+ "wasm-bindgen",
4399
+ ]
4400
+
4401
+ [[package]]
4402
+ name = "valuable"
4403
+ version = "0.1.1"
4404
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4405
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
4406
+
4407
+ [[package]]
4408
+ name = "version_check"
4409
+ version = "0.9.5"
4410
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4411
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
4412
+
4413
+ [[package]]
4414
+ name = "vsimd"
4415
+ version = "0.8.0"
4416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4417
+ checksum = "5c3082ca00d5a5ef149bb8b555a72ae84c9c59f7250f013ac822ac2e49b19c64"
4418
+
4419
+ [[package]]
4420
+ name = "vtparse"
4421
+ version = "0.6.2"
4422
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4423
+ checksum = "6d9b2acfb050df409c972a37d3b8e08cdea3bddb0c09db9d53137e504cfabed0"
4424
+ dependencies = [
4425
+ "utf8parse",
4426
+ ]
4427
+
4428
+ [[package]]
4429
+ name = "wait-timeout"
4430
+ version = "0.2.1"
4431
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4432
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
4433
+ dependencies = [
4434
+ "libc",
4435
+ ]
4436
+
4437
+ [[package]]
4438
+ name = "walkdir"
4439
+ version = "2.5.0"
4440
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4441
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
4442
+ dependencies = [
4443
+ "same-file",
4444
+ "winapi-util",
4445
+ ]
4446
+
4447
+ [[package]]
4448
+ name = "want"
4449
+ version = "0.3.1"
4450
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4451
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
4452
+ dependencies = [
4453
+ "try-lock",
4454
+ ]
4455
+
4456
+ [[package]]
4457
+ name = "wasi"
4458
+ version = "0.11.1+wasi-snapshot-preview1"
4459
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4460
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
4461
+
4462
+ [[package]]
4463
+ name = "wasip2"
4464
+ version = "1.0.4+wasi-0.2.12"
4465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4466
+ checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
4467
+ dependencies = [
4468
+ "wit-bindgen",
4469
+ ]
4470
+
4471
+ [[package]]
4472
+ name = "wasm-bindgen"
4473
+ version = "0.2.127"
4474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4475
+ checksum = "1b70935747edd64d89de3efa29d73789b806c15798f8e7dca4d8ac356b50ce70"
4476
+ dependencies = [
4477
+ "cfg-if",
4478
+ "once_cell",
4479
+ "rustversion",
4480
+ "serde",
4481
+ "wasm-bindgen-macro",
4482
+ "wasm-bindgen-shared",
4483
+ ]
4484
+
4485
+ [[package]]
4486
+ name = "wasm-bindgen-futures"
4487
+ version = "0.4.77"
4488
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4489
+ checksum = "6b7777d5cc23d0e91404e53ce2d5e8ec7acae3026b16233dba62cd3246457950"
4490
+ dependencies = [
4491
+ "js-sys",
4492
+ "wasm-bindgen",
4493
+ ]
4494
+
4495
+ [[package]]
4496
+ name = "wasm-bindgen-macro"
4497
+ version = "0.2.127"
4498
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4499
+ checksum = "77775f8f3f7217702089053b94958f8f54061a3f663417df76e19cbdcca29bc1"
4500
+ dependencies = [
4501
+ "quote",
4502
+ "wasm-bindgen-macro-support",
4503
+ ]
4504
+
4505
+ [[package]]
4506
+ name = "wasm-bindgen-macro-support"
4507
+ version = "0.2.127"
4508
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4509
+ checksum = "e11d33f857dc2fb11b8bc75aee111aa9cbeb12cd9f25efd3d4c2a3dd4e235284"
4510
+ dependencies = [
4511
+ "bumpalo",
4512
+ "proc-macro2",
4513
+ "quote",
4514
+ "syn 2.0.119",
4515
+ "wasm-bindgen-shared",
4516
+ ]
4517
+
4518
+ [[package]]
4519
+ name = "wasm-bindgen-shared"
4520
+ version = "0.2.127"
4521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4522
+ checksum = "7ef64dbcc55df09c7e5a46182d181c2cfa3e925f3da937ea764728b4bbb9dcbf"
4523
+ dependencies = [
4524
+ "unicode-ident",
4525
+ ]
4526
+
4527
+ [[package]]
4528
+ name = "wasm-streams"
4529
+ version = "0.5.0"
4530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4531
+ checksum = "9d1ec4f6517c9e11ae630e200b2b65d193279042e28edd4a2cda233e46670bbb"
4532
+ dependencies = [
4533
+ "futures-util",
4534
+ "js-sys",
4535
+ "wasm-bindgen",
4536
+ "wasm-bindgen-futures",
4537
+ "web-sys",
4538
+ ]
4539
+
4540
+ [[package]]
4541
+ name = "web-sys"
4542
+ version = "0.3.104"
4543
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4544
+ checksum = "c435338968042f4f59a557f690a253676d47ce13ceb55d70100e7facf6620a30"
4545
+ dependencies = [
4546
+ "js-sys",
4547
+ "wasm-bindgen",
4548
+ ]
4549
+
4550
+ [[package]]
4551
+ name = "web-time"
4552
+ version = "1.1.0"
4553
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4554
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
4555
+ dependencies = [
4556
+ "js-sys",
4557
+ "wasm-bindgen",
4558
+ ]
4559
+
4560
+ [[package]]
4561
+ name = "webpki-root-certs"
4562
+ version = "1.0.9"
4563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4564
+ checksum = "b96554aa2acc8ccdb7e1c9a58a7a68dd5d13bccc69cd124cb09406db612a1c9b"
4565
+ dependencies = [
4566
+ "rustls-pki-types",
4567
+ ]
4568
+
4569
+ [[package]]
4570
+ name = "wezterm-bidi"
4571
+ version = "0.2.3"
4572
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4573
+ checksum = "0c0a6e355560527dd2d1cf7890652f4f09bb3433b6aadade4c9b5ed76de5f3ec"
4574
+ dependencies = [
4575
+ "log",
4576
+ "wezterm-dynamic",
4577
+ ]
4578
+
4579
+ [[package]]
4580
+ name = "wezterm-blob-leases"
4581
+ version = "0.1.1"
4582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4583
+ checksum = "692daff6d93d94e29e4114544ef6d5c942a7ed998b37abdc19b17136ea428eb7"
4584
+ dependencies = [
4585
+ "getrandom 0.3.4",
4586
+ "mac_address",
4587
+ "sha2 0.10.9",
4588
+ "thiserror 1.0.69",
4589
+ "uuid",
4590
+ ]
4591
+
4592
+ [[package]]
4593
+ name = "wezterm-color-types"
4594
+ version = "0.3.0"
4595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4596
+ checksum = "7de81ef35c9010270d63772bebef2f2d6d1f2d20a983d27505ac850b8c4b4296"
4597
+ dependencies = [
4598
+ "csscolorparser",
4599
+ "deltae",
4600
+ "lazy_static",
4601
+ "wezterm-dynamic",
4602
+ ]
4603
+
4604
+ [[package]]
4605
+ name = "wezterm-dynamic"
4606
+ version = "0.2.1"
4607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4608
+ checksum = "5f2ab60e120fd6eaa68d9567f3226e876684639d22a4219b313ff69ec0ccd5ac"
4609
+ dependencies = [
4610
+ "log",
4611
+ "ordered-float",
4612
+ "strsim",
4613
+ "thiserror 1.0.69",
4614
+ "wezterm-dynamic-derive",
4615
+ ]
4616
+
4617
+ [[package]]
4618
+ name = "wezterm-dynamic-derive"
4619
+ version = "0.1.1"
4620
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4621
+ checksum = "46c0cf2d539c645b448eaffec9ec494b8b19bd5077d9e58cb1ae7efece8d575b"
4622
+ dependencies = [
4623
+ "proc-macro2",
4624
+ "quote",
4625
+ "syn 1.0.109",
4626
+ ]
4627
+
4628
+ [[package]]
4629
+ name = "wezterm-input-types"
4630
+ version = "0.1.0"
4631
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4632
+ checksum = "7012add459f951456ec9d6c7e6fc340b1ce15d6fc9629f8c42853412c029e57e"
4633
+ dependencies = [
4634
+ "bitflags 1.3.2",
4635
+ "euclid",
4636
+ "lazy_static",
4637
+ "serde",
4638
+ "wezterm-dynamic",
4639
+ ]
4640
+
4641
+ [[package]]
4642
+ name = "winapi"
4643
+ version = "0.3.9"
4644
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4645
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
4646
+ dependencies = [
4647
+ "winapi-i686-pc-windows-gnu",
4648
+ "winapi-x86_64-pc-windows-gnu",
4649
+ ]
4650
+
4651
+ [[package]]
4652
+ name = "winapi-i686-pc-windows-gnu"
4653
+ version = "0.4.0"
4654
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4655
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
4656
+
4657
+ [[package]]
4658
+ name = "winapi-util"
4659
+ version = "0.1.11"
4660
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4661
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
4662
+ dependencies = [
4663
+ "windows-sys 0.61.2",
4664
+ ]
4665
+
4666
+ [[package]]
4667
+ name = "winapi-x86_64-pc-windows-gnu"
4668
+ version = "0.4.0"
4669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4670
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
4671
+
4672
+ [[package]]
4673
+ name = "windows-link"
4674
+ version = "0.2.1"
4675
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4676
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
4677
+
4678
+ [[package]]
4679
+ name = "windows-sys"
4680
+ version = "0.52.0"
4681
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4682
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
4683
+ dependencies = [
4684
+ "windows-targets",
4685
+ ]
4686
+
4687
+ [[package]]
4688
+ name = "windows-sys"
4689
+ version = "0.61.2"
4690
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4691
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
4692
+ dependencies = [
4693
+ "windows-link",
4694
+ ]
4695
+
4696
+ [[package]]
4697
+ name = "windows-targets"
4698
+ version = "0.52.6"
4699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4700
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
4701
+ dependencies = [
4702
+ "windows_aarch64_gnullvm",
4703
+ "windows_aarch64_msvc",
4704
+ "windows_i686_gnu",
4705
+ "windows_i686_gnullvm",
4706
+ "windows_i686_msvc",
4707
+ "windows_x86_64_gnu",
4708
+ "windows_x86_64_gnullvm",
4709
+ "windows_x86_64_msvc",
4710
+ ]
4711
+
4712
+ [[package]]
4713
+ name = "windows_aarch64_gnullvm"
4714
+ version = "0.52.6"
4715
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4716
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
4717
+
4718
+ [[package]]
4719
+ name = "windows_aarch64_msvc"
4720
+ version = "0.52.6"
4721
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4722
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
4723
+
4724
+ [[package]]
4725
+ name = "windows_i686_gnu"
4726
+ version = "0.52.6"
4727
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4728
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
4729
+
4730
+ [[package]]
4731
+ name = "windows_i686_gnullvm"
4732
+ version = "0.52.6"
4733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4734
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
4735
+
4736
+ [[package]]
4737
+ name = "windows_i686_msvc"
4738
+ version = "0.52.6"
4739
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4740
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
4741
+
4742
+ [[package]]
4743
+ name = "windows_x86_64_gnu"
4744
+ version = "0.52.6"
4745
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4746
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
4747
+
4748
+ [[package]]
4749
+ name = "windows_x86_64_gnullvm"
4750
+ version = "0.52.6"
4751
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4752
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
4753
+
4754
+ [[package]]
4755
+ name = "windows_x86_64_msvc"
4756
+ version = "0.52.6"
4757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4758
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
4759
+
4760
+ [[package]]
4761
+ name = "winnow"
4762
+ version = "1.0.4"
4763
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4764
+ checksum = "23b97319f7b8343df12cc98938e5c3eb436064524c8d2b4e30a1d3a36eecdf81"
4765
+ dependencies = [
4766
+ "memchr",
4767
+ ]
4768
+
4769
+ [[package]]
4770
+ name = "wit-bindgen"
4771
+ version = "0.57.1"
4772
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4773
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
4774
+
4775
+ [[package]]
4776
+ name = "writeable"
4777
+ version = "0.6.3"
4778
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4779
+ checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
4780
+
4781
+ [[package]]
4782
+ name = "wyz"
4783
+ version = "0.5.1"
4784
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4785
+ checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
4786
+ dependencies = [
4787
+ "tap",
4788
+ ]
4789
+
4790
+ [[package]]
4791
+ name = "xattr"
4792
+ version = "1.6.1"
4793
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4794
+ checksum = "32e45ad4206f6d2479085147f02bc2ef834ac85886624a23575ae137c8aa8156"
4795
+ dependencies = [
4796
+ "libc",
4797
+ "rustix",
4798
+ ]
4799
+
4800
+ [[package]]
4801
+ name = "xmlparser"
4802
+ version = "0.13.6"
4803
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4804
+ checksum = "66fee0b777b0f5ac1c69bb06d361268faafa61cd4682ae064a171c16c433e9e4"
4805
+
4806
+ [[package]]
4807
+ name = "yoke"
4808
+ version = "0.8.3"
4809
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4810
+ checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5"
4811
+ dependencies = [
4812
+ "stable_deref_trait",
4813
+ "yoke-derive",
4814
+ "zerofrom",
4815
+ ]
4816
+
4817
+ [[package]]
4818
+ name = "yoke-derive"
4819
+ version = "0.8.2"
4820
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4821
+ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
4822
+ dependencies = [
4823
+ "proc-macro2",
4824
+ "quote",
4825
+ "syn 2.0.119",
4826
+ "synstructure",
4827
+ ]
4828
+
4829
+ [[package]]
4830
+ name = "zerocopy"
4831
+ version = "0.8.55"
4832
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4833
+ checksum = "b5a105cd7b140f6eeec8acff2ea38135d3cab283ada58540f629fe51e46696eb"
4834
+ dependencies = [
4835
+ "zerocopy-derive",
4836
+ ]
4837
+
4838
+ [[package]]
4839
+ name = "zerocopy-derive"
4840
+ version = "0.8.55"
4841
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4842
+ checksum = "0fe976fb70c78cd64cccfe3a6fc142244e8a77b70959b30faf9d0ac37ee228eb"
4843
+ dependencies = [
4844
+ "proc-macro2",
4845
+ "quote",
4846
+ "syn 2.0.119",
4847
+ ]
4848
+
4849
+ [[package]]
4850
+ name = "zerofrom"
4851
+ version = "0.1.8"
4852
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4853
+ checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
4854
+ dependencies = [
4855
+ "zerofrom-derive",
4856
+ ]
4857
+
4858
+ [[package]]
4859
+ name = "zerofrom-derive"
4860
+ version = "0.1.7"
4861
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4862
+ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
4863
+ dependencies = [
4864
+ "proc-macro2",
4865
+ "quote",
4866
+ "syn 2.0.119",
4867
+ "synstructure",
4868
+ ]
4869
+
4870
+ [[package]]
4871
+ name = "zeroize"
4872
+ version = "1.9.0"
4873
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4874
+ checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e"
4875
+
4876
+ [[package]]
4877
+ name = "zerotrie"
4878
+ version = "0.2.4"
4879
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4880
+ checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
4881
+ dependencies = [
4882
+ "displaydoc",
4883
+ "yoke",
4884
+ "zerofrom",
4885
+ ]
4886
+
4887
+ [[package]]
4888
+ name = "zerovec"
4889
+ version = "0.11.6"
4890
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4891
+ checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
4892
+ dependencies = [
4893
+ "yoke",
4894
+ "zerofrom",
4895
+ "zerovec-derive",
4896
+ ]
4897
+
4898
+ [[package]]
4899
+ name = "zerovec-derive"
4900
+ version = "0.11.3"
4901
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4902
+ checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
4903
+ dependencies = [
4904
+ "proc-macro2",
4905
+ "quote",
4906
+ "syn 2.0.119",
4907
+ ]
4908
+
4909
+ [[package]]
4910
+ name = "zip"
4911
+ version = "8.6.0"
4912
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4913
+ checksum = "2d04a6b5381502aa6087c94c669499eb1602eb9c5e8198e534de571f7154809b"
4914
+ dependencies = [
4915
+ "crc32fast",
4916
+ "flate2",
4917
+ "indexmap",
4918
+ "memchr",
4919
+ "typed-path",
4920
+ "zopfli",
4921
+ ]
4922
+
4923
+ [[package]]
4924
+ name = "zlib-rs"
4925
+ version = "0.6.7"
4926
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4927
+ checksum = "34b31d188d9d685a4f9c7b46d6e36631b07058d2cfe190267adce54dc230bf12"
4928
+
4929
+ [[package]]
4930
+ name = "zmij"
4931
+ version = "1.0.23"
4932
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4933
+ checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"
4934
+
4935
+ [[package]]
4936
+ name = "zopfli"
4937
+ version = "0.8.3"
4938
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4939
+ checksum = "f05cd8797d63865425ff89b5c4a48804f35ba0ce8d125800027ad6017d2b5249"
4940
+ dependencies = [
4941
+ "bumpalo",
4942
+ "crc32fast",
4943
+ "log",
4944
+ "simd-adler32",
4945
+ ]