arro3-compute 0.2.0b2__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 (57) hide show
  1. arro3_compute-0.2.0b2/Cargo.lock +1626 -0
  2. arro3_compute-0.2.0b2/Cargo.toml +19 -0
  3. arro3_compute-0.2.0b2/PKG-INFO +18 -0
  4. arro3_compute-0.2.0b2/arro3-compute/Cargo.toml +28 -0
  5. arro3_compute-0.2.0b2/arro3-compute/README.md +1 -0
  6. arro3_compute-0.2.0b2/arro3-compute/python/arro3/compute/__init__.py +4 -0
  7. arro3_compute-0.2.0b2/arro3-compute/python/arro3/compute/_compute.pyi +89 -0
  8. arro3_compute-0.2.0b2/arro3-compute/python/arro3/compute/py.typed +0 -0
  9. arro3_compute-0.2.0b2/arro3-compute/src/cast.rs +47 -0
  10. arro3_compute-0.2.0b2/arro3-compute/src/concat.rs +11 -0
  11. arro3_compute-0.2.0b2/arro3-compute/src/lib.rs +29 -0
  12. arro3_compute-0.2.0b2/arro3-compute/src/list_flatten.rs +79 -0
  13. arro3_compute-0.2.0b2/arro3-compute/src/list_offsets.rs +93 -0
  14. arro3_compute-0.2.0b2/arro3-compute/src/struct_field.rs +60 -0
  15. arro3_compute-0.2.0b2/arro3-compute/src/take.rs +12 -0
  16. arro3_compute-0.2.0b2/pyo3-arrow/Cargo.toml +28 -0
  17. arro3_compute-0.2.0b2/pyo3-arrow/README.md +179 -0
  18. arro3_compute-0.2.0b2/pyo3-arrow/src/array.rs +317 -0
  19. arro3_compute-0.2.0b2/pyo3-arrow/src/array_reader.rs +218 -0
  20. arro3_compute-0.2.0b2/pyo3-arrow/src/chunked.rs +412 -0
  21. arro3_compute-0.2.0b2/pyo3-arrow/src/datatypes.rs +683 -0
  22. arro3_compute-0.2.0b2/pyo3-arrow/src/error.rs +52 -0
  23. arro3_compute-0.2.0b2/pyo3-arrow/src/ffi/from_python/array.rs +17 -0
  24. arro3_compute-0.2.0b2/pyo3-arrow/src/ffi/from_python/array_reader.rs +11 -0
  25. arro3_compute-0.2.0b2/pyo3-arrow/src/ffi/from_python/chunked.rs +13 -0
  26. arro3_compute-0.2.0b2/pyo3-arrow/src/ffi/from_python/datatypes.rs +12 -0
  27. arro3_compute-0.2.0b2/pyo3-arrow/src/ffi/from_python/ffi_stream.rs +104 -0
  28. arro3_compute-0.2.0b2/pyo3-arrow/src/ffi/from_python/field.rs +11 -0
  29. arro3_compute-0.2.0b2/pyo3-arrow/src/ffi/from_python/input.rs +34 -0
  30. arro3_compute-0.2.0b2/pyo3-arrow/src/ffi/from_python/mod.rs +12 -0
  31. arro3_compute-0.2.0b2/pyo3-arrow/src/ffi/from_python/record_batch.rs +17 -0
  32. arro3_compute-0.2.0b2/pyo3-arrow/src/ffi/from_python/record_batch_reader.rs +13 -0
  33. arro3_compute-0.2.0b2/pyo3-arrow/src/ffi/from_python/schema.rs +13 -0
  34. arro3_compute-0.2.0b2/pyo3-arrow/src/ffi/from_python/table.rs +11 -0
  35. arro3_compute-0.2.0b2/pyo3-arrow/src/ffi/from_python/utils.rs +144 -0
  36. arro3_compute-0.2.0b2/pyo3-arrow/src/ffi/mod.rs +6 -0
  37. arro3_compute-0.2.0b2/pyo3-arrow/src/ffi/to_python/chunked.rs +68 -0
  38. arro3_compute-0.2.0b2/pyo3-arrow/src/ffi/to_python/ffi_stream.rs +159 -0
  39. arro3_compute-0.2.0b2/pyo3-arrow/src/ffi/to_python/mod.rs +6 -0
  40. arro3_compute-0.2.0b2/pyo3-arrow/src/ffi/to_python/nanoarrow.rs +25 -0
  41. arro3_compute-0.2.0b2/pyo3-arrow/src/ffi/to_python/utils.rs +55 -0
  42. arro3_compute-0.2.0b2/pyo3-arrow/src/field.rs +236 -0
  43. arro3_compute-0.2.0b2/pyo3-arrow/src/input.rs +175 -0
  44. arro3_compute-0.2.0b2/pyo3-arrow/src/interop/mod.rs +1 -0
  45. arro3_compute-0.2.0b2/pyo3-arrow/src/interop/numpy/from_numpy.rs +54 -0
  46. arro3_compute-0.2.0b2/pyo3-arrow/src/interop/numpy/mod.rs +2 -0
  47. arro3_compute-0.2.0b2/pyo3-arrow/src/interop/numpy/to_numpy.rs +127 -0
  48. arro3_compute-0.2.0b2/pyo3-arrow/src/lib.rs +26 -0
  49. arro3_compute-0.2.0b2/pyo3-arrow/src/record_batch.rs +411 -0
  50. arro3_compute-0.2.0b2/pyo3-arrow/src/record_batch_reader.rs +243 -0
  51. arro3_compute-0.2.0b2/pyo3-arrow/src/schema.rs +282 -0
  52. arro3_compute-0.2.0b2/pyo3-arrow/src/table.rs +544 -0
  53. arro3_compute-0.2.0b2/pyo3-arrow/src/utils.rs +17 -0
  54. arro3_compute-0.2.0b2/pyproject.toml +26 -0
  55. arro3_compute-0.2.0b2/python/arro3/compute/__init__.py +4 -0
  56. arro3_compute-0.2.0b2/python/arro3/compute/_compute.pyi +89 -0
  57. arro3_compute-0.2.0b2/python/arro3/compute/py.typed +0 -0
@@ -0,0 +1,1626 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 3
4
+
5
+ [[package]]
6
+ name = "adler"
7
+ version = "1.0.2"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
10
+
11
+ [[package]]
12
+ name = "ahash"
13
+ version = "0.8.11"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
16
+ dependencies = [
17
+ "cfg-if",
18
+ "const-random",
19
+ "getrandom",
20
+ "once_cell",
21
+ "version_check",
22
+ "zerocopy",
23
+ ]
24
+
25
+ [[package]]
26
+ name = "aho-corasick"
27
+ version = "1.1.3"
28
+ source = "registry+https://github.com/rust-lang/crates.io-index"
29
+ checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
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 = "android-tzdata"
51
+ version = "0.1.1"
52
+ source = "registry+https://github.com/rust-lang/crates.io-index"
53
+ checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
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 = "arro3-compute"
66
+ version = "0.2.0-beta.2"
67
+ dependencies = [
68
+ "arrow",
69
+ "arrow-array",
70
+ "arrow-buffer",
71
+ "arrow-cast",
72
+ "arrow-schema",
73
+ "arrow-select",
74
+ "pyo3",
75
+ "pyo3-arrow",
76
+ "thiserror",
77
+ ]
78
+
79
+ [[package]]
80
+ name = "arro3-core"
81
+ version = "0.2.0-beta.2"
82
+ dependencies = [
83
+ "arrow-array",
84
+ "arrow-buffer",
85
+ "arrow-schema",
86
+ "pyo3",
87
+ "pyo3-arrow",
88
+ ]
89
+
90
+ [[package]]
91
+ name = "arro3-io"
92
+ version = "0.2.0-beta.2"
93
+ dependencies = [
94
+ "arrow",
95
+ "arrow-array",
96
+ "arrow-buffer",
97
+ "arrow-csv",
98
+ "arrow-ipc",
99
+ "arrow-schema",
100
+ "parquet",
101
+ "pyo3",
102
+ "pyo3-arrow",
103
+ "pyo3-file",
104
+ "thiserror",
105
+ ]
106
+
107
+ [[package]]
108
+ name = "arrow"
109
+ version = "52.1.0"
110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
111
+ checksum = "6127ea5e585a12ec9f742232442828ebaf264dfa5eefdd71282376c599562b77"
112
+ dependencies = [
113
+ "arrow-arith",
114
+ "arrow-array",
115
+ "arrow-buffer",
116
+ "arrow-cast",
117
+ "arrow-csv",
118
+ "arrow-data",
119
+ "arrow-ipc",
120
+ "arrow-json",
121
+ "arrow-ord",
122
+ "arrow-row",
123
+ "arrow-schema",
124
+ "arrow-select",
125
+ "arrow-string",
126
+ ]
127
+
128
+ [[package]]
129
+ name = "arrow-arith"
130
+ version = "52.1.0"
131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
132
+ checksum = "7add7f39210b7d726e2a8efc0083e7bf06e8f2d15bdb4896b564dce4410fbf5d"
133
+ dependencies = [
134
+ "arrow-array",
135
+ "arrow-buffer",
136
+ "arrow-data",
137
+ "arrow-schema",
138
+ "chrono",
139
+ "half",
140
+ "num",
141
+ ]
142
+
143
+ [[package]]
144
+ name = "arrow-array"
145
+ version = "52.1.0"
146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
147
+ checksum = "81c16ec702d3898c2f5cfdc148443c6cd7dbe5bac28399859eb0a3d38f072827"
148
+ dependencies = [
149
+ "ahash",
150
+ "arrow-buffer",
151
+ "arrow-data",
152
+ "arrow-schema",
153
+ "chrono",
154
+ "half",
155
+ "hashbrown",
156
+ "num",
157
+ ]
158
+
159
+ [[package]]
160
+ name = "arrow-buffer"
161
+ version = "52.1.0"
162
+ source = "registry+https://github.com/rust-lang/crates.io-index"
163
+ checksum = "cae6970bab043c4fbc10aee1660ceb5b306d0c42c8cc5f6ae564efcd9759b663"
164
+ dependencies = [
165
+ "bytes",
166
+ "half",
167
+ "num",
168
+ ]
169
+
170
+ [[package]]
171
+ name = "arrow-cast"
172
+ version = "52.1.0"
173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
174
+ checksum = "1c7ef44f26ef4f8edc392a048324ed5d757ad09135eff6d5509e6450d39e0398"
175
+ dependencies = [
176
+ "arrow-array",
177
+ "arrow-buffer",
178
+ "arrow-data",
179
+ "arrow-schema",
180
+ "arrow-select",
181
+ "atoi",
182
+ "base64",
183
+ "chrono",
184
+ "half",
185
+ "lexical-core",
186
+ "num",
187
+ "ryu",
188
+ ]
189
+
190
+ [[package]]
191
+ name = "arrow-csv"
192
+ version = "52.1.0"
193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
194
+ checksum = "5f843490bd258c5182b66e888161bb6f198f49f3792f7c7f98198b924ae0f564"
195
+ dependencies = [
196
+ "arrow-array",
197
+ "arrow-buffer",
198
+ "arrow-cast",
199
+ "arrow-data",
200
+ "arrow-schema",
201
+ "chrono",
202
+ "csv",
203
+ "csv-core",
204
+ "lazy_static",
205
+ "lexical-core",
206
+ "regex",
207
+ ]
208
+
209
+ [[package]]
210
+ name = "arrow-data"
211
+ version = "52.1.0"
212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
213
+ checksum = "a769666ffac256dd301006faca1ca553d0ae7cffcf4cd07095f73f95eb226514"
214
+ dependencies = [
215
+ "arrow-buffer",
216
+ "arrow-schema",
217
+ "half",
218
+ "num",
219
+ ]
220
+
221
+ [[package]]
222
+ name = "arrow-ipc"
223
+ version = "52.1.0"
224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
225
+ checksum = "dbf9c3fb57390a1af0b7bb3b5558c1ee1f63905f3eccf49ae7676a8d1e6e5a72"
226
+ dependencies = [
227
+ "arrow-array",
228
+ "arrow-buffer",
229
+ "arrow-cast",
230
+ "arrow-data",
231
+ "arrow-schema",
232
+ "flatbuffers",
233
+ ]
234
+
235
+ [[package]]
236
+ name = "arrow-json"
237
+ version = "52.1.0"
238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
239
+ checksum = "654e7f3724176b66ddfacba31af397c48e106fbe4d281c8144e7d237df5acfd7"
240
+ dependencies = [
241
+ "arrow-array",
242
+ "arrow-buffer",
243
+ "arrow-cast",
244
+ "arrow-data",
245
+ "arrow-schema",
246
+ "chrono",
247
+ "half",
248
+ "indexmap",
249
+ "lexical-core",
250
+ "num",
251
+ "serde",
252
+ "serde_json",
253
+ ]
254
+
255
+ [[package]]
256
+ name = "arrow-ord"
257
+ version = "52.1.0"
258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
259
+ checksum = "e8008370e624e8e3c68174faaf793540287106cfda8ad1da862fdc53d8e096b4"
260
+ dependencies = [
261
+ "arrow-array",
262
+ "arrow-buffer",
263
+ "arrow-data",
264
+ "arrow-schema",
265
+ "arrow-select",
266
+ "half",
267
+ "num",
268
+ ]
269
+
270
+ [[package]]
271
+ name = "arrow-row"
272
+ version = "52.1.0"
273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
274
+ checksum = "ca5e3a6b7fda8d9fe03f3b18a2d946354ea7f3c8e4076dbdb502ad50d9d44824"
275
+ dependencies = [
276
+ "ahash",
277
+ "arrow-array",
278
+ "arrow-buffer",
279
+ "arrow-data",
280
+ "arrow-schema",
281
+ "half",
282
+ "hashbrown",
283
+ ]
284
+
285
+ [[package]]
286
+ name = "arrow-schema"
287
+ version = "52.1.0"
288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
289
+ checksum = "dab1c12b40e29d9f3b699e0203c2a73ba558444c05e388a4377208f8f9c97eee"
290
+ dependencies = [
291
+ "bitflags 2.6.0",
292
+ ]
293
+
294
+ [[package]]
295
+ name = "arrow-select"
296
+ version = "52.1.0"
297
+ source = "registry+https://github.com/rust-lang/crates.io-index"
298
+ checksum = "e80159088ffe8c48965cb9b1a7c968b2729f29f37363df7eca177fc3281fe7c3"
299
+ dependencies = [
300
+ "ahash",
301
+ "arrow-array",
302
+ "arrow-buffer",
303
+ "arrow-data",
304
+ "arrow-schema",
305
+ "num",
306
+ ]
307
+
308
+ [[package]]
309
+ name = "arrow-string"
310
+ version = "52.1.0"
311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
312
+ checksum = "0fd04a6ea7de183648edbcb7a6dd925bbd04c210895f6384c780e27a9b54afcd"
313
+ dependencies = [
314
+ "arrow-array",
315
+ "arrow-buffer",
316
+ "arrow-data",
317
+ "arrow-schema",
318
+ "arrow-select",
319
+ "memchr",
320
+ "num",
321
+ "regex",
322
+ "regex-syntax",
323
+ ]
324
+
325
+ [[package]]
326
+ name = "atoi"
327
+ version = "2.0.0"
328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
329
+ checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528"
330
+ dependencies = [
331
+ "num-traits",
332
+ ]
333
+
334
+ [[package]]
335
+ name = "autocfg"
336
+ version = "1.3.0"
337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
338
+ checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0"
339
+
340
+ [[package]]
341
+ name = "base64"
342
+ version = "0.22.1"
343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
344
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
345
+
346
+ [[package]]
347
+ name = "bitflags"
348
+ version = "1.3.2"
349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
350
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
351
+
352
+ [[package]]
353
+ name = "bitflags"
354
+ version = "2.6.0"
355
+ source = "registry+https://github.com/rust-lang/crates.io-index"
356
+ checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de"
357
+
358
+ [[package]]
359
+ name = "brotli"
360
+ version = "6.0.0"
361
+ source = "registry+https://github.com/rust-lang/crates.io-index"
362
+ checksum = "74f7971dbd9326d58187408ab83117d8ac1bb9c17b085fdacd1cf2f598719b6b"
363
+ dependencies = [
364
+ "alloc-no-stdlib",
365
+ "alloc-stdlib",
366
+ "brotli-decompressor",
367
+ ]
368
+
369
+ [[package]]
370
+ name = "brotli-decompressor"
371
+ version = "4.0.1"
372
+ source = "registry+https://github.com/rust-lang/crates.io-index"
373
+ checksum = "9a45bd2e4095a8b518033b128020dd4a55aab1c0a381ba4404a472630f4bc362"
374
+ dependencies = [
375
+ "alloc-no-stdlib",
376
+ "alloc-stdlib",
377
+ ]
378
+
379
+ [[package]]
380
+ name = "bumpalo"
381
+ version = "3.16.0"
382
+ source = "registry+https://github.com/rust-lang/crates.io-index"
383
+ checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
384
+
385
+ [[package]]
386
+ name = "bytecount"
387
+ version = "0.6.8"
388
+ source = "registry+https://github.com/rust-lang/crates.io-index"
389
+ checksum = "5ce89b21cab1437276d2650d57e971f9d548a2d9037cc231abdc0562b97498ce"
390
+
391
+ [[package]]
392
+ name = "byteorder"
393
+ version = "1.5.0"
394
+ source = "registry+https://github.com/rust-lang/crates.io-index"
395
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
396
+
397
+ [[package]]
398
+ name = "bytes"
399
+ version = "1.6.1"
400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
401
+ checksum = "a12916984aab3fa6e39d655a33e09c0071eb36d6ab3aea5c2d78551f1df6d952"
402
+
403
+ [[package]]
404
+ name = "camino"
405
+ version = "1.1.7"
406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
407
+ checksum = "e0ec6b951b160caa93cc0c7b209e5a3bff7aae9062213451ac99493cd844c239"
408
+ dependencies = [
409
+ "serde",
410
+ ]
411
+
412
+ [[package]]
413
+ name = "cargo-platform"
414
+ version = "0.1.8"
415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
416
+ checksum = "24b1f0365a6c6bb4020cd05806fd0d33c44d38046b8bd7f0e40814b9763cabfc"
417
+ dependencies = [
418
+ "serde",
419
+ ]
420
+
421
+ [[package]]
422
+ name = "cargo_metadata"
423
+ version = "0.14.2"
424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
425
+ checksum = "4acbb09d9ee8e23699b9634375c72795d095bf268439da88562cf9b501f181fa"
426
+ dependencies = [
427
+ "camino",
428
+ "cargo-platform",
429
+ "semver",
430
+ "serde",
431
+ "serde_json",
432
+ ]
433
+
434
+ [[package]]
435
+ name = "cc"
436
+ version = "1.1.6"
437
+ source = "registry+https://github.com/rust-lang/crates.io-index"
438
+ checksum = "2aba8f4e9906c7ce3c73463f62a7f0c65183ada1a2d47e397cc8810827f9694f"
439
+ dependencies = [
440
+ "jobserver",
441
+ "libc",
442
+ ]
443
+
444
+ [[package]]
445
+ name = "cfg-if"
446
+ version = "1.0.0"
447
+ source = "registry+https://github.com/rust-lang/crates.io-index"
448
+ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
449
+
450
+ [[package]]
451
+ name = "chrono"
452
+ version = "0.4.38"
453
+ source = "registry+https://github.com/rust-lang/crates.io-index"
454
+ checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401"
455
+ dependencies = [
456
+ "android-tzdata",
457
+ "iana-time-zone",
458
+ "num-traits",
459
+ "windows-targets",
460
+ ]
461
+
462
+ [[package]]
463
+ name = "const-random"
464
+ version = "0.1.18"
465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
466
+ checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359"
467
+ dependencies = [
468
+ "const-random-macro",
469
+ ]
470
+
471
+ [[package]]
472
+ name = "const-random-macro"
473
+ version = "0.1.16"
474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
475
+ checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e"
476
+ dependencies = [
477
+ "getrandom",
478
+ "once_cell",
479
+ "tiny-keccak",
480
+ ]
481
+
482
+ [[package]]
483
+ name = "core-foundation-sys"
484
+ version = "0.8.6"
485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
486
+ checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f"
487
+
488
+ [[package]]
489
+ name = "crc32fast"
490
+ version = "1.4.2"
491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
492
+ checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3"
493
+ dependencies = [
494
+ "cfg-if",
495
+ ]
496
+
497
+ [[package]]
498
+ name = "crunchy"
499
+ version = "0.2.2"
500
+ source = "registry+https://github.com/rust-lang/crates.io-index"
501
+ checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7"
502
+
503
+ [[package]]
504
+ name = "csv"
505
+ version = "1.3.0"
506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
507
+ checksum = "ac574ff4d437a7b5ad237ef331c17ccca63c46479e5b5453eb8e10bb99a759fe"
508
+ dependencies = [
509
+ "csv-core",
510
+ "itoa",
511
+ "ryu",
512
+ "serde",
513
+ ]
514
+
515
+ [[package]]
516
+ name = "csv-core"
517
+ version = "0.1.11"
518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
519
+ checksum = "5efa2b3d7902f4b634a20cae3c9c4e6209dc4779feb6863329607560143efa70"
520
+ dependencies = [
521
+ "memchr",
522
+ ]
523
+
524
+ [[package]]
525
+ name = "equivalent"
526
+ version = "1.0.1"
527
+ source = "registry+https://github.com/rust-lang/crates.io-index"
528
+ checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
529
+
530
+ [[package]]
531
+ name = "errno"
532
+ version = "0.3.9"
533
+ source = "registry+https://github.com/rust-lang/crates.io-index"
534
+ checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba"
535
+ dependencies = [
536
+ "libc",
537
+ "windows-sys",
538
+ ]
539
+
540
+ [[package]]
541
+ name = "error-chain"
542
+ version = "0.12.4"
543
+ source = "registry+https://github.com/rust-lang/crates.io-index"
544
+ checksum = "2d2f06b9cac1506ece98fe3231e3cc9c4410ec3d5b1f24ae1c8946f0742cdefc"
545
+ dependencies = [
546
+ "version_check",
547
+ ]
548
+
549
+ [[package]]
550
+ name = "fastrand"
551
+ version = "2.1.0"
552
+ source = "registry+https://github.com/rust-lang/crates.io-index"
553
+ checksum = "9fc0510504f03c51ada170672ac806f1f105a88aa97a5281117e1ddc3368e51a"
554
+
555
+ [[package]]
556
+ name = "flatbuffers"
557
+ version = "24.3.25"
558
+ source = "registry+https://github.com/rust-lang/crates.io-index"
559
+ checksum = "8add37afff2d4ffa83bc748a70b4b1370984f6980768554182424ef71447c35f"
560
+ dependencies = [
561
+ "bitflags 1.3.2",
562
+ "rustc_version",
563
+ ]
564
+
565
+ [[package]]
566
+ name = "flate2"
567
+ version = "1.0.30"
568
+ source = "registry+https://github.com/rust-lang/crates.io-index"
569
+ checksum = "5f54427cfd1c7829e2a139fcefea601bf088ebca651d2bf53ebc600eac295dae"
570
+ dependencies = [
571
+ "crc32fast",
572
+ "miniz_oxide",
573
+ ]
574
+
575
+ [[package]]
576
+ name = "getrandom"
577
+ version = "0.2.15"
578
+ source = "registry+https://github.com/rust-lang/crates.io-index"
579
+ checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
580
+ dependencies = [
581
+ "cfg-if",
582
+ "libc",
583
+ "wasi",
584
+ ]
585
+
586
+ [[package]]
587
+ name = "glob"
588
+ version = "0.3.1"
589
+ source = "registry+https://github.com/rust-lang/crates.io-index"
590
+ checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
591
+
592
+ [[package]]
593
+ name = "half"
594
+ version = "2.4.1"
595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
596
+ checksum = "6dd08c532ae367adf81c312a4580bc67f1d0fe8bc9c460520283f4c0ff277888"
597
+ dependencies = [
598
+ "cfg-if",
599
+ "crunchy",
600
+ "num-traits",
601
+ ]
602
+
603
+ [[package]]
604
+ name = "hashbrown"
605
+ version = "0.14.5"
606
+ source = "registry+https://github.com/rust-lang/crates.io-index"
607
+ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
608
+
609
+ [[package]]
610
+ name = "heck"
611
+ version = "0.4.1"
612
+ source = "registry+https://github.com/rust-lang/crates.io-index"
613
+ checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
614
+
615
+ [[package]]
616
+ name = "iana-time-zone"
617
+ version = "0.1.60"
618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
619
+ checksum = "e7ffbb5a1b541ea2561f8c41c087286cc091e21e556a4f09a8f6cbf17b69b141"
620
+ dependencies = [
621
+ "android_system_properties",
622
+ "core-foundation-sys",
623
+ "iana-time-zone-haiku",
624
+ "js-sys",
625
+ "wasm-bindgen",
626
+ "windows-core",
627
+ ]
628
+
629
+ [[package]]
630
+ name = "iana-time-zone-haiku"
631
+ version = "0.1.2"
632
+ source = "registry+https://github.com/rust-lang/crates.io-index"
633
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
634
+ dependencies = [
635
+ "cc",
636
+ ]
637
+
638
+ [[package]]
639
+ name = "indexmap"
640
+ version = "2.2.6"
641
+ source = "registry+https://github.com/rust-lang/crates.io-index"
642
+ checksum = "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26"
643
+ dependencies = [
644
+ "equivalent",
645
+ "hashbrown",
646
+ ]
647
+
648
+ [[package]]
649
+ name = "indoc"
650
+ version = "2.0.5"
651
+ source = "registry+https://github.com/rust-lang/crates.io-index"
652
+ checksum = "b248f5224d1d606005e02c97f5aa4e88eeb230488bcc03bc9ca4d7991399f2b5"
653
+
654
+ [[package]]
655
+ name = "integer-encoding"
656
+ version = "3.0.4"
657
+ source = "registry+https://github.com/rust-lang/crates.io-index"
658
+ checksum = "8bb03732005da905c88227371639bf1ad885cc712789c011c31c5fb3ab3ccf02"
659
+
660
+ [[package]]
661
+ name = "itoa"
662
+ version = "1.0.11"
663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
664
+ checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
665
+
666
+ [[package]]
667
+ name = "jobserver"
668
+ version = "0.1.32"
669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
670
+ checksum = "48d1dbcbbeb6a7fec7e059840aa538bd62aaccf972c7346c4d9d2059312853d0"
671
+ dependencies = [
672
+ "libc",
673
+ ]
674
+
675
+ [[package]]
676
+ name = "js-sys"
677
+ version = "0.3.69"
678
+ source = "registry+https://github.com/rust-lang/crates.io-index"
679
+ checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d"
680
+ dependencies = [
681
+ "wasm-bindgen",
682
+ ]
683
+
684
+ [[package]]
685
+ name = "lazy_static"
686
+ version = "1.5.0"
687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
688
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
689
+
690
+ [[package]]
691
+ name = "lexical-core"
692
+ version = "0.8.5"
693
+ source = "registry+https://github.com/rust-lang/crates.io-index"
694
+ checksum = "2cde5de06e8d4c2faabc400238f9ae1c74d5412d03a7bd067645ccbc47070e46"
695
+ dependencies = [
696
+ "lexical-parse-float",
697
+ "lexical-parse-integer",
698
+ "lexical-util",
699
+ "lexical-write-float",
700
+ "lexical-write-integer",
701
+ ]
702
+
703
+ [[package]]
704
+ name = "lexical-parse-float"
705
+ version = "0.8.5"
706
+ source = "registry+https://github.com/rust-lang/crates.io-index"
707
+ checksum = "683b3a5ebd0130b8fb52ba0bdc718cc56815b6a097e28ae5a6997d0ad17dc05f"
708
+ dependencies = [
709
+ "lexical-parse-integer",
710
+ "lexical-util",
711
+ "static_assertions",
712
+ ]
713
+
714
+ [[package]]
715
+ name = "lexical-parse-integer"
716
+ version = "0.8.6"
717
+ source = "registry+https://github.com/rust-lang/crates.io-index"
718
+ checksum = "6d0994485ed0c312f6d965766754ea177d07f9c00c9b82a5ee62ed5b47945ee9"
719
+ dependencies = [
720
+ "lexical-util",
721
+ "static_assertions",
722
+ ]
723
+
724
+ [[package]]
725
+ name = "lexical-util"
726
+ version = "0.8.5"
727
+ source = "registry+https://github.com/rust-lang/crates.io-index"
728
+ checksum = "5255b9ff16ff898710eb9eb63cb39248ea8a5bb036bea8085b1a767ff6c4e3fc"
729
+ dependencies = [
730
+ "static_assertions",
731
+ ]
732
+
733
+ [[package]]
734
+ name = "lexical-write-float"
735
+ version = "0.8.5"
736
+ source = "registry+https://github.com/rust-lang/crates.io-index"
737
+ checksum = "accabaa1c4581f05a3923d1b4cfd124c329352288b7b9da09e766b0668116862"
738
+ dependencies = [
739
+ "lexical-util",
740
+ "lexical-write-integer",
741
+ "static_assertions",
742
+ ]
743
+
744
+ [[package]]
745
+ name = "lexical-write-integer"
746
+ version = "0.8.5"
747
+ source = "registry+https://github.com/rust-lang/crates.io-index"
748
+ checksum = "e1b6f3d1f4422866b68192d62f77bc5c700bee84f3069f2469d7bc8c77852446"
749
+ dependencies = [
750
+ "lexical-util",
751
+ "static_assertions",
752
+ ]
753
+
754
+ [[package]]
755
+ name = "libc"
756
+ version = "0.2.155"
757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
758
+ checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c"
759
+
760
+ [[package]]
761
+ name = "libm"
762
+ version = "0.2.8"
763
+ source = "registry+https://github.com/rust-lang/crates.io-index"
764
+ checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058"
765
+
766
+ [[package]]
767
+ name = "linux-raw-sys"
768
+ version = "0.4.14"
769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
770
+ checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89"
771
+
772
+ [[package]]
773
+ name = "lock_api"
774
+ version = "0.4.12"
775
+ source = "registry+https://github.com/rust-lang/crates.io-index"
776
+ checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
777
+ dependencies = [
778
+ "autocfg",
779
+ "scopeguard",
780
+ ]
781
+
782
+ [[package]]
783
+ name = "log"
784
+ version = "0.4.22"
785
+ source = "registry+https://github.com/rust-lang/crates.io-index"
786
+ checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
787
+
788
+ [[package]]
789
+ name = "lz4_flex"
790
+ version = "0.11.3"
791
+ source = "registry+https://github.com/rust-lang/crates.io-index"
792
+ checksum = "75761162ae2b0e580d7e7c390558127e5f01b4194debd6221fd8c207fc80e3f5"
793
+ dependencies = [
794
+ "twox-hash",
795
+ ]
796
+
797
+ [[package]]
798
+ name = "matrixmultiply"
799
+ version = "0.3.8"
800
+ source = "registry+https://github.com/rust-lang/crates.io-index"
801
+ checksum = "7574c1cf36da4798ab73da5b215bbf444f50718207754cb522201d78d1cd0ff2"
802
+ dependencies = [
803
+ "autocfg",
804
+ "rawpointer",
805
+ ]
806
+
807
+ [[package]]
808
+ name = "memchr"
809
+ version = "2.7.4"
810
+ source = "registry+https://github.com/rust-lang/crates.io-index"
811
+ checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
812
+
813
+ [[package]]
814
+ name = "memoffset"
815
+ version = "0.9.1"
816
+ source = "registry+https://github.com/rust-lang/crates.io-index"
817
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
818
+ dependencies = [
819
+ "autocfg",
820
+ ]
821
+
822
+ [[package]]
823
+ name = "miniz_oxide"
824
+ version = "0.7.4"
825
+ source = "registry+https://github.com/rust-lang/crates.io-index"
826
+ checksum = "b8a240ddb74feaf34a79a7add65a741f3167852fba007066dcac1ca548d89c08"
827
+ dependencies = [
828
+ "adler",
829
+ ]
830
+
831
+ [[package]]
832
+ name = "ndarray"
833
+ version = "0.15.6"
834
+ source = "registry+https://github.com/rust-lang/crates.io-index"
835
+ checksum = "adb12d4e967ec485a5f71c6311fe28158e9d6f4bc4a447b474184d0f91a8fa32"
836
+ dependencies = [
837
+ "matrixmultiply",
838
+ "num-complex",
839
+ "num-integer",
840
+ "num-traits",
841
+ "rawpointer",
842
+ ]
843
+
844
+ [[package]]
845
+ name = "num"
846
+ version = "0.4.3"
847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
848
+ checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23"
849
+ dependencies = [
850
+ "num-bigint",
851
+ "num-complex",
852
+ "num-integer",
853
+ "num-iter",
854
+ "num-rational",
855
+ "num-traits",
856
+ ]
857
+
858
+ [[package]]
859
+ name = "num-bigint"
860
+ version = "0.4.6"
861
+ source = "registry+https://github.com/rust-lang/crates.io-index"
862
+ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
863
+ dependencies = [
864
+ "num-integer",
865
+ "num-traits",
866
+ ]
867
+
868
+ [[package]]
869
+ name = "num-complex"
870
+ version = "0.4.6"
871
+ source = "registry+https://github.com/rust-lang/crates.io-index"
872
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
873
+ dependencies = [
874
+ "num-traits",
875
+ ]
876
+
877
+ [[package]]
878
+ name = "num-integer"
879
+ version = "0.1.46"
880
+ source = "registry+https://github.com/rust-lang/crates.io-index"
881
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
882
+ dependencies = [
883
+ "num-traits",
884
+ ]
885
+
886
+ [[package]]
887
+ name = "num-iter"
888
+ version = "0.1.45"
889
+ source = "registry+https://github.com/rust-lang/crates.io-index"
890
+ checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
891
+ dependencies = [
892
+ "autocfg",
893
+ "num-integer",
894
+ "num-traits",
895
+ ]
896
+
897
+ [[package]]
898
+ name = "num-rational"
899
+ version = "0.4.2"
900
+ source = "registry+https://github.com/rust-lang/crates.io-index"
901
+ checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
902
+ dependencies = [
903
+ "num-bigint",
904
+ "num-integer",
905
+ "num-traits",
906
+ ]
907
+
908
+ [[package]]
909
+ name = "num-traits"
910
+ version = "0.2.19"
911
+ source = "registry+https://github.com/rust-lang/crates.io-index"
912
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
913
+ dependencies = [
914
+ "autocfg",
915
+ "libm",
916
+ ]
917
+
918
+ [[package]]
919
+ name = "numpy"
920
+ version = "0.21.0"
921
+ source = "registry+https://github.com/rust-lang/crates.io-index"
922
+ checksum = "ec170733ca37175f5d75a5bea5911d6ff45d2cd52849ce98b685394e4f2f37f4"
923
+ dependencies = [
924
+ "half",
925
+ "libc",
926
+ "ndarray",
927
+ "num-complex",
928
+ "num-integer",
929
+ "num-traits",
930
+ "pyo3",
931
+ "rustc-hash",
932
+ ]
933
+
934
+ [[package]]
935
+ name = "once_cell"
936
+ version = "1.19.0"
937
+ source = "registry+https://github.com/rust-lang/crates.io-index"
938
+ checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
939
+
940
+ [[package]]
941
+ name = "ordered-float"
942
+ version = "2.10.1"
943
+ source = "registry+https://github.com/rust-lang/crates.io-index"
944
+ checksum = "68f19d67e5a2795c94e73e0bb1cc1a7edeb2e28efd39e2e1c9b7a40c1108b11c"
945
+ dependencies = [
946
+ "num-traits",
947
+ ]
948
+
949
+ [[package]]
950
+ name = "parking_lot"
951
+ version = "0.12.3"
952
+ source = "registry+https://github.com/rust-lang/crates.io-index"
953
+ checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
954
+ dependencies = [
955
+ "lock_api",
956
+ "parking_lot_core",
957
+ ]
958
+
959
+ [[package]]
960
+ name = "parking_lot_core"
961
+ version = "0.9.10"
962
+ source = "registry+https://github.com/rust-lang/crates.io-index"
963
+ checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
964
+ dependencies = [
965
+ "cfg-if",
966
+ "libc",
967
+ "redox_syscall",
968
+ "smallvec",
969
+ "windows-targets",
970
+ ]
971
+
972
+ [[package]]
973
+ name = "parquet"
974
+ version = "52.1.0"
975
+ source = "registry+https://github.com/rust-lang/crates.io-index"
976
+ checksum = "0f22ba0d95db56dde8685e3fadcb915cdaadda31ab8abbe3ff7f0ad1ef333267"
977
+ dependencies = [
978
+ "ahash",
979
+ "arrow-array",
980
+ "arrow-buffer",
981
+ "arrow-cast",
982
+ "arrow-data",
983
+ "arrow-ipc",
984
+ "arrow-schema",
985
+ "arrow-select",
986
+ "base64",
987
+ "brotli",
988
+ "bytes",
989
+ "chrono",
990
+ "flate2",
991
+ "half",
992
+ "hashbrown",
993
+ "lz4_flex",
994
+ "num",
995
+ "num-bigint",
996
+ "paste",
997
+ "seq-macro",
998
+ "snap",
999
+ "thrift",
1000
+ "twox-hash",
1001
+ "zstd",
1002
+ "zstd-sys",
1003
+ ]
1004
+
1005
+ [[package]]
1006
+ name = "paste"
1007
+ version = "1.0.15"
1008
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1009
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
1010
+
1011
+ [[package]]
1012
+ name = "pkg-config"
1013
+ version = "0.3.30"
1014
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1015
+ checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec"
1016
+
1017
+ [[package]]
1018
+ name = "portable-atomic"
1019
+ version = "1.7.0"
1020
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1021
+ checksum = "da544ee218f0d287a911e9c99a39a8c9bc8fcad3cb8db5959940044ecfc67265"
1022
+
1023
+ [[package]]
1024
+ name = "proc-macro2"
1025
+ version = "1.0.86"
1026
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1027
+ checksum = "5e719e8df665df0d1c8fbfd238015744736151d4445ec0836b8e628aae103b77"
1028
+ dependencies = [
1029
+ "unicode-ident",
1030
+ ]
1031
+
1032
+ [[package]]
1033
+ name = "pulldown-cmark"
1034
+ version = "0.9.6"
1035
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1036
+ checksum = "57206b407293d2bcd3af849ce869d52068623f19e1b5ff8e8778e3309439682b"
1037
+ dependencies = [
1038
+ "bitflags 2.6.0",
1039
+ "memchr",
1040
+ "unicase",
1041
+ ]
1042
+
1043
+ [[package]]
1044
+ name = "pyo3"
1045
+ version = "0.21.2"
1046
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1047
+ checksum = "a5e00b96a521718e08e03b1a622f01c8a8deb50719335de3f60b3b3950f069d8"
1048
+ dependencies = [
1049
+ "cfg-if",
1050
+ "indexmap",
1051
+ "indoc",
1052
+ "libc",
1053
+ "memoffset",
1054
+ "parking_lot",
1055
+ "portable-atomic",
1056
+ "pyo3-build-config",
1057
+ "pyo3-ffi",
1058
+ "pyo3-macros",
1059
+ "unindent",
1060
+ ]
1061
+
1062
+ [[package]]
1063
+ name = "pyo3-arrow"
1064
+ version = "0.1.0"
1065
+ dependencies = [
1066
+ "arrow",
1067
+ "arrow-array",
1068
+ "arrow-buffer",
1069
+ "arrow-schema",
1070
+ "arrow-select",
1071
+ "indexmap",
1072
+ "numpy",
1073
+ "pyo3",
1074
+ "thiserror",
1075
+ ]
1076
+
1077
+ [[package]]
1078
+ name = "pyo3-build-config"
1079
+ version = "0.21.2"
1080
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1081
+ checksum = "7883df5835fafdad87c0d888b266c8ec0f4c9ca48a5bed6bbb592e8dedee1b50"
1082
+ dependencies = [
1083
+ "once_cell",
1084
+ "target-lexicon",
1085
+ ]
1086
+
1087
+ [[package]]
1088
+ name = "pyo3-ffi"
1089
+ version = "0.21.2"
1090
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1091
+ checksum = "01be5843dc60b916ab4dad1dca6d20b9b4e6ddc8e15f50c47fe6d85f1fb97403"
1092
+ dependencies = [
1093
+ "libc",
1094
+ "pyo3-build-config",
1095
+ ]
1096
+
1097
+ [[package]]
1098
+ name = "pyo3-file"
1099
+ version = "0.8.1"
1100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1101
+ checksum = "0e3c1c8aa481f5ad3b220c285ba38aeacdaea786b8b622ba6e15cb4aeaef2490"
1102
+ dependencies = [
1103
+ "pyo3",
1104
+ "skeptic",
1105
+ ]
1106
+
1107
+ [[package]]
1108
+ name = "pyo3-macros"
1109
+ version = "0.21.2"
1110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1111
+ checksum = "77b34069fc0682e11b31dbd10321cbf94808394c56fd996796ce45217dfac53c"
1112
+ dependencies = [
1113
+ "proc-macro2",
1114
+ "pyo3-macros-backend",
1115
+ "quote",
1116
+ "syn",
1117
+ ]
1118
+
1119
+ [[package]]
1120
+ name = "pyo3-macros-backend"
1121
+ version = "0.21.2"
1122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1123
+ checksum = "08260721f32db5e1a5beae69a55553f56b99bd0e1c3e6e0a5e8851a9d0f5a85c"
1124
+ dependencies = [
1125
+ "heck",
1126
+ "proc-macro2",
1127
+ "pyo3-build-config",
1128
+ "quote",
1129
+ "syn",
1130
+ ]
1131
+
1132
+ [[package]]
1133
+ name = "quote"
1134
+ version = "1.0.36"
1135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1136
+ checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7"
1137
+ dependencies = [
1138
+ "proc-macro2",
1139
+ ]
1140
+
1141
+ [[package]]
1142
+ name = "rawpointer"
1143
+ version = "0.2.1"
1144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1145
+ checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
1146
+
1147
+ [[package]]
1148
+ name = "redox_syscall"
1149
+ version = "0.5.3"
1150
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1151
+ checksum = "2a908a6e00f1fdd0dfd9c0eb08ce85126f6d8bbda50017e74bc4a4b7d4a926a4"
1152
+ dependencies = [
1153
+ "bitflags 2.6.0",
1154
+ ]
1155
+
1156
+ [[package]]
1157
+ name = "regex"
1158
+ version = "1.10.5"
1159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1160
+ checksum = "b91213439dad192326a0d7c6ee3955910425f441d7038e0d6933b0aec5c4517f"
1161
+ dependencies = [
1162
+ "aho-corasick",
1163
+ "memchr",
1164
+ "regex-automata",
1165
+ "regex-syntax",
1166
+ ]
1167
+
1168
+ [[package]]
1169
+ name = "regex-automata"
1170
+ version = "0.4.7"
1171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1172
+ checksum = "38caf58cc5ef2fed281f89292ef23f6365465ed9a41b7a7754eb4e26496c92df"
1173
+ dependencies = [
1174
+ "aho-corasick",
1175
+ "memchr",
1176
+ "regex-syntax",
1177
+ ]
1178
+
1179
+ [[package]]
1180
+ name = "regex-syntax"
1181
+ version = "0.8.4"
1182
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1183
+ checksum = "7a66a03ae7c801facd77a29370b4faec201768915ac14a721ba36f20bc9c209b"
1184
+
1185
+ [[package]]
1186
+ name = "rustc-hash"
1187
+ version = "1.1.0"
1188
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1189
+ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
1190
+
1191
+ [[package]]
1192
+ name = "rustc_version"
1193
+ version = "0.4.0"
1194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1195
+ checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
1196
+ dependencies = [
1197
+ "semver",
1198
+ ]
1199
+
1200
+ [[package]]
1201
+ name = "rustix"
1202
+ version = "0.38.34"
1203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1204
+ checksum = "70dc5ec042f7a43c4a73241207cecc9873a06d45debb38b329f8541d85c2730f"
1205
+ dependencies = [
1206
+ "bitflags 2.6.0",
1207
+ "errno",
1208
+ "libc",
1209
+ "linux-raw-sys",
1210
+ "windows-sys",
1211
+ ]
1212
+
1213
+ [[package]]
1214
+ name = "ryu"
1215
+ version = "1.0.18"
1216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1217
+ checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
1218
+
1219
+ [[package]]
1220
+ name = "same-file"
1221
+ version = "1.0.6"
1222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1223
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1224
+ dependencies = [
1225
+ "winapi-util",
1226
+ ]
1227
+
1228
+ [[package]]
1229
+ name = "scopeguard"
1230
+ version = "1.2.0"
1231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1232
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1233
+
1234
+ [[package]]
1235
+ name = "semver"
1236
+ version = "1.0.23"
1237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1238
+ checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b"
1239
+ dependencies = [
1240
+ "serde",
1241
+ ]
1242
+
1243
+ [[package]]
1244
+ name = "seq-macro"
1245
+ version = "0.3.5"
1246
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1247
+ checksum = "a3f0bf26fd526d2a95683cd0f87bf103b8539e2ca1ef48ce002d67aad59aa0b4"
1248
+
1249
+ [[package]]
1250
+ name = "serde"
1251
+ version = "1.0.204"
1252
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1253
+ checksum = "bc76f558e0cbb2a839d37354c575f1dc3fdc6546b5be373ba43d95f231bf7c12"
1254
+ dependencies = [
1255
+ "serde_derive",
1256
+ ]
1257
+
1258
+ [[package]]
1259
+ name = "serde_derive"
1260
+ version = "1.0.204"
1261
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1262
+ checksum = "e0cd7e117be63d3c3678776753929474f3b04a43a080c744d6b0ae2a8c28e222"
1263
+ dependencies = [
1264
+ "proc-macro2",
1265
+ "quote",
1266
+ "syn",
1267
+ ]
1268
+
1269
+ [[package]]
1270
+ name = "serde_json"
1271
+ version = "1.0.120"
1272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1273
+ checksum = "4e0d21c9a8cae1235ad58a00c11cb40d4b1e5c784f1ef2c537876ed6ffd8b7c5"
1274
+ dependencies = [
1275
+ "itoa",
1276
+ "ryu",
1277
+ "serde",
1278
+ ]
1279
+
1280
+ [[package]]
1281
+ name = "skeptic"
1282
+ version = "0.13.7"
1283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1284
+ checksum = "16d23b015676c90a0f01c197bfdc786c20342c73a0afdda9025adb0bc42940a8"
1285
+ dependencies = [
1286
+ "bytecount",
1287
+ "cargo_metadata",
1288
+ "error-chain",
1289
+ "glob",
1290
+ "pulldown-cmark",
1291
+ "tempfile",
1292
+ "walkdir",
1293
+ ]
1294
+
1295
+ [[package]]
1296
+ name = "smallvec"
1297
+ version = "1.13.2"
1298
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1299
+ checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
1300
+
1301
+ [[package]]
1302
+ name = "snap"
1303
+ version = "1.1.1"
1304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1305
+ checksum = "1b6b67fb9a61334225b5b790716f609cd58395f895b3fe8b328786812a40bc3b"
1306
+
1307
+ [[package]]
1308
+ name = "static_assertions"
1309
+ version = "1.1.0"
1310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1311
+ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
1312
+
1313
+ [[package]]
1314
+ name = "syn"
1315
+ version = "2.0.72"
1316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1317
+ checksum = "dc4b9b9bf2add8093d3f2c0204471e951b2285580335de42f9d2534f3ae7a8af"
1318
+ dependencies = [
1319
+ "proc-macro2",
1320
+ "quote",
1321
+ "unicode-ident",
1322
+ ]
1323
+
1324
+ [[package]]
1325
+ name = "target-lexicon"
1326
+ version = "0.12.15"
1327
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1328
+ checksum = "4873307b7c257eddcb50c9bedf158eb669578359fb28428bef438fec8e6ba7c2"
1329
+
1330
+ [[package]]
1331
+ name = "tempfile"
1332
+ version = "3.10.1"
1333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1334
+ checksum = "85b77fafb263dd9d05cbeac119526425676db3784113aa9295c88498cbf8bff1"
1335
+ dependencies = [
1336
+ "cfg-if",
1337
+ "fastrand",
1338
+ "rustix",
1339
+ "windows-sys",
1340
+ ]
1341
+
1342
+ [[package]]
1343
+ name = "thiserror"
1344
+ version = "1.0.63"
1345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1346
+ checksum = "c0342370b38b6a11b6cc11d6a805569958d54cfa061a29969c3b5ce2ea405724"
1347
+ dependencies = [
1348
+ "thiserror-impl",
1349
+ ]
1350
+
1351
+ [[package]]
1352
+ name = "thiserror-impl"
1353
+ version = "1.0.63"
1354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1355
+ checksum = "a4558b58466b9ad7ca0f102865eccc95938dca1a74a856f2b57b6629050da261"
1356
+ dependencies = [
1357
+ "proc-macro2",
1358
+ "quote",
1359
+ "syn",
1360
+ ]
1361
+
1362
+ [[package]]
1363
+ name = "thrift"
1364
+ version = "0.17.0"
1365
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1366
+ checksum = "7e54bc85fc7faa8bc175c4bab5b92ba8d9a3ce893d0e9f42cc455c8ab16a9e09"
1367
+ dependencies = [
1368
+ "byteorder",
1369
+ "integer-encoding",
1370
+ "ordered-float",
1371
+ ]
1372
+
1373
+ [[package]]
1374
+ name = "tiny-keccak"
1375
+ version = "2.0.2"
1376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1377
+ checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
1378
+ dependencies = [
1379
+ "crunchy",
1380
+ ]
1381
+
1382
+ [[package]]
1383
+ name = "twox-hash"
1384
+ version = "1.6.3"
1385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1386
+ checksum = "97fee6b57c6a41524a810daee9286c02d7752c4253064d0b05472833a438f675"
1387
+ dependencies = [
1388
+ "cfg-if",
1389
+ "static_assertions",
1390
+ ]
1391
+
1392
+ [[package]]
1393
+ name = "unicase"
1394
+ version = "2.7.0"
1395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1396
+ checksum = "f7d2d4dafb69621809a81864c9c1b864479e1235c0dd4e199924b9742439ed89"
1397
+ dependencies = [
1398
+ "version_check",
1399
+ ]
1400
+
1401
+ [[package]]
1402
+ name = "unicode-ident"
1403
+ version = "1.0.12"
1404
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1405
+ checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
1406
+
1407
+ [[package]]
1408
+ name = "unindent"
1409
+ version = "0.2.3"
1410
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1411
+ checksum = "c7de7d73e1754487cb58364ee906a499937a0dfabd86bcb980fa99ec8c8fa2ce"
1412
+
1413
+ [[package]]
1414
+ name = "version_check"
1415
+ version = "0.9.4"
1416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1417
+ checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
1418
+
1419
+ [[package]]
1420
+ name = "walkdir"
1421
+ version = "2.5.0"
1422
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1423
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
1424
+ dependencies = [
1425
+ "same-file",
1426
+ "winapi-util",
1427
+ ]
1428
+
1429
+ [[package]]
1430
+ name = "wasi"
1431
+ version = "0.11.0+wasi-snapshot-preview1"
1432
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1433
+ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
1434
+
1435
+ [[package]]
1436
+ name = "wasm-bindgen"
1437
+ version = "0.2.92"
1438
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1439
+ checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8"
1440
+ dependencies = [
1441
+ "cfg-if",
1442
+ "wasm-bindgen-macro",
1443
+ ]
1444
+
1445
+ [[package]]
1446
+ name = "wasm-bindgen-backend"
1447
+ version = "0.2.92"
1448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1449
+ checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da"
1450
+ dependencies = [
1451
+ "bumpalo",
1452
+ "log",
1453
+ "once_cell",
1454
+ "proc-macro2",
1455
+ "quote",
1456
+ "syn",
1457
+ "wasm-bindgen-shared",
1458
+ ]
1459
+
1460
+ [[package]]
1461
+ name = "wasm-bindgen-macro"
1462
+ version = "0.2.92"
1463
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1464
+ checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726"
1465
+ dependencies = [
1466
+ "quote",
1467
+ "wasm-bindgen-macro-support",
1468
+ ]
1469
+
1470
+ [[package]]
1471
+ name = "wasm-bindgen-macro-support"
1472
+ version = "0.2.92"
1473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1474
+ checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7"
1475
+ dependencies = [
1476
+ "proc-macro2",
1477
+ "quote",
1478
+ "syn",
1479
+ "wasm-bindgen-backend",
1480
+ "wasm-bindgen-shared",
1481
+ ]
1482
+
1483
+ [[package]]
1484
+ name = "wasm-bindgen-shared"
1485
+ version = "0.2.92"
1486
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1487
+ checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96"
1488
+
1489
+ [[package]]
1490
+ name = "winapi-util"
1491
+ version = "0.1.8"
1492
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1493
+ checksum = "4d4cc384e1e73b93bafa6fb4f1df8c41695c8a91cf9c4c64358067d15a7b6c6b"
1494
+ dependencies = [
1495
+ "windows-sys",
1496
+ ]
1497
+
1498
+ [[package]]
1499
+ name = "windows-core"
1500
+ version = "0.52.0"
1501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1502
+ checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
1503
+ dependencies = [
1504
+ "windows-targets",
1505
+ ]
1506
+
1507
+ [[package]]
1508
+ name = "windows-sys"
1509
+ version = "0.52.0"
1510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1511
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
1512
+ dependencies = [
1513
+ "windows-targets",
1514
+ ]
1515
+
1516
+ [[package]]
1517
+ name = "windows-targets"
1518
+ version = "0.52.6"
1519
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1520
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
1521
+ dependencies = [
1522
+ "windows_aarch64_gnullvm",
1523
+ "windows_aarch64_msvc",
1524
+ "windows_i686_gnu",
1525
+ "windows_i686_gnullvm",
1526
+ "windows_i686_msvc",
1527
+ "windows_x86_64_gnu",
1528
+ "windows_x86_64_gnullvm",
1529
+ "windows_x86_64_msvc",
1530
+ ]
1531
+
1532
+ [[package]]
1533
+ name = "windows_aarch64_gnullvm"
1534
+ version = "0.52.6"
1535
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1536
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
1537
+
1538
+ [[package]]
1539
+ name = "windows_aarch64_msvc"
1540
+ version = "0.52.6"
1541
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1542
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
1543
+
1544
+ [[package]]
1545
+ name = "windows_i686_gnu"
1546
+ version = "0.52.6"
1547
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1548
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
1549
+
1550
+ [[package]]
1551
+ name = "windows_i686_gnullvm"
1552
+ version = "0.52.6"
1553
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1554
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
1555
+
1556
+ [[package]]
1557
+ name = "windows_i686_msvc"
1558
+ version = "0.52.6"
1559
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1560
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
1561
+
1562
+ [[package]]
1563
+ name = "windows_x86_64_gnu"
1564
+ version = "0.52.6"
1565
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1566
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
1567
+
1568
+ [[package]]
1569
+ name = "windows_x86_64_gnullvm"
1570
+ version = "0.52.6"
1571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1572
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
1573
+
1574
+ [[package]]
1575
+ name = "windows_x86_64_msvc"
1576
+ version = "0.52.6"
1577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1578
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
1579
+
1580
+ [[package]]
1581
+ name = "zerocopy"
1582
+ version = "0.7.35"
1583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1584
+ checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
1585
+ dependencies = [
1586
+ "zerocopy-derive",
1587
+ ]
1588
+
1589
+ [[package]]
1590
+ name = "zerocopy-derive"
1591
+ version = "0.7.35"
1592
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1593
+ checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
1594
+ dependencies = [
1595
+ "proc-macro2",
1596
+ "quote",
1597
+ "syn",
1598
+ ]
1599
+
1600
+ [[package]]
1601
+ name = "zstd"
1602
+ version = "0.13.2"
1603
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1604
+ checksum = "fcf2b778a664581e31e389454a7072dab1647606d44f7feea22cd5abb9c9f3f9"
1605
+ dependencies = [
1606
+ "zstd-safe",
1607
+ ]
1608
+
1609
+ [[package]]
1610
+ name = "zstd-safe"
1611
+ version = "7.2.0"
1612
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1613
+ checksum = "fa556e971e7b568dc775c136fc9de8c779b1c2fc3a63defaafadffdbd3181afa"
1614
+ dependencies = [
1615
+ "zstd-sys",
1616
+ ]
1617
+
1618
+ [[package]]
1619
+ name = "zstd-sys"
1620
+ version = "2.0.11+zstd.1.5.6"
1621
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1622
+ checksum = "75652c55c0b6f3e6f12eb786fe1bc960396bf05a1eb3bf1f3691c3610ac2e6d4"
1623
+ dependencies = [
1624
+ "cc",
1625
+ "pkg-config",
1626
+ ]