datacortex 0.3.9__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (57) hide show
  1. datacortex-0.3.9/Cargo.lock +871 -0
  2. datacortex-0.3.9/Cargo.toml +27 -0
  3. datacortex-0.3.9/PKG-INFO +63 -0
  4. datacortex-0.3.9/README.md +43 -0
  5. datacortex-0.3.9/crates/datacortex-core/Cargo.toml +28 -0
  6. datacortex-0.3.9/crates/datacortex-core/README.md +88 -0
  7. datacortex-0.3.9/crates/datacortex-core/examples/dump_transform.rs +64 -0
  8. datacortex-0.3.9/crates/datacortex-core/examples/test_pipeline.rs +28 -0
  9. datacortex-0.3.9/crates/datacortex-core/examples/test_vdict.rs +38 -0
  10. datacortex-0.3.9/crates/datacortex-core/examples/trace_spacex.rs +70 -0
  11. datacortex-0.3.9/crates/datacortex-core/examples/validation_ab_test.rs +152 -0
  12. datacortex-0.3.9/crates/datacortex-core/src/codec.rs +2302 -0
  13. datacortex-0.3.9/crates/datacortex-core/src/dcx.rs +480 -0
  14. datacortex-0.3.9/crates/datacortex-core/src/entropy/arithmetic.rs +331 -0
  15. datacortex-0.3.9/crates/datacortex-core/src/entropy/mod.rs +7 -0
  16. datacortex-0.3.9/crates/datacortex-core/src/format/json.rs +337 -0
  17. datacortex-0.3.9/crates/datacortex-core/src/format/json_array.rs +2120 -0
  18. datacortex-0.3.9/crates/datacortex-core/src/format/mod.rs +590 -0
  19. datacortex-0.3.9/crates/datacortex-core/src/format/ndjson.rs +2166 -0
  20. datacortex-0.3.9/crates/datacortex-core/src/format/schema.rs +1097 -0
  21. datacortex-0.3.9/crates/datacortex-core/src/format/transform.rs +160 -0
  22. datacortex-0.3.9/crates/datacortex-core/src/format/typed_encoding.rs +2534 -0
  23. datacortex-0.3.9/crates/datacortex-core/src/format/value_dict.rs +389 -0
  24. datacortex-0.3.9/crates/datacortex-core/src/lib.rs +19 -0
  25. datacortex-0.3.9/crates/datacortex-core/src/mixer/apm.rs +189 -0
  26. datacortex-0.3.9/crates/datacortex-core/src/mixer/dual_mixer.rs +355 -0
  27. datacortex-0.3.9/crates/datacortex-core/src/mixer/hierarchical_mixer.rs +410 -0
  28. datacortex-0.3.9/crates/datacortex-core/src/mixer/isse.rs +419 -0
  29. datacortex-0.3.9/crates/datacortex-core/src/mixer/logistic.rs +211 -0
  30. datacortex-0.3.9/crates/datacortex-core/src/mixer/meta_mixer.rs +156 -0
  31. datacortex-0.3.9/crates/datacortex-core/src/mixer/mod.rs +21 -0
  32. datacortex-0.3.9/crates/datacortex-core/src/mixer/multi_set_mixer.rs +353 -0
  33. datacortex-0.3.9/crates/datacortex-core/src/model/cm_model.rs +374 -0
  34. datacortex-0.3.9/crates/datacortex-core/src/model/dmc_model.rs +395 -0
  35. datacortex-0.3.9/crates/datacortex-core/src/model/engine.rs +836 -0
  36. datacortex-0.3.9/crates/datacortex-core/src/model/gru_model.rs +886 -0
  37. datacortex-0.3.9/crates/datacortex-core/src/model/indirect_model.rs +273 -0
  38. datacortex-0.3.9/crates/datacortex-core/src/model/json_model.rs +275 -0
  39. datacortex-0.3.9/crates/datacortex-core/src/model/match_model.rs +450 -0
  40. datacortex-0.3.9/crates/datacortex-core/src/model/mod.rs +30 -0
  41. datacortex-0.3.9/crates/datacortex-core/src/model/neural_model.rs +234 -0
  42. datacortex-0.3.9/crates/datacortex-core/src/model/order0.rs +174 -0
  43. datacortex-0.3.9/crates/datacortex-core/src/model/ppm_model.rs +564 -0
  44. datacortex-0.3.9/crates/datacortex-core/src/model/run_model.rs +134 -0
  45. datacortex-0.3.9/crates/datacortex-core/src/model/sparse_model.rs +139 -0
  46. datacortex-0.3.9/crates/datacortex-core/src/model/word_model.rs +202 -0
  47. datacortex-0.3.9/crates/datacortex-core/src/state/context_map.rs +286 -0
  48. datacortex-0.3.9/crates/datacortex-core/src/state/mod.rs +12 -0
  49. datacortex-0.3.9/crates/datacortex-core/src/state/state_map.rs +176 -0
  50. datacortex-0.3.9/crates/datacortex-core/src/state/state_table.rs +376 -0
  51. datacortex-0.3.9/crates/datacortex-core/tests/roundtrip.rs +94 -0
  52. datacortex-0.3.9/crates/datacortex-python/Cargo.toml +21 -0
  53. datacortex-0.3.9/crates/datacortex-python/README.md +43 -0
  54. datacortex-0.3.9/crates/datacortex-python/src/lib.rs +176 -0
  55. datacortex-0.3.9/pyproject.toml +32 -0
  56. datacortex-0.3.9/python/datacortex/__init__.py +35 -0
  57. datacortex-0.3.9/python/datacortex/py.typed +0 -0
@@ -0,0 +1,871 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "aho-corasick"
7
+ version = "1.1.4"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
10
+ dependencies = [
11
+ "memchr",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "alloc-no-stdlib"
16
+ version = "2.0.4"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
19
+
20
+ [[package]]
21
+ name = "alloc-stdlib"
22
+ version = "0.2.2"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece"
25
+ dependencies = [
26
+ "alloc-no-stdlib",
27
+ ]
28
+
29
+ [[package]]
30
+ name = "anstream"
31
+ version = "1.0.0"
32
+ source = "registry+https://github.com/rust-lang/crates.io-index"
33
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
34
+ dependencies = [
35
+ "anstyle",
36
+ "anstyle-parse",
37
+ "anstyle-query",
38
+ "anstyle-wincon",
39
+ "colorchoice",
40
+ "is_terminal_polyfill",
41
+ "utf8parse",
42
+ ]
43
+
44
+ [[package]]
45
+ name = "anstyle"
46
+ version = "1.0.14"
47
+ source = "registry+https://github.com/rust-lang/crates.io-index"
48
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
49
+
50
+ [[package]]
51
+ name = "anstyle-parse"
52
+ version = "1.0.0"
53
+ source = "registry+https://github.com/rust-lang/crates.io-index"
54
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
55
+ dependencies = [
56
+ "utf8parse",
57
+ ]
58
+
59
+ [[package]]
60
+ name = "anstyle-query"
61
+ version = "1.1.5"
62
+ source = "registry+https://github.com/rust-lang/crates.io-index"
63
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
64
+ dependencies = [
65
+ "windows-sys",
66
+ ]
67
+
68
+ [[package]]
69
+ name = "anstyle-wincon"
70
+ version = "3.0.11"
71
+ source = "registry+https://github.com/rust-lang/crates.io-index"
72
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
73
+ dependencies = [
74
+ "anstyle",
75
+ "once_cell_polyfill",
76
+ "windows-sys",
77
+ ]
78
+
79
+ [[package]]
80
+ name = "autocfg"
81
+ version = "1.5.0"
82
+ source = "registry+https://github.com/rust-lang/crates.io-index"
83
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
84
+
85
+ [[package]]
86
+ name = "bindgen"
87
+ version = "0.72.1"
88
+ source = "registry+https://github.com/rust-lang/crates.io-index"
89
+ checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895"
90
+ dependencies = [
91
+ "bitflags",
92
+ "cexpr",
93
+ "clang-sys",
94
+ "itertools",
95
+ "log",
96
+ "prettyplease",
97
+ "proc-macro2",
98
+ "quote",
99
+ "regex",
100
+ "rustc-hash",
101
+ "shlex",
102
+ "syn",
103
+ ]
104
+
105
+ [[package]]
106
+ name = "bitflags"
107
+ version = "2.11.0"
108
+ source = "registry+https://github.com/rust-lang/crates.io-index"
109
+ checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
110
+
111
+ [[package]]
112
+ name = "brotli"
113
+ version = "7.0.0"
114
+ source = "registry+https://github.com/rust-lang/crates.io-index"
115
+ checksum = "cc97b8f16f944bba54f0433f07e30be199b6dc2bd25937444bbad560bcea29bd"
116
+ dependencies = [
117
+ "alloc-no-stdlib",
118
+ "alloc-stdlib",
119
+ "brotli-decompressor",
120
+ ]
121
+
122
+ [[package]]
123
+ name = "brotli-decompressor"
124
+ version = "4.0.3"
125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
126
+ checksum = "a334ef7c9e23abf0ce748e8cd309037da93e606ad52eb372e4ce327a0dcfbdfd"
127
+ dependencies = [
128
+ "alloc-no-stdlib",
129
+ "alloc-stdlib",
130
+ ]
131
+
132
+ [[package]]
133
+ name = "cc"
134
+ version = "1.2.57"
135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
136
+ checksum = "7a0dd1ca384932ff3641c8718a02769f1698e7563dc6974ffd03346116310423"
137
+ dependencies = [
138
+ "find-msvc-tools",
139
+ "jobserver",
140
+ "libc",
141
+ "shlex",
142
+ ]
143
+
144
+ [[package]]
145
+ name = "cexpr"
146
+ version = "0.6.0"
147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
148
+ checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
149
+ dependencies = [
150
+ "nom",
151
+ ]
152
+
153
+ [[package]]
154
+ name = "cfg-if"
155
+ version = "1.0.4"
156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
157
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
158
+
159
+ [[package]]
160
+ name = "clang-sys"
161
+ version = "1.8.1"
162
+ source = "registry+https://github.com/rust-lang/crates.io-index"
163
+ checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
164
+ dependencies = [
165
+ "glob",
166
+ "libc",
167
+ "libloading",
168
+ ]
169
+
170
+ [[package]]
171
+ name = "clap"
172
+ version = "4.6.0"
173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
174
+ checksum = "b193af5b67834b676abd72466a96c1024e6a6ad978a1f484bd90b85c94041351"
175
+ dependencies = [
176
+ "clap_builder",
177
+ "clap_derive",
178
+ ]
179
+
180
+ [[package]]
181
+ name = "clap_builder"
182
+ version = "4.6.0"
183
+ source = "registry+https://github.com/rust-lang/crates.io-index"
184
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
185
+ dependencies = [
186
+ "anstream",
187
+ "anstyle",
188
+ "clap_lex",
189
+ "strsim",
190
+ ]
191
+
192
+ [[package]]
193
+ name = "clap_derive"
194
+ version = "4.6.0"
195
+ source = "registry+https://github.com/rust-lang/crates.io-index"
196
+ checksum = "1110bd8a634a1ab8cb04345d8d878267d57c3cf1b38d91b71af6686408bbca6a"
197
+ dependencies = [
198
+ "heck",
199
+ "proc-macro2",
200
+ "quote",
201
+ "syn",
202
+ ]
203
+
204
+ [[package]]
205
+ name = "clap_lex"
206
+ version = "1.1.0"
207
+ source = "registry+https://github.com/rust-lang/crates.io-index"
208
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
209
+
210
+ [[package]]
211
+ name = "cmake"
212
+ version = "0.1.57"
213
+ source = "registry+https://github.com/rust-lang/crates.io-index"
214
+ checksum = "75443c44cd6b379beb8c5b45d85d0773baf31cce901fe7bb252f4eff3008ef7d"
215
+ dependencies = [
216
+ "cc",
217
+ ]
218
+
219
+ [[package]]
220
+ name = "colorchoice"
221
+ version = "1.0.5"
222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
223
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
224
+
225
+ [[package]]
226
+ name = "crc32fast"
227
+ version = "1.5.0"
228
+ source = "registry+https://github.com/rust-lang/crates.io-index"
229
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
230
+ dependencies = [
231
+ "cfg-if",
232
+ ]
233
+
234
+ [[package]]
235
+ name = "datacortex-cli"
236
+ version = "0.3.9"
237
+ dependencies = [
238
+ "clap",
239
+ "datacortex-core",
240
+ "serde_json",
241
+ ]
242
+
243
+ [[package]]
244
+ name = "datacortex-core"
245
+ version = "0.3.9"
246
+ dependencies = [
247
+ "brotli",
248
+ "crc32fast",
249
+ "serde",
250
+ "serde_json",
251
+ "zstd",
252
+ ]
253
+
254
+ [[package]]
255
+ name = "datacortex-neural"
256
+ version = "0.3.9"
257
+ dependencies = [
258
+ "encoding_rs",
259
+ "llama-cpp-2",
260
+ ]
261
+
262
+ [[package]]
263
+ name = "datacortex-python"
264
+ version = "0.3.9"
265
+ dependencies = [
266
+ "datacortex-core",
267
+ "pyo3",
268
+ ]
269
+
270
+ [[package]]
271
+ name = "either"
272
+ version = "1.15.0"
273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
274
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
275
+
276
+ [[package]]
277
+ name = "encoding_rs"
278
+ version = "0.8.35"
279
+ source = "registry+https://github.com/rust-lang/crates.io-index"
280
+ checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
281
+ dependencies = [
282
+ "cfg-if",
283
+ ]
284
+
285
+ [[package]]
286
+ name = "enumflags2"
287
+ version = "0.7.12"
288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
289
+ checksum = "1027f7680c853e056ebcec683615fb6fbbc07dbaa13b4d5d9442b146ded4ecef"
290
+ dependencies = [
291
+ "enumflags2_derive",
292
+ ]
293
+
294
+ [[package]]
295
+ name = "enumflags2_derive"
296
+ version = "0.7.12"
297
+ source = "registry+https://github.com/rust-lang/crates.io-index"
298
+ checksum = "67c78a4d8fdf9953a5c9d458f9efe940fd97a0cab0941c075a813ac594733827"
299
+ dependencies = [
300
+ "proc-macro2",
301
+ "quote",
302
+ "syn",
303
+ ]
304
+
305
+ [[package]]
306
+ name = "find-msvc-tools"
307
+ version = "0.1.9"
308
+ source = "registry+https://github.com/rust-lang/crates.io-index"
309
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
310
+
311
+ [[package]]
312
+ name = "find_cuda_helper"
313
+ version = "0.2.0"
314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
315
+ checksum = "f9f9e65c593dd01ac77daad909ea4ad17f0d6d1776193fc8ea766356177abdad"
316
+ dependencies = [
317
+ "glob",
318
+ ]
319
+
320
+ [[package]]
321
+ name = "getrandom"
322
+ version = "0.3.4"
323
+ source = "registry+https://github.com/rust-lang/crates.io-index"
324
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
325
+ dependencies = [
326
+ "cfg-if",
327
+ "libc",
328
+ "r-efi",
329
+ "wasip2",
330
+ ]
331
+
332
+ [[package]]
333
+ name = "glob"
334
+ version = "0.3.3"
335
+ source = "registry+https://github.com/rust-lang/crates.io-index"
336
+ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
337
+
338
+ [[package]]
339
+ name = "heck"
340
+ version = "0.5.0"
341
+ source = "registry+https://github.com/rust-lang/crates.io-index"
342
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
343
+
344
+ [[package]]
345
+ name = "indoc"
346
+ version = "2.0.7"
347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
348
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
349
+ dependencies = [
350
+ "rustversion",
351
+ ]
352
+
353
+ [[package]]
354
+ name = "is_terminal_polyfill"
355
+ version = "1.70.2"
356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
357
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
358
+
359
+ [[package]]
360
+ name = "itertools"
361
+ version = "0.13.0"
362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
363
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
364
+ dependencies = [
365
+ "either",
366
+ ]
367
+
368
+ [[package]]
369
+ name = "itoa"
370
+ version = "1.0.17"
371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
372
+ checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
373
+
374
+ [[package]]
375
+ name = "jobserver"
376
+ version = "0.1.34"
377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
378
+ checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
379
+ dependencies = [
380
+ "getrandom",
381
+ "libc",
382
+ ]
383
+
384
+ [[package]]
385
+ name = "libc"
386
+ version = "0.2.183"
387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
388
+ checksum = "b5b646652bf6661599e1da8901b3b9522896f01e736bad5f723fe7a3a27f899d"
389
+
390
+ [[package]]
391
+ name = "libloading"
392
+ version = "0.8.9"
393
+ source = "registry+https://github.com/rust-lang/crates.io-index"
394
+ checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
395
+ dependencies = [
396
+ "cfg-if",
397
+ "windows-link",
398
+ ]
399
+
400
+ [[package]]
401
+ name = "llama-cpp-2"
402
+ version = "0.1.138"
403
+ source = "registry+https://github.com/rust-lang/crates.io-index"
404
+ checksum = "2947ab625c59d1fdf42e61f538c3fa66f43de2f78316971920873f359483d1d8"
405
+ dependencies = [
406
+ "encoding_rs",
407
+ "enumflags2",
408
+ "llama-cpp-sys-2",
409
+ "thiserror",
410
+ "tracing",
411
+ "tracing-core",
412
+ ]
413
+
414
+ [[package]]
415
+ name = "llama-cpp-sys-2"
416
+ version = "0.1.138"
417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
418
+ checksum = "84a529006bf16af70c7485ba957820dc2bc9467d75697e97970c81d2da73c76f"
419
+ dependencies = [
420
+ "bindgen",
421
+ "cc",
422
+ "cmake",
423
+ "find_cuda_helper",
424
+ "glob",
425
+ "walkdir",
426
+ ]
427
+
428
+ [[package]]
429
+ name = "log"
430
+ version = "0.4.29"
431
+ source = "registry+https://github.com/rust-lang/crates.io-index"
432
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
433
+
434
+ [[package]]
435
+ name = "memchr"
436
+ version = "2.8.0"
437
+ source = "registry+https://github.com/rust-lang/crates.io-index"
438
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
439
+
440
+ [[package]]
441
+ name = "memoffset"
442
+ version = "0.9.1"
443
+ source = "registry+https://github.com/rust-lang/crates.io-index"
444
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
445
+ dependencies = [
446
+ "autocfg",
447
+ ]
448
+
449
+ [[package]]
450
+ name = "minimal-lexical"
451
+ version = "0.2.1"
452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
453
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
454
+
455
+ [[package]]
456
+ name = "nom"
457
+ version = "7.1.3"
458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
459
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
460
+ dependencies = [
461
+ "memchr",
462
+ "minimal-lexical",
463
+ ]
464
+
465
+ [[package]]
466
+ name = "once_cell"
467
+ version = "1.21.4"
468
+ source = "registry+https://github.com/rust-lang/crates.io-index"
469
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
470
+
471
+ [[package]]
472
+ name = "once_cell_polyfill"
473
+ version = "1.70.2"
474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
475
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
476
+
477
+ [[package]]
478
+ name = "pin-project-lite"
479
+ version = "0.2.17"
480
+ source = "registry+https://github.com/rust-lang/crates.io-index"
481
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
482
+
483
+ [[package]]
484
+ name = "pkg-config"
485
+ version = "0.3.32"
486
+ source = "registry+https://github.com/rust-lang/crates.io-index"
487
+ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
488
+
489
+ [[package]]
490
+ name = "portable-atomic"
491
+ version = "1.13.1"
492
+ source = "registry+https://github.com/rust-lang/crates.io-index"
493
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
494
+
495
+ [[package]]
496
+ name = "prettyplease"
497
+ version = "0.2.37"
498
+ source = "registry+https://github.com/rust-lang/crates.io-index"
499
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
500
+ dependencies = [
501
+ "proc-macro2",
502
+ "syn",
503
+ ]
504
+
505
+ [[package]]
506
+ name = "proc-macro2"
507
+ version = "1.0.106"
508
+ source = "registry+https://github.com/rust-lang/crates.io-index"
509
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
510
+ dependencies = [
511
+ "unicode-ident",
512
+ ]
513
+
514
+ [[package]]
515
+ name = "pyo3"
516
+ version = "0.23.5"
517
+ source = "registry+https://github.com/rust-lang/crates.io-index"
518
+ checksum = "7778bffd85cf38175ac1f545509665d0b9b92a198ca7941f131f85f7a4f9a872"
519
+ dependencies = [
520
+ "cfg-if",
521
+ "indoc",
522
+ "libc",
523
+ "memoffset",
524
+ "once_cell",
525
+ "portable-atomic",
526
+ "pyo3-build-config",
527
+ "pyo3-ffi",
528
+ "pyo3-macros",
529
+ "unindent",
530
+ ]
531
+
532
+ [[package]]
533
+ name = "pyo3-build-config"
534
+ version = "0.23.5"
535
+ source = "registry+https://github.com/rust-lang/crates.io-index"
536
+ checksum = "94f6cbe86ef3bf18998d9df6e0f3fc1050a8c5efa409bf712e661a4366e010fb"
537
+ dependencies = [
538
+ "once_cell",
539
+ "target-lexicon",
540
+ ]
541
+
542
+ [[package]]
543
+ name = "pyo3-ffi"
544
+ version = "0.23.5"
545
+ source = "registry+https://github.com/rust-lang/crates.io-index"
546
+ checksum = "e9f1b4c431c0bb1c8fb0a338709859eed0d030ff6daa34368d3b152a63dfdd8d"
547
+ dependencies = [
548
+ "libc",
549
+ "pyo3-build-config",
550
+ ]
551
+
552
+ [[package]]
553
+ name = "pyo3-macros"
554
+ version = "0.23.5"
555
+ source = "registry+https://github.com/rust-lang/crates.io-index"
556
+ checksum = "fbc2201328f63c4710f68abdf653c89d8dbc2858b88c5d88b0ff38a75288a9da"
557
+ dependencies = [
558
+ "proc-macro2",
559
+ "pyo3-macros-backend",
560
+ "quote",
561
+ "syn",
562
+ ]
563
+
564
+ [[package]]
565
+ name = "pyo3-macros-backend"
566
+ version = "0.23.5"
567
+ source = "registry+https://github.com/rust-lang/crates.io-index"
568
+ checksum = "fca6726ad0f3da9c9de093d6f116a93c1a38e417ed73bf138472cf4064f72028"
569
+ dependencies = [
570
+ "heck",
571
+ "proc-macro2",
572
+ "pyo3-build-config",
573
+ "quote",
574
+ "syn",
575
+ ]
576
+
577
+ [[package]]
578
+ name = "quote"
579
+ version = "1.0.45"
580
+ source = "registry+https://github.com/rust-lang/crates.io-index"
581
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
582
+ dependencies = [
583
+ "proc-macro2",
584
+ ]
585
+
586
+ [[package]]
587
+ name = "r-efi"
588
+ version = "5.3.0"
589
+ source = "registry+https://github.com/rust-lang/crates.io-index"
590
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
591
+
592
+ [[package]]
593
+ name = "regex"
594
+ version = "1.12.3"
595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
596
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
597
+ dependencies = [
598
+ "aho-corasick",
599
+ "memchr",
600
+ "regex-automata",
601
+ "regex-syntax",
602
+ ]
603
+
604
+ [[package]]
605
+ name = "regex-automata"
606
+ version = "0.4.14"
607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
608
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
609
+ dependencies = [
610
+ "aho-corasick",
611
+ "memchr",
612
+ "regex-syntax",
613
+ ]
614
+
615
+ [[package]]
616
+ name = "regex-syntax"
617
+ version = "0.8.10"
618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
619
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
620
+
621
+ [[package]]
622
+ name = "rustc-hash"
623
+ version = "2.1.1"
624
+ source = "registry+https://github.com/rust-lang/crates.io-index"
625
+ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
626
+
627
+ [[package]]
628
+ name = "rustversion"
629
+ version = "1.0.22"
630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
631
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
632
+
633
+ [[package]]
634
+ name = "same-file"
635
+ version = "1.0.6"
636
+ source = "registry+https://github.com/rust-lang/crates.io-index"
637
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
638
+ dependencies = [
639
+ "winapi-util",
640
+ ]
641
+
642
+ [[package]]
643
+ name = "serde"
644
+ version = "1.0.228"
645
+ source = "registry+https://github.com/rust-lang/crates.io-index"
646
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
647
+ dependencies = [
648
+ "serde_core",
649
+ "serde_derive",
650
+ ]
651
+
652
+ [[package]]
653
+ name = "serde_core"
654
+ version = "1.0.228"
655
+ source = "registry+https://github.com/rust-lang/crates.io-index"
656
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
657
+ dependencies = [
658
+ "serde_derive",
659
+ ]
660
+
661
+ [[package]]
662
+ name = "serde_derive"
663
+ version = "1.0.228"
664
+ source = "registry+https://github.com/rust-lang/crates.io-index"
665
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
666
+ dependencies = [
667
+ "proc-macro2",
668
+ "quote",
669
+ "syn",
670
+ ]
671
+
672
+ [[package]]
673
+ name = "serde_json"
674
+ version = "1.0.149"
675
+ source = "registry+https://github.com/rust-lang/crates.io-index"
676
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
677
+ dependencies = [
678
+ "itoa",
679
+ "memchr",
680
+ "serde",
681
+ "serde_core",
682
+ "zmij",
683
+ ]
684
+
685
+ [[package]]
686
+ name = "shlex"
687
+ version = "1.3.0"
688
+ source = "registry+https://github.com/rust-lang/crates.io-index"
689
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
690
+
691
+ [[package]]
692
+ name = "strsim"
693
+ version = "0.11.1"
694
+ source = "registry+https://github.com/rust-lang/crates.io-index"
695
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
696
+
697
+ [[package]]
698
+ name = "syn"
699
+ version = "2.0.117"
700
+ source = "registry+https://github.com/rust-lang/crates.io-index"
701
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
702
+ dependencies = [
703
+ "proc-macro2",
704
+ "quote",
705
+ "unicode-ident",
706
+ ]
707
+
708
+ [[package]]
709
+ name = "target-lexicon"
710
+ version = "0.12.16"
711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
712
+ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
713
+
714
+ [[package]]
715
+ name = "thiserror"
716
+ version = "2.0.18"
717
+ source = "registry+https://github.com/rust-lang/crates.io-index"
718
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
719
+ dependencies = [
720
+ "thiserror-impl",
721
+ ]
722
+
723
+ [[package]]
724
+ name = "thiserror-impl"
725
+ version = "2.0.18"
726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
727
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
728
+ dependencies = [
729
+ "proc-macro2",
730
+ "quote",
731
+ "syn",
732
+ ]
733
+
734
+ [[package]]
735
+ name = "tracing"
736
+ version = "0.1.44"
737
+ source = "registry+https://github.com/rust-lang/crates.io-index"
738
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
739
+ dependencies = [
740
+ "pin-project-lite",
741
+ "tracing-attributes",
742
+ "tracing-core",
743
+ ]
744
+
745
+ [[package]]
746
+ name = "tracing-attributes"
747
+ version = "0.1.31"
748
+ source = "registry+https://github.com/rust-lang/crates.io-index"
749
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
750
+ dependencies = [
751
+ "proc-macro2",
752
+ "quote",
753
+ "syn",
754
+ ]
755
+
756
+ [[package]]
757
+ name = "tracing-core"
758
+ version = "0.1.36"
759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
760
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
761
+ dependencies = [
762
+ "once_cell",
763
+ "valuable",
764
+ ]
765
+
766
+ [[package]]
767
+ name = "unicode-ident"
768
+ version = "1.0.24"
769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
770
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
771
+
772
+ [[package]]
773
+ name = "unindent"
774
+ version = "0.2.4"
775
+ source = "registry+https://github.com/rust-lang/crates.io-index"
776
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
777
+
778
+ [[package]]
779
+ name = "utf8parse"
780
+ version = "0.2.2"
781
+ source = "registry+https://github.com/rust-lang/crates.io-index"
782
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
783
+
784
+ [[package]]
785
+ name = "valuable"
786
+ version = "0.1.1"
787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
788
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
789
+
790
+ [[package]]
791
+ name = "walkdir"
792
+ version = "2.5.0"
793
+ source = "registry+https://github.com/rust-lang/crates.io-index"
794
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
795
+ dependencies = [
796
+ "same-file",
797
+ "winapi-util",
798
+ ]
799
+
800
+ [[package]]
801
+ name = "wasip2"
802
+ version = "1.0.2+wasi-0.2.9"
803
+ source = "registry+https://github.com/rust-lang/crates.io-index"
804
+ checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
805
+ dependencies = [
806
+ "wit-bindgen",
807
+ ]
808
+
809
+ [[package]]
810
+ name = "winapi-util"
811
+ version = "0.1.11"
812
+ source = "registry+https://github.com/rust-lang/crates.io-index"
813
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
814
+ dependencies = [
815
+ "windows-sys",
816
+ ]
817
+
818
+ [[package]]
819
+ name = "windows-link"
820
+ version = "0.2.1"
821
+ source = "registry+https://github.com/rust-lang/crates.io-index"
822
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
823
+
824
+ [[package]]
825
+ name = "windows-sys"
826
+ version = "0.61.2"
827
+ source = "registry+https://github.com/rust-lang/crates.io-index"
828
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
829
+ dependencies = [
830
+ "windows-link",
831
+ ]
832
+
833
+ [[package]]
834
+ name = "wit-bindgen"
835
+ version = "0.51.0"
836
+ source = "registry+https://github.com/rust-lang/crates.io-index"
837
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
838
+
839
+ [[package]]
840
+ name = "zmij"
841
+ version = "1.0.21"
842
+ source = "registry+https://github.com/rust-lang/crates.io-index"
843
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
844
+
845
+ [[package]]
846
+ name = "zstd"
847
+ version = "0.13.3"
848
+ source = "registry+https://github.com/rust-lang/crates.io-index"
849
+ checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
850
+ dependencies = [
851
+ "zstd-safe",
852
+ ]
853
+
854
+ [[package]]
855
+ name = "zstd-safe"
856
+ version = "7.2.4"
857
+ source = "registry+https://github.com/rust-lang/crates.io-index"
858
+ checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
859
+ dependencies = [
860
+ "zstd-sys",
861
+ ]
862
+
863
+ [[package]]
864
+ name = "zstd-sys"
865
+ version = "2.0.16+zstd.1.5.7"
866
+ source = "registry+https://github.com/rust-lang/crates.io-index"
867
+ checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748"
868
+ dependencies = [
869
+ "cc",
870
+ "pkg-config",
871
+ ]