qvd-parser 0.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (38) hide show
  1. qvd_parser-0.1.0/Cargo.lock +1843 -0
  2. qvd_parser-0.1.0/Cargo.toml +37 -0
  3. qvd_parser-0.1.0/LICENSE +21 -0
  4. qvd_parser-0.1.0/PKG-INFO +337 -0
  5. qvd_parser-0.1.0/README.md +307 -0
  6. qvd_parser-0.1.0/bindings-python/Cargo.toml +24 -0
  7. qvd_parser-0.1.0/bindings-python/python/qvd_parser/__init__.py +3 -0
  8. qvd_parser-0.1.0/bindings-python/python/qvd_parser/models.py +132 -0
  9. qvd_parser-0.1.0/bindings-python/src/lib.rs +572 -0
  10. qvd_parser-0.1.0/bindings-python/tests/conftest.py +133 -0
  11. qvd_parser-0.1.0/bindings-python/tests/test_bindings.py +378 -0
  12. qvd_parser-0.1.0/bindings-python/tests/test_fixtures.py +525 -0
  13. qvd_parser-0.1.0/bindings-python/tests/test_non_regression.py +128 -0
  14. qvd_parser-0.1.0/bindings-python/tests/test_pydantic_contract.py +285 -0
  15. qvd_parser-0.1.0/bindings-python/tests/test_qvd_parser.py +27 -0
  16. qvd_parser-0.1.0/convert/Cargo.toml +19 -0
  17. qvd_parser-0.1.0/convert/src/cast.rs +709 -0
  18. qvd_parser-0.1.0/convert/src/csv.rs +119 -0
  19. qvd_parser-0.1.0/convert/src/json.rs +148 -0
  20. qvd_parser-0.1.0/convert/src/lib.rs +66 -0
  21. qvd_parser-0.1.0/convert/src/parquet.rs +344 -0
  22. qvd_parser-0.1.0/convert/src/type_infer.rs +289 -0
  23. qvd_parser-0.1.0/convert/tests/fixtures_type_infer.rs +185 -0
  24. qvd_parser-0.1.0/convert/tests/parquet_export.rs +216 -0
  25. qvd_parser-0.1.0/convert/tests/text_export.rs +236 -0
  26. qvd_parser-0.1.0/core/Cargo.toml +30 -0
  27. qvd_parser-0.1.0/core/src/error.rs +32 -0
  28. qvd_parser-0.1.0/core/src/lib.rs +28 -0
  29. qvd_parser-0.1.0/core/src/model.rs +1031 -0
  30. qvd_parser-0.1.0/core/src/parser/bitpack.rs +295 -0
  31. qvd_parser-0.1.0/core/src/parser/header.rs +339 -0
  32. qvd_parser-0.1.0/core/src/parser/symbol.rs +204 -0
  33. qvd_parser-0.1.0/core/src/parser.rs +173 -0
  34. qvd_parser-0.1.0/core/tests/non_regression.rs +322 -0
  35. qvd_parser-0.1.0/core/tests/parse_fixtures.rs +779 -0
  36. qvd_parser-0.1.0/core/tests/parse_full_file.rs +244 -0
  37. qvd_parser-0.1.0/core/tests/parse_negative.rs +116 -0
  38. qvd_parser-0.1.0/pyproject.toml +46 -0
@@ -0,0 +1,1843 @@
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 = "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 = "anstream"
66
+ version = "1.0.0"
67
+ source = "registry+https://github.com/rust-lang/crates.io-index"
68
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
69
+ dependencies = [
70
+ "anstyle",
71
+ "anstyle-parse",
72
+ "anstyle-query",
73
+ "anstyle-wincon",
74
+ "colorchoice",
75
+ "is_terminal_polyfill",
76
+ "utf8parse",
77
+ ]
78
+
79
+ [[package]]
80
+ name = "anstyle"
81
+ version = "1.0.14"
82
+ source = "registry+https://github.com/rust-lang/crates.io-index"
83
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
84
+
85
+ [[package]]
86
+ name = "anstyle-parse"
87
+ version = "1.0.0"
88
+ source = "registry+https://github.com/rust-lang/crates.io-index"
89
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
90
+ dependencies = [
91
+ "utf8parse",
92
+ ]
93
+
94
+ [[package]]
95
+ name = "anstyle-query"
96
+ version = "1.1.5"
97
+ source = "registry+https://github.com/rust-lang/crates.io-index"
98
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
99
+ dependencies = [
100
+ "windows-sys",
101
+ ]
102
+
103
+ [[package]]
104
+ name = "anstyle-wincon"
105
+ version = "3.0.11"
106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
107
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
108
+ dependencies = [
109
+ "anstyle",
110
+ "once_cell_polyfill",
111
+ "windows-sys",
112
+ ]
113
+
114
+ [[package]]
115
+ name = "anyhow"
116
+ version = "1.0.102"
117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
118
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
119
+
120
+ [[package]]
121
+ name = "arrow"
122
+ version = "53.4.1"
123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
124
+ checksum = "d3a3ec4fe573f9d1f59d99c085197ef669b00b088ba1d7bb75224732d9357a74"
125
+ dependencies = [
126
+ "arrow-arith",
127
+ "arrow-array",
128
+ "arrow-buffer",
129
+ "arrow-cast",
130
+ "arrow-csv",
131
+ "arrow-data",
132
+ "arrow-ipc",
133
+ "arrow-json",
134
+ "arrow-ord",
135
+ "arrow-row",
136
+ "arrow-schema",
137
+ "arrow-select",
138
+ "arrow-string",
139
+ ]
140
+
141
+ [[package]]
142
+ name = "arrow-arith"
143
+ version = "53.4.1"
144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
145
+ checksum = "6dcf19f07792d8c7f91086c67b574a79301e367029b17fcf63fb854332246a10"
146
+ dependencies = [
147
+ "arrow-array",
148
+ "arrow-buffer",
149
+ "arrow-data",
150
+ "arrow-schema",
151
+ "chrono",
152
+ "half",
153
+ "num",
154
+ ]
155
+
156
+ [[package]]
157
+ name = "arrow-array"
158
+ version = "53.4.1"
159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
160
+ checksum = "7845c32b41f7053e37a075b3c2f29c6f5ea1b3ca6e5df7a2d325ee6e1b4a63cf"
161
+ dependencies = [
162
+ "ahash",
163
+ "arrow-buffer",
164
+ "arrow-data",
165
+ "arrow-schema",
166
+ "chrono",
167
+ "half",
168
+ "hashbrown 0.15.5",
169
+ "num",
170
+ ]
171
+
172
+ [[package]]
173
+ name = "arrow-buffer"
174
+ version = "53.4.1"
175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
176
+ checksum = "5b5c681a99606f3316f2a99d9c8b6fa3aad0b1d34d8f6d7a1b471893940219d8"
177
+ dependencies = [
178
+ "bytes",
179
+ "half",
180
+ "num",
181
+ ]
182
+
183
+ [[package]]
184
+ name = "arrow-cast"
185
+ version = "53.4.1"
186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
187
+ checksum = "6365f8527d4f87b133eeb862f9b8093c009d41a210b8f101f91aa2392f61daac"
188
+ dependencies = [
189
+ "arrow-array",
190
+ "arrow-buffer",
191
+ "arrow-data",
192
+ "arrow-schema",
193
+ "arrow-select",
194
+ "atoi",
195
+ "base64",
196
+ "chrono",
197
+ "half",
198
+ "lexical-core",
199
+ "num",
200
+ "ryu",
201
+ ]
202
+
203
+ [[package]]
204
+ name = "arrow-csv"
205
+ version = "53.4.1"
206
+ source = "registry+https://github.com/rust-lang/crates.io-index"
207
+ checksum = "30dac4d23ac769300349197b845e0fd18c7f9f15d260d4659ae6b5a9ca06f586"
208
+ dependencies = [
209
+ "arrow-array",
210
+ "arrow-buffer",
211
+ "arrow-cast",
212
+ "arrow-data",
213
+ "arrow-schema",
214
+ "chrono",
215
+ "csv",
216
+ "csv-core",
217
+ "lazy_static",
218
+ "lexical-core",
219
+ "regex",
220
+ ]
221
+
222
+ [[package]]
223
+ name = "arrow-data"
224
+ version = "53.4.1"
225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
226
+ checksum = "cd962fc3bf7f60705b25bcaa8eb3318b2545aa1d528656525ebdd6a17a6cd6fb"
227
+ dependencies = [
228
+ "arrow-buffer",
229
+ "arrow-schema",
230
+ "half",
231
+ "num",
232
+ ]
233
+
234
+ [[package]]
235
+ name = "arrow-ipc"
236
+ version = "53.4.1"
237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
238
+ checksum = "c3527365b24372f9c948f16e53738eb098720eea2093ae73c7af04ac5e30a39b"
239
+ dependencies = [
240
+ "arrow-array",
241
+ "arrow-buffer",
242
+ "arrow-cast",
243
+ "arrow-data",
244
+ "arrow-schema",
245
+ "flatbuffers",
246
+ ]
247
+
248
+ [[package]]
249
+ name = "arrow-json"
250
+ version = "53.4.1"
251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
252
+ checksum = "acdec0024749fc0d95e025c0b0266d78613727b3b3a5d4cf8ea47eb6d38afdd1"
253
+ dependencies = [
254
+ "arrow-array",
255
+ "arrow-buffer",
256
+ "arrow-cast",
257
+ "arrow-data",
258
+ "arrow-schema",
259
+ "chrono",
260
+ "half",
261
+ "indexmap",
262
+ "lexical-core",
263
+ "num",
264
+ "serde",
265
+ "serde_json",
266
+ ]
267
+
268
+ [[package]]
269
+ name = "arrow-ord"
270
+ version = "53.4.1"
271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
272
+ checksum = "79af2db0e62a508d34ddf4f76bfd6109b6ecc845257c9cba6f939653668f89ac"
273
+ dependencies = [
274
+ "arrow-array",
275
+ "arrow-buffer",
276
+ "arrow-data",
277
+ "arrow-schema",
278
+ "arrow-select",
279
+ "half",
280
+ "num",
281
+ ]
282
+
283
+ [[package]]
284
+ name = "arrow-row"
285
+ version = "53.4.1"
286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
287
+ checksum = "da30e9d10e9c52f09ea0cf15086d6d785c11ae8dcc3ea5f16d402221b6ac7735"
288
+ dependencies = [
289
+ "ahash",
290
+ "arrow-array",
291
+ "arrow-buffer",
292
+ "arrow-data",
293
+ "arrow-schema",
294
+ "half",
295
+ ]
296
+
297
+ [[package]]
298
+ name = "arrow-schema"
299
+ version = "53.4.1"
300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
301
+ checksum = "35b0f9c0c3582dd55db0f136d3b44bfa0189df07adcf7dc7f2f2e74db0f52eb8"
302
+
303
+ [[package]]
304
+ name = "arrow-select"
305
+ version = "53.4.1"
306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
307
+ checksum = "92fc337f01635218493c23da81a364daf38c694b05fc20569c3193c11c561984"
308
+ dependencies = [
309
+ "ahash",
310
+ "arrow-array",
311
+ "arrow-buffer",
312
+ "arrow-data",
313
+ "arrow-schema",
314
+ "num",
315
+ ]
316
+
317
+ [[package]]
318
+ name = "arrow-string"
319
+ version = "53.4.1"
320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
321
+ checksum = "d596a9fc25dae556672d5069b090331aca8acb93cae426d8b7dcdf1c558fa0ce"
322
+ dependencies = [
323
+ "arrow-array",
324
+ "arrow-buffer",
325
+ "arrow-data",
326
+ "arrow-schema",
327
+ "arrow-select",
328
+ "memchr",
329
+ "num",
330
+ "regex",
331
+ "regex-syntax",
332
+ ]
333
+
334
+ [[package]]
335
+ name = "atoi"
336
+ version = "2.0.0"
337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
338
+ checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528"
339
+ dependencies = [
340
+ "num-traits",
341
+ ]
342
+
343
+ [[package]]
344
+ name = "autocfg"
345
+ version = "1.5.0"
346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
347
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
348
+
349
+ [[package]]
350
+ name = "base64"
351
+ version = "0.22.1"
352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
353
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
354
+
355
+ [[package]]
356
+ name = "bitflags"
357
+ version = "1.3.2"
358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
359
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
360
+
361
+ [[package]]
362
+ name = "bitflags"
363
+ version = "2.11.1"
364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
365
+ checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
366
+
367
+ [[package]]
368
+ name = "brotli"
369
+ version = "7.0.0"
370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
371
+ checksum = "cc97b8f16f944bba54f0433f07e30be199b6dc2bd25937444bbad560bcea29bd"
372
+ dependencies = [
373
+ "alloc-no-stdlib",
374
+ "alloc-stdlib",
375
+ "brotli-decompressor",
376
+ ]
377
+
378
+ [[package]]
379
+ name = "brotli-decompressor"
380
+ version = "4.0.3"
381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
382
+ checksum = "a334ef7c9e23abf0ce748e8cd309037da93e606ad52eb372e4ce327a0dcfbdfd"
383
+ dependencies = [
384
+ "alloc-no-stdlib",
385
+ "alloc-stdlib",
386
+ ]
387
+
388
+ [[package]]
389
+ name = "bumpalo"
390
+ version = "3.20.2"
391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
392
+ checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
393
+
394
+ [[package]]
395
+ name = "byteorder"
396
+ version = "1.5.0"
397
+ source = "registry+https://github.com/rust-lang/crates.io-index"
398
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
399
+
400
+ [[package]]
401
+ name = "bytes"
402
+ version = "1.11.1"
403
+ source = "registry+https://github.com/rust-lang/crates.io-index"
404
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
405
+
406
+ [[package]]
407
+ name = "cc"
408
+ version = "1.2.61"
409
+ source = "registry+https://github.com/rust-lang/crates.io-index"
410
+ checksum = "d16d90359e986641506914ba71350897565610e87ce0ad9e6f28569db3dd5c6d"
411
+ dependencies = [
412
+ "find-msvc-tools",
413
+ "jobserver",
414
+ "libc",
415
+ "shlex",
416
+ ]
417
+
418
+ [[package]]
419
+ name = "cfg-if"
420
+ version = "1.0.4"
421
+ source = "registry+https://github.com/rust-lang/crates.io-index"
422
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
423
+
424
+ [[package]]
425
+ name = "chrono"
426
+ version = "0.4.39"
427
+ source = "registry+https://github.com/rust-lang/crates.io-index"
428
+ checksum = "7e36cc9d416881d2e24f9a963be5fb1cd90966419ac844274161d10488b3e825"
429
+ dependencies = [
430
+ "android-tzdata",
431
+ "iana-time-zone",
432
+ "num-traits",
433
+ "windows-targets",
434
+ ]
435
+
436
+ [[package]]
437
+ name = "clap"
438
+ version = "4.6.1"
439
+ source = "registry+https://github.com/rust-lang/crates.io-index"
440
+ checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
441
+ dependencies = [
442
+ "clap_builder",
443
+ "clap_derive",
444
+ ]
445
+
446
+ [[package]]
447
+ name = "clap_builder"
448
+ version = "4.6.0"
449
+ source = "registry+https://github.com/rust-lang/crates.io-index"
450
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
451
+ dependencies = [
452
+ "anstream",
453
+ "anstyle",
454
+ "clap_lex",
455
+ "strsim",
456
+ ]
457
+
458
+ [[package]]
459
+ name = "clap_derive"
460
+ version = "4.6.1"
461
+ source = "registry+https://github.com/rust-lang/crates.io-index"
462
+ checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9"
463
+ dependencies = [
464
+ "heck",
465
+ "proc-macro2",
466
+ "quote",
467
+ "syn",
468
+ ]
469
+
470
+ [[package]]
471
+ name = "clap_lex"
472
+ version = "1.1.0"
473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
474
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
475
+
476
+ [[package]]
477
+ name = "colorchoice"
478
+ version = "1.0.5"
479
+ source = "registry+https://github.com/rust-lang/crates.io-index"
480
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
481
+
482
+ [[package]]
483
+ name = "const-random"
484
+ version = "0.1.18"
485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
486
+ checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359"
487
+ dependencies = [
488
+ "const-random-macro",
489
+ ]
490
+
491
+ [[package]]
492
+ name = "const-random-macro"
493
+ version = "0.1.16"
494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
495
+ checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e"
496
+ dependencies = [
497
+ "getrandom 0.2.17",
498
+ "once_cell",
499
+ "tiny-keccak",
500
+ ]
501
+
502
+ [[package]]
503
+ name = "core-foundation-sys"
504
+ version = "0.8.7"
505
+ source = "registry+https://github.com/rust-lang/crates.io-index"
506
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
507
+
508
+ [[package]]
509
+ name = "crc32fast"
510
+ version = "1.5.0"
511
+ source = "registry+https://github.com/rust-lang/crates.io-index"
512
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
513
+ dependencies = [
514
+ "cfg-if",
515
+ ]
516
+
517
+ [[package]]
518
+ name = "crunchy"
519
+ version = "0.2.4"
520
+ source = "registry+https://github.com/rust-lang/crates.io-index"
521
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
522
+
523
+ [[package]]
524
+ name = "csv"
525
+ version = "1.4.0"
526
+ source = "registry+https://github.com/rust-lang/crates.io-index"
527
+ checksum = "52cd9d68cf7efc6ddfaaee42e7288d3a99d613d4b50f76ce9827ae0c6e14f938"
528
+ dependencies = [
529
+ "csv-core",
530
+ "itoa",
531
+ "ryu",
532
+ "serde_core",
533
+ ]
534
+
535
+ [[package]]
536
+ name = "csv-core"
537
+ version = "0.1.13"
538
+ source = "registry+https://github.com/rust-lang/crates.io-index"
539
+ checksum = "704a3c26996a80471189265814dbc2c257598b96b8a7feae2d31ace646bb9782"
540
+ dependencies = [
541
+ "memchr",
542
+ ]
543
+
544
+ [[package]]
545
+ name = "equivalent"
546
+ version = "1.0.2"
547
+ source = "registry+https://github.com/rust-lang/crates.io-index"
548
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
549
+
550
+ [[package]]
551
+ name = "errno"
552
+ version = "0.3.14"
553
+ source = "registry+https://github.com/rust-lang/crates.io-index"
554
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
555
+ dependencies = [
556
+ "libc",
557
+ "windows-sys",
558
+ ]
559
+
560
+ [[package]]
561
+ name = "fastrand"
562
+ version = "2.4.1"
563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
564
+ checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
565
+
566
+ [[package]]
567
+ name = "find-msvc-tools"
568
+ version = "0.1.9"
569
+ source = "registry+https://github.com/rust-lang/crates.io-index"
570
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
571
+
572
+ [[package]]
573
+ name = "flatbuffers"
574
+ version = "24.12.23"
575
+ source = "registry+https://github.com/rust-lang/crates.io-index"
576
+ checksum = "4f1baf0dbf96932ec9a3038d57900329c015b0bfb7b63d904f3bc27e2b02a096"
577
+ dependencies = [
578
+ "bitflags 1.3.2",
579
+ "rustc_version",
580
+ ]
581
+
582
+ [[package]]
583
+ name = "flate2"
584
+ version = "1.1.9"
585
+ source = "registry+https://github.com/rust-lang/crates.io-index"
586
+ checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
587
+ dependencies = [
588
+ "crc32fast",
589
+ "miniz_oxide",
590
+ ]
591
+
592
+ [[package]]
593
+ name = "foldhash"
594
+ version = "0.1.5"
595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
596
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
597
+
598
+ [[package]]
599
+ name = "futures-core"
600
+ version = "0.3.32"
601
+ source = "registry+https://github.com/rust-lang/crates.io-index"
602
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
603
+
604
+ [[package]]
605
+ name = "futures-task"
606
+ version = "0.3.32"
607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
608
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
609
+
610
+ [[package]]
611
+ name = "futures-util"
612
+ version = "0.3.32"
613
+ source = "registry+https://github.com/rust-lang/crates.io-index"
614
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
615
+ dependencies = [
616
+ "futures-core",
617
+ "futures-task",
618
+ "pin-project-lite",
619
+ "slab",
620
+ ]
621
+
622
+ [[package]]
623
+ name = "getrandom"
624
+ version = "0.2.17"
625
+ source = "registry+https://github.com/rust-lang/crates.io-index"
626
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
627
+ dependencies = [
628
+ "cfg-if",
629
+ "libc",
630
+ "wasi",
631
+ ]
632
+
633
+ [[package]]
634
+ name = "getrandom"
635
+ version = "0.3.4"
636
+ source = "registry+https://github.com/rust-lang/crates.io-index"
637
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
638
+ dependencies = [
639
+ "cfg-if",
640
+ "libc",
641
+ "r-efi 5.3.0",
642
+ "wasip2",
643
+ ]
644
+
645
+ [[package]]
646
+ name = "getrandom"
647
+ version = "0.4.2"
648
+ source = "registry+https://github.com/rust-lang/crates.io-index"
649
+ checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
650
+ dependencies = [
651
+ "cfg-if",
652
+ "libc",
653
+ "r-efi 6.0.0",
654
+ "wasip2",
655
+ "wasip3",
656
+ ]
657
+
658
+ [[package]]
659
+ name = "half"
660
+ version = "2.7.1"
661
+ source = "registry+https://github.com/rust-lang/crates.io-index"
662
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
663
+ dependencies = [
664
+ "cfg-if",
665
+ "crunchy",
666
+ "num-traits",
667
+ "zerocopy",
668
+ ]
669
+
670
+ [[package]]
671
+ name = "hashbrown"
672
+ version = "0.15.5"
673
+ source = "registry+https://github.com/rust-lang/crates.io-index"
674
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
675
+ dependencies = [
676
+ "foldhash",
677
+ ]
678
+
679
+ [[package]]
680
+ name = "hashbrown"
681
+ version = "0.17.0"
682
+ source = "registry+https://github.com/rust-lang/crates.io-index"
683
+ checksum = "4f467dd6dccf739c208452f8014c75c18bb8301b050ad1cfb27153803edb0f51"
684
+
685
+ [[package]]
686
+ name = "heck"
687
+ version = "0.5.0"
688
+ source = "registry+https://github.com/rust-lang/crates.io-index"
689
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
690
+
691
+ [[package]]
692
+ name = "iana-time-zone"
693
+ version = "0.1.65"
694
+ source = "registry+https://github.com/rust-lang/crates.io-index"
695
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
696
+ dependencies = [
697
+ "android_system_properties",
698
+ "core-foundation-sys",
699
+ "iana-time-zone-haiku",
700
+ "js-sys",
701
+ "log",
702
+ "wasm-bindgen",
703
+ "windows-core",
704
+ ]
705
+
706
+ [[package]]
707
+ name = "iana-time-zone-haiku"
708
+ version = "0.1.2"
709
+ source = "registry+https://github.com/rust-lang/crates.io-index"
710
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
711
+ dependencies = [
712
+ "cc",
713
+ ]
714
+
715
+ [[package]]
716
+ name = "id-arena"
717
+ version = "2.3.0"
718
+ source = "registry+https://github.com/rust-lang/crates.io-index"
719
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
720
+
721
+ [[package]]
722
+ name = "indexmap"
723
+ version = "2.14.0"
724
+ source = "registry+https://github.com/rust-lang/crates.io-index"
725
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
726
+ dependencies = [
727
+ "equivalent",
728
+ "hashbrown 0.17.0",
729
+ "serde",
730
+ "serde_core",
731
+ ]
732
+
733
+ [[package]]
734
+ name = "integer-encoding"
735
+ version = "3.0.4"
736
+ source = "registry+https://github.com/rust-lang/crates.io-index"
737
+ checksum = "8bb03732005da905c88227371639bf1ad885cc712789c011c31c5fb3ab3ccf02"
738
+
739
+ [[package]]
740
+ name = "is_terminal_polyfill"
741
+ version = "1.70.2"
742
+ source = "registry+https://github.com/rust-lang/crates.io-index"
743
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
744
+
745
+ [[package]]
746
+ name = "itoa"
747
+ version = "1.0.18"
748
+ source = "registry+https://github.com/rust-lang/crates.io-index"
749
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
750
+
751
+ [[package]]
752
+ name = "jobserver"
753
+ version = "0.1.34"
754
+ source = "registry+https://github.com/rust-lang/crates.io-index"
755
+ checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
756
+ dependencies = [
757
+ "getrandom 0.3.4",
758
+ "libc",
759
+ ]
760
+
761
+ [[package]]
762
+ name = "js-sys"
763
+ version = "0.3.97"
764
+ source = "registry+https://github.com/rust-lang/crates.io-index"
765
+ checksum = "a1840c94c045fbcf8ba2812c95db44499f7c64910a912551aaaa541decebcacf"
766
+ dependencies = [
767
+ "cfg-if",
768
+ "futures-util",
769
+ "once_cell",
770
+ "wasm-bindgen",
771
+ ]
772
+
773
+ [[package]]
774
+ name = "lazy_static"
775
+ version = "1.5.0"
776
+ source = "registry+https://github.com/rust-lang/crates.io-index"
777
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
778
+
779
+ [[package]]
780
+ name = "leb128fmt"
781
+ version = "0.1.0"
782
+ source = "registry+https://github.com/rust-lang/crates.io-index"
783
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
784
+
785
+ [[package]]
786
+ name = "lexical-core"
787
+ version = "1.0.6"
788
+ source = "registry+https://github.com/rust-lang/crates.io-index"
789
+ checksum = "7d8d125a277f807e55a77304455eb7b1cb52f2b18c143b60e766c120bd64a594"
790
+ dependencies = [
791
+ "lexical-parse-float",
792
+ "lexical-parse-integer",
793
+ "lexical-util",
794
+ "lexical-write-float",
795
+ "lexical-write-integer",
796
+ ]
797
+
798
+ [[package]]
799
+ name = "lexical-parse-float"
800
+ version = "1.0.6"
801
+ source = "registry+https://github.com/rust-lang/crates.io-index"
802
+ checksum = "52a9f232fbd6f550bc0137dcb5f99ab674071ac2d690ac69704593cb4abbea56"
803
+ dependencies = [
804
+ "lexical-parse-integer",
805
+ "lexical-util",
806
+ ]
807
+
808
+ [[package]]
809
+ name = "lexical-parse-integer"
810
+ version = "1.0.6"
811
+ source = "registry+https://github.com/rust-lang/crates.io-index"
812
+ checksum = "9a7a039f8fb9c19c996cd7b2fcce303c1b2874fe1aca544edc85c4a5f8489b34"
813
+ dependencies = [
814
+ "lexical-util",
815
+ ]
816
+
817
+ [[package]]
818
+ name = "lexical-util"
819
+ version = "1.0.7"
820
+ source = "registry+https://github.com/rust-lang/crates.io-index"
821
+ checksum = "2604dd126bb14f13fb5d1bd6a66155079cb9fa655b37f875b3a742c705dbed17"
822
+
823
+ [[package]]
824
+ name = "lexical-write-float"
825
+ version = "1.0.6"
826
+ source = "registry+https://github.com/rust-lang/crates.io-index"
827
+ checksum = "50c438c87c013188d415fbabbb1dceb44249ab81664efbd31b14ae55dabb6361"
828
+ dependencies = [
829
+ "lexical-util",
830
+ "lexical-write-integer",
831
+ ]
832
+
833
+ [[package]]
834
+ name = "lexical-write-integer"
835
+ version = "1.0.6"
836
+ source = "registry+https://github.com/rust-lang/crates.io-index"
837
+ checksum = "409851a618475d2d5796377cad353802345cba92c867d9fbcde9cf4eac4e14df"
838
+ dependencies = [
839
+ "lexical-util",
840
+ ]
841
+
842
+ [[package]]
843
+ name = "libc"
844
+ version = "0.2.186"
845
+ source = "registry+https://github.com/rust-lang/crates.io-index"
846
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
847
+
848
+ [[package]]
849
+ name = "libm"
850
+ version = "0.2.16"
851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
852
+ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
853
+
854
+ [[package]]
855
+ name = "linux-raw-sys"
856
+ version = "0.12.1"
857
+ source = "registry+https://github.com/rust-lang/crates.io-index"
858
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
859
+
860
+ [[package]]
861
+ name = "log"
862
+ version = "0.4.29"
863
+ source = "registry+https://github.com/rust-lang/crates.io-index"
864
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
865
+
866
+ [[package]]
867
+ name = "lz4_flex"
868
+ version = "0.11.6"
869
+ source = "registry+https://github.com/rust-lang/crates.io-index"
870
+ checksum = "373f5eceeeab7925e0c1098212f2fbc4d416adec9d35051a6ab251e824c1854a"
871
+ dependencies = [
872
+ "twox-hash 2.1.2",
873
+ ]
874
+
875
+ [[package]]
876
+ name = "memchr"
877
+ version = "2.8.0"
878
+ source = "registry+https://github.com/rust-lang/crates.io-index"
879
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
880
+
881
+ [[package]]
882
+ name = "miniz_oxide"
883
+ version = "0.8.9"
884
+ source = "registry+https://github.com/rust-lang/crates.io-index"
885
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
886
+ dependencies = [
887
+ "adler2",
888
+ "simd-adler32",
889
+ ]
890
+
891
+ [[package]]
892
+ name = "num"
893
+ version = "0.4.3"
894
+ source = "registry+https://github.com/rust-lang/crates.io-index"
895
+ checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23"
896
+ dependencies = [
897
+ "num-bigint",
898
+ "num-complex",
899
+ "num-integer",
900
+ "num-iter",
901
+ "num-rational",
902
+ "num-traits",
903
+ ]
904
+
905
+ [[package]]
906
+ name = "num-bigint"
907
+ version = "0.4.6"
908
+ source = "registry+https://github.com/rust-lang/crates.io-index"
909
+ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
910
+ dependencies = [
911
+ "num-integer",
912
+ "num-traits",
913
+ ]
914
+
915
+ [[package]]
916
+ name = "num-complex"
917
+ version = "0.4.6"
918
+ source = "registry+https://github.com/rust-lang/crates.io-index"
919
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
920
+ dependencies = [
921
+ "num-traits",
922
+ ]
923
+
924
+ [[package]]
925
+ name = "num-integer"
926
+ version = "0.1.46"
927
+ source = "registry+https://github.com/rust-lang/crates.io-index"
928
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
929
+ dependencies = [
930
+ "num-traits",
931
+ ]
932
+
933
+ [[package]]
934
+ name = "num-iter"
935
+ version = "0.1.45"
936
+ source = "registry+https://github.com/rust-lang/crates.io-index"
937
+ checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
938
+ dependencies = [
939
+ "autocfg",
940
+ "num-integer",
941
+ "num-traits",
942
+ ]
943
+
944
+ [[package]]
945
+ name = "num-rational"
946
+ version = "0.4.2"
947
+ source = "registry+https://github.com/rust-lang/crates.io-index"
948
+ checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
949
+ dependencies = [
950
+ "num-bigint",
951
+ "num-integer",
952
+ "num-traits",
953
+ ]
954
+
955
+ [[package]]
956
+ name = "num-traits"
957
+ version = "0.2.19"
958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
959
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
960
+ dependencies = [
961
+ "autocfg",
962
+ "libm",
963
+ ]
964
+
965
+ [[package]]
966
+ name = "once_cell"
967
+ version = "1.21.4"
968
+ source = "registry+https://github.com/rust-lang/crates.io-index"
969
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
970
+
971
+ [[package]]
972
+ name = "once_cell_polyfill"
973
+ version = "1.70.2"
974
+ source = "registry+https://github.com/rust-lang/crates.io-index"
975
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
976
+
977
+ [[package]]
978
+ name = "ordered-float"
979
+ version = "2.10.1"
980
+ source = "registry+https://github.com/rust-lang/crates.io-index"
981
+ checksum = "68f19d67e5a2795c94e73e0bb1cc1a7edeb2e28efd39e2e1c9b7a40c1108b11c"
982
+ dependencies = [
983
+ "num-traits",
984
+ ]
985
+
986
+ [[package]]
987
+ name = "parquet"
988
+ version = "53.4.1"
989
+ source = "registry+https://github.com/rust-lang/crates.io-index"
990
+ checksum = "2f8cf58b29782a7add991f655ff42929e31a7859f5319e53db9e39a714cb113c"
991
+ dependencies = [
992
+ "ahash",
993
+ "arrow-array",
994
+ "arrow-buffer",
995
+ "arrow-cast",
996
+ "arrow-data",
997
+ "arrow-ipc",
998
+ "arrow-schema",
999
+ "arrow-select",
1000
+ "base64",
1001
+ "brotli",
1002
+ "bytes",
1003
+ "chrono",
1004
+ "flate2",
1005
+ "half",
1006
+ "hashbrown 0.15.5",
1007
+ "lz4_flex",
1008
+ "num",
1009
+ "num-bigint",
1010
+ "paste",
1011
+ "seq-macro",
1012
+ "snap",
1013
+ "thrift",
1014
+ "twox-hash 1.6.3",
1015
+ "zstd",
1016
+ "zstd-sys",
1017
+ ]
1018
+
1019
+ [[package]]
1020
+ name = "paste"
1021
+ version = "1.0.15"
1022
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1023
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
1024
+
1025
+ [[package]]
1026
+ name = "pin-project-lite"
1027
+ version = "0.2.17"
1028
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1029
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
1030
+
1031
+ [[package]]
1032
+ name = "pkg-config"
1033
+ version = "0.3.33"
1034
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1035
+ checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
1036
+
1037
+ [[package]]
1038
+ name = "portable-atomic"
1039
+ version = "1.13.1"
1040
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1041
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
1042
+
1043
+ [[package]]
1044
+ name = "prettyplease"
1045
+ version = "0.2.37"
1046
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1047
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
1048
+ dependencies = [
1049
+ "proc-macro2",
1050
+ "syn",
1051
+ ]
1052
+
1053
+ [[package]]
1054
+ name = "proc-macro2"
1055
+ version = "1.0.106"
1056
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1057
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1058
+ dependencies = [
1059
+ "unicode-ident",
1060
+ ]
1061
+
1062
+ [[package]]
1063
+ name = "pyo3"
1064
+ version = "0.28.3"
1065
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1066
+ checksum = "91fd8e38a3b50ed1167fb981cd6fd60147e091784c427b8f7183a7ee32c31c12"
1067
+ dependencies = [
1068
+ "libc",
1069
+ "once_cell",
1070
+ "portable-atomic",
1071
+ "pyo3-build-config",
1072
+ "pyo3-ffi",
1073
+ "pyo3-macros",
1074
+ ]
1075
+
1076
+ [[package]]
1077
+ name = "pyo3-build-config"
1078
+ version = "0.28.3"
1079
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1080
+ checksum = "e368e7ddfdeb98c9bca7f8383be1648fd84ab466bf2bc015e94008db6d35611e"
1081
+ dependencies = [
1082
+ "target-lexicon",
1083
+ ]
1084
+
1085
+ [[package]]
1086
+ name = "pyo3-ffi"
1087
+ version = "0.28.3"
1088
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1089
+ checksum = "7f29e10af80b1f7ccaf7f69eace800a03ecd13e883acfacc1e5d0988605f651e"
1090
+ dependencies = [
1091
+ "libc",
1092
+ "pyo3-build-config",
1093
+ ]
1094
+
1095
+ [[package]]
1096
+ name = "pyo3-macros"
1097
+ version = "0.28.3"
1098
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1099
+ checksum = "df6e520eff47c45997d2fc7dd8214b25dd1310918bbb2642156ef66a67f29813"
1100
+ dependencies = [
1101
+ "proc-macro2",
1102
+ "pyo3-macros-backend",
1103
+ "quote",
1104
+ "syn",
1105
+ ]
1106
+
1107
+ [[package]]
1108
+ name = "pyo3-macros-backend"
1109
+ version = "0.28.3"
1110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1111
+ checksum = "c4cdc218d835738f81c2338f822078af45b4afdf8b2e33cbb5916f108b813acb"
1112
+ dependencies = [
1113
+ "heck",
1114
+ "proc-macro2",
1115
+ "pyo3-build-config",
1116
+ "quote",
1117
+ "syn",
1118
+ ]
1119
+
1120
+ [[package]]
1121
+ name = "quick-xml"
1122
+ version = "0.36.2"
1123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1124
+ checksum = "f7649a7b4df05aed9ea7ec6f628c67c9953a43869b8bc50929569b2999d443fe"
1125
+ dependencies = [
1126
+ "memchr",
1127
+ "serde",
1128
+ ]
1129
+
1130
+ [[package]]
1131
+ name = "quote"
1132
+ version = "1.0.45"
1133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1134
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
1135
+ dependencies = [
1136
+ "proc-macro2",
1137
+ ]
1138
+
1139
+ [[package]]
1140
+ name = "qvd-bindings-python"
1141
+ version = "0.1.0"
1142
+ dependencies = [
1143
+ "pyo3",
1144
+ "qvd-convert",
1145
+ "qvd-parser",
1146
+ "serde_json",
1147
+ ]
1148
+
1149
+ [[package]]
1150
+ name = "qvd-convert"
1151
+ version = "0.1.0"
1152
+ dependencies = [
1153
+ "arrow",
1154
+ "parquet",
1155
+ "qvd-parser",
1156
+ "serde",
1157
+ "serde_json",
1158
+ "tempfile",
1159
+ "thiserror",
1160
+ ]
1161
+
1162
+ [[package]]
1163
+ name = "qvd-parser"
1164
+ version = "0.1.0"
1165
+ dependencies = [
1166
+ "byteorder",
1167
+ "quick-xml",
1168
+ "serde",
1169
+ "serde_json",
1170
+ "tempfile",
1171
+ "thiserror",
1172
+ ]
1173
+
1174
+ [[package]]
1175
+ name = "qvd-parser-cli"
1176
+ version = "0.1.0"
1177
+ dependencies = [
1178
+ "anyhow",
1179
+ "clap",
1180
+ "qvd-convert",
1181
+ "qvd-parser",
1182
+ "serde",
1183
+ "serde_json",
1184
+ ]
1185
+
1186
+ [[package]]
1187
+ name = "r-efi"
1188
+ version = "5.3.0"
1189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1190
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1191
+
1192
+ [[package]]
1193
+ name = "r-efi"
1194
+ version = "6.0.0"
1195
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1196
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
1197
+
1198
+ [[package]]
1199
+ name = "regex"
1200
+ version = "1.12.3"
1201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1202
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
1203
+ dependencies = [
1204
+ "aho-corasick",
1205
+ "memchr",
1206
+ "regex-automata",
1207
+ "regex-syntax",
1208
+ ]
1209
+
1210
+ [[package]]
1211
+ name = "regex-automata"
1212
+ version = "0.4.14"
1213
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1214
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
1215
+ dependencies = [
1216
+ "aho-corasick",
1217
+ "memchr",
1218
+ "regex-syntax",
1219
+ ]
1220
+
1221
+ [[package]]
1222
+ name = "regex-syntax"
1223
+ version = "0.8.10"
1224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1225
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
1226
+
1227
+ [[package]]
1228
+ name = "rustc_version"
1229
+ version = "0.4.1"
1230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1231
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
1232
+ dependencies = [
1233
+ "semver",
1234
+ ]
1235
+
1236
+ [[package]]
1237
+ name = "rustix"
1238
+ version = "1.1.4"
1239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1240
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
1241
+ dependencies = [
1242
+ "bitflags 2.11.1",
1243
+ "errno",
1244
+ "libc",
1245
+ "linux-raw-sys",
1246
+ "windows-sys",
1247
+ ]
1248
+
1249
+ [[package]]
1250
+ name = "rustversion"
1251
+ version = "1.0.22"
1252
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1253
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1254
+
1255
+ [[package]]
1256
+ name = "ryu"
1257
+ version = "1.0.23"
1258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1259
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
1260
+
1261
+ [[package]]
1262
+ name = "semver"
1263
+ version = "1.0.28"
1264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1265
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
1266
+
1267
+ [[package]]
1268
+ name = "seq-macro"
1269
+ version = "0.3.6"
1270
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1271
+ checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
1272
+
1273
+ [[package]]
1274
+ name = "serde"
1275
+ version = "1.0.228"
1276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1277
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1278
+ dependencies = [
1279
+ "serde_core",
1280
+ "serde_derive",
1281
+ ]
1282
+
1283
+ [[package]]
1284
+ name = "serde_core"
1285
+ version = "1.0.228"
1286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1287
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1288
+ dependencies = [
1289
+ "serde_derive",
1290
+ ]
1291
+
1292
+ [[package]]
1293
+ name = "serde_derive"
1294
+ version = "1.0.228"
1295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1296
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1297
+ dependencies = [
1298
+ "proc-macro2",
1299
+ "quote",
1300
+ "syn",
1301
+ ]
1302
+
1303
+ [[package]]
1304
+ name = "serde_json"
1305
+ version = "1.0.149"
1306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1307
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
1308
+ dependencies = [
1309
+ "itoa",
1310
+ "memchr",
1311
+ "serde",
1312
+ "serde_core",
1313
+ "zmij",
1314
+ ]
1315
+
1316
+ [[package]]
1317
+ name = "shlex"
1318
+ version = "1.3.0"
1319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1320
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1321
+
1322
+ [[package]]
1323
+ name = "simd-adler32"
1324
+ version = "0.3.9"
1325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1326
+ checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
1327
+
1328
+ [[package]]
1329
+ name = "slab"
1330
+ version = "0.4.12"
1331
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1332
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1333
+
1334
+ [[package]]
1335
+ name = "snap"
1336
+ version = "1.1.1"
1337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1338
+ checksum = "1b6b67fb9a61334225b5b790716f609cd58395f895b3fe8b328786812a40bc3b"
1339
+
1340
+ [[package]]
1341
+ name = "static_assertions"
1342
+ version = "1.1.0"
1343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1344
+ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
1345
+
1346
+ [[package]]
1347
+ name = "strsim"
1348
+ version = "0.11.1"
1349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1350
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1351
+
1352
+ [[package]]
1353
+ name = "syn"
1354
+ version = "2.0.117"
1355
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1356
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
1357
+ dependencies = [
1358
+ "proc-macro2",
1359
+ "quote",
1360
+ "unicode-ident",
1361
+ ]
1362
+
1363
+ [[package]]
1364
+ name = "target-lexicon"
1365
+ version = "0.13.5"
1366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1367
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
1368
+
1369
+ [[package]]
1370
+ name = "tempfile"
1371
+ version = "3.27.0"
1372
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1373
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
1374
+ dependencies = [
1375
+ "fastrand",
1376
+ "getrandom 0.4.2",
1377
+ "once_cell",
1378
+ "rustix",
1379
+ "windows-sys",
1380
+ ]
1381
+
1382
+ [[package]]
1383
+ name = "thiserror"
1384
+ version = "1.0.69"
1385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1386
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
1387
+ dependencies = [
1388
+ "thiserror-impl",
1389
+ ]
1390
+
1391
+ [[package]]
1392
+ name = "thiserror-impl"
1393
+ version = "1.0.69"
1394
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1395
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
1396
+ dependencies = [
1397
+ "proc-macro2",
1398
+ "quote",
1399
+ "syn",
1400
+ ]
1401
+
1402
+ [[package]]
1403
+ name = "thrift"
1404
+ version = "0.17.0"
1405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1406
+ checksum = "7e54bc85fc7faa8bc175c4bab5b92ba8d9a3ce893d0e9f42cc455c8ab16a9e09"
1407
+ dependencies = [
1408
+ "byteorder",
1409
+ "integer-encoding",
1410
+ "ordered-float",
1411
+ ]
1412
+
1413
+ [[package]]
1414
+ name = "tiny-keccak"
1415
+ version = "2.0.2"
1416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1417
+ checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
1418
+ dependencies = [
1419
+ "crunchy",
1420
+ ]
1421
+
1422
+ [[package]]
1423
+ name = "twox-hash"
1424
+ version = "1.6.3"
1425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1426
+ checksum = "97fee6b57c6a41524a810daee9286c02d7752c4253064d0b05472833a438f675"
1427
+ dependencies = [
1428
+ "cfg-if",
1429
+ "static_assertions",
1430
+ ]
1431
+
1432
+ [[package]]
1433
+ name = "twox-hash"
1434
+ version = "2.1.2"
1435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1436
+ checksum = "9ea3136b675547379c4bd395ca6b938e5ad3c3d20fad76e7fe85f9e0d011419c"
1437
+
1438
+ [[package]]
1439
+ name = "unicode-ident"
1440
+ version = "1.0.24"
1441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1442
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1443
+
1444
+ [[package]]
1445
+ name = "unicode-xid"
1446
+ version = "0.2.6"
1447
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1448
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
1449
+
1450
+ [[package]]
1451
+ name = "utf8parse"
1452
+ version = "0.2.2"
1453
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1454
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
1455
+
1456
+ [[package]]
1457
+ name = "version_check"
1458
+ version = "0.9.5"
1459
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1460
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
1461
+
1462
+ [[package]]
1463
+ name = "wasi"
1464
+ version = "0.11.1+wasi-snapshot-preview1"
1465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1466
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1467
+
1468
+ [[package]]
1469
+ name = "wasip2"
1470
+ version = "1.0.3+wasi-0.2.9"
1471
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1472
+ checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
1473
+ dependencies = [
1474
+ "wit-bindgen 0.57.1",
1475
+ ]
1476
+
1477
+ [[package]]
1478
+ name = "wasip3"
1479
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
1480
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1481
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
1482
+ dependencies = [
1483
+ "wit-bindgen 0.51.0",
1484
+ ]
1485
+
1486
+ [[package]]
1487
+ name = "wasm-bindgen"
1488
+ version = "0.2.120"
1489
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1490
+ checksum = "df52b6d9b87e0c74c9edfa1eb2d9bf85e5d63515474513aa50fa181b3c4f5db1"
1491
+ dependencies = [
1492
+ "cfg-if",
1493
+ "once_cell",
1494
+ "rustversion",
1495
+ "wasm-bindgen-macro",
1496
+ "wasm-bindgen-shared",
1497
+ ]
1498
+
1499
+ [[package]]
1500
+ name = "wasm-bindgen-macro"
1501
+ version = "0.2.120"
1502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1503
+ checksum = "78b1041f495fb322e64aca85f5756b2172e35cd459376e67f2a6c9dffcedb103"
1504
+ dependencies = [
1505
+ "quote",
1506
+ "wasm-bindgen-macro-support",
1507
+ ]
1508
+
1509
+ [[package]]
1510
+ name = "wasm-bindgen-macro-support"
1511
+ version = "0.2.120"
1512
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1513
+ checksum = "9dcd0ff20416988a18ac686d4d4d0f6aae9ebf08a389ff5d29012b05af2a1b41"
1514
+ dependencies = [
1515
+ "bumpalo",
1516
+ "proc-macro2",
1517
+ "quote",
1518
+ "syn",
1519
+ "wasm-bindgen-shared",
1520
+ ]
1521
+
1522
+ [[package]]
1523
+ name = "wasm-bindgen-shared"
1524
+ version = "0.2.120"
1525
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1526
+ checksum = "49757b3c82ebf16c57d69365a142940b384176c24df52a087fb748e2085359ea"
1527
+ dependencies = [
1528
+ "unicode-ident",
1529
+ ]
1530
+
1531
+ [[package]]
1532
+ name = "wasm-encoder"
1533
+ version = "0.244.0"
1534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1535
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
1536
+ dependencies = [
1537
+ "leb128fmt",
1538
+ "wasmparser",
1539
+ ]
1540
+
1541
+ [[package]]
1542
+ name = "wasm-metadata"
1543
+ version = "0.244.0"
1544
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1545
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
1546
+ dependencies = [
1547
+ "anyhow",
1548
+ "indexmap",
1549
+ "wasm-encoder",
1550
+ "wasmparser",
1551
+ ]
1552
+
1553
+ [[package]]
1554
+ name = "wasmparser"
1555
+ version = "0.244.0"
1556
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1557
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
1558
+ dependencies = [
1559
+ "bitflags 2.11.1",
1560
+ "hashbrown 0.15.5",
1561
+ "indexmap",
1562
+ "semver",
1563
+ ]
1564
+
1565
+ [[package]]
1566
+ name = "windows-core"
1567
+ version = "0.62.2"
1568
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1569
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
1570
+ dependencies = [
1571
+ "windows-implement",
1572
+ "windows-interface",
1573
+ "windows-link",
1574
+ "windows-result",
1575
+ "windows-strings",
1576
+ ]
1577
+
1578
+ [[package]]
1579
+ name = "windows-implement"
1580
+ version = "0.60.2"
1581
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1582
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
1583
+ dependencies = [
1584
+ "proc-macro2",
1585
+ "quote",
1586
+ "syn",
1587
+ ]
1588
+
1589
+ [[package]]
1590
+ name = "windows-interface"
1591
+ version = "0.59.3"
1592
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1593
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
1594
+ dependencies = [
1595
+ "proc-macro2",
1596
+ "quote",
1597
+ "syn",
1598
+ ]
1599
+
1600
+ [[package]]
1601
+ name = "windows-link"
1602
+ version = "0.2.1"
1603
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1604
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1605
+
1606
+ [[package]]
1607
+ name = "windows-result"
1608
+ version = "0.4.1"
1609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1610
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
1611
+ dependencies = [
1612
+ "windows-link",
1613
+ ]
1614
+
1615
+ [[package]]
1616
+ name = "windows-strings"
1617
+ version = "0.5.1"
1618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1619
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
1620
+ dependencies = [
1621
+ "windows-link",
1622
+ ]
1623
+
1624
+ [[package]]
1625
+ name = "windows-sys"
1626
+ version = "0.61.2"
1627
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1628
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1629
+ dependencies = [
1630
+ "windows-link",
1631
+ ]
1632
+
1633
+ [[package]]
1634
+ name = "windows-targets"
1635
+ version = "0.52.6"
1636
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1637
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
1638
+ dependencies = [
1639
+ "windows_aarch64_gnullvm",
1640
+ "windows_aarch64_msvc",
1641
+ "windows_i686_gnu",
1642
+ "windows_i686_gnullvm",
1643
+ "windows_i686_msvc",
1644
+ "windows_x86_64_gnu",
1645
+ "windows_x86_64_gnullvm",
1646
+ "windows_x86_64_msvc",
1647
+ ]
1648
+
1649
+ [[package]]
1650
+ name = "windows_aarch64_gnullvm"
1651
+ version = "0.52.6"
1652
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1653
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
1654
+
1655
+ [[package]]
1656
+ name = "windows_aarch64_msvc"
1657
+ version = "0.52.6"
1658
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1659
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
1660
+
1661
+ [[package]]
1662
+ name = "windows_i686_gnu"
1663
+ version = "0.52.6"
1664
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1665
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
1666
+
1667
+ [[package]]
1668
+ name = "windows_i686_gnullvm"
1669
+ version = "0.52.6"
1670
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1671
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
1672
+
1673
+ [[package]]
1674
+ name = "windows_i686_msvc"
1675
+ version = "0.52.6"
1676
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1677
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
1678
+
1679
+ [[package]]
1680
+ name = "windows_x86_64_gnu"
1681
+ version = "0.52.6"
1682
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1683
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
1684
+
1685
+ [[package]]
1686
+ name = "windows_x86_64_gnullvm"
1687
+ version = "0.52.6"
1688
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1689
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
1690
+
1691
+ [[package]]
1692
+ name = "windows_x86_64_msvc"
1693
+ version = "0.52.6"
1694
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1695
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
1696
+
1697
+ [[package]]
1698
+ name = "wit-bindgen"
1699
+ version = "0.51.0"
1700
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1701
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
1702
+ dependencies = [
1703
+ "wit-bindgen-rust-macro",
1704
+ ]
1705
+
1706
+ [[package]]
1707
+ name = "wit-bindgen"
1708
+ version = "0.57.1"
1709
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1710
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
1711
+
1712
+ [[package]]
1713
+ name = "wit-bindgen-core"
1714
+ version = "0.51.0"
1715
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1716
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
1717
+ dependencies = [
1718
+ "anyhow",
1719
+ "heck",
1720
+ "wit-parser",
1721
+ ]
1722
+
1723
+ [[package]]
1724
+ name = "wit-bindgen-rust"
1725
+ version = "0.51.0"
1726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1727
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
1728
+ dependencies = [
1729
+ "anyhow",
1730
+ "heck",
1731
+ "indexmap",
1732
+ "prettyplease",
1733
+ "syn",
1734
+ "wasm-metadata",
1735
+ "wit-bindgen-core",
1736
+ "wit-component",
1737
+ ]
1738
+
1739
+ [[package]]
1740
+ name = "wit-bindgen-rust-macro"
1741
+ version = "0.51.0"
1742
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1743
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
1744
+ dependencies = [
1745
+ "anyhow",
1746
+ "prettyplease",
1747
+ "proc-macro2",
1748
+ "quote",
1749
+ "syn",
1750
+ "wit-bindgen-core",
1751
+ "wit-bindgen-rust",
1752
+ ]
1753
+
1754
+ [[package]]
1755
+ name = "wit-component"
1756
+ version = "0.244.0"
1757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1758
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
1759
+ dependencies = [
1760
+ "anyhow",
1761
+ "bitflags 2.11.1",
1762
+ "indexmap",
1763
+ "log",
1764
+ "serde",
1765
+ "serde_derive",
1766
+ "serde_json",
1767
+ "wasm-encoder",
1768
+ "wasm-metadata",
1769
+ "wasmparser",
1770
+ "wit-parser",
1771
+ ]
1772
+
1773
+ [[package]]
1774
+ name = "wit-parser"
1775
+ version = "0.244.0"
1776
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1777
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
1778
+ dependencies = [
1779
+ "anyhow",
1780
+ "id-arena",
1781
+ "indexmap",
1782
+ "log",
1783
+ "semver",
1784
+ "serde",
1785
+ "serde_derive",
1786
+ "serde_json",
1787
+ "unicode-xid",
1788
+ "wasmparser",
1789
+ ]
1790
+
1791
+ [[package]]
1792
+ name = "zerocopy"
1793
+ version = "0.8.48"
1794
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1795
+ checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
1796
+ dependencies = [
1797
+ "zerocopy-derive",
1798
+ ]
1799
+
1800
+ [[package]]
1801
+ name = "zerocopy-derive"
1802
+ version = "0.8.48"
1803
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1804
+ checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
1805
+ dependencies = [
1806
+ "proc-macro2",
1807
+ "quote",
1808
+ "syn",
1809
+ ]
1810
+
1811
+ [[package]]
1812
+ name = "zmij"
1813
+ version = "1.0.21"
1814
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1815
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
1816
+
1817
+ [[package]]
1818
+ name = "zstd"
1819
+ version = "0.13.3"
1820
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1821
+ checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
1822
+ dependencies = [
1823
+ "zstd-safe",
1824
+ ]
1825
+
1826
+ [[package]]
1827
+ name = "zstd-safe"
1828
+ version = "7.2.1"
1829
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1830
+ checksum = "54a3ab4db68cea366acc5c897c7b4d4d1b8994a9cd6e6f841f8964566a419059"
1831
+ dependencies = [
1832
+ "zstd-sys",
1833
+ ]
1834
+
1835
+ [[package]]
1836
+ name = "zstd-sys"
1837
+ version = "2.0.13+zstd.1.5.6"
1838
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1839
+ checksum = "38ff0f21cfee8f97d94cef41359e0c89aa6113028ab0291aa8ca0038995a95aa"
1840
+ dependencies = [
1841
+ "cc",
1842
+ "pkg-config",
1843
+ ]