clusterkit 0.3.0-arm64-darwin

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 (59) hide show
  1. checksums.yaml +7 -0
  2. data/.rspec +3 -0
  3. data/.simplecov +47 -0
  4. data/CHANGELOG.md +35 -0
  5. data/CLAUDE.md +226 -0
  6. data/Cargo.lock +3228 -0
  7. data/Cargo.toml +8 -0
  8. data/Gemfile +17 -0
  9. data/IMPLEMENTATION_NOTES.md +143 -0
  10. data/LICENSE.txt +21 -0
  11. data/PYTHON_COMPARISON.md +183 -0
  12. data/README.md +744 -0
  13. data/Rakefile +259 -0
  14. data/docs/KNOWN_ISSUES.md +130 -0
  15. data/docs/RUST_ERROR_HANDLING.md +164 -0
  16. data/docs/TEST_FIXTURES.md +170 -0
  17. data/docs/UMAP_EXPLAINED.md +362 -0
  18. data/docs/UMAP_TROUBLESHOOTING.md +284 -0
  19. data/docs/VERBOSE_OUTPUT.md +84 -0
  20. data/docs/assets/clusterkit-wide.png +0 -0
  21. data/docs/assets/clusterkit.png +0 -0
  22. data/docs/assets/visualization.png +0 -0
  23. data/examples/hdbscan_example.rb +147 -0
  24. data/examples/optimal_kmeans_example.rb +96 -0
  25. data/examples/pca_example.rb +114 -0
  26. data/examples/reproducible_umap.rb +99 -0
  27. data/examples/verbose_control.rb +43 -0
  28. data/ext/clusterkit/Cargo.toml +26 -0
  29. data/ext/clusterkit/extconf.rb +23 -0
  30. data/ext/clusterkit/src/clustering/hdbscan_wrapper.rs +80 -0
  31. data/ext/clusterkit/src/clustering.rs +221 -0
  32. data/ext/clusterkit/src/embedder.rs +349 -0
  33. data/ext/clusterkit/src/hnsw.rs +579 -0
  34. data/ext/clusterkit/src/lib.rs +24 -0
  35. data/ext/clusterkit/src/svd.rs +89 -0
  36. data/ext/clusterkit/src/tests.rs +16 -0
  37. data/ext/clusterkit/src/utils.rs +183 -0
  38. data/lib/clusterkit/3.1/clusterkit.bundle +0 -0
  39. data/lib/clusterkit/3.2/clusterkit.bundle +0 -0
  40. data/lib/clusterkit/3.3/clusterkit.bundle +0 -0
  41. data/lib/clusterkit/3.4/clusterkit.bundle +0 -0
  42. data/lib/clusterkit/clustering/hdbscan.rb +164 -0
  43. data/lib/clusterkit/clustering.rb +194 -0
  44. data/lib/clusterkit/clusterkit.rb +14 -0
  45. data/lib/clusterkit/configuration.rb +24 -0
  46. data/lib/clusterkit/data_validator.rb +132 -0
  47. data/lib/clusterkit/dimensionality/pca.rb +251 -0
  48. data/lib/clusterkit/dimensionality/svd.rb +175 -0
  49. data/lib/clusterkit/dimensionality/umap.rb +282 -0
  50. data/lib/clusterkit/dimensionality.rb +29 -0
  51. data/lib/clusterkit/hdbscan_api_design.rb +142 -0
  52. data/lib/clusterkit/hnsw.rb +251 -0
  53. data/lib/clusterkit/preprocessing.rb +106 -0
  54. data/lib/clusterkit/silence.rb +42 -0
  55. data/lib/clusterkit/utils.rb +51 -0
  56. data/lib/clusterkit/version.rb +5 -0
  57. data/lib/clusterkit.rb +105 -0
  58. data/lib/tasks/visualize.rake +641 -0
  59. metadata +214 -0
data/Cargo.lock ADDED
@@ -0,0 +1,3228 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "accelerate-src"
7
+ version = "0.3.2"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "415ed64958754dbe991900f3940677e6a7eefb4d7367afd70d642677b0c7d19d"
10
+
11
+ [[package]]
12
+ name = "adler2"
13
+ version = "2.0.1"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
16
+
17
+ [[package]]
18
+ name = "ahash"
19
+ version = "0.8.12"
20
+ source = "registry+https://github.com/rust-lang/crates.io-index"
21
+ checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
22
+ dependencies = [
23
+ "cfg-if",
24
+ "getrandom 0.3.3",
25
+ "once_cell",
26
+ "version_check",
27
+ "zerocopy",
28
+ ]
29
+
30
+ [[package]]
31
+ name = "aho-corasick"
32
+ version = "1.1.3"
33
+ source = "registry+https://github.com/rust-lang/crates.io-index"
34
+ checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
35
+ dependencies = [
36
+ "memchr",
37
+ ]
38
+
39
+ [[package]]
40
+ name = "alga"
41
+ version = "0.9.3"
42
+ source = "registry+https://github.com/rust-lang/crates.io-index"
43
+ checksum = "4f823d037a7ec6ea2197046bafd4ae150e6bc36f9ca347404f46a46823fa84f2"
44
+ dependencies = [
45
+ "approx",
46
+ "num-complex 0.2.4",
47
+ "num-traits",
48
+ ]
49
+
50
+ [[package]]
51
+ name = "allocator-api2"
52
+ version = "0.2.21"
53
+ source = "registry+https://github.com/rust-lang/crates.io-index"
54
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
55
+
56
+ [[package]]
57
+ name = "android-tzdata"
58
+ version = "0.1.1"
59
+ source = "registry+https://github.com/rust-lang/crates.io-index"
60
+ checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
61
+
62
+ [[package]]
63
+ name = "android_system_properties"
64
+ version = "0.1.5"
65
+ source = "registry+https://github.com/rust-lang/crates.io-index"
66
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
67
+ dependencies = [
68
+ "libc",
69
+ ]
70
+
71
+ [[package]]
72
+ name = "anndists"
73
+ version = "0.1.3"
74
+ source = "registry+https://github.com/rust-lang/crates.io-index"
75
+ checksum = "d4bbb2296f2525e53a52680f5c2df6de9a83b8a94cc22a8cc629301a27b5e0b7"
76
+ dependencies = [
77
+ "anyhow",
78
+ "cfg-if",
79
+ "cpu-time",
80
+ "env_logger",
81
+ "lazy_static",
82
+ "log",
83
+ "num-traits",
84
+ "num_cpus",
85
+ "rayon",
86
+ ]
87
+
88
+ [[package]]
89
+ name = "annembed"
90
+ version = "0.1.5"
91
+ source = "git+https://github.com/scientist-labs/annembed?tag=clusterkit-0.2.6#8f8c451367b3a20817cc9dd9803c56aa0c2b9859"
92
+ dependencies = [
93
+ "anyhow",
94
+ "bincode 2.0.1",
95
+ "blas-src",
96
+ "bson",
97
+ "byteorder",
98
+ "clap",
99
+ "cpu-time",
100
+ "csv",
101
+ "env_logger",
102
+ "hdrhistogram",
103
+ "hnsw_rs",
104
+ "indexmap",
105
+ "indxvec",
106
+ "katexit",
107
+ "lax",
108
+ "lazy_static",
109
+ "log",
110
+ "memory-stats",
111
+ "ndarray",
112
+ "num-traits",
113
+ "num_cpus",
114
+ "parking_lot",
115
+ "quantiles",
116
+ "rand 0.9.2",
117
+ "rand_distr",
118
+ "rand_xoshiro",
119
+ "rayon",
120
+ "serde",
121
+ "sprs",
122
+ ]
123
+
124
+ [[package]]
125
+ name = "anstream"
126
+ version = "0.6.20"
127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
128
+ checksum = "3ae563653d1938f79b1ab1b5e668c87c76a9930414574a6583a7b7e11a8e6192"
129
+ dependencies = [
130
+ "anstyle",
131
+ "anstyle-parse",
132
+ "anstyle-query",
133
+ "anstyle-wincon",
134
+ "colorchoice",
135
+ "is_terminal_polyfill",
136
+ "utf8parse",
137
+ ]
138
+
139
+ [[package]]
140
+ name = "anstyle"
141
+ version = "1.0.11"
142
+ source = "registry+https://github.com/rust-lang/crates.io-index"
143
+ checksum = "862ed96ca487e809f1c8e5a8447f6ee2cf102f846893800b20cebdf541fc6bbd"
144
+
145
+ [[package]]
146
+ name = "anstyle-parse"
147
+ version = "0.2.7"
148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
149
+ checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
150
+ dependencies = [
151
+ "utf8parse",
152
+ ]
153
+
154
+ [[package]]
155
+ name = "anstyle-query"
156
+ version = "1.1.4"
157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
158
+ checksum = "9e231f6134f61b71076a3eab506c379d4f36122f2af15a9ff04415ea4c3339e2"
159
+ dependencies = [
160
+ "windows-sys 0.60.2",
161
+ ]
162
+
163
+ [[package]]
164
+ name = "anstyle-wincon"
165
+ version = "3.0.10"
166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
167
+ checksum = "3e0633414522a32ffaac8ac6cc8f748e090c5717661fddeea04219e2344f5f2a"
168
+ dependencies = [
169
+ "anstyle",
170
+ "once_cell_polyfill",
171
+ "windows-sys 0.60.2",
172
+ ]
173
+
174
+ [[package]]
175
+ name = "anyhow"
176
+ version = "1.0.99"
177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
178
+ checksum = "b0674a1ddeecb70197781e945de4b3b8ffb61fa939a5597bcf48503737663100"
179
+
180
+ [[package]]
181
+ name = "approx"
182
+ version = "0.3.2"
183
+ source = "registry+https://github.com/rust-lang/crates.io-index"
184
+ checksum = "f0e60b75072ecd4168020818c0107f2857bb6c4e64252d8d3983f6263b40a5c3"
185
+ dependencies = [
186
+ "num-traits",
187
+ ]
188
+
189
+ [[package]]
190
+ name = "autocfg"
191
+ version = "1.5.0"
192
+ source = "registry+https://github.com/rust-lang/crates.io-index"
193
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
194
+
195
+ [[package]]
196
+ name = "base16ct"
197
+ version = "0.2.0"
198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
199
+ checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf"
200
+
201
+ [[package]]
202
+ name = "base64"
203
+ version = "0.21.7"
204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
205
+ checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
206
+
207
+ [[package]]
208
+ name = "base64"
209
+ version = "0.22.1"
210
+ source = "registry+https://github.com/rust-lang/crates.io-index"
211
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
212
+
213
+ [[package]]
214
+ name = "base64ct"
215
+ version = "1.8.0"
216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
217
+ checksum = "55248b47b0caf0546f7988906588779981c43bb1bc9d0c44087278f80cdb44ba"
218
+
219
+ [[package]]
220
+ name = "bincode"
221
+ version = "1.3.3"
222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
223
+ checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
224
+ dependencies = [
225
+ "serde",
226
+ ]
227
+
228
+ [[package]]
229
+ name = "bincode"
230
+ version = "2.0.1"
231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
232
+ checksum = "36eaf5d7b090263e8150820482d5d93cd964a81e4019913c972f4edcc6edb740"
233
+ dependencies = [
234
+ "bincode_derive",
235
+ "serde",
236
+ "unty",
237
+ ]
238
+
239
+ [[package]]
240
+ name = "bincode_derive"
241
+ version = "2.0.1"
242
+ source = "registry+https://github.com/rust-lang/crates.io-index"
243
+ checksum = "bf95709a440f45e986983918d0e8a1f30a9b1df04918fc828670606804ac3c09"
244
+ dependencies = [
245
+ "virtue",
246
+ ]
247
+
248
+ [[package]]
249
+ name = "bindgen"
250
+ version = "0.72.1"
251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
252
+ checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895"
253
+ dependencies = [
254
+ "bitflags 2.9.2",
255
+ "cexpr",
256
+ "clang-sys",
257
+ "itertools",
258
+ "proc-macro2",
259
+ "quote",
260
+ "regex",
261
+ "rustc-hash",
262
+ "shlex",
263
+ "syn",
264
+ ]
265
+
266
+ [[package]]
267
+ name = "bitflags"
268
+ version = "1.3.2"
269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
270
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
271
+
272
+ [[package]]
273
+ name = "bitflags"
274
+ version = "2.9.2"
275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
276
+ checksum = "6a65b545ab31d687cff52899d4890855fec459eb6afe0da6417b8a18da87aa29"
277
+
278
+ [[package]]
279
+ name = "bitvec"
280
+ version = "1.0.1"
281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
282
+ checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c"
283
+ dependencies = [
284
+ "funty",
285
+ "radium",
286
+ "tap",
287
+ "wyz",
288
+ ]
289
+
290
+ [[package]]
291
+ name = "blas-src"
292
+ version = "0.11.1"
293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
294
+ checksum = "1d0100d9f97abc0a589f13eb0ff41500f8d012fb1c3472c0636fa3ed0c61c28b"
295
+ dependencies = [
296
+ "accelerate-src",
297
+ ]
298
+
299
+ [[package]]
300
+ name = "block-buffer"
301
+ version = "0.10.4"
302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
303
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
304
+ dependencies = [
305
+ "generic-array",
306
+ ]
307
+
308
+ [[package]]
309
+ name = "bson"
310
+ version = "2.15.0"
311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
312
+ checksum = "7969a9ba84b0ff843813e7249eed1678d9b6607ce5a3b8f0a47af3fcf7978e6e"
313
+ dependencies = [
314
+ "ahash",
315
+ "base64 0.22.1",
316
+ "bitvec",
317
+ "getrandom 0.2.16",
318
+ "getrandom 0.3.3",
319
+ "hex",
320
+ "indexmap",
321
+ "js-sys",
322
+ "once_cell",
323
+ "rand 0.9.2",
324
+ "serde",
325
+ "serde_bytes",
326
+ "serde_json",
327
+ "time",
328
+ "uuid",
329
+ ]
330
+
331
+ [[package]]
332
+ name = "bumpalo"
333
+ version = "3.19.0"
334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
335
+ checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
336
+
337
+ [[package]]
338
+ name = "byteorder"
339
+ version = "1.5.0"
340
+ source = "registry+https://github.com/rust-lang/crates.io-index"
341
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
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
+
349
+ [[package]]
350
+ name = "cauchy"
351
+ version = "0.4.0"
352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
353
+ checksum = "9ff11ddd2af3b5e80dd0297fee6e56ac038d9bdc549573cdb51bd6d2efe7f05e"
354
+ dependencies = [
355
+ "num-complex 0.4.6",
356
+ "num-traits",
357
+ "rand 0.8.5",
358
+ "serde",
359
+ ]
360
+
361
+ [[package]]
362
+ name = "cblas-sys"
363
+ version = "0.1.4"
364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
365
+ checksum = "b6feecd82cce51b0204cf063f0041d69f24ce83f680d87514b004248e7b0fa65"
366
+ dependencies = [
367
+ "libc",
368
+ ]
369
+
370
+ [[package]]
371
+ name = "cc"
372
+ version = "1.2.33"
373
+ source = "registry+https://github.com/rust-lang/crates.io-index"
374
+ checksum = "3ee0f8803222ba5a7e2777dd72ca451868909b1ac410621b676adf07280e9b5f"
375
+ dependencies = [
376
+ "shlex",
377
+ ]
378
+
379
+ [[package]]
380
+ name = "cexpr"
381
+ version = "0.6.0"
382
+ source = "registry+https://github.com/rust-lang/crates.io-index"
383
+ checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
384
+ dependencies = [
385
+ "nom",
386
+ ]
387
+
388
+ [[package]]
389
+ name = "cfg-if"
390
+ version = "1.0.1"
391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
392
+ checksum = "9555578bc9e57714c812a1f84e4fc5b4d21fcb063490c624de019f7464c91268"
393
+
394
+ [[package]]
395
+ name = "chrono"
396
+ version = "0.4.41"
397
+ source = "registry+https://github.com/rust-lang/crates.io-index"
398
+ checksum = "c469d952047f47f91b68d1cba3f10d63c11d73e4636f24f08daf0278abf01c4d"
399
+ dependencies = [
400
+ "android-tzdata",
401
+ "iana-time-zone",
402
+ "js-sys",
403
+ "num-traits",
404
+ "wasm-bindgen",
405
+ "windows-link",
406
+ ]
407
+
408
+ [[package]]
409
+ name = "clang-sys"
410
+ version = "1.8.1"
411
+ source = "registry+https://github.com/rust-lang/crates.io-index"
412
+ checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
413
+ dependencies = [
414
+ "glob",
415
+ "libc",
416
+ "libloading",
417
+ ]
418
+
419
+ [[package]]
420
+ name = "clap"
421
+ version = "4.5.45"
422
+ source = "registry+https://github.com/rust-lang/crates.io-index"
423
+ checksum = "1fc0e74a703892159f5ae7d3aac52c8e6c392f5ae5f359c70b5881d60aaac318"
424
+ dependencies = [
425
+ "clap_builder",
426
+ "clap_derive",
427
+ ]
428
+
429
+ [[package]]
430
+ name = "clap_builder"
431
+ version = "4.5.44"
432
+ source = "registry+https://github.com/rust-lang/crates.io-index"
433
+ checksum = "b3e7f4214277f3c7aa526a59dd3fbe306a370daee1f8b7b8c987069cd8e888a8"
434
+ dependencies = [
435
+ "anstream",
436
+ "anstyle",
437
+ "clap_lex",
438
+ "strsim",
439
+ ]
440
+
441
+ [[package]]
442
+ name = "clap_derive"
443
+ version = "4.5.45"
444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
445
+ checksum = "14cb31bb0a7d536caef2639baa7fad459e15c3144efefa6dbd1c84562c4739f6"
446
+ dependencies = [
447
+ "heck",
448
+ "proc-macro2",
449
+ "quote",
450
+ "syn",
451
+ ]
452
+
453
+ [[package]]
454
+ name = "clap_lex"
455
+ version = "0.7.5"
456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
457
+ checksum = "b94f61472cee1439c0b966b47e3aca9ae07e45d070759512cd390ea2bebc6675"
458
+
459
+ [[package]]
460
+ name = "clusterkit"
461
+ version = "0.1.0"
462
+ dependencies = [
463
+ "annembed",
464
+ "bincode 1.3.3",
465
+ "hdbscan",
466
+ "hnsw_rs",
467
+ "magnus",
468
+ "ndarray",
469
+ "num-traits",
470
+ "rand 0.8.5",
471
+ "rayon",
472
+ "serde",
473
+ ]
474
+
475
+ [[package]]
476
+ name = "colorchoice"
477
+ version = "1.0.4"
478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
479
+ checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
480
+
481
+ [[package]]
482
+ name = "combine"
483
+ version = "4.6.7"
484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
485
+ checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
486
+ dependencies = [
487
+ "bytes",
488
+ "memchr",
489
+ ]
490
+
491
+ [[package]]
492
+ name = "core-foundation"
493
+ version = "0.9.4"
494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
495
+ checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
496
+ dependencies = [
497
+ "core-foundation-sys",
498
+ "libc",
499
+ ]
500
+
501
+ [[package]]
502
+ name = "core-foundation-sys"
503
+ version = "0.8.7"
504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
505
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
506
+
507
+ [[package]]
508
+ name = "cpu-time"
509
+ version = "1.0.0"
510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
511
+ checksum = "e9e393a7668fe1fad3075085b86c781883000b4ede868f43627b34a87c8b7ded"
512
+ dependencies = [
513
+ "libc",
514
+ "winapi",
515
+ ]
516
+
517
+ [[package]]
518
+ name = "cpufeatures"
519
+ version = "0.2.17"
520
+ source = "registry+https://github.com/rust-lang/crates.io-index"
521
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
522
+ dependencies = [
523
+ "libc",
524
+ ]
525
+
526
+ [[package]]
527
+ name = "crc32fast"
528
+ version = "1.5.0"
529
+ source = "registry+https://github.com/rust-lang/crates.io-index"
530
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
531
+ dependencies = [
532
+ "cfg-if",
533
+ ]
534
+
535
+ [[package]]
536
+ name = "crossbeam-channel"
537
+ version = "0.5.15"
538
+ source = "registry+https://github.com/rust-lang/crates.io-index"
539
+ checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
540
+ dependencies = [
541
+ "crossbeam-utils",
542
+ ]
543
+
544
+ [[package]]
545
+ name = "crossbeam-deque"
546
+ version = "0.8.6"
547
+ source = "registry+https://github.com/rust-lang/crates.io-index"
548
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
549
+ dependencies = [
550
+ "crossbeam-epoch",
551
+ "crossbeam-utils",
552
+ ]
553
+
554
+ [[package]]
555
+ name = "crossbeam-epoch"
556
+ version = "0.9.18"
557
+ source = "registry+https://github.com/rust-lang/crates.io-index"
558
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
559
+ dependencies = [
560
+ "crossbeam-utils",
561
+ ]
562
+
563
+ [[package]]
564
+ name = "crossbeam-utils"
565
+ version = "0.8.21"
566
+ source = "registry+https://github.com/rust-lang/crates.io-index"
567
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
568
+
569
+ [[package]]
570
+ name = "crypto-common"
571
+ version = "0.1.6"
572
+ source = "registry+https://github.com/rust-lang/crates.io-index"
573
+ checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
574
+ dependencies = [
575
+ "generic-array",
576
+ "typenum",
577
+ ]
578
+
579
+ [[package]]
580
+ name = "csv"
581
+ version = "1.3.1"
582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
583
+ checksum = "acdc4883a9c96732e4733212c01447ebd805833b7275a73ca3ee080fd77afdaf"
584
+ dependencies = [
585
+ "csv-core",
586
+ "itoa",
587
+ "ryu",
588
+ "serde",
589
+ ]
590
+
591
+ [[package]]
592
+ name = "csv-core"
593
+ version = "0.1.12"
594
+ source = "registry+https://github.com/rust-lang/crates.io-index"
595
+ checksum = "7d02f3b0da4c6504f86e9cd789d8dbafab48c2321be74e9987593de5a894d93d"
596
+ dependencies = [
597
+ "memchr",
598
+ ]
599
+
600
+ [[package]]
601
+ name = "darling"
602
+ version = "0.20.11"
603
+ source = "registry+https://github.com/rust-lang/crates.io-index"
604
+ checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
605
+ dependencies = [
606
+ "darling_core",
607
+ "darling_macro",
608
+ ]
609
+
610
+ [[package]]
611
+ name = "darling_core"
612
+ version = "0.20.11"
613
+ source = "registry+https://github.com/rust-lang/crates.io-index"
614
+ checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e"
615
+ dependencies = [
616
+ "fnv",
617
+ "ident_case",
618
+ "proc-macro2",
619
+ "quote",
620
+ "strsim",
621
+ "syn",
622
+ ]
623
+
624
+ [[package]]
625
+ name = "darling_macro"
626
+ version = "0.20.11"
627
+ source = "registry+https://github.com/rust-lang/crates.io-index"
628
+ checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
629
+ dependencies = [
630
+ "darling_core",
631
+ "quote",
632
+ "syn",
633
+ ]
634
+
635
+ [[package]]
636
+ name = "der"
637
+ version = "0.7.10"
638
+ source = "registry+https://github.com/rust-lang/crates.io-index"
639
+ checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb"
640
+ dependencies = [
641
+ "pem-rfc7468",
642
+ "zeroize",
643
+ ]
644
+
645
+ [[package]]
646
+ name = "deranged"
647
+ version = "0.4.0"
648
+ source = "registry+https://github.com/rust-lang/crates.io-index"
649
+ checksum = "9c9e6a11ca8224451684bc0d7d5a7adbf8f2fd6887261a1cfc3c0432f9d4068e"
650
+ dependencies = [
651
+ "powerfmt",
652
+ ]
653
+
654
+ [[package]]
655
+ name = "derive_builder"
656
+ version = "0.20.2"
657
+ source = "registry+https://github.com/rust-lang/crates.io-index"
658
+ checksum = "507dfb09ea8b7fa618fcf76e953f4f5e192547945816d5358edffe39f6f94947"
659
+ dependencies = [
660
+ "derive_builder_macro",
661
+ ]
662
+
663
+ [[package]]
664
+ name = "derive_builder_core"
665
+ version = "0.20.2"
666
+ source = "registry+https://github.com/rust-lang/crates.io-index"
667
+ checksum = "2d5bcf7b024d6835cfb3d473887cd966994907effbe9227e8c8219824d06c4e8"
668
+ dependencies = [
669
+ "darling",
670
+ "proc-macro2",
671
+ "quote",
672
+ "syn",
673
+ ]
674
+
675
+ [[package]]
676
+ name = "derive_builder_macro"
677
+ version = "0.20.2"
678
+ source = "registry+https://github.com/rust-lang/crates.io-index"
679
+ checksum = "ab63b0e2bf4d5928aff72e83a7dace85d7bba5fe12dcc3c5a572d78caffd3f3c"
680
+ dependencies = [
681
+ "derive_builder_core",
682
+ "syn",
683
+ ]
684
+
685
+ [[package]]
686
+ name = "digest"
687
+ version = "0.10.7"
688
+ source = "registry+https://github.com/rust-lang/crates.io-index"
689
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
690
+ dependencies = [
691
+ "block-buffer",
692
+ "crypto-common",
693
+ ]
694
+
695
+ [[package]]
696
+ name = "directories"
697
+ version = "5.0.1"
698
+ source = "registry+https://github.com/rust-lang/crates.io-index"
699
+ checksum = "9a49173b84e034382284f27f1af4dcbbd231ffa358c0fe316541a7337f376a35"
700
+ dependencies = [
701
+ "dirs-sys 0.4.1",
702
+ ]
703
+
704
+ [[package]]
705
+ name = "dirs"
706
+ version = "6.0.0"
707
+ source = "registry+https://github.com/rust-lang/crates.io-index"
708
+ checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e"
709
+ dependencies = [
710
+ "dirs-sys 0.5.0",
711
+ ]
712
+
713
+ [[package]]
714
+ name = "dirs-sys"
715
+ version = "0.4.1"
716
+ source = "registry+https://github.com/rust-lang/crates.io-index"
717
+ checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c"
718
+ dependencies = [
719
+ "libc",
720
+ "option-ext",
721
+ "redox_users 0.4.6",
722
+ "windows-sys 0.48.0",
723
+ ]
724
+
725
+ [[package]]
726
+ name = "dirs-sys"
727
+ version = "0.5.0"
728
+ source = "registry+https://github.com/rust-lang/crates.io-index"
729
+ checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab"
730
+ dependencies = [
731
+ "libc",
732
+ "option-ext",
733
+ "redox_users 0.5.2",
734
+ "windows-sys 0.60.2",
735
+ ]
736
+
737
+ [[package]]
738
+ name = "displaydoc"
739
+ version = "0.2.5"
740
+ source = "registry+https://github.com/rust-lang/crates.io-index"
741
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
742
+ dependencies = [
743
+ "proc-macro2",
744
+ "quote",
745
+ "syn",
746
+ ]
747
+
748
+ [[package]]
749
+ name = "either"
750
+ version = "1.15.0"
751
+ source = "registry+https://github.com/rust-lang/crates.io-index"
752
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
753
+
754
+ [[package]]
755
+ name = "enum-as-inner"
756
+ version = "0.6.1"
757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
758
+ checksum = "a1e6a265c649f3f5979b601d26f1d05ada116434c87741c9493cb56218f76cbc"
759
+ dependencies = [
760
+ "heck",
761
+ "proc-macro2",
762
+ "quote",
763
+ "syn",
764
+ ]
765
+
766
+ [[package]]
767
+ name = "env_filter"
768
+ version = "0.1.3"
769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
770
+ checksum = "186e05a59d4c50738528153b83b0b0194d3a29507dfec16eccd4b342903397d0"
771
+ dependencies = [
772
+ "log",
773
+ "regex",
774
+ ]
775
+
776
+ [[package]]
777
+ name = "env_logger"
778
+ version = "0.11.8"
779
+ source = "registry+https://github.com/rust-lang/crates.io-index"
780
+ checksum = "13c863f0904021b108aa8b2f55046443e6b1ebde8fd4a15c399893aae4fa069f"
781
+ dependencies = [
782
+ "anstream",
783
+ "anstyle",
784
+ "env_filter",
785
+ "jiff",
786
+ "log",
787
+ ]
788
+
789
+ [[package]]
790
+ name = "equivalent"
791
+ version = "1.0.2"
792
+ source = "registry+https://github.com/rust-lang/crates.io-index"
793
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
794
+
795
+ [[package]]
796
+ name = "errno"
797
+ version = "0.3.13"
798
+ source = "registry+https://github.com/rust-lang/crates.io-index"
799
+ checksum = "778e2ac28f6c47af28e4907f13ffd1e1ddbd400980a9abd7c8df189bf578a5ad"
800
+ dependencies = [
801
+ "libc",
802
+ "windows-sys 0.60.2",
803
+ ]
804
+
805
+ [[package]]
806
+ name = "fastrand"
807
+ version = "2.3.0"
808
+ source = "registry+https://github.com/rust-lang/crates.io-index"
809
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
810
+
811
+ [[package]]
812
+ name = "filetime"
813
+ version = "0.2.25"
814
+ source = "registry+https://github.com/rust-lang/crates.io-index"
815
+ checksum = "35c0522e981e68cbfa8c3f978441a5f34b30b96e146b33cd3359176b50fe8586"
816
+ dependencies = [
817
+ "cfg-if",
818
+ "libc",
819
+ "libredox",
820
+ "windows-sys 0.59.0",
821
+ ]
822
+
823
+ [[package]]
824
+ name = "flate2"
825
+ version = "1.1.2"
826
+ source = "registry+https://github.com/rust-lang/crates.io-index"
827
+ checksum = "4a3d7db9596fecd151c5f638c0ee5d5bd487b6e0ea232e5dc96d5250f6f94b1d"
828
+ dependencies = [
829
+ "crc32fast",
830
+ "miniz_oxide",
831
+ ]
832
+
833
+ [[package]]
834
+ name = "fnv"
835
+ version = "1.0.7"
836
+ source = "registry+https://github.com/rust-lang/crates.io-index"
837
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
838
+
839
+ [[package]]
840
+ name = "foldhash"
841
+ version = "0.1.5"
842
+ source = "registry+https://github.com/rust-lang/crates.io-index"
843
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
844
+
845
+ [[package]]
846
+ name = "foreign-types"
847
+ version = "0.3.2"
848
+ source = "registry+https://github.com/rust-lang/crates.io-index"
849
+ checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
850
+ dependencies = [
851
+ "foreign-types-shared",
852
+ ]
853
+
854
+ [[package]]
855
+ name = "foreign-types-shared"
856
+ version = "0.1.1"
857
+ source = "registry+https://github.com/rust-lang/crates.io-index"
858
+ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
859
+
860
+ [[package]]
861
+ name = "form_urlencoded"
862
+ version = "1.2.1"
863
+ source = "registry+https://github.com/rust-lang/crates.io-index"
864
+ checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
865
+ dependencies = [
866
+ "percent-encoding",
867
+ ]
868
+
869
+ [[package]]
870
+ name = "funty"
871
+ version = "2.0.0"
872
+ source = "registry+https://github.com/rust-lang/crates.io-index"
873
+ checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
874
+
875
+ [[package]]
876
+ name = "generic-array"
877
+ version = "0.14.7"
878
+ source = "registry+https://github.com/rust-lang/crates.io-index"
879
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
880
+ dependencies = [
881
+ "typenum",
882
+ "version_check",
883
+ ]
884
+
885
+ [[package]]
886
+ name = "getrandom"
887
+ version = "0.2.16"
888
+ source = "registry+https://github.com/rust-lang/crates.io-index"
889
+ checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
890
+ dependencies = [
891
+ "cfg-if",
892
+ "js-sys",
893
+ "libc",
894
+ "wasi 0.11.1+wasi-snapshot-preview1",
895
+ "wasm-bindgen",
896
+ ]
897
+
898
+ [[package]]
899
+ name = "getrandom"
900
+ version = "0.3.3"
901
+ source = "registry+https://github.com/rust-lang/crates.io-index"
902
+ checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4"
903
+ dependencies = [
904
+ "cfg-if",
905
+ "js-sys",
906
+ "libc",
907
+ "r-efi",
908
+ "wasi 0.14.2+wasi-0.2.4",
909
+ "wasm-bindgen",
910
+ ]
911
+
912
+ [[package]]
913
+ name = "getset"
914
+ version = "0.1.6"
915
+ source = "registry+https://github.com/rust-lang/crates.io-index"
916
+ checksum = "9cf0fc11e47561d47397154977bc219f4cf809b2974facc3ccb3b89e2436f912"
917
+ dependencies = [
918
+ "proc-macro-error2",
919
+ "proc-macro2",
920
+ "quote",
921
+ "syn",
922
+ ]
923
+
924
+ [[package]]
925
+ name = "glob"
926
+ version = "0.3.3"
927
+ source = "registry+https://github.com/rust-lang/crates.io-index"
928
+ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
929
+
930
+ [[package]]
931
+ name = "hashbrown"
932
+ version = "0.15.5"
933
+ source = "registry+https://github.com/rust-lang/crates.io-index"
934
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
935
+ dependencies = [
936
+ "allocator-api2",
937
+ "equivalent",
938
+ "foldhash",
939
+ ]
940
+
941
+ [[package]]
942
+ name = "hdbscan"
943
+ version = "0.11.0"
944
+ source = "registry+https://github.com/rust-lang/crates.io-index"
945
+ checksum = "95bd4d39a1e96420f31b20ac30d5052ba76d9b2bde2987beade48445073a063c"
946
+ dependencies = [
947
+ "kdtree",
948
+ "num-traits",
949
+ ]
950
+
951
+ [[package]]
952
+ name = "hdrhistogram"
953
+ version = "7.5.4"
954
+ source = "registry+https://github.com/rust-lang/crates.io-index"
955
+ checksum = "765c9198f173dd59ce26ff9f95ef0aafd0a0fe01fb9d72841bc5066a4c06511d"
956
+ dependencies = [
957
+ "base64 0.21.7",
958
+ "byteorder",
959
+ "crossbeam-channel",
960
+ "flate2",
961
+ "nom",
962
+ "num-traits",
963
+ ]
964
+
965
+ [[package]]
966
+ name = "heck"
967
+ version = "0.5.0"
968
+ source = "registry+https://github.com/rust-lang/crates.io-index"
969
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
970
+
971
+ [[package]]
972
+ name = "hermit-abi"
973
+ version = "0.5.2"
974
+ source = "registry+https://github.com/rust-lang/crates.io-index"
975
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
976
+
977
+ [[package]]
978
+ name = "hex"
979
+ version = "0.4.3"
980
+ source = "registry+https://github.com/rust-lang/crates.io-index"
981
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
982
+
983
+ [[package]]
984
+ name = "hnsw_rs"
985
+ version = "0.3.2"
986
+ source = "git+https://github.com/scientist-labs/hnswlib-rs?tag=clusterkit-0.1.0#30e90bf7e37148bdf3a8ba6ec4d29e269abea8c1"
987
+ dependencies = [
988
+ "anndists",
989
+ "anyhow",
990
+ "bincode 1.3.3",
991
+ "cfg-if",
992
+ "cpu-time",
993
+ "env_logger",
994
+ "hashbrown",
995
+ "indexmap",
996
+ "lazy_static",
997
+ "log",
998
+ "mmap-rs",
999
+ "num-traits",
1000
+ "num_cpus",
1001
+ "parking_lot",
1002
+ "rand 0.9.2",
1003
+ "rayon",
1004
+ "serde",
1005
+ ]
1006
+
1007
+ [[package]]
1008
+ name = "http"
1009
+ version = "1.3.1"
1010
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1011
+ checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565"
1012
+ dependencies = [
1013
+ "bytes",
1014
+ "fnv",
1015
+ "itoa",
1016
+ ]
1017
+
1018
+ [[package]]
1019
+ name = "httparse"
1020
+ version = "1.10.1"
1021
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1022
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
1023
+
1024
+ [[package]]
1025
+ name = "iana-time-zone"
1026
+ version = "0.1.63"
1027
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1028
+ checksum = "b0c919e5debc312ad217002b8048a17b7d83f80703865bbfcfebb0458b0b27d8"
1029
+ dependencies = [
1030
+ "android_system_properties",
1031
+ "core-foundation-sys",
1032
+ "iana-time-zone-haiku",
1033
+ "js-sys",
1034
+ "log",
1035
+ "wasm-bindgen",
1036
+ "windows-core",
1037
+ ]
1038
+
1039
+ [[package]]
1040
+ name = "iana-time-zone-haiku"
1041
+ version = "0.1.2"
1042
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1043
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
1044
+ dependencies = [
1045
+ "cc",
1046
+ ]
1047
+
1048
+ [[package]]
1049
+ name = "icu_collections"
1050
+ version = "2.0.0"
1051
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1052
+ checksum = "200072f5d0e3614556f94a9930d5dc3e0662a652823904c3a75dc3b0af7fee47"
1053
+ dependencies = [
1054
+ "displaydoc",
1055
+ "potential_utf",
1056
+ "yoke",
1057
+ "zerofrom",
1058
+ "zerovec",
1059
+ ]
1060
+
1061
+ [[package]]
1062
+ name = "icu_locale_core"
1063
+ version = "2.0.0"
1064
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1065
+ checksum = "0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a"
1066
+ dependencies = [
1067
+ "displaydoc",
1068
+ "litemap",
1069
+ "tinystr",
1070
+ "writeable",
1071
+ "zerovec",
1072
+ ]
1073
+
1074
+ [[package]]
1075
+ name = "icu_normalizer"
1076
+ version = "2.0.0"
1077
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1078
+ checksum = "436880e8e18df4d7bbc06d58432329d6458cc84531f7ac5f024e93deadb37979"
1079
+ dependencies = [
1080
+ "displaydoc",
1081
+ "icu_collections",
1082
+ "icu_normalizer_data",
1083
+ "icu_properties",
1084
+ "icu_provider",
1085
+ "smallvec",
1086
+ "zerovec",
1087
+ ]
1088
+
1089
+ [[package]]
1090
+ name = "icu_normalizer_data"
1091
+ version = "2.0.0"
1092
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1093
+ checksum = "00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3"
1094
+
1095
+ [[package]]
1096
+ name = "icu_properties"
1097
+ version = "2.0.1"
1098
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1099
+ checksum = "016c619c1eeb94efb86809b015c58f479963de65bdb6253345c1a1276f22e32b"
1100
+ dependencies = [
1101
+ "displaydoc",
1102
+ "icu_collections",
1103
+ "icu_locale_core",
1104
+ "icu_properties_data",
1105
+ "icu_provider",
1106
+ "potential_utf",
1107
+ "zerotrie",
1108
+ "zerovec",
1109
+ ]
1110
+
1111
+ [[package]]
1112
+ name = "icu_properties_data"
1113
+ version = "2.0.1"
1114
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1115
+ checksum = "298459143998310acd25ffe6810ed544932242d3f07083eee1084d83a71bd632"
1116
+
1117
+ [[package]]
1118
+ name = "icu_provider"
1119
+ version = "2.0.0"
1120
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1121
+ checksum = "03c80da27b5f4187909049ee2d72f276f0d9f99a42c306bd0131ecfe04d8e5af"
1122
+ dependencies = [
1123
+ "displaydoc",
1124
+ "icu_locale_core",
1125
+ "stable_deref_trait",
1126
+ "tinystr",
1127
+ "writeable",
1128
+ "yoke",
1129
+ "zerofrom",
1130
+ "zerotrie",
1131
+ "zerovec",
1132
+ ]
1133
+
1134
+ [[package]]
1135
+ name = "ident_case"
1136
+ version = "1.0.1"
1137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1138
+ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
1139
+
1140
+ [[package]]
1141
+ name = "idna"
1142
+ version = "1.0.3"
1143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1144
+ checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e"
1145
+ dependencies = [
1146
+ "idna_adapter",
1147
+ "smallvec",
1148
+ "utf8_iter",
1149
+ ]
1150
+
1151
+ [[package]]
1152
+ name = "idna_adapter"
1153
+ version = "1.2.1"
1154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1155
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
1156
+ dependencies = [
1157
+ "icu_normalizer",
1158
+ "icu_properties",
1159
+ ]
1160
+
1161
+ [[package]]
1162
+ name = "indexmap"
1163
+ version = "2.10.0"
1164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1165
+ checksum = "fe4cd85333e22411419a0bcae1297d25e58c9443848b11dc6a86fefe8c78a661"
1166
+ dependencies = [
1167
+ "equivalent",
1168
+ "hashbrown",
1169
+ ]
1170
+
1171
+ [[package]]
1172
+ name = "indxvec"
1173
+ version = "1.9.6"
1174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1175
+ checksum = "f80ec91439747afc38510dd9ddac3d776f3485197b9b7d6cc81c719db5cd8faa"
1176
+
1177
+ [[package]]
1178
+ name = "intel-mkl-src"
1179
+ version = "0.8.1"
1180
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1181
+ checksum = "2ee70586cd5b3e772a8739a1bd43eaa90d4f4bf0fb2a4edc202e979937ee7f5e"
1182
+ dependencies = [
1183
+ "anyhow",
1184
+ "intel-mkl-tool",
1185
+ "ocipkg",
1186
+ ]
1187
+
1188
+ [[package]]
1189
+ name = "intel-mkl-tool"
1190
+ version = "0.8.1"
1191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1192
+ checksum = "887a16b4537d82227af54d3372971cfa5e0cde53322e60f57584056c16ada1b4"
1193
+ dependencies = [
1194
+ "anyhow",
1195
+ "log",
1196
+ "walkdir",
1197
+ ]
1198
+
1199
+ [[package]]
1200
+ name = "is_terminal_polyfill"
1201
+ version = "1.70.1"
1202
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1203
+ checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
1204
+
1205
+ [[package]]
1206
+ name = "itertools"
1207
+ version = "0.12.1"
1208
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1209
+ checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
1210
+ dependencies = [
1211
+ "either",
1212
+ ]
1213
+
1214
+ [[package]]
1215
+ name = "itoa"
1216
+ version = "1.0.15"
1217
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1218
+ checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
1219
+
1220
+ [[package]]
1221
+ name = "jiff"
1222
+ version = "0.2.15"
1223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1224
+ checksum = "be1f93b8b1eb69c77f24bbb0afdf66f54b632ee39af40ca21c4365a1d7347e49"
1225
+ dependencies = [
1226
+ "jiff-static",
1227
+ "log",
1228
+ "portable-atomic",
1229
+ "portable-atomic-util",
1230
+ "serde",
1231
+ ]
1232
+
1233
+ [[package]]
1234
+ name = "jiff-static"
1235
+ version = "0.2.15"
1236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1237
+ checksum = "03343451ff899767262ec32146f6d559dd759fdadf42ff0e227c7c48f72594b4"
1238
+ dependencies = [
1239
+ "proc-macro2",
1240
+ "quote",
1241
+ "syn",
1242
+ ]
1243
+
1244
+ [[package]]
1245
+ name = "js-sys"
1246
+ version = "0.3.77"
1247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1248
+ checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
1249
+ dependencies = [
1250
+ "once_cell",
1251
+ "wasm-bindgen",
1252
+ ]
1253
+
1254
+ [[package]]
1255
+ name = "katexit"
1256
+ version = "0.1.5"
1257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1258
+ checksum = "ccfb0b7ce7938f84a5ecbdca5d0a991e46bc9d6d078934ad5e92c5270fe547db"
1259
+ dependencies = [
1260
+ "proc-macro2",
1261
+ "quote",
1262
+ "syn",
1263
+ ]
1264
+
1265
+ [[package]]
1266
+ name = "kdtree"
1267
+ version = "0.7.0"
1268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1269
+ checksum = "0f0a0e9f770b65bac9aad00f97a67ab5c5319effed07f6da385da3c2115e47ba"
1270
+ dependencies = [
1271
+ "num-traits",
1272
+ "thiserror 1.0.69",
1273
+ ]
1274
+
1275
+ [[package]]
1276
+ name = "lapack-sys"
1277
+ version = "0.14.0"
1278
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1279
+ checksum = "447f56c85fb410a7a3d36701b2153c1018b1d2b908c5fbaf01c1b04fac33bcbe"
1280
+ dependencies = [
1281
+ "libc",
1282
+ ]
1283
+
1284
+ [[package]]
1285
+ name = "lax"
1286
+ version = "0.17.0"
1287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1288
+ checksum = "1048f58cdc36e726e1c5ef81ec7ac9b1be2fce6b705786514b5a4f8c63487867"
1289
+ dependencies = [
1290
+ "cauchy",
1291
+ "intel-mkl-src",
1292
+ "katexit",
1293
+ "lapack-sys",
1294
+ "num-traits",
1295
+ "openblas-src",
1296
+ "thiserror 2.0.15",
1297
+ ]
1298
+
1299
+ [[package]]
1300
+ name = "lazy_static"
1301
+ version = "1.5.0"
1302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1303
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1304
+
1305
+ [[package]]
1306
+ name = "libc"
1307
+ version = "0.2.175"
1308
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1309
+ checksum = "6a82ae493e598baaea5209805c49bbf2ea7de956d50d7da0da1164f9c6d28543"
1310
+
1311
+ [[package]]
1312
+ name = "libloading"
1313
+ version = "0.8.8"
1314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1315
+ checksum = "07033963ba89ebaf1584d767badaa2e8fcec21aedea6b8c0346d487d49c28667"
1316
+ dependencies = [
1317
+ "cfg-if",
1318
+ "windows-targets 0.52.6",
1319
+ ]
1320
+
1321
+ [[package]]
1322
+ name = "libm"
1323
+ version = "0.2.15"
1324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1325
+ checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de"
1326
+
1327
+ [[package]]
1328
+ name = "libredox"
1329
+ version = "0.1.9"
1330
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1331
+ checksum = "391290121bad3d37fbddad76d8f5d1c1c314cfc646d143d7e07a3086ddff0ce3"
1332
+ dependencies = [
1333
+ "bitflags 2.9.2",
1334
+ "libc",
1335
+ "redox_syscall",
1336
+ ]
1337
+
1338
+ [[package]]
1339
+ name = "linux-raw-sys"
1340
+ version = "0.9.4"
1341
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1342
+ checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
1343
+
1344
+ [[package]]
1345
+ name = "litemap"
1346
+ version = "0.8.0"
1347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1348
+ checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956"
1349
+
1350
+ [[package]]
1351
+ name = "lock_api"
1352
+ version = "0.4.13"
1353
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1354
+ checksum = "96936507f153605bddfcda068dd804796c84324ed2510809e5b2a624c81da765"
1355
+ dependencies = [
1356
+ "autocfg",
1357
+ "scopeguard",
1358
+ ]
1359
+
1360
+ [[package]]
1361
+ name = "log"
1362
+ version = "0.4.27"
1363
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1364
+ checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
1365
+
1366
+ [[package]]
1367
+ name = "mach2"
1368
+ version = "0.4.3"
1369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1370
+ checksum = "d640282b302c0bb0a2a8e0233ead9035e3bed871f0b7e81fe4a1ec829765db44"
1371
+ dependencies = [
1372
+ "libc",
1373
+ ]
1374
+
1375
+ [[package]]
1376
+ name = "magnus"
1377
+ version = "0.8.2"
1378
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1379
+ checksum = "3b36a5b126bbe97eb0d02d07acfeb327036c6319fd816139a49824a83b7f9012"
1380
+ dependencies = [
1381
+ "magnus-macros",
1382
+ "rb-sys",
1383
+ "rb-sys-env",
1384
+ "seq-macro",
1385
+ ]
1386
+
1387
+ [[package]]
1388
+ name = "magnus-macros"
1389
+ version = "0.8.0"
1390
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1391
+ checksum = "47607461fd8e1513cb4f2076c197d8092d921a1ea75bd08af97398f593751892"
1392
+ dependencies = [
1393
+ "proc-macro2",
1394
+ "quote",
1395
+ "syn",
1396
+ ]
1397
+
1398
+ [[package]]
1399
+ name = "matrixmultiply"
1400
+ version = "0.3.10"
1401
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1402
+ checksum = "a06de3016e9fae57a36fd14dba131fccf49f74b40b7fbdb472f96e361ec71a08"
1403
+ dependencies = [
1404
+ "autocfg",
1405
+ "rawpointer",
1406
+ ]
1407
+
1408
+ [[package]]
1409
+ name = "memchr"
1410
+ version = "2.7.5"
1411
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1412
+ checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0"
1413
+
1414
+ [[package]]
1415
+ name = "memoffset"
1416
+ version = "0.7.1"
1417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1418
+ checksum = "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4"
1419
+ dependencies = [
1420
+ "autocfg",
1421
+ ]
1422
+
1423
+ [[package]]
1424
+ name = "memory-stats"
1425
+ version = "1.2.0"
1426
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1427
+ checksum = "c73f5c649995a115e1a0220b35e4df0a1294500477f97a91d0660fb5abeb574a"
1428
+ dependencies = [
1429
+ "libc",
1430
+ "windows-sys 0.52.0",
1431
+ ]
1432
+
1433
+ [[package]]
1434
+ name = "minimal-lexical"
1435
+ version = "0.2.1"
1436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1437
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
1438
+
1439
+ [[package]]
1440
+ name = "miniz_oxide"
1441
+ version = "0.8.9"
1442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1443
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
1444
+ dependencies = [
1445
+ "adler2",
1446
+ ]
1447
+
1448
+ [[package]]
1449
+ name = "mmap-rs"
1450
+ version = "0.6.1"
1451
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1452
+ checksum = "86968d85441db75203c34deefd0c88032f275aaa85cee19a1dcfff6ae9df56da"
1453
+ dependencies = [
1454
+ "bitflags 1.3.2",
1455
+ "combine",
1456
+ "libc",
1457
+ "mach2",
1458
+ "nix",
1459
+ "sysctl",
1460
+ "thiserror 1.0.69",
1461
+ "widestring",
1462
+ "windows",
1463
+ ]
1464
+
1465
+ [[package]]
1466
+ name = "native-tls"
1467
+ version = "0.2.14"
1468
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1469
+ checksum = "87de3442987e9dbec73158d5c715e7ad9072fda936bb03d19d7fa10e00520f0e"
1470
+ dependencies = [
1471
+ "libc",
1472
+ "log",
1473
+ "openssl",
1474
+ "openssl-probe",
1475
+ "openssl-sys",
1476
+ "schannel",
1477
+ "security-framework",
1478
+ "security-framework-sys",
1479
+ "tempfile",
1480
+ ]
1481
+
1482
+ [[package]]
1483
+ name = "ndarray"
1484
+ version = "0.16.1"
1485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1486
+ checksum = "882ed72dce9365842bf196bdeedf5055305f11fc8c03dee7bb0194a6cad34841"
1487
+ dependencies = [
1488
+ "cblas-sys",
1489
+ "libc",
1490
+ "matrixmultiply",
1491
+ "num-complex 0.4.6",
1492
+ "num-integer",
1493
+ "num-traits",
1494
+ "portable-atomic",
1495
+ "portable-atomic-util",
1496
+ "rawpointer",
1497
+ "rayon",
1498
+ "serde",
1499
+ ]
1500
+
1501
+ [[package]]
1502
+ name = "nix"
1503
+ version = "0.26.4"
1504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1505
+ checksum = "598beaf3cc6fdd9a5dfb1630c2800c7acd31df7aaf0f565796fba2b53ca1af1b"
1506
+ dependencies = [
1507
+ "bitflags 1.3.2",
1508
+ "cfg-if",
1509
+ "libc",
1510
+ "memoffset",
1511
+ "pin-utils",
1512
+ ]
1513
+
1514
+ [[package]]
1515
+ name = "nom"
1516
+ version = "7.1.3"
1517
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1518
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
1519
+ dependencies = [
1520
+ "memchr",
1521
+ "minimal-lexical",
1522
+ ]
1523
+
1524
+ [[package]]
1525
+ name = "num-complex"
1526
+ version = "0.2.4"
1527
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1528
+ checksum = "b6b19411a9719e753aff12e5187b74d60d3dc449ec3f4dc21e3989c3f554bc95"
1529
+ dependencies = [
1530
+ "autocfg",
1531
+ "num-traits",
1532
+ ]
1533
+
1534
+ [[package]]
1535
+ name = "num-complex"
1536
+ version = "0.4.6"
1537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1538
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
1539
+ dependencies = [
1540
+ "num-traits",
1541
+ "rand 0.8.5",
1542
+ "serde",
1543
+ ]
1544
+
1545
+ [[package]]
1546
+ name = "num-conv"
1547
+ version = "0.1.0"
1548
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1549
+ checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
1550
+
1551
+ [[package]]
1552
+ name = "num-integer"
1553
+ version = "0.1.46"
1554
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1555
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
1556
+ dependencies = [
1557
+ "num-traits",
1558
+ ]
1559
+
1560
+ [[package]]
1561
+ name = "num-traits"
1562
+ version = "0.2.19"
1563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1564
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1565
+ dependencies = [
1566
+ "autocfg",
1567
+ "libm",
1568
+ ]
1569
+
1570
+ [[package]]
1571
+ name = "num_cpus"
1572
+ version = "1.17.0"
1573
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1574
+ checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
1575
+ dependencies = [
1576
+ "hermit-abi",
1577
+ "libc",
1578
+ ]
1579
+
1580
+ [[package]]
1581
+ name = "oci-spec"
1582
+ version = "0.6.8"
1583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1584
+ checksum = "3f5a3fe998d50101ae009351fec56d88a69f4ed182e11000e711068c2f5abf72"
1585
+ dependencies = [
1586
+ "derive_builder",
1587
+ "getset",
1588
+ "once_cell",
1589
+ "regex",
1590
+ "serde",
1591
+ "serde_json",
1592
+ "strum",
1593
+ "strum_macros",
1594
+ "thiserror 1.0.69",
1595
+ ]
1596
+
1597
+ [[package]]
1598
+ name = "ocipkg"
1599
+ version = "0.2.9"
1600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1601
+ checksum = "9bb3293021f06540803301af45e7ab81693d50e89a7398a3420bdab139e7ba5e"
1602
+ dependencies = [
1603
+ "base16ct",
1604
+ "base64 0.22.1",
1605
+ "chrono",
1606
+ "directories",
1607
+ "flate2",
1608
+ "lazy_static",
1609
+ "log",
1610
+ "oci-spec",
1611
+ "regex",
1612
+ "serde",
1613
+ "serde_json",
1614
+ "sha2",
1615
+ "tar",
1616
+ "thiserror 1.0.69",
1617
+ "toml",
1618
+ "ureq 2.12.1",
1619
+ "url",
1620
+ "uuid",
1621
+ "walkdir",
1622
+ ]
1623
+
1624
+ [[package]]
1625
+ name = "once_cell"
1626
+ version = "1.19.0"
1627
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1628
+ checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
1629
+
1630
+ [[package]]
1631
+ name = "once_cell_polyfill"
1632
+ version = "1.70.1"
1633
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1634
+ checksum = "a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad"
1635
+
1636
+ [[package]]
1637
+ name = "openblas-build"
1638
+ version = "0.10.12"
1639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1640
+ checksum = "2d313e94cc8dd9212790bd697ed547f7019309462693a1bfbc2312dae970b24a"
1641
+ dependencies = [
1642
+ "anyhow",
1643
+ "cc",
1644
+ "flate2",
1645
+ "tar",
1646
+ "thiserror 2.0.15",
1647
+ "ureq 3.1.0",
1648
+ ]
1649
+
1650
+ [[package]]
1651
+ name = "openblas-src"
1652
+ version = "0.10.12"
1653
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1654
+ checksum = "659be974d3226615ca8d47b7e4eda2f1bdbfdbb5866f61c04b2ec9df34ed03f2"
1655
+ dependencies = [
1656
+ "dirs",
1657
+ "openblas-build",
1658
+ "pkg-config",
1659
+ "vcpkg",
1660
+ ]
1661
+
1662
+ [[package]]
1663
+ name = "openssl"
1664
+ version = "0.10.73"
1665
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1666
+ checksum = "8505734d46c8ab1e19a1dce3aef597ad87dcb4c37e7188231769bd6bd51cebf8"
1667
+ dependencies = [
1668
+ "bitflags 2.9.2",
1669
+ "cfg-if",
1670
+ "foreign-types",
1671
+ "libc",
1672
+ "once_cell",
1673
+ "openssl-macros",
1674
+ "openssl-sys",
1675
+ ]
1676
+
1677
+ [[package]]
1678
+ name = "openssl-macros"
1679
+ version = "0.1.1"
1680
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1681
+ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
1682
+ dependencies = [
1683
+ "proc-macro2",
1684
+ "quote",
1685
+ "syn",
1686
+ ]
1687
+
1688
+ [[package]]
1689
+ name = "openssl-probe"
1690
+ version = "0.1.6"
1691
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1692
+ checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
1693
+
1694
+ [[package]]
1695
+ name = "openssl-sys"
1696
+ version = "0.9.109"
1697
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1698
+ checksum = "90096e2e47630d78b7d1c20952dc621f957103f8bc2c8359ec81290d75238571"
1699
+ dependencies = [
1700
+ "cc",
1701
+ "libc",
1702
+ "pkg-config",
1703
+ "vcpkg",
1704
+ ]
1705
+
1706
+ [[package]]
1707
+ name = "option-ext"
1708
+ version = "0.2.0"
1709
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1710
+ checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
1711
+
1712
+ [[package]]
1713
+ name = "parking_lot"
1714
+ version = "0.12.4"
1715
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1716
+ checksum = "70d58bf43669b5795d1576d0641cfb6fbb2057bf629506267a92807158584a13"
1717
+ dependencies = [
1718
+ "lock_api",
1719
+ "parking_lot_core",
1720
+ ]
1721
+
1722
+ [[package]]
1723
+ name = "parking_lot_core"
1724
+ version = "0.9.11"
1725
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1726
+ checksum = "bc838d2a56b5b1a6c25f55575dfc605fabb63bb2365f6c2353ef9159aa69e4a5"
1727
+ dependencies = [
1728
+ "cfg-if",
1729
+ "libc",
1730
+ "redox_syscall",
1731
+ "smallvec",
1732
+ "windows-targets 0.52.6",
1733
+ ]
1734
+
1735
+ [[package]]
1736
+ name = "pem-rfc7468"
1737
+ version = "0.7.0"
1738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1739
+ checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412"
1740
+ dependencies = [
1741
+ "base64ct",
1742
+ ]
1743
+
1744
+ [[package]]
1745
+ name = "percent-encoding"
1746
+ version = "2.3.1"
1747
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1748
+ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
1749
+
1750
+ [[package]]
1751
+ name = "pin-utils"
1752
+ version = "0.1.0"
1753
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1754
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1755
+
1756
+ [[package]]
1757
+ name = "pkg-config"
1758
+ version = "0.3.32"
1759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1760
+ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
1761
+
1762
+ [[package]]
1763
+ name = "portable-atomic"
1764
+ version = "1.11.1"
1765
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1766
+ checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
1767
+
1768
+ [[package]]
1769
+ name = "portable-atomic-util"
1770
+ version = "0.2.4"
1771
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1772
+ checksum = "d8a2f0d8d040d7848a709caf78912debcc3f33ee4b3cac47d73d1e1069e83507"
1773
+ dependencies = [
1774
+ "portable-atomic",
1775
+ ]
1776
+
1777
+ [[package]]
1778
+ name = "potential_utf"
1779
+ version = "0.1.2"
1780
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1781
+ checksum = "e5a7c30837279ca13e7c867e9e40053bc68740f988cb07f7ca6df43cc734b585"
1782
+ dependencies = [
1783
+ "zerovec",
1784
+ ]
1785
+
1786
+ [[package]]
1787
+ name = "powerfmt"
1788
+ version = "0.2.0"
1789
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1790
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
1791
+
1792
+ [[package]]
1793
+ name = "ppv-lite86"
1794
+ version = "0.2.21"
1795
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1796
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1797
+ dependencies = [
1798
+ "zerocopy",
1799
+ ]
1800
+
1801
+ [[package]]
1802
+ name = "proc-macro-error-attr2"
1803
+ version = "2.0.0"
1804
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1805
+ checksum = "96de42df36bb9bba5542fe9f1a054b8cc87e172759a1868aa05c1f3acc89dfc5"
1806
+ dependencies = [
1807
+ "proc-macro2",
1808
+ "quote",
1809
+ ]
1810
+
1811
+ [[package]]
1812
+ name = "proc-macro-error2"
1813
+ version = "2.0.1"
1814
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1815
+ checksum = "11ec05c52be0a07b08061f7dd003e7d7092e0472bc731b4af7bb1ef876109802"
1816
+ dependencies = [
1817
+ "proc-macro-error-attr2",
1818
+ "proc-macro2",
1819
+ "quote",
1820
+ "syn",
1821
+ ]
1822
+
1823
+ [[package]]
1824
+ name = "proc-macro2"
1825
+ version = "1.0.101"
1826
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1827
+ checksum = "89ae43fd86e4158d6db51ad8e2b80f313af9cc74f5c0e03ccb87de09998732de"
1828
+ dependencies = [
1829
+ "unicode-ident",
1830
+ ]
1831
+
1832
+ [[package]]
1833
+ name = "quantiles"
1834
+ version = "0.7.1"
1835
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1836
+ checksum = "c10fa813fb26fb6c321a6f3085b5ade4cb4730d08d0b9e70a3759136940957f2"
1837
+
1838
+ [[package]]
1839
+ name = "quote"
1840
+ version = "1.0.40"
1841
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1842
+ checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
1843
+ dependencies = [
1844
+ "proc-macro2",
1845
+ ]
1846
+
1847
+ [[package]]
1848
+ name = "r-efi"
1849
+ version = "5.3.0"
1850
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1851
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1852
+
1853
+ [[package]]
1854
+ name = "radium"
1855
+ version = "0.7.0"
1856
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1857
+ checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
1858
+
1859
+ [[package]]
1860
+ name = "rand"
1861
+ version = "0.8.5"
1862
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1863
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
1864
+ dependencies = [
1865
+ "libc",
1866
+ "rand_chacha 0.3.1",
1867
+ "rand_core 0.6.4",
1868
+ ]
1869
+
1870
+ [[package]]
1871
+ name = "rand"
1872
+ version = "0.9.2"
1873
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1874
+ checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
1875
+ dependencies = [
1876
+ "rand_chacha 0.9.0",
1877
+ "rand_core 0.9.3",
1878
+ ]
1879
+
1880
+ [[package]]
1881
+ name = "rand_chacha"
1882
+ version = "0.3.1"
1883
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1884
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
1885
+ dependencies = [
1886
+ "ppv-lite86",
1887
+ "rand_core 0.6.4",
1888
+ ]
1889
+
1890
+ [[package]]
1891
+ name = "rand_chacha"
1892
+ version = "0.9.0"
1893
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1894
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
1895
+ dependencies = [
1896
+ "ppv-lite86",
1897
+ "rand_core 0.9.3",
1898
+ ]
1899
+
1900
+ [[package]]
1901
+ name = "rand_core"
1902
+ version = "0.6.4"
1903
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1904
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1905
+ dependencies = [
1906
+ "getrandom 0.2.16",
1907
+ ]
1908
+
1909
+ [[package]]
1910
+ name = "rand_core"
1911
+ version = "0.9.3"
1912
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1913
+ checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
1914
+ dependencies = [
1915
+ "getrandom 0.3.3",
1916
+ ]
1917
+
1918
+ [[package]]
1919
+ name = "rand_distr"
1920
+ version = "0.5.1"
1921
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1922
+ checksum = "6a8615d50dcf34fa31f7ab52692afec947c4dd0ab803cc87cb3b0b4570ff7463"
1923
+ dependencies = [
1924
+ "num-traits",
1925
+ "rand 0.9.2",
1926
+ ]
1927
+
1928
+ [[package]]
1929
+ name = "rand_xoshiro"
1930
+ version = "0.7.0"
1931
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1932
+ checksum = "f703f4665700daf5512dcca5f43afa6af89f09db47fb56be587f80636bda2d41"
1933
+ dependencies = [
1934
+ "rand_core 0.9.3",
1935
+ ]
1936
+
1937
+ [[package]]
1938
+ name = "rawpointer"
1939
+ version = "0.2.1"
1940
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1941
+ checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
1942
+
1943
+ [[package]]
1944
+ name = "rayon"
1945
+ version = "1.11.0"
1946
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1947
+ checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
1948
+ dependencies = [
1949
+ "either",
1950
+ "rayon-core",
1951
+ ]
1952
+
1953
+ [[package]]
1954
+ name = "rayon-core"
1955
+ version = "1.13.0"
1956
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1957
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
1958
+ dependencies = [
1959
+ "crossbeam-deque",
1960
+ "crossbeam-utils",
1961
+ ]
1962
+
1963
+ [[package]]
1964
+ name = "rb-sys"
1965
+ version = "0.9.128"
1966
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1967
+ checksum = "45ca28513560e56cfb79a62b1fce363c73af170a182024ce880c77ee9429920a"
1968
+ dependencies = [
1969
+ "rb-sys-build",
1970
+ ]
1971
+
1972
+ [[package]]
1973
+ name = "rb-sys-build"
1974
+ version = "0.9.128"
1975
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1976
+ checksum = "ce04b2c55eff3a21aaa623fcc655d94373238e72cac6b3e1a3641ff31649f99a"
1977
+ dependencies = [
1978
+ "bindgen",
1979
+ "lazy_static",
1980
+ "proc-macro2",
1981
+ "quote",
1982
+ "regex",
1983
+ "shell-words",
1984
+ "syn",
1985
+ ]
1986
+
1987
+ [[package]]
1988
+ name = "rb-sys-env"
1989
+ version = "0.2.3"
1990
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1991
+ checksum = "cca7ad6a7e21e72151d56fe2495a259b5670e204c3adac41ee7ef676ea08117a"
1992
+
1993
+ [[package]]
1994
+ name = "redox_syscall"
1995
+ version = "0.5.17"
1996
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1997
+ checksum = "5407465600fb0548f1442edf71dd20683c6ed326200ace4b1ef0763521bb3b77"
1998
+ dependencies = [
1999
+ "bitflags 2.9.2",
2000
+ ]
2001
+
2002
+ [[package]]
2003
+ name = "redox_users"
2004
+ version = "0.4.6"
2005
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2006
+ checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43"
2007
+ dependencies = [
2008
+ "getrandom 0.2.16",
2009
+ "libredox",
2010
+ "thiserror 1.0.69",
2011
+ ]
2012
+
2013
+ [[package]]
2014
+ name = "redox_users"
2015
+ version = "0.5.2"
2016
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2017
+ checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac"
2018
+ dependencies = [
2019
+ "getrandom 0.2.16",
2020
+ "libredox",
2021
+ "thiserror 2.0.15",
2022
+ ]
2023
+
2024
+ [[package]]
2025
+ name = "regex"
2026
+ version = "1.10.6"
2027
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2028
+ checksum = "4219d74c6b67a3654a9fbebc4b419e22126d13d2f3c4a07ee0cb61ff79a79619"
2029
+ dependencies = [
2030
+ "aho-corasick",
2031
+ "memchr",
2032
+ "regex-automata",
2033
+ "regex-syntax",
2034
+ ]
2035
+
2036
+ [[package]]
2037
+ name = "regex-automata"
2038
+ version = "0.4.9"
2039
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2040
+ checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
2041
+ dependencies = [
2042
+ "aho-corasick",
2043
+ "memchr",
2044
+ "regex-syntax",
2045
+ ]
2046
+
2047
+ [[package]]
2048
+ name = "regex-syntax"
2049
+ version = "0.8.5"
2050
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2051
+ checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
2052
+
2053
+ [[package]]
2054
+ name = "ring"
2055
+ version = "0.17.14"
2056
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2057
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
2058
+ dependencies = [
2059
+ "cc",
2060
+ "cfg-if",
2061
+ "getrandom 0.2.16",
2062
+ "libc",
2063
+ "untrusted",
2064
+ "windows-sys 0.52.0",
2065
+ ]
2066
+
2067
+ [[package]]
2068
+ name = "rustc-hash"
2069
+ version = "2.1.2"
2070
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2071
+ checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
2072
+
2073
+ [[package]]
2074
+ name = "rustix"
2075
+ version = "1.0.8"
2076
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2077
+ checksum = "11181fbabf243db407ef8df94a6ce0b2f9a733bd8be4ad02b4eda9602296cac8"
2078
+ dependencies = [
2079
+ "bitflags 2.9.2",
2080
+ "errno",
2081
+ "libc",
2082
+ "linux-raw-sys",
2083
+ "windows-sys 0.60.2",
2084
+ ]
2085
+
2086
+ [[package]]
2087
+ name = "rustls"
2088
+ version = "0.23.31"
2089
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2090
+ checksum = "c0ebcbd2f03de0fc1122ad9bb24b127a5a6cd51d72604a3f3c50ac459762b6cc"
2091
+ dependencies = [
2092
+ "log",
2093
+ "once_cell",
2094
+ "ring",
2095
+ "rustls-pki-types",
2096
+ "rustls-webpki",
2097
+ "subtle",
2098
+ "zeroize",
2099
+ ]
2100
+
2101
+ [[package]]
2102
+ name = "rustls-pemfile"
2103
+ version = "2.2.0"
2104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2105
+ checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50"
2106
+ dependencies = [
2107
+ "rustls-pki-types",
2108
+ ]
2109
+
2110
+ [[package]]
2111
+ name = "rustls-pki-types"
2112
+ version = "1.12.0"
2113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2114
+ checksum = "229a4a4c221013e7e1f1a043678c5cc39fe5171437c88fb47151a21e6f5b5c79"
2115
+ dependencies = [
2116
+ "zeroize",
2117
+ ]
2118
+
2119
+ [[package]]
2120
+ name = "rustls-webpki"
2121
+ version = "0.103.4"
2122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2123
+ checksum = "0a17884ae0c1b773f1ccd2bd4a8c72f16da897310a98b0e84bf349ad5ead92fc"
2124
+ dependencies = [
2125
+ "ring",
2126
+ "rustls-pki-types",
2127
+ "untrusted",
2128
+ ]
2129
+
2130
+ [[package]]
2131
+ name = "rustversion"
2132
+ version = "1.0.22"
2133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2134
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
2135
+
2136
+ [[package]]
2137
+ name = "ryu"
2138
+ version = "1.0.20"
2139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2140
+ checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
2141
+
2142
+ [[package]]
2143
+ name = "same-file"
2144
+ version = "1.0.6"
2145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2146
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
2147
+ dependencies = [
2148
+ "winapi-util",
2149
+ ]
2150
+
2151
+ [[package]]
2152
+ name = "schannel"
2153
+ version = "0.1.27"
2154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2155
+ checksum = "1f29ebaa345f945cec9fbbc532eb307f0fdad8161f281b6369539c8d84876b3d"
2156
+ dependencies = [
2157
+ "windows-sys 0.59.0",
2158
+ ]
2159
+
2160
+ [[package]]
2161
+ name = "scopeguard"
2162
+ version = "1.2.0"
2163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2164
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2165
+
2166
+ [[package]]
2167
+ name = "security-framework"
2168
+ version = "2.11.1"
2169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2170
+ checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
2171
+ dependencies = [
2172
+ "bitflags 2.9.2",
2173
+ "core-foundation",
2174
+ "core-foundation-sys",
2175
+ "libc",
2176
+ "security-framework-sys",
2177
+ ]
2178
+
2179
+ [[package]]
2180
+ name = "security-framework-sys"
2181
+ version = "2.14.0"
2182
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2183
+ checksum = "49db231d56a190491cb4aeda9527f1ad45345af50b0851622a7adb8c03b01c32"
2184
+ dependencies = [
2185
+ "core-foundation-sys",
2186
+ "libc",
2187
+ ]
2188
+
2189
+ [[package]]
2190
+ name = "seq-macro"
2191
+ version = "0.3.6"
2192
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2193
+ checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
2194
+
2195
+ [[package]]
2196
+ name = "serde"
2197
+ version = "1.0.219"
2198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2199
+ checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
2200
+ dependencies = [
2201
+ "serde_derive",
2202
+ ]
2203
+
2204
+ [[package]]
2205
+ name = "serde_bytes"
2206
+ version = "0.11.17"
2207
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2208
+ checksum = "8437fd221bde2d4ca316d61b90e337e9e702b3820b87d63caa9ba6c02bd06d96"
2209
+ dependencies = [
2210
+ "serde",
2211
+ ]
2212
+
2213
+ [[package]]
2214
+ name = "serde_derive"
2215
+ version = "1.0.219"
2216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2217
+ checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
2218
+ dependencies = [
2219
+ "proc-macro2",
2220
+ "quote",
2221
+ "syn",
2222
+ ]
2223
+
2224
+ [[package]]
2225
+ name = "serde_json"
2226
+ version = "1.0.143"
2227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2228
+ checksum = "d401abef1d108fbd9cbaebc3e46611f4b1021f714a0597a71f41ee463f5f4a5a"
2229
+ dependencies = [
2230
+ "indexmap",
2231
+ "itoa",
2232
+ "memchr",
2233
+ "ryu",
2234
+ "serde",
2235
+ ]
2236
+
2237
+ [[package]]
2238
+ name = "serde_spanned"
2239
+ version = "0.6.9"
2240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2241
+ checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
2242
+ dependencies = [
2243
+ "serde",
2244
+ ]
2245
+
2246
+ [[package]]
2247
+ name = "sha2"
2248
+ version = "0.10.9"
2249
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2250
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
2251
+ dependencies = [
2252
+ "cfg-if",
2253
+ "cpufeatures",
2254
+ "digest",
2255
+ ]
2256
+
2257
+ [[package]]
2258
+ name = "shell-words"
2259
+ version = "1.1.0"
2260
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2261
+ checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
2262
+
2263
+ [[package]]
2264
+ name = "shlex"
2265
+ version = "1.3.0"
2266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2267
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
2268
+
2269
+ [[package]]
2270
+ name = "smallvec"
2271
+ version = "1.15.1"
2272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2273
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
2274
+
2275
+ [[package]]
2276
+ name = "sprs"
2277
+ version = "0.11.3"
2278
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2279
+ checksum = "8bff8419009a08f6cb7519a602c5590241fbff1446bcc823c07af15386eb801b"
2280
+ dependencies = [
2281
+ "alga",
2282
+ "ndarray",
2283
+ "num-complex 0.4.6",
2284
+ "num-traits",
2285
+ "num_cpus",
2286
+ "rayon",
2287
+ "smallvec",
2288
+ ]
2289
+
2290
+ [[package]]
2291
+ name = "stable_deref_trait"
2292
+ version = "1.2.0"
2293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2294
+ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
2295
+
2296
+ [[package]]
2297
+ name = "strsim"
2298
+ version = "0.11.1"
2299
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2300
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
2301
+
2302
+ [[package]]
2303
+ name = "strum"
2304
+ version = "0.26.3"
2305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2306
+ checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06"
2307
+
2308
+ [[package]]
2309
+ name = "strum_macros"
2310
+ version = "0.26.4"
2311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2312
+ checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be"
2313
+ dependencies = [
2314
+ "heck",
2315
+ "proc-macro2",
2316
+ "quote",
2317
+ "rustversion",
2318
+ "syn",
2319
+ ]
2320
+
2321
+ [[package]]
2322
+ name = "subtle"
2323
+ version = "2.6.1"
2324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2325
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
2326
+
2327
+ [[package]]
2328
+ name = "syn"
2329
+ version = "2.0.106"
2330
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2331
+ checksum = "ede7c438028d4436d71104916910f5bb611972c5cfd7f89b8300a8186e6fada6"
2332
+ dependencies = [
2333
+ "proc-macro2",
2334
+ "quote",
2335
+ "unicode-ident",
2336
+ ]
2337
+
2338
+ [[package]]
2339
+ name = "synstructure"
2340
+ version = "0.13.2"
2341
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2342
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
2343
+ dependencies = [
2344
+ "proc-macro2",
2345
+ "quote",
2346
+ "syn",
2347
+ ]
2348
+
2349
+ [[package]]
2350
+ name = "sysctl"
2351
+ version = "0.5.5"
2352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2353
+ checksum = "ec7dddc5f0fee506baf8b9fdb989e242f17e4b11c61dfbb0635b705217199eea"
2354
+ dependencies = [
2355
+ "bitflags 2.9.2",
2356
+ "byteorder",
2357
+ "enum-as-inner",
2358
+ "libc",
2359
+ "thiserror 1.0.69",
2360
+ "walkdir",
2361
+ ]
2362
+
2363
+ [[package]]
2364
+ name = "tap"
2365
+ version = "1.0.1"
2366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2367
+ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
2368
+
2369
+ [[package]]
2370
+ name = "tar"
2371
+ version = "0.4.44"
2372
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2373
+ checksum = "1d863878d212c87a19c1a610eb53bb01fe12951c0501cf5a0d65f724914a667a"
2374
+ dependencies = [
2375
+ "filetime",
2376
+ "libc",
2377
+ "xattr",
2378
+ ]
2379
+
2380
+ [[package]]
2381
+ name = "tempfile"
2382
+ version = "3.20.0"
2383
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2384
+ checksum = "e8a64e3985349f2441a1a9ef0b853f869006c3855f2cda6862a94d26ebb9d6a1"
2385
+ dependencies = [
2386
+ "fastrand",
2387
+ "getrandom 0.3.3",
2388
+ "once_cell",
2389
+ "rustix",
2390
+ "windows-sys 0.59.0",
2391
+ ]
2392
+
2393
+ [[package]]
2394
+ name = "thiserror"
2395
+ version = "1.0.69"
2396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2397
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
2398
+ dependencies = [
2399
+ "thiserror-impl 1.0.69",
2400
+ ]
2401
+
2402
+ [[package]]
2403
+ name = "thiserror"
2404
+ version = "2.0.15"
2405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2406
+ checksum = "80d76d3f064b981389ecb4b6b7f45a0bf9fdac1d5b9204c7bd6714fecc302850"
2407
+ dependencies = [
2408
+ "thiserror-impl 2.0.15",
2409
+ ]
2410
+
2411
+ [[package]]
2412
+ name = "thiserror-impl"
2413
+ version = "1.0.69"
2414
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2415
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
2416
+ dependencies = [
2417
+ "proc-macro2",
2418
+ "quote",
2419
+ "syn",
2420
+ ]
2421
+
2422
+ [[package]]
2423
+ name = "thiserror-impl"
2424
+ version = "2.0.15"
2425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2426
+ checksum = "44d29feb33e986b6ea906bd9c3559a856983f92371b3eaa5e83782a351623de0"
2427
+ dependencies = [
2428
+ "proc-macro2",
2429
+ "quote",
2430
+ "syn",
2431
+ ]
2432
+
2433
+ [[package]]
2434
+ name = "time"
2435
+ version = "0.3.41"
2436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2437
+ checksum = "8a7619e19bc266e0f9c5e6686659d394bc57973859340060a69221e57dbc0c40"
2438
+ dependencies = [
2439
+ "deranged",
2440
+ "itoa",
2441
+ "num-conv",
2442
+ "powerfmt",
2443
+ "serde",
2444
+ "time-core",
2445
+ "time-macros",
2446
+ ]
2447
+
2448
+ [[package]]
2449
+ name = "time-core"
2450
+ version = "0.1.4"
2451
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2452
+ checksum = "c9e9a38711f559d9e3ce1cdb06dd7c5b8ea546bc90052da6d06bb76da74bb07c"
2453
+
2454
+ [[package]]
2455
+ name = "time-macros"
2456
+ version = "0.2.22"
2457
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2458
+ checksum = "3526739392ec93fd8b359c8e98514cb3e8e021beb4e5f597b00a0221f8ed8a49"
2459
+ dependencies = [
2460
+ "num-conv",
2461
+ "time-core",
2462
+ ]
2463
+
2464
+ [[package]]
2465
+ name = "tinystr"
2466
+ version = "0.8.1"
2467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2468
+ checksum = "5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b"
2469
+ dependencies = [
2470
+ "displaydoc",
2471
+ "zerovec",
2472
+ ]
2473
+
2474
+ [[package]]
2475
+ name = "toml"
2476
+ version = "0.8.23"
2477
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2478
+ checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
2479
+ dependencies = [
2480
+ "serde",
2481
+ "serde_spanned",
2482
+ "toml_datetime",
2483
+ "toml_edit",
2484
+ ]
2485
+
2486
+ [[package]]
2487
+ name = "toml_datetime"
2488
+ version = "0.6.11"
2489
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2490
+ checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
2491
+ dependencies = [
2492
+ "serde",
2493
+ ]
2494
+
2495
+ [[package]]
2496
+ name = "toml_edit"
2497
+ version = "0.22.27"
2498
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2499
+ checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
2500
+ dependencies = [
2501
+ "indexmap",
2502
+ "serde",
2503
+ "serde_spanned",
2504
+ "toml_datetime",
2505
+ "toml_write",
2506
+ "winnow",
2507
+ ]
2508
+
2509
+ [[package]]
2510
+ name = "toml_write"
2511
+ version = "0.1.2"
2512
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2513
+ checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
2514
+
2515
+ [[package]]
2516
+ name = "typenum"
2517
+ version = "1.18.0"
2518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2519
+ checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f"
2520
+
2521
+ [[package]]
2522
+ name = "unicode-ident"
2523
+ version = "1.0.18"
2524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2525
+ checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
2526
+
2527
+ [[package]]
2528
+ name = "untrusted"
2529
+ version = "0.9.0"
2530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2531
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
2532
+
2533
+ [[package]]
2534
+ name = "unty"
2535
+ version = "0.0.4"
2536
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2537
+ checksum = "6d49784317cd0d1ee7ec5c716dd598ec5b4483ea832a2dced265471cc0f690ae"
2538
+
2539
+ [[package]]
2540
+ name = "ureq"
2541
+ version = "2.12.1"
2542
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2543
+ checksum = "02d1a66277ed75f640d608235660df48c8e3c19f3b4edb6a263315626cc3c01d"
2544
+ dependencies = [
2545
+ "base64 0.22.1",
2546
+ "flate2",
2547
+ "log",
2548
+ "once_cell",
2549
+ "rustls",
2550
+ "rustls-pki-types",
2551
+ "serde",
2552
+ "serde_json",
2553
+ "url",
2554
+ "webpki-roots 0.26.11",
2555
+ ]
2556
+
2557
+ [[package]]
2558
+ name = "ureq"
2559
+ version = "3.1.0"
2560
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2561
+ checksum = "00432f493971db5d8e47a65aeb3b02f8226b9b11f1450ff86bb772776ebadd70"
2562
+ dependencies = [
2563
+ "base64 0.22.1",
2564
+ "der",
2565
+ "log",
2566
+ "native-tls",
2567
+ "percent-encoding",
2568
+ "rustls-pemfile",
2569
+ "rustls-pki-types",
2570
+ "ureq-proto",
2571
+ "utf-8",
2572
+ "webpki-root-certs",
2573
+ ]
2574
+
2575
+ [[package]]
2576
+ name = "ureq-proto"
2577
+ version = "0.5.0"
2578
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2579
+ checksum = "c5b6cabebbecc4c45189ab06b52f956206cea7d8c8a20851c35a85cb169224cc"
2580
+ dependencies = [
2581
+ "base64 0.22.1",
2582
+ "http",
2583
+ "httparse",
2584
+ "log",
2585
+ ]
2586
+
2587
+ [[package]]
2588
+ name = "url"
2589
+ version = "2.5.4"
2590
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2591
+ checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60"
2592
+ dependencies = [
2593
+ "form_urlencoded",
2594
+ "idna",
2595
+ "percent-encoding",
2596
+ ]
2597
+
2598
+ [[package]]
2599
+ name = "utf-8"
2600
+ version = "0.7.6"
2601
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2602
+ checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
2603
+
2604
+ [[package]]
2605
+ name = "utf8_iter"
2606
+ version = "1.0.4"
2607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2608
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
2609
+
2610
+ [[package]]
2611
+ name = "utf8parse"
2612
+ version = "0.2.2"
2613
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2614
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
2615
+
2616
+ [[package]]
2617
+ name = "uuid"
2618
+ version = "1.18.0"
2619
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2620
+ checksum = "f33196643e165781c20a5ead5582283a7dacbb87855d867fbc2df3f81eddc1be"
2621
+ dependencies = [
2622
+ "getrandom 0.3.3",
2623
+ "js-sys",
2624
+ "serde",
2625
+ "wasm-bindgen",
2626
+ ]
2627
+
2628
+ [[package]]
2629
+ name = "vcpkg"
2630
+ version = "0.2.15"
2631
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2632
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
2633
+
2634
+ [[package]]
2635
+ name = "version_check"
2636
+ version = "0.9.5"
2637
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2638
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
2639
+
2640
+ [[package]]
2641
+ name = "virtue"
2642
+ version = "0.0.18"
2643
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2644
+ checksum = "051eb1abcf10076295e815102942cc58f9d5e3b4560e46e53c21e8ff6f3af7b1"
2645
+
2646
+ [[package]]
2647
+ name = "walkdir"
2648
+ version = "2.5.0"
2649
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2650
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
2651
+ dependencies = [
2652
+ "same-file",
2653
+ "winapi-util",
2654
+ ]
2655
+
2656
+ [[package]]
2657
+ name = "wasi"
2658
+ version = "0.11.1+wasi-snapshot-preview1"
2659
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2660
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
2661
+
2662
+ [[package]]
2663
+ name = "wasi"
2664
+ version = "0.14.2+wasi-0.2.4"
2665
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2666
+ checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
2667
+ dependencies = [
2668
+ "wit-bindgen-rt",
2669
+ ]
2670
+
2671
+ [[package]]
2672
+ name = "wasm-bindgen"
2673
+ version = "0.2.100"
2674
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2675
+ checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
2676
+ dependencies = [
2677
+ "cfg-if",
2678
+ "once_cell",
2679
+ "rustversion",
2680
+ "wasm-bindgen-macro",
2681
+ ]
2682
+
2683
+ [[package]]
2684
+ name = "wasm-bindgen-backend"
2685
+ version = "0.2.100"
2686
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2687
+ checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
2688
+ dependencies = [
2689
+ "bumpalo",
2690
+ "log",
2691
+ "proc-macro2",
2692
+ "quote",
2693
+ "syn",
2694
+ "wasm-bindgen-shared",
2695
+ ]
2696
+
2697
+ [[package]]
2698
+ name = "wasm-bindgen-macro"
2699
+ version = "0.2.100"
2700
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2701
+ checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
2702
+ dependencies = [
2703
+ "quote",
2704
+ "wasm-bindgen-macro-support",
2705
+ ]
2706
+
2707
+ [[package]]
2708
+ name = "wasm-bindgen-macro-support"
2709
+ version = "0.2.100"
2710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2711
+ checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
2712
+ dependencies = [
2713
+ "proc-macro2",
2714
+ "quote",
2715
+ "syn",
2716
+ "wasm-bindgen-backend",
2717
+ "wasm-bindgen-shared",
2718
+ ]
2719
+
2720
+ [[package]]
2721
+ name = "wasm-bindgen-shared"
2722
+ version = "0.2.100"
2723
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2724
+ checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
2725
+ dependencies = [
2726
+ "unicode-ident",
2727
+ ]
2728
+
2729
+ [[package]]
2730
+ name = "webpki-root-certs"
2731
+ version = "1.0.2"
2732
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2733
+ checksum = "4e4ffd8df1c57e87c325000a3d6ef93db75279dc3a231125aac571650f22b12a"
2734
+ dependencies = [
2735
+ "rustls-pki-types",
2736
+ ]
2737
+
2738
+ [[package]]
2739
+ name = "webpki-roots"
2740
+ version = "0.26.11"
2741
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2742
+ checksum = "521bc38abb08001b01866da9f51eb7c5d647a19260e00054a8c7fd5f9e57f7a9"
2743
+ dependencies = [
2744
+ "webpki-roots 1.0.2",
2745
+ ]
2746
+
2747
+ [[package]]
2748
+ name = "webpki-roots"
2749
+ version = "1.0.2"
2750
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2751
+ checksum = "7e8983c3ab33d6fb807cfcdad2491c4ea8cbc8ed839181c7dfd9c67c83e261b2"
2752
+ dependencies = [
2753
+ "rustls-pki-types",
2754
+ ]
2755
+
2756
+ [[package]]
2757
+ name = "widestring"
2758
+ version = "1.2.0"
2759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2760
+ checksum = "dd7cf3379ca1aac9eea11fba24fd7e315d621f8dfe35c8d7d2be8b793726e07d"
2761
+
2762
+ [[package]]
2763
+ name = "winapi"
2764
+ version = "0.3.9"
2765
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2766
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2767
+ dependencies = [
2768
+ "winapi-i686-pc-windows-gnu",
2769
+ "winapi-x86_64-pc-windows-gnu",
2770
+ ]
2771
+
2772
+ [[package]]
2773
+ name = "winapi-i686-pc-windows-gnu"
2774
+ version = "0.4.0"
2775
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2776
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2777
+
2778
+ [[package]]
2779
+ name = "winapi-util"
2780
+ version = "0.1.9"
2781
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2782
+ checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
2783
+ dependencies = [
2784
+ "windows-sys 0.59.0",
2785
+ ]
2786
+
2787
+ [[package]]
2788
+ name = "winapi-x86_64-pc-windows-gnu"
2789
+ version = "0.4.0"
2790
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2791
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2792
+
2793
+ [[package]]
2794
+ name = "windows"
2795
+ version = "0.48.0"
2796
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2797
+ checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f"
2798
+ dependencies = [
2799
+ "windows-targets 0.48.5",
2800
+ ]
2801
+
2802
+ [[package]]
2803
+ name = "windows-core"
2804
+ version = "0.61.2"
2805
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2806
+ checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3"
2807
+ dependencies = [
2808
+ "windows-implement",
2809
+ "windows-interface",
2810
+ "windows-link",
2811
+ "windows-result",
2812
+ "windows-strings",
2813
+ ]
2814
+
2815
+ [[package]]
2816
+ name = "windows-implement"
2817
+ version = "0.60.0"
2818
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2819
+ checksum = "a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836"
2820
+ dependencies = [
2821
+ "proc-macro2",
2822
+ "quote",
2823
+ "syn",
2824
+ ]
2825
+
2826
+ [[package]]
2827
+ name = "windows-interface"
2828
+ version = "0.59.1"
2829
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2830
+ checksum = "bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8"
2831
+ dependencies = [
2832
+ "proc-macro2",
2833
+ "quote",
2834
+ "syn",
2835
+ ]
2836
+
2837
+ [[package]]
2838
+ name = "windows-link"
2839
+ version = "0.1.3"
2840
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2841
+ checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
2842
+
2843
+ [[package]]
2844
+ name = "windows-result"
2845
+ version = "0.3.4"
2846
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2847
+ checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6"
2848
+ dependencies = [
2849
+ "windows-link",
2850
+ ]
2851
+
2852
+ [[package]]
2853
+ name = "windows-strings"
2854
+ version = "0.4.2"
2855
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2856
+ checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57"
2857
+ dependencies = [
2858
+ "windows-link",
2859
+ ]
2860
+
2861
+ [[package]]
2862
+ name = "windows-sys"
2863
+ version = "0.48.0"
2864
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2865
+ checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
2866
+ dependencies = [
2867
+ "windows-targets 0.48.5",
2868
+ ]
2869
+
2870
+ [[package]]
2871
+ name = "windows-sys"
2872
+ version = "0.52.0"
2873
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2874
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
2875
+ dependencies = [
2876
+ "windows-targets 0.52.6",
2877
+ ]
2878
+
2879
+ [[package]]
2880
+ name = "windows-sys"
2881
+ version = "0.59.0"
2882
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2883
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
2884
+ dependencies = [
2885
+ "windows-targets 0.52.6",
2886
+ ]
2887
+
2888
+ [[package]]
2889
+ name = "windows-sys"
2890
+ version = "0.60.2"
2891
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2892
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
2893
+ dependencies = [
2894
+ "windows-targets 0.53.3",
2895
+ ]
2896
+
2897
+ [[package]]
2898
+ name = "windows-targets"
2899
+ version = "0.48.5"
2900
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2901
+ checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
2902
+ dependencies = [
2903
+ "windows_aarch64_gnullvm 0.48.5",
2904
+ "windows_aarch64_msvc 0.48.5",
2905
+ "windows_i686_gnu 0.48.5",
2906
+ "windows_i686_msvc 0.48.5",
2907
+ "windows_x86_64_gnu 0.48.5",
2908
+ "windows_x86_64_gnullvm 0.48.5",
2909
+ "windows_x86_64_msvc 0.48.5",
2910
+ ]
2911
+
2912
+ [[package]]
2913
+ name = "windows-targets"
2914
+ version = "0.52.6"
2915
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2916
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
2917
+ dependencies = [
2918
+ "windows_aarch64_gnullvm 0.52.6",
2919
+ "windows_aarch64_msvc 0.52.6",
2920
+ "windows_i686_gnu 0.52.6",
2921
+ "windows_i686_gnullvm 0.52.6",
2922
+ "windows_i686_msvc 0.52.6",
2923
+ "windows_x86_64_gnu 0.52.6",
2924
+ "windows_x86_64_gnullvm 0.52.6",
2925
+ "windows_x86_64_msvc 0.52.6",
2926
+ ]
2927
+
2928
+ [[package]]
2929
+ name = "windows-targets"
2930
+ version = "0.53.3"
2931
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2932
+ checksum = "d5fe6031c4041849d7c496a8ded650796e7b6ecc19df1a431c1a363342e5dc91"
2933
+ dependencies = [
2934
+ "windows-link",
2935
+ "windows_aarch64_gnullvm 0.53.0",
2936
+ "windows_aarch64_msvc 0.53.0",
2937
+ "windows_i686_gnu 0.53.0",
2938
+ "windows_i686_gnullvm 0.53.0",
2939
+ "windows_i686_msvc 0.53.0",
2940
+ "windows_x86_64_gnu 0.53.0",
2941
+ "windows_x86_64_gnullvm 0.53.0",
2942
+ "windows_x86_64_msvc 0.53.0",
2943
+ ]
2944
+
2945
+ [[package]]
2946
+ name = "windows_aarch64_gnullvm"
2947
+ version = "0.48.5"
2948
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2949
+ checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
2950
+
2951
+ [[package]]
2952
+ name = "windows_aarch64_gnullvm"
2953
+ version = "0.52.6"
2954
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2955
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
2956
+
2957
+ [[package]]
2958
+ name = "windows_aarch64_gnullvm"
2959
+ version = "0.53.0"
2960
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2961
+ checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
2962
+
2963
+ [[package]]
2964
+ name = "windows_aarch64_msvc"
2965
+ version = "0.48.5"
2966
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2967
+ checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
2968
+
2969
+ [[package]]
2970
+ name = "windows_aarch64_msvc"
2971
+ version = "0.52.6"
2972
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2973
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
2974
+
2975
+ [[package]]
2976
+ name = "windows_aarch64_msvc"
2977
+ version = "0.53.0"
2978
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2979
+ checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
2980
+
2981
+ [[package]]
2982
+ name = "windows_i686_gnu"
2983
+ version = "0.48.5"
2984
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2985
+ checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
2986
+
2987
+ [[package]]
2988
+ name = "windows_i686_gnu"
2989
+ version = "0.52.6"
2990
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2991
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
2992
+
2993
+ [[package]]
2994
+ name = "windows_i686_gnu"
2995
+ version = "0.53.0"
2996
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2997
+ checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
2998
+
2999
+ [[package]]
3000
+ name = "windows_i686_gnullvm"
3001
+ version = "0.52.6"
3002
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3003
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
3004
+
3005
+ [[package]]
3006
+ name = "windows_i686_gnullvm"
3007
+ version = "0.53.0"
3008
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3009
+ checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
3010
+
3011
+ [[package]]
3012
+ name = "windows_i686_msvc"
3013
+ version = "0.48.5"
3014
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3015
+ checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
3016
+
3017
+ [[package]]
3018
+ name = "windows_i686_msvc"
3019
+ version = "0.52.6"
3020
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3021
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
3022
+
3023
+ [[package]]
3024
+ name = "windows_i686_msvc"
3025
+ version = "0.53.0"
3026
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3027
+ checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
3028
+
3029
+ [[package]]
3030
+ name = "windows_x86_64_gnu"
3031
+ version = "0.48.5"
3032
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3033
+ checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
3034
+
3035
+ [[package]]
3036
+ name = "windows_x86_64_gnu"
3037
+ version = "0.52.6"
3038
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3039
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
3040
+
3041
+ [[package]]
3042
+ name = "windows_x86_64_gnu"
3043
+ version = "0.53.0"
3044
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3045
+ checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
3046
+
3047
+ [[package]]
3048
+ name = "windows_x86_64_gnullvm"
3049
+ version = "0.48.5"
3050
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3051
+ checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
3052
+
3053
+ [[package]]
3054
+ name = "windows_x86_64_gnullvm"
3055
+ version = "0.52.6"
3056
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3057
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
3058
+
3059
+ [[package]]
3060
+ name = "windows_x86_64_gnullvm"
3061
+ version = "0.53.0"
3062
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3063
+ checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
3064
+
3065
+ [[package]]
3066
+ name = "windows_x86_64_msvc"
3067
+ version = "0.48.5"
3068
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3069
+ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
3070
+
3071
+ [[package]]
3072
+ name = "windows_x86_64_msvc"
3073
+ version = "0.52.6"
3074
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3075
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
3076
+
3077
+ [[package]]
3078
+ name = "windows_x86_64_msvc"
3079
+ version = "0.53.0"
3080
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3081
+ checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
3082
+
3083
+ [[package]]
3084
+ name = "winnow"
3085
+ version = "0.7.12"
3086
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3087
+ checksum = "f3edebf492c8125044983378ecb5766203ad3b4c2f7a922bd7dd207f6d443e95"
3088
+ dependencies = [
3089
+ "memchr",
3090
+ ]
3091
+
3092
+ [[package]]
3093
+ name = "wit-bindgen-rt"
3094
+ version = "0.39.0"
3095
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3096
+ checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
3097
+ dependencies = [
3098
+ "bitflags 2.9.2",
3099
+ ]
3100
+
3101
+ [[package]]
3102
+ name = "writeable"
3103
+ version = "0.6.1"
3104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3105
+ checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb"
3106
+
3107
+ [[package]]
3108
+ name = "wyz"
3109
+ version = "0.5.1"
3110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3111
+ checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
3112
+ dependencies = [
3113
+ "tap",
3114
+ ]
3115
+
3116
+ [[package]]
3117
+ name = "xattr"
3118
+ version = "1.5.1"
3119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3120
+ checksum = "af3a19837351dc82ba89f8a125e22a3c475f05aba604acc023d62b2739ae2909"
3121
+ dependencies = [
3122
+ "libc",
3123
+ "rustix",
3124
+ ]
3125
+
3126
+ [[package]]
3127
+ name = "yoke"
3128
+ version = "0.8.0"
3129
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3130
+ checksum = "5f41bb01b8226ef4bfd589436a297c53d118f65921786300e427be8d487695cc"
3131
+ dependencies = [
3132
+ "serde",
3133
+ "stable_deref_trait",
3134
+ "yoke-derive",
3135
+ "zerofrom",
3136
+ ]
3137
+
3138
+ [[package]]
3139
+ name = "yoke-derive"
3140
+ version = "0.8.0"
3141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3142
+ checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6"
3143
+ dependencies = [
3144
+ "proc-macro2",
3145
+ "quote",
3146
+ "syn",
3147
+ "synstructure",
3148
+ ]
3149
+
3150
+ [[package]]
3151
+ name = "zerocopy"
3152
+ version = "0.8.26"
3153
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3154
+ checksum = "1039dd0d3c310cf05de012d8a39ff557cb0d23087fd44cad61df08fc31907a2f"
3155
+ dependencies = [
3156
+ "zerocopy-derive",
3157
+ ]
3158
+
3159
+ [[package]]
3160
+ name = "zerocopy-derive"
3161
+ version = "0.8.26"
3162
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3163
+ checksum = "9ecf5b4cc5364572d7f4c329661bcc82724222973f2cab6f050a4e5c22f75181"
3164
+ dependencies = [
3165
+ "proc-macro2",
3166
+ "quote",
3167
+ "syn",
3168
+ ]
3169
+
3170
+ [[package]]
3171
+ name = "zerofrom"
3172
+ version = "0.1.6"
3173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3174
+ checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
3175
+ dependencies = [
3176
+ "zerofrom-derive",
3177
+ ]
3178
+
3179
+ [[package]]
3180
+ name = "zerofrom-derive"
3181
+ version = "0.1.6"
3182
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3183
+ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
3184
+ dependencies = [
3185
+ "proc-macro2",
3186
+ "quote",
3187
+ "syn",
3188
+ "synstructure",
3189
+ ]
3190
+
3191
+ [[package]]
3192
+ name = "zeroize"
3193
+ version = "1.8.1"
3194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3195
+ checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
3196
+
3197
+ [[package]]
3198
+ name = "zerotrie"
3199
+ version = "0.2.2"
3200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3201
+ checksum = "36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595"
3202
+ dependencies = [
3203
+ "displaydoc",
3204
+ "yoke",
3205
+ "zerofrom",
3206
+ ]
3207
+
3208
+ [[package]]
3209
+ name = "zerovec"
3210
+ version = "0.11.4"
3211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3212
+ checksum = "e7aa2bd55086f1ab526693ecbe444205da57e25f4489879da80635a46d90e73b"
3213
+ dependencies = [
3214
+ "yoke",
3215
+ "zerofrom",
3216
+ "zerovec-derive",
3217
+ ]
3218
+
3219
+ [[package]]
3220
+ name = "zerovec-derive"
3221
+ version = "0.11.1"
3222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3223
+ checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f"
3224
+ dependencies = [
3225
+ "proc-macro2",
3226
+ "quote",
3227
+ "syn",
3228
+ ]