forestfire-ml 0.1.2__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 (29) hide show
  1. forestfire_ml-0.1.2/Cargo.lock +2225 -0
  2. forestfire_ml-0.1.2/Cargo.toml +10 -0
  3. forestfire_ml-0.1.2/LICENSE +21 -0
  4. forestfire_ml-0.1.2/PKG-INFO +60 -0
  5. forestfire_ml-0.1.2/PYPI.md +31 -0
  6. forestfire_ml-0.1.2/bindings/python/Cargo.toml +21 -0
  7. forestfire_ml-0.1.2/bindings/python/LICENSE +21 -0
  8. forestfire_ml-0.1.2/bindings/python/PYPI.md +31 -0
  9. forestfire_ml-0.1.2/bindings/python/README.md +538 -0
  10. forestfire_ml-0.1.2/bindings/python/forestfire.pyi +116 -0
  11. forestfire_ml-0.1.2/bindings/python/src/lib.rs +2503 -0
  12. forestfire_ml-0.1.2/crates/core/Cargo.toml +24 -0
  13. forestfire_ml-0.1.2/crates/core/schema/forestfire-ir.schema.json +1297 -0
  14. forestfire_ml-0.1.2/crates/core/src/boosting.rs +864 -0
  15. forestfire_ml-0.1.2/crates/core/src/bootstrap.rs +74 -0
  16. forestfire_ml-0.1.2/crates/core/src/forest.rs +501 -0
  17. forestfire_ml-0.1.2/crates/core/src/ir.rs +1507 -0
  18. forestfire_ml-0.1.2/crates/core/src/lib.rs +3232 -0
  19. forestfire_ml-0.1.2/crates/core/src/sampling.rs +45 -0
  20. forestfire_ml-0.1.2/crates/core/src/tests.rs +1960 -0
  21. forestfire_ml-0.1.2/crates/core/src/training.rs +374 -0
  22. forestfire_ml-0.1.2/crates/core/src/tree/classifier.rs +3353 -0
  23. forestfire_ml-0.1.2/crates/core/src/tree/mod.rs +3 -0
  24. forestfire_ml-0.1.2/crates/core/src/tree/regressor.rs +2453 -0
  25. forestfire_ml-0.1.2/crates/core/src/tree/second_order.rs +1505 -0
  26. forestfire_ml-0.1.2/crates/data/Cargo.toml +11 -0
  27. forestfire_ml-0.1.2/crates/data/src/lib.rs +1490 -0
  28. forestfire_ml-0.1.2/forestfire.pyi +116 -0
  29. forestfire_ml-0.1.2/pyproject.toml +52 -0
@@ -0,0 +1,2225 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "ahash"
7
+ version = "0.8.12"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
10
+ dependencies = [
11
+ "cfg-if",
12
+ "const-random",
13
+ "getrandom 0.3.3",
14
+ "once_cell",
15
+ "version_check",
16
+ "zerocopy",
17
+ ]
18
+
19
+ [[package]]
20
+ name = "aho-corasick"
21
+ version = "1.1.3"
22
+ source = "registry+https://github.com/rust-lang/crates.io-index"
23
+ checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
24
+ dependencies = [
25
+ "memchr",
26
+ ]
27
+
28
+ [[package]]
29
+ name = "allocator-api2"
30
+ version = "0.2.21"
31
+ source = "registry+https://github.com/rust-lang/crates.io-index"
32
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
33
+
34
+ [[package]]
35
+ name = "android_system_properties"
36
+ version = "0.1.5"
37
+ source = "registry+https://github.com/rust-lang/crates.io-index"
38
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
39
+ dependencies = [
40
+ "libc",
41
+ ]
42
+
43
+ [[package]]
44
+ name = "ar_archive_writer"
45
+ version = "0.5.1"
46
+ source = "registry+https://github.com/rust-lang/crates.io-index"
47
+ checksum = "7eb93bbb63b9c227414f6eb3a0adfddca591a8ce1e9b60661bb08969b87e340b"
48
+ dependencies = [
49
+ "object",
50
+ ]
51
+
52
+ [[package]]
53
+ name = "argminmax"
54
+ version = "0.6.3"
55
+ source = "registry+https://github.com/rust-lang/crates.io-index"
56
+ checksum = "70f13d10a41ac8d2ec79ee34178d61e6f47a29c2edfe7ef1721c7383b0359e65"
57
+ dependencies = [
58
+ "num-traits",
59
+ ]
60
+
61
+ [[package]]
62
+ name = "array-init-cursor"
63
+ version = "0.2.1"
64
+ source = "registry+https://github.com/rust-lang/crates.io-index"
65
+ checksum = "ed51fe0f224d1d4ea768be38c51f9f831dee9d05c163c11fba0b8c44387b1fc3"
66
+
67
+ [[package]]
68
+ name = "arrow"
69
+ version = "54.3.1"
70
+ source = "registry+https://github.com/rust-lang/crates.io-index"
71
+ checksum = "b5ec52ba94edeed950e4a41f75d35376df196e8cb04437f7280a5aa49f20f796"
72
+ dependencies = [
73
+ "arrow-arith",
74
+ "arrow-array",
75
+ "arrow-buffer",
76
+ "arrow-cast",
77
+ "arrow-csv",
78
+ "arrow-data",
79
+ "arrow-ipc",
80
+ "arrow-json",
81
+ "arrow-ord",
82
+ "arrow-row",
83
+ "arrow-schema",
84
+ "arrow-select",
85
+ "arrow-string",
86
+ ]
87
+
88
+ [[package]]
89
+ name = "arrow-arith"
90
+ version = "54.3.1"
91
+ source = "registry+https://github.com/rust-lang/crates.io-index"
92
+ checksum = "8fc766fdacaf804cb10c7c70580254fcdb5d55cdfda2bc57b02baf5223a3af9e"
93
+ dependencies = [
94
+ "arrow-array",
95
+ "arrow-buffer",
96
+ "arrow-data",
97
+ "arrow-schema",
98
+ "chrono",
99
+ "num",
100
+ ]
101
+
102
+ [[package]]
103
+ name = "arrow-array"
104
+ version = "54.3.1"
105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
106
+ checksum = "a12fcdb3f1d03f69d3ec26ac67645a8fe3f878d77b5ebb0b15d64a116c212985"
107
+ dependencies = [
108
+ "ahash",
109
+ "arrow-buffer",
110
+ "arrow-data",
111
+ "arrow-schema",
112
+ "chrono",
113
+ "half",
114
+ "hashbrown 0.15.5",
115
+ "num",
116
+ ]
117
+
118
+ [[package]]
119
+ name = "arrow-buffer"
120
+ version = "54.3.1"
121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
122
+ checksum = "263f4801ff1839ef53ebd06f99a56cecd1dbaf314ec893d93168e2e860e0291c"
123
+ dependencies = [
124
+ "bytes",
125
+ "half",
126
+ "num",
127
+ ]
128
+
129
+ [[package]]
130
+ name = "arrow-cast"
131
+ version = "54.3.1"
132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
133
+ checksum = "ede6175fbc039dfc946a61c1b6d42fd682fcecf5ab5d148fbe7667705798cac9"
134
+ dependencies = [
135
+ "arrow-array",
136
+ "arrow-buffer",
137
+ "arrow-data",
138
+ "arrow-schema",
139
+ "arrow-select",
140
+ "atoi",
141
+ "base64",
142
+ "chrono",
143
+ "half",
144
+ "lexical-core",
145
+ "num",
146
+ "ryu",
147
+ ]
148
+
149
+ [[package]]
150
+ name = "arrow-csv"
151
+ version = "54.3.1"
152
+ source = "registry+https://github.com/rust-lang/crates.io-index"
153
+ checksum = "1644877d8bc9a0ef022d9153dc29375c2bda244c39aec05a91d0e87ccf77995f"
154
+ dependencies = [
155
+ "arrow-array",
156
+ "arrow-cast",
157
+ "arrow-schema",
158
+ "chrono",
159
+ "csv",
160
+ "csv-core",
161
+ "lazy_static",
162
+ "regex",
163
+ ]
164
+
165
+ [[package]]
166
+ name = "arrow-data"
167
+ version = "54.3.1"
168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
169
+ checksum = "61cfdd7d99b4ff618f167e548b2411e5dd2c98c0ddebedd7df433d34c20a4429"
170
+ dependencies = [
171
+ "arrow-buffer",
172
+ "arrow-schema",
173
+ "half",
174
+ "num",
175
+ ]
176
+
177
+ [[package]]
178
+ name = "arrow-ipc"
179
+ version = "54.3.1"
180
+ source = "registry+https://github.com/rust-lang/crates.io-index"
181
+ checksum = "62ff528658b521e33905334723b795ee56b393dbe9cf76c8b1f64b648c65a60c"
182
+ dependencies = [
183
+ "arrow-array",
184
+ "arrow-buffer",
185
+ "arrow-data",
186
+ "arrow-schema",
187
+ "flatbuffers",
188
+ ]
189
+
190
+ [[package]]
191
+ name = "arrow-json"
192
+ version = "54.3.1"
193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
194
+ checksum = "0ee5b4ca98a7fb2efb9ab3309a5d1c88b5116997ff93f3147efdc1062a6158e9"
195
+ dependencies = [
196
+ "arrow-array",
197
+ "arrow-buffer",
198
+ "arrow-cast",
199
+ "arrow-data",
200
+ "arrow-schema",
201
+ "chrono",
202
+ "half",
203
+ "indexmap",
204
+ "lexical-core",
205
+ "memchr",
206
+ "num",
207
+ "serde",
208
+ "serde_json",
209
+ "simdutf8",
210
+ ]
211
+
212
+ [[package]]
213
+ name = "arrow-ord"
214
+ version = "54.3.1"
215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
216
+ checksum = "f0a3334a743bd2a1479dbc635540617a3923b4b2f6870f37357339e6b5363c21"
217
+ dependencies = [
218
+ "arrow-array",
219
+ "arrow-buffer",
220
+ "arrow-data",
221
+ "arrow-schema",
222
+ "arrow-select",
223
+ ]
224
+
225
+ [[package]]
226
+ name = "arrow-row"
227
+ version = "54.3.1"
228
+ source = "registry+https://github.com/rust-lang/crates.io-index"
229
+ checksum = "8d1d7a7291d2c5107e92140f75257a99343956871f3d3ab33a7b41532f79cb68"
230
+ dependencies = [
231
+ "arrow-array",
232
+ "arrow-buffer",
233
+ "arrow-data",
234
+ "arrow-schema",
235
+ "half",
236
+ ]
237
+
238
+ [[package]]
239
+ name = "arrow-schema"
240
+ version = "54.3.1"
241
+ source = "registry+https://github.com/rust-lang/crates.io-index"
242
+ checksum = "39cfaf5e440be44db5413b75b72c2a87c1f8f0627117d110264048f2969b99e9"
243
+
244
+ [[package]]
245
+ name = "arrow-select"
246
+ version = "54.3.1"
247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
248
+ checksum = "69efcd706420e52cd44f5c4358d279801993846d1c2a8e52111853d61d55a619"
249
+ dependencies = [
250
+ "ahash",
251
+ "arrow-array",
252
+ "arrow-buffer",
253
+ "arrow-data",
254
+ "arrow-schema",
255
+ "num",
256
+ ]
257
+
258
+ [[package]]
259
+ name = "arrow-string"
260
+ version = "54.3.1"
261
+ source = "registry+https://github.com/rust-lang/crates.io-index"
262
+ checksum = "a21546b337ab304a32cfc0770f671db7411787586b45b78b4593ae78e64e2b03"
263
+ dependencies = [
264
+ "arrow-array",
265
+ "arrow-buffer",
266
+ "arrow-data",
267
+ "arrow-schema",
268
+ "arrow-select",
269
+ "memchr",
270
+ "num",
271
+ "regex",
272
+ "regex-syntax",
273
+ ]
274
+
275
+ [[package]]
276
+ name = "atoi"
277
+ version = "2.0.0"
278
+ source = "registry+https://github.com/rust-lang/crates.io-index"
279
+ checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528"
280
+ dependencies = [
281
+ "num-traits",
282
+ ]
283
+
284
+ [[package]]
285
+ name = "atoi_simd"
286
+ version = "0.16.1"
287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
288
+ checksum = "c2a49e05797ca52e312a0c658938b7d00693ef037799ef7187678f212d7684cf"
289
+ dependencies = [
290
+ "debug_unsafe",
291
+ ]
292
+
293
+ [[package]]
294
+ name = "autocfg"
295
+ version = "1.5.0"
296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
297
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
298
+
299
+ [[package]]
300
+ name = "base64"
301
+ version = "0.22.1"
302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
303
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
304
+
305
+ [[package]]
306
+ name = "bitflags"
307
+ version = "1.3.2"
308
+ source = "registry+https://github.com/rust-lang/crates.io-index"
309
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
310
+
311
+ [[package]]
312
+ name = "bitflags"
313
+ version = "2.11.0"
314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
315
+ checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
316
+
317
+ [[package]]
318
+ name = "bumpalo"
319
+ version = "3.19.0"
320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
321
+ checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
322
+
323
+ [[package]]
324
+ name = "bytemuck"
325
+ version = "1.25.0"
326
+ source = "registry+https://github.com/rust-lang/crates.io-index"
327
+ checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec"
328
+ dependencies = [
329
+ "bytemuck_derive",
330
+ ]
331
+
332
+ [[package]]
333
+ name = "bytemuck_derive"
334
+ version = "1.10.2"
335
+ source = "registry+https://github.com/rust-lang/crates.io-index"
336
+ checksum = "f9abbd1bc6865053c427f7198e6af43bfdedc55ab791faed4fbd361d789575ff"
337
+ dependencies = [
338
+ "proc-macro2",
339
+ "quote",
340
+ "syn",
341
+ ]
342
+
343
+ [[package]]
344
+ name = "bytes"
345
+ version = "1.10.1"
346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
347
+ checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
348
+ dependencies = [
349
+ "serde",
350
+ ]
351
+
352
+ [[package]]
353
+ name = "castaway"
354
+ version = "0.2.4"
355
+ source = "registry+https://github.com/rust-lang/crates.io-index"
356
+ checksum = "dec551ab6e7578819132c713a93c022a05d60159dc86e7a7050223577484c55a"
357
+ dependencies = [
358
+ "rustversion",
359
+ ]
360
+
361
+ [[package]]
362
+ name = "cc"
363
+ version = "1.2.39"
364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
365
+ checksum = "e1354349954c6fc9cb0deab020f27f783cf0b604e8bb754dc4658ecf0d29c35f"
366
+ dependencies = [
367
+ "find-msvc-tools",
368
+ "shlex",
369
+ ]
370
+
371
+ [[package]]
372
+ name = "cfg-if"
373
+ version = "1.0.3"
374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
375
+ checksum = "2fd1289c04a9ea8cb22300a459a72a385d7c73d3259e2ed7dcb2af674838cfa9"
376
+
377
+ [[package]]
378
+ name = "chrono"
379
+ version = "0.4.42"
380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
381
+ checksum = "145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2"
382
+ dependencies = [
383
+ "iana-time-zone",
384
+ "num-traits",
385
+ "windows-link",
386
+ ]
387
+
388
+ [[package]]
389
+ name = "chrono-tz"
390
+ version = "0.10.4"
391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
392
+ checksum = "a6139a8597ed92cf816dfb33f5dd6cf0bb93a6adc938f11039f371bc5bcd26c3"
393
+ dependencies = [
394
+ "chrono",
395
+ "phf",
396
+ ]
397
+
398
+ [[package]]
399
+ name = "ciborium"
400
+ version = "0.2.2"
401
+ source = "registry+https://github.com/rust-lang/crates.io-index"
402
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
403
+ dependencies = [
404
+ "ciborium-io",
405
+ "ciborium-ll",
406
+ "serde",
407
+ ]
408
+
409
+ [[package]]
410
+ name = "ciborium-io"
411
+ version = "0.2.2"
412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
413
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
414
+
415
+ [[package]]
416
+ name = "ciborium-ll"
417
+ version = "0.2.2"
418
+ source = "registry+https://github.com/rust-lang/crates.io-index"
419
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
420
+ dependencies = [
421
+ "ciborium-io",
422
+ "half",
423
+ ]
424
+
425
+ [[package]]
426
+ name = "compact_str"
427
+ version = "0.8.1"
428
+ source = "registry+https://github.com/rust-lang/crates.io-index"
429
+ checksum = "3b79c4069c6cad78e2e0cdfcbd26275770669fb39fd308a752dc110e83b9af32"
430
+ dependencies = [
431
+ "castaway",
432
+ "cfg-if",
433
+ "itoa",
434
+ "rustversion",
435
+ "ryu",
436
+ "serde",
437
+ "static_assertions",
438
+ ]
439
+
440
+ [[package]]
441
+ name = "const-random"
442
+ version = "0.1.18"
443
+ source = "registry+https://github.com/rust-lang/crates.io-index"
444
+ checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359"
445
+ dependencies = [
446
+ "const-random-macro",
447
+ ]
448
+
449
+ [[package]]
450
+ name = "const-random-macro"
451
+ version = "0.1.16"
452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
453
+ checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e"
454
+ dependencies = [
455
+ "getrandom 0.2.16",
456
+ "once_cell",
457
+ "tiny-keccak",
458
+ ]
459
+
460
+ [[package]]
461
+ name = "core-foundation-sys"
462
+ version = "0.8.7"
463
+ source = "registry+https://github.com/rust-lang/crates.io-index"
464
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
465
+
466
+ [[package]]
467
+ name = "crossbeam-deque"
468
+ version = "0.8.6"
469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
470
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
471
+ dependencies = [
472
+ "crossbeam-epoch",
473
+ "crossbeam-utils",
474
+ ]
475
+
476
+ [[package]]
477
+ name = "crossbeam-epoch"
478
+ version = "0.9.18"
479
+ source = "registry+https://github.com/rust-lang/crates.io-index"
480
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
481
+ dependencies = [
482
+ "crossbeam-utils",
483
+ ]
484
+
485
+ [[package]]
486
+ name = "crossbeam-utils"
487
+ version = "0.8.21"
488
+ source = "registry+https://github.com/rust-lang/crates.io-index"
489
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
490
+
491
+ [[package]]
492
+ name = "crunchy"
493
+ version = "0.2.4"
494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
495
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
496
+
497
+ [[package]]
498
+ name = "csv"
499
+ version = "1.3.1"
500
+ source = "registry+https://github.com/rust-lang/crates.io-index"
501
+ checksum = "acdc4883a9c96732e4733212c01447ebd805833b7275a73ca3ee080fd77afdaf"
502
+ dependencies = [
503
+ "csv-core",
504
+ "itoa",
505
+ "ryu",
506
+ "serde",
507
+ ]
508
+
509
+ [[package]]
510
+ name = "csv-core"
511
+ version = "0.1.12"
512
+ source = "registry+https://github.com/rust-lang/crates.io-index"
513
+ checksum = "7d02f3b0da4c6504f86e9cd789d8dbafab48c2321be74e9987593de5a894d93d"
514
+ dependencies = [
515
+ "memchr",
516
+ ]
517
+
518
+ [[package]]
519
+ name = "debug_unsafe"
520
+ version = "0.1.4"
521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
522
+ checksum = "7eed2c4702fa172d1ce21078faa7c5203e69f5394d48cc436d25928394a867a2"
523
+
524
+ [[package]]
525
+ name = "dyn-clone"
526
+ version = "1.0.20"
527
+ source = "registry+https://github.com/rust-lang/crates.io-index"
528
+ checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
529
+
530
+ [[package]]
531
+ name = "either"
532
+ version = "1.15.0"
533
+ source = "registry+https://github.com/rust-lang/crates.io-index"
534
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
535
+
536
+ [[package]]
537
+ name = "equivalent"
538
+ version = "1.0.2"
539
+ source = "registry+https://github.com/rust-lang/crates.io-index"
540
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
541
+
542
+ [[package]]
543
+ name = "ethnum"
544
+ version = "1.5.2"
545
+ source = "registry+https://github.com/rust-lang/crates.io-index"
546
+ checksum = "ca81e6b4777c89fd810c25a4be2b1bd93ea034fbe58e6a75216a34c6b82c539b"
547
+
548
+ [[package]]
549
+ name = "fallible-streaming-iterator"
550
+ version = "0.1.9"
551
+ source = "registry+https://github.com/rust-lang/crates.io-index"
552
+ checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
553
+
554
+ [[package]]
555
+ name = "fast-float2"
556
+ version = "0.2.3"
557
+ source = "registry+https://github.com/rust-lang/crates.io-index"
558
+ checksum = "f8eb564c5c7423d25c886fb561d1e4ee69f72354d16918afa32c08811f6b6a55"
559
+
560
+ [[package]]
561
+ name = "find-msvc-tools"
562
+ version = "0.1.2"
563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
564
+ checksum = "1ced73b1dacfc750a6db6c0a0c3a3853c8b41997e2e2c563dc90804ae6867959"
565
+
566
+ [[package]]
567
+ name = "flatbuffers"
568
+ version = "24.12.23"
569
+ source = "registry+https://github.com/rust-lang/crates.io-index"
570
+ checksum = "4f1baf0dbf96932ec9a3038d57900329c015b0bfb7b63d904f3bc27e2b02a096"
571
+ dependencies = [
572
+ "bitflags 1.3.2",
573
+ "rustc_version",
574
+ ]
575
+
576
+ [[package]]
577
+ name = "foldhash"
578
+ version = "0.1.5"
579
+ source = "registry+https://github.com/rust-lang/crates.io-index"
580
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
581
+
582
+ [[package]]
583
+ name = "forestfire-core"
584
+ version = "0.1.0"
585
+ dependencies = [
586
+ "arrow",
587
+ "ciborium",
588
+ "forestfire-data",
589
+ "num_cpus",
590
+ "polars",
591
+ "rand",
592
+ "rayon",
593
+ "schemars",
594
+ "serde",
595
+ "serde_json",
596
+ "wide",
597
+ ]
598
+
599
+ [[package]]
600
+ name = "forestfire-data"
601
+ version = "0.1.0"
602
+ dependencies = [
603
+ "arrow",
604
+ "rand",
605
+ ]
606
+
607
+ [[package]]
608
+ name = "forestfire-inference"
609
+ version = "0.1.0"
610
+ dependencies = [
611
+ "arrow",
612
+ "forestfire-core",
613
+ "forestfire-data",
614
+ ]
615
+
616
+ [[package]]
617
+ name = "forestfire-python"
618
+ version = "0.1.0"
619
+ dependencies = [
620
+ "forestfire-core",
621
+ "forestfire-data",
622
+ "numpy",
623
+ "pyo3",
624
+ "serde",
625
+ "serde_json",
626
+ ]
627
+
628
+ [[package]]
629
+ name = "forestfire-rust-examples"
630
+ version = "0.1.0"
631
+ dependencies = [
632
+ "forestfire-core",
633
+ "forestfire-data",
634
+ ]
635
+
636
+ [[package]]
637
+ name = "getrandom"
638
+ version = "0.2.16"
639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
640
+ checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
641
+ dependencies = [
642
+ "cfg-if",
643
+ "js-sys",
644
+ "libc",
645
+ "wasi 0.11.1+wasi-snapshot-preview1",
646
+ "wasm-bindgen",
647
+ ]
648
+
649
+ [[package]]
650
+ name = "getrandom"
651
+ version = "0.3.3"
652
+ source = "registry+https://github.com/rust-lang/crates.io-index"
653
+ checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4"
654
+ dependencies = [
655
+ "cfg-if",
656
+ "libc",
657
+ "r-efi",
658
+ "wasi 0.14.7+wasi-0.2.4",
659
+ ]
660
+
661
+ [[package]]
662
+ name = "glob"
663
+ version = "0.3.3"
664
+ source = "registry+https://github.com/rust-lang/crates.io-index"
665
+ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
666
+
667
+ [[package]]
668
+ name = "half"
669
+ version = "2.6.0"
670
+ source = "registry+https://github.com/rust-lang/crates.io-index"
671
+ checksum = "459196ed295495a68f7d7fe1d84f6c4b7ff0e21fe3017b2f283c6fac3ad803c9"
672
+ dependencies = [
673
+ "cfg-if",
674
+ "crunchy",
675
+ "num-traits",
676
+ ]
677
+
678
+ [[package]]
679
+ name = "hashbrown"
680
+ version = "0.14.5"
681
+ source = "registry+https://github.com/rust-lang/crates.io-index"
682
+ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
683
+ dependencies = [
684
+ "ahash",
685
+ "allocator-api2",
686
+ "rayon",
687
+ "serde",
688
+ ]
689
+
690
+ [[package]]
691
+ name = "hashbrown"
692
+ version = "0.15.5"
693
+ source = "registry+https://github.com/rust-lang/crates.io-index"
694
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
695
+ dependencies = [
696
+ "allocator-api2",
697
+ "equivalent",
698
+ "foldhash",
699
+ "rayon",
700
+ "serde",
701
+ ]
702
+
703
+ [[package]]
704
+ name = "hashbrown"
705
+ version = "0.16.0"
706
+ source = "registry+https://github.com/rust-lang/crates.io-index"
707
+ checksum = "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d"
708
+
709
+ [[package]]
710
+ name = "heck"
711
+ version = "0.5.0"
712
+ source = "registry+https://github.com/rust-lang/crates.io-index"
713
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
714
+
715
+ [[package]]
716
+ name = "hermit-abi"
717
+ version = "0.5.2"
718
+ source = "registry+https://github.com/rust-lang/crates.io-index"
719
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
720
+
721
+ [[package]]
722
+ name = "home"
723
+ version = "0.5.12"
724
+ source = "registry+https://github.com/rust-lang/crates.io-index"
725
+ checksum = "cc627f471c528ff0c4a49e1d5e60450c8f6461dd6d10ba9dcd3a61d3dff7728d"
726
+ dependencies = [
727
+ "windows-sys 0.61.2",
728
+ ]
729
+
730
+ [[package]]
731
+ name = "iana-time-zone"
732
+ version = "0.1.64"
733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
734
+ checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb"
735
+ dependencies = [
736
+ "android_system_properties",
737
+ "core-foundation-sys",
738
+ "iana-time-zone-haiku",
739
+ "js-sys",
740
+ "log",
741
+ "wasm-bindgen",
742
+ "windows-core",
743
+ ]
744
+
745
+ [[package]]
746
+ name = "iana-time-zone-haiku"
747
+ version = "0.1.2"
748
+ source = "registry+https://github.com/rust-lang/crates.io-index"
749
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
750
+ dependencies = [
751
+ "cc",
752
+ ]
753
+
754
+ [[package]]
755
+ name = "indexmap"
756
+ version = "2.11.4"
757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
758
+ checksum = "4b0f83760fb341a774ed326568e19f5a863af4a952def8c39f9ab92fd95b88e5"
759
+ dependencies = [
760
+ "equivalent",
761
+ "hashbrown 0.16.0",
762
+ "serde",
763
+ "serde_core",
764
+ ]
765
+
766
+ [[package]]
767
+ name = "indoc"
768
+ version = "2.0.6"
769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
770
+ checksum = "f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd"
771
+
772
+ [[package]]
773
+ name = "itoa"
774
+ version = "1.0.15"
775
+ source = "registry+https://github.com/rust-lang/crates.io-index"
776
+ checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
777
+
778
+ [[package]]
779
+ name = "js-sys"
780
+ version = "0.3.81"
781
+ source = "registry+https://github.com/rust-lang/crates.io-index"
782
+ checksum = "ec48937a97411dcb524a265206ccd4c90bb711fca92b2792c407f268825b9305"
783
+ dependencies = [
784
+ "once_cell",
785
+ "wasm-bindgen",
786
+ ]
787
+
788
+ [[package]]
789
+ name = "lazy_static"
790
+ version = "1.5.0"
791
+ source = "registry+https://github.com/rust-lang/crates.io-index"
792
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
793
+
794
+ [[package]]
795
+ name = "lexical-core"
796
+ version = "1.0.6"
797
+ source = "registry+https://github.com/rust-lang/crates.io-index"
798
+ checksum = "7d8d125a277f807e55a77304455eb7b1cb52f2b18c143b60e766c120bd64a594"
799
+ dependencies = [
800
+ "lexical-parse-float",
801
+ "lexical-parse-integer",
802
+ "lexical-util",
803
+ "lexical-write-float",
804
+ "lexical-write-integer",
805
+ ]
806
+
807
+ [[package]]
808
+ name = "lexical-parse-float"
809
+ version = "1.0.6"
810
+ source = "registry+https://github.com/rust-lang/crates.io-index"
811
+ checksum = "52a9f232fbd6f550bc0137dcb5f99ab674071ac2d690ac69704593cb4abbea56"
812
+ dependencies = [
813
+ "lexical-parse-integer",
814
+ "lexical-util",
815
+ ]
816
+
817
+ [[package]]
818
+ name = "lexical-parse-integer"
819
+ version = "1.0.6"
820
+ source = "registry+https://github.com/rust-lang/crates.io-index"
821
+ checksum = "9a7a039f8fb9c19c996cd7b2fcce303c1b2874fe1aca544edc85c4a5f8489b34"
822
+ dependencies = [
823
+ "lexical-util",
824
+ ]
825
+
826
+ [[package]]
827
+ name = "lexical-util"
828
+ version = "1.0.7"
829
+ source = "registry+https://github.com/rust-lang/crates.io-index"
830
+ checksum = "2604dd126bb14f13fb5d1bd6a66155079cb9fa655b37f875b3a742c705dbed17"
831
+
832
+ [[package]]
833
+ name = "lexical-write-float"
834
+ version = "1.0.6"
835
+ source = "registry+https://github.com/rust-lang/crates.io-index"
836
+ checksum = "50c438c87c013188d415fbabbb1dceb44249ab81664efbd31b14ae55dabb6361"
837
+ dependencies = [
838
+ "lexical-util",
839
+ "lexical-write-integer",
840
+ ]
841
+
842
+ [[package]]
843
+ name = "lexical-write-integer"
844
+ version = "1.0.6"
845
+ source = "registry+https://github.com/rust-lang/crates.io-index"
846
+ checksum = "409851a618475d2d5796377cad353802345cba92c867d9fbcde9cf4eac4e14df"
847
+ dependencies = [
848
+ "lexical-util",
849
+ ]
850
+
851
+ [[package]]
852
+ name = "libc"
853
+ version = "0.2.175"
854
+ source = "registry+https://github.com/rust-lang/crates.io-index"
855
+ checksum = "6a82ae493e598baaea5209805c49bbf2ea7de956d50d7da0da1164f9c6d28543"
856
+
857
+ [[package]]
858
+ name = "libm"
859
+ version = "0.2.15"
860
+ source = "registry+https://github.com/rust-lang/crates.io-index"
861
+ checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de"
862
+
863
+ [[package]]
864
+ name = "lock_api"
865
+ version = "0.4.14"
866
+ source = "registry+https://github.com/rust-lang/crates.io-index"
867
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
868
+ dependencies = [
869
+ "scopeguard",
870
+ ]
871
+
872
+ [[package]]
873
+ name = "log"
874
+ version = "0.4.28"
875
+ source = "registry+https://github.com/rust-lang/crates.io-index"
876
+ checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432"
877
+
878
+ [[package]]
879
+ name = "matrixmultiply"
880
+ version = "0.3.10"
881
+ source = "registry+https://github.com/rust-lang/crates.io-index"
882
+ checksum = "a06de3016e9fae57a36fd14dba131fccf49f74b40b7fbdb472f96e361ec71a08"
883
+ dependencies = [
884
+ "autocfg",
885
+ "rawpointer",
886
+ ]
887
+
888
+ [[package]]
889
+ name = "memchr"
890
+ version = "2.7.6"
891
+ source = "registry+https://github.com/rust-lang/crates.io-index"
892
+ checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
893
+
894
+ [[package]]
895
+ name = "memmap2"
896
+ version = "0.9.10"
897
+ source = "registry+https://github.com/rust-lang/crates.io-index"
898
+ checksum = "714098028fe011992e1c3962653c96b2d578c4b4bce9036e15ff220319b1e0e3"
899
+ dependencies = [
900
+ "libc",
901
+ ]
902
+
903
+ [[package]]
904
+ name = "memoffset"
905
+ version = "0.9.1"
906
+ source = "registry+https://github.com/rust-lang/crates.io-index"
907
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
908
+ dependencies = [
909
+ "autocfg",
910
+ ]
911
+
912
+ [[package]]
913
+ name = "ndarray"
914
+ version = "0.16.1"
915
+ source = "registry+https://github.com/rust-lang/crates.io-index"
916
+ checksum = "882ed72dce9365842bf196bdeedf5055305f11fc8c03dee7bb0194a6cad34841"
917
+ dependencies = [
918
+ "matrixmultiply",
919
+ "num-complex",
920
+ "num-integer",
921
+ "num-traits",
922
+ "portable-atomic",
923
+ "portable-atomic-util",
924
+ "rawpointer",
925
+ ]
926
+
927
+ [[package]]
928
+ name = "num"
929
+ version = "0.4.3"
930
+ source = "registry+https://github.com/rust-lang/crates.io-index"
931
+ checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23"
932
+ dependencies = [
933
+ "num-bigint",
934
+ "num-complex",
935
+ "num-integer",
936
+ "num-iter",
937
+ "num-rational",
938
+ "num-traits",
939
+ ]
940
+
941
+ [[package]]
942
+ name = "num-bigint"
943
+ version = "0.4.6"
944
+ source = "registry+https://github.com/rust-lang/crates.io-index"
945
+ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
946
+ dependencies = [
947
+ "num-integer",
948
+ "num-traits",
949
+ ]
950
+
951
+ [[package]]
952
+ name = "num-complex"
953
+ version = "0.4.6"
954
+ source = "registry+https://github.com/rust-lang/crates.io-index"
955
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
956
+ dependencies = [
957
+ "num-traits",
958
+ ]
959
+
960
+ [[package]]
961
+ name = "num-integer"
962
+ version = "0.1.46"
963
+ source = "registry+https://github.com/rust-lang/crates.io-index"
964
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
965
+ dependencies = [
966
+ "num-traits",
967
+ ]
968
+
969
+ [[package]]
970
+ name = "num-iter"
971
+ version = "0.1.45"
972
+ source = "registry+https://github.com/rust-lang/crates.io-index"
973
+ checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
974
+ dependencies = [
975
+ "autocfg",
976
+ "num-integer",
977
+ "num-traits",
978
+ ]
979
+
980
+ [[package]]
981
+ name = "num-rational"
982
+ version = "0.4.2"
983
+ source = "registry+https://github.com/rust-lang/crates.io-index"
984
+ checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
985
+ dependencies = [
986
+ "num-bigint",
987
+ "num-integer",
988
+ "num-traits",
989
+ ]
990
+
991
+ [[package]]
992
+ name = "num-traits"
993
+ version = "0.2.19"
994
+ source = "registry+https://github.com/rust-lang/crates.io-index"
995
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
996
+ dependencies = [
997
+ "autocfg",
998
+ "libm",
999
+ ]
1000
+
1001
+ [[package]]
1002
+ name = "num_cpus"
1003
+ version = "1.17.0"
1004
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1005
+ checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
1006
+ dependencies = [
1007
+ "hermit-abi",
1008
+ "libc",
1009
+ ]
1010
+
1011
+ [[package]]
1012
+ name = "numpy"
1013
+ version = "0.26.0"
1014
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1015
+ checksum = "9b2dba356160b54f5371b550575b78130a54718b4c6e46b3f33a6da74a27e78b"
1016
+ dependencies = [
1017
+ "libc",
1018
+ "ndarray",
1019
+ "num-complex",
1020
+ "num-integer",
1021
+ "num-traits",
1022
+ "pyo3",
1023
+ "pyo3-build-config",
1024
+ "rustc-hash",
1025
+ ]
1026
+
1027
+ [[package]]
1028
+ name = "object"
1029
+ version = "0.37.3"
1030
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1031
+ checksum = "ff76201f031d8863c38aa7f905eca4f53abbfa15f609db4277d44cd8938f33fe"
1032
+ dependencies = [
1033
+ "memchr",
1034
+ ]
1035
+
1036
+ [[package]]
1037
+ name = "once_cell"
1038
+ version = "1.21.3"
1039
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1040
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
1041
+
1042
+ [[package]]
1043
+ name = "parking_lot"
1044
+ version = "0.12.5"
1045
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1046
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
1047
+ dependencies = [
1048
+ "lock_api",
1049
+ "parking_lot_core",
1050
+ ]
1051
+
1052
+ [[package]]
1053
+ name = "parking_lot_core"
1054
+ version = "0.9.12"
1055
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1056
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
1057
+ dependencies = [
1058
+ "cfg-if",
1059
+ "libc",
1060
+ "redox_syscall",
1061
+ "smallvec",
1062
+ "windows-link",
1063
+ ]
1064
+
1065
+ [[package]]
1066
+ name = "percent-encoding"
1067
+ version = "2.3.2"
1068
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1069
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1070
+
1071
+ [[package]]
1072
+ name = "phf"
1073
+ version = "0.12.1"
1074
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1075
+ checksum = "913273894cec178f401a31ec4b656318d95473527be05c0752cc41cdc32be8b7"
1076
+ dependencies = [
1077
+ "phf_shared",
1078
+ ]
1079
+
1080
+ [[package]]
1081
+ name = "phf_shared"
1082
+ version = "0.12.1"
1083
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1084
+ checksum = "06005508882fb681fd97892ecff4b7fd0fee13ef1aa569f8695dae7ab9099981"
1085
+ dependencies = [
1086
+ "siphasher",
1087
+ ]
1088
+
1089
+ [[package]]
1090
+ name = "planus"
1091
+ version = "0.3.1"
1092
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1093
+ checksum = "fc1691dd09e82f428ce8d6310bd6d5da2557c82ff17694d2a32cad7242aea89f"
1094
+ dependencies = [
1095
+ "array-init-cursor",
1096
+ ]
1097
+
1098
+ [[package]]
1099
+ name = "polars"
1100
+ version = "0.46.0"
1101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1102
+ checksum = "72571dde488ecccbe799798bf99ab7308ebdb7cf5d95bcc498dbd5a132f0da4d"
1103
+ dependencies = [
1104
+ "getrandom 0.2.16",
1105
+ "polars-arrow",
1106
+ "polars-core",
1107
+ "polars-error",
1108
+ "polars-lazy",
1109
+ "polars-parquet",
1110
+ "polars-utils",
1111
+ "version_check",
1112
+ ]
1113
+
1114
+ [[package]]
1115
+ name = "polars-arrow"
1116
+ version = "0.46.0"
1117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1118
+ checksum = "6611c758d52e799761cc25900666b71552e6c929d88052811bc9daad4b3321a8"
1119
+ dependencies = [
1120
+ "ahash",
1121
+ "bytemuck",
1122
+ "chrono",
1123
+ "chrono-tz",
1124
+ "dyn-clone",
1125
+ "either",
1126
+ "ethnum",
1127
+ "getrandom 0.2.16",
1128
+ "hashbrown 0.15.5",
1129
+ "num-traits",
1130
+ "parking_lot",
1131
+ "polars-arrow-format",
1132
+ "polars-error",
1133
+ "polars-schema",
1134
+ "polars-utils",
1135
+ "simdutf8",
1136
+ "streaming-iterator",
1137
+ "strength_reduce",
1138
+ "strum_macros",
1139
+ "version_check",
1140
+ ]
1141
+
1142
+ [[package]]
1143
+ name = "polars-arrow-format"
1144
+ version = "0.1.0"
1145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1146
+ checksum = "19b0ef2474af9396b19025b189d96e992311e6a47f90c53cd998b36c4c64b84c"
1147
+ dependencies = [
1148
+ "planus",
1149
+ "serde",
1150
+ ]
1151
+
1152
+ [[package]]
1153
+ name = "polars-compute"
1154
+ version = "0.46.0"
1155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1156
+ checksum = "332f2547dbb27599a8ffe68e56159f5996ba03d1dad0382ccb62c109ceacdeb6"
1157
+ dependencies = [
1158
+ "atoi_simd",
1159
+ "bytemuck",
1160
+ "chrono",
1161
+ "either",
1162
+ "fast-float2",
1163
+ "itoa",
1164
+ "num-traits",
1165
+ "polars-arrow",
1166
+ "polars-error",
1167
+ "polars-utils",
1168
+ "ryu",
1169
+ "strength_reduce",
1170
+ "version_check",
1171
+ ]
1172
+
1173
+ [[package]]
1174
+ name = "polars-core"
1175
+ version = "0.46.0"
1176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1177
+ checksum = "796d06eae7e6e74ed28ea54a8fccc584ebac84e6cf0e1e9ba41ffc807b169a01"
1178
+ dependencies = [
1179
+ "ahash",
1180
+ "bitflags 2.11.0",
1181
+ "bytemuck",
1182
+ "either",
1183
+ "hashbrown 0.14.5",
1184
+ "hashbrown 0.15.5",
1185
+ "indexmap",
1186
+ "itoa",
1187
+ "num-traits",
1188
+ "once_cell",
1189
+ "polars-arrow",
1190
+ "polars-compute",
1191
+ "polars-error",
1192
+ "polars-row",
1193
+ "polars-schema",
1194
+ "polars-utils",
1195
+ "rand",
1196
+ "rand_distr",
1197
+ "rayon",
1198
+ "strum_macros",
1199
+ "thiserror",
1200
+ "version_check",
1201
+ "xxhash-rust",
1202
+ ]
1203
+
1204
+ [[package]]
1205
+ name = "polars-error"
1206
+ version = "0.46.0"
1207
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1208
+ checksum = "19d6529cae0d1db5ed690e47de41fac9b35ae0c26d476830c2079f130887b847"
1209
+ dependencies = [
1210
+ "polars-arrow-format",
1211
+ "simdutf8",
1212
+ "thiserror",
1213
+ ]
1214
+
1215
+ [[package]]
1216
+ name = "polars-expr"
1217
+ version = "0.46.0"
1218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1219
+ checksum = "c8e639991a8ad4fb12880ab44bcc3cf44a5703df003142334d9caf86d77d77e7"
1220
+ dependencies = [
1221
+ "ahash",
1222
+ "bitflags 2.11.0",
1223
+ "hashbrown 0.15.5",
1224
+ "num-traits",
1225
+ "once_cell",
1226
+ "polars-arrow",
1227
+ "polars-compute",
1228
+ "polars-core",
1229
+ "polars-io",
1230
+ "polars-ops",
1231
+ "polars-plan",
1232
+ "polars-row",
1233
+ "polars-utils",
1234
+ "rand",
1235
+ "rayon",
1236
+ ]
1237
+
1238
+ [[package]]
1239
+ name = "polars-io"
1240
+ version = "0.46.0"
1241
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1242
+ checksum = "719a77e94480f6be090512da196e378cbcbeb3584c6fe1134c600aee906e38ab"
1243
+ dependencies = [
1244
+ "ahash",
1245
+ "atoi_simd",
1246
+ "bytes",
1247
+ "fast-float2",
1248
+ "glob",
1249
+ "hashbrown 0.15.5",
1250
+ "home",
1251
+ "itoa",
1252
+ "memchr",
1253
+ "memmap2",
1254
+ "num-traits",
1255
+ "once_cell",
1256
+ "percent-encoding",
1257
+ "polars-arrow",
1258
+ "polars-core",
1259
+ "polars-error",
1260
+ "polars-schema",
1261
+ "polars-utils",
1262
+ "rayon",
1263
+ "regex",
1264
+ "ryu",
1265
+ "simdutf8",
1266
+ ]
1267
+
1268
+ [[package]]
1269
+ name = "polars-lazy"
1270
+ version = "0.46.0"
1271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1272
+ checksum = "a0a731a672dfc8ac38c1f73c9a4b2ae38d2fc8ac363bfb64c5f3a3e072ffc5ad"
1273
+ dependencies = [
1274
+ "ahash",
1275
+ "bitflags 2.11.0",
1276
+ "chrono",
1277
+ "memchr",
1278
+ "once_cell",
1279
+ "polars-arrow",
1280
+ "polars-core",
1281
+ "polars-expr",
1282
+ "polars-io",
1283
+ "polars-mem-engine",
1284
+ "polars-ops",
1285
+ "polars-plan",
1286
+ "polars-utils",
1287
+ "rayon",
1288
+ "version_check",
1289
+ ]
1290
+
1291
+ [[package]]
1292
+ name = "polars-mem-engine"
1293
+ version = "0.46.0"
1294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1295
+ checksum = "33442189bcbf2e2559aa7914db3835429030a13f4f18e43af5fba9d1b018cf12"
1296
+ dependencies = [
1297
+ "memmap2",
1298
+ "polars-arrow",
1299
+ "polars-core",
1300
+ "polars-error",
1301
+ "polars-expr",
1302
+ "polars-io",
1303
+ "polars-ops",
1304
+ "polars-plan",
1305
+ "polars-utils",
1306
+ "rayon",
1307
+ ]
1308
+
1309
+ [[package]]
1310
+ name = "polars-ops"
1311
+ version = "0.46.0"
1312
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1313
+ checksum = "cbb83218b0c216104f0076cd1a005128be078f958125f3d59b094ee73d78c18e"
1314
+ dependencies = [
1315
+ "ahash",
1316
+ "argminmax",
1317
+ "bytemuck",
1318
+ "either",
1319
+ "hashbrown 0.15.5",
1320
+ "indexmap",
1321
+ "memchr",
1322
+ "num-traits",
1323
+ "once_cell",
1324
+ "polars-arrow",
1325
+ "polars-compute",
1326
+ "polars-core",
1327
+ "polars-error",
1328
+ "polars-schema",
1329
+ "polars-utils",
1330
+ "rayon",
1331
+ "regex",
1332
+ "regex-syntax",
1333
+ "strum_macros",
1334
+ "version_check",
1335
+ ]
1336
+
1337
+ [[package]]
1338
+ name = "polars-parquet"
1339
+ version = "0.46.0"
1340
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1341
+ checksum = "5c60ee85535590a38db6c703a21be4cb25342e40f573f070d1e16f9d84a53ac7"
1342
+ dependencies = [
1343
+ "ahash",
1344
+ "base64",
1345
+ "bytemuck",
1346
+ "ethnum",
1347
+ "hashbrown 0.15.5",
1348
+ "num-traits",
1349
+ "polars-arrow",
1350
+ "polars-compute",
1351
+ "polars-error",
1352
+ "polars-parquet-format",
1353
+ "polars-utils",
1354
+ "simdutf8",
1355
+ "streaming-decompression",
1356
+ ]
1357
+
1358
+ [[package]]
1359
+ name = "polars-parquet-format"
1360
+ version = "0.1.0"
1361
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1362
+ checksum = "c025243dcfe8dbc57e94d9f82eb3bef10b565ab180d5b99bed87fd8aea319ce1"
1363
+
1364
+ [[package]]
1365
+ name = "polars-plan"
1366
+ version = "0.46.0"
1367
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1368
+ checksum = "4f03533a93aa66127fcb909a87153a3c7cfee6f0ae59f497e73d7736208da54c"
1369
+ dependencies = [
1370
+ "ahash",
1371
+ "bitflags 2.11.0",
1372
+ "bytemuck",
1373
+ "bytes",
1374
+ "either",
1375
+ "hashbrown 0.15.5",
1376
+ "memmap2",
1377
+ "num-traits",
1378
+ "once_cell",
1379
+ "percent-encoding",
1380
+ "polars-arrow",
1381
+ "polars-compute",
1382
+ "polars-core",
1383
+ "polars-io",
1384
+ "polars-ops",
1385
+ "polars-utils",
1386
+ "rayon",
1387
+ "recursive",
1388
+ "strum_macros",
1389
+ "version_check",
1390
+ ]
1391
+
1392
+ [[package]]
1393
+ name = "polars-row"
1394
+ version = "0.46.0"
1395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1396
+ checksum = "6bf47f7409f8e75328d7d034be390842924eb276716d0458607be0bddb8cc839"
1397
+ dependencies = [
1398
+ "bitflags 2.11.0",
1399
+ "bytemuck",
1400
+ "polars-arrow",
1401
+ "polars-compute",
1402
+ "polars-error",
1403
+ "polars-utils",
1404
+ ]
1405
+
1406
+ [[package]]
1407
+ name = "polars-schema"
1408
+ version = "0.46.0"
1409
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1410
+ checksum = "416621ae82b84466cf4ff36838a9b0aeb4a67e76bd3065edc8c9cb7da19b1bc7"
1411
+ dependencies = [
1412
+ "indexmap",
1413
+ "polars-error",
1414
+ "polars-utils",
1415
+ "version_check",
1416
+ ]
1417
+
1418
+ [[package]]
1419
+ name = "polars-utils"
1420
+ version = "0.46.0"
1421
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1422
+ checksum = "a8f6c8166a4a7fbc15b87c81645ed9e1f0651ff2e8c96cafc40ac5bf43441a10"
1423
+ dependencies = [
1424
+ "ahash",
1425
+ "bytemuck",
1426
+ "bytes",
1427
+ "compact_str",
1428
+ "hashbrown 0.15.5",
1429
+ "indexmap",
1430
+ "libc",
1431
+ "memmap2",
1432
+ "num-traits",
1433
+ "once_cell",
1434
+ "polars-error",
1435
+ "rand",
1436
+ "raw-cpuid",
1437
+ "rayon",
1438
+ "stacker",
1439
+ "version_check",
1440
+ ]
1441
+
1442
+ [[package]]
1443
+ name = "portable-atomic"
1444
+ version = "1.11.1"
1445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1446
+ checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
1447
+
1448
+ [[package]]
1449
+ name = "portable-atomic-util"
1450
+ version = "0.2.4"
1451
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1452
+ checksum = "d8a2f0d8d040d7848a709caf78912debcc3f33ee4b3cac47d73d1e1069e83507"
1453
+ dependencies = [
1454
+ "portable-atomic",
1455
+ ]
1456
+
1457
+ [[package]]
1458
+ name = "ppv-lite86"
1459
+ version = "0.2.21"
1460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1461
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1462
+ dependencies = [
1463
+ "zerocopy",
1464
+ ]
1465
+
1466
+ [[package]]
1467
+ name = "proc-macro2"
1468
+ version = "1.0.101"
1469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1470
+ checksum = "89ae43fd86e4158d6db51ad8e2b80f313af9cc74f5c0e03ccb87de09998732de"
1471
+ dependencies = [
1472
+ "unicode-ident",
1473
+ ]
1474
+
1475
+ [[package]]
1476
+ name = "psm"
1477
+ version = "0.1.30"
1478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1479
+ checksum = "3852766467df634d74f0b2d7819bf8dc483a0eb2e3b0f50f756f9cfe8b0d18d8"
1480
+ dependencies = [
1481
+ "ar_archive_writer",
1482
+ "cc",
1483
+ ]
1484
+
1485
+ [[package]]
1486
+ name = "pyo3"
1487
+ version = "0.26.0"
1488
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1489
+ checksum = "7ba0117f4212101ee6544044dae45abe1083d30ce7b29c4b5cbdfa2354e07383"
1490
+ dependencies = [
1491
+ "indoc",
1492
+ "libc",
1493
+ "memoffset",
1494
+ "once_cell",
1495
+ "portable-atomic",
1496
+ "pyo3-build-config",
1497
+ "pyo3-ffi",
1498
+ "pyo3-macros",
1499
+ "unindent",
1500
+ ]
1501
+
1502
+ [[package]]
1503
+ name = "pyo3-build-config"
1504
+ version = "0.26.0"
1505
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1506
+ checksum = "4fc6ddaf24947d12a9aa31ac65431fb1b851b8f4365426e182901eabfb87df5f"
1507
+ dependencies = [
1508
+ "target-lexicon",
1509
+ ]
1510
+
1511
+ [[package]]
1512
+ name = "pyo3-ffi"
1513
+ version = "0.26.0"
1514
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1515
+ checksum = "025474d3928738efb38ac36d4744a74a400c901c7596199e20e45d98eb194105"
1516
+ dependencies = [
1517
+ "libc",
1518
+ "pyo3-build-config",
1519
+ ]
1520
+
1521
+ [[package]]
1522
+ name = "pyo3-macros"
1523
+ version = "0.26.0"
1524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1525
+ checksum = "2e64eb489f22fe1c95911b77c44cc41e7c19f3082fc81cce90f657cdc42ffded"
1526
+ dependencies = [
1527
+ "proc-macro2",
1528
+ "pyo3-macros-backend",
1529
+ "quote",
1530
+ "syn",
1531
+ ]
1532
+
1533
+ [[package]]
1534
+ name = "pyo3-macros-backend"
1535
+ version = "0.26.0"
1536
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1537
+ checksum = "100246c0ecf400b475341b8455a9213344569af29a3c841d29270e53102e0fcf"
1538
+ dependencies = [
1539
+ "heck",
1540
+ "proc-macro2",
1541
+ "pyo3-build-config",
1542
+ "quote",
1543
+ "syn",
1544
+ ]
1545
+
1546
+ [[package]]
1547
+ name = "quote"
1548
+ version = "1.0.40"
1549
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1550
+ checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
1551
+ dependencies = [
1552
+ "proc-macro2",
1553
+ ]
1554
+
1555
+ [[package]]
1556
+ name = "r-efi"
1557
+ version = "5.3.0"
1558
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1559
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1560
+
1561
+ [[package]]
1562
+ name = "rand"
1563
+ version = "0.8.5"
1564
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1565
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
1566
+ dependencies = [
1567
+ "libc",
1568
+ "rand_chacha",
1569
+ "rand_core",
1570
+ ]
1571
+
1572
+ [[package]]
1573
+ name = "rand_chacha"
1574
+ version = "0.3.1"
1575
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1576
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
1577
+ dependencies = [
1578
+ "ppv-lite86",
1579
+ "rand_core",
1580
+ ]
1581
+
1582
+ [[package]]
1583
+ name = "rand_core"
1584
+ version = "0.6.4"
1585
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1586
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1587
+ dependencies = [
1588
+ "getrandom 0.2.16",
1589
+ ]
1590
+
1591
+ [[package]]
1592
+ name = "rand_distr"
1593
+ version = "0.4.3"
1594
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1595
+ checksum = "32cb0b9bc82b0a0876c2dd994a7e7a2683d3e7390ca40e6886785ef0c7e3ee31"
1596
+ dependencies = [
1597
+ "num-traits",
1598
+ "rand",
1599
+ ]
1600
+
1601
+ [[package]]
1602
+ name = "raw-cpuid"
1603
+ version = "11.6.0"
1604
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1605
+ checksum = "498cd0dc59d73224351ee52a95fee0f1a617a2eae0e7d9d720cc622c73a54186"
1606
+ dependencies = [
1607
+ "bitflags 2.11.0",
1608
+ ]
1609
+
1610
+ [[package]]
1611
+ name = "rawpointer"
1612
+ version = "0.2.1"
1613
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1614
+ checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
1615
+
1616
+ [[package]]
1617
+ name = "rayon"
1618
+ version = "1.11.0"
1619
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1620
+ checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
1621
+ dependencies = [
1622
+ "either",
1623
+ "rayon-core",
1624
+ ]
1625
+
1626
+ [[package]]
1627
+ name = "rayon-core"
1628
+ version = "1.13.0"
1629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1630
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
1631
+ dependencies = [
1632
+ "crossbeam-deque",
1633
+ "crossbeam-utils",
1634
+ ]
1635
+
1636
+ [[package]]
1637
+ name = "recursive"
1638
+ version = "0.1.1"
1639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1640
+ checksum = "0786a43debb760f491b1bc0269fe5e84155353c67482b9e60d0cfb596054b43e"
1641
+ dependencies = [
1642
+ "recursive-proc-macro-impl",
1643
+ "stacker",
1644
+ ]
1645
+
1646
+ [[package]]
1647
+ name = "recursive-proc-macro-impl"
1648
+ version = "0.1.1"
1649
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1650
+ checksum = "76009fbe0614077fc1a2ce255e3a1881a2e3a3527097d5dc6d8212c585e7e38b"
1651
+ dependencies = [
1652
+ "quote",
1653
+ "syn",
1654
+ ]
1655
+
1656
+ [[package]]
1657
+ name = "redox_syscall"
1658
+ version = "0.5.18"
1659
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1660
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
1661
+ dependencies = [
1662
+ "bitflags 2.11.0",
1663
+ ]
1664
+
1665
+ [[package]]
1666
+ name = "regex"
1667
+ version = "1.11.3"
1668
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1669
+ checksum = "8b5288124840bee7b386bc413c487869b360b2b4ec421ea56425128692f2a82c"
1670
+ dependencies = [
1671
+ "aho-corasick",
1672
+ "memchr",
1673
+ "regex-automata",
1674
+ "regex-syntax",
1675
+ ]
1676
+
1677
+ [[package]]
1678
+ name = "regex-automata"
1679
+ version = "0.4.11"
1680
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1681
+ checksum = "833eb9ce86d40ef33cb1306d8accf7bc8ec2bfea4355cbdebb3df68b40925cad"
1682
+ dependencies = [
1683
+ "aho-corasick",
1684
+ "memchr",
1685
+ "regex-syntax",
1686
+ ]
1687
+
1688
+ [[package]]
1689
+ name = "regex-syntax"
1690
+ version = "0.8.6"
1691
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1692
+ checksum = "caf4aa5b0f434c91fe5c7f1ecb6a5ece2130b02ad2a590589dda5146df959001"
1693
+
1694
+ [[package]]
1695
+ name = "rustc-hash"
1696
+ version = "2.1.1"
1697
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1698
+ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
1699
+
1700
+ [[package]]
1701
+ name = "rustc_version"
1702
+ version = "0.4.1"
1703
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1704
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
1705
+ dependencies = [
1706
+ "semver",
1707
+ ]
1708
+
1709
+ [[package]]
1710
+ name = "rustversion"
1711
+ version = "1.0.22"
1712
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1713
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1714
+
1715
+ [[package]]
1716
+ name = "ryu"
1717
+ version = "1.0.20"
1718
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1719
+ checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
1720
+
1721
+ [[package]]
1722
+ name = "safe_arch"
1723
+ version = "0.7.4"
1724
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1725
+ checksum = "96b02de82ddbe1b636e6170c21be622223aea188ef2e139be0a5b219ec215323"
1726
+ dependencies = [
1727
+ "bytemuck",
1728
+ ]
1729
+
1730
+ [[package]]
1731
+ name = "schemars"
1732
+ version = "0.8.22"
1733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1734
+ checksum = "3fbf2ae1b8bc8e02df939598064d22402220cd5bbcca1c76f7d6a310974d5615"
1735
+ dependencies = [
1736
+ "dyn-clone",
1737
+ "schemars_derive",
1738
+ "serde",
1739
+ "serde_json",
1740
+ ]
1741
+
1742
+ [[package]]
1743
+ name = "schemars_derive"
1744
+ version = "0.8.22"
1745
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1746
+ checksum = "32e265784ad618884abaea0600a9adf15393368d840e0222d101a072f3f7534d"
1747
+ dependencies = [
1748
+ "proc-macro2",
1749
+ "quote",
1750
+ "serde_derive_internals",
1751
+ "syn",
1752
+ ]
1753
+
1754
+ [[package]]
1755
+ name = "scopeguard"
1756
+ version = "1.2.0"
1757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1758
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1759
+
1760
+ [[package]]
1761
+ name = "semver"
1762
+ version = "1.0.27"
1763
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1764
+ checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
1765
+
1766
+ [[package]]
1767
+ name = "serde"
1768
+ version = "1.0.228"
1769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1770
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1771
+ dependencies = [
1772
+ "serde_core",
1773
+ "serde_derive",
1774
+ ]
1775
+
1776
+ [[package]]
1777
+ name = "serde_core"
1778
+ version = "1.0.228"
1779
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1780
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1781
+ dependencies = [
1782
+ "serde_derive",
1783
+ ]
1784
+
1785
+ [[package]]
1786
+ name = "serde_derive"
1787
+ version = "1.0.228"
1788
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1789
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1790
+ dependencies = [
1791
+ "proc-macro2",
1792
+ "quote",
1793
+ "syn",
1794
+ ]
1795
+
1796
+ [[package]]
1797
+ name = "serde_derive_internals"
1798
+ version = "0.29.1"
1799
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1800
+ checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711"
1801
+ dependencies = [
1802
+ "proc-macro2",
1803
+ "quote",
1804
+ "syn",
1805
+ ]
1806
+
1807
+ [[package]]
1808
+ name = "serde_json"
1809
+ version = "1.0.145"
1810
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1811
+ checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
1812
+ dependencies = [
1813
+ "itoa",
1814
+ "memchr",
1815
+ "ryu",
1816
+ "serde",
1817
+ "serde_core",
1818
+ ]
1819
+
1820
+ [[package]]
1821
+ name = "shlex"
1822
+ version = "1.3.0"
1823
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1824
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1825
+
1826
+ [[package]]
1827
+ name = "simdutf8"
1828
+ version = "0.1.5"
1829
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1830
+ checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
1831
+
1832
+ [[package]]
1833
+ name = "siphasher"
1834
+ version = "1.0.2"
1835
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1836
+ checksum = "b2aa850e253778c88a04c3d7323b043aeda9d3e30d5971937c1855769763678e"
1837
+
1838
+ [[package]]
1839
+ name = "smallvec"
1840
+ version = "1.15.1"
1841
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1842
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
1843
+
1844
+ [[package]]
1845
+ name = "stacker"
1846
+ version = "0.1.23"
1847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1848
+ checksum = "08d74a23609d509411d10e2176dc2a4346e3b4aea2e7b1869f19fdedbc71c013"
1849
+ dependencies = [
1850
+ "cc",
1851
+ "cfg-if",
1852
+ "libc",
1853
+ "psm",
1854
+ "windows-sys 0.59.0",
1855
+ ]
1856
+
1857
+ [[package]]
1858
+ name = "static_assertions"
1859
+ version = "1.1.0"
1860
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1861
+ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
1862
+
1863
+ [[package]]
1864
+ name = "streaming-decompression"
1865
+ version = "0.1.2"
1866
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1867
+ checksum = "bf6cc3b19bfb128a8ad11026086e31d3ce9ad23f8ea37354b31383a187c44cf3"
1868
+ dependencies = [
1869
+ "fallible-streaming-iterator",
1870
+ ]
1871
+
1872
+ [[package]]
1873
+ name = "streaming-iterator"
1874
+ version = "0.1.9"
1875
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1876
+ checksum = "2b2231b7c3057d5e4ad0156fb3dc807d900806020c5ffa3ee6ff2c8c76fb8520"
1877
+
1878
+ [[package]]
1879
+ name = "strength_reduce"
1880
+ version = "0.2.4"
1881
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1882
+ checksum = "fe895eb47f22e2ddd4dabc02bce419d2e643c8e3b585c78158b349195bc24d82"
1883
+
1884
+ [[package]]
1885
+ name = "strum_macros"
1886
+ version = "0.26.4"
1887
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1888
+ checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be"
1889
+ dependencies = [
1890
+ "heck",
1891
+ "proc-macro2",
1892
+ "quote",
1893
+ "rustversion",
1894
+ "syn",
1895
+ ]
1896
+
1897
+ [[package]]
1898
+ name = "syn"
1899
+ version = "2.0.106"
1900
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1901
+ checksum = "ede7c438028d4436d71104916910f5bb611972c5cfd7f89b8300a8186e6fada6"
1902
+ dependencies = [
1903
+ "proc-macro2",
1904
+ "quote",
1905
+ "unicode-ident",
1906
+ ]
1907
+
1908
+ [[package]]
1909
+ name = "target-lexicon"
1910
+ version = "0.13.2"
1911
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1912
+ checksum = "e502f78cdbb8ba4718f566c418c52bc729126ffd16baee5baa718cf25dd5a69a"
1913
+
1914
+ [[package]]
1915
+ name = "thiserror"
1916
+ version = "2.0.18"
1917
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1918
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
1919
+ dependencies = [
1920
+ "thiserror-impl",
1921
+ ]
1922
+
1923
+ [[package]]
1924
+ name = "thiserror-impl"
1925
+ version = "2.0.18"
1926
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1927
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
1928
+ dependencies = [
1929
+ "proc-macro2",
1930
+ "quote",
1931
+ "syn",
1932
+ ]
1933
+
1934
+ [[package]]
1935
+ name = "tiny-keccak"
1936
+ version = "2.0.2"
1937
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1938
+ checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
1939
+ dependencies = [
1940
+ "crunchy",
1941
+ ]
1942
+
1943
+ [[package]]
1944
+ name = "unicode-ident"
1945
+ version = "1.0.18"
1946
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1947
+ checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
1948
+
1949
+ [[package]]
1950
+ name = "unindent"
1951
+ version = "0.2.4"
1952
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1953
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
1954
+
1955
+ [[package]]
1956
+ name = "version_check"
1957
+ version = "0.9.5"
1958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1959
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
1960
+
1961
+ [[package]]
1962
+ name = "wasi"
1963
+ version = "0.11.1+wasi-snapshot-preview1"
1964
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1965
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1966
+
1967
+ [[package]]
1968
+ name = "wasi"
1969
+ version = "0.14.7+wasi-0.2.4"
1970
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1971
+ checksum = "883478de20367e224c0090af9cf5f9fa85bed63a95c1abf3afc5c083ebc06e8c"
1972
+ dependencies = [
1973
+ "wasip2",
1974
+ ]
1975
+
1976
+ [[package]]
1977
+ name = "wasip2"
1978
+ version = "1.0.1+wasi-0.2.4"
1979
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1980
+ checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
1981
+ dependencies = [
1982
+ "wit-bindgen",
1983
+ ]
1984
+
1985
+ [[package]]
1986
+ name = "wasm-bindgen"
1987
+ version = "0.2.104"
1988
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1989
+ checksum = "c1da10c01ae9f1ae40cbfac0bac3b1e724b320abfcf52229f80b547c0d250e2d"
1990
+ dependencies = [
1991
+ "cfg-if",
1992
+ "once_cell",
1993
+ "rustversion",
1994
+ "wasm-bindgen-macro",
1995
+ "wasm-bindgen-shared",
1996
+ ]
1997
+
1998
+ [[package]]
1999
+ name = "wasm-bindgen-backend"
2000
+ version = "0.2.104"
2001
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2002
+ checksum = "671c9a5a66f49d8a47345ab942e2cb93c7d1d0339065d4f8139c486121b43b19"
2003
+ dependencies = [
2004
+ "bumpalo",
2005
+ "log",
2006
+ "proc-macro2",
2007
+ "quote",
2008
+ "syn",
2009
+ "wasm-bindgen-shared",
2010
+ ]
2011
+
2012
+ [[package]]
2013
+ name = "wasm-bindgen-macro"
2014
+ version = "0.2.104"
2015
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2016
+ checksum = "7ca60477e4c59f5f2986c50191cd972e3a50d8a95603bc9434501cf156a9a119"
2017
+ dependencies = [
2018
+ "quote",
2019
+ "wasm-bindgen-macro-support",
2020
+ ]
2021
+
2022
+ [[package]]
2023
+ name = "wasm-bindgen-macro-support"
2024
+ version = "0.2.104"
2025
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2026
+ checksum = "9f07d2f20d4da7b26400c9f4a0511e6e0345b040694e8a75bd41d578fa4421d7"
2027
+ dependencies = [
2028
+ "proc-macro2",
2029
+ "quote",
2030
+ "syn",
2031
+ "wasm-bindgen-backend",
2032
+ "wasm-bindgen-shared",
2033
+ ]
2034
+
2035
+ [[package]]
2036
+ name = "wasm-bindgen-shared"
2037
+ version = "0.2.104"
2038
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2039
+ checksum = "bad67dc8b2a1a6e5448428adec4c3e84c43e561d8c9ee8a9e5aabeb193ec41d1"
2040
+ dependencies = [
2041
+ "unicode-ident",
2042
+ ]
2043
+
2044
+ [[package]]
2045
+ name = "wide"
2046
+ version = "0.7.33"
2047
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2048
+ checksum = "0ce5da8ecb62bcd8ec8b7ea19f69a51275e91299be594ea5cc6ef7819e16cd03"
2049
+ dependencies = [
2050
+ "bytemuck",
2051
+ "safe_arch",
2052
+ ]
2053
+
2054
+ [[package]]
2055
+ name = "windows-core"
2056
+ version = "0.62.1"
2057
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2058
+ checksum = "6844ee5416b285084d3d3fffd743b925a6c9385455f64f6d4fa3031c4c2749a9"
2059
+ dependencies = [
2060
+ "windows-implement",
2061
+ "windows-interface",
2062
+ "windows-link",
2063
+ "windows-result",
2064
+ "windows-strings",
2065
+ ]
2066
+
2067
+ [[package]]
2068
+ name = "windows-implement"
2069
+ version = "0.60.1"
2070
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2071
+ checksum = "edb307e42a74fb6de9bf3a02d9712678b22399c87e6fa869d6dfcd8c1b7754e0"
2072
+ dependencies = [
2073
+ "proc-macro2",
2074
+ "quote",
2075
+ "syn",
2076
+ ]
2077
+
2078
+ [[package]]
2079
+ name = "windows-interface"
2080
+ version = "0.59.2"
2081
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2082
+ checksum = "c0abd1ddbc6964ac14db11c7213d6532ef34bd9aa042c2e5935f59d7908b46a5"
2083
+ dependencies = [
2084
+ "proc-macro2",
2085
+ "quote",
2086
+ "syn",
2087
+ ]
2088
+
2089
+ [[package]]
2090
+ name = "windows-link"
2091
+ version = "0.2.1"
2092
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2093
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
2094
+
2095
+ [[package]]
2096
+ name = "windows-result"
2097
+ version = "0.4.0"
2098
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2099
+ checksum = "7084dcc306f89883455a206237404d3eaf961e5bd7e0f312f7c91f57eb44167f"
2100
+ dependencies = [
2101
+ "windows-link",
2102
+ ]
2103
+
2104
+ [[package]]
2105
+ name = "windows-strings"
2106
+ version = "0.5.0"
2107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2108
+ checksum = "7218c655a553b0bed4426cf54b20d7ba363ef543b52d515b3e48d7fd55318dda"
2109
+ dependencies = [
2110
+ "windows-link",
2111
+ ]
2112
+
2113
+ [[package]]
2114
+ name = "windows-sys"
2115
+ version = "0.59.0"
2116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2117
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
2118
+ dependencies = [
2119
+ "windows-targets",
2120
+ ]
2121
+
2122
+ [[package]]
2123
+ name = "windows-sys"
2124
+ version = "0.61.2"
2125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2126
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
2127
+ dependencies = [
2128
+ "windows-link",
2129
+ ]
2130
+
2131
+ [[package]]
2132
+ name = "windows-targets"
2133
+ version = "0.52.6"
2134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2135
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
2136
+ dependencies = [
2137
+ "windows_aarch64_gnullvm",
2138
+ "windows_aarch64_msvc",
2139
+ "windows_i686_gnu",
2140
+ "windows_i686_gnullvm",
2141
+ "windows_i686_msvc",
2142
+ "windows_x86_64_gnu",
2143
+ "windows_x86_64_gnullvm",
2144
+ "windows_x86_64_msvc",
2145
+ ]
2146
+
2147
+ [[package]]
2148
+ name = "windows_aarch64_gnullvm"
2149
+ version = "0.52.6"
2150
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2151
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
2152
+
2153
+ [[package]]
2154
+ name = "windows_aarch64_msvc"
2155
+ version = "0.52.6"
2156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2157
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
2158
+
2159
+ [[package]]
2160
+ name = "windows_i686_gnu"
2161
+ version = "0.52.6"
2162
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2163
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
2164
+
2165
+ [[package]]
2166
+ name = "windows_i686_gnullvm"
2167
+ version = "0.52.6"
2168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2169
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
2170
+
2171
+ [[package]]
2172
+ name = "windows_i686_msvc"
2173
+ version = "0.52.6"
2174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2175
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
2176
+
2177
+ [[package]]
2178
+ name = "windows_x86_64_gnu"
2179
+ version = "0.52.6"
2180
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2181
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
2182
+
2183
+ [[package]]
2184
+ name = "windows_x86_64_gnullvm"
2185
+ version = "0.52.6"
2186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2187
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
2188
+
2189
+ [[package]]
2190
+ name = "windows_x86_64_msvc"
2191
+ version = "0.52.6"
2192
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2193
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
2194
+
2195
+ [[package]]
2196
+ name = "wit-bindgen"
2197
+ version = "0.46.0"
2198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2199
+ checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
2200
+
2201
+ [[package]]
2202
+ name = "xxhash-rust"
2203
+ version = "0.8.15"
2204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2205
+ checksum = "fdd20c5420375476fbd4394763288da7eb0cc0b8c11deed431a91562af7335d3"
2206
+
2207
+ [[package]]
2208
+ name = "zerocopy"
2209
+ version = "0.8.27"
2210
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2211
+ checksum = "0894878a5fa3edfd6da3f88c4805f4c8558e2b996227a3d864f47fe11e38282c"
2212
+ dependencies = [
2213
+ "zerocopy-derive",
2214
+ ]
2215
+
2216
+ [[package]]
2217
+ name = "zerocopy-derive"
2218
+ version = "0.8.27"
2219
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2220
+ checksum = "88d2b8d9c68ad2b9e4340d7832716a4d21a22a1154777ad56ea55c51a9cf3831"
2221
+ dependencies = [
2222
+ "proc-macro2",
2223
+ "quote",
2224
+ "syn",
2225
+ ]