emry 0.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (46) hide show
  1. emry-0.1.0/Cargo.lock +2256 -0
  2. emry-0.1.0/Cargo.toml +39 -0
  3. emry-0.1.0/LICENSE +17 -0
  4. emry-0.1.0/PKG-INFO +165 -0
  5. emry-0.1.0/README.md +138 -0
  6. emry-0.1.0/crates/emry-core/Cargo.toml +27 -0
  7. emry-0.1.0/crates/emry-core/benches/ring.rs +30 -0
  8. emry-0.1.0/crates/emry-core/src/bus.rs +220 -0
  9. emry-0.1.0/crates/emry-core/src/error.rs +44 -0
  10. emry-0.1.0/crates/emry-core/src/lib.rs +17 -0
  11. emry-0.1.0/crates/emry-core/src/mode.rs +307 -0
  12. emry-0.1.0/crates/emry-core/src/registry.rs +158 -0
  13. emry-0.1.0/crates/emry-core/src/ring.rs +222 -0
  14. emry-0.1.0/crates/emry-core/src/types.rs +434 -0
  15. emry-0.1.0/crates/emry-engine/Cargo.toml +25 -0
  16. emry-0.1.0/crates/emry-engine/benches/emit.rs +41 -0
  17. emry-0.1.0/crates/emry-engine/examples/synthetic_run.rs +37 -0
  18. emry-0.1.0/crates/emry-engine/src/anomaly.rs +287 -0
  19. emry-0.1.0/crates/emry-engine/src/lib.rs +16 -0
  20. emry-0.1.0/crates/emry-engine/src/pipeline.rs +295 -0
  21. emry-0.1.0/crates/emry-engine/src/processor.rs +36 -0
  22. emry-0.1.0/crates/emry-engine/src/session.rs +741 -0
  23. emry-0.1.0/crates/emry-engine/src/stats.rs +255 -0
  24. emry-0.1.0/crates/emry-engine/src/throughput.rs +234 -0
  25. emry-0.1.0/crates/emry-py/Cargo.toml +26 -0
  26. emry-0.1.0/crates/emry-py/src/lib.rs +159 -0
  27. emry-0.1.0/crates/emry-store/Cargo.toml +33 -0
  28. emry-0.1.0/crates/emry-store/benches/jsonl.rs +42 -0
  29. emry-0.1.0/crates/emry-store/src/export.rs +414 -0
  30. emry-0.1.0/crates/emry-store/src/lib.rs +22 -0
  31. emry-0.1.0/crates/emry-store/src/meta.rs +187 -0
  32. emry-0.1.0/crates/emry-store/src/runs.rs +213 -0
  33. emry-0.1.0/crates/emry-store/src/sink.rs +253 -0
  34. emry-0.1.0/crates/emry-store/src/test_util.rs +33 -0
  35. emry-0.1.0/crates/emry-store/src/writer.rs +206 -0
  36. emry-0.1.0/pyproject.toml +66 -0
  37. emry-0.1.0/python/emry/__init__.py +9 -0
  38. emry-0.1.0/python/emry/coerce.py +71 -0
  39. emry-0.1.0/python/emry/jsonl_backend.py +117 -0
  40. emry-0.1.0/python/emry/live.py +98 -0
  41. emry-0.1.0/python/emry/mode.py +90 -0
  42. emry-0.1.0/python/emry/native_backend.py +104 -0
  43. emry-0.1.0/python/emry/phase.py +22 -0
  44. emry-0.1.0/python/emry/run.py +259 -0
  45. emry-0.1.0/python/emry/socket_backend.py +76 -0
  46. emry-0.1.0/python/emry/wire.py +71 -0
emry-0.1.0/Cargo.lock ADDED
@@ -0,0 +1,2256 @@
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 0.61.2",
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 0.61.2",
97
+ ]
98
+
99
+ [[package]]
100
+ name = "arrow-array"
101
+ version = "59.0.0"
102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
103
+ checksum = "0c60c79628e9a97cb90d7a0dc3e944f216a902f837d4ecabc14d524bddbbc137"
104
+ dependencies = [
105
+ "ahash",
106
+ "arrow-buffer",
107
+ "arrow-data",
108
+ "arrow-schema",
109
+ "chrono",
110
+ "half",
111
+ "hashbrown 0.17.1",
112
+ "num-complex",
113
+ "num-integer",
114
+ "num-traits",
115
+ ]
116
+
117
+ [[package]]
118
+ name = "arrow-buffer"
119
+ version = "59.0.0"
120
+ source = "registry+https://github.com/rust-lang/crates.io-index"
121
+ checksum = "6026f638c400e9878c1b1cc05c3cfd46fbf381285916ab408678701c1df46c1a"
122
+ dependencies = [
123
+ "bytes",
124
+ "half",
125
+ "num-bigint",
126
+ "num-traits",
127
+ ]
128
+
129
+ [[package]]
130
+ name = "arrow-data"
131
+ version = "59.0.0"
132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
133
+ checksum = "7bd568aa70c4ec5947027b0d5caee94877433b661a0bb9e8ddceeeb5f0c9b1ab"
134
+ dependencies = [
135
+ "arrow-buffer",
136
+ "arrow-schema",
137
+ "half",
138
+ "num-integer",
139
+ "num-traits",
140
+ ]
141
+
142
+ [[package]]
143
+ name = "arrow-ipc"
144
+ version = "59.0.0"
145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
146
+ checksum = "e57ee4d470eab1a021bc4b63fa2b2c15d572892bf227b0a982d3b755a6c662b5"
147
+ dependencies = [
148
+ "arrow-array",
149
+ "arrow-buffer",
150
+ "arrow-data",
151
+ "arrow-schema",
152
+ "arrow-select",
153
+ "flatbuffers",
154
+ ]
155
+
156
+ [[package]]
157
+ name = "arrow-schema"
158
+ version = "59.0.0"
159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
160
+ checksum = "80b3e786a0dd9103acd583a6fb486dbf2f3268466cc0bd571dcf34cef231c1f1"
161
+
162
+ [[package]]
163
+ name = "arrow-select"
164
+ version = "59.0.0"
165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
166
+ checksum = "067a67e0361f6c31f4a7248759f36ca4ca71b187a941ed4d49da1c7d3d4db624"
167
+ dependencies = [
168
+ "ahash",
169
+ "arrow-array",
170
+ "arrow-buffer",
171
+ "arrow-data",
172
+ "arrow-schema",
173
+ "num-traits",
174
+ ]
175
+
176
+ [[package]]
177
+ name = "async-trait"
178
+ version = "0.1.89"
179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
180
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
181
+ dependencies = [
182
+ "proc-macro2",
183
+ "quote",
184
+ "syn",
185
+ ]
186
+
187
+ [[package]]
188
+ name = "atomic-waker"
189
+ version = "1.1.2"
190
+ source = "registry+https://github.com/rust-lang/crates.io-index"
191
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
192
+
193
+ [[package]]
194
+ name = "autocfg"
195
+ version = "1.5.1"
196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
197
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
198
+
199
+ [[package]]
200
+ name = "axum"
201
+ version = "0.7.9"
202
+ source = "registry+https://github.com/rust-lang/crates.io-index"
203
+ checksum = "edca88bc138befd0323b20752846e6587272d3b03b0343c8ea28a6f819e6e71f"
204
+ dependencies = [
205
+ "async-trait",
206
+ "axum-core",
207
+ "base64",
208
+ "bytes",
209
+ "futures-util",
210
+ "http",
211
+ "http-body",
212
+ "http-body-util",
213
+ "hyper",
214
+ "hyper-util",
215
+ "itoa",
216
+ "matchit",
217
+ "memchr",
218
+ "mime",
219
+ "percent-encoding",
220
+ "pin-project-lite",
221
+ "rustversion",
222
+ "serde",
223
+ "serde_json",
224
+ "serde_path_to_error",
225
+ "serde_urlencoded",
226
+ "sha1",
227
+ "sync_wrapper",
228
+ "tokio",
229
+ "tokio-tungstenite",
230
+ "tower",
231
+ "tower-layer",
232
+ "tower-service",
233
+ "tracing",
234
+ ]
235
+
236
+ [[package]]
237
+ name = "axum-core"
238
+ version = "0.4.5"
239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
240
+ checksum = "09f2bd6146b97ae3359fa0cc6d6b376d9539582c7b4220f041a33ec24c226199"
241
+ dependencies = [
242
+ "async-trait",
243
+ "bytes",
244
+ "futures-util",
245
+ "http",
246
+ "http-body",
247
+ "http-body-util",
248
+ "mime",
249
+ "pin-project-lite",
250
+ "rustversion",
251
+ "sync_wrapper",
252
+ "tower-layer",
253
+ "tower-service",
254
+ "tracing",
255
+ ]
256
+
257
+ [[package]]
258
+ name = "base64"
259
+ version = "0.22.1"
260
+ source = "registry+https://github.com/rust-lang/crates.io-index"
261
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
262
+
263
+ [[package]]
264
+ name = "bitflags"
265
+ version = "2.13.0"
266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
267
+ checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
268
+
269
+ [[package]]
270
+ name = "block-buffer"
271
+ version = "0.10.4"
272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
273
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
274
+ dependencies = [
275
+ "generic-array",
276
+ ]
277
+
278
+ [[package]]
279
+ name = "bumpalo"
280
+ version = "3.20.3"
281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
282
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
283
+
284
+ [[package]]
285
+ name = "byteorder"
286
+ version = "1.5.0"
287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
288
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
289
+
290
+ [[package]]
291
+ name = "bytes"
292
+ version = "1.12.0"
293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
294
+ checksum = "8ae3f5d315924270530207e2a68396c3cc547f6dca3fbdca317cfb1a51edb593"
295
+
296
+ [[package]]
297
+ name = "cassowary"
298
+ version = "0.3.0"
299
+ source = "registry+https://github.com/rust-lang/crates.io-index"
300
+ checksum = "df8670b8c7b9dae1793364eafadf7239c40d669904660c5960d74cfd80b46a53"
301
+
302
+ [[package]]
303
+ name = "cast"
304
+ version = "0.3.0"
305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
306
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
307
+
308
+ [[package]]
309
+ name = "castaway"
310
+ version = "0.2.4"
311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
312
+ checksum = "dec551ab6e7578819132c713a93c022a05d60159dc86e7a7050223577484c55a"
313
+ dependencies = [
314
+ "rustversion",
315
+ ]
316
+
317
+ [[package]]
318
+ name = "cc"
319
+ version = "1.2.65"
320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
321
+ checksum = "e228eec9be7c17ccb640b59b36a5cd805ea2a564a4c5e162c2f659fea30d3b96"
322
+ dependencies = [
323
+ "find-msvc-tools",
324
+ "shlex",
325
+ ]
326
+
327
+ [[package]]
328
+ name = "cfg-if"
329
+ version = "1.0.4"
330
+ source = "registry+https://github.com/rust-lang/crates.io-index"
331
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
332
+
333
+ [[package]]
334
+ name = "chrono"
335
+ version = "0.4.45"
336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
337
+ checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
338
+ dependencies = [
339
+ "iana-time-zone",
340
+ "num-traits",
341
+ "windows-link",
342
+ ]
343
+
344
+ [[package]]
345
+ name = "ciborium"
346
+ version = "0.2.2"
347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
348
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
349
+ dependencies = [
350
+ "ciborium-io",
351
+ "ciborium-ll",
352
+ "serde",
353
+ ]
354
+
355
+ [[package]]
356
+ name = "ciborium-io"
357
+ version = "0.2.2"
358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
359
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
360
+
361
+ [[package]]
362
+ name = "ciborium-ll"
363
+ version = "0.2.2"
364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
365
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
366
+ dependencies = [
367
+ "ciborium-io",
368
+ "half",
369
+ ]
370
+
371
+ [[package]]
372
+ name = "clap"
373
+ version = "4.6.1"
374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
375
+ checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
376
+ dependencies = [
377
+ "clap_builder",
378
+ "clap_derive",
379
+ ]
380
+
381
+ [[package]]
382
+ name = "clap_builder"
383
+ version = "4.6.0"
384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
385
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
386
+ dependencies = [
387
+ "anstream",
388
+ "anstyle",
389
+ "clap_lex",
390
+ "strsim",
391
+ ]
392
+
393
+ [[package]]
394
+ name = "clap_derive"
395
+ version = "4.6.1"
396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
397
+ checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9"
398
+ dependencies = [
399
+ "heck",
400
+ "proc-macro2",
401
+ "quote",
402
+ "syn",
403
+ ]
404
+
405
+ [[package]]
406
+ name = "clap_lex"
407
+ version = "1.1.0"
408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
409
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
410
+
411
+ [[package]]
412
+ name = "colorchoice"
413
+ version = "1.0.5"
414
+ source = "registry+https://github.com/rust-lang/crates.io-index"
415
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
416
+
417
+ [[package]]
418
+ name = "compact_str"
419
+ version = "0.8.2"
420
+ source = "registry+https://github.com/rust-lang/crates.io-index"
421
+ checksum = "7fd622ebbb56a5b2ccb651b32b911cdeb2a9b4b11776b2473bf26a26a286244e"
422
+ dependencies = [
423
+ "castaway",
424
+ "cfg-if",
425
+ "itoa",
426
+ "rustversion",
427
+ "ryu",
428
+ "static_assertions",
429
+ ]
430
+
431
+ [[package]]
432
+ name = "const-random"
433
+ version = "0.1.18"
434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
435
+ checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359"
436
+ dependencies = [
437
+ "const-random-macro",
438
+ ]
439
+
440
+ [[package]]
441
+ name = "const-random-macro"
442
+ version = "0.1.16"
443
+ source = "registry+https://github.com/rust-lang/crates.io-index"
444
+ checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e"
445
+ dependencies = [
446
+ "getrandom 0.2.17",
447
+ "once_cell",
448
+ "tiny-keccak",
449
+ ]
450
+
451
+ [[package]]
452
+ name = "core-foundation-sys"
453
+ version = "0.8.7"
454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
455
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
456
+
457
+ [[package]]
458
+ name = "cpufeatures"
459
+ version = "0.2.17"
460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
461
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
462
+ dependencies = [
463
+ "libc",
464
+ ]
465
+
466
+ [[package]]
467
+ name = "criterion"
468
+ version = "0.5.1"
469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
470
+ checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
471
+ dependencies = [
472
+ "anes",
473
+ "cast",
474
+ "ciborium",
475
+ "clap",
476
+ "criterion-plot",
477
+ "is-terminal",
478
+ "itertools 0.10.5",
479
+ "num-traits",
480
+ "once_cell",
481
+ "oorandom",
482
+ "regex",
483
+ "serde",
484
+ "serde_derive",
485
+ "serde_json",
486
+ "tinytemplate",
487
+ "walkdir",
488
+ ]
489
+
490
+ [[package]]
491
+ name = "criterion-plot"
492
+ version = "0.5.0"
493
+ source = "registry+https://github.com/rust-lang/crates.io-index"
494
+ checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
495
+ dependencies = [
496
+ "cast",
497
+ "itertools 0.10.5",
498
+ ]
499
+
500
+ [[package]]
501
+ name = "crossbeam-channel"
502
+ version = "0.5.15"
503
+ source = "registry+https://github.com/rust-lang/crates.io-index"
504
+ checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
505
+ dependencies = [
506
+ "crossbeam-utils",
507
+ ]
508
+
509
+ [[package]]
510
+ name = "crossbeam-utils"
511
+ version = "0.8.21"
512
+ source = "registry+https://github.com/rust-lang/crates.io-index"
513
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
514
+
515
+ [[package]]
516
+ name = "crossterm"
517
+ version = "0.28.1"
518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
519
+ checksum = "829d955a0bb380ef178a640b91779e3987da38c9aea133b20614cfed8cdea9c6"
520
+ dependencies = [
521
+ "bitflags",
522
+ "crossterm_winapi",
523
+ "mio",
524
+ "parking_lot",
525
+ "rustix",
526
+ "signal-hook",
527
+ "signal-hook-mio",
528
+ "winapi",
529
+ ]
530
+
531
+ [[package]]
532
+ name = "crossterm_winapi"
533
+ version = "0.9.1"
534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
535
+ checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b"
536
+ dependencies = [
537
+ "winapi",
538
+ ]
539
+
540
+ [[package]]
541
+ name = "crunchy"
542
+ version = "0.2.4"
543
+ source = "registry+https://github.com/rust-lang/crates.io-index"
544
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
545
+
546
+ [[package]]
547
+ name = "crypto-common"
548
+ version = "0.1.7"
549
+ source = "registry+https://github.com/rust-lang/crates.io-index"
550
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
551
+ dependencies = [
552
+ "generic-array",
553
+ "typenum",
554
+ ]
555
+
556
+ [[package]]
557
+ name = "darling"
558
+ version = "0.20.11"
559
+ source = "registry+https://github.com/rust-lang/crates.io-index"
560
+ checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
561
+ dependencies = [
562
+ "darling_core",
563
+ "darling_macro",
564
+ ]
565
+
566
+ [[package]]
567
+ name = "darling_core"
568
+ version = "0.20.11"
569
+ source = "registry+https://github.com/rust-lang/crates.io-index"
570
+ checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e"
571
+ dependencies = [
572
+ "fnv",
573
+ "ident_case",
574
+ "proc-macro2",
575
+ "quote",
576
+ "strsim",
577
+ "syn",
578
+ ]
579
+
580
+ [[package]]
581
+ name = "darling_macro"
582
+ version = "0.20.11"
583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
584
+ checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
585
+ dependencies = [
586
+ "darling_core",
587
+ "quote",
588
+ "syn",
589
+ ]
590
+
591
+ [[package]]
592
+ name = "data-encoding"
593
+ version = "2.11.0"
594
+ source = "registry+https://github.com/rust-lang/crates.io-index"
595
+ checksum = "a4ae5f15dda3c708c0ade84bfee31ccab44a3da4f88015ed22f63732abe300c8"
596
+
597
+ [[package]]
598
+ name = "digest"
599
+ version = "0.10.7"
600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
601
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
602
+ dependencies = [
603
+ "block-buffer",
604
+ "crypto-common",
605
+ ]
606
+
607
+ [[package]]
608
+ name = "either"
609
+ version = "1.16.0"
610
+ source = "registry+https://github.com/rust-lang/crates.io-index"
611
+ checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
612
+
613
+ [[package]]
614
+ name = "emry-cli"
615
+ version = "0.1.0"
616
+ dependencies = [
617
+ "clap",
618
+ "crossbeam-channel",
619
+ "emry-core",
620
+ "emry-engine",
621
+ "emry-ingest",
622
+ "emry-store",
623
+ "emry-tui",
624
+ "emry-web",
625
+ "tokio",
626
+ ]
627
+
628
+ [[package]]
629
+ name = "emry-core"
630
+ version = "0.1.0"
631
+ dependencies = [
632
+ "criterion",
633
+ "crossbeam-channel",
634
+ "rmp-serde",
635
+ "rtrb",
636
+ "serde",
637
+ "serde_json",
638
+ "thiserror 2.0.18",
639
+ "uuid",
640
+ ]
641
+
642
+ [[package]]
643
+ name = "emry-engine"
644
+ version = "0.1.0"
645
+ dependencies = [
646
+ "criterion",
647
+ "crossbeam-channel",
648
+ "emry-core",
649
+ "emry-store",
650
+ "serde_json",
651
+ "uuid",
652
+ ]
653
+
654
+ [[package]]
655
+ name = "emry-ingest"
656
+ version = "0.1.0"
657
+ dependencies = [
658
+ "emry-core",
659
+ "rmp-serde",
660
+ "serde",
661
+ "serde_json",
662
+ "tokio",
663
+ ]
664
+
665
+ [[package]]
666
+ name = "emry-py"
667
+ version = "0.1.0"
668
+ dependencies = [
669
+ "emry-core",
670
+ "emry-engine",
671
+ "pyo3",
672
+ "serde_json",
673
+ ]
674
+
675
+ [[package]]
676
+ name = "emry-store"
677
+ version = "0.1.0"
678
+ dependencies = [
679
+ "arrow-array",
680
+ "arrow-schema",
681
+ "criterion",
682
+ "crossbeam-channel",
683
+ "emry-core",
684
+ "parquet",
685
+ "serde",
686
+ "serde_json",
687
+ "uuid",
688
+ ]
689
+
690
+ [[package]]
691
+ name = "emry-tui"
692
+ version = "0.1.0"
693
+ dependencies = [
694
+ "crossbeam-channel",
695
+ "emry-core",
696
+ "emry-engine",
697
+ "ratatui",
698
+ "serde_json",
699
+ "uuid",
700
+ ]
701
+
702
+ [[package]]
703
+ name = "emry-web"
704
+ version = "0.1.0"
705
+ dependencies = [
706
+ "axum",
707
+ "crossbeam-channel",
708
+ "emry-core",
709
+ "http-body-util",
710
+ "serde",
711
+ "serde_json",
712
+ "tokio",
713
+ "tower",
714
+ "uuid",
715
+ ]
716
+
717
+ [[package]]
718
+ name = "equivalent"
719
+ version = "1.0.2"
720
+ source = "registry+https://github.com/rust-lang/crates.io-index"
721
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
722
+
723
+ [[package]]
724
+ name = "errno"
725
+ version = "0.3.14"
726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
727
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
728
+ dependencies = [
729
+ "libc",
730
+ "windows-sys 0.61.2",
731
+ ]
732
+
733
+ [[package]]
734
+ name = "find-msvc-tools"
735
+ version = "0.1.9"
736
+ source = "registry+https://github.com/rust-lang/crates.io-index"
737
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
738
+
739
+ [[package]]
740
+ name = "flatbuffers"
741
+ version = "25.12.19"
742
+ source = "registry+https://github.com/rust-lang/crates.io-index"
743
+ checksum = "35f6839d7b3b98adde531effaf34f0c2badc6f4735d26fe74709d8e513a96ef3"
744
+ dependencies = [
745
+ "bitflags",
746
+ "rustc_version",
747
+ ]
748
+
749
+ [[package]]
750
+ name = "fnv"
751
+ version = "1.0.7"
752
+ source = "registry+https://github.com/rust-lang/crates.io-index"
753
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
754
+
755
+ [[package]]
756
+ name = "foldhash"
757
+ version = "0.1.5"
758
+ source = "registry+https://github.com/rust-lang/crates.io-index"
759
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
760
+
761
+ [[package]]
762
+ name = "form_urlencoded"
763
+ version = "1.2.2"
764
+ source = "registry+https://github.com/rust-lang/crates.io-index"
765
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
766
+ dependencies = [
767
+ "percent-encoding",
768
+ ]
769
+
770
+ [[package]]
771
+ name = "futures-channel"
772
+ version = "0.3.32"
773
+ source = "registry+https://github.com/rust-lang/crates.io-index"
774
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
775
+ dependencies = [
776
+ "futures-core",
777
+ ]
778
+
779
+ [[package]]
780
+ name = "futures-core"
781
+ version = "0.3.32"
782
+ source = "registry+https://github.com/rust-lang/crates.io-index"
783
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
784
+
785
+ [[package]]
786
+ name = "futures-sink"
787
+ version = "0.3.32"
788
+ source = "registry+https://github.com/rust-lang/crates.io-index"
789
+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
790
+
791
+ [[package]]
792
+ name = "futures-task"
793
+ version = "0.3.32"
794
+ source = "registry+https://github.com/rust-lang/crates.io-index"
795
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
796
+
797
+ [[package]]
798
+ name = "futures-util"
799
+ version = "0.3.32"
800
+ source = "registry+https://github.com/rust-lang/crates.io-index"
801
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
802
+ dependencies = [
803
+ "futures-core",
804
+ "futures-sink",
805
+ "futures-task",
806
+ "pin-project-lite",
807
+ "slab",
808
+ ]
809
+
810
+ [[package]]
811
+ name = "generic-array"
812
+ version = "0.14.7"
813
+ source = "registry+https://github.com/rust-lang/crates.io-index"
814
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
815
+ dependencies = [
816
+ "typenum",
817
+ "version_check",
818
+ ]
819
+
820
+ [[package]]
821
+ name = "getrandom"
822
+ version = "0.2.17"
823
+ source = "registry+https://github.com/rust-lang/crates.io-index"
824
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
825
+ dependencies = [
826
+ "cfg-if",
827
+ "libc",
828
+ "wasi",
829
+ ]
830
+
831
+ [[package]]
832
+ name = "getrandom"
833
+ version = "0.3.4"
834
+ source = "registry+https://github.com/rust-lang/crates.io-index"
835
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
836
+ dependencies = [
837
+ "cfg-if",
838
+ "libc",
839
+ "r-efi 5.3.0",
840
+ "wasip2",
841
+ ]
842
+
843
+ [[package]]
844
+ name = "getrandom"
845
+ version = "0.4.3"
846
+ source = "registry+https://github.com/rust-lang/crates.io-index"
847
+ checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
848
+ dependencies = [
849
+ "cfg-if",
850
+ "libc",
851
+ "r-efi 6.0.0",
852
+ ]
853
+
854
+ [[package]]
855
+ name = "half"
856
+ version = "2.7.1"
857
+ source = "registry+https://github.com/rust-lang/crates.io-index"
858
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
859
+ dependencies = [
860
+ "cfg-if",
861
+ "crunchy",
862
+ "num-traits",
863
+ "zerocopy",
864
+ ]
865
+
866
+ [[package]]
867
+ name = "hashbrown"
868
+ version = "0.15.5"
869
+ source = "registry+https://github.com/rust-lang/crates.io-index"
870
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
871
+ dependencies = [
872
+ "allocator-api2",
873
+ "equivalent",
874
+ "foldhash",
875
+ ]
876
+
877
+ [[package]]
878
+ name = "hashbrown"
879
+ version = "0.17.1"
880
+ source = "registry+https://github.com/rust-lang/crates.io-index"
881
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
882
+
883
+ [[package]]
884
+ name = "heck"
885
+ version = "0.5.0"
886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
887
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
888
+
889
+ [[package]]
890
+ name = "hermit-abi"
891
+ version = "0.5.2"
892
+ source = "registry+https://github.com/rust-lang/crates.io-index"
893
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
894
+
895
+ [[package]]
896
+ name = "http"
897
+ version = "1.4.2"
898
+ source = "registry+https://github.com/rust-lang/crates.io-index"
899
+ checksum = "6970f50e31d6fc17d3fa27329444bfa74e196cf62e95052a3f6fee181dba6425"
900
+ dependencies = [
901
+ "bytes",
902
+ "itoa",
903
+ ]
904
+
905
+ [[package]]
906
+ name = "http-body"
907
+ version = "1.0.1"
908
+ source = "registry+https://github.com/rust-lang/crates.io-index"
909
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
910
+ dependencies = [
911
+ "bytes",
912
+ "http",
913
+ ]
914
+
915
+ [[package]]
916
+ name = "http-body-util"
917
+ version = "0.1.3"
918
+ source = "registry+https://github.com/rust-lang/crates.io-index"
919
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
920
+ dependencies = [
921
+ "bytes",
922
+ "futures-core",
923
+ "http",
924
+ "http-body",
925
+ "pin-project-lite",
926
+ ]
927
+
928
+ [[package]]
929
+ name = "httparse"
930
+ version = "1.10.1"
931
+ source = "registry+https://github.com/rust-lang/crates.io-index"
932
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
933
+
934
+ [[package]]
935
+ name = "httpdate"
936
+ version = "1.0.3"
937
+ source = "registry+https://github.com/rust-lang/crates.io-index"
938
+ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
939
+
940
+ [[package]]
941
+ name = "hyper"
942
+ version = "1.10.1"
943
+ source = "registry+https://github.com/rust-lang/crates.io-index"
944
+ checksum = "55281c53a1894c864990125767da440a4e630446785086f52523b20033b74498"
945
+ dependencies = [
946
+ "atomic-waker",
947
+ "bytes",
948
+ "futures-channel",
949
+ "futures-core",
950
+ "http",
951
+ "http-body",
952
+ "httparse",
953
+ "httpdate",
954
+ "itoa",
955
+ "pin-project-lite",
956
+ "smallvec",
957
+ "tokio",
958
+ ]
959
+
960
+ [[package]]
961
+ name = "hyper-util"
962
+ version = "0.1.20"
963
+ source = "registry+https://github.com/rust-lang/crates.io-index"
964
+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
965
+ dependencies = [
966
+ "bytes",
967
+ "http",
968
+ "http-body",
969
+ "hyper",
970
+ "pin-project-lite",
971
+ "tokio",
972
+ "tower-service",
973
+ ]
974
+
975
+ [[package]]
976
+ name = "iana-time-zone"
977
+ version = "0.1.65"
978
+ source = "registry+https://github.com/rust-lang/crates.io-index"
979
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
980
+ dependencies = [
981
+ "android_system_properties",
982
+ "core-foundation-sys",
983
+ "iana-time-zone-haiku",
984
+ "js-sys",
985
+ "log",
986
+ "wasm-bindgen",
987
+ "windows-core",
988
+ ]
989
+
990
+ [[package]]
991
+ name = "iana-time-zone-haiku"
992
+ version = "0.1.2"
993
+ source = "registry+https://github.com/rust-lang/crates.io-index"
994
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
995
+ dependencies = [
996
+ "cc",
997
+ ]
998
+
999
+ [[package]]
1000
+ name = "ident_case"
1001
+ version = "1.0.1"
1002
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1003
+ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
1004
+
1005
+ [[package]]
1006
+ name = "indoc"
1007
+ version = "2.0.7"
1008
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1009
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
1010
+ dependencies = [
1011
+ "rustversion",
1012
+ ]
1013
+
1014
+ [[package]]
1015
+ name = "instability"
1016
+ version = "0.3.7"
1017
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1018
+ checksum = "0bf9fed6d91cfb734e7476a06bde8300a1b94e217e1b523b6f0cd1a01998c71d"
1019
+ dependencies = [
1020
+ "darling",
1021
+ "indoc",
1022
+ "proc-macro2",
1023
+ "quote",
1024
+ "syn",
1025
+ ]
1026
+
1027
+ [[package]]
1028
+ name = "is-terminal"
1029
+ version = "0.4.17"
1030
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1031
+ checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
1032
+ dependencies = [
1033
+ "hermit-abi",
1034
+ "libc",
1035
+ "windows-sys 0.61.2",
1036
+ ]
1037
+
1038
+ [[package]]
1039
+ name = "is_terminal_polyfill"
1040
+ version = "1.70.2"
1041
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1042
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
1043
+
1044
+ [[package]]
1045
+ name = "itertools"
1046
+ version = "0.10.5"
1047
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1048
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
1049
+ dependencies = [
1050
+ "either",
1051
+ ]
1052
+
1053
+ [[package]]
1054
+ name = "itertools"
1055
+ version = "0.13.0"
1056
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1057
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
1058
+ dependencies = [
1059
+ "either",
1060
+ ]
1061
+
1062
+ [[package]]
1063
+ name = "itoa"
1064
+ version = "1.0.18"
1065
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1066
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
1067
+
1068
+ [[package]]
1069
+ name = "js-sys"
1070
+ version = "0.3.103"
1071
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1072
+ checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102"
1073
+ dependencies = [
1074
+ "cfg-if",
1075
+ "futures-util",
1076
+ "wasm-bindgen",
1077
+ ]
1078
+
1079
+ [[package]]
1080
+ name = "libc"
1081
+ version = "0.2.186"
1082
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1083
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
1084
+
1085
+ [[package]]
1086
+ name = "libm"
1087
+ version = "0.2.16"
1088
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1089
+ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
1090
+
1091
+ [[package]]
1092
+ name = "linux-raw-sys"
1093
+ version = "0.4.15"
1094
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1095
+ checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
1096
+
1097
+ [[package]]
1098
+ name = "lock_api"
1099
+ version = "0.4.14"
1100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1101
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
1102
+ dependencies = [
1103
+ "scopeguard",
1104
+ ]
1105
+
1106
+ [[package]]
1107
+ name = "log"
1108
+ version = "0.4.33"
1109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1110
+ checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
1111
+
1112
+ [[package]]
1113
+ name = "lru"
1114
+ version = "0.12.5"
1115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1116
+ checksum = "234cf4f4a04dc1f57e24b96cc0cd600cf2af460d4161ac5ecdd0af8e1f3b2a38"
1117
+ dependencies = [
1118
+ "hashbrown 0.15.5",
1119
+ ]
1120
+
1121
+ [[package]]
1122
+ name = "matchit"
1123
+ version = "0.7.3"
1124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1125
+ checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94"
1126
+
1127
+ [[package]]
1128
+ name = "memchr"
1129
+ version = "2.8.2"
1130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1131
+ checksum = "88904434abc2901f197fe8cc55f0445e7ded921dba5911dad2e2b39b48e663c4"
1132
+
1133
+ [[package]]
1134
+ name = "mime"
1135
+ version = "0.3.17"
1136
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1137
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
1138
+
1139
+ [[package]]
1140
+ name = "mio"
1141
+ version = "1.2.1"
1142
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1143
+ checksum = "02bd0af71c67b473010cbbc60715ee815645a4dc942899111f494b4b737d6fda"
1144
+ dependencies = [
1145
+ "libc",
1146
+ "log",
1147
+ "wasi",
1148
+ "windows-sys 0.61.2",
1149
+ ]
1150
+
1151
+ [[package]]
1152
+ name = "num-bigint"
1153
+ version = "0.4.6"
1154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1155
+ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
1156
+ dependencies = [
1157
+ "num-integer",
1158
+ "num-traits",
1159
+ ]
1160
+
1161
+ [[package]]
1162
+ name = "num-complex"
1163
+ version = "0.4.6"
1164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1165
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
1166
+ dependencies = [
1167
+ "num-traits",
1168
+ ]
1169
+
1170
+ [[package]]
1171
+ name = "num-integer"
1172
+ version = "0.1.46"
1173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1174
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
1175
+ dependencies = [
1176
+ "num-traits",
1177
+ ]
1178
+
1179
+ [[package]]
1180
+ name = "num-traits"
1181
+ version = "0.2.19"
1182
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1183
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1184
+ dependencies = [
1185
+ "autocfg",
1186
+ "libm",
1187
+ ]
1188
+
1189
+ [[package]]
1190
+ name = "once_cell"
1191
+ version = "1.21.4"
1192
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1193
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
1194
+
1195
+ [[package]]
1196
+ name = "once_cell_polyfill"
1197
+ version = "1.70.2"
1198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1199
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
1200
+
1201
+ [[package]]
1202
+ name = "oorandom"
1203
+ version = "11.1.5"
1204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1205
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
1206
+
1207
+ [[package]]
1208
+ name = "parking_lot"
1209
+ version = "0.12.5"
1210
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1211
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
1212
+ dependencies = [
1213
+ "lock_api",
1214
+ "parking_lot_core",
1215
+ ]
1216
+
1217
+ [[package]]
1218
+ name = "parking_lot_core"
1219
+ version = "0.9.12"
1220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1221
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
1222
+ dependencies = [
1223
+ "cfg-if",
1224
+ "libc",
1225
+ "redox_syscall",
1226
+ "smallvec",
1227
+ "windows-link",
1228
+ ]
1229
+
1230
+ [[package]]
1231
+ name = "parquet"
1232
+ version = "59.0.0"
1233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1234
+ checksum = "970dff83e97d953c827ae8176f6bf4e9f77bf62daacc01ec5df348ec5eacd913"
1235
+ dependencies = [
1236
+ "ahash",
1237
+ "arrow-array",
1238
+ "arrow-buffer",
1239
+ "arrow-data",
1240
+ "arrow-ipc",
1241
+ "arrow-schema",
1242
+ "arrow-select",
1243
+ "base64",
1244
+ "bytes",
1245
+ "chrono",
1246
+ "half",
1247
+ "hashbrown 0.17.1",
1248
+ "num-bigint",
1249
+ "num-integer",
1250
+ "num-traits",
1251
+ "paste",
1252
+ "seq-macro",
1253
+ "twox-hash",
1254
+ ]
1255
+
1256
+ [[package]]
1257
+ name = "paste"
1258
+ version = "1.0.15"
1259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1260
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
1261
+
1262
+ [[package]]
1263
+ name = "percent-encoding"
1264
+ version = "2.3.2"
1265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1266
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1267
+
1268
+ [[package]]
1269
+ name = "pin-project-lite"
1270
+ version = "0.2.17"
1271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1272
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
1273
+
1274
+ [[package]]
1275
+ name = "portable-atomic"
1276
+ version = "1.13.1"
1277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1278
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
1279
+
1280
+ [[package]]
1281
+ name = "ppv-lite86"
1282
+ version = "0.2.21"
1283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1284
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1285
+ dependencies = [
1286
+ "zerocopy",
1287
+ ]
1288
+
1289
+ [[package]]
1290
+ name = "proc-macro2"
1291
+ version = "1.0.106"
1292
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1293
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1294
+ dependencies = [
1295
+ "unicode-ident",
1296
+ ]
1297
+
1298
+ [[package]]
1299
+ name = "pyo3"
1300
+ version = "0.29.0"
1301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1302
+ checksum = "cd274650b21d4bfc26a0a47587962c1edb425f69287324355cd040c3ea66071c"
1303
+ dependencies = [
1304
+ "libc",
1305
+ "once_cell",
1306
+ "portable-atomic",
1307
+ "pyo3-build-config",
1308
+ "pyo3-ffi",
1309
+ "pyo3-macros",
1310
+ ]
1311
+
1312
+ [[package]]
1313
+ name = "pyo3-build-config"
1314
+ version = "0.29.0"
1315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1316
+ checksum = "c5e2a7d2f0d013342f295c048ad19237add5154a55b1c5a254c0ec93d4109078"
1317
+ dependencies = [
1318
+ "target-lexicon",
1319
+ ]
1320
+
1321
+ [[package]]
1322
+ name = "pyo3-ffi"
1323
+ version = "0.29.0"
1324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1325
+ checksum = "ca85c467da1bbc8d866eea5deff9cf29ea5f7785054a17da36e65bda9c05845b"
1326
+ dependencies = [
1327
+ "libc",
1328
+ "pyo3-build-config",
1329
+ ]
1330
+
1331
+ [[package]]
1332
+ name = "pyo3-macros"
1333
+ version = "0.29.0"
1334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1335
+ checksum = "9ac53762fd065daa3194dd09337a38bd793a188100fd1a9304c4ab312d901771"
1336
+ dependencies = [
1337
+ "proc-macro2",
1338
+ "pyo3-macros-backend",
1339
+ "quote",
1340
+ "syn",
1341
+ ]
1342
+
1343
+ [[package]]
1344
+ name = "pyo3-macros-backend"
1345
+ version = "0.29.0"
1346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1347
+ checksum = "4ca3a1557399783172dc5bf39cfca835157732532cba56b71d2292161e53b362"
1348
+ dependencies = [
1349
+ "heck",
1350
+ "proc-macro2",
1351
+ "quote",
1352
+ "syn",
1353
+ ]
1354
+
1355
+ [[package]]
1356
+ name = "quote"
1357
+ version = "1.0.46"
1358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1359
+ checksum = "dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368"
1360
+ dependencies = [
1361
+ "proc-macro2",
1362
+ ]
1363
+
1364
+ [[package]]
1365
+ name = "r-efi"
1366
+ version = "5.3.0"
1367
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1368
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1369
+
1370
+ [[package]]
1371
+ name = "r-efi"
1372
+ version = "6.0.0"
1373
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1374
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
1375
+
1376
+ [[package]]
1377
+ name = "rand"
1378
+ version = "0.8.6"
1379
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1380
+ checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a"
1381
+ dependencies = [
1382
+ "libc",
1383
+ "rand_chacha",
1384
+ "rand_core",
1385
+ ]
1386
+
1387
+ [[package]]
1388
+ name = "rand_chacha"
1389
+ version = "0.3.1"
1390
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1391
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
1392
+ dependencies = [
1393
+ "ppv-lite86",
1394
+ "rand_core",
1395
+ ]
1396
+
1397
+ [[package]]
1398
+ name = "rand_core"
1399
+ version = "0.6.4"
1400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1401
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1402
+ dependencies = [
1403
+ "getrandom 0.2.17",
1404
+ ]
1405
+
1406
+ [[package]]
1407
+ name = "ratatui"
1408
+ version = "0.29.0"
1409
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1410
+ checksum = "eabd94c2f37801c20583fc49dd5cd6b0ba68c716787c2dd6ed18571e1e63117b"
1411
+ dependencies = [
1412
+ "bitflags",
1413
+ "cassowary",
1414
+ "compact_str",
1415
+ "crossterm",
1416
+ "indoc",
1417
+ "instability",
1418
+ "itertools 0.13.0",
1419
+ "lru",
1420
+ "paste",
1421
+ "strum",
1422
+ "unicode-segmentation",
1423
+ "unicode-truncate",
1424
+ "unicode-width 0.2.0",
1425
+ ]
1426
+
1427
+ [[package]]
1428
+ name = "redox_syscall"
1429
+ version = "0.5.18"
1430
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1431
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
1432
+ dependencies = [
1433
+ "bitflags",
1434
+ ]
1435
+
1436
+ [[package]]
1437
+ name = "regex"
1438
+ version = "1.12.4"
1439
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1440
+ checksum = "f1292b7759ae1cb9ec195452d1390a074f0cd8541ab7a5a8c31cd6db45d4a6ba"
1441
+ dependencies = [
1442
+ "aho-corasick",
1443
+ "memchr",
1444
+ "regex-automata",
1445
+ "regex-syntax",
1446
+ ]
1447
+
1448
+ [[package]]
1449
+ name = "regex-automata"
1450
+ version = "0.4.14"
1451
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1452
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
1453
+ dependencies = [
1454
+ "aho-corasick",
1455
+ "memchr",
1456
+ "regex-syntax",
1457
+ ]
1458
+
1459
+ [[package]]
1460
+ name = "regex-syntax"
1461
+ version = "0.8.11"
1462
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1463
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
1464
+
1465
+ [[package]]
1466
+ name = "rmp"
1467
+ version = "0.8.15"
1468
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1469
+ checksum = "4ba8be72d372b2c9b35542551678538b562e7cf86c3315773cae48dfbfe7790c"
1470
+ dependencies = [
1471
+ "num-traits",
1472
+ ]
1473
+
1474
+ [[package]]
1475
+ name = "rmp-serde"
1476
+ version = "1.3.1"
1477
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1478
+ checksum = "72f81bee8c8ef9b577d1681a70ebbc962c232461e397b22c208c43c04b67a155"
1479
+ dependencies = [
1480
+ "rmp",
1481
+ "serde",
1482
+ ]
1483
+
1484
+ [[package]]
1485
+ name = "rtrb"
1486
+ version = "0.3.4"
1487
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1488
+ checksum = "4ade083ccbb4bf536df69d1f6432cc23deb7acccff86b183f3923a6fd56a1153"
1489
+
1490
+ [[package]]
1491
+ name = "rustc_version"
1492
+ version = "0.4.1"
1493
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1494
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
1495
+ dependencies = [
1496
+ "semver",
1497
+ ]
1498
+
1499
+ [[package]]
1500
+ name = "rustix"
1501
+ version = "0.38.44"
1502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1503
+ checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
1504
+ dependencies = [
1505
+ "bitflags",
1506
+ "errno",
1507
+ "libc",
1508
+ "linux-raw-sys",
1509
+ "windows-sys 0.59.0",
1510
+ ]
1511
+
1512
+ [[package]]
1513
+ name = "rustversion"
1514
+ version = "1.0.22"
1515
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1516
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1517
+
1518
+ [[package]]
1519
+ name = "ryu"
1520
+ version = "1.0.23"
1521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1522
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
1523
+
1524
+ [[package]]
1525
+ name = "same-file"
1526
+ version = "1.0.6"
1527
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1528
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1529
+ dependencies = [
1530
+ "winapi-util",
1531
+ ]
1532
+
1533
+ [[package]]
1534
+ name = "scopeguard"
1535
+ version = "1.2.0"
1536
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1537
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1538
+
1539
+ [[package]]
1540
+ name = "semver"
1541
+ version = "1.0.28"
1542
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1543
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
1544
+
1545
+ [[package]]
1546
+ name = "seq-macro"
1547
+ version = "0.3.6"
1548
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1549
+ checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
1550
+
1551
+ [[package]]
1552
+ name = "serde"
1553
+ version = "1.0.228"
1554
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1555
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1556
+ dependencies = [
1557
+ "serde_core",
1558
+ "serde_derive",
1559
+ ]
1560
+
1561
+ [[package]]
1562
+ name = "serde_core"
1563
+ version = "1.0.228"
1564
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1565
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1566
+ dependencies = [
1567
+ "serde_derive",
1568
+ ]
1569
+
1570
+ [[package]]
1571
+ name = "serde_derive"
1572
+ version = "1.0.228"
1573
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1574
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1575
+ dependencies = [
1576
+ "proc-macro2",
1577
+ "quote",
1578
+ "syn",
1579
+ ]
1580
+
1581
+ [[package]]
1582
+ name = "serde_json"
1583
+ version = "1.0.150"
1584
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1585
+ checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
1586
+ dependencies = [
1587
+ "itoa",
1588
+ "memchr",
1589
+ "serde",
1590
+ "serde_core",
1591
+ "zmij",
1592
+ ]
1593
+
1594
+ [[package]]
1595
+ name = "serde_path_to_error"
1596
+ version = "0.1.20"
1597
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1598
+ checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457"
1599
+ dependencies = [
1600
+ "itoa",
1601
+ "serde",
1602
+ "serde_core",
1603
+ ]
1604
+
1605
+ [[package]]
1606
+ name = "serde_urlencoded"
1607
+ version = "0.7.1"
1608
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1609
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
1610
+ dependencies = [
1611
+ "form_urlencoded",
1612
+ "itoa",
1613
+ "ryu",
1614
+ "serde",
1615
+ ]
1616
+
1617
+ [[package]]
1618
+ name = "sha1"
1619
+ version = "0.10.6"
1620
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1621
+ checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
1622
+ dependencies = [
1623
+ "cfg-if",
1624
+ "cpufeatures",
1625
+ "digest",
1626
+ ]
1627
+
1628
+ [[package]]
1629
+ name = "shlex"
1630
+ version = "2.0.1"
1631
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1632
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
1633
+
1634
+ [[package]]
1635
+ name = "signal-hook"
1636
+ version = "0.3.18"
1637
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1638
+ checksum = "d881a16cf4426aa584979d30bd82cb33429027e42122b169753d6ef1085ed6e2"
1639
+ dependencies = [
1640
+ "libc",
1641
+ "signal-hook-registry",
1642
+ ]
1643
+
1644
+ [[package]]
1645
+ name = "signal-hook-mio"
1646
+ version = "0.2.5"
1647
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1648
+ checksum = "b75a19a7a740b25bc7944bdee6172368f988763b744e3d4dfe753f6b4ece40cc"
1649
+ dependencies = [
1650
+ "libc",
1651
+ "mio",
1652
+ "signal-hook",
1653
+ ]
1654
+
1655
+ [[package]]
1656
+ name = "signal-hook-registry"
1657
+ version = "1.4.8"
1658
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1659
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
1660
+ dependencies = [
1661
+ "errno",
1662
+ "libc",
1663
+ ]
1664
+
1665
+ [[package]]
1666
+ name = "slab"
1667
+ version = "0.4.12"
1668
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1669
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1670
+
1671
+ [[package]]
1672
+ name = "smallvec"
1673
+ version = "1.15.2"
1674
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1675
+ checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
1676
+
1677
+ [[package]]
1678
+ name = "socket2"
1679
+ version = "0.6.4"
1680
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1681
+ checksum = "52d1cfed4120b4d927bf7c0f86d2087a4a7d6027c906d9f9d525a80573b9be51"
1682
+ dependencies = [
1683
+ "libc",
1684
+ "windows-sys 0.61.2",
1685
+ ]
1686
+
1687
+ [[package]]
1688
+ name = "static_assertions"
1689
+ version = "1.1.0"
1690
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1691
+ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
1692
+
1693
+ [[package]]
1694
+ name = "strsim"
1695
+ version = "0.11.1"
1696
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1697
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1698
+
1699
+ [[package]]
1700
+ name = "strum"
1701
+ version = "0.26.3"
1702
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1703
+ checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06"
1704
+ dependencies = [
1705
+ "strum_macros",
1706
+ ]
1707
+
1708
+ [[package]]
1709
+ name = "strum_macros"
1710
+ version = "0.26.4"
1711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1712
+ checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be"
1713
+ dependencies = [
1714
+ "heck",
1715
+ "proc-macro2",
1716
+ "quote",
1717
+ "rustversion",
1718
+ "syn",
1719
+ ]
1720
+
1721
+ [[package]]
1722
+ name = "syn"
1723
+ version = "2.0.118"
1724
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1725
+ checksum = "1b9ae57f904213ebb649ce6895b8a66c66f0203b9319718f69a5612a065b1422"
1726
+ dependencies = [
1727
+ "proc-macro2",
1728
+ "quote",
1729
+ "unicode-ident",
1730
+ ]
1731
+
1732
+ [[package]]
1733
+ name = "sync_wrapper"
1734
+ version = "1.0.2"
1735
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1736
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
1737
+
1738
+ [[package]]
1739
+ name = "target-lexicon"
1740
+ version = "0.13.5"
1741
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1742
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
1743
+
1744
+ [[package]]
1745
+ name = "thiserror"
1746
+ version = "1.0.69"
1747
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1748
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
1749
+ dependencies = [
1750
+ "thiserror-impl 1.0.69",
1751
+ ]
1752
+
1753
+ [[package]]
1754
+ name = "thiserror"
1755
+ version = "2.0.18"
1756
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1757
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
1758
+ dependencies = [
1759
+ "thiserror-impl 2.0.18",
1760
+ ]
1761
+
1762
+ [[package]]
1763
+ name = "thiserror-impl"
1764
+ version = "1.0.69"
1765
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1766
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
1767
+ dependencies = [
1768
+ "proc-macro2",
1769
+ "quote",
1770
+ "syn",
1771
+ ]
1772
+
1773
+ [[package]]
1774
+ name = "thiserror-impl"
1775
+ version = "2.0.18"
1776
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1777
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
1778
+ dependencies = [
1779
+ "proc-macro2",
1780
+ "quote",
1781
+ "syn",
1782
+ ]
1783
+
1784
+ [[package]]
1785
+ name = "tiny-keccak"
1786
+ version = "2.0.2"
1787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1788
+ checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
1789
+ dependencies = [
1790
+ "crunchy",
1791
+ ]
1792
+
1793
+ [[package]]
1794
+ name = "tinytemplate"
1795
+ version = "1.2.1"
1796
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1797
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
1798
+ dependencies = [
1799
+ "serde",
1800
+ "serde_json",
1801
+ ]
1802
+
1803
+ [[package]]
1804
+ name = "tokio"
1805
+ version = "1.52.3"
1806
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1807
+ checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
1808
+ dependencies = [
1809
+ "bytes",
1810
+ "libc",
1811
+ "mio",
1812
+ "pin-project-lite",
1813
+ "socket2",
1814
+ "tokio-macros",
1815
+ "windows-sys 0.61.2",
1816
+ ]
1817
+
1818
+ [[package]]
1819
+ name = "tokio-macros"
1820
+ version = "2.7.0"
1821
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1822
+ checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
1823
+ dependencies = [
1824
+ "proc-macro2",
1825
+ "quote",
1826
+ "syn",
1827
+ ]
1828
+
1829
+ [[package]]
1830
+ name = "tokio-tungstenite"
1831
+ version = "0.24.0"
1832
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1833
+ checksum = "edc5f74e248dc973e0dbb7b74c7e0d6fcc301c694ff50049504004ef4d0cdcd9"
1834
+ dependencies = [
1835
+ "futures-util",
1836
+ "log",
1837
+ "tokio",
1838
+ "tungstenite",
1839
+ ]
1840
+
1841
+ [[package]]
1842
+ name = "tower"
1843
+ version = "0.5.3"
1844
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1845
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
1846
+ dependencies = [
1847
+ "futures-core",
1848
+ "futures-util",
1849
+ "pin-project-lite",
1850
+ "sync_wrapper",
1851
+ "tokio",
1852
+ "tower-layer",
1853
+ "tower-service",
1854
+ "tracing",
1855
+ ]
1856
+
1857
+ [[package]]
1858
+ name = "tower-layer"
1859
+ version = "0.3.3"
1860
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1861
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
1862
+
1863
+ [[package]]
1864
+ name = "tower-service"
1865
+ version = "0.3.3"
1866
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1867
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
1868
+
1869
+ [[package]]
1870
+ name = "tracing"
1871
+ version = "0.1.44"
1872
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1873
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
1874
+ dependencies = [
1875
+ "log",
1876
+ "pin-project-lite",
1877
+ "tracing-core",
1878
+ ]
1879
+
1880
+ [[package]]
1881
+ name = "tracing-core"
1882
+ version = "0.1.36"
1883
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1884
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
1885
+ dependencies = [
1886
+ "once_cell",
1887
+ ]
1888
+
1889
+ [[package]]
1890
+ name = "tungstenite"
1891
+ version = "0.24.0"
1892
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1893
+ checksum = "18e5b8366ee7a95b16d32197d0b2604b43a0be89dc5fac9f8e96ccafbaedda8a"
1894
+ dependencies = [
1895
+ "byteorder",
1896
+ "bytes",
1897
+ "data-encoding",
1898
+ "http",
1899
+ "httparse",
1900
+ "log",
1901
+ "rand",
1902
+ "sha1",
1903
+ "thiserror 1.0.69",
1904
+ "utf-8",
1905
+ ]
1906
+
1907
+ [[package]]
1908
+ name = "twox-hash"
1909
+ version = "2.1.2"
1910
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1911
+ checksum = "9ea3136b675547379c4bd395ca6b938e5ad3c3d20fad76e7fe85f9e0d011419c"
1912
+
1913
+ [[package]]
1914
+ name = "typenum"
1915
+ version = "1.20.1"
1916
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1917
+ checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
1918
+
1919
+ [[package]]
1920
+ name = "unicode-ident"
1921
+ version = "1.0.24"
1922
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1923
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1924
+
1925
+ [[package]]
1926
+ name = "unicode-segmentation"
1927
+ version = "1.13.3"
1928
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1929
+ checksum = "c6f5d3c3b1bf09027a88a6bc961fc00497d651009560b5463668dc81b0fa87a8"
1930
+
1931
+ [[package]]
1932
+ name = "unicode-truncate"
1933
+ version = "1.1.0"
1934
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1935
+ checksum = "b3644627a5af5fa321c95b9b235a72fd24cd29c648c2c379431e6628655627bf"
1936
+ dependencies = [
1937
+ "itertools 0.13.0",
1938
+ "unicode-segmentation",
1939
+ "unicode-width 0.1.14",
1940
+ ]
1941
+
1942
+ [[package]]
1943
+ name = "unicode-width"
1944
+ version = "0.1.14"
1945
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1946
+ checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
1947
+
1948
+ [[package]]
1949
+ name = "unicode-width"
1950
+ version = "0.2.0"
1951
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1952
+ checksum = "1fc81956842c57dac11422a97c3b8195a1ff727f06e85c84ed2e8aa277c9a0fd"
1953
+
1954
+ [[package]]
1955
+ name = "utf-8"
1956
+ version = "0.7.6"
1957
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1958
+ checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
1959
+
1960
+ [[package]]
1961
+ name = "utf8parse"
1962
+ version = "0.2.2"
1963
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1964
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
1965
+
1966
+ [[package]]
1967
+ name = "uuid"
1968
+ version = "1.23.4"
1969
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1970
+ checksum = "bf80a72845275afea99e7f2b434723d3bc7e38470fcd1c7ed39a599c73319a53"
1971
+ dependencies = [
1972
+ "getrandom 0.4.3",
1973
+ "js-sys",
1974
+ "serde_core",
1975
+ "wasm-bindgen",
1976
+ ]
1977
+
1978
+ [[package]]
1979
+ name = "version_check"
1980
+ version = "0.9.5"
1981
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1982
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
1983
+
1984
+ [[package]]
1985
+ name = "walkdir"
1986
+ version = "2.5.0"
1987
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1988
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
1989
+ dependencies = [
1990
+ "same-file",
1991
+ "winapi-util",
1992
+ ]
1993
+
1994
+ [[package]]
1995
+ name = "wasi"
1996
+ version = "0.11.1+wasi-snapshot-preview1"
1997
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1998
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1999
+
2000
+ [[package]]
2001
+ name = "wasip2"
2002
+ version = "1.0.4+wasi-0.2.12"
2003
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2004
+ checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
2005
+ dependencies = [
2006
+ "wit-bindgen",
2007
+ ]
2008
+
2009
+ [[package]]
2010
+ name = "wasm-bindgen"
2011
+ version = "0.2.126"
2012
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2013
+ checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4"
2014
+ dependencies = [
2015
+ "cfg-if",
2016
+ "once_cell",
2017
+ "rustversion",
2018
+ "wasm-bindgen-macro",
2019
+ "wasm-bindgen-shared",
2020
+ ]
2021
+
2022
+ [[package]]
2023
+ name = "wasm-bindgen-macro"
2024
+ version = "0.2.126"
2025
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2026
+ checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1"
2027
+ dependencies = [
2028
+ "quote",
2029
+ "wasm-bindgen-macro-support",
2030
+ ]
2031
+
2032
+ [[package]]
2033
+ name = "wasm-bindgen-macro-support"
2034
+ version = "0.2.126"
2035
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2036
+ checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e"
2037
+ dependencies = [
2038
+ "bumpalo",
2039
+ "proc-macro2",
2040
+ "quote",
2041
+ "syn",
2042
+ "wasm-bindgen-shared",
2043
+ ]
2044
+
2045
+ [[package]]
2046
+ name = "wasm-bindgen-shared"
2047
+ version = "0.2.126"
2048
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2049
+ checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24"
2050
+ dependencies = [
2051
+ "unicode-ident",
2052
+ ]
2053
+
2054
+ [[package]]
2055
+ name = "winapi"
2056
+ version = "0.3.9"
2057
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2058
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2059
+ dependencies = [
2060
+ "winapi-i686-pc-windows-gnu",
2061
+ "winapi-x86_64-pc-windows-gnu",
2062
+ ]
2063
+
2064
+ [[package]]
2065
+ name = "winapi-i686-pc-windows-gnu"
2066
+ version = "0.4.0"
2067
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2068
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2069
+
2070
+ [[package]]
2071
+ name = "winapi-util"
2072
+ version = "0.1.11"
2073
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2074
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
2075
+ dependencies = [
2076
+ "windows-sys 0.61.2",
2077
+ ]
2078
+
2079
+ [[package]]
2080
+ name = "winapi-x86_64-pc-windows-gnu"
2081
+ version = "0.4.0"
2082
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2083
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2084
+
2085
+ [[package]]
2086
+ name = "windows-core"
2087
+ version = "0.62.2"
2088
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2089
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
2090
+ dependencies = [
2091
+ "windows-implement",
2092
+ "windows-interface",
2093
+ "windows-link",
2094
+ "windows-result",
2095
+ "windows-strings",
2096
+ ]
2097
+
2098
+ [[package]]
2099
+ name = "windows-implement"
2100
+ version = "0.60.2"
2101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2102
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
2103
+ dependencies = [
2104
+ "proc-macro2",
2105
+ "quote",
2106
+ "syn",
2107
+ ]
2108
+
2109
+ [[package]]
2110
+ name = "windows-interface"
2111
+ version = "0.59.3"
2112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2113
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
2114
+ dependencies = [
2115
+ "proc-macro2",
2116
+ "quote",
2117
+ "syn",
2118
+ ]
2119
+
2120
+ [[package]]
2121
+ name = "windows-link"
2122
+ version = "0.2.1"
2123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2124
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
2125
+
2126
+ [[package]]
2127
+ name = "windows-result"
2128
+ version = "0.4.1"
2129
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2130
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
2131
+ dependencies = [
2132
+ "windows-link",
2133
+ ]
2134
+
2135
+ [[package]]
2136
+ name = "windows-strings"
2137
+ version = "0.5.1"
2138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2139
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
2140
+ dependencies = [
2141
+ "windows-link",
2142
+ ]
2143
+
2144
+ [[package]]
2145
+ name = "windows-sys"
2146
+ version = "0.59.0"
2147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2148
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
2149
+ dependencies = [
2150
+ "windows-targets",
2151
+ ]
2152
+
2153
+ [[package]]
2154
+ name = "windows-sys"
2155
+ version = "0.61.2"
2156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2157
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
2158
+ dependencies = [
2159
+ "windows-link",
2160
+ ]
2161
+
2162
+ [[package]]
2163
+ name = "windows-targets"
2164
+ version = "0.52.6"
2165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2166
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
2167
+ dependencies = [
2168
+ "windows_aarch64_gnullvm",
2169
+ "windows_aarch64_msvc",
2170
+ "windows_i686_gnu",
2171
+ "windows_i686_gnullvm",
2172
+ "windows_i686_msvc",
2173
+ "windows_x86_64_gnu",
2174
+ "windows_x86_64_gnullvm",
2175
+ "windows_x86_64_msvc",
2176
+ ]
2177
+
2178
+ [[package]]
2179
+ name = "windows_aarch64_gnullvm"
2180
+ version = "0.52.6"
2181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2182
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
2183
+
2184
+ [[package]]
2185
+ name = "windows_aarch64_msvc"
2186
+ version = "0.52.6"
2187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2188
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
2189
+
2190
+ [[package]]
2191
+ name = "windows_i686_gnu"
2192
+ version = "0.52.6"
2193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2194
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
2195
+
2196
+ [[package]]
2197
+ name = "windows_i686_gnullvm"
2198
+ version = "0.52.6"
2199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2200
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
2201
+
2202
+ [[package]]
2203
+ name = "windows_i686_msvc"
2204
+ version = "0.52.6"
2205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2206
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
2207
+
2208
+ [[package]]
2209
+ name = "windows_x86_64_gnu"
2210
+ version = "0.52.6"
2211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2212
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
2213
+
2214
+ [[package]]
2215
+ name = "windows_x86_64_gnullvm"
2216
+ version = "0.52.6"
2217
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2218
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
2219
+
2220
+ [[package]]
2221
+ name = "windows_x86_64_msvc"
2222
+ version = "0.52.6"
2223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2224
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
2225
+
2226
+ [[package]]
2227
+ name = "wit-bindgen"
2228
+ version = "0.57.1"
2229
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2230
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
2231
+
2232
+ [[package]]
2233
+ name = "zerocopy"
2234
+ version = "0.8.52"
2235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2236
+ checksum = "ce1022995ff5ff5d841ad7d994facc23098cd40152f2c1d11cd607c6f530653f"
2237
+ dependencies = [
2238
+ "zerocopy-derive",
2239
+ ]
2240
+
2241
+ [[package]]
2242
+ name = "zerocopy-derive"
2243
+ version = "0.8.52"
2244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2245
+ checksum = "1ae7f38b72ec2a254e2b87ef277cf2cd4fb97cbebf944faa6f33354da0867930"
2246
+ dependencies = [
2247
+ "proc-macro2",
2248
+ "quote",
2249
+ "syn",
2250
+ ]
2251
+
2252
+ [[package]]
2253
+ name = "zmij"
2254
+ version = "1.0.21"
2255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2256
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"