rustychickpeas 0.1.7__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 (35) hide show
  1. rustychickpeas-0.1.7/Cargo.lock +1895 -0
  2. rustychickpeas-0.1.7/Cargo.toml +21 -0
  3. rustychickpeas-0.1.7/PKG-INFO +415 -0
  4. rustychickpeas-0.1.7/README.md +384 -0
  5. rustychickpeas-0.1.7/pyproject.toml +103 -0
  6. rustychickpeas-0.1.7/rustychickpeas-core/Cargo.toml +38 -0
  7. rustychickpeas-0.1.7/rustychickpeas-core/benches/README.md +27 -0
  8. rustychickpeas-0.1.7/rustychickpeas-core/benches/bulk_load.rs +182 -0
  9. rustychickpeas-0.1.7/rustychickpeas-core/benches/graph_builder.rs +155 -0
  10. rustychickpeas-0.1.7/rustychickpeas-core/benches/graph_snapshot.rs +196 -0
  11. rustychickpeas-0.1.7/rustychickpeas-core/src/bitmap.rs +544 -0
  12. rustychickpeas-0.1.7/rustychickpeas-core/src/builder.rs +890 -0
  13. rustychickpeas-0.1.7/rustychickpeas-core/src/builder_parquet.rs +699 -0
  14. rustychickpeas-0.1.7/rustychickpeas-core/src/error.rs +17 -0
  15. rustychickpeas-0.1.7/rustychickpeas-core/src/interner.rs +225 -0
  16. rustychickpeas-0.1.7/rustychickpeas-core/src/lib.rs +21 -0
  17. rustychickpeas-0.1.7/rustychickpeas-core/src/rusty_chickpeas.rs +234 -0
  18. rustychickpeas-0.1.7/rustychickpeas-core/src/snapshot.rs +961 -0
  19. rustychickpeas-0.1.7/rustychickpeas-core/src/types.rs +174 -0
  20. rustychickpeas-0.1.7/rustychickpeas-python/Cargo.toml +20 -0
  21. rustychickpeas-0.1.7/rustychickpeas-python/README.md +384 -0
  22. rustychickpeas-0.1.7/rustychickpeas-python/src/direction.rs +23 -0
  23. rustychickpeas-0.1.7/rustychickpeas-python/src/graph_snapshot.rs +440 -0
  24. rustychickpeas-0.1.7/rustychickpeas-python/src/graph_snapshot_builder.rs +311 -0
  25. rustychickpeas-0.1.7/rustychickpeas-python/src/lib.rs +36 -0
  26. rustychickpeas-0.1.7/rustychickpeas-python/src/node.rs +347 -0
  27. rustychickpeas-0.1.7/rustychickpeas-python/src/relationship.rs +176 -0
  28. rustychickpeas-0.1.7/rustychickpeas-python/src/rusty_chickpeas.rs +81 -0
  29. rustychickpeas-0.1.7/rustychickpeas-python/src/utils.rs +24 -0
  30. rustychickpeas-0.1.7/rustychickpeas-python/tests/README.md +89 -0
  31. rustychickpeas-0.1.7/rustychickpeas-python/tests/benchmark_large_parquet.py +291 -0
  32. rustychickpeas-0.1.7/rustychickpeas-python/tests/test_basic_operations.py +248 -0
  33. rustychickpeas-0.1.7/rustychickpeas-python/tests/test_bulk_load_builder.py +168 -0
  34. rustychickpeas-0.1.7/rustychickpeas-python/tests/test_bulk_load_parquet.py +213 -0
  35. rustychickpeas-0.1.7/rustychickpeas-python/tests/test_relationship_api.py +433 -0
@@ -0,0 +1,1895 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "adler2"
7
+ version = "2.0.1"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
10
+
11
+ [[package]]
12
+ name = "ahash"
13
+ version = "0.8.12"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
16
+ dependencies = [
17
+ "cfg-if",
18
+ "const-random",
19
+ "getrandom 0.3.4",
20
+ "once_cell",
21
+ "version_check",
22
+ "zerocopy",
23
+ ]
24
+
25
+ [[package]]
26
+ name = "aho-corasick"
27
+ version = "1.1.4"
28
+ source = "registry+https://github.com/rust-lang/crates.io-index"
29
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
30
+ dependencies = [
31
+ "memchr",
32
+ ]
33
+
34
+ [[package]]
35
+ name = "alloc-no-stdlib"
36
+ version = "2.0.4"
37
+ source = "registry+https://github.com/rust-lang/crates.io-index"
38
+ checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
39
+
40
+ [[package]]
41
+ name = "alloc-stdlib"
42
+ version = "0.2.2"
43
+ source = "registry+https://github.com/rust-lang/crates.io-index"
44
+ checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece"
45
+ dependencies = [
46
+ "alloc-no-stdlib",
47
+ ]
48
+
49
+ [[package]]
50
+ name = "allocator-api2"
51
+ version = "0.2.21"
52
+ source = "registry+https://github.com/rust-lang/crates.io-index"
53
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
54
+
55
+ [[package]]
56
+ name = "android_system_properties"
57
+ version = "0.1.5"
58
+ source = "registry+https://github.com/rust-lang/crates.io-index"
59
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
60
+ dependencies = [
61
+ "libc",
62
+ ]
63
+
64
+ [[package]]
65
+ name = "anes"
66
+ version = "0.1.6"
67
+ source = "registry+https://github.com/rust-lang/crates.io-index"
68
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
69
+
70
+ [[package]]
71
+ name = "anstyle"
72
+ version = "1.0.13"
73
+ source = "registry+https://github.com/rust-lang/crates.io-index"
74
+ checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
75
+
76
+ [[package]]
77
+ name = "arrow"
78
+ version = "57.0.0"
79
+ source = "registry+https://github.com/rust-lang/crates.io-index"
80
+ checksum = "4df8bb5b0bd64c0b9bc61317fcc480bad0f00e56d3bc32c69a4c8dada4786bae"
81
+ dependencies = [
82
+ "arrow-arith",
83
+ "arrow-array",
84
+ "arrow-buffer",
85
+ "arrow-cast",
86
+ "arrow-csv",
87
+ "arrow-data",
88
+ "arrow-ipc",
89
+ "arrow-json",
90
+ "arrow-ord",
91
+ "arrow-row",
92
+ "arrow-schema",
93
+ "arrow-select",
94
+ "arrow-string",
95
+ ]
96
+
97
+ [[package]]
98
+ name = "arrow-arith"
99
+ version = "57.0.0"
100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
101
+ checksum = "a1a640186d3bd30a24cb42264c2dafb30e236a6f50d510e56d40b708c9582491"
102
+ dependencies = [
103
+ "arrow-array",
104
+ "arrow-buffer",
105
+ "arrow-data",
106
+ "arrow-schema",
107
+ "chrono",
108
+ "num-traits",
109
+ ]
110
+
111
+ [[package]]
112
+ name = "arrow-array"
113
+ version = "57.0.0"
114
+ source = "registry+https://github.com/rust-lang/crates.io-index"
115
+ checksum = "219fe420e6800979744c8393b687afb0252b3f8a89b91027d27887b72aa36d31"
116
+ dependencies = [
117
+ "ahash",
118
+ "arrow-buffer",
119
+ "arrow-data",
120
+ "arrow-schema",
121
+ "chrono",
122
+ "half",
123
+ "hashbrown 0.16.0",
124
+ "num-complex",
125
+ "num-integer",
126
+ "num-traits",
127
+ ]
128
+
129
+ [[package]]
130
+ name = "arrow-buffer"
131
+ version = "57.0.0"
132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
133
+ checksum = "76885a2697a7edf6b59577f568b456afc94ce0e2edc15b784ce3685b6c3c5c27"
134
+ dependencies = [
135
+ "bytes",
136
+ "half",
137
+ "num-bigint",
138
+ "num-traits",
139
+ ]
140
+
141
+ [[package]]
142
+ name = "arrow-cast"
143
+ version = "57.0.0"
144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
145
+ checksum = "9c9ebb4c987e6b3b236fb4a14b20b34835abfdd80acead3ccf1f9bf399e1f168"
146
+ dependencies = [
147
+ "arrow-array",
148
+ "arrow-buffer",
149
+ "arrow-data",
150
+ "arrow-schema",
151
+ "arrow-select",
152
+ "atoi",
153
+ "base64",
154
+ "chrono",
155
+ "half",
156
+ "lexical-core",
157
+ "num-traits",
158
+ "ryu",
159
+ ]
160
+
161
+ [[package]]
162
+ name = "arrow-csv"
163
+ version = "57.0.0"
164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
165
+ checksum = "92386159c8d4bce96f8bd396b0642a0d544d471bdc2ef34d631aec80db40a09c"
166
+ dependencies = [
167
+ "arrow-array",
168
+ "arrow-cast",
169
+ "arrow-schema",
170
+ "chrono",
171
+ "csv",
172
+ "csv-core",
173
+ "regex",
174
+ ]
175
+
176
+ [[package]]
177
+ name = "arrow-data"
178
+ version = "57.0.0"
179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
180
+ checksum = "727681b95de313b600eddc2a37e736dcb21980a40f640314dcf360e2f36bc89b"
181
+ dependencies = [
182
+ "arrow-buffer",
183
+ "arrow-schema",
184
+ "half",
185
+ "num-integer",
186
+ "num-traits",
187
+ ]
188
+
189
+ [[package]]
190
+ name = "arrow-ipc"
191
+ version = "57.0.0"
192
+ source = "registry+https://github.com/rust-lang/crates.io-index"
193
+ checksum = "da9ba92e3de170295c98a84e5af22e2b037f0c7b32449445e6c493b5fca27f27"
194
+ dependencies = [
195
+ "arrow-array",
196
+ "arrow-buffer",
197
+ "arrow-data",
198
+ "arrow-schema",
199
+ "arrow-select",
200
+ "flatbuffers",
201
+ ]
202
+
203
+ [[package]]
204
+ name = "arrow-json"
205
+ version = "57.0.0"
206
+ source = "registry+https://github.com/rust-lang/crates.io-index"
207
+ checksum = "b969b4a421ae83828591c6bf5450bd52e6d489584142845ad6a861f42fe35df8"
208
+ dependencies = [
209
+ "arrow-array",
210
+ "arrow-buffer",
211
+ "arrow-cast",
212
+ "arrow-data",
213
+ "arrow-schema",
214
+ "chrono",
215
+ "half",
216
+ "indexmap",
217
+ "itoa",
218
+ "lexical-core",
219
+ "memchr",
220
+ "num-traits",
221
+ "ryu",
222
+ "serde_core",
223
+ "serde_json",
224
+ "simdutf8",
225
+ ]
226
+
227
+ [[package]]
228
+ name = "arrow-ord"
229
+ version = "57.0.0"
230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
231
+ checksum = "141c05298b21d03e88062317a1f1a73f5ba7b6eb041b350015b1cd6aabc0519b"
232
+ dependencies = [
233
+ "arrow-array",
234
+ "arrow-buffer",
235
+ "arrow-data",
236
+ "arrow-schema",
237
+ "arrow-select",
238
+ ]
239
+
240
+ [[package]]
241
+ name = "arrow-row"
242
+ version = "57.0.0"
243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
244
+ checksum = "c5f3c06a6abad6164508ed283c7a02151515cef3de4b4ff2cebbcaeb85533db2"
245
+ dependencies = [
246
+ "arrow-array",
247
+ "arrow-buffer",
248
+ "arrow-data",
249
+ "arrow-schema",
250
+ "half",
251
+ ]
252
+
253
+ [[package]]
254
+ name = "arrow-schema"
255
+ version = "57.0.0"
256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
257
+ checksum = "9cfa7a03d1eee2a4d061476e1840ad5c9867a544ca6c4c59256496af5d0a8be5"
258
+
259
+ [[package]]
260
+ name = "arrow-select"
261
+ version = "57.0.0"
262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
263
+ checksum = "bafa595babaad59f2455f4957d0f26448fb472722c186739f4fac0823a1bdb47"
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 = "57.0.0"
276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
277
+ checksum = "32f46457dbbb99f2650ff3ac23e46a929e0ab81db809b02aa5511c258348bef2"
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 = "autocfg"
301
+ version = "1.5.0"
302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
303
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
304
+
305
+ [[package]]
306
+ name = "base64"
307
+ version = "0.22.1"
308
+ source = "registry+https://github.com/rust-lang/crates.io-index"
309
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
310
+
311
+ [[package]]
312
+ name = "bitflags"
313
+ version = "2.10.0"
314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
315
+ checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
316
+
317
+ [[package]]
318
+ name = "bitvec"
319
+ version = "1.0.1"
320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
321
+ checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c"
322
+ dependencies = [
323
+ "funty",
324
+ "radium",
325
+ "tap",
326
+ "wyz",
327
+ ]
328
+
329
+ [[package]]
330
+ name = "brotli"
331
+ version = "8.0.2"
332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
333
+ checksum = "4bd8b9603c7aa97359dbd97ecf258968c95f3adddd6db2f7e7a5bef101c84560"
334
+ dependencies = [
335
+ "alloc-no-stdlib",
336
+ "alloc-stdlib",
337
+ "brotli-decompressor",
338
+ ]
339
+
340
+ [[package]]
341
+ name = "brotli-decompressor"
342
+ version = "5.0.0"
343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
344
+ checksum = "874bb8112abecc98cbd6d81ea4fa7e94fb9449648c93cc89aa40c81c24d7de03"
345
+ dependencies = [
346
+ "alloc-no-stdlib",
347
+ "alloc-stdlib",
348
+ ]
349
+
350
+ [[package]]
351
+ name = "bumpalo"
352
+ version = "3.19.0"
353
+ source = "registry+https://github.com/rust-lang/crates.io-index"
354
+ checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
355
+
356
+ [[package]]
357
+ name = "bytemuck"
358
+ version = "1.24.0"
359
+ source = "registry+https://github.com/rust-lang/crates.io-index"
360
+ checksum = "1fbdf580320f38b612e485521afda1ee26d10cc9884efaaa750d383e13e3c5f4"
361
+
362
+ [[package]]
363
+ name = "byteorder"
364
+ version = "1.5.0"
365
+ source = "registry+https://github.com/rust-lang/crates.io-index"
366
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
367
+
368
+ [[package]]
369
+ name = "bytes"
370
+ version = "1.11.0"
371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
372
+ checksum = "b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3"
373
+
374
+ [[package]]
375
+ name = "cast"
376
+ version = "0.3.0"
377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
378
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
379
+
380
+ [[package]]
381
+ name = "cc"
382
+ version = "1.2.46"
383
+ source = "registry+https://github.com/rust-lang/crates.io-index"
384
+ checksum = "b97463e1064cb1b1c1384ad0a0b9c8abd0988e2a91f52606c80ef14aadb63e36"
385
+ dependencies = [
386
+ "find-msvc-tools",
387
+ "jobserver",
388
+ "libc",
389
+ "shlex",
390
+ ]
391
+
392
+ [[package]]
393
+ name = "cfg-if"
394
+ version = "1.0.4"
395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
396
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
397
+
398
+ [[package]]
399
+ name = "chrono"
400
+ version = "0.4.42"
401
+ source = "registry+https://github.com/rust-lang/crates.io-index"
402
+ checksum = "145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2"
403
+ dependencies = [
404
+ "iana-time-zone",
405
+ "num-traits",
406
+ "windows-link",
407
+ ]
408
+
409
+ [[package]]
410
+ name = "ciborium"
411
+ version = "0.2.2"
412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
413
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
414
+ dependencies = [
415
+ "ciborium-io",
416
+ "ciborium-ll",
417
+ "serde",
418
+ ]
419
+
420
+ [[package]]
421
+ name = "ciborium-io"
422
+ version = "0.2.2"
423
+ source = "registry+https://github.com/rust-lang/crates.io-index"
424
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
425
+
426
+ [[package]]
427
+ name = "ciborium-ll"
428
+ version = "0.2.2"
429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
430
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
431
+ dependencies = [
432
+ "ciborium-io",
433
+ "half",
434
+ ]
435
+
436
+ [[package]]
437
+ name = "clap"
438
+ version = "4.5.51"
439
+ source = "registry+https://github.com/rust-lang/crates.io-index"
440
+ checksum = "4c26d721170e0295f191a69bd9a1f93efcdb0aff38684b61ab5750468972e5f5"
441
+ dependencies = [
442
+ "clap_builder",
443
+ ]
444
+
445
+ [[package]]
446
+ name = "clap_builder"
447
+ version = "4.5.51"
448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
449
+ checksum = "75835f0c7bf681bfd05abe44e965760fea999a5286c6eb2d59883634fd02011a"
450
+ dependencies = [
451
+ "anstyle",
452
+ "clap_lex",
453
+ ]
454
+
455
+ [[package]]
456
+ name = "clap_lex"
457
+ version = "0.7.6"
458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
459
+ checksum = "a1d728cc89cf3aee9ff92b05e62b19ee65a02b5702cff7d5a377e32c6ae29d8d"
460
+
461
+ [[package]]
462
+ name = "const-random"
463
+ version = "0.1.18"
464
+ source = "registry+https://github.com/rust-lang/crates.io-index"
465
+ checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359"
466
+ dependencies = [
467
+ "const-random-macro",
468
+ ]
469
+
470
+ [[package]]
471
+ name = "const-random-macro"
472
+ version = "0.1.16"
473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
474
+ checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e"
475
+ dependencies = [
476
+ "getrandom 0.2.16",
477
+ "once_cell",
478
+ "tiny-keccak",
479
+ ]
480
+
481
+ [[package]]
482
+ name = "core-foundation-sys"
483
+ version = "0.8.7"
484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
485
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
486
+
487
+ [[package]]
488
+ name = "crc32fast"
489
+ version = "1.5.0"
490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
491
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
492
+ dependencies = [
493
+ "cfg-if",
494
+ ]
495
+
496
+ [[package]]
497
+ name = "criterion"
498
+ version = "0.5.1"
499
+ source = "registry+https://github.com/rust-lang/crates.io-index"
500
+ checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
501
+ dependencies = [
502
+ "anes",
503
+ "cast",
504
+ "ciborium",
505
+ "clap",
506
+ "criterion-plot",
507
+ "futures",
508
+ "is-terminal",
509
+ "itertools",
510
+ "num-traits",
511
+ "once_cell",
512
+ "oorandom",
513
+ "plotters",
514
+ "rayon",
515
+ "regex",
516
+ "serde",
517
+ "serde_derive",
518
+ "serde_json",
519
+ "tinytemplate",
520
+ "tokio",
521
+ "walkdir",
522
+ ]
523
+
524
+ [[package]]
525
+ name = "criterion-plot"
526
+ version = "0.5.0"
527
+ source = "registry+https://github.com/rust-lang/crates.io-index"
528
+ checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
529
+ dependencies = [
530
+ "cast",
531
+ "itertools",
532
+ ]
533
+
534
+ [[package]]
535
+ name = "crossbeam-deque"
536
+ version = "0.8.6"
537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
538
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
539
+ dependencies = [
540
+ "crossbeam-epoch",
541
+ "crossbeam-utils",
542
+ ]
543
+
544
+ [[package]]
545
+ name = "crossbeam-epoch"
546
+ version = "0.9.18"
547
+ source = "registry+https://github.com/rust-lang/crates.io-index"
548
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
549
+ dependencies = [
550
+ "crossbeam-utils",
551
+ ]
552
+
553
+ [[package]]
554
+ name = "crossbeam-utils"
555
+ version = "0.8.21"
556
+ source = "registry+https://github.com/rust-lang/crates.io-index"
557
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
558
+
559
+ [[package]]
560
+ name = "crunchy"
561
+ version = "0.2.4"
562
+ source = "registry+https://github.com/rust-lang/crates.io-index"
563
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
564
+
565
+ [[package]]
566
+ name = "csv"
567
+ version = "1.4.0"
568
+ source = "registry+https://github.com/rust-lang/crates.io-index"
569
+ checksum = "52cd9d68cf7efc6ddfaaee42e7288d3a99d613d4b50f76ce9827ae0c6e14f938"
570
+ dependencies = [
571
+ "csv-core",
572
+ "itoa",
573
+ "ryu",
574
+ "serde_core",
575
+ ]
576
+
577
+ [[package]]
578
+ name = "csv-core"
579
+ version = "0.1.13"
580
+ source = "registry+https://github.com/rust-lang/crates.io-index"
581
+ checksum = "704a3c26996a80471189265814dbc2c257598b96b8a7feae2d31ace646bb9782"
582
+ dependencies = [
583
+ "memchr",
584
+ ]
585
+
586
+ [[package]]
587
+ name = "either"
588
+ version = "1.15.0"
589
+ source = "registry+https://github.com/rust-lang/crates.io-index"
590
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
591
+
592
+ [[package]]
593
+ name = "equivalent"
594
+ version = "1.0.2"
595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
596
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
597
+
598
+ [[package]]
599
+ name = "errno"
600
+ version = "0.3.14"
601
+ source = "registry+https://github.com/rust-lang/crates.io-index"
602
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
603
+ dependencies = [
604
+ "libc",
605
+ "windows-sys",
606
+ ]
607
+
608
+ [[package]]
609
+ name = "fastrand"
610
+ version = "2.3.0"
611
+ source = "registry+https://github.com/rust-lang/crates.io-index"
612
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
613
+
614
+ [[package]]
615
+ name = "find-msvc-tools"
616
+ version = "0.1.5"
617
+ source = "registry+https://github.com/rust-lang/crates.io-index"
618
+ checksum = "3a3076410a55c90011c298b04d0cfa770b00fa04e1e3c97d3f6c9de105a03844"
619
+
620
+ [[package]]
621
+ name = "flatbuffers"
622
+ version = "25.9.23"
623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
624
+ checksum = "09b6620799e7340ebd9968d2e0708eb82cf1971e9a16821e2091b6d6e475eed5"
625
+ dependencies = [
626
+ "bitflags",
627
+ "rustc_version",
628
+ ]
629
+
630
+ [[package]]
631
+ name = "flate2"
632
+ version = "1.1.5"
633
+ source = "registry+https://github.com/rust-lang/crates.io-index"
634
+ checksum = "bfe33edd8e85a12a67454e37f8c75e730830d83e313556ab9ebf9ee7fbeb3bfb"
635
+ dependencies = [
636
+ "crc32fast",
637
+ "libz-rs-sys",
638
+ "miniz_oxide",
639
+ ]
640
+
641
+ [[package]]
642
+ name = "foldhash"
643
+ version = "0.2.0"
644
+ source = "registry+https://github.com/rust-lang/crates.io-index"
645
+ checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
646
+
647
+ [[package]]
648
+ name = "funty"
649
+ version = "2.0.0"
650
+ source = "registry+https://github.com/rust-lang/crates.io-index"
651
+ checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
652
+
653
+ [[package]]
654
+ name = "futures"
655
+ version = "0.3.31"
656
+ source = "registry+https://github.com/rust-lang/crates.io-index"
657
+ checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
658
+ dependencies = [
659
+ "futures-channel",
660
+ "futures-core",
661
+ "futures-io",
662
+ "futures-sink",
663
+ "futures-task",
664
+ "futures-util",
665
+ ]
666
+
667
+ [[package]]
668
+ name = "futures-channel"
669
+ version = "0.3.31"
670
+ source = "registry+https://github.com/rust-lang/crates.io-index"
671
+ checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
672
+ dependencies = [
673
+ "futures-core",
674
+ "futures-sink",
675
+ ]
676
+
677
+ [[package]]
678
+ name = "futures-core"
679
+ version = "0.3.31"
680
+ source = "registry+https://github.com/rust-lang/crates.io-index"
681
+ checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
682
+
683
+ [[package]]
684
+ name = "futures-io"
685
+ version = "0.3.31"
686
+ source = "registry+https://github.com/rust-lang/crates.io-index"
687
+ checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
688
+
689
+ [[package]]
690
+ name = "futures-sink"
691
+ version = "0.3.31"
692
+ source = "registry+https://github.com/rust-lang/crates.io-index"
693
+ checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
694
+
695
+ [[package]]
696
+ name = "futures-task"
697
+ version = "0.3.31"
698
+ source = "registry+https://github.com/rust-lang/crates.io-index"
699
+ checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
700
+
701
+ [[package]]
702
+ name = "futures-util"
703
+ version = "0.3.31"
704
+ source = "registry+https://github.com/rust-lang/crates.io-index"
705
+ checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
706
+ dependencies = [
707
+ "futures-core",
708
+ "futures-sink",
709
+ "futures-task",
710
+ "pin-project-lite",
711
+ "pin-utils",
712
+ ]
713
+
714
+ [[package]]
715
+ name = "getrandom"
716
+ version = "0.2.16"
717
+ source = "registry+https://github.com/rust-lang/crates.io-index"
718
+ checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
719
+ dependencies = [
720
+ "cfg-if",
721
+ "libc",
722
+ "wasi",
723
+ ]
724
+
725
+ [[package]]
726
+ name = "getrandom"
727
+ version = "0.3.4"
728
+ source = "registry+https://github.com/rust-lang/crates.io-index"
729
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
730
+ dependencies = [
731
+ "cfg-if",
732
+ "libc",
733
+ "r-efi",
734
+ "wasip2",
735
+ ]
736
+
737
+ [[package]]
738
+ name = "half"
739
+ version = "2.7.1"
740
+ source = "registry+https://github.com/rust-lang/crates.io-index"
741
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
742
+ dependencies = [
743
+ "cfg-if",
744
+ "crunchy",
745
+ "num-traits",
746
+ "zerocopy",
747
+ ]
748
+
749
+ [[package]]
750
+ name = "hashbrown"
751
+ version = "0.14.5"
752
+ source = "registry+https://github.com/rust-lang/crates.io-index"
753
+ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
754
+ dependencies = [
755
+ "ahash",
756
+ "allocator-api2",
757
+ ]
758
+
759
+ [[package]]
760
+ name = "hashbrown"
761
+ version = "0.16.0"
762
+ source = "registry+https://github.com/rust-lang/crates.io-index"
763
+ checksum = "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d"
764
+ dependencies = [
765
+ "allocator-api2",
766
+ "equivalent",
767
+ "foldhash",
768
+ ]
769
+
770
+ [[package]]
771
+ name = "heck"
772
+ version = "0.4.1"
773
+ source = "registry+https://github.com/rust-lang/crates.io-index"
774
+ checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
775
+
776
+ [[package]]
777
+ name = "hermit-abi"
778
+ version = "0.5.2"
779
+ source = "registry+https://github.com/rust-lang/crates.io-index"
780
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
781
+
782
+ [[package]]
783
+ name = "iana-time-zone"
784
+ version = "0.1.64"
785
+ source = "registry+https://github.com/rust-lang/crates.io-index"
786
+ checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb"
787
+ dependencies = [
788
+ "android_system_properties",
789
+ "core-foundation-sys",
790
+ "iana-time-zone-haiku",
791
+ "js-sys",
792
+ "log",
793
+ "wasm-bindgen",
794
+ "windows-core",
795
+ ]
796
+
797
+ [[package]]
798
+ name = "iana-time-zone-haiku"
799
+ version = "0.1.2"
800
+ source = "registry+https://github.com/rust-lang/crates.io-index"
801
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
802
+ dependencies = [
803
+ "cc",
804
+ ]
805
+
806
+ [[package]]
807
+ name = "indexmap"
808
+ version = "2.12.0"
809
+ source = "registry+https://github.com/rust-lang/crates.io-index"
810
+ checksum = "6717a8d2a5a929a1a2eb43a12812498ed141a0bcfb7e8f7844fbdbe4303bba9f"
811
+ dependencies = [
812
+ "equivalent",
813
+ "hashbrown 0.16.0",
814
+ ]
815
+
816
+ [[package]]
817
+ name = "indoc"
818
+ version = "2.0.7"
819
+ source = "registry+https://github.com/rust-lang/crates.io-index"
820
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
821
+ dependencies = [
822
+ "rustversion",
823
+ ]
824
+
825
+ [[package]]
826
+ name = "integer-encoding"
827
+ version = "3.0.4"
828
+ source = "registry+https://github.com/rust-lang/crates.io-index"
829
+ checksum = "8bb03732005da905c88227371639bf1ad885cc712789c011c31c5fb3ab3ccf02"
830
+
831
+ [[package]]
832
+ name = "is-terminal"
833
+ version = "0.4.17"
834
+ source = "registry+https://github.com/rust-lang/crates.io-index"
835
+ checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
836
+ dependencies = [
837
+ "hermit-abi",
838
+ "libc",
839
+ "windows-sys",
840
+ ]
841
+
842
+ [[package]]
843
+ name = "itertools"
844
+ version = "0.10.5"
845
+ source = "registry+https://github.com/rust-lang/crates.io-index"
846
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
847
+ dependencies = [
848
+ "either",
849
+ ]
850
+
851
+ [[package]]
852
+ name = "itoa"
853
+ version = "1.0.15"
854
+ source = "registry+https://github.com/rust-lang/crates.io-index"
855
+ checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
856
+
857
+ [[package]]
858
+ name = "jobserver"
859
+ version = "0.1.34"
860
+ source = "registry+https://github.com/rust-lang/crates.io-index"
861
+ checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
862
+ dependencies = [
863
+ "getrandom 0.3.4",
864
+ "libc",
865
+ ]
866
+
867
+ [[package]]
868
+ name = "js-sys"
869
+ version = "0.3.82"
870
+ source = "registry+https://github.com/rust-lang/crates.io-index"
871
+ checksum = "b011eec8cc36da2aab2d5cff675ec18454fad408585853910a202391cf9f8e65"
872
+ dependencies = [
873
+ "once_cell",
874
+ "wasm-bindgen",
875
+ ]
876
+
877
+ [[package]]
878
+ name = "lasso"
879
+ version = "0.7.3"
880
+ source = "registry+https://github.com/rust-lang/crates.io-index"
881
+ checksum = "6e14eda50a3494b3bf7b9ce51c52434a761e383d7238ce1dd5dcec2fbc13e9fb"
882
+ dependencies = [
883
+ "hashbrown 0.14.5",
884
+ ]
885
+
886
+ [[package]]
887
+ name = "lexical-core"
888
+ version = "1.0.6"
889
+ source = "registry+https://github.com/rust-lang/crates.io-index"
890
+ checksum = "7d8d125a277f807e55a77304455eb7b1cb52f2b18c143b60e766c120bd64a594"
891
+ dependencies = [
892
+ "lexical-parse-float",
893
+ "lexical-parse-integer",
894
+ "lexical-util",
895
+ "lexical-write-float",
896
+ "lexical-write-integer",
897
+ ]
898
+
899
+ [[package]]
900
+ name = "lexical-parse-float"
901
+ version = "1.0.6"
902
+ source = "registry+https://github.com/rust-lang/crates.io-index"
903
+ checksum = "52a9f232fbd6f550bc0137dcb5f99ab674071ac2d690ac69704593cb4abbea56"
904
+ dependencies = [
905
+ "lexical-parse-integer",
906
+ "lexical-util",
907
+ ]
908
+
909
+ [[package]]
910
+ name = "lexical-parse-integer"
911
+ version = "1.0.6"
912
+ source = "registry+https://github.com/rust-lang/crates.io-index"
913
+ checksum = "9a7a039f8fb9c19c996cd7b2fcce303c1b2874fe1aca544edc85c4a5f8489b34"
914
+ dependencies = [
915
+ "lexical-util",
916
+ ]
917
+
918
+ [[package]]
919
+ name = "lexical-util"
920
+ version = "1.0.7"
921
+ source = "registry+https://github.com/rust-lang/crates.io-index"
922
+ checksum = "2604dd126bb14f13fb5d1bd6a66155079cb9fa655b37f875b3a742c705dbed17"
923
+
924
+ [[package]]
925
+ name = "lexical-write-float"
926
+ version = "1.0.6"
927
+ source = "registry+https://github.com/rust-lang/crates.io-index"
928
+ checksum = "50c438c87c013188d415fbabbb1dceb44249ab81664efbd31b14ae55dabb6361"
929
+ dependencies = [
930
+ "lexical-util",
931
+ "lexical-write-integer",
932
+ ]
933
+
934
+ [[package]]
935
+ name = "lexical-write-integer"
936
+ version = "1.0.6"
937
+ source = "registry+https://github.com/rust-lang/crates.io-index"
938
+ checksum = "409851a618475d2d5796377cad353802345cba92c867d9fbcde9cf4eac4e14df"
939
+ dependencies = [
940
+ "lexical-util",
941
+ ]
942
+
943
+ [[package]]
944
+ name = "libc"
945
+ version = "0.2.177"
946
+ source = "registry+https://github.com/rust-lang/crates.io-index"
947
+ checksum = "2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976"
948
+
949
+ [[package]]
950
+ name = "libm"
951
+ version = "0.2.15"
952
+ source = "registry+https://github.com/rust-lang/crates.io-index"
953
+ checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de"
954
+
955
+ [[package]]
956
+ name = "libz-rs-sys"
957
+ version = "0.5.2"
958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
959
+ checksum = "840db8cf39d9ec4dd794376f38acc40d0fc65eec2a8f484f7fd375b84602becd"
960
+ dependencies = [
961
+ "zlib-rs",
962
+ ]
963
+
964
+ [[package]]
965
+ name = "linux-raw-sys"
966
+ version = "0.11.0"
967
+ source = "registry+https://github.com/rust-lang/crates.io-index"
968
+ checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
969
+
970
+ [[package]]
971
+ name = "lock_api"
972
+ version = "0.4.14"
973
+ source = "registry+https://github.com/rust-lang/crates.io-index"
974
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
975
+ dependencies = [
976
+ "scopeguard",
977
+ ]
978
+
979
+ [[package]]
980
+ name = "log"
981
+ version = "0.4.28"
982
+ source = "registry+https://github.com/rust-lang/crates.io-index"
983
+ checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432"
984
+
985
+ [[package]]
986
+ name = "lz4_flex"
987
+ version = "0.11.5"
988
+ source = "registry+https://github.com/rust-lang/crates.io-index"
989
+ checksum = "08ab2867e3eeeca90e844d1940eab391c9dc5228783db2ed999acbc0a9ed375a"
990
+ dependencies = [
991
+ "twox-hash",
992
+ ]
993
+
994
+ [[package]]
995
+ name = "memchr"
996
+ version = "2.7.6"
997
+ source = "registry+https://github.com/rust-lang/crates.io-index"
998
+ checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
999
+
1000
+ [[package]]
1001
+ name = "memoffset"
1002
+ version = "0.9.1"
1003
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1004
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
1005
+ dependencies = [
1006
+ "autocfg",
1007
+ ]
1008
+
1009
+ [[package]]
1010
+ name = "miniz_oxide"
1011
+ version = "0.8.9"
1012
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1013
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
1014
+ dependencies = [
1015
+ "adler2",
1016
+ "simd-adler32",
1017
+ ]
1018
+
1019
+ [[package]]
1020
+ name = "num-bigint"
1021
+ version = "0.4.6"
1022
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1023
+ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
1024
+ dependencies = [
1025
+ "num-integer",
1026
+ "num-traits",
1027
+ ]
1028
+
1029
+ [[package]]
1030
+ name = "num-complex"
1031
+ version = "0.4.6"
1032
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1033
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
1034
+ dependencies = [
1035
+ "num-traits",
1036
+ ]
1037
+
1038
+ [[package]]
1039
+ name = "num-integer"
1040
+ version = "0.1.46"
1041
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1042
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
1043
+ dependencies = [
1044
+ "num-traits",
1045
+ ]
1046
+
1047
+ [[package]]
1048
+ name = "num-traits"
1049
+ version = "0.2.19"
1050
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1051
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1052
+ dependencies = [
1053
+ "autocfg",
1054
+ "libm",
1055
+ ]
1056
+
1057
+ [[package]]
1058
+ name = "once_cell"
1059
+ version = "1.21.3"
1060
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1061
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
1062
+
1063
+ [[package]]
1064
+ name = "oorandom"
1065
+ version = "11.1.5"
1066
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1067
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
1068
+
1069
+ [[package]]
1070
+ name = "ordered-float"
1071
+ version = "2.10.1"
1072
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1073
+ checksum = "68f19d67e5a2795c94e73e0bb1cc1a7edeb2e28efd39e2e1c9b7a40c1108b11c"
1074
+ dependencies = [
1075
+ "num-traits",
1076
+ ]
1077
+
1078
+ [[package]]
1079
+ name = "parking_lot"
1080
+ version = "0.12.5"
1081
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1082
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
1083
+ dependencies = [
1084
+ "lock_api",
1085
+ "parking_lot_core",
1086
+ ]
1087
+
1088
+ [[package]]
1089
+ name = "parking_lot_core"
1090
+ version = "0.9.12"
1091
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1092
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
1093
+ dependencies = [
1094
+ "cfg-if",
1095
+ "libc",
1096
+ "redox_syscall",
1097
+ "smallvec",
1098
+ "windows-link",
1099
+ ]
1100
+
1101
+ [[package]]
1102
+ name = "parquet"
1103
+ version = "57.0.0"
1104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1105
+ checksum = "7a0f31027ef1af7549f7cec603a9a21dce706d3f8d7c2060a68f43c1773be95a"
1106
+ dependencies = [
1107
+ "ahash",
1108
+ "arrow-array",
1109
+ "arrow-buffer",
1110
+ "arrow-cast",
1111
+ "arrow-data",
1112
+ "arrow-ipc",
1113
+ "arrow-schema",
1114
+ "arrow-select",
1115
+ "base64",
1116
+ "brotli",
1117
+ "bytes",
1118
+ "chrono",
1119
+ "flate2",
1120
+ "half",
1121
+ "hashbrown 0.16.0",
1122
+ "lz4_flex",
1123
+ "num-bigint",
1124
+ "num-integer",
1125
+ "num-traits",
1126
+ "paste",
1127
+ "seq-macro",
1128
+ "simdutf8",
1129
+ "snap",
1130
+ "thrift",
1131
+ "twox-hash",
1132
+ "zstd",
1133
+ ]
1134
+
1135
+ [[package]]
1136
+ name = "paste"
1137
+ version = "1.0.15"
1138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1139
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
1140
+
1141
+ [[package]]
1142
+ name = "pin-project-lite"
1143
+ version = "0.2.16"
1144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1145
+ checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
1146
+
1147
+ [[package]]
1148
+ name = "pin-utils"
1149
+ version = "0.1.0"
1150
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1151
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1152
+
1153
+ [[package]]
1154
+ name = "pkg-config"
1155
+ version = "0.3.32"
1156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1157
+ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
1158
+
1159
+ [[package]]
1160
+ name = "plotters"
1161
+ version = "0.3.7"
1162
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1163
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
1164
+ dependencies = [
1165
+ "num-traits",
1166
+ "plotters-backend",
1167
+ "plotters-svg",
1168
+ "wasm-bindgen",
1169
+ "web-sys",
1170
+ ]
1171
+
1172
+ [[package]]
1173
+ name = "plotters-backend"
1174
+ version = "0.3.7"
1175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1176
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
1177
+
1178
+ [[package]]
1179
+ name = "plotters-svg"
1180
+ version = "0.3.7"
1181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1182
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
1183
+ dependencies = [
1184
+ "plotters-backend",
1185
+ ]
1186
+
1187
+ [[package]]
1188
+ name = "portable-atomic"
1189
+ version = "1.11.1"
1190
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1191
+ checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
1192
+
1193
+ [[package]]
1194
+ name = "ppv-lite86"
1195
+ version = "0.2.21"
1196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1197
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1198
+ dependencies = [
1199
+ "zerocopy",
1200
+ ]
1201
+
1202
+ [[package]]
1203
+ name = "proc-macro2"
1204
+ version = "1.0.103"
1205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1206
+ checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8"
1207
+ dependencies = [
1208
+ "unicode-ident",
1209
+ ]
1210
+
1211
+ [[package]]
1212
+ name = "pyo3"
1213
+ version = "0.20.3"
1214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1215
+ checksum = "53bdbb96d49157e65d45cc287af5f32ffadd5f4761438b527b055fb0d4bb8233"
1216
+ dependencies = [
1217
+ "cfg-if",
1218
+ "indoc",
1219
+ "libc",
1220
+ "memoffset",
1221
+ "parking_lot",
1222
+ "portable-atomic",
1223
+ "pyo3-build-config",
1224
+ "pyo3-ffi",
1225
+ "pyo3-macros",
1226
+ "unindent",
1227
+ ]
1228
+
1229
+ [[package]]
1230
+ name = "pyo3-build-config"
1231
+ version = "0.20.3"
1232
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1233
+ checksum = "deaa5745de3f5231ce10517a1f5dd97d53e5a2fd77aa6b5842292085831d48d7"
1234
+ dependencies = [
1235
+ "once_cell",
1236
+ "target-lexicon",
1237
+ ]
1238
+
1239
+ [[package]]
1240
+ name = "pyo3-ffi"
1241
+ version = "0.20.3"
1242
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1243
+ checksum = "62b42531d03e08d4ef1f6e85a2ed422eb678b8cd62b762e53891c05faf0d4afa"
1244
+ dependencies = [
1245
+ "libc",
1246
+ "pyo3-build-config",
1247
+ ]
1248
+
1249
+ [[package]]
1250
+ name = "pyo3-macros"
1251
+ version = "0.20.3"
1252
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1253
+ checksum = "7305c720fa01b8055ec95e484a6eca7a83c841267f0dd5280f0c8b8551d2c158"
1254
+ dependencies = [
1255
+ "proc-macro2",
1256
+ "pyo3-macros-backend",
1257
+ "quote",
1258
+ "syn",
1259
+ ]
1260
+
1261
+ [[package]]
1262
+ name = "pyo3-macros-backend"
1263
+ version = "0.20.3"
1264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1265
+ checksum = "7c7e9b68bb9c3149c5b0cade5d07f953d6d125eb4337723c4ccdb665f1f96185"
1266
+ dependencies = [
1267
+ "heck",
1268
+ "proc-macro2",
1269
+ "pyo3-build-config",
1270
+ "quote",
1271
+ "syn",
1272
+ ]
1273
+
1274
+ [[package]]
1275
+ name = "quote"
1276
+ version = "1.0.42"
1277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1278
+ checksum = "a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f"
1279
+ dependencies = [
1280
+ "proc-macro2",
1281
+ ]
1282
+
1283
+ [[package]]
1284
+ name = "r-efi"
1285
+ version = "5.3.0"
1286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1287
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1288
+
1289
+ [[package]]
1290
+ name = "radium"
1291
+ version = "0.7.0"
1292
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1293
+ checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
1294
+
1295
+ [[package]]
1296
+ name = "rand"
1297
+ version = "0.8.5"
1298
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1299
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
1300
+ dependencies = [
1301
+ "libc",
1302
+ "rand_chacha",
1303
+ "rand_core",
1304
+ ]
1305
+
1306
+ [[package]]
1307
+ name = "rand_chacha"
1308
+ version = "0.3.1"
1309
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1310
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
1311
+ dependencies = [
1312
+ "ppv-lite86",
1313
+ "rand_core",
1314
+ ]
1315
+
1316
+ [[package]]
1317
+ name = "rand_core"
1318
+ version = "0.6.4"
1319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1320
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1321
+ dependencies = [
1322
+ "getrandom 0.2.16",
1323
+ ]
1324
+
1325
+ [[package]]
1326
+ name = "rayon"
1327
+ version = "1.11.0"
1328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1329
+ checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
1330
+ dependencies = [
1331
+ "either",
1332
+ "rayon-core",
1333
+ ]
1334
+
1335
+ [[package]]
1336
+ name = "rayon-core"
1337
+ version = "1.13.0"
1338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1339
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
1340
+ dependencies = [
1341
+ "crossbeam-deque",
1342
+ "crossbeam-utils",
1343
+ ]
1344
+
1345
+ [[package]]
1346
+ name = "redox_syscall"
1347
+ version = "0.5.18"
1348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1349
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
1350
+ dependencies = [
1351
+ "bitflags",
1352
+ ]
1353
+
1354
+ [[package]]
1355
+ name = "regex"
1356
+ version = "1.12.2"
1357
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1358
+ checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
1359
+ dependencies = [
1360
+ "aho-corasick",
1361
+ "memchr",
1362
+ "regex-automata",
1363
+ "regex-syntax",
1364
+ ]
1365
+
1366
+ [[package]]
1367
+ name = "regex-automata"
1368
+ version = "0.4.13"
1369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1370
+ checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
1371
+ dependencies = [
1372
+ "aho-corasick",
1373
+ "memchr",
1374
+ "regex-syntax",
1375
+ ]
1376
+
1377
+ [[package]]
1378
+ name = "regex-syntax"
1379
+ version = "0.8.8"
1380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1381
+ checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
1382
+
1383
+ [[package]]
1384
+ name = "roaring"
1385
+ version = "0.11.2"
1386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1387
+ checksum = "f08d6a905edb32d74a5d5737a0c9d7e950c312f3c46cb0ca0a2ca09ea11878a0"
1388
+ dependencies = [
1389
+ "bytemuck",
1390
+ "byteorder",
1391
+ ]
1392
+
1393
+ [[package]]
1394
+ name = "rustc_version"
1395
+ version = "0.4.1"
1396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1397
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
1398
+ dependencies = [
1399
+ "semver",
1400
+ ]
1401
+
1402
+ [[package]]
1403
+ name = "rustix"
1404
+ version = "1.1.2"
1405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1406
+ checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e"
1407
+ dependencies = [
1408
+ "bitflags",
1409
+ "errno",
1410
+ "libc",
1411
+ "linux-raw-sys",
1412
+ "windows-sys",
1413
+ ]
1414
+
1415
+ [[package]]
1416
+ name = "rustversion"
1417
+ version = "1.0.22"
1418
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1419
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1420
+
1421
+ [[package]]
1422
+ name = "rustychickpeas-core"
1423
+ version = "0.1.7"
1424
+ dependencies = [
1425
+ "arrow",
1426
+ "bitvec",
1427
+ "criterion",
1428
+ "hashbrown 0.16.0",
1429
+ "lasso",
1430
+ "parquet",
1431
+ "rand",
1432
+ "rayon",
1433
+ "roaring",
1434
+ "tempfile",
1435
+ "thiserror",
1436
+ ]
1437
+
1438
+ [[package]]
1439
+ name = "rustychickpeas-python"
1440
+ version = "0.1.7"
1441
+ dependencies = [
1442
+ "pyo3",
1443
+ "rustychickpeas-core",
1444
+ ]
1445
+
1446
+ [[package]]
1447
+ name = "ryu"
1448
+ version = "1.0.20"
1449
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1450
+ checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
1451
+
1452
+ [[package]]
1453
+ name = "same-file"
1454
+ version = "1.0.6"
1455
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1456
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1457
+ dependencies = [
1458
+ "winapi-util",
1459
+ ]
1460
+
1461
+ [[package]]
1462
+ name = "scopeguard"
1463
+ version = "1.2.0"
1464
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1465
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1466
+
1467
+ [[package]]
1468
+ name = "semver"
1469
+ version = "1.0.27"
1470
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1471
+ checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
1472
+
1473
+ [[package]]
1474
+ name = "seq-macro"
1475
+ version = "0.3.6"
1476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1477
+ checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
1478
+
1479
+ [[package]]
1480
+ name = "serde"
1481
+ version = "1.0.228"
1482
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1483
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1484
+ dependencies = [
1485
+ "serde_core",
1486
+ "serde_derive",
1487
+ ]
1488
+
1489
+ [[package]]
1490
+ name = "serde_core"
1491
+ version = "1.0.228"
1492
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1493
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1494
+ dependencies = [
1495
+ "serde_derive",
1496
+ ]
1497
+
1498
+ [[package]]
1499
+ name = "serde_derive"
1500
+ version = "1.0.228"
1501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1502
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1503
+ dependencies = [
1504
+ "proc-macro2",
1505
+ "quote",
1506
+ "syn",
1507
+ ]
1508
+
1509
+ [[package]]
1510
+ name = "serde_json"
1511
+ version = "1.0.145"
1512
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1513
+ checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
1514
+ dependencies = [
1515
+ "itoa",
1516
+ "memchr",
1517
+ "ryu",
1518
+ "serde",
1519
+ "serde_core",
1520
+ ]
1521
+
1522
+ [[package]]
1523
+ name = "shlex"
1524
+ version = "1.3.0"
1525
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1526
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1527
+
1528
+ [[package]]
1529
+ name = "simd-adler32"
1530
+ version = "0.3.7"
1531
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1532
+ checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe"
1533
+
1534
+ [[package]]
1535
+ name = "simdutf8"
1536
+ version = "0.1.5"
1537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1538
+ checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
1539
+
1540
+ [[package]]
1541
+ name = "smallvec"
1542
+ version = "1.15.1"
1543
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1544
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
1545
+
1546
+ [[package]]
1547
+ name = "snap"
1548
+ version = "1.1.1"
1549
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1550
+ checksum = "1b6b67fb9a61334225b5b790716f609cd58395f895b3fe8b328786812a40bc3b"
1551
+
1552
+ [[package]]
1553
+ name = "syn"
1554
+ version = "2.0.110"
1555
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1556
+ checksum = "a99801b5bd34ede4cf3fc688c5919368fea4e4814a4664359503e6015b280aea"
1557
+ dependencies = [
1558
+ "proc-macro2",
1559
+ "quote",
1560
+ "unicode-ident",
1561
+ ]
1562
+
1563
+ [[package]]
1564
+ name = "tap"
1565
+ version = "1.0.1"
1566
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1567
+ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
1568
+
1569
+ [[package]]
1570
+ name = "target-lexicon"
1571
+ version = "0.12.16"
1572
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1573
+ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
1574
+
1575
+ [[package]]
1576
+ name = "tempfile"
1577
+ version = "3.23.0"
1578
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1579
+ checksum = "2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16"
1580
+ dependencies = [
1581
+ "fastrand",
1582
+ "getrandom 0.3.4",
1583
+ "once_cell",
1584
+ "rustix",
1585
+ "windows-sys",
1586
+ ]
1587
+
1588
+ [[package]]
1589
+ name = "thiserror"
1590
+ version = "2.0.17"
1591
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1592
+ checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8"
1593
+ dependencies = [
1594
+ "thiserror-impl",
1595
+ ]
1596
+
1597
+ [[package]]
1598
+ name = "thiserror-impl"
1599
+ version = "2.0.17"
1600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1601
+ checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913"
1602
+ dependencies = [
1603
+ "proc-macro2",
1604
+ "quote",
1605
+ "syn",
1606
+ ]
1607
+
1608
+ [[package]]
1609
+ name = "thrift"
1610
+ version = "0.17.0"
1611
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1612
+ checksum = "7e54bc85fc7faa8bc175c4bab5b92ba8d9a3ce893d0e9f42cc455c8ab16a9e09"
1613
+ dependencies = [
1614
+ "byteorder",
1615
+ "integer-encoding",
1616
+ "ordered-float",
1617
+ ]
1618
+
1619
+ [[package]]
1620
+ name = "tiny-keccak"
1621
+ version = "2.0.2"
1622
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1623
+ checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
1624
+ dependencies = [
1625
+ "crunchy",
1626
+ ]
1627
+
1628
+ [[package]]
1629
+ name = "tinytemplate"
1630
+ version = "1.2.1"
1631
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1632
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
1633
+ dependencies = [
1634
+ "serde",
1635
+ "serde_json",
1636
+ ]
1637
+
1638
+ [[package]]
1639
+ name = "tokio"
1640
+ version = "1.48.0"
1641
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1642
+ checksum = "ff360e02eab121e0bc37a2d3b4d4dc622e6eda3a8e5253d5435ecf5bd4c68408"
1643
+ dependencies = [
1644
+ "pin-project-lite",
1645
+ ]
1646
+
1647
+ [[package]]
1648
+ name = "twox-hash"
1649
+ version = "2.1.2"
1650
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1651
+ checksum = "9ea3136b675547379c4bd395ca6b938e5ad3c3d20fad76e7fe85f9e0d011419c"
1652
+
1653
+ [[package]]
1654
+ name = "unicode-ident"
1655
+ version = "1.0.22"
1656
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1657
+ checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
1658
+
1659
+ [[package]]
1660
+ name = "unindent"
1661
+ version = "0.2.4"
1662
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1663
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
1664
+
1665
+ [[package]]
1666
+ name = "version_check"
1667
+ version = "0.9.5"
1668
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1669
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
1670
+
1671
+ [[package]]
1672
+ name = "walkdir"
1673
+ version = "2.5.0"
1674
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1675
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
1676
+ dependencies = [
1677
+ "same-file",
1678
+ "winapi-util",
1679
+ ]
1680
+
1681
+ [[package]]
1682
+ name = "wasi"
1683
+ version = "0.11.1+wasi-snapshot-preview1"
1684
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1685
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1686
+
1687
+ [[package]]
1688
+ name = "wasip2"
1689
+ version = "1.0.1+wasi-0.2.4"
1690
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1691
+ checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
1692
+ dependencies = [
1693
+ "wit-bindgen",
1694
+ ]
1695
+
1696
+ [[package]]
1697
+ name = "wasm-bindgen"
1698
+ version = "0.2.105"
1699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1700
+ checksum = "da95793dfc411fbbd93f5be7715b0578ec61fe87cb1a42b12eb625caa5c5ea60"
1701
+ dependencies = [
1702
+ "cfg-if",
1703
+ "once_cell",
1704
+ "rustversion",
1705
+ "wasm-bindgen-macro",
1706
+ "wasm-bindgen-shared",
1707
+ ]
1708
+
1709
+ [[package]]
1710
+ name = "wasm-bindgen-macro"
1711
+ version = "0.2.105"
1712
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1713
+ checksum = "04264334509e04a7bf8690f2384ef5265f05143a4bff3889ab7a3269adab59c2"
1714
+ dependencies = [
1715
+ "quote",
1716
+ "wasm-bindgen-macro-support",
1717
+ ]
1718
+
1719
+ [[package]]
1720
+ name = "wasm-bindgen-macro-support"
1721
+ version = "0.2.105"
1722
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1723
+ checksum = "420bc339d9f322e562942d52e115d57e950d12d88983a14c79b86859ee6c7ebc"
1724
+ dependencies = [
1725
+ "bumpalo",
1726
+ "proc-macro2",
1727
+ "quote",
1728
+ "syn",
1729
+ "wasm-bindgen-shared",
1730
+ ]
1731
+
1732
+ [[package]]
1733
+ name = "wasm-bindgen-shared"
1734
+ version = "0.2.105"
1735
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1736
+ checksum = "76f218a38c84bcb33c25ec7059b07847d465ce0e0a76b995e134a45adcb6af76"
1737
+ dependencies = [
1738
+ "unicode-ident",
1739
+ ]
1740
+
1741
+ [[package]]
1742
+ name = "web-sys"
1743
+ version = "0.3.82"
1744
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1745
+ checksum = "3a1f95c0d03a47f4ae1f7a64643a6bb97465d9b740f0fa8f90ea33915c99a9a1"
1746
+ dependencies = [
1747
+ "js-sys",
1748
+ "wasm-bindgen",
1749
+ ]
1750
+
1751
+ [[package]]
1752
+ name = "winapi-util"
1753
+ version = "0.1.11"
1754
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1755
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
1756
+ dependencies = [
1757
+ "windows-sys",
1758
+ ]
1759
+
1760
+ [[package]]
1761
+ name = "windows-core"
1762
+ version = "0.62.2"
1763
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1764
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
1765
+ dependencies = [
1766
+ "windows-implement",
1767
+ "windows-interface",
1768
+ "windows-link",
1769
+ "windows-result",
1770
+ "windows-strings",
1771
+ ]
1772
+
1773
+ [[package]]
1774
+ name = "windows-implement"
1775
+ version = "0.60.2"
1776
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1777
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
1778
+ dependencies = [
1779
+ "proc-macro2",
1780
+ "quote",
1781
+ "syn",
1782
+ ]
1783
+
1784
+ [[package]]
1785
+ name = "windows-interface"
1786
+ version = "0.59.3"
1787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1788
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
1789
+ dependencies = [
1790
+ "proc-macro2",
1791
+ "quote",
1792
+ "syn",
1793
+ ]
1794
+
1795
+ [[package]]
1796
+ name = "windows-link"
1797
+ version = "0.2.1"
1798
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1799
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1800
+
1801
+ [[package]]
1802
+ name = "windows-result"
1803
+ version = "0.4.1"
1804
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1805
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
1806
+ dependencies = [
1807
+ "windows-link",
1808
+ ]
1809
+
1810
+ [[package]]
1811
+ name = "windows-strings"
1812
+ version = "0.5.1"
1813
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1814
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
1815
+ dependencies = [
1816
+ "windows-link",
1817
+ ]
1818
+
1819
+ [[package]]
1820
+ name = "windows-sys"
1821
+ version = "0.61.2"
1822
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1823
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1824
+ dependencies = [
1825
+ "windows-link",
1826
+ ]
1827
+
1828
+ [[package]]
1829
+ name = "wit-bindgen"
1830
+ version = "0.46.0"
1831
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1832
+ checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
1833
+
1834
+ [[package]]
1835
+ name = "wyz"
1836
+ version = "0.5.1"
1837
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1838
+ checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
1839
+ dependencies = [
1840
+ "tap",
1841
+ ]
1842
+
1843
+ [[package]]
1844
+ name = "zerocopy"
1845
+ version = "0.8.27"
1846
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1847
+ checksum = "0894878a5fa3edfd6da3f88c4805f4c8558e2b996227a3d864f47fe11e38282c"
1848
+ dependencies = [
1849
+ "zerocopy-derive",
1850
+ ]
1851
+
1852
+ [[package]]
1853
+ name = "zerocopy-derive"
1854
+ version = "0.8.27"
1855
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1856
+ checksum = "88d2b8d9c68ad2b9e4340d7832716a4d21a22a1154777ad56ea55c51a9cf3831"
1857
+ dependencies = [
1858
+ "proc-macro2",
1859
+ "quote",
1860
+ "syn",
1861
+ ]
1862
+
1863
+ [[package]]
1864
+ name = "zlib-rs"
1865
+ version = "0.5.2"
1866
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1867
+ checksum = "2f06ae92f42f5e5c42443fd094f245eb656abf56dd7cce9b8b263236565e00f2"
1868
+
1869
+ [[package]]
1870
+ name = "zstd"
1871
+ version = "0.13.3"
1872
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1873
+ checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
1874
+ dependencies = [
1875
+ "zstd-safe",
1876
+ ]
1877
+
1878
+ [[package]]
1879
+ name = "zstd-safe"
1880
+ version = "7.2.4"
1881
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1882
+ checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
1883
+ dependencies = [
1884
+ "zstd-sys",
1885
+ ]
1886
+
1887
+ [[package]]
1888
+ name = "zstd-sys"
1889
+ version = "2.0.16+zstd.1.5.7"
1890
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1891
+ checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748"
1892
+ dependencies = [
1893
+ "cc",
1894
+ "pkg-config",
1895
+ ]