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