powerio 0.0.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 (73) hide show
  1. powerio-0.0.1/Cargo.lock +3090 -0
  2. powerio-0.0.1/Cargo.toml +44 -0
  3. powerio-0.0.1/LICENSE-APACHE +201 -0
  4. powerio-0.0.1/LICENSE-MIT +19 -0
  5. powerio-0.0.1/PKG-INFO +245 -0
  6. powerio-0.0.1/README.md +204 -0
  7. powerio-0.0.1/powerio/Cargo.toml +40 -0
  8. powerio-0.0.1/powerio/README.md +16 -0
  9. powerio-0.0.1/powerio/benches/parse.rs +77 -0
  10. powerio-0.0.1/powerio/examples/emit.rs +18 -0
  11. powerio-0.0.1/powerio/examples/timeparse.rs +34 -0
  12. powerio-0.0.1/powerio/src/error.rs +312 -0
  13. powerio-0.0.1/powerio/src/format/egret.rs +735 -0
  14. powerio-0.0.1/powerio/src/format/matpower/locate.rs +220 -0
  15. powerio-0.0.1/powerio/src/format/matpower/matlab.rs +178 -0
  16. powerio-0.0.1/powerio/src/format/matpower/mod.rs +234 -0
  17. powerio-0.0.1/powerio/src/format/matpower/rows.rs +299 -0
  18. powerio-0.0.1/powerio/src/format/matpower/tests.rs +286 -0
  19. powerio-0.0.1/powerio/src/format/matpower/tokens.rs +68 -0
  20. powerio-0.0.1/powerio/src/format/matpower/writer.rs +244 -0
  21. powerio-0.0.1/powerio/src/format/mod.rs +413 -0
  22. powerio-0.0.1/powerio/src/format/powermodels.rs +797 -0
  23. powerio-0.0.1/powerio/src/format/powerworld.rs +564 -0
  24. powerio-0.0.1/powerio/src/format/psse.rs +597 -0
  25. powerio-0.0.1/powerio/src/indexed.rs +471 -0
  26. powerio-0.0.1/powerio/src/lib.rs +54 -0
  27. powerio-0.0.1/powerio/src/network.rs +521 -0
  28. powerio-0.0.1/powerio/src/normalize.rs +473 -0
  29. powerio-0.0.1/powerio/tests/common/mod.rs +26 -0
  30. powerio-0.0.1/powerio/tests/convert.rs +435 -0
  31. powerio-0.0.1/powerio/tests/normalize.rs +535 -0
  32. powerio-0.0.1/powerio/tests/roundtrip.rs +148 -0
  33. powerio-0.0.1/powerio/tests/roundtrip_formats.rs +206 -0
  34. powerio-0.0.1/powerio/tests/validation.rs +154 -0
  35. powerio-0.0.1/powerio-matrix/Cargo.toml +52 -0
  36. powerio-0.0.1/powerio-matrix/README.md +18 -0
  37. powerio-0.0.1/powerio-matrix/src/io/gridfm.rs +1889 -0
  38. powerio-0.0.1/powerio-matrix/src/io/meta.rs +37 -0
  39. powerio-0.0.1/powerio-matrix/src/io/mod.rs +15 -0
  40. powerio-0.0.1/powerio-matrix/src/io/mtx.rs +111 -0
  41. powerio-0.0.1/powerio-matrix/src/lib.rs +67 -0
  42. powerio-0.0.1/powerio-matrix/src/matrix/adjacency.rs +37 -0
  43. powerio-0.0.1/powerio-matrix/src/matrix/bdoubleprime.rs +31 -0
  44. powerio-0.0.1/powerio-matrix/src/matrix/bprime.rs +74 -0
  45. powerio-0.0.1/powerio-matrix/src/matrix/incidence.rs +155 -0
  46. powerio-0.0.1/powerio-matrix/src/matrix/kkt.rs +183 -0
  47. powerio-0.0.1/powerio-matrix/src/matrix/lacpf.rs +48 -0
  48. powerio-0.0.1/powerio-matrix/src/matrix/laplacian.rs +225 -0
  49. powerio-0.0.1/powerio-matrix/src/matrix/mod.rs +152 -0
  50. powerio-0.0.1/powerio-matrix/src/matrix/opf.rs +200 -0
  51. powerio-0.0.1/powerio-matrix/src/matrix/sensitivity.rs +235 -0
  52. powerio-0.0.1/powerio-matrix/src/matrix/tests.rs +263 -0
  53. powerio-0.0.1/powerio-matrix/src/matrix/triplet.rs +98 -0
  54. powerio-0.0.1/powerio-matrix/src/matrix/ybus.rs +193 -0
  55. powerio-0.0.1/powerio-matrix/src/opf_pipeline.rs +134 -0
  56. powerio-0.0.1/powerio-matrix/src/pipeline.rs +260 -0
  57. powerio-0.0.1/powerio-matrix/src/synth/lattice.rs +32 -0
  58. powerio-0.0.1/powerio-matrix/src/synth/mod.rs +51 -0
  59. powerio-0.0.1/powerio-matrix/src/synth/pegase_like.rs +37 -0
  60. powerio-0.0.1/powerio-matrix/src/synth/tree.rs +86 -0
  61. powerio-0.0.1/powerio-matrix/tests/canonical_writer.rs +27 -0
  62. powerio-0.0.1/powerio-matrix/tests/dcopf.rs +928 -0
  63. powerio-0.0.1/powerio-matrix/tests/matpower_cases.rs +180 -0
  64. powerio-0.0.1/powerio-py/Cargo.toml +36 -0
  65. powerio-0.0.1/powerio-py/src/lib.rs +699 -0
  66. powerio-0.0.1/pyproject.toml +69 -0
  67. powerio-0.0.1/python/powerio/__init__.py +456 -0
  68. powerio-0.0.1/python/powerio/__init__.pyi +204 -0
  69. powerio-0.0.1/python/powerio/_powerio.pyi +108 -0
  70. powerio-0.0.1/python/powerio/mcp/__init__.py +10 -0
  71. powerio-0.0.1/python/powerio/mcp/__main__.py +3 -0
  72. powerio-0.0.1/python/powerio/mcp/server.py +165 -0
  73. powerio-0.0.1/python/powerio/py.typed +0 -0
@@ -0,0 +1,3090 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "ahash"
7
+ version = "0.8.12"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
10
+ dependencies = [
11
+ "cfg-if",
12
+ "const-random",
13
+ "getrandom 0.3.4",
14
+ "once_cell",
15
+ "version_check",
16
+ "zerocopy",
17
+ ]
18
+
19
+ [[package]]
20
+ name = "aho-corasick"
21
+ version = "1.1.4"
22
+ source = "registry+https://github.com/rust-lang/crates.io-index"
23
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
24
+ dependencies = [
25
+ "memchr",
26
+ ]
27
+
28
+ [[package]]
29
+ name = "allocator-api2"
30
+ version = "0.2.21"
31
+ source = "registry+https://github.com/rust-lang/crates.io-index"
32
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
33
+
34
+ [[package]]
35
+ name = "android_system_properties"
36
+ version = "0.1.5"
37
+ source = "registry+https://github.com/rust-lang/crates.io-index"
38
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
39
+ dependencies = [
40
+ "libc",
41
+ ]
42
+
43
+ [[package]]
44
+ name = "anes"
45
+ version = "0.1.6"
46
+ source = "registry+https://github.com/rust-lang/crates.io-index"
47
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
48
+
49
+ [[package]]
50
+ name = "anstream"
51
+ version = "1.0.0"
52
+ source = "registry+https://github.com/rust-lang/crates.io-index"
53
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
54
+ dependencies = [
55
+ "anstyle",
56
+ "anstyle-parse",
57
+ "anstyle-query",
58
+ "anstyle-wincon",
59
+ "colorchoice",
60
+ "is_terminal_polyfill",
61
+ "utf8parse",
62
+ ]
63
+
64
+ [[package]]
65
+ name = "anstyle"
66
+ version = "1.0.14"
67
+ source = "registry+https://github.com/rust-lang/crates.io-index"
68
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
69
+
70
+ [[package]]
71
+ name = "anstyle-parse"
72
+ version = "1.0.0"
73
+ source = "registry+https://github.com/rust-lang/crates.io-index"
74
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
75
+ dependencies = [
76
+ "utf8parse",
77
+ ]
78
+
79
+ [[package]]
80
+ name = "anstyle-query"
81
+ version = "1.1.5"
82
+ source = "registry+https://github.com/rust-lang/crates.io-index"
83
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
84
+ dependencies = [
85
+ "windows-sys",
86
+ ]
87
+
88
+ [[package]]
89
+ name = "anstyle-wincon"
90
+ version = "3.0.11"
91
+ source = "registry+https://github.com/rust-lang/crates.io-index"
92
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
93
+ dependencies = [
94
+ "anstyle",
95
+ "once_cell_polyfill",
96
+ "windows-sys",
97
+ ]
98
+
99
+ [[package]]
100
+ name = "anyhow"
101
+ version = "1.0.102"
102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
103
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
104
+
105
+ [[package]]
106
+ name = "approx"
107
+ version = "0.5.1"
108
+ source = "registry+https://github.com/rust-lang/crates.io-index"
109
+ checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6"
110
+ dependencies = [
111
+ "num-traits",
112
+ ]
113
+
114
+ [[package]]
115
+ name = "arrow"
116
+ version = "58.3.0"
117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
118
+ checksum = "378530e55cd479eda3c14eb345310799717e6f76d0c332041e8487022166b471"
119
+ dependencies = [
120
+ "arrow-arith",
121
+ "arrow-array",
122
+ "arrow-buffer",
123
+ "arrow-cast",
124
+ "arrow-data",
125
+ "arrow-ord",
126
+ "arrow-row",
127
+ "arrow-schema",
128
+ "arrow-select",
129
+ "arrow-string",
130
+ ]
131
+
132
+ [[package]]
133
+ name = "arrow-arith"
134
+ version = "58.3.0"
135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
136
+ checksum = "a0ab212d2c1886e802f51c5212d78ebbcbb0bec980fff9dadc1eb8d45cd0b738"
137
+ dependencies = [
138
+ "arrow-array",
139
+ "arrow-buffer",
140
+ "arrow-data",
141
+ "arrow-schema",
142
+ "chrono",
143
+ "num-traits",
144
+ ]
145
+
146
+ [[package]]
147
+ name = "arrow-array"
148
+ version = "58.3.0"
149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
150
+ checksum = "cfd33d3e92f207444098c75b42de99d329562be0cf686b307b097cc52b4e999e"
151
+ dependencies = [
152
+ "ahash",
153
+ "arrow-buffer",
154
+ "arrow-data",
155
+ "arrow-schema",
156
+ "chrono",
157
+ "half",
158
+ "hashbrown 0.17.0",
159
+ "num-complex",
160
+ "num-integer",
161
+ "num-traits",
162
+ ]
163
+
164
+ [[package]]
165
+ name = "arrow-buffer"
166
+ version = "58.3.0"
167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
168
+ checksum = "0c6cd424c2693bcdbc150d843dc9d4d137dd2de4782ce6df491ad11a3a0416c0"
169
+ dependencies = [
170
+ "bytes",
171
+ "half",
172
+ "num-bigint",
173
+ "num-traits",
174
+ ]
175
+
176
+ [[package]]
177
+ name = "arrow-cast"
178
+ version = "58.3.0"
179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
180
+ checksum = "4c5aefb56a2c02e9e2b30746241058b85f8983f0fcff2ba0c6d09006e1cded7f"
181
+ dependencies = [
182
+ "arrow-array",
183
+ "arrow-buffer",
184
+ "arrow-data",
185
+ "arrow-ord",
186
+ "arrow-schema",
187
+ "arrow-select",
188
+ "atoi",
189
+ "base64",
190
+ "chrono",
191
+ "half",
192
+ "lexical-core",
193
+ "num-traits",
194
+ "ryu",
195
+ ]
196
+
197
+ [[package]]
198
+ name = "arrow-data"
199
+ version = "58.3.0"
200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
201
+ checksum = "3c88210023a2bfee1896af366309a3028fc3bcbd6515fa29a7990ee1baa08ee0"
202
+ dependencies = [
203
+ "arrow-buffer",
204
+ "arrow-schema",
205
+ "half",
206
+ "num-integer",
207
+ "num-traits",
208
+ ]
209
+
210
+ [[package]]
211
+ name = "arrow-ipc"
212
+ version = "58.3.0"
213
+ source = "registry+https://github.com/rust-lang/crates.io-index"
214
+ checksum = "238438f0834483703d88896db6fe5a7138b2230debc31b34c0336c2996e3c64f"
215
+ dependencies = [
216
+ "arrow-array",
217
+ "arrow-buffer",
218
+ "arrow-data",
219
+ "arrow-schema",
220
+ "arrow-select",
221
+ "flatbuffers",
222
+ ]
223
+
224
+ [[package]]
225
+ name = "arrow-ord"
226
+ version = "58.3.0"
227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
228
+ checksum = "1bffd8fd2579286a5d63bac898159873e5094a79009940bcb42bbfce4f19f1d0"
229
+ dependencies = [
230
+ "arrow-array",
231
+ "arrow-buffer",
232
+ "arrow-data",
233
+ "arrow-schema",
234
+ "arrow-select",
235
+ ]
236
+
237
+ [[package]]
238
+ name = "arrow-row"
239
+ version = "58.3.0"
240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
241
+ checksum = "bab5994731204603c73ba69267616c50f80780774c6bb0476f1f830625115e0c"
242
+ dependencies = [
243
+ "arrow-array",
244
+ "arrow-buffer",
245
+ "arrow-data",
246
+ "arrow-schema",
247
+ "half",
248
+ ]
249
+
250
+ [[package]]
251
+ name = "arrow-schema"
252
+ version = "58.3.0"
253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
254
+ checksum = "f633dbfdf39c039ada1bf9e34c694816eb71fbb7dc78f613993b7245e078a1ed"
255
+ dependencies = [
256
+ "bitflags 2.13.0",
257
+ ]
258
+
259
+ [[package]]
260
+ name = "arrow-select"
261
+ version = "58.3.0"
262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
263
+ checksum = "8cd065c54172ac787cf3f2f8d4107e0d3fdc26edba76fdf4f4cc170258942222"
264
+ dependencies = [
265
+ "ahash",
266
+ "arrow-array",
267
+ "arrow-buffer",
268
+ "arrow-data",
269
+ "arrow-schema",
270
+ "num-traits",
271
+ ]
272
+
273
+ [[package]]
274
+ name = "arrow-string"
275
+ version = "58.3.0"
276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
277
+ checksum = "29dd7cda3ab9692f43a2e4acc444d760cc17b12bb6d8232ddf64e9bab7c06b42"
278
+ dependencies = [
279
+ "arrow-array",
280
+ "arrow-buffer",
281
+ "arrow-data",
282
+ "arrow-schema",
283
+ "arrow-select",
284
+ "memchr",
285
+ "num-traits",
286
+ "regex",
287
+ "regex-syntax",
288
+ ]
289
+
290
+ [[package]]
291
+ name = "atoi"
292
+ version = "2.0.0"
293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
294
+ checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528"
295
+ dependencies = [
296
+ "num-traits",
297
+ ]
298
+
299
+ [[package]]
300
+ name = "atomic"
301
+ version = "0.6.1"
302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
303
+ checksum = "a89cbf775b137e9b968e67227ef7f775587cde3fd31b0d8599dbd0f598a48340"
304
+ dependencies = [
305
+ "bytemuck",
306
+ ]
307
+
308
+ [[package]]
309
+ name = "autocfg"
310
+ version = "1.5.0"
311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
312
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
313
+
314
+ [[package]]
315
+ name = "base64"
316
+ version = "0.22.1"
317
+ source = "registry+https://github.com/rust-lang/crates.io-index"
318
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
319
+
320
+ [[package]]
321
+ name = "bit-set"
322
+ version = "0.5.3"
323
+ source = "registry+https://github.com/rust-lang/crates.io-index"
324
+ checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1"
325
+ dependencies = [
326
+ "bit-vec",
327
+ ]
328
+
329
+ [[package]]
330
+ name = "bit-vec"
331
+ version = "0.6.3"
332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
333
+ checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb"
334
+
335
+ [[package]]
336
+ name = "bitflags"
337
+ version = "1.3.2"
338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
339
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
340
+
341
+ [[package]]
342
+ name = "bitflags"
343
+ version = "2.13.0"
344
+ source = "registry+https://github.com/rust-lang/crates.io-index"
345
+ checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
346
+
347
+ [[package]]
348
+ name = "block-buffer"
349
+ version = "0.10.4"
350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
351
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
352
+ dependencies = [
353
+ "generic-array",
354
+ ]
355
+
356
+ [[package]]
357
+ name = "bumpalo"
358
+ version = "3.20.3"
359
+ source = "registry+https://github.com/rust-lang/crates.io-index"
360
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
361
+
362
+ [[package]]
363
+ name = "by_address"
364
+ version = "1.2.1"
365
+ source = "registry+https://github.com/rust-lang/crates.io-index"
366
+ checksum = "64fa3c856b712db6612c019f14756e64e4bcea13337a6b33b696333a9eaa2d06"
367
+
368
+ [[package]]
369
+ name = "bytemuck"
370
+ version = "1.25.0"
371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
372
+ checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec"
373
+
374
+ [[package]]
375
+ name = "byteorder"
376
+ version = "1.5.0"
377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
378
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
379
+
380
+ [[package]]
381
+ name = "bytes"
382
+ version = "1.11.1"
383
+ source = "registry+https://github.com/rust-lang/crates.io-index"
384
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
385
+
386
+ [[package]]
387
+ name = "cast"
388
+ version = "0.3.0"
389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
390
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
391
+
392
+ [[package]]
393
+ name = "castaway"
394
+ version = "0.2.4"
395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
396
+ checksum = "dec551ab6e7578819132c713a93c022a05d60159dc86e7a7050223577484c55a"
397
+ dependencies = [
398
+ "rustversion",
399
+ ]
400
+
401
+ [[package]]
402
+ name = "cc"
403
+ version = "1.2.63"
404
+ source = "registry+https://github.com/rust-lang/crates.io-index"
405
+ checksum = "556e016178bb5662a08681bbe0f00f8e17631781a4dfc8c45e466e4b185ec27f"
406
+ dependencies = [
407
+ "find-msvc-tools",
408
+ "shlex",
409
+ ]
410
+
411
+ [[package]]
412
+ name = "cfg-if"
413
+ version = "1.0.4"
414
+ source = "registry+https://github.com/rust-lang/crates.io-index"
415
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
416
+
417
+ [[package]]
418
+ name = "cfg_aliases"
419
+ version = "0.2.1"
420
+ source = "registry+https://github.com/rust-lang/crates.io-index"
421
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
422
+
423
+ [[package]]
424
+ name = "chrono"
425
+ version = "0.4.45"
426
+ source = "registry+https://github.com/rust-lang/crates.io-index"
427
+ checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
428
+ dependencies = [
429
+ "iana-time-zone",
430
+ "num-traits",
431
+ "windows-link",
432
+ ]
433
+
434
+ [[package]]
435
+ name = "ciborium"
436
+ version = "0.2.2"
437
+ source = "registry+https://github.com/rust-lang/crates.io-index"
438
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
439
+ dependencies = [
440
+ "ciborium-io",
441
+ "ciborium-ll",
442
+ "serde",
443
+ ]
444
+
445
+ [[package]]
446
+ name = "ciborium-io"
447
+ version = "0.2.2"
448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
449
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
450
+
451
+ [[package]]
452
+ name = "ciborium-ll"
453
+ version = "0.2.2"
454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
455
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
456
+ dependencies = [
457
+ "ciborium-io",
458
+ "half",
459
+ ]
460
+
461
+ [[package]]
462
+ name = "clap"
463
+ version = "4.6.1"
464
+ source = "registry+https://github.com/rust-lang/crates.io-index"
465
+ checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
466
+ dependencies = [
467
+ "clap_builder",
468
+ "clap_derive",
469
+ ]
470
+
471
+ [[package]]
472
+ name = "clap_builder"
473
+ version = "4.6.0"
474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
475
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
476
+ dependencies = [
477
+ "anstream",
478
+ "anstyle",
479
+ "clap_lex",
480
+ "strsim",
481
+ ]
482
+
483
+ [[package]]
484
+ name = "clap_derive"
485
+ version = "4.6.1"
486
+ source = "registry+https://github.com/rust-lang/crates.io-index"
487
+ checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9"
488
+ dependencies = [
489
+ "heck",
490
+ "proc-macro2",
491
+ "quote",
492
+ "syn 2.0.117",
493
+ ]
494
+
495
+ [[package]]
496
+ name = "clap_lex"
497
+ version = "1.1.0"
498
+ source = "registry+https://github.com/rust-lang/crates.io-index"
499
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
500
+
501
+ [[package]]
502
+ name = "colorchoice"
503
+ version = "1.0.5"
504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
505
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
506
+
507
+ [[package]]
508
+ name = "compact_str"
509
+ version = "0.9.1"
510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
511
+ checksum = "9dfdd1c2274d9aa354115b09dc9a901d6c5576818cdf70d14cae2bdb47df00ab"
512
+ dependencies = [
513
+ "castaway",
514
+ "cfg-if",
515
+ "itoa",
516
+ "rustversion",
517
+ "ryu",
518
+ "static_assertions",
519
+ ]
520
+
521
+ [[package]]
522
+ name = "const-random"
523
+ version = "0.1.18"
524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
525
+ checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359"
526
+ dependencies = [
527
+ "const-random-macro",
528
+ ]
529
+
530
+ [[package]]
531
+ name = "const-random-macro"
532
+ version = "0.1.16"
533
+ source = "registry+https://github.com/rust-lang/crates.io-index"
534
+ checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e"
535
+ dependencies = [
536
+ "getrandom 0.2.17",
537
+ "once_cell",
538
+ "tiny-keccak",
539
+ ]
540
+
541
+ [[package]]
542
+ name = "convert_case"
543
+ version = "0.10.0"
544
+ source = "registry+https://github.com/rust-lang/crates.io-index"
545
+ checksum = "633458d4ef8c78b72454de2d54fd6ab2e60f9e02be22f3c6104cdc8a4e0fceb9"
546
+ dependencies = [
547
+ "unicode-segmentation",
548
+ ]
549
+
550
+ [[package]]
551
+ name = "core-foundation-sys"
552
+ version = "0.8.7"
553
+ source = "registry+https://github.com/rust-lang/crates.io-index"
554
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
555
+
556
+ [[package]]
557
+ name = "cpufeatures"
558
+ version = "0.2.17"
559
+ source = "registry+https://github.com/rust-lang/crates.io-index"
560
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
561
+ dependencies = [
562
+ "libc",
563
+ ]
564
+
565
+ [[package]]
566
+ name = "criterion"
567
+ version = "0.5.1"
568
+ source = "registry+https://github.com/rust-lang/crates.io-index"
569
+ checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
570
+ dependencies = [
571
+ "anes",
572
+ "cast",
573
+ "ciborium",
574
+ "clap",
575
+ "criterion-plot",
576
+ "is-terminal",
577
+ "itertools 0.10.5",
578
+ "num-traits",
579
+ "once_cell",
580
+ "oorandom",
581
+ "regex",
582
+ "serde",
583
+ "serde_derive",
584
+ "serde_json",
585
+ "tinytemplate",
586
+ "walkdir",
587
+ ]
588
+
589
+ [[package]]
590
+ name = "criterion-plot"
591
+ version = "0.5.0"
592
+ source = "registry+https://github.com/rust-lang/crates.io-index"
593
+ checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
594
+ dependencies = [
595
+ "cast",
596
+ "itertools 0.10.5",
597
+ ]
598
+
599
+ [[package]]
600
+ name = "critical-section"
601
+ version = "1.2.0"
602
+ source = "registry+https://github.com/rust-lang/crates.io-index"
603
+ checksum = "790eea4361631c5e7d22598ecd5723ff611904e3344ce8720784c93e3d83d40b"
604
+
605
+ [[package]]
606
+ name = "crossbeam-deque"
607
+ version = "0.8.6"
608
+ source = "registry+https://github.com/rust-lang/crates.io-index"
609
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
610
+ dependencies = [
611
+ "crossbeam-epoch",
612
+ "crossbeam-utils",
613
+ ]
614
+
615
+ [[package]]
616
+ name = "crossbeam-epoch"
617
+ version = "0.9.18"
618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
619
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
620
+ dependencies = [
621
+ "crossbeam-utils",
622
+ ]
623
+
624
+ [[package]]
625
+ name = "crossbeam-utils"
626
+ version = "0.8.21"
627
+ source = "registry+https://github.com/rust-lang/crates.io-index"
628
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
629
+
630
+ [[package]]
631
+ name = "crossterm"
632
+ version = "0.29.0"
633
+ source = "registry+https://github.com/rust-lang/crates.io-index"
634
+ checksum = "d8b9f2e4c67f833b660cdb0a3523065869fb35570177239812ed4c905aeff87b"
635
+ dependencies = [
636
+ "bitflags 2.13.0",
637
+ "crossterm_winapi",
638
+ "derive_more",
639
+ "document-features",
640
+ "mio",
641
+ "parking_lot",
642
+ "rustix",
643
+ "signal-hook",
644
+ "signal-hook-mio",
645
+ "winapi",
646
+ ]
647
+
648
+ [[package]]
649
+ name = "crossterm_winapi"
650
+ version = "0.9.1"
651
+ source = "registry+https://github.com/rust-lang/crates.io-index"
652
+ checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b"
653
+ dependencies = [
654
+ "winapi",
655
+ ]
656
+
657
+ [[package]]
658
+ name = "crunchy"
659
+ version = "0.2.4"
660
+ source = "registry+https://github.com/rust-lang/crates.io-index"
661
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
662
+
663
+ [[package]]
664
+ name = "crypto-common"
665
+ version = "0.1.7"
666
+ source = "registry+https://github.com/rust-lang/crates.io-index"
667
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
668
+ dependencies = [
669
+ "generic-array",
670
+ "typenum",
671
+ ]
672
+
673
+ [[package]]
674
+ name = "csscolorparser"
675
+ version = "0.6.2"
676
+ source = "registry+https://github.com/rust-lang/crates.io-index"
677
+ checksum = "eb2a7d3066da2de787b7f032c736763eb7ae5d355f81a68bab2675a96008b0bf"
678
+ dependencies = [
679
+ "lab",
680
+ "phf",
681
+ ]
682
+
683
+ [[package]]
684
+ name = "darling"
685
+ version = "0.23.0"
686
+ source = "registry+https://github.com/rust-lang/crates.io-index"
687
+ checksum = "25ae13da2f202d56bd7f91c25fba009e7717a1e4a1cc98a76d844b65ae912e9d"
688
+ dependencies = [
689
+ "darling_core",
690
+ "darling_macro",
691
+ ]
692
+
693
+ [[package]]
694
+ name = "darling_core"
695
+ version = "0.23.0"
696
+ source = "registry+https://github.com/rust-lang/crates.io-index"
697
+ checksum = "9865a50f7c335f53564bb694ef660825eb8610e0a53d3e11bf1b0d3df31e03b0"
698
+ dependencies = [
699
+ "ident_case",
700
+ "proc-macro2",
701
+ "quote",
702
+ "strsim",
703
+ "syn 2.0.117",
704
+ ]
705
+
706
+ [[package]]
707
+ name = "darling_macro"
708
+ version = "0.23.0"
709
+ source = "registry+https://github.com/rust-lang/crates.io-index"
710
+ checksum = "ac3984ec7bd6cfa798e62b4a642426a5be0e68f9401cfc2a01e3fa9ea2fcdb8d"
711
+ dependencies = [
712
+ "darling_core",
713
+ "quote",
714
+ "syn 2.0.117",
715
+ ]
716
+
717
+ [[package]]
718
+ name = "deltae"
719
+ version = "0.3.2"
720
+ source = "registry+https://github.com/rust-lang/crates.io-index"
721
+ checksum = "5729f5117e208430e437df2f4843f5e5952997175992d1414f94c57d61e270b4"
722
+
723
+ [[package]]
724
+ name = "deranged"
725
+ version = "0.5.8"
726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
727
+ checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
728
+ dependencies = [
729
+ "powerfmt",
730
+ ]
731
+
732
+ [[package]]
733
+ name = "derive_more"
734
+ version = "2.1.1"
735
+ source = "registry+https://github.com/rust-lang/crates.io-index"
736
+ checksum = "d751e9e49156b02b44f9c1815bcb94b984cdcc4396ecc32521c739452808b134"
737
+ dependencies = [
738
+ "derive_more-impl",
739
+ ]
740
+
741
+ [[package]]
742
+ name = "derive_more-impl"
743
+ version = "2.1.1"
744
+ source = "registry+https://github.com/rust-lang/crates.io-index"
745
+ checksum = "799a97264921d8623a957f6c3b9011f3b5492f557bbb7a5a19b7fa6d06ba8dcb"
746
+ dependencies = [
747
+ "convert_case",
748
+ "proc-macro2",
749
+ "quote",
750
+ "rustc_version",
751
+ "syn 2.0.117",
752
+ ]
753
+
754
+ [[package]]
755
+ name = "digest"
756
+ version = "0.10.7"
757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
758
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
759
+ dependencies = [
760
+ "block-buffer",
761
+ "crypto-common",
762
+ ]
763
+
764
+ [[package]]
765
+ name = "document-features"
766
+ version = "0.2.12"
767
+ source = "registry+https://github.com/rust-lang/crates.io-index"
768
+ checksum = "d4b8a88685455ed29a21542a33abd9cb6510b6b129abadabdcef0f4c55bc8f61"
769
+ dependencies = [
770
+ "litrs",
771
+ ]
772
+
773
+ [[package]]
774
+ name = "either"
775
+ version = "1.15.0"
776
+ source = "registry+https://github.com/rust-lang/crates.io-index"
777
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
778
+
779
+ [[package]]
780
+ name = "equivalent"
781
+ version = "1.0.2"
782
+ source = "registry+https://github.com/rust-lang/crates.io-index"
783
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
784
+
785
+ [[package]]
786
+ name = "errno"
787
+ version = "0.3.14"
788
+ source = "registry+https://github.com/rust-lang/crates.io-index"
789
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
790
+ dependencies = [
791
+ "libc",
792
+ "windows-sys",
793
+ ]
794
+
795
+ [[package]]
796
+ name = "euclid"
797
+ version = "0.22.14"
798
+ source = "registry+https://github.com/rust-lang/crates.io-index"
799
+ checksum = "f1a05365e3b1c6d1650318537c7460c6923f1abdd272ad6842baa2b509957a06"
800
+ dependencies = [
801
+ "num-traits",
802
+ ]
803
+
804
+ [[package]]
805
+ name = "fancy-regex"
806
+ version = "0.11.0"
807
+ source = "registry+https://github.com/rust-lang/crates.io-index"
808
+ checksum = "b95f7c0680e4142284cf8b22c14a476e87d61b004a3a0861872b32ef7ead40a2"
809
+ dependencies = [
810
+ "bit-set",
811
+ "regex",
812
+ ]
813
+
814
+ [[package]]
815
+ name = "fast-srgb8"
816
+ version = "1.0.0"
817
+ source = "registry+https://github.com/rust-lang/crates.io-index"
818
+ checksum = "dd2e7510819d6fbf51a5545c8f922716ecfb14df168a3242f7d33e0239efe6a1"
819
+
820
+ [[package]]
821
+ name = "fastrand"
822
+ version = "2.4.1"
823
+ source = "registry+https://github.com/rust-lang/crates.io-index"
824
+ checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
825
+
826
+ [[package]]
827
+ name = "filedescriptor"
828
+ version = "0.8.3"
829
+ source = "registry+https://github.com/rust-lang/crates.io-index"
830
+ checksum = "e40758ed24c9b2eeb76c35fb0aebc66c626084edd827e07e1552279814c6682d"
831
+ dependencies = [
832
+ "libc",
833
+ "thiserror 1.0.69",
834
+ "winapi",
835
+ ]
836
+
837
+ [[package]]
838
+ name = "find-msvc-tools"
839
+ version = "0.1.9"
840
+ source = "registry+https://github.com/rust-lang/crates.io-index"
841
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
842
+
843
+ [[package]]
844
+ name = "finl_unicode"
845
+ version = "1.4.0"
846
+ source = "registry+https://github.com/rust-lang/crates.io-index"
847
+ checksum = "9844ddc3a6e533d62bba727eb6c28b5d360921d5175e9ff0f1e621a5c590a4d5"
848
+
849
+ [[package]]
850
+ name = "fixedbitset"
851
+ version = "0.4.2"
852
+ source = "registry+https://github.com/rust-lang/crates.io-index"
853
+ checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
854
+
855
+ [[package]]
856
+ name = "fixedbitset"
857
+ version = "0.5.7"
858
+ source = "registry+https://github.com/rust-lang/crates.io-index"
859
+ checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99"
860
+
861
+ [[package]]
862
+ name = "flatbuffers"
863
+ version = "25.12.19"
864
+ source = "registry+https://github.com/rust-lang/crates.io-index"
865
+ checksum = "35f6839d7b3b98adde531effaf34f0c2badc6f4735d26fe74709d8e513a96ef3"
866
+ dependencies = [
867
+ "bitflags 2.13.0",
868
+ "rustc_version",
869
+ ]
870
+
871
+ [[package]]
872
+ name = "fnv"
873
+ version = "1.0.7"
874
+ source = "registry+https://github.com/rust-lang/crates.io-index"
875
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
876
+
877
+ [[package]]
878
+ name = "foldhash"
879
+ version = "0.1.5"
880
+ source = "registry+https://github.com/rust-lang/crates.io-index"
881
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
882
+
883
+ [[package]]
884
+ name = "foldhash"
885
+ version = "0.2.0"
886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
887
+ checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
888
+
889
+ [[package]]
890
+ name = "futures-core"
891
+ version = "0.3.32"
892
+ source = "registry+https://github.com/rust-lang/crates.io-index"
893
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
894
+
895
+ [[package]]
896
+ name = "futures-task"
897
+ version = "0.3.32"
898
+ source = "registry+https://github.com/rust-lang/crates.io-index"
899
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
900
+
901
+ [[package]]
902
+ name = "futures-util"
903
+ version = "0.3.32"
904
+ source = "registry+https://github.com/rust-lang/crates.io-index"
905
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
906
+ dependencies = [
907
+ "futures-core",
908
+ "futures-task",
909
+ "pin-project-lite",
910
+ "slab",
911
+ ]
912
+
913
+ [[package]]
914
+ name = "generic-array"
915
+ version = "0.14.7"
916
+ source = "registry+https://github.com/rust-lang/crates.io-index"
917
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
918
+ dependencies = [
919
+ "typenum",
920
+ "version_check",
921
+ ]
922
+
923
+ [[package]]
924
+ name = "getrandom"
925
+ version = "0.2.17"
926
+ source = "registry+https://github.com/rust-lang/crates.io-index"
927
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
928
+ dependencies = [
929
+ "cfg-if",
930
+ "libc",
931
+ "wasi",
932
+ ]
933
+
934
+ [[package]]
935
+ name = "getrandom"
936
+ version = "0.3.4"
937
+ source = "registry+https://github.com/rust-lang/crates.io-index"
938
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
939
+ dependencies = [
940
+ "cfg-if",
941
+ "libc",
942
+ "r-efi 5.3.0",
943
+ "wasip2",
944
+ ]
945
+
946
+ [[package]]
947
+ name = "getrandom"
948
+ version = "0.4.2"
949
+ source = "registry+https://github.com/rust-lang/crates.io-index"
950
+ checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
951
+ dependencies = [
952
+ "cfg-if",
953
+ "libc",
954
+ "r-efi 6.0.0",
955
+ "wasip2",
956
+ "wasip3",
957
+ ]
958
+
959
+ [[package]]
960
+ name = "half"
961
+ version = "2.7.1"
962
+ source = "registry+https://github.com/rust-lang/crates.io-index"
963
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
964
+ dependencies = [
965
+ "cfg-if",
966
+ "crunchy",
967
+ "num-traits",
968
+ "zerocopy",
969
+ ]
970
+
971
+ [[package]]
972
+ name = "hashbrown"
973
+ version = "0.15.5"
974
+ source = "registry+https://github.com/rust-lang/crates.io-index"
975
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
976
+ dependencies = [
977
+ "foldhash 0.1.5",
978
+ ]
979
+
980
+ [[package]]
981
+ name = "hashbrown"
982
+ version = "0.16.1"
983
+ source = "registry+https://github.com/rust-lang/crates.io-index"
984
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
985
+ dependencies = [
986
+ "allocator-api2",
987
+ "equivalent",
988
+ "foldhash 0.2.0",
989
+ ]
990
+
991
+ [[package]]
992
+ name = "hashbrown"
993
+ version = "0.17.0"
994
+ source = "registry+https://github.com/rust-lang/crates.io-index"
995
+ checksum = "4f467dd6dccf739c208452f8014c75c18bb8301b050ad1cfb27153803edb0f51"
996
+ dependencies = [
997
+ "allocator-api2",
998
+ "equivalent",
999
+ "foldhash 0.2.0",
1000
+ ]
1001
+
1002
+ [[package]]
1003
+ name = "heck"
1004
+ version = "0.5.0"
1005
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1006
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
1007
+
1008
+ [[package]]
1009
+ name = "hermit-abi"
1010
+ version = "0.5.2"
1011
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1012
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
1013
+
1014
+ [[package]]
1015
+ name = "hex"
1016
+ version = "0.4.3"
1017
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1018
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
1019
+
1020
+ [[package]]
1021
+ name = "iana-time-zone"
1022
+ version = "0.1.65"
1023
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1024
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
1025
+ dependencies = [
1026
+ "android_system_properties",
1027
+ "core-foundation-sys",
1028
+ "iana-time-zone-haiku",
1029
+ "js-sys",
1030
+ "log",
1031
+ "wasm-bindgen",
1032
+ "windows-core",
1033
+ ]
1034
+
1035
+ [[package]]
1036
+ name = "iana-time-zone-haiku"
1037
+ version = "0.1.2"
1038
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1039
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
1040
+ dependencies = [
1041
+ "cc",
1042
+ ]
1043
+
1044
+ [[package]]
1045
+ name = "id-arena"
1046
+ version = "2.3.0"
1047
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1048
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
1049
+
1050
+ [[package]]
1051
+ name = "ident_case"
1052
+ version = "1.0.1"
1053
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1054
+ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
1055
+
1056
+ [[package]]
1057
+ name = "indexmap"
1058
+ version = "2.14.0"
1059
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1060
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
1061
+ dependencies = [
1062
+ "equivalent",
1063
+ "hashbrown 0.17.0",
1064
+ "serde",
1065
+ "serde_core",
1066
+ ]
1067
+
1068
+ [[package]]
1069
+ name = "indoc"
1070
+ version = "2.0.7"
1071
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1072
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
1073
+ dependencies = [
1074
+ "rustversion",
1075
+ ]
1076
+
1077
+ [[package]]
1078
+ name = "instability"
1079
+ version = "0.3.12"
1080
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1081
+ checksum = "5eb2d60ef19920a3a9193c3e371f726ec1dafc045dac788d0fb3704272458971"
1082
+ dependencies = [
1083
+ "darling",
1084
+ "indoc",
1085
+ "proc-macro2",
1086
+ "quote",
1087
+ "syn 2.0.117",
1088
+ ]
1089
+
1090
+ [[package]]
1091
+ name = "integer-encoding"
1092
+ version = "3.0.4"
1093
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1094
+ checksum = "8bb03732005da905c88227371639bf1ad885cc712789c011c31c5fb3ab3ccf02"
1095
+
1096
+ [[package]]
1097
+ name = "is-terminal"
1098
+ version = "0.4.17"
1099
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1100
+ checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
1101
+ dependencies = [
1102
+ "hermit-abi",
1103
+ "libc",
1104
+ "windows-sys",
1105
+ ]
1106
+
1107
+ [[package]]
1108
+ name = "is_terminal_polyfill"
1109
+ version = "1.70.2"
1110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1111
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
1112
+
1113
+ [[package]]
1114
+ name = "itertools"
1115
+ version = "0.10.5"
1116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1117
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
1118
+ dependencies = [
1119
+ "either",
1120
+ ]
1121
+
1122
+ [[package]]
1123
+ name = "itertools"
1124
+ version = "0.14.0"
1125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1126
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
1127
+ dependencies = [
1128
+ "either",
1129
+ ]
1130
+
1131
+ [[package]]
1132
+ name = "itoa"
1133
+ version = "1.0.18"
1134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1135
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
1136
+
1137
+ [[package]]
1138
+ name = "js-sys"
1139
+ version = "0.3.99"
1140
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1141
+ checksum = "142bc4740e452c1e57ade0cbc129f139c9093e354346f0872ef985f4f5cf5f11"
1142
+ dependencies = [
1143
+ "cfg-if",
1144
+ "futures-util",
1145
+ "once_cell",
1146
+ "wasm-bindgen",
1147
+ ]
1148
+
1149
+ [[package]]
1150
+ name = "kasuari"
1151
+ version = "0.4.12"
1152
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1153
+ checksum = "bde5057d6143cc94e861d90f591b9303d6716c6b9602309150bd068853c10899"
1154
+ dependencies = [
1155
+ "hashbrown 0.16.1",
1156
+ "portable-atomic",
1157
+ "thiserror 2.0.18",
1158
+ ]
1159
+
1160
+ [[package]]
1161
+ name = "lab"
1162
+ version = "0.11.0"
1163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1164
+ checksum = "bf36173d4167ed999940f804952e6b08197cae5ad5d572eb4db150ce8ad5d58f"
1165
+
1166
+ [[package]]
1167
+ name = "lazy_static"
1168
+ version = "1.5.0"
1169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1170
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1171
+
1172
+ [[package]]
1173
+ name = "leb128fmt"
1174
+ version = "0.1.0"
1175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1176
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
1177
+
1178
+ [[package]]
1179
+ name = "lexical-core"
1180
+ version = "1.0.6"
1181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1182
+ checksum = "7d8d125a277f807e55a77304455eb7b1cb52f2b18c143b60e766c120bd64a594"
1183
+ dependencies = [
1184
+ "lexical-parse-float",
1185
+ "lexical-parse-integer",
1186
+ "lexical-util",
1187
+ "lexical-write-float",
1188
+ "lexical-write-integer",
1189
+ ]
1190
+
1191
+ [[package]]
1192
+ name = "lexical-parse-float"
1193
+ version = "1.0.6"
1194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1195
+ checksum = "52a9f232fbd6f550bc0137dcb5f99ab674071ac2d690ac69704593cb4abbea56"
1196
+ dependencies = [
1197
+ "lexical-parse-integer",
1198
+ "lexical-util",
1199
+ ]
1200
+
1201
+ [[package]]
1202
+ name = "lexical-parse-integer"
1203
+ version = "1.0.6"
1204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1205
+ checksum = "9a7a039f8fb9c19c996cd7b2fcce303c1b2874fe1aca544edc85c4a5f8489b34"
1206
+ dependencies = [
1207
+ "lexical-util",
1208
+ ]
1209
+
1210
+ [[package]]
1211
+ name = "lexical-util"
1212
+ version = "1.0.7"
1213
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1214
+ checksum = "2604dd126bb14f13fb5d1bd6a66155079cb9fa655b37f875b3a742c705dbed17"
1215
+
1216
+ [[package]]
1217
+ name = "lexical-write-float"
1218
+ version = "1.0.6"
1219
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1220
+ checksum = "50c438c87c013188d415fbabbb1dceb44249ab81664efbd31b14ae55dabb6361"
1221
+ dependencies = [
1222
+ "lexical-util",
1223
+ "lexical-write-integer",
1224
+ ]
1225
+
1226
+ [[package]]
1227
+ name = "lexical-write-integer"
1228
+ version = "1.0.6"
1229
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1230
+ checksum = "409851a618475d2d5796377cad353802345cba92c867d9fbcde9cf4eac4e14df"
1231
+ dependencies = [
1232
+ "lexical-util",
1233
+ ]
1234
+
1235
+ [[package]]
1236
+ name = "libc"
1237
+ version = "0.2.186"
1238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1239
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
1240
+
1241
+ [[package]]
1242
+ name = "libm"
1243
+ version = "0.2.16"
1244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1245
+ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
1246
+
1247
+ [[package]]
1248
+ name = "line-clipping"
1249
+ version = "0.3.7"
1250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1251
+ checksum = "3f50e8f47623268b5407192d26876c4d7f89d686ca130fdc53bced4814cd29f8"
1252
+ dependencies = [
1253
+ "bitflags 2.13.0",
1254
+ ]
1255
+
1256
+ [[package]]
1257
+ name = "linux-raw-sys"
1258
+ version = "0.12.1"
1259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1260
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
1261
+
1262
+ [[package]]
1263
+ name = "litrs"
1264
+ version = "1.0.0"
1265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1266
+ checksum = "11d3d7f243d5c5a8b9bb5d6dd2b1602c0cb0b9db1621bafc7ed66e35ff9fe092"
1267
+
1268
+ [[package]]
1269
+ name = "lock_api"
1270
+ version = "0.4.14"
1271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1272
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
1273
+ dependencies = [
1274
+ "scopeguard",
1275
+ ]
1276
+
1277
+ [[package]]
1278
+ name = "log"
1279
+ version = "0.4.32"
1280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1281
+ checksum = "953f07c43838f8e6f9758cab68bf5bed85465e7587ebe0b823f1bcd81978ad3a"
1282
+
1283
+ [[package]]
1284
+ name = "lru"
1285
+ version = "0.18.0"
1286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1287
+ checksum = "8a860605968fce16869fd239cf4237a82f3ac470723415db603b0e8b6c8d4fb9"
1288
+ dependencies = [
1289
+ "hashbrown 0.17.0",
1290
+ ]
1291
+
1292
+ [[package]]
1293
+ name = "mac_address"
1294
+ version = "1.1.8"
1295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1296
+ checksum = "c0aeb26bf5e836cc1c341c8106051b573f1766dfa05aa87f0b98be5e51b02303"
1297
+ dependencies = [
1298
+ "nix",
1299
+ "winapi",
1300
+ ]
1301
+
1302
+ [[package]]
1303
+ name = "matchers"
1304
+ version = "0.2.0"
1305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1306
+ checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
1307
+ dependencies = [
1308
+ "regex-automata",
1309
+ ]
1310
+
1311
+ [[package]]
1312
+ name = "matrixmultiply"
1313
+ version = "0.3.10"
1314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1315
+ checksum = "a06de3016e9fae57a36fd14dba131fccf49f74b40b7fbdb472f96e361ec71a08"
1316
+ dependencies = [
1317
+ "autocfg",
1318
+ "rawpointer",
1319
+ ]
1320
+
1321
+ [[package]]
1322
+ name = "memchr"
1323
+ version = "2.8.0"
1324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1325
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
1326
+
1327
+ [[package]]
1328
+ name = "memmem"
1329
+ version = "0.1.1"
1330
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1331
+ checksum = "a64a92489e2744ce060c349162be1c5f33c6969234104dbd99ddb5feb08b8c15"
1332
+
1333
+ [[package]]
1334
+ name = "memoffset"
1335
+ version = "0.9.1"
1336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1337
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
1338
+ dependencies = [
1339
+ "autocfg",
1340
+ ]
1341
+
1342
+ [[package]]
1343
+ name = "minimal-lexical"
1344
+ version = "0.2.1"
1345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1346
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
1347
+
1348
+ [[package]]
1349
+ name = "mio"
1350
+ version = "1.2.1"
1351
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1352
+ checksum = "02bd0af71c67b473010cbbc60715ee815645a4dc942899111f494b4b737d6fda"
1353
+ dependencies = [
1354
+ "libc",
1355
+ "log",
1356
+ "wasi",
1357
+ "windows-sys",
1358
+ ]
1359
+
1360
+ [[package]]
1361
+ name = "ndarray"
1362
+ version = "0.17.2"
1363
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1364
+ checksum = "520080814a7a6b4a6e9070823bb24b4531daac8c4627e08ba5de8c5ef2f2752d"
1365
+ dependencies = [
1366
+ "matrixmultiply",
1367
+ "num-complex",
1368
+ "num-integer",
1369
+ "num-traits",
1370
+ "portable-atomic",
1371
+ "portable-atomic-util",
1372
+ "rawpointer",
1373
+ ]
1374
+
1375
+ [[package]]
1376
+ name = "nix"
1377
+ version = "0.29.0"
1378
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1379
+ checksum = "71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46"
1380
+ dependencies = [
1381
+ "bitflags 2.13.0",
1382
+ "cfg-if",
1383
+ "cfg_aliases",
1384
+ "libc",
1385
+ "memoffset",
1386
+ ]
1387
+
1388
+ [[package]]
1389
+ name = "nom"
1390
+ version = "7.1.3"
1391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1392
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
1393
+ dependencies = [
1394
+ "memchr",
1395
+ "minimal-lexical",
1396
+ ]
1397
+
1398
+ [[package]]
1399
+ name = "nu-ansi-term"
1400
+ version = "0.50.3"
1401
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1402
+ checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
1403
+ dependencies = [
1404
+ "windows-sys",
1405
+ ]
1406
+
1407
+ [[package]]
1408
+ name = "num-bigint"
1409
+ version = "0.4.6"
1410
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1411
+ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
1412
+ dependencies = [
1413
+ "num-integer",
1414
+ "num-traits",
1415
+ ]
1416
+
1417
+ [[package]]
1418
+ name = "num-complex"
1419
+ version = "0.4.6"
1420
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1421
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
1422
+ dependencies = [
1423
+ "num-traits",
1424
+ ]
1425
+
1426
+ [[package]]
1427
+ name = "num-conv"
1428
+ version = "0.2.2"
1429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1430
+ checksum = "521739c6d2bac4aa25192232afe6841231376b2b26d4d9fae5ecf8ca5772e441"
1431
+
1432
+ [[package]]
1433
+ name = "num-derive"
1434
+ version = "0.4.2"
1435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1436
+ checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202"
1437
+ dependencies = [
1438
+ "proc-macro2",
1439
+ "quote",
1440
+ "syn 2.0.117",
1441
+ ]
1442
+
1443
+ [[package]]
1444
+ name = "num-integer"
1445
+ version = "0.1.46"
1446
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1447
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
1448
+ dependencies = [
1449
+ "num-traits",
1450
+ ]
1451
+
1452
+ [[package]]
1453
+ name = "num-traits"
1454
+ version = "0.2.19"
1455
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1456
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1457
+ dependencies = [
1458
+ "autocfg",
1459
+ "libm",
1460
+ ]
1461
+
1462
+ [[package]]
1463
+ name = "num_threads"
1464
+ version = "0.1.7"
1465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1466
+ checksum = "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9"
1467
+ dependencies = [
1468
+ "libc",
1469
+ ]
1470
+
1471
+ [[package]]
1472
+ name = "once_cell"
1473
+ version = "1.21.4"
1474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1475
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
1476
+
1477
+ [[package]]
1478
+ name = "once_cell_polyfill"
1479
+ version = "1.70.2"
1480
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1481
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
1482
+
1483
+ [[package]]
1484
+ name = "oorandom"
1485
+ version = "11.1.5"
1486
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1487
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
1488
+
1489
+ [[package]]
1490
+ name = "ordered-float"
1491
+ version = "2.10.1"
1492
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1493
+ checksum = "68f19d67e5a2795c94e73e0bb1cc1a7edeb2e28efd39e2e1c9b7a40c1108b11c"
1494
+ dependencies = [
1495
+ "num-traits",
1496
+ ]
1497
+
1498
+ [[package]]
1499
+ name = "ordered-float"
1500
+ version = "4.6.0"
1501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1502
+ checksum = "7bb71e1b3fa6ca1c61f383464aaf2bb0e2f8e772a1f01d486832464de363b951"
1503
+ dependencies = [
1504
+ "num-traits",
1505
+ ]
1506
+
1507
+ [[package]]
1508
+ name = "palette"
1509
+ version = "0.7.6"
1510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1511
+ checksum = "4cbf71184cc5ecc2e4e1baccdb21026c20e5fc3dcf63028a086131b3ab00b6e6"
1512
+ dependencies = [
1513
+ "approx",
1514
+ "fast-srgb8",
1515
+ "libm",
1516
+ "palette_derive",
1517
+ ]
1518
+
1519
+ [[package]]
1520
+ name = "palette_derive"
1521
+ version = "0.7.6"
1522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1523
+ checksum = "f5030daf005bface118c096f510ffb781fc28f9ab6a32ab224d8631be6851d30"
1524
+ dependencies = [
1525
+ "by_address",
1526
+ "proc-macro2",
1527
+ "quote",
1528
+ "syn 2.0.117",
1529
+ ]
1530
+
1531
+ [[package]]
1532
+ name = "parking_lot"
1533
+ version = "0.12.5"
1534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1535
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
1536
+ dependencies = [
1537
+ "lock_api",
1538
+ "parking_lot_core",
1539
+ ]
1540
+
1541
+ [[package]]
1542
+ name = "parking_lot_core"
1543
+ version = "0.9.12"
1544
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1545
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
1546
+ dependencies = [
1547
+ "cfg-if",
1548
+ "libc",
1549
+ "redox_syscall",
1550
+ "smallvec",
1551
+ "windows-link",
1552
+ ]
1553
+
1554
+ [[package]]
1555
+ name = "parquet"
1556
+ version = "58.3.0"
1557
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1558
+ checksum = "5dafa7d01085b62a47dd0c1829550a0a36710ea9c4fe358a05a85477cec8a908"
1559
+ dependencies = [
1560
+ "ahash",
1561
+ "arrow-array",
1562
+ "arrow-buffer",
1563
+ "arrow-data",
1564
+ "arrow-ipc",
1565
+ "arrow-schema",
1566
+ "arrow-select",
1567
+ "base64",
1568
+ "bytes",
1569
+ "chrono",
1570
+ "half",
1571
+ "hashbrown 0.17.0",
1572
+ "num-bigint",
1573
+ "num-integer",
1574
+ "num-traits",
1575
+ "paste",
1576
+ "seq-macro",
1577
+ "snap",
1578
+ "thrift",
1579
+ "twox-hash",
1580
+ ]
1581
+
1582
+ [[package]]
1583
+ name = "paste"
1584
+ version = "1.0.15"
1585
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1586
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
1587
+
1588
+ [[package]]
1589
+ name = "pest"
1590
+ version = "2.8.6"
1591
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1592
+ checksum = "e0848c601009d37dfa3430c4666e147e49cdcf1b92ecd3e63657d8a5f19da662"
1593
+ dependencies = [
1594
+ "memchr",
1595
+ "ucd-trie",
1596
+ ]
1597
+
1598
+ [[package]]
1599
+ name = "pest_derive"
1600
+ version = "2.8.6"
1601
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1602
+ checksum = "11f486f1ea21e6c10ed15d5a7c77165d0ee443402f0780849d1768e7d9d6fe77"
1603
+ dependencies = [
1604
+ "pest",
1605
+ "pest_generator",
1606
+ ]
1607
+
1608
+ [[package]]
1609
+ name = "pest_generator"
1610
+ version = "2.8.6"
1611
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1612
+ checksum = "8040c4647b13b210a963c1ed407c1ff4fdfa01c31d6d2a098218702e6664f94f"
1613
+ dependencies = [
1614
+ "pest",
1615
+ "pest_meta",
1616
+ "proc-macro2",
1617
+ "quote",
1618
+ "syn 2.0.117",
1619
+ ]
1620
+
1621
+ [[package]]
1622
+ name = "pest_meta"
1623
+ version = "2.8.6"
1624
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1625
+ checksum = "89815c69d36021a140146f26659a81d6c2afa33d216d736dd4be5381a7362220"
1626
+ dependencies = [
1627
+ "pest",
1628
+ "sha2",
1629
+ ]
1630
+
1631
+ [[package]]
1632
+ name = "petgraph"
1633
+ version = "0.8.3"
1634
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1635
+ checksum = "8701b58ea97060d5e5b155d383a69952a60943f0e6dfe30b04c287beb0b27455"
1636
+ dependencies = [
1637
+ "fixedbitset 0.5.7",
1638
+ "hashbrown 0.15.5",
1639
+ "indexmap",
1640
+ "serde",
1641
+ ]
1642
+
1643
+ [[package]]
1644
+ name = "phf"
1645
+ version = "0.11.3"
1646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1647
+ checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
1648
+ dependencies = [
1649
+ "phf_macros",
1650
+ "phf_shared",
1651
+ ]
1652
+
1653
+ [[package]]
1654
+ name = "phf_codegen"
1655
+ version = "0.11.3"
1656
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1657
+ checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a"
1658
+ dependencies = [
1659
+ "phf_generator",
1660
+ "phf_shared",
1661
+ ]
1662
+
1663
+ [[package]]
1664
+ name = "phf_generator"
1665
+ version = "0.11.3"
1666
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1667
+ checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
1668
+ dependencies = [
1669
+ "phf_shared",
1670
+ "rand 0.8.6",
1671
+ ]
1672
+
1673
+ [[package]]
1674
+ name = "phf_macros"
1675
+ version = "0.11.3"
1676
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1677
+ checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216"
1678
+ dependencies = [
1679
+ "phf_generator",
1680
+ "phf_shared",
1681
+ "proc-macro2",
1682
+ "quote",
1683
+ "syn 2.0.117",
1684
+ ]
1685
+
1686
+ [[package]]
1687
+ name = "phf_shared"
1688
+ version = "0.11.3"
1689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1690
+ checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
1691
+ dependencies = [
1692
+ "siphasher",
1693
+ ]
1694
+
1695
+ [[package]]
1696
+ name = "pin-project-lite"
1697
+ version = "0.2.17"
1698
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1699
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
1700
+
1701
+ [[package]]
1702
+ name = "portable-atomic"
1703
+ version = "1.13.1"
1704
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1705
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
1706
+
1707
+ [[package]]
1708
+ name = "portable-atomic-util"
1709
+ version = "0.2.7"
1710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1711
+ checksum = "c2a106d1259c23fac8e543272398ae0e3c0b8d33c88ed73d0cc71b0f1d902618"
1712
+ dependencies = [
1713
+ "portable-atomic",
1714
+ ]
1715
+
1716
+ [[package]]
1717
+ name = "powerfmt"
1718
+ version = "0.2.0"
1719
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1720
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
1721
+
1722
+ [[package]]
1723
+ name = "powerio"
1724
+ version = "0.0.1"
1725
+ dependencies = [
1726
+ "criterion",
1727
+ "lexical-core",
1728
+ "num-complex",
1729
+ "petgraph",
1730
+ "serde",
1731
+ "serde_json",
1732
+ "thiserror 2.0.18",
1733
+ ]
1734
+
1735
+ [[package]]
1736
+ name = "powerio-capi"
1737
+ version = "0.0.1"
1738
+ dependencies = [
1739
+ "arrow",
1740
+ "powerio",
1741
+ ]
1742
+
1743
+ [[package]]
1744
+ name = "powerio-cli"
1745
+ version = "0.0.1"
1746
+ dependencies = [
1747
+ "anyhow",
1748
+ "clap",
1749
+ "crossterm",
1750
+ "powerio-matrix",
1751
+ "ratatui",
1752
+ "sprs",
1753
+ "tracing",
1754
+ "tracing-subscriber",
1755
+ "walkdir",
1756
+ ]
1757
+
1758
+ [[package]]
1759
+ name = "powerio-matrix"
1760
+ version = "0.0.1"
1761
+ dependencies = [
1762
+ "approx",
1763
+ "arrow",
1764
+ "num-complex",
1765
+ "parquet",
1766
+ "powerio",
1767
+ "rand 0.9.4",
1768
+ "rand_chacha",
1769
+ "rayon",
1770
+ "serde",
1771
+ "serde_json",
1772
+ "sha2",
1773
+ "sprs",
1774
+ "tempfile",
1775
+ "walkdir",
1776
+ ]
1777
+
1778
+ [[package]]
1779
+ name = "powerio-py"
1780
+ version = "0.0.1"
1781
+ dependencies = [
1782
+ "powerio-matrix",
1783
+ "pyo3",
1784
+ "sprs",
1785
+ ]
1786
+
1787
+ [[package]]
1788
+ name = "ppv-lite86"
1789
+ version = "0.2.21"
1790
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1791
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1792
+ dependencies = [
1793
+ "zerocopy",
1794
+ ]
1795
+
1796
+ [[package]]
1797
+ name = "prettyplease"
1798
+ version = "0.2.37"
1799
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1800
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
1801
+ dependencies = [
1802
+ "proc-macro2",
1803
+ "syn 2.0.117",
1804
+ ]
1805
+
1806
+ [[package]]
1807
+ name = "proc-macro2"
1808
+ version = "1.0.106"
1809
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1810
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1811
+ dependencies = [
1812
+ "unicode-ident",
1813
+ ]
1814
+
1815
+ [[package]]
1816
+ name = "pyo3"
1817
+ version = "0.27.2"
1818
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1819
+ checksum = "ab53c047fcd1a1d2a8820fe84f05d6be69e9526be40cb03b73f86b6b03e6d87d"
1820
+ dependencies = [
1821
+ "indoc",
1822
+ "libc",
1823
+ "memoffset",
1824
+ "once_cell",
1825
+ "portable-atomic",
1826
+ "pyo3-build-config",
1827
+ "pyo3-ffi",
1828
+ "pyo3-macros",
1829
+ "unindent",
1830
+ ]
1831
+
1832
+ [[package]]
1833
+ name = "pyo3-build-config"
1834
+ version = "0.27.2"
1835
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1836
+ checksum = "b455933107de8642b4487ed26d912c2d899dec6114884214a0b3bb3be9261ea6"
1837
+ dependencies = [
1838
+ "target-lexicon",
1839
+ ]
1840
+
1841
+ [[package]]
1842
+ name = "pyo3-ffi"
1843
+ version = "0.27.2"
1844
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1845
+ checksum = "1c85c9cbfaddf651b1221594209aed57e9e5cff63c4d11d1feead529b872a089"
1846
+ dependencies = [
1847
+ "libc",
1848
+ "pyo3-build-config",
1849
+ ]
1850
+
1851
+ [[package]]
1852
+ name = "pyo3-macros"
1853
+ version = "0.27.2"
1854
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1855
+ checksum = "0a5b10c9bf9888125d917fb4d2ca2d25c8df94c7ab5a52e13313a07e050a3b02"
1856
+ dependencies = [
1857
+ "proc-macro2",
1858
+ "pyo3-macros-backend",
1859
+ "quote",
1860
+ "syn 2.0.117",
1861
+ ]
1862
+
1863
+ [[package]]
1864
+ name = "pyo3-macros-backend"
1865
+ version = "0.27.2"
1866
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1867
+ checksum = "03b51720d314836e53327f5871d4c0cfb4fb37cc2c4a11cc71907a86342c40f9"
1868
+ dependencies = [
1869
+ "heck",
1870
+ "proc-macro2",
1871
+ "pyo3-build-config",
1872
+ "quote",
1873
+ "syn 2.0.117",
1874
+ ]
1875
+
1876
+ [[package]]
1877
+ name = "quote"
1878
+ version = "1.0.45"
1879
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1880
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
1881
+ dependencies = [
1882
+ "proc-macro2",
1883
+ ]
1884
+
1885
+ [[package]]
1886
+ name = "r-efi"
1887
+ version = "5.3.0"
1888
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1889
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1890
+
1891
+ [[package]]
1892
+ name = "r-efi"
1893
+ version = "6.0.0"
1894
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1895
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
1896
+
1897
+ [[package]]
1898
+ name = "rand"
1899
+ version = "0.8.6"
1900
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1901
+ checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a"
1902
+ dependencies = [
1903
+ "rand_core 0.6.4",
1904
+ ]
1905
+
1906
+ [[package]]
1907
+ name = "rand"
1908
+ version = "0.9.4"
1909
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1910
+ checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
1911
+ dependencies = [
1912
+ "rand_chacha",
1913
+ "rand_core 0.9.5",
1914
+ ]
1915
+
1916
+ [[package]]
1917
+ name = "rand_chacha"
1918
+ version = "0.9.0"
1919
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1920
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
1921
+ dependencies = [
1922
+ "ppv-lite86",
1923
+ "rand_core 0.9.5",
1924
+ ]
1925
+
1926
+ [[package]]
1927
+ name = "rand_core"
1928
+ version = "0.6.4"
1929
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1930
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1931
+
1932
+ [[package]]
1933
+ name = "rand_core"
1934
+ version = "0.9.5"
1935
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1936
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
1937
+ dependencies = [
1938
+ "getrandom 0.3.4",
1939
+ ]
1940
+
1941
+ [[package]]
1942
+ name = "ratatui"
1943
+ version = "0.30.1"
1944
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1945
+ checksum = "1695748e3a735b34968c887ceea5a380b43545903868ae8f5b666593100f6b68"
1946
+ dependencies = [
1947
+ "instability",
1948
+ "ratatui-core",
1949
+ "ratatui-crossterm",
1950
+ "ratatui-macros",
1951
+ "ratatui-termwiz",
1952
+ "ratatui-widgets",
1953
+ "serde",
1954
+ ]
1955
+
1956
+ [[package]]
1957
+ name = "ratatui-core"
1958
+ version = "0.1.1"
1959
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1960
+ checksum = "42d3603f354bba8c595fa47860e60142d7372b7210c27044c6a7d0e1a4336b44"
1961
+ dependencies = [
1962
+ "bitflags 2.13.0",
1963
+ "compact_str",
1964
+ "critical-section",
1965
+ "hashbrown 0.17.0",
1966
+ "indoc",
1967
+ "itertools 0.14.0",
1968
+ "kasuari",
1969
+ "lru",
1970
+ "palette",
1971
+ "serde",
1972
+ "strum",
1973
+ "thiserror 2.0.18",
1974
+ "unicode-segmentation",
1975
+ "unicode-truncate",
1976
+ "unicode-width",
1977
+ ]
1978
+
1979
+ [[package]]
1980
+ name = "ratatui-crossterm"
1981
+ version = "0.1.1"
1982
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1983
+ checksum = "2b2867bedcbd6a690ca4f8672a687b730ec07660c79844517b084311b529980c"
1984
+ dependencies = [
1985
+ "cfg-if",
1986
+ "crossterm",
1987
+ "instability",
1988
+ "ratatui-core",
1989
+ ]
1990
+
1991
+ [[package]]
1992
+ name = "ratatui-macros"
1993
+ version = "0.7.1"
1994
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1995
+ checksum = "80fac59720679490d89d200df411faa249be728681adcabed3d047ae72c48f1d"
1996
+ dependencies = [
1997
+ "ratatui-core",
1998
+ "ratatui-widgets",
1999
+ ]
2000
+
2001
+ [[package]]
2002
+ name = "ratatui-termwiz"
2003
+ version = "0.1.1"
2004
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2005
+ checksum = "386b8ff8f74ed749509391c56d549761a2fcdb408e1f42e467286bcb7dac8967"
2006
+ dependencies = [
2007
+ "ratatui-core",
2008
+ "termwiz",
2009
+ ]
2010
+
2011
+ [[package]]
2012
+ name = "ratatui-widgets"
2013
+ version = "0.3.1"
2014
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2015
+ checksum = "7ef4f17dd7ac3abf5adc2b920a03c61eee4bfe6a88fa5191936895525371d79c"
2016
+ dependencies = [
2017
+ "bitflags 2.13.0",
2018
+ "hashbrown 0.17.0",
2019
+ "indoc",
2020
+ "instability",
2021
+ "itertools 0.14.0",
2022
+ "line-clipping",
2023
+ "ratatui-core",
2024
+ "serde",
2025
+ "strum",
2026
+ "time",
2027
+ "unicode-segmentation",
2028
+ "unicode-width",
2029
+ ]
2030
+
2031
+ [[package]]
2032
+ name = "rawpointer"
2033
+ version = "0.2.1"
2034
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2035
+ checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
2036
+
2037
+ [[package]]
2038
+ name = "rayon"
2039
+ version = "1.12.0"
2040
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2041
+ checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
2042
+ dependencies = [
2043
+ "either",
2044
+ "rayon-core",
2045
+ ]
2046
+
2047
+ [[package]]
2048
+ name = "rayon-core"
2049
+ version = "1.13.0"
2050
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2051
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
2052
+ dependencies = [
2053
+ "crossbeam-deque",
2054
+ "crossbeam-utils",
2055
+ ]
2056
+
2057
+ [[package]]
2058
+ name = "redox_syscall"
2059
+ version = "0.5.18"
2060
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2061
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
2062
+ dependencies = [
2063
+ "bitflags 2.13.0",
2064
+ ]
2065
+
2066
+ [[package]]
2067
+ name = "regex"
2068
+ version = "1.12.3"
2069
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2070
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
2071
+ dependencies = [
2072
+ "aho-corasick",
2073
+ "memchr",
2074
+ "regex-automata",
2075
+ "regex-syntax",
2076
+ ]
2077
+
2078
+ [[package]]
2079
+ name = "regex-automata"
2080
+ version = "0.4.14"
2081
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2082
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
2083
+ dependencies = [
2084
+ "aho-corasick",
2085
+ "memchr",
2086
+ "regex-syntax",
2087
+ ]
2088
+
2089
+ [[package]]
2090
+ name = "regex-syntax"
2091
+ version = "0.8.10"
2092
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2093
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
2094
+
2095
+ [[package]]
2096
+ name = "rustc_version"
2097
+ version = "0.4.1"
2098
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2099
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
2100
+ dependencies = [
2101
+ "semver",
2102
+ ]
2103
+
2104
+ [[package]]
2105
+ name = "rustix"
2106
+ version = "1.1.4"
2107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2108
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
2109
+ dependencies = [
2110
+ "bitflags 2.13.0",
2111
+ "errno",
2112
+ "libc",
2113
+ "linux-raw-sys",
2114
+ "windows-sys",
2115
+ ]
2116
+
2117
+ [[package]]
2118
+ name = "rustversion"
2119
+ version = "1.0.22"
2120
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2121
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
2122
+
2123
+ [[package]]
2124
+ name = "ryu"
2125
+ version = "1.0.23"
2126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2127
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
2128
+
2129
+ [[package]]
2130
+ name = "same-file"
2131
+ version = "1.0.6"
2132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2133
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
2134
+ dependencies = [
2135
+ "winapi-util",
2136
+ ]
2137
+
2138
+ [[package]]
2139
+ name = "scopeguard"
2140
+ version = "1.2.0"
2141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2142
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2143
+
2144
+ [[package]]
2145
+ name = "semver"
2146
+ version = "1.0.28"
2147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2148
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
2149
+
2150
+ [[package]]
2151
+ name = "seq-macro"
2152
+ version = "0.3.6"
2153
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2154
+ checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
2155
+
2156
+ [[package]]
2157
+ name = "serde"
2158
+ version = "1.0.228"
2159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2160
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
2161
+ dependencies = [
2162
+ "serde_core",
2163
+ "serde_derive",
2164
+ ]
2165
+
2166
+ [[package]]
2167
+ name = "serde_core"
2168
+ version = "1.0.228"
2169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2170
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
2171
+ dependencies = [
2172
+ "serde_derive",
2173
+ ]
2174
+
2175
+ [[package]]
2176
+ name = "serde_derive"
2177
+ version = "1.0.228"
2178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2179
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
2180
+ dependencies = [
2181
+ "proc-macro2",
2182
+ "quote",
2183
+ "syn 2.0.117",
2184
+ ]
2185
+
2186
+ [[package]]
2187
+ name = "serde_json"
2188
+ version = "1.0.149"
2189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2190
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
2191
+ dependencies = [
2192
+ "itoa",
2193
+ "memchr",
2194
+ "serde",
2195
+ "serde_core",
2196
+ "zmij",
2197
+ ]
2198
+
2199
+ [[package]]
2200
+ name = "sha2"
2201
+ version = "0.10.9"
2202
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2203
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
2204
+ dependencies = [
2205
+ "cfg-if",
2206
+ "cpufeatures",
2207
+ "digest",
2208
+ ]
2209
+
2210
+ [[package]]
2211
+ name = "sharded-slab"
2212
+ version = "0.1.7"
2213
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2214
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
2215
+ dependencies = [
2216
+ "lazy_static",
2217
+ ]
2218
+
2219
+ [[package]]
2220
+ name = "shlex"
2221
+ version = "2.0.1"
2222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2223
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
2224
+
2225
+ [[package]]
2226
+ name = "signal-hook"
2227
+ version = "0.3.18"
2228
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2229
+ checksum = "d881a16cf4426aa584979d30bd82cb33429027e42122b169753d6ef1085ed6e2"
2230
+ dependencies = [
2231
+ "libc",
2232
+ "signal-hook-registry",
2233
+ ]
2234
+
2235
+ [[package]]
2236
+ name = "signal-hook-mio"
2237
+ version = "0.2.5"
2238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2239
+ checksum = "b75a19a7a740b25bc7944bdee6172368f988763b744e3d4dfe753f6b4ece40cc"
2240
+ dependencies = [
2241
+ "libc",
2242
+ "mio",
2243
+ "signal-hook",
2244
+ ]
2245
+
2246
+ [[package]]
2247
+ name = "signal-hook-registry"
2248
+ version = "1.4.8"
2249
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2250
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
2251
+ dependencies = [
2252
+ "errno",
2253
+ "libc",
2254
+ ]
2255
+
2256
+ [[package]]
2257
+ name = "siphasher"
2258
+ version = "1.0.3"
2259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2260
+ checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649"
2261
+
2262
+ [[package]]
2263
+ name = "slab"
2264
+ version = "0.4.12"
2265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2266
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
2267
+
2268
+ [[package]]
2269
+ name = "smallvec"
2270
+ version = "1.15.1"
2271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2272
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
2273
+
2274
+ [[package]]
2275
+ name = "snap"
2276
+ version = "1.1.1"
2277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2278
+ checksum = "1b6b67fb9a61334225b5b790716f609cd58395f895b3fe8b328786812a40bc3b"
2279
+
2280
+ [[package]]
2281
+ name = "sprs"
2282
+ version = "0.11.4"
2283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2284
+ checksum = "6dca58a33be2188d4edc71534f8bafa826e787cc28ca1c47f31be3423f0d6e55"
2285
+ dependencies = [
2286
+ "ndarray",
2287
+ "num-complex",
2288
+ "num-traits",
2289
+ "smallvec",
2290
+ ]
2291
+
2292
+ [[package]]
2293
+ name = "static_assertions"
2294
+ version = "1.1.0"
2295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2296
+ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
2297
+
2298
+ [[package]]
2299
+ name = "strsim"
2300
+ version = "0.11.1"
2301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2302
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
2303
+
2304
+ [[package]]
2305
+ name = "strum"
2306
+ version = "0.28.0"
2307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2308
+ checksum = "9628de9b8791db39ceda2b119bbe13134770b56c138ec1d3af810d045c04f9bd"
2309
+ dependencies = [
2310
+ "strum_macros",
2311
+ ]
2312
+
2313
+ [[package]]
2314
+ name = "strum_macros"
2315
+ version = "0.28.0"
2316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2317
+ checksum = "ab85eea0270ee17587ed4156089e10b9e6880ee688791d45a905f5b1ca36f664"
2318
+ dependencies = [
2319
+ "heck",
2320
+ "proc-macro2",
2321
+ "quote",
2322
+ "syn 2.0.117",
2323
+ ]
2324
+
2325
+ [[package]]
2326
+ name = "syn"
2327
+ version = "1.0.109"
2328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2329
+ checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
2330
+ dependencies = [
2331
+ "proc-macro2",
2332
+ "quote",
2333
+ "unicode-ident",
2334
+ ]
2335
+
2336
+ [[package]]
2337
+ name = "syn"
2338
+ version = "2.0.117"
2339
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2340
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
2341
+ dependencies = [
2342
+ "proc-macro2",
2343
+ "quote",
2344
+ "unicode-ident",
2345
+ ]
2346
+
2347
+ [[package]]
2348
+ name = "target-lexicon"
2349
+ version = "0.13.5"
2350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2351
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
2352
+
2353
+ [[package]]
2354
+ name = "tempfile"
2355
+ version = "3.27.0"
2356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2357
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
2358
+ dependencies = [
2359
+ "fastrand",
2360
+ "getrandom 0.4.2",
2361
+ "once_cell",
2362
+ "rustix",
2363
+ "windows-sys",
2364
+ ]
2365
+
2366
+ [[package]]
2367
+ name = "terminfo"
2368
+ version = "0.9.0"
2369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2370
+ checksum = "d4ea810f0692f9f51b382fff5893887bb4580f5fa246fde546e0b13e7fcee662"
2371
+ dependencies = [
2372
+ "fnv",
2373
+ "nom",
2374
+ "phf",
2375
+ "phf_codegen",
2376
+ ]
2377
+
2378
+ [[package]]
2379
+ name = "termios"
2380
+ version = "0.3.3"
2381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2382
+ checksum = "411c5bf740737c7918b8b1fe232dca4dc9f8e754b8ad5e20966814001ed0ac6b"
2383
+ dependencies = [
2384
+ "libc",
2385
+ ]
2386
+
2387
+ [[package]]
2388
+ name = "termwiz"
2389
+ version = "0.23.3"
2390
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2391
+ checksum = "4676b37242ccbd1aabf56edb093a4827dc49086c0ffd764a5705899e0f35f8f7"
2392
+ dependencies = [
2393
+ "anyhow",
2394
+ "base64",
2395
+ "bitflags 2.13.0",
2396
+ "fancy-regex",
2397
+ "filedescriptor",
2398
+ "finl_unicode",
2399
+ "fixedbitset 0.4.2",
2400
+ "hex",
2401
+ "lazy_static",
2402
+ "libc",
2403
+ "log",
2404
+ "memmem",
2405
+ "nix",
2406
+ "num-derive",
2407
+ "num-traits",
2408
+ "ordered-float 4.6.0",
2409
+ "pest",
2410
+ "pest_derive",
2411
+ "phf",
2412
+ "sha2",
2413
+ "signal-hook",
2414
+ "siphasher",
2415
+ "terminfo",
2416
+ "termios",
2417
+ "thiserror 1.0.69",
2418
+ "ucd-trie",
2419
+ "unicode-segmentation",
2420
+ "vtparse",
2421
+ "wezterm-bidi",
2422
+ "wezterm-blob-leases",
2423
+ "wezterm-color-types",
2424
+ "wezterm-dynamic",
2425
+ "wezterm-input-types",
2426
+ "winapi",
2427
+ ]
2428
+
2429
+ [[package]]
2430
+ name = "thiserror"
2431
+ version = "1.0.69"
2432
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2433
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
2434
+ dependencies = [
2435
+ "thiserror-impl 1.0.69",
2436
+ ]
2437
+
2438
+ [[package]]
2439
+ name = "thiserror"
2440
+ version = "2.0.18"
2441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2442
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
2443
+ dependencies = [
2444
+ "thiserror-impl 2.0.18",
2445
+ ]
2446
+
2447
+ [[package]]
2448
+ name = "thiserror-impl"
2449
+ version = "1.0.69"
2450
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2451
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
2452
+ dependencies = [
2453
+ "proc-macro2",
2454
+ "quote",
2455
+ "syn 2.0.117",
2456
+ ]
2457
+
2458
+ [[package]]
2459
+ name = "thiserror-impl"
2460
+ version = "2.0.18"
2461
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2462
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
2463
+ dependencies = [
2464
+ "proc-macro2",
2465
+ "quote",
2466
+ "syn 2.0.117",
2467
+ ]
2468
+
2469
+ [[package]]
2470
+ name = "thread_local"
2471
+ version = "1.1.9"
2472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2473
+ checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
2474
+ dependencies = [
2475
+ "cfg-if",
2476
+ ]
2477
+
2478
+ [[package]]
2479
+ name = "thrift"
2480
+ version = "0.17.0"
2481
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2482
+ checksum = "7e54bc85fc7faa8bc175c4bab5b92ba8d9a3ce893d0e9f42cc455c8ab16a9e09"
2483
+ dependencies = [
2484
+ "byteorder",
2485
+ "integer-encoding",
2486
+ "ordered-float 2.10.1",
2487
+ ]
2488
+
2489
+ [[package]]
2490
+ name = "time"
2491
+ version = "0.3.47"
2492
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2493
+ checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c"
2494
+ dependencies = [
2495
+ "deranged",
2496
+ "libc",
2497
+ "num-conv",
2498
+ "num_threads",
2499
+ "powerfmt",
2500
+ "serde_core",
2501
+ "time-core",
2502
+ ]
2503
+
2504
+ [[package]]
2505
+ name = "time-core"
2506
+ version = "0.1.8"
2507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2508
+ checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca"
2509
+
2510
+ [[package]]
2511
+ name = "tiny-keccak"
2512
+ version = "2.0.2"
2513
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2514
+ checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
2515
+ dependencies = [
2516
+ "crunchy",
2517
+ ]
2518
+
2519
+ [[package]]
2520
+ name = "tinytemplate"
2521
+ version = "1.2.1"
2522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2523
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
2524
+ dependencies = [
2525
+ "serde",
2526
+ "serde_json",
2527
+ ]
2528
+
2529
+ [[package]]
2530
+ name = "tracing"
2531
+ version = "0.1.44"
2532
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2533
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
2534
+ dependencies = [
2535
+ "pin-project-lite",
2536
+ "tracing-attributes",
2537
+ "tracing-core",
2538
+ ]
2539
+
2540
+ [[package]]
2541
+ name = "tracing-attributes"
2542
+ version = "0.1.31"
2543
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2544
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
2545
+ dependencies = [
2546
+ "proc-macro2",
2547
+ "quote",
2548
+ "syn 2.0.117",
2549
+ ]
2550
+
2551
+ [[package]]
2552
+ name = "tracing-core"
2553
+ version = "0.1.36"
2554
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2555
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
2556
+ dependencies = [
2557
+ "once_cell",
2558
+ "valuable",
2559
+ ]
2560
+
2561
+ [[package]]
2562
+ name = "tracing-log"
2563
+ version = "0.2.0"
2564
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2565
+ checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
2566
+ dependencies = [
2567
+ "log",
2568
+ "once_cell",
2569
+ "tracing-core",
2570
+ ]
2571
+
2572
+ [[package]]
2573
+ name = "tracing-subscriber"
2574
+ version = "0.3.23"
2575
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2576
+ checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319"
2577
+ dependencies = [
2578
+ "matchers",
2579
+ "nu-ansi-term",
2580
+ "once_cell",
2581
+ "regex-automata",
2582
+ "sharded-slab",
2583
+ "smallvec",
2584
+ "thread_local",
2585
+ "tracing",
2586
+ "tracing-core",
2587
+ "tracing-log",
2588
+ ]
2589
+
2590
+ [[package]]
2591
+ name = "twox-hash"
2592
+ version = "2.1.2"
2593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2594
+ checksum = "9ea3136b675547379c4bd395ca6b938e5ad3c3d20fad76e7fe85f9e0d011419c"
2595
+
2596
+ [[package]]
2597
+ name = "typenum"
2598
+ version = "1.20.0"
2599
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2600
+ checksum = "40ce102ab67701b8526c123c1bab5cbe42d7040ccfd0f64af1a385808d2f43de"
2601
+
2602
+ [[package]]
2603
+ name = "ucd-trie"
2604
+ version = "0.1.7"
2605
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2606
+ checksum = "2896d95c02a80c6d6a5d6e953d479f5ddf2dfdb6a244441010e373ac0fb88971"
2607
+
2608
+ [[package]]
2609
+ name = "unicode-ident"
2610
+ version = "1.0.24"
2611
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2612
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
2613
+
2614
+ [[package]]
2615
+ name = "unicode-segmentation"
2616
+ version = "1.13.3"
2617
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2618
+ checksum = "c6f5d3c3b1bf09027a88a6bc961fc00497d651009560b5463668dc81b0fa87a8"
2619
+
2620
+ [[package]]
2621
+ name = "unicode-truncate"
2622
+ version = "2.0.1"
2623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2624
+ checksum = "16b380a1238663e5f8a691f9039c73e1cdae598a30e9855f541d29b08b53e9a5"
2625
+ dependencies = [
2626
+ "itertools 0.14.0",
2627
+ "unicode-segmentation",
2628
+ "unicode-width",
2629
+ ]
2630
+
2631
+ [[package]]
2632
+ name = "unicode-width"
2633
+ version = "0.2.2"
2634
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2635
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
2636
+
2637
+ [[package]]
2638
+ name = "unicode-xid"
2639
+ version = "0.2.6"
2640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2641
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
2642
+
2643
+ [[package]]
2644
+ name = "unindent"
2645
+ version = "0.2.4"
2646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2647
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
2648
+
2649
+ [[package]]
2650
+ name = "utf8parse"
2651
+ version = "0.2.2"
2652
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2653
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
2654
+
2655
+ [[package]]
2656
+ name = "uuid"
2657
+ version = "1.23.2"
2658
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2659
+ checksum = "d258b83ceec21034727ecee8c382cfa6c3e133699b0742c64571814fb420c9f7"
2660
+ dependencies = [
2661
+ "atomic",
2662
+ "getrandom 0.4.2",
2663
+ "js-sys",
2664
+ "wasm-bindgen",
2665
+ ]
2666
+
2667
+ [[package]]
2668
+ name = "valuable"
2669
+ version = "0.1.1"
2670
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2671
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
2672
+
2673
+ [[package]]
2674
+ name = "version_check"
2675
+ version = "0.9.5"
2676
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2677
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
2678
+
2679
+ [[package]]
2680
+ name = "vtparse"
2681
+ version = "0.6.2"
2682
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2683
+ checksum = "6d9b2acfb050df409c972a37d3b8e08cdea3bddb0c09db9d53137e504cfabed0"
2684
+ dependencies = [
2685
+ "utf8parse",
2686
+ ]
2687
+
2688
+ [[package]]
2689
+ name = "walkdir"
2690
+ version = "2.5.0"
2691
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2692
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
2693
+ dependencies = [
2694
+ "same-file",
2695
+ "winapi-util",
2696
+ ]
2697
+
2698
+ [[package]]
2699
+ name = "wasi"
2700
+ version = "0.11.1+wasi-snapshot-preview1"
2701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2702
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
2703
+
2704
+ [[package]]
2705
+ name = "wasip2"
2706
+ version = "1.0.3+wasi-0.2.9"
2707
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2708
+ checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
2709
+ dependencies = [
2710
+ "wit-bindgen 0.57.1",
2711
+ ]
2712
+
2713
+ [[package]]
2714
+ name = "wasip3"
2715
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
2716
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2717
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
2718
+ dependencies = [
2719
+ "wit-bindgen 0.51.0",
2720
+ ]
2721
+
2722
+ [[package]]
2723
+ name = "wasm-bindgen"
2724
+ version = "0.2.122"
2725
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2726
+ checksum = "3ed04576f974d2b2fba0f38c51dbc5518011e38c36bf1143164be765528fd409"
2727
+ dependencies = [
2728
+ "cfg-if",
2729
+ "once_cell",
2730
+ "rustversion",
2731
+ "wasm-bindgen-macro",
2732
+ "wasm-bindgen-shared",
2733
+ ]
2734
+
2735
+ [[package]]
2736
+ name = "wasm-bindgen-macro"
2737
+ version = "0.2.122"
2738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2739
+ checksum = "916151b09da36bd82f6615cbf3a419e2f0ba23a03c6160e8e92eb6bd4aa1dec6"
2740
+ dependencies = [
2741
+ "quote",
2742
+ "wasm-bindgen-macro-support",
2743
+ ]
2744
+
2745
+ [[package]]
2746
+ name = "wasm-bindgen-macro-support"
2747
+ version = "0.2.122"
2748
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2749
+ checksum = "299047362ccbfce148b67ab7e73349f77748e00c8296f9542adfad2ad82c5c5e"
2750
+ dependencies = [
2751
+ "bumpalo",
2752
+ "proc-macro2",
2753
+ "quote",
2754
+ "syn 2.0.117",
2755
+ "wasm-bindgen-shared",
2756
+ ]
2757
+
2758
+ [[package]]
2759
+ name = "wasm-bindgen-shared"
2760
+ version = "0.2.122"
2761
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2762
+ checksum = "9a929b2c61f11ba3e9bc35b50c1f25cb38e0e892c0c231ae2b8cf78d5dad4437"
2763
+ dependencies = [
2764
+ "unicode-ident",
2765
+ ]
2766
+
2767
+ [[package]]
2768
+ name = "wasm-encoder"
2769
+ version = "0.244.0"
2770
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2771
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
2772
+ dependencies = [
2773
+ "leb128fmt",
2774
+ "wasmparser",
2775
+ ]
2776
+
2777
+ [[package]]
2778
+ name = "wasm-metadata"
2779
+ version = "0.244.0"
2780
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2781
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
2782
+ dependencies = [
2783
+ "anyhow",
2784
+ "indexmap",
2785
+ "wasm-encoder",
2786
+ "wasmparser",
2787
+ ]
2788
+
2789
+ [[package]]
2790
+ name = "wasmparser"
2791
+ version = "0.244.0"
2792
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2793
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
2794
+ dependencies = [
2795
+ "bitflags 2.13.0",
2796
+ "hashbrown 0.15.5",
2797
+ "indexmap",
2798
+ "semver",
2799
+ ]
2800
+
2801
+ [[package]]
2802
+ name = "wezterm-bidi"
2803
+ version = "0.2.3"
2804
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2805
+ checksum = "0c0a6e355560527dd2d1cf7890652f4f09bb3433b6aadade4c9b5ed76de5f3ec"
2806
+ dependencies = [
2807
+ "log",
2808
+ "wezterm-dynamic",
2809
+ ]
2810
+
2811
+ [[package]]
2812
+ name = "wezterm-blob-leases"
2813
+ version = "0.1.1"
2814
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2815
+ checksum = "692daff6d93d94e29e4114544ef6d5c942a7ed998b37abdc19b17136ea428eb7"
2816
+ dependencies = [
2817
+ "getrandom 0.3.4",
2818
+ "mac_address",
2819
+ "sha2",
2820
+ "thiserror 1.0.69",
2821
+ "uuid",
2822
+ ]
2823
+
2824
+ [[package]]
2825
+ name = "wezterm-color-types"
2826
+ version = "0.3.0"
2827
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2828
+ checksum = "7de81ef35c9010270d63772bebef2f2d6d1f2d20a983d27505ac850b8c4b4296"
2829
+ dependencies = [
2830
+ "csscolorparser",
2831
+ "deltae",
2832
+ "lazy_static",
2833
+ "wezterm-dynamic",
2834
+ ]
2835
+
2836
+ [[package]]
2837
+ name = "wezterm-dynamic"
2838
+ version = "0.2.1"
2839
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2840
+ checksum = "5f2ab60e120fd6eaa68d9567f3226e876684639d22a4219b313ff69ec0ccd5ac"
2841
+ dependencies = [
2842
+ "log",
2843
+ "ordered-float 4.6.0",
2844
+ "strsim",
2845
+ "thiserror 1.0.69",
2846
+ "wezterm-dynamic-derive",
2847
+ ]
2848
+
2849
+ [[package]]
2850
+ name = "wezterm-dynamic-derive"
2851
+ version = "0.1.1"
2852
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2853
+ checksum = "46c0cf2d539c645b448eaffec9ec494b8b19bd5077d9e58cb1ae7efece8d575b"
2854
+ dependencies = [
2855
+ "proc-macro2",
2856
+ "quote",
2857
+ "syn 1.0.109",
2858
+ ]
2859
+
2860
+ [[package]]
2861
+ name = "wezterm-input-types"
2862
+ version = "0.1.0"
2863
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2864
+ checksum = "7012add459f951456ec9d6c7e6fc340b1ce15d6fc9629f8c42853412c029e57e"
2865
+ dependencies = [
2866
+ "bitflags 1.3.2",
2867
+ "euclid",
2868
+ "lazy_static",
2869
+ "serde",
2870
+ "wezterm-dynamic",
2871
+ ]
2872
+
2873
+ [[package]]
2874
+ name = "winapi"
2875
+ version = "0.3.9"
2876
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2877
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2878
+ dependencies = [
2879
+ "winapi-i686-pc-windows-gnu",
2880
+ "winapi-x86_64-pc-windows-gnu",
2881
+ ]
2882
+
2883
+ [[package]]
2884
+ name = "winapi-i686-pc-windows-gnu"
2885
+ version = "0.4.0"
2886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2887
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2888
+
2889
+ [[package]]
2890
+ name = "winapi-util"
2891
+ version = "0.1.11"
2892
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2893
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
2894
+ dependencies = [
2895
+ "windows-sys",
2896
+ ]
2897
+
2898
+ [[package]]
2899
+ name = "winapi-x86_64-pc-windows-gnu"
2900
+ version = "0.4.0"
2901
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2902
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2903
+
2904
+ [[package]]
2905
+ name = "windows-core"
2906
+ version = "0.62.2"
2907
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2908
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
2909
+ dependencies = [
2910
+ "windows-implement",
2911
+ "windows-interface",
2912
+ "windows-link",
2913
+ "windows-result",
2914
+ "windows-strings",
2915
+ ]
2916
+
2917
+ [[package]]
2918
+ name = "windows-implement"
2919
+ version = "0.60.2"
2920
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2921
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
2922
+ dependencies = [
2923
+ "proc-macro2",
2924
+ "quote",
2925
+ "syn 2.0.117",
2926
+ ]
2927
+
2928
+ [[package]]
2929
+ name = "windows-interface"
2930
+ version = "0.59.3"
2931
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2932
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
2933
+ dependencies = [
2934
+ "proc-macro2",
2935
+ "quote",
2936
+ "syn 2.0.117",
2937
+ ]
2938
+
2939
+ [[package]]
2940
+ name = "windows-link"
2941
+ version = "0.2.1"
2942
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2943
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
2944
+
2945
+ [[package]]
2946
+ name = "windows-result"
2947
+ version = "0.4.1"
2948
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2949
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
2950
+ dependencies = [
2951
+ "windows-link",
2952
+ ]
2953
+
2954
+ [[package]]
2955
+ name = "windows-strings"
2956
+ version = "0.5.1"
2957
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2958
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
2959
+ dependencies = [
2960
+ "windows-link",
2961
+ ]
2962
+
2963
+ [[package]]
2964
+ name = "windows-sys"
2965
+ version = "0.61.2"
2966
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2967
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
2968
+ dependencies = [
2969
+ "windows-link",
2970
+ ]
2971
+
2972
+ [[package]]
2973
+ name = "wit-bindgen"
2974
+ version = "0.51.0"
2975
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2976
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
2977
+ dependencies = [
2978
+ "wit-bindgen-rust-macro",
2979
+ ]
2980
+
2981
+ [[package]]
2982
+ name = "wit-bindgen"
2983
+ version = "0.57.1"
2984
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2985
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
2986
+
2987
+ [[package]]
2988
+ name = "wit-bindgen-core"
2989
+ version = "0.51.0"
2990
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2991
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
2992
+ dependencies = [
2993
+ "anyhow",
2994
+ "heck",
2995
+ "wit-parser",
2996
+ ]
2997
+
2998
+ [[package]]
2999
+ name = "wit-bindgen-rust"
3000
+ version = "0.51.0"
3001
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3002
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
3003
+ dependencies = [
3004
+ "anyhow",
3005
+ "heck",
3006
+ "indexmap",
3007
+ "prettyplease",
3008
+ "syn 2.0.117",
3009
+ "wasm-metadata",
3010
+ "wit-bindgen-core",
3011
+ "wit-component",
3012
+ ]
3013
+
3014
+ [[package]]
3015
+ name = "wit-bindgen-rust-macro"
3016
+ version = "0.51.0"
3017
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3018
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
3019
+ dependencies = [
3020
+ "anyhow",
3021
+ "prettyplease",
3022
+ "proc-macro2",
3023
+ "quote",
3024
+ "syn 2.0.117",
3025
+ "wit-bindgen-core",
3026
+ "wit-bindgen-rust",
3027
+ ]
3028
+
3029
+ [[package]]
3030
+ name = "wit-component"
3031
+ version = "0.244.0"
3032
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3033
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
3034
+ dependencies = [
3035
+ "anyhow",
3036
+ "bitflags 2.13.0",
3037
+ "indexmap",
3038
+ "log",
3039
+ "serde",
3040
+ "serde_derive",
3041
+ "serde_json",
3042
+ "wasm-encoder",
3043
+ "wasm-metadata",
3044
+ "wasmparser",
3045
+ "wit-parser",
3046
+ ]
3047
+
3048
+ [[package]]
3049
+ name = "wit-parser"
3050
+ version = "0.244.0"
3051
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3052
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
3053
+ dependencies = [
3054
+ "anyhow",
3055
+ "id-arena",
3056
+ "indexmap",
3057
+ "log",
3058
+ "semver",
3059
+ "serde",
3060
+ "serde_derive",
3061
+ "serde_json",
3062
+ "unicode-xid",
3063
+ "wasmparser",
3064
+ ]
3065
+
3066
+ [[package]]
3067
+ name = "zerocopy"
3068
+ version = "0.8.48"
3069
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3070
+ checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
3071
+ dependencies = [
3072
+ "zerocopy-derive",
3073
+ ]
3074
+
3075
+ [[package]]
3076
+ name = "zerocopy-derive"
3077
+ version = "0.8.48"
3078
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3079
+ checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
3080
+ dependencies = [
3081
+ "proc-macro2",
3082
+ "quote",
3083
+ "syn 2.0.117",
3084
+ ]
3085
+
3086
+ [[package]]
3087
+ name = "zmij"
3088
+ version = "1.0.21"
3089
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3090
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"