meti-profil 0.1.0__tar.gz

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