wickra-backtest 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 (44) hide show
  1. wickra_backtest-0.1.0/Cargo.lock +2295 -0
  2. wickra_backtest-0.1.0/Cargo.toml +88 -0
  3. wickra_backtest-0.1.0/PKG-INFO +428 -0
  4. wickra_backtest-0.1.0/README.md +396 -0
  5. wickra_backtest-0.1.0/bindings/python/Cargo.toml +24 -0
  6. wickra_backtest-0.1.0/bindings/python/LICENSE-APACHE +201 -0
  7. wickra_backtest-0.1.0/bindings/python/LICENSE-MIT +21 -0
  8. wickra_backtest-0.1.0/bindings/python/README.md +396 -0
  9. wickra_backtest-0.1.0/bindings/python/benchmarks/__init__.py +0 -0
  10. wickra_backtest-0.1.0/bindings/python/benchmarks/compare_libraries.py +176 -0
  11. wickra_backtest-0.1.0/bindings/python/benchmarks/throughput.py +113 -0
  12. wickra_backtest-0.1.0/bindings/python/src/lib.rs +204 -0
  13. wickra_backtest-0.1.0/bindings/python/tests/run_without_pytest.py +66 -0
  14. wickra_backtest-0.1.0/bindings/python/tests/test_completeness.py +47 -0
  15. wickra_backtest-0.1.0/bindings/python/tests/test_golden.py +32 -0
  16. wickra_backtest-0.1.0/bindings/python/tests/test_golden_json.py +24 -0
  17. wickra_backtest-0.1.0/bindings/python/tests/test_golden_streaming.py +34 -0
  18. wickra_backtest-0.1.0/bindings/python/tests/test_smoke.py +103 -0
  19. wickra_backtest-0.1.0/bindings/python/tests/test_streaming.py +179 -0
  20. wickra_backtest-0.1.0/bindings/python/tests/test_stub_completeness.py +181 -0
  21. wickra_backtest-0.1.0/crates/wickra-backtest-core/Cargo.toml +32 -0
  22. wickra_backtest-0.1.0/crates/wickra-backtest-core/LICENSE-APACHE +201 -0
  23. wickra_backtest-0.1.0/crates/wickra-backtest-core/LICENSE-MIT +21 -0
  24. wickra_backtest-0.1.0/crates/wickra-backtest-core/README.md +396 -0
  25. wickra_backtest-0.1.0/crates/wickra-backtest-core/src/data.rs +360 -0
  26. wickra_backtest-0.1.0/crates/wickra-backtest-core/src/engine.rs +2843 -0
  27. wickra_backtest-0.1.0/crates/wickra-backtest-core/src/error.rs +39 -0
  28. wickra_backtest-0.1.0/crates/wickra-backtest-core/src/lib.rs +103 -0
  29. wickra_backtest-0.1.0/crates/wickra-backtest-core/src/metrics.rs +190 -0
  30. wickra_backtest-0.1.0/crates/wickra-backtest-core/src/portfolio.rs +158 -0
  31. wickra_backtest-0.1.0/crates/wickra-backtest-core/src/registry.rs +3354 -0
  32. wickra_backtest-0.1.0/crates/wickra-backtest-core/src/report.rs +45 -0
  33. wickra_backtest-0.1.0/crates/wickra-backtest-core/src/request.rs +209 -0
  34. wickra_backtest-0.1.0/crates/wickra-backtest-core/src/rules.rs +520 -0
  35. wickra_backtest-0.1.0/crates/wickra-backtest-core/src/spec.rs +784 -0
  36. wickra_backtest-0.1.0/crates/wickra-backtest-core/tests/example_specs.rs +35 -0
  37. wickra_backtest-0.1.0/crates/wickra-backtest-core/tests/golden.rs +81 -0
  38. wickra_backtest-0.1.0/crates/wickra-backtest-core/tests/golden_json.rs +51 -0
  39. wickra_backtest-0.1.0/crates/wickra-backtest-core/tests/golden_streaming.rs +71 -0
  40. wickra_backtest-0.1.0/crates/wickra-backtest-core/tests/properties.rs +98 -0
  41. wickra_backtest-0.1.0/pyproject.toml +63 -0
  42. wickra_backtest-0.1.0/python/wickra_backtest/__init__.py +165 -0
  43. wickra_backtest-0.1.0/python/wickra_backtest/__init__.pyi +73 -0
  44. wickra_backtest-0.1.0/python/wickra_backtest/py.typed +0 -0
@@ -0,0 +1,2295 @@
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.4"
43
+ source = "registry+https://github.com/rust-lang/crates.io-index"
44
+ checksum = "0e76a019e91224d279006ff972f1e984179a6e9feb050adba6ce8274aef23195"
45
+ dependencies = [
46
+ "alloc-no-stdlib",
47
+ ]
48
+
49
+ [[package]]
50
+ name = "alloca"
51
+ version = "0.4.0"
52
+ source = "registry+https://github.com/rust-lang/crates.io-index"
53
+ checksum = "e5a7d05ea6aea7e9e64d25b9156ba2fee3fdd659e34e41063cd2fc7cd020d7f4"
54
+ dependencies = [
55
+ "cc",
56
+ ]
57
+
58
+ [[package]]
59
+ name = "android_system_properties"
60
+ version = "0.1.5"
61
+ source = "registry+https://github.com/rust-lang/crates.io-index"
62
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
63
+ dependencies = [
64
+ "libc",
65
+ ]
66
+
67
+ [[package]]
68
+ name = "anes"
69
+ version = "0.1.6"
70
+ source = "registry+https://github.com/rust-lang/crates.io-index"
71
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
72
+
73
+ [[package]]
74
+ name = "anstream"
75
+ version = "1.0.0"
76
+ source = "registry+https://github.com/rust-lang/crates.io-index"
77
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
78
+ dependencies = [
79
+ "anstyle",
80
+ "anstyle-parse",
81
+ "anstyle-query",
82
+ "anstyle-wincon",
83
+ "colorchoice",
84
+ "is_terminal_polyfill",
85
+ "utf8parse",
86
+ ]
87
+
88
+ [[package]]
89
+ name = "anstyle"
90
+ version = "1.0.14"
91
+ source = "registry+https://github.com/rust-lang/crates.io-index"
92
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
93
+
94
+ [[package]]
95
+ name = "anstyle-parse"
96
+ version = "1.0.0"
97
+ source = "registry+https://github.com/rust-lang/crates.io-index"
98
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
99
+ dependencies = [
100
+ "utf8parse",
101
+ ]
102
+
103
+ [[package]]
104
+ name = "anstyle-query"
105
+ version = "1.1.5"
106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
107
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
108
+ dependencies = [
109
+ "windows-sys 0.61.2",
110
+ ]
111
+
112
+ [[package]]
113
+ name = "anstyle-wincon"
114
+ version = "3.0.11"
115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
116
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
117
+ dependencies = [
118
+ "anstyle",
119
+ "once_cell_polyfill",
120
+ "windows-sys 0.61.2",
121
+ ]
122
+
123
+ [[package]]
124
+ name = "arrow-array"
125
+ version = "59.2.0"
126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
127
+ checksum = "bc9a4a4b2b5ecd0e04df03471661cb61f28bed3c7fd50994715129b01b2edb97"
128
+ dependencies = [
129
+ "ahash",
130
+ "arrow-buffer",
131
+ "arrow-data",
132
+ "arrow-schema",
133
+ "chrono",
134
+ "half",
135
+ "hashbrown",
136
+ "num-complex",
137
+ "num-integer",
138
+ "num-traits",
139
+ ]
140
+
141
+ [[package]]
142
+ name = "arrow-buffer"
143
+ version = "59.2.0"
144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
145
+ checksum = "c12b576ef18c1deb80925a248b25ad84f419198d791b8e293fc6aaa60441fe90"
146
+ dependencies = [
147
+ "bytes",
148
+ "half",
149
+ "num-bigint",
150
+ "num-traits",
151
+ ]
152
+
153
+ [[package]]
154
+ name = "arrow-data"
155
+ version = "59.2.0"
156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
157
+ checksum = "723fe4aeed7604e00b9883a465af4ff0a0e6c44c03e41a68c3d1cbc403e0e44d"
158
+ dependencies = [
159
+ "arrow-buffer",
160
+ "arrow-schema",
161
+ "half",
162
+ "num-integer",
163
+ "num-traits",
164
+ ]
165
+
166
+ [[package]]
167
+ name = "arrow-ipc"
168
+ version = "59.2.0"
169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
170
+ checksum = "149437b14371f5b9ec60f5ddc751483ae99d7a7072653c0075e5e469156eea7b"
171
+ dependencies = [
172
+ "arrow-array",
173
+ "arrow-buffer",
174
+ "arrow-data",
175
+ "arrow-schema",
176
+ "arrow-select",
177
+ "flatbuffers",
178
+ ]
179
+
180
+ [[package]]
181
+ name = "arrow-schema"
182
+ version = "59.2.0"
183
+ source = "registry+https://github.com/rust-lang/crates.io-index"
184
+ checksum = "e6fed2ca0d1eade57e811cbe73b98ad50cc08a1183e13b2d2aa43a7df593f40e"
185
+
186
+ [[package]]
187
+ name = "arrow-select"
188
+ version = "59.2.0"
189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
190
+ checksum = "466b19cf75130b891dc1b23a84b343c714c62c64c9c62e365c76aa0ff90a53fb"
191
+ dependencies = [
192
+ "ahash",
193
+ "arrow-array",
194
+ "arrow-buffer",
195
+ "arrow-data",
196
+ "arrow-schema",
197
+ "num-traits",
198
+ ]
199
+
200
+ [[package]]
201
+ name = "autocfg"
202
+ version = "1.5.1"
203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
204
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
205
+
206
+ [[package]]
207
+ name = "base64"
208
+ version = "0.22.1"
209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
210
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
211
+
212
+ [[package]]
213
+ name = "base64"
214
+ version = "0.23.1"
215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
216
+ checksum = "ac07cdecf99051d9a5238b80f35af32cdeba5b336e55d957b318b50137e18da5"
217
+
218
+ [[package]]
219
+ name = "bit-set"
220
+ version = "0.8.0"
221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
222
+ checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
223
+ dependencies = [
224
+ "bit-vec",
225
+ ]
226
+
227
+ [[package]]
228
+ name = "bit-vec"
229
+ version = "0.8.0"
230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
231
+ checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
232
+
233
+ [[package]]
234
+ name = "bitflags"
235
+ version = "2.13.0"
236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
237
+ checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
238
+
239
+ [[package]]
240
+ name = "brotli"
241
+ version = "8.0.4"
242
+ source = "registry+https://github.com/rust-lang/crates.io-index"
243
+ checksum = "5cc91aac060a7a1e25823bdccbfb6af1875b88f17c6daac97894eed8207166b3"
244
+ dependencies = [
245
+ "alloc-no-stdlib",
246
+ "alloc-stdlib",
247
+ "brotli-decompressor",
248
+ ]
249
+
250
+ [[package]]
251
+ name = "brotli-decompressor"
252
+ version = "5.0.3"
253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
254
+ checksum = "3a32acac15fe1967bc3986b2a6347dffc965602354ea6f450ad07e8bfd253583"
255
+ dependencies = [
256
+ "alloc-no-stdlib",
257
+ "alloc-stdlib",
258
+ ]
259
+
260
+ [[package]]
261
+ name = "bumpalo"
262
+ version = "3.20.3"
263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
264
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
265
+
266
+ [[package]]
267
+ name = "bytes"
268
+ version = "1.12.0"
269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
270
+ checksum = "8ae3f5d315924270530207e2a68396c3cc547f6dca3fbdca317cfb1a51edb593"
271
+
272
+ [[package]]
273
+ name = "cast"
274
+ version = "0.3.0"
275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
276
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
277
+
278
+ [[package]]
279
+ name = "cc"
280
+ version = "1.2.65"
281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
282
+ checksum = "e228eec9be7c17ccb640b59b36a5cd805ea2a564a4c5e162c2f659fea30d3b96"
283
+ dependencies = [
284
+ "find-msvc-tools",
285
+ "jobserver",
286
+ "libc",
287
+ "shlex",
288
+ ]
289
+
290
+ [[package]]
291
+ name = "cfg-if"
292
+ version = "1.0.4"
293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
294
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
295
+
296
+ [[package]]
297
+ name = "chrono"
298
+ version = "0.4.45"
299
+ source = "registry+https://github.com/rust-lang/crates.io-index"
300
+ checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
301
+ dependencies = [
302
+ "iana-time-zone",
303
+ "num-traits",
304
+ "windows-link",
305
+ ]
306
+
307
+ [[package]]
308
+ name = "ciborium"
309
+ version = "0.2.2"
310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
311
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
312
+ dependencies = [
313
+ "ciborium-io",
314
+ "ciborium-ll",
315
+ "serde",
316
+ ]
317
+
318
+ [[package]]
319
+ name = "ciborium-io"
320
+ version = "0.2.2"
321
+ source = "registry+https://github.com/rust-lang/crates.io-index"
322
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
323
+
324
+ [[package]]
325
+ name = "ciborium-ll"
326
+ version = "0.2.2"
327
+ source = "registry+https://github.com/rust-lang/crates.io-index"
328
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
329
+ dependencies = [
330
+ "ciborium-io",
331
+ "half",
332
+ ]
333
+
334
+ [[package]]
335
+ name = "clap"
336
+ version = "4.6.6"
337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
338
+ checksum = "473c7e07f409a8d772161724aa8db6a765a2532a70f9667eeb7b49d3d02fbdca"
339
+ dependencies = [
340
+ "clap_builder",
341
+ "clap_derive",
342
+ ]
343
+
344
+ [[package]]
345
+ name = "clap_builder"
346
+ version = "4.6.6"
347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
348
+ checksum = "7b48fea5a88e9ae728a2dcbedbfc0e730f7d60da42e1cb049a83c9fb8b789889"
349
+ dependencies = [
350
+ "anstream",
351
+ "anstyle",
352
+ "clap_lex",
353
+ "strsim",
354
+ ]
355
+
356
+ [[package]]
357
+ name = "clap_derive"
358
+ version = "4.6.4"
359
+ source = "registry+https://github.com/rust-lang/crates.io-index"
360
+ checksum = "d012d2b9d65aca7f18f4d9878a045bc17899bba951561ba5ec3c2ba1eed9a061"
361
+ dependencies = [
362
+ "heck",
363
+ "proc-macro2",
364
+ "quote",
365
+ "syn 3.0.3",
366
+ ]
367
+
368
+ [[package]]
369
+ name = "clap_lex"
370
+ version = "1.1.0"
371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
372
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
373
+
374
+ [[package]]
375
+ name = "colorchoice"
376
+ version = "1.0.5"
377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
378
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
379
+
380
+ [[package]]
381
+ name = "const-random"
382
+ version = "0.1.18"
383
+ source = "registry+https://github.com/rust-lang/crates.io-index"
384
+ checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359"
385
+ dependencies = [
386
+ "const-random-macro",
387
+ ]
388
+
389
+ [[package]]
390
+ name = "const-random-macro"
391
+ version = "0.1.16"
392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
393
+ checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e"
394
+ dependencies = [
395
+ "getrandom 0.2.17",
396
+ "once_cell",
397
+ "tiny-keccak",
398
+ ]
399
+
400
+ [[package]]
401
+ name = "convert_case"
402
+ version = "0.11.0"
403
+ source = "registry+https://github.com/rust-lang/crates.io-index"
404
+ checksum = "affbf0190ed2caf063e3def54ff444b449371d55c58e513a95ab98eca50adb49"
405
+ dependencies = [
406
+ "unicode-segmentation",
407
+ ]
408
+
409
+ [[package]]
410
+ name = "core-foundation-sys"
411
+ version = "0.8.7"
412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
413
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
414
+
415
+ [[package]]
416
+ name = "crc32fast"
417
+ version = "1.5.0"
418
+ source = "registry+https://github.com/rust-lang/crates.io-index"
419
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
420
+ dependencies = [
421
+ "cfg-if",
422
+ ]
423
+
424
+ [[package]]
425
+ name = "criterion"
426
+ version = "0.8.2"
427
+ source = "registry+https://github.com/rust-lang/crates.io-index"
428
+ checksum = "950046b2aa2492f9a536f5f4f9a3de7b9e2476e575e05bd6c333371add4d98f3"
429
+ dependencies = [
430
+ "alloca",
431
+ "anes",
432
+ "cast",
433
+ "ciborium",
434
+ "clap",
435
+ "criterion-plot",
436
+ "itertools",
437
+ "num-traits",
438
+ "oorandom",
439
+ "page_size",
440
+ "regex",
441
+ "serde",
442
+ "serde_json",
443
+ "tinytemplate",
444
+ "walkdir",
445
+ ]
446
+
447
+ [[package]]
448
+ name = "criterion-plot"
449
+ version = "0.8.2"
450
+ source = "registry+https://github.com/rust-lang/crates.io-index"
451
+ checksum = "d8d80a2f4f5b554395e47b5d8305bc3d27813bacb73493eb1001e8f76dae29ea"
452
+ dependencies = [
453
+ "cast",
454
+ "itertools",
455
+ ]
456
+
457
+ [[package]]
458
+ name = "crossbeam-deque"
459
+ version = "0.8.6"
460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
461
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
462
+ dependencies = [
463
+ "crossbeam-epoch",
464
+ "crossbeam-utils",
465
+ ]
466
+
467
+ [[package]]
468
+ name = "crossbeam-epoch"
469
+ version = "0.9.20"
470
+ source = "registry+https://github.com/rust-lang/crates.io-index"
471
+ checksum = "2d6914041f254d6e9176c01941b21115dcfb7089e55135a35411081bd106ef3f"
472
+ dependencies = [
473
+ "crossbeam-utils",
474
+ ]
475
+
476
+ [[package]]
477
+ name = "crossbeam-utils"
478
+ version = "0.8.21"
479
+ source = "registry+https://github.com/rust-lang/crates.io-index"
480
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
481
+
482
+ [[package]]
483
+ name = "crunchy"
484
+ version = "0.2.4"
485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
486
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
487
+
488
+ [[package]]
489
+ name = "ctor"
490
+ version = "1.0.7"
491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
492
+ checksum = "01334b89b69ff726750c5ce5073fc8bd860e99aa9a8fc5ca11b04730e3aee97a"
493
+
494
+ [[package]]
495
+ name = "displaydoc"
496
+ version = "0.2.6"
497
+ source = "registry+https://github.com/rust-lang/crates.io-index"
498
+ checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f"
499
+ dependencies = [
500
+ "proc-macro2",
501
+ "quote",
502
+ "syn 2.0.118",
503
+ ]
504
+
505
+ [[package]]
506
+ name = "dyn-clone"
507
+ version = "1.0.20"
508
+ source = "registry+https://github.com/rust-lang/crates.io-index"
509
+ checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
510
+
511
+ [[package]]
512
+ name = "either"
513
+ version = "1.16.0"
514
+ source = "registry+https://github.com/rust-lang/crates.io-index"
515
+ checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
516
+
517
+ [[package]]
518
+ name = "errno"
519
+ version = "0.3.14"
520
+ source = "registry+https://github.com/rust-lang/crates.io-index"
521
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
522
+ dependencies = [
523
+ "libc",
524
+ "windows-sys 0.52.0",
525
+ ]
526
+
527
+ [[package]]
528
+ name = "fastrand"
529
+ version = "2.4.1"
530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
531
+ checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
532
+
533
+ [[package]]
534
+ name = "find-msvc-tools"
535
+ version = "0.1.9"
536
+ source = "registry+https://github.com/rust-lang/crates.io-index"
537
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
538
+
539
+ [[package]]
540
+ name = "flatbuffers"
541
+ version = "25.12.19"
542
+ source = "registry+https://github.com/rust-lang/crates.io-index"
543
+ checksum = "35f6839d7b3b98adde531effaf34f0c2badc6f4735d26fe74709d8e513a96ef3"
544
+ dependencies = [
545
+ "bitflags",
546
+ "rustc_version",
547
+ ]
548
+
549
+ [[package]]
550
+ name = "flate2"
551
+ version = "1.1.9"
552
+ source = "registry+https://github.com/rust-lang/crates.io-index"
553
+ checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
554
+ dependencies = [
555
+ "crc32fast",
556
+ "miniz_oxide",
557
+ "zlib-rs",
558
+ ]
559
+
560
+ [[package]]
561
+ name = "fnv"
562
+ version = "1.0.7"
563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
564
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
565
+
566
+ [[package]]
567
+ name = "form_urlencoded"
568
+ version = "1.2.2"
569
+ source = "registry+https://github.com/rust-lang/crates.io-index"
570
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
571
+ dependencies = [
572
+ "percent-encoding",
573
+ ]
574
+
575
+ [[package]]
576
+ name = "futures"
577
+ version = "0.3.32"
578
+ source = "registry+https://github.com/rust-lang/crates.io-index"
579
+ checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
580
+ dependencies = [
581
+ "futures-channel",
582
+ "futures-core",
583
+ "futures-executor",
584
+ "futures-io",
585
+ "futures-sink",
586
+ "futures-task",
587
+ "futures-util",
588
+ ]
589
+
590
+ [[package]]
591
+ name = "futures-channel"
592
+ version = "0.3.32"
593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
594
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
595
+ dependencies = [
596
+ "futures-core",
597
+ "futures-sink",
598
+ ]
599
+
600
+ [[package]]
601
+ name = "futures-core"
602
+ version = "0.3.32"
603
+ source = "registry+https://github.com/rust-lang/crates.io-index"
604
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
605
+
606
+ [[package]]
607
+ name = "futures-executor"
608
+ version = "0.3.32"
609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
610
+ checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
611
+ dependencies = [
612
+ "futures-core",
613
+ "futures-task",
614
+ "futures-util",
615
+ ]
616
+
617
+ [[package]]
618
+ name = "futures-io"
619
+ version = "0.3.32"
620
+ source = "registry+https://github.com/rust-lang/crates.io-index"
621
+ checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
622
+
623
+ [[package]]
624
+ name = "futures-macro"
625
+ version = "0.3.32"
626
+ source = "registry+https://github.com/rust-lang/crates.io-index"
627
+ checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
628
+ dependencies = [
629
+ "proc-macro2",
630
+ "quote",
631
+ "syn 2.0.118",
632
+ ]
633
+
634
+ [[package]]
635
+ name = "futures-sink"
636
+ version = "0.3.32"
637
+ source = "registry+https://github.com/rust-lang/crates.io-index"
638
+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
639
+
640
+ [[package]]
641
+ name = "futures-task"
642
+ version = "0.3.32"
643
+ source = "registry+https://github.com/rust-lang/crates.io-index"
644
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
645
+
646
+ [[package]]
647
+ name = "futures-util"
648
+ version = "0.3.32"
649
+ source = "registry+https://github.com/rust-lang/crates.io-index"
650
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
651
+ dependencies = [
652
+ "futures-channel",
653
+ "futures-core",
654
+ "futures-io",
655
+ "futures-macro",
656
+ "futures-sink",
657
+ "futures-task",
658
+ "memchr",
659
+ "pin-project-lite",
660
+ "slab",
661
+ ]
662
+
663
+ [[package]]
664
+ name = "getrandom"
665
+ version = "0.2.17"
666
+ source = "registry+https://github.com/rust-lang/crates.io-index"
667
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
668
+ dependencies = [
669
+ "cfg-if",
670
+ "libc",
671
+ "wasi",
672
+ ]
673
+
674
+ [[package]]
675
+ name = "getrandom"
676
+ version = "0.3.4"
677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
678
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
679
+ dependencies = [
680
+ "cfg-if",
681
+ "libc",
682
+ "r-efi",
683
+ "wasip2",
684
+ ]
685
+
686
+ [[package]]
687
+ name = "half"
688
+ version = "2.7.1"
689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
690
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
691
+ dependencies = [
692
+ "cfg-if",
693
+ "crunchy",
694
+ "num-traits",
695
+ "zerocopy",
696
+ ]
697
+
698
+ [[package]]
699
+ name = "hashbrown"
700
+ version = "0.17.1"
701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
702
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
703
+
704
+ [[package]]
705
+ name = "heck"
706
+ version = "0.5.0"
707
+ source = "registry+https://github.com/rust-lang/crates.io-index"
708
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
709
+
710
+ [[package]]
711
+ name = "iana-time-zone"
712
+ version = "0.1.65"
713
+ source = "registry+https://github.com/rust-lang/crates.io-index"
714
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
715
+ dependencies = [
716
+ "android_system_properties",
717
+ "core-foundation-sys",
718
+ "iana-time-zone-haiku",
719
+ "js-sys",
720
+ "log",
721
+ "wasm-bindgen",
722
+ "windows-core",
723
+ ]
724
+
725
+ [[package]]
726
+ name = "iana-time-zone-haiku"
727
+ version = "0.1.2"
728
+ source = "registry+https://github.com/rust-lang/crates.io-index"
729
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
730
+ dependencies = [
731
+ "cc",
732
+ ]
733
+
734
+ [[package]]
735
+ name = "icu_collections"
736
+ version = "2.2.0"
737
+ source = "registry+https://github.com/rust-lang/crates.io-index"
738
+ checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
739
+ dependencies = [
740
+ "displaydoc",
741
+ "potential_utf",
742
+ "utf8_iter",
743
+ "yoke",
744
+ "zerofrom",
745
+ "zerovec",
746
+ ]
747
+
748
+ [[package]]
749
+ name = "icu_locale_core"
750
+ version = "2.2.0"
751
+ source = "registry+https://github.com/rust-lang/crates.io-index"
752
+ checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
753
+ dependencies = [
754
+ "displaydoc",
755
+ "litemap",
756
+ "tinystr",
757
+ "writeable",
758
+ "zerovec",
759
+ ]
760
+
761
+ [[package]]
762
+ name = "icu_normalizer"
763
+ version = "2.2.0"
764
+ source = "registry+https://github.com/rust-lang/crates.io-index"
765
+ checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
766
+ dependencies = [
767
+ "icu_collections",
768
+ "icu_normalizer_data",
769
+ "icu_properties",
770
+ "icu_provider",
771
+ "smallvec",
772
+ "zerovec",
773
+ ]
774
+
775
+ [[package]]
776
+ name = "icu_normalizer_data"
777
+ version = "2.2.0"
778
+ source = "registry+https://github.com/rust-lang/crates.io-index"
779
+ checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
780
+
781
+ [[package]]
782
+ name = "icu_properties"
783
+ version = "2.2.0"
784
+ source = "registry+https://github.com/rust-lang/crates.io-index"
785
+ checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
786
+ dependencies = [
787
+ "icu_collections",
788
+ "icu_locale_core",
789
+ "icu_properties_data",
790
+ "icu_provider",
791
+ "zerotrie",
792
+ "zerovec",
793
+ ]
794
+
795
+ [[package]]
796
+ name = "icu_properties_data"
797
+ version = "2.2.0"
798
+ source = "registry+https://github.com/rust-lang/crates.io-index"
799
+ checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
800
+
801
+ [[package]]
802
+ name = "icu_provider"
803
+ version = "2.2.0"
804
+ source = "registry+https://github.com/rust-lang/crates.io-index"
805
+ checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
806
+ dependencies = [
807
+ "displaydoc",
808
+ "icu_locale_core",
809
+ "writeable",
810
+ "yoke",
811
+ "zerofrom",
812
+ "zerotrie",
813
+ "zerovec",
814
+ ]
815
+
816
+ [[package]]
817
+ name = "idna"
818
+ version = "1.1.0"
819
+ source = "registry+https://github.com/rust-lang/crates.io-index"
820
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
821
+ dependencies = [
822
+ "idna_adapter",
823
+ "smallvec",
824
+ "utf8_iter",
825
+ ]
826
+
827
+ [[package]]
828
+ name = "idna_adapter"
829
+ version = "1.2.2"
830
+ source = "registry+https://github.com/rust-lang/crates.io-index"
831
+ checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
832
+ dependencies = [
833
+ "icu_normalizer",
834
+ "icu_properties",
835
+ ]
836
+
837
+ [[package]]
838
+ name = "is_terminal_polyfill"
839
+ version = "1.70.2"
840
+ source = "registry+https://github.com/rust-lang/crates.io-index"
841
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
842
+
843
+ [[package]]
844
+ name = "itertools"
845
+ version = "0.13.0"
846
+ source = "registry+https://github.com/rust-lang/crates.io-index"
847
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
848
+ dependencies = [
849
+ "either",
850
+ ]
851
+
852
+ [[package]]
853
+ name = "itoa"
854
+ version = "1.0.18"
855
+ source = "registry+https://github.com/rust-lang/crates.io-index"
856
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
857
+
858
+ [[package]]
859
+ name = "jobserver"
860
+ version = "0.1.34"
861
+ source = "registry+https://github.com/rust-lang/crates.io-index"
862
+ checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
863
+ dependencies = [
864
+ "getrandom 0.3.4",
865
+ "libc",
866
+ ]
867
+
868
+ [[package]]
869
+ name = "js-sys"
870
+ version = "0.3.103"
871
+ source = "registry+https://github.com/rust-lang/crates.io-index"
872
+ checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102"
873
+ dependencies = [
874
+ "cfg-if",
875
+ "futures-util",
876
+ "wasm-bindgen",
877
+ ]
878
+
879
+ [[package]]
880
+ name = "libc"
881
+ version = "0.2.186"
882
+ source = "registry+https://github.com/rust-lang/crates.io-index"
883
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
884
+
885
+ [[package]]
886
+ name = "libloading"
887
+ version = "0.9.0"
888
+ source = "registry+https://github.com/rust-lang/crates.io-index"
889
+ checksum = "754ca22de805bb5744484a5b151a9e1a8e837d5dc232c2d7d8c2e3492edc8b60"
890
+ dependencies = [
891
+ "cfg-if",
892
+ "windows-link",
893
+ ]
894
+
895
+ [[package]]
896
+ name = "libm"
897
+ version = "0.2.16"
898
+ source = "registry+https://github.com/rust-lang/crates.io-index"
899
+ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
900
+
901
+ [[package]]
902
+ name = "linux-raw-sys"
903
+ version = "0.12.1"
904
+ source = "registry+https://github.com/rust-lang/crates.io-index"
905
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
906
+
907
+ [[package]]
908
+ name = "litemap"
909
+ version = "0.8.2"
910
+ source = "registry+https://github.com/rust-lang/crates.io-index"
911
+ checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
912
+
913
+ [[package]]
914
+ name = "log"
915
+ version = "0.4.33"
916
+ source = "registry+https://github.com/rust-lang/crates.io-index"
917
+ checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
918
+
919
+ [[package]]
920
+ name = "lz4_flex"
921
+ version = "0.14.0"
922
+ source = "registry+https://github.com/rust-lang/crates.io-index"
923
+ checksum = "ecbdfe44b1bd960b68170b417450a628c43f7cf56bb3c5317e61cb230ee7f226"
924
+ dependencies = [
925
+ "twox-hash",
926
+ ]
927
+
928
+ [[package]]
929
+ name = "memchr"
930
+ version = "2.8.2"
931
+ source = "registry+https://github.com/rust-lang/crates.io-index"
932
+ checksum = "88904434abc2901f197fe8cc55f0445e7ded921dba5911dad2e2b39b48e663c4"
933
+
934
+ [[package]]
935
+ name = "miniz_oxide"
936
+ version = "0.8.9"
937
+ source = "registry+https://github.com/rust-lang/crates.io-index"
938
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
939
+ dependencies = [
940
+ "adler2",
941
+ "simd-adler32",
942
+ ]
943
+
944
+ [[package]]
945
+ name = "napi"
946
+ version = "3.11.0"
947
+ source = "registry+https://github.com/rust-lang/crates.io-index"
948
+ checksum = "de33522036981030a75c231829566bc63414e08101a6f5ff4ac6cef19c8e0941"
949
+ dependencies = [
950
+ "bitflags",
951
+ "ctor",
952
+ "futures",
953
+ "napi-build",
954
+ "napi-sys",
955
+ "nohash-hasher",
956
+ "rustc-hash",
957
+ ]
958
+
959
+ [[package]]
960
+ name = "napi-build"
961
+ version = "2.3.2"
962
+ source = "registry+https://github.com/rust-lang/crates.io-index"
963
+ checksum = "c9c366d2c8c60b86fa632df75f745509b52f9128f91a6bad4c796e44abb505e1"
964
+
965
+ [[package]]
966
+ name = "napi-derive"
967
+ version = "3.6.0"
968
+ source = "registry+https://github.com/rust-lang/crates.io-index"
969
+ checksum = "a49c513341a61a16a10af6efcce46b30d0822ba2d4fb197d24d33dfc199c78d5"
970
+ dependencies = [
971
+ "convert_case",
972
+ "ctor",
973
+ "napi-derive-backend",
974
+ "proc-macro2",
975
+ "quote",
976
+ "syn 2.0.118",
977
+ ]
978
+
979
+ [[package]]
980
+ name = "napi-derive-backend"
981
+ version = "6.1.1"
982
+ source = "registry+https://github.com/rust-lang/crates.io-index"
983
+ checksum = "d60b5d773ad46c698c8cc2cd9fde0b283d39cbb7f71c04bee633c7bdba4423bd"
984
+ dependencies = [
985
+ "convert_case",
986
+ "proc-macro2",
987
+ "quote",
988
+ "semver",
989
+ "syn 2.0.118",
990
+ ]
991
+
992
+ [[package]]
993
+ name = "napi-sys"
994
+ version = "3.3.0"
995
+ source = "registry+https://github.com/rust-lang/crates.io-index"
996
+ checksum = "85fbf1fa9f1babfe396d74bbbf52b3643770243e8f5b0b46715d4caf7f0dfc9a"
997
+ dependencies = [
998
+ "libloading",
999
+ ]
1000
+
1001
+ [[package]]
1002
+ name = "nohash-hasher"
1003
+ version = "0.2.0"
1004
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1005
+ checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451"
1006
+
1007
+ [[package]]
1008
+ name = "num-bigint"
1009
+ version = "0.5.1"
1010
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1011
+ checksum = "93e7820bc0a80a0238e650327316f929ba18d5be054b647490a3a6a339f3e7c0"
1012
+ dependencies = [
1013
+ "num-integer",
1014
+ "num-traits",
1015
+ ]
1016
+
1017
+ [[package]]
1018
+ name = "num-complex"
1019
+ version = "0.4.6"
1020
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1021
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
1022
+ dependencies = [
1023
+ "num-traits",
1024
+ ]
1025
+
1026
+ [[package]]
1027
+ name = "num-integer"
1028
+ version = "0.1.46"
1029
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1030
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
1031
+ dependencies = [
1032
+ "num-traits",
1033
+ ]
1034
+
1035
+ [[package]]
1036
+ name = "num-traits"
1037
+ version = "0.2.19"
1038
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1039
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1040
+ dependencies = [
1041
+ "autocfg",
1042
+ "libm",
1043
+ ]
1044
+
1045
+ [[package]]
1046
+ name = "once_cell"
1047
+ version = "1.21.4"
1048
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1049
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
1050
+
1051
+ [[package]]
1052
+ name = "once_cell_polyfill"
1053
+ version = "1.70.2"
1054
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1055
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
1056
+
1057
+ [[package]]
1058
+ name = "oorandom"
1059
+ version = "11.1.5"
1060
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1061
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
1062
+
1063
+ [[package]]
1064
+ name = "page_size"
1065
+ version = "0.6.0"
1066
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1067
+ checksum = "30d5b2194ed13191c1999ae0704b7839fb18384fa22e49b57eeaa97d79ce40da"
1068
+ dependencies = [
1069
+ "libc",
1070
+ "winapi",
1071
+ ]
1072
+
1073
+ [[package]]
1074
+ name = "parquet"
1075
+ version = "59.2.0"
1076
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1077
+ checksum = "7065842956a20c2a536924ce8e4d9955f7422451511b9eb7500d7bfe5077e59c"
1078
+ dependencies = [
1079
+ "ahash",
1080
+ "arrow-array",
1081
+ "arrow-buffer",
1082
+ "arrow-data",
1083
+ "arrow-ipc",
1084
+ "arrow-schema",
1085
+ "arrow-select",
1086
+ "base64 0.23.1",
1087
+ "brotli",
1088
+ "bytes",
1089
+ "chrono",
1090
+ "flate2",
1091
+ "half",
1092
+ "hashbrown",
1093
+ "lz4_flex",
1094
+ "num-bigint",
1095
+ "num-integer",
1096
+ "num-traits",
1097
+ "seq-macro",
1098
+ "simdutf8",
1099
+ "snap",
1100
+ "twox-hash",
1101
+ "zstd",
1102
+ ]
1103
+
1104
+ [[package]]
1105
+ name = "percent-encoding"
1106
+ version = "2.3.2"
1107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1108
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1109
+
1110
+ [[package]]
1111
+ name = "pin-project-lite"
1112
+ version = "0.2.17"
1113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1114
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
1115
+
1116
+ [[package]]
1117
+ name = "pkg-config"
1118
+ version = "0.3.33"
1119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1120
+ checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
1121
+
1122
+ [[package]]
1123
+ name = "portable-atomic"
1124
+ version = "1.13.1"
1125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1126
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
1127
+
1128
+ [[package]]
1129
+ name = "potential_utf"
1130
+ version = "0.1.5"
1131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1132
+ checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
1133
+ dependencies = [
1134
+ "zerovec",
1135
+ ]
1136
+
1137
+ [[package]]
1138
+ name = "ppv-lite86"
1139
+ version = "0.2.21"
1140
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1141
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1142
+ dependencies = [
1143
+ "zerocopy",
1144
+ ]
1145
+
1146
+ [[package]]
1147
+ name = "proc-macro2"
1148
+ version = "1.0.106"
1149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1150
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1151
+ dependencies = [
1152
+ "unicode-ident",
1153
+ ]
1154
+
1155
+ [[package]]
1156
+ name = "proptest"
1157
+ version = "1.11.0"
1158
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1159
+ checksum = "4b45fcc2344c680f5025fe57779faef368840d0bd1f42f216291f0dc4ace4744"
1160
+ dependencies = [
1161
+ "bit-set",
1162
+ "bit-vec",
1163
+ "bitflags",
1164
+ "num-traits",
1165
+ "rand",
1166
+ "rand_chacha",
1167
+ "rand_xorshift",
1168
+ "regex-syntax",
1169
+ "rusty-fork",
1170
+ "tempfile",
1171
+ "unarray",
1172
+ ]
1173
+
1174
+ [[package]]
1175
+ name = "pyo3"
1176
+ version = "0.29.2"
1177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1178
+ checksum = "4688ddedf473e32662b9b067670129a8afb8c18e351482c70d62ba4a88171e8b"
1179
+ dependencies = [
1180
+ "libc",
1181
+ "once_cell",
1182
+ "portable-atomic",
1183
+ "pyo3-build-config",
1184
+ "pyo3-ffi",
1185
+ "pyo3-macros",
1186
+ ]
1187
+
1188
+ [[package]]
1189
+ name = "pyo3-build-config"
1190
+ version = "0.29.2"
1191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1192
+ checksum = "f41027e41b4bd03f6e60f9f417fe24a6341a6bb744edd62b6f709f2a52ea30e9"
1193
+ dependencies = [
1194
+ "target-lexicon",
1195
+ ]
1196
+
1197
+ [[package]]
1198
+ name = "pyo3-ffi"
1199
+ version = "0.29.2"
1200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1201
+ checksum = "e591a95526fead067432c3b3a33fc74770b87b1e04e73671090d9c2055a2b327"
1202
+ dependencies = [
1203
+ "libc",
1204
+ "pyo3-build-config",
1205
+ ]
1206
+
1207
+ [[package]]
1208
+ name = "pyo3-macros"
1209
+ version = "0.29.2"
1210
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1211
+ checksum = "73225868fc1cd84eef2c3c230ddb91273bf1de46aeb8a4248da76d32a0924a1c"
1212
+ dependencies = [
1213
+ "proc-macro2",
1214
+ "pyo3-macros-backend",
1215
+ "quote",
1216
+ "syn 2.0.118",
1217
+ ]
1218
+
1219
+ [[package]]
1220
+ name = "pyo3-macros-backend"
1221
+ version = "0.29.2"
1222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1223
+ checksum = "571575aa3749fa6216757dd47d2a3e7ef360f329a40f0666a9fbd14889024952"
1224
+ dependencies = [
1225
+ "heck",
1226
+ "proc-macro2",
1227
+ "quote",
1228
+ "syn 2.0.118",
1229
+ ]
1230
+
1231
+ [[package]]
1232
+ name = "quick-error"
1233
+ version = "1.2.3"
1234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1235
+ checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
1236
+
1237
+ [[package]]
1238
+ name = "quote"
1239
+ version = "1.0.46"
1240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1241
+ checksum = "dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368"
1242
+ dependencies = [
1243
+ "proc-macro2",
1244
+ ]
1245
+
1246
+ [[package]]
1247
+ name = "r-efi"
1248
+ version = "5.3.0"
1249
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1250
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1251
+
1252
+ [[package]]
1253
+ name = "rand"
1254
+ version = "0.9.4"
1255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1256
+ checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
1257
+ dependencies = [
1258
+ "rand_chacha",
1259
+ "rand_core",
1260
+ ]
1261
+
1262
+ [[package]]
1263
+ name = "rand_chacha"
1264
+ version = "0.9.0"
1265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1266
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
1267
+ dependencies = [
1268
+ "ppv-lite86",
1269
+ "rand_core",
1270
+ ]
1271
+
1272
+ [[package]]
1273
+ name = "rand_core"
1274
+ version = "0.9.5"
1275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1276
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
1277
+ dependencies = [
1278
+ "getrandom 0.3.4",
1279
+ ]
1280
+
1281
+ [[package]]
1282
+ name = "rand_xorshift"
1283
+ version = "0.4.0"
1284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1285
+ checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
1286
+ dependencies = [
1287
+ "rand_core",
1288
+ ]
1289
+
1290
+ [[package]]
1291
+ name = "rayon"
1292
+ version = "1.12.0"
1293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1294
+ checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
1295
+ dependencies = [
1296
+ "either",
1297
+ "rayon-core",
1298
+ ]
1299
+
1300
+ [[package]]
1301
+ name = "rayon-core"
1302
+ version = "1.13.0"
1303
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1304
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
1305
+ dependencies = [
1306
+ "crossbeam-deque",
1307
+ "crossbeam-utils",
1308
+ ]
1309
+
1310
+ [[package]]
1311
+ name = "regex"
1312
+ version = "1.12.4"
1313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1314
+ checksum = "f1292b7759ae1cb9ec195452d1390a074f0cd8541ab7a5a8c31cd6db45d4a6ba"
1315
+ dependencies = [
1316
+ "aho-corasick",
1317
+ "memchr",
1318
+ "regex-automata",
1319
+ "regex-syntax",
1320
+ ]
1321
+
1322
+ [[package]]
1323
+ name = "regex-automata"
1324
+ version = "0.4.14"
1325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1326
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
1327
+ dependencies = [
1328
+ "aho-corasick",
1329
+ "memchr",
1330
+ "regex-syntax",
1331
+ ]
1332
+
1333
+ [[package]]
1334
+ name = "regex-syntax"
1335
+ version = "0.8.11"
1336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1337
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
1338
+
1339
+ [[package]]
1340
+ name = "ring"
1341
+ version = "0.17.14"
1342
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1343
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
1344
+ dependencies = [
1345
+ "cc",
1346
+ "cfg-if",
1347
+ "getrandom 0.2.17",
1348
+ "libc",
1349
+ "untrusted",
1350
+ "windows-sys 0.52.0",
1351
+ ]
1352
+
1353
+ [[package]]
1354
+ name = "rustc-hash"
1355
+ version = "2.1.2"
1356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1357
+ checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
1358
+
1359
+ [[package]]
1360
+ name = "rustc_version"
1361
+ version = "0.4.1"
1362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1363
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
1364
+ dependencies = [
1365
+ "semver",
1366
+ ]
1367
+
1368
+ [[package]]
1369
+ name = "rustix"
1370
+ version = "1.1.4"
1371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1372
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
1373
+ dependencies = [
1374
+ "bitflags",
1375
+ "errno",
1376
+ "libc",
1377
+ "linux-raw-sys",
1378
+ "windows-sys 0.52.0",
1379
+ ]
1380
+
1381
+ [[package]]
1382
+ name = "rustls"
1383
+ version = "0.23.41"
1384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1385
+ checksum = "6b92b125634d9b795e7beca796cc790df15a7fb38323bf3196fda83292d06b1f"
1386
+ dependencies = [
1387
+ "log",
1388
+ "once_cell",
1389
+ "ring",
1390
+ "rustls-pki-types",
1391
+ "rustls-webpki",
1392
+ "subtle",
1393
+ "zeroize",
1394
+ ]
1395
+
1396
+ [[package]]
1397
+ name = "rustls-pki-types"
1398
+ version = "1.14.1"
1399
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1400
+ checksum = "30a7197ae7eb376e574fe940d068c30fe0462554a3ddbe4eca7838e049c937a9"
1401
+ dependencies = [
1402
+ "zeroize",
1403
+ ]
1404
+
1405
+ [[package]]
1406
+ name = "rustls-webpki"
1407
+ version = "0.103.13"
1408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1409
+ checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
1410
+ dependencies = [
1411
+ "ring",
1412
+ "rustls-pki-types",
1413
+ "untrusted",
1414
+ ]
1415
+
1416
+ [[package]]
1417
+ name = "rustversion"
1418
+ version = "1.0.22"
1419
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1420
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1421
+
1422
+ [[package]]
1423
+ name = "rusty-fork"
1424
+ version = "0.3.1"
1425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1426
+ checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2"
1427
+ dependencies = [
1428
+ "fnv",
1429
+ "quick-error",
1430
+ "tempfile",
1431
+ "wait-timeout",
1432
+ ]
1433
+
1434
+ [[package]]
1435
+ name = "same-file"
1436
+ version = "1.0.6"
1437
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1438
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1439
+ dependencies = [
1440
+ "winapi-util",
1441
+ ]
1442
+
1443
+ [[package]]
1444
+ name = "schemars"
1445
+ version = "0.8.22"
1446
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1447
+ checksum = "3fbf2ae1b8bc8e02df939598064d22402220cd5bbcca1c76f7d6a310974d5615"
1448
+ dependencies = [
1449
+ "dyn-clone",
1450
+ "schemars_derive",
1451
+ "serde",
1452
+ "serde_json",
1453
+ ]
1454
+
1455
+ [[package]]
1456
+ name = "schemars_derive"
1457
+ version = "0.8.22"
1458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1459
+ checksum = "32e265784ad618884abaea0600a9adf15393368d840e0222d101a072f3f7534d"
1460
+ dependencies = [
1461
+ "proc-macro2",
1462
+ "quote",
1463
+ "serde_derive_internals",
1464
+ "syn 2.0.118",
1465
+ ]
1466
+
1467
+ [[package]]
1468
+ name = "semver"
1469
+ version = "1.0.28"
1470
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1471
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
1472
+
1473
+ [[package]]
1474
+ name = "seq-macro"
1475
+ version = "0.3.6"
1476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1477
+ checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
1478
+
1479
+ [[package]]
1480
+ name = "serde"
1481
+ version = "1.0.229"
1482
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1483
+ checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
1484
+ dependencies = [
1485
+ "serde_core",
1486
+ "serde_derive",
1487
+ ]
1488
+
1489
+ [[package]]
1490
+ name = "serde_core"
1491
+ version = "1.0.229"
1492
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1493
+ checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
1494
+ dependencies = [
1495
+ "serde_derive",
1496
+ ]
1497
+
1498
+ [[package]]
1499
+ name = "serde_derive"
1500
+ version = "1.0.229"
1501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1502
+ checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
1503
+ dependencies = [
1504
+ "proc-macro2",
1505
+ "quote",
1506
+ "syn 3.0.3",
1507
+ ]
1508
+
1509
+ [[package]]
1510
+ name = "serde_derive_internals"
1511
+ version = "0.29.1"
1512
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1513
+ checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711"
1514
+ dependencies = [
1515
+ "proc-macro2",
1516
+ "quote",
1517
+ "syn 2.0.118",
1518
+ ]
1519
+
1520
+ [[package]]
1521
+ name = "serde_json"
1522
+ version = "1.0.151"
1523
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1524
+ checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
1525
+ dependencies = [
1526
+ "itoa",
1527
+ "memchr",
1528
+ "serde",
1529
+ "serde_core",
1530
+ "zmij",
1531
+ ]
1532
+
1533
+ [[package]]
1534
+ name = "shlex"
1535
+ version = "2.0.1"
1536
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1537
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
1538
+
1539
+ [[package]]
1540
+ name = "simd-adler32"
1541
+ version = "0.3.9"
1542
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1543
+ checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
1544
+
1545
+ [[package]]
1546
+ name = "simdutf8"
1547
+ version = "0.1.5"
1548
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1549
+ checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
1550
+
1551
+ [[package]]
1552
+ name = "slab"
1553
+ version = "0.4.12"
1554
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1555
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1556
+
1557
+ [[package]]
1558
+ name = "smallvec"
1559
+ version = "1.15.2"
1560
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1561
+ checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
1562
+
1563
+ [[package]]
1564
+ name = "snap"
1565
+ version = "1.1.1"
1566
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1567
+ checksum = "1b6b67fb9a61334225b5b790716f609cd58395f895b3fe8b328786812a40bc3b"
1568
+
1569
+ [[package]]
1570
+ name = "stable_deref_trait"
1571
+ version = "1.2.1"
1572
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1573
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
1574
+
1575
+ [[package]]
1576
+ name = "strsim"
1577
+ version = "0.11.1"
1578
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1579
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1580
+
1581
+ [[package]]
1582
+ name = "subtle"
1583
+ version = "2.6.1"
1584
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1585
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
1586
+
1587
+ [[package]]
1588
+ name = "syn"
1589
+ version = "2.0.118"
1590
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1591
+ checksum = "1b9ae57f904213ebb649ce6895b8a66c66f0203b9319718f69a5612a065b1422"
1592
+ dependencies = [
1593
+ "proc-macro2",
1594
+ "quote",
1595
+ "unicode-ident",
1596
+ ]
1597
+
1598
+ [[package]]
1599
+ name = "syn"
1600
+ version = "3.0.3"
1601
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1602
+ checksum = "53e9bae58849f64dfa4f5d5ae372c8341f7305f82a3868709269343628b659a3"
1603
+ dependencies = [
1604
+ "proc-macro2",
1605
+ "quote",
1606
+ "unicode-ident",
1607
+ ]
1608
+
1609
+ [[package]]
1610
+ name = "synstructure"
1611
+ version = "0.13.2"
1612
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1613
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
1614
+ dependencies = [
1615
+ "proc-macro2",
1616
+ "quote",
1617
+ "syn 2.0.118",
1618
+ ]
1619
+
1620
+ [[package]]
1621
+ name = "target-lexicon"
1622
+ version = "0.13.5"
1623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1624
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
1625
+
1626
+ [[package]]
1627
+ name = "tempfile"
1628
+ version = "3.27.0"
1629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1630
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
1631
+ dependencies = [
1632
+ "fastrand",
1633
+ "getrandom 0.3.4",
1634
+ "once_cell",
1635
+ "rustix",
1636
+ "windows-sys 0.52.0",
1637
+ ]
1638
+
1639
+ [[package]]
1640
+ name = "thiserror"
1641
+ version = "2.0.20"
1642
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1643
+ checksum = "ec86235f5fcc2a73650310756d2ac5b138a5780bbbdfae3eeccec992c435ba4f"
1644
+ dependencies = [
1645
+ "thiserror-impl",
1646
+ ]
1647
+
1648
+ [[package]]
1649
+ name = "thiserror-impl"
1650
+ version = "2.0.20"
1651
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1652
+ checksum = "bc04cd3e1236dd4a98afca4569f2deb3f120e5422a4023be2cb683f8486292af"
1653
+ dependencies = [
1654
+ "proc-macro2",
1655
+ "quote",
1656
+ "syn 3.0.3",
1657
+ ]
1658
+
1659
+ [[package]]
1660
+ name = "tiny-keccak"
1661
+ version = "2.0.2"
1662
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1663
+ checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
1664
+ dependencies = [
1665
+ "crunchy",
1666
+ ]
1667
+
1668
+ [[package]]
1669
+ name = "tinystr"
1670
+ version = "0.8.3"
1671
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1672
+ checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
1673
+ dependencies = [
1674
+ "displaydoc",
1675
+ "zerovec",
1676
+ ]
1677
+
1678
+ [[package]]
1679
+ name = "tinytemplate"
1680
+ version = "1.2.1"
1681
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1682
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
1683
+ dependencies = [
1684
+ "serde",
1685
+ "serde_json",
1686
+ ]
1687
+
1688
+ [[package]]
1689
+ name = "twox-hash"
1690
+ version = "2.1.2"
1691
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1692
+ checksum = "9ea3136b675547379c4bd395ca6b938e5ad3c3d20fad76e7fe85f9e0d011419c"
1693
+
1694
+ [[package]]
1695
+ name = "unarray"
1696
+ version = "0.1.4"
1697
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1698
+ checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
1699
+
1700
+ [[package]]
1701
+ name = "unicode-ident"
1702
+ version = "1.0.24"
1703
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1704
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1705
+
1706
+ [[package]]
1707
+ name = "unicode-segmentation"
1708
+ version = "1.13.3"
1709
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1710
+ checksum = "c6f5d3c3b1bf09027a88a6bc961fc00497d651009560b5463668dc81b0fa87a8"
1711
+
1712
+ [[package]]
1713
+ name = "untrusted"
1714
+ version = "0.9.0"
1715
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1716
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
1717
+
1718
+ [[package]]
1719
+ name = "ureq"
1720
+ version = "2.12.1"
1721
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1722
+ checksum = "02d1a66277ed75f640d608235660df48c8e3c19f3b4edb6a263315626cc3c01d"
1723
+ dependencies = [
1724
+ "base64 0.22.1",
1725
+ "flate2",
1726
+ "log",
1727
+ "once_cell",
1728
+ "rustls",
1729
+ "rustls-pki-types",
1730
+ "url",
1731
+ "webpki-roots 0.26.11",
1732
+ ]
1733
+
1734
+ [[package]]
1735
+ name = "url"
1736
+ version = "2.5.8"
1737
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1738
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
1739
+ dependencies = [
1740
+ "form_urlencoded",
1741
+ "idna",
1742
+ "percent-encoding",
1743
+ "serde",
1744
+ ]
1745
+
1746
+ [[package]]
1747
+ name = "utf8_iter"
1748
+ version = "1.0.4"
1749
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1750
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
1751
+
1752
+ [[package]]
1753
+ name = "utf8parse"
1754
+ version = "0.2.2"
1755
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1756
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
1757
+
1758
+ [[package]]
1759
+ name = "version_check"
1760
+ version = "0.9.5"
1761
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1762
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
1763
+
1764
+ [[package]]
1765
+ name = "wait-timeout"
1766
+ version = "0.2.1"
1767
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1768
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
1769
+ dependencies = [
1770
+ "libc",
1771
+ ]
1772
+
1773
+ [[package]]
1774
+ name = "walkdir"
1775
+ version = "2.5.0"
1776
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1777
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
1778
+ dependencies = [
1779
+ "same-file",
1780
+ "winapi-util",
1781
+ ]
1782
+
1783
+ [[package]]
1784
+ name = "wasi"
1785
+ version = "0.11.1+wasi-snapshot-preview1"
1786
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1787
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1788
+
1789
+ [[package]]
1790
+ name = "wasip2"
1791
+ version = "1.0.4+wasi-0.2.12"
1792
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1793
+ checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
1794
+ dependencies = [
1795
+ "wit-bindgen",
1796
+ ]
1797
+
1798
+ [[package]]
1799
+ name = "wasm-bindgen"
1800
+ version = "0.2.126"
1801
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1802
+ checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4"
1803
+ dependencies = [
1804
+ "cfg-if",
1805
+ "once_cell",
1806
+ "rustversion",
1807
+ "wasm-bindgen-macro",
1808
+ "wasm-bindgen-shared",
1809
+ ]
1810
+
1811
+ [[package]]
1812
+ name = "wasm-bindgen-macro"
1813
+ version = "0.2.126"
1814
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1815
+ checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1"
1816
+ dependencies = [
1817
+ "quote",
1818
+ "wasm-bindgen-macro-support",
1819
+ ]
1820
+
1821
+ [[package]]
1822
+ name = "wasm-bindgen-macro-support"
1823
+ version = "0.2.126"
1824
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1825
+ checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e"
1826
+ dependencies = [
1827
+ "bumpalo",
1828
+ "proc-macro2",
1829
+ "quote",
1830
+ "syn 2.0.118",
1831
+ "wasm-bindgen-shared",
1832
+ ]
1833
+
1834
+ [[package]]
1835
+ name = "wasm-bindgen-shared"
1836
+ version = "0.2.126"
1837
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1838
+ checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24"
1839
+ dependencies = [
1840
+ "unicode-ident",
1841
+ ]
1842
+
1843
+ [[package]]
1844
+ name = "webpki-roots"
1845
+ version = "0.26.11"
1846
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1847
+ checksum = "521bc38abb08001b01866da9f51eb7c5d647a19260e00054a8c7fd5f9e57f7a9"
1848
+ dependencies = [
1849
+ "webpki-roots 1.0.8",
1850
+ ]
1851
+
1852
+ [[package]]
1853
+ name = "webpki-roots"
1854
+ version = "1.0.8"
1855
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1856
+ checksum = "bf85cb06032201fa7c6f829d7db5a7e5aa45bcc0655327713065f6f0576731bf"
1857
+ dependencies = [
1858
+ "rustls-pki-types",
1859
+ ]
1860
+
1861
+ [[package]]
1862
+ name = "wickra-backtest"
1863
+ version = "0.1.0"
1864
+ dependencies = [
1865
+ "wickra-backtest-core",
1866
+ "wickra-backtest-data",
1867
+ ]
1868
+
1869
+ [[package]]
1870
+ name = "wickra-backtest-bench"
1871
+ version = "0.1.0"
1872
+ dependencies = [
1873
+ "criterion",
1874
+ "wickra-backtest-core",
1875
+ ]
1876
+
1877
+ [[package]]
1878
+ name = "wickra-backtest-c"
1879
+ version = "0.1.0"
1880
+ dependencies = [
1881
+ "serde_json",
1882
+ "wickra-backtest-core",
1883
+ ]
1884
+
1885
+ [[package]]
1886
+ name = "wickra-backtest-cli"
1887
+ version = "0.1.0"
1888
+ dependencies = [
1889
+ "clap",
1890
+ "serde",
1891
+ "serde_json",
1892
+ "wickra-backtest-core",
1893
+ "wickra-backtest-data",
1894
+ ]
1895
+
1896
+ [[package]]
1897
+ name = "wickra-backtest-core"
1898
+ version = "0.1.0"
1899
+ dependencies = [
1900
+ "proptest",
1901
+ "schemars",
1902
+ "serde",
1903
+ "serde_json",
1904
+ "thiserror",
1905
+ "wickra-core",
1906
+ ]
1907
+
1908
+ [[package]]
1909
+ name = "wickra-backtest-data"
1910
+ version = "0.1.0"
1911
+ dependencies = [
1912
+ "arrow-array",
1913
+ "arrow-schema",
1914
+ "parquet",
1915
+ "proptest",
1916
+ "serde_json",
1917
+ "ureq",
1918
+ "wickra-backtest-core",
1919
+ "wickra-core",
1920
+ ]
1921
+
1922
+ [[package]]
1923
+ name = "wickra-backtest-examples"
1924
+ version = "0.1.0"
1925
+ dependencies = [
1926
+ "serde_json",
1927
+ "wickra-backtest",
1928
+ "wickra-backtest-data",
1929
+ ]
1930
+
1931
+ [[package]]
1932
+ name = "wickra-backtest-node"
1933
+ version = "0.1.0"
1934
+ dependencies = [
1935
+ "napi",
1936
+ "napi-build",
1937
+ "napi-derive",
1938
+ "serde_json",
1939
+ "wickra-backtest-core",
1940
+ ]
1941
+
1942
+ [[package]]
1943
+ name = "wickra-backtest-python"
1944
+ version = "0.1.0"
1945
+ dependencies = [
1946
+ "pyo3",
1947
+ "serde_json",
1948
+ "wickra-backtest-core",
1949
+ ]
1950
+
1951
+ [[package]]
1952
+ name = "wickra-backtest-wasm"
1953
+ version = "0.1.0"
1954
+ dependencies = [
1955
+ "serde_json",
1956
+ "wasm-bindgen",
1957
+ "wickra-backtest-core",
1958
+ ]
1959
+
1960
+ [[package]]
1961
+ name = "wickra-core"
1962
+ version = "1.0.0"
1963
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1964
+ checksum = "e6cb6e376f92fe68af410c25e85e6d6482bc0a2981cefbf363f690e3b1a5555f"
1965
+ dependencies = [
1966
+ "rayon",
1967
+ "thiserror",
1968
+ ]
1969
+
1970
+ [[package]]
1971
+ name = "winapi"
1972
+ version = "0.3.9"
1973
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1974
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
1975
+ dependencies = [
1976
+ "winapi-i686-pc-windows-gnu",
1977
+ "winapi-x86_64-pc-windows-gnu",
1978
+ ]
1979
+
1980
+ [[package]]
1981
+ name = "winapi-i686-pc-windows-gnu"
1982
+ version = "0.4.0"
1983
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1984
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
1985
+
1986
+ [[package]]
1987
+ name = "winapi-util"
1988
+ version = "0.1.11"
1989
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1990
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
1991
+ dependencies = [
1992
+ "windows-sys 0.52.0",
1993
+ ]
1994
+
1995
+ [[package]]
1996
+ name = "winapi-x86_64-pc-windows-gnu"
1997
+ version = "0.4.0"
1998
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1999
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2000
+
2001
+ [[package]]
2002
+ name = "windows-core"
2003
+ version = "0.62.2"
2004
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2005
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
2006
+ dependencies = [
2007
+ "windows-implement",
2008
+ "windows-interface",
2009
+ "windows-link",
2010
+ "windows-result",
2011
+ "windows-strings",
2012
+ ]
2013
+
2014
+ [[package]]
2015
+ name = "windows-implement"
2016
+ version = "0.60.2"
2017
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2018
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
2019
+ dependencies = [
2020
+ "proc-macro2",
2021
+ "quote",
2022
+ "syn 2.0.118",
2023
+ ]
2024
+
2025
+ [[package]]
2026
+ name = "windows-interface"
2027
+ version = "0.59.3"
2028
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2029
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
2030
+ dependencies = [
2031
+ "proc-macro2",
2032
+ "quote",
2033
+ "syn 2.0.118",
2034
+ ]
2035
+
2036
+ [[package]]
2037
+ name = "windows-link"
2038
+ version = "0.2.1"
2039
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2040
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
2041
+
2042
+ [[package]]
2043
+ name = "windows-result"
2044
+ version = "0.4.1"
2045
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2046
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
2047
+ dependencies = [
2048
+ "windows-link",
2049
+ ]
2050
+
2051
+ [[package]]
2052
+ name = "windows-strings"
2053
+ version = "0.5.1"
2054
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2055
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
2056
+ dependencies = [
2057
+ "windows-link",
2058
+ ]
2059
+
2060
+ [[package]]
2061
+ name = "windows-sys"
2062
+ version = "0.52.0"
2063
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2064
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
2065
+ dependencies = [
2066
+ "windows-targets",
2067
+ ]
2068
+
2069
+ [[package]]
2070
+ name = "windows-sys"
2071
+ version = "0.61.2"
2072
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2073
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
2074
+ dependencies = [
2075
+ "windows-link",
2076
+ ]
2077
+
2078
+ [[package]]
2079
+ name = "windows-targets"
2080
+ version = "0.52.6"
2081
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2082
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
2083
+ dependencies = [
2084
+ "windows_aarch64_gnullvm",
2085
+ "windows_aarch64_msvc",
2086
+ "windows_i686_gnu",
2087
+ "windows_i686_gnullvm",
2088
+ "windows_i686_msvc",
2089
+ "windows_x86_64_gnu",
2090
+ "windows_x86_64_gnullvm",
2091
+ "windows_x86_64_msvc",
2092
+ ]
2093
+
2094
+ [[package]]
2095
+ name = "windows_aarch64_gnullvm"
2096
+ version = "0.52.6"
2097
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2098
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
2099
+
2100
+ [[package]]
2101
+ name = "windows_aarch64_msvc"
2102
+ version = "0.52.6"
2103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2104
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
2105
+
2106
+ [[package]]
2107
+ name = "windows_i686_gnu"
2108
+ version = "0.52.6"
2109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2110
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
2111
+
2112
+ [[package]]
2113
+ name = "windows_i686_gnullvm"
2114
+ version = "0.52.6"
2115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2116
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
2117
+
2118
+ [[package]]
2119
+ name = "windows_i686_msvc"
2120
+ version = "0.52.6"
2121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2122
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
2123
+
2124
+ [[package]]
2125
+ name = "windows_x86_64_gnu"
2126
+ version = "0.52.6"
2127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2128
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
2129
+
2130
+ [[package]]
2131
+ name = "windows_x86_64_gnullvm"
2132
+ version = "0.52.6"
2133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2134
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
2135
+
2136
+ [[package]]
2137
+ name = "windows_x86_64_msvc"
2138
+ version = "0.52.6"
2139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2140
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
2141
+
2142
+ [[package]]
2143
+ name = "wit-bindgen"
2144
+ version = "0.57.1"
2145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2146
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
2147
+
2148
+ [[package]]
2149
+ name = "writeable"
2150
+ version = "0.6.3"
2151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2152
+ checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
2153
+
2154
+ [[package]]
2155
+ name = "yoke"
2156
+ version = "0.8.3"
2157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2158
+ checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5"
2159
+ dependencies = [
2160
+ "stable_deref_trait",
2161
+ "yoke-derive",
2162
+ "zerofrom",
2163
+ ]
2164
+
2165
+ [[package]]
2166
+ name = "yoke-derive"
2167
+ version = "0.8.2"
2168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2169
+ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
2170
+ dependencies = [
2171
+ "proc-macro2",
2172
+ "quote",
2173
+ "syn 2.0.118",
2174
+ "synstructure",
2175
+ ]
2176
+
2177
+ [[package]]
2178
+ name = "zerocopy"
2179
+ version = "0.8.52"
2180
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2181
+ checksum = "ce1022995ff5ff5d841ad7d994facc23098cd40152f2c1d11cd607c6f530653f"
2182
+ dependencies = [
2183
+ "zerocopy-derive",
2184
+ ]
2185
+
2186
+ [[package]]
2187
+ name = "zerocopy-derive"
2188
+ version = "0.8.52"
2189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2190
+ checksum = "1ae7f38b72ec2a254e2b87ef277cf2cd4fb97cbebf944faa6f33354da0867930"
2191
+ dependencies = [
2192
+ "proc-macro2",
2193
+ "quote",
2194
+ "syn 2.0.118",
2195
+ ]
2196
+
2197
+ [[package]]
2198
+ name = "zerofrom"
2199
+ version = "0.1.8"
2200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2201
+ checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
2202
+ dependencies = [
2203
+ "zerofrom-derive",
2204
+ ]
2205
+
2206
+ [[package]]
2207
+ name = "zerofrom-derive"
2208
+ version = "0.1.7"
2209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2210
+ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
2211
+ dependencies = [
2212
+ "proc-macro2",
2213
+ "quote",
2214
+ "syn 2.0.118",
2215
+ "synstructure",
2216
+ ]
2217
+
2218
+ [[package]]
2219
+ name = "zeroize"
2220
+ version = "1.9.0"
2221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2222
+ checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e"
2223
+
2224
+ [[package]]
2225
+ name = "zerotrie"
2226
+ version = "0.2.4"
2227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2228
+ checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
2229
+ dependencies = [
2230
+ "displaydoc",
2231
+ "yoke",
2232
+ "zerofrom",
2233
+ ]
2234
+
2235
+ [[package]]
2236
+ name = "zerovec"
2237
+ version = "0.11.6"
2238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2239
+ checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
2240
+ dependencies = [
2241
+ "yoke",
2242
+ "zerofrom",
2243
+ "zerovec-derive",
2244
+ ]
2245
+
2246
+ [[package]]
2247
+ name = "zerovec-derive"
2248
+ version = "0.11.3"
2249
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2250
+ checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
2251
+ dependencies = [
2252
+ "proc-macro2",
2253
+ "quote",
2254
+ "syn 2.0.118",
2255
+ ]
2256
+
2257
+ [[package]]
2258
+ name = "zlib-rs"
2259
+ version = "0.6.4"
2260
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2261
+ checksum = "977347db8caa080403f6b6b7c1cda9479a8e869316f7e13a59b19076a40f94e3"
2262
+
2263
+ [[package]]
2264
+ name = "zmij"
2265
+ version = "1.0.21"
2266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2267
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
2268
+
2269
+ [[package]]
2270
+ name = "zstd"
2271
+ version = "0.13.3"
2272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2273
+ checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
2274
+ dependencies = [
2275
+ "zstd-safe",
2276
+ ]
2277
+
2278
+ [[package]]
2279
+ name = "zstd-safe"
2280
+ version = "7.2.4"
2281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2282
+ checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
2283
+ dependencies = [
2284
+ "zstd-sys",
2285
+ ]
2286
+
2287
+ [[package]]
2288
+ name = "zstd-sys"
2289
+ version = "2.0.16+zstd.1.5.7"
2290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2291
+ checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748"
2292
+ dependencies = [
2293
+ "cc",
2294
+ "pkg-config",
2295
+ ]