velesdb 0.1.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (37) hide show
  1. velesdb-0.1.1/Cargo.lock +3626 -0
  2. velesdb-0.1.1/Cargo.toml +61 -0
  3. velesdb-0.1.1/PKG-INFO +165 -0
  4. velesdb-0.1.1/README.md +129 -0
  5. velesdb-0.1.1/crates/velesdb-core/Cargo.toml +68 -0
  6. velesdb-0.1.1/crates/velesdb-core/LICENSE +18 -0
  7. velesdb-0.1.1/crates/velesdb-core/README.md +74 -0
  8. velesdb-0.1.1/crates/velesdb-core/benches/filter_benchmark.rs +222 -0
  9. velesdb-0.1.1/crates/velesdb-core/benches/hnsw_benchmark.rs +279 -0
  10. velesdb-0.1.1/crates/velesdb-core/benches/hnsw_tuning.rs +253 -0
  11. velesdb-0.1.1/crates/velesdb-core/benches/scalability_benchmark.rs +450 -0
  12. velesdb-0.1.1/crates/velesdb-core/benches/search_benchmark.rs +115 -0
  13. velesdb-0.1.1/crates/velesdb-core/benches/velesql_benchmark.rs +101 -0
  14. velesdb-0.1.1/crates/velesdb-core/benches/wis1_validation.rs +403 -0
  15. velesdb-0.1.1/crates/velesdb-core/src/collection.rs +563 -0
  16. velesdb-0.1.1/crates/velesdb-core/src/distance.rs +256 -0
  17. velesdb-0.1.1/crates/velesdb-core/src/error.rs +55 -0
  18. velesdb-0.1.1/crates/velesdb-core/src/filter.rs +718 -0
  19. velesdb-0.1.1/crates/velesdb-core/src/index/hnsw.rs +1581 -0
  20. velesdb-0.1.1/crates/velesdb-core/src/index/mod.rs +60 -0
  21. velesdb-0.1.1/crates/velesdb-core/src/lib.rs +257 -0
  22. velesdb-0.1.1/crates/velesdb-core/src/point.rs +104 -0
  23. velesdb-0.1.1/crates/velesdb-core/src/quantization.rs +527 -0
  24. velesdb-0.1.1/crates/velesdb-core/src/simd.rs +581 -0
  25. velesdb-0.1.1/crates/velesdb-core/src/storage.rs +619 -0
  26. velesdb-0.1.1/crates/velesdb-core/src/velesql/ast.rs +310 -0
  27. velesdb-0.1.1/crates/velesdb-core/src/velesql/error.rs +181 -0
  28. velesdb-0.1.1/crates/velesdb-core/src/velesql/grammar.pest +86 -0
  29. velesdb-0.1.1/crates/velesdb-core/src/velesql/mod.rs +19 -0
  30. velesdb-0.1.1/crates/velesdb-core/src/velesql/parser.rs +753 -0
  31. velesdb-0.1.1/crates/velesdb-python/Cargo.toml +26 -0
  32. velesdb-0.1.1/crates/velesdb-python/README.md +129 -0
  33. velesdb-0.1.1/crates/velesdb-python/python/velesdb/__init__.py +6 -0
  34. velesdb-0.1.1/crates/velesdb-python/src/lib.rs +496 -0
  35. velesdb-0.1.1/crates/velesdb-python/tests/test_velesdb.py +329 -0
  36. velesdb-0.1.1/pyproject.toml +51 -0
  37. velesdb-0.1.1/python/velesdb/__init__.py +6 -0
@@ -0,0 +1,3626 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "ahash"
7
+ version = "0.8.12"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
10
+ dependencies = [
11
+ "cfg-if 1.0.4",
12
+ "once_cell",
13
+ "version_check",
14
+ "zerocopy",
15
+ ]
16
+
17
+ [[package]]
18
+ name = "aho-corasick"
19
+ version = "1.1.4"
20
+ source = "registry+https://github.com/rust-lang/crates.io-index"
21
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
22
+ dependencies = [
23
+ "memchr",
24
+ ]
25
+
26
+ [[package]]
27
+ name = "allocator-api2"
28
+ version = "0.2.21"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
31
+
32
+ [[package]]
33
+ name = "anes"
34
+ version = "0.1.6"
35
+ source = "registry+https://github.com/rust-lang/crates.io-index"
36
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
37
+
38
+ [[package]]
39
+ name = "anndists"
40
+ version = "0.1.3"
41
+ source = "registry+https://github.com/rust-lang/crates.io-index"
42
+ checksum = "d4bbb2296f2525e53a52680f5c2df6de9a83b8a94cc22a8cc629301a27b5e0b7"
43
+ dependencies = [
44
+ "anyhow",
45
+ "cfg-if 1.0.4",
46
+ "cpu-time",
47
+ "env_logger",
48
+ "lazy_static",
49
+ "log",
50
+ "num-traits",
51
+ "num_cpus",
52
+ "rayon",
53
+ "simdeez",
54
+ ]
55
+
56
+ [[package]]
57
+ name = "anstream"
58
+ version = "0.6.21"
59
+ source = "registry+https://github.com/rust-lang/crates.io-index"
60
+ checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
61
+ dependencies = [
62
+ "anstyle",
63
+ "anstyle-parse",
64
+ "anstyle-query",
65
+ "anstyle-wincon",
66
+ "colorchoice",
67
+ "is_terminal_polyfill",
68
+ "utf8parse",
69
+ ]
70
+
71
+ [[package]]
72
+ name = "anstyle"
73
+ version = "1.0.13"
74
+ source = "registry+https://github.com/rust-lang/crates.io-index"
75
+ checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
76
+
77
+ [[package]]
78
+ name = "anstyle-parse"
79
+ version = "0.2.7"
80
+ source = "registry+https://github.com/rust-lang/crates.io-index"
81
+ checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
82
+ dependencies = [
83
+ "utf8parse",
84
+ ]
85
+
86
+ [[package]]
87
+ name = "anstyle-query"
88
+ version = "1.1.5"
89
+ source = "registry+https://github.com/rust-lang/crates.io-index"
90
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
91
+ dependencies = [
92
+ "windows-sys 0.61.2",
93
+ ]
94
+
95
+ [[package]]
96
+ name = "anstyle-wincon"
97
+ version = "3.0.11"
98
+ source = "registry+https://github.com/rust-lang/crates.io-index"
99
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
100
+ dependencies = [
101
+ "anstyle",
102
+ "once_cell_polyfill",
103
+ "windows-sys 0.61.2",
104
+ ]
105
+
106
+ [[package]]
107
+ name = "anyhow"
108
+ version = "1.0.100"
109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
110
+ checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
111
+
112
+ [[package]]
113
+ name = "arraydeque"
114
+ version = "0.5.1"
115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
116
+ checksum = "7d902e3d592a523def97af8f317b08ce16b7ab854c1985a0c671e6f15cebc236"
117
+
118
+ [[package]]
119
+ name = "async-stream"
120
+ version = "0.3.6"
121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
122
+ checksum = "0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476"
123
+ dependencies = [
124
+ "async-stream-impl",
125
+ "futures-core",
126
+ "pin-project-lite",
127
+ ]
128
+
129
+ [[package]]
130
+ name = "async-stream-impl"
131
+ version = "0.3.6"
132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
133
+ checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d"
134
+ dependencies = [
135
+ "proc-macro2",
136
+ "quote",
137
+ "syn",
138
+ ]
139
+
140
+ [[package]]
141
+ name = "async-trait"
142
+ version = "0.1.89"
143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
144
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
145
+ dependencies = [
146
+ "proc-macro2",
147
+ "quote",
148
+ "syn",
149
+ ]
150
+
151
+ [[package]]
152
+ name = "atomic-waker"
153
+ version = "1.1.2"
154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
155
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
156
+
157
+ [[package]]
158
+ name = "autocfg"
159
+ version = "1.5.0"
160
+ source = "registry+https://github.com/rust-lang/crates.io-index"
161
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
162
+
163
+ [[package]]
164
+ name = "axum"
165
+ version = "0.8.7"
166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
167
+ checksum = "5b098575ebe77cb6d14fc7f32749631a6e44edbef6b796f89b020e99ba20d425"
168
+ dependencies = [
169
+ "axum-core",
170
+ "bytes",
171
+ "form_urlencoded",
172
+ "futures-util",
173
+ "http 1.4.0",
174
+ "http-body 1.0.1",
175
+ "http-body-util",
176
+ "hyper 1.8.1",
177
+ "hyper-util",
178
+ "itoa",
179
+ "matchit",
180
+ "memchr",
181
+ "mime",
182
+ "percent-encoding",
183
+ "pin-project-lite",
184
+ "serde_core",
185
+ "serde_json",
186
+ "serde_path_to_error",
187
+ "serde_urlencoded",
188
+ "sync_wrapper 1.0.2",
189
+ "tokio",
190
+ "tower",
191
+ "tower-layer",
192
+ "tower-service",
193
+ "tracing",
194
+ ]
195
+
196
+ [[package]]
197
+ name = "axum-core"
198
+ version = "0.5.5"
199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
200
+ checksum = "59446ce19cd142f8833f856eb31f3eb097812d1479ab224f54d72428ca21ea22"
201
+ dependencies = [
202
+ "bytes",
203
+ "futures-core",
204
+ "http 1.4.0",
205
+ "http-body 1.0.1",
206
+ "http-body-util",
207
+ "mime",
208
+ "pin-project-lite",
209
+ "sync_wrapper 1.0.2",
210
+ "tower-layer",
211
+ "tower-service",
212
+ "tracing",
213
+ ]
214
+
215
+ [[package]]
216
+ name = "base64"
217
+ version = "0.21.7"
218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
219
+ checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
220
+
221
+ [[package]]
222
+ name = "bincode"
223
+ version = "1.3.3"
224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
225
+ checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
226
+ dependencies = [
227
+ "serde",
228
+ ]
229
+
230
+ [[package]]
231
+ name = "bit-set"
232
+ version = "0.8.0"
233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
234
+ checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
235
+ dependencies = [
236
+ "bit-vec",
237
+ ]
238
+
239
+ [[package]]
240
+ name = "bit-vec"
241
+ version = "0.8.0"
242
+ source = "registry+https://github.com/rust-lang/crates.io-index"
243
+ checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
244
+
245
+ [[package]]
246
+ name = "bitflags"
247
+ version = "1.3.2"
248
+ source = "registry+https://github.com/rust-lang/crates.io-index"
249
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
250
+
251
+ [[package]]
252
+ name = "bitflags"
253
+ version = "2.10.0"
254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
255
+ checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
256
+ dependencies = [
257
+ "serde_core",
258
+ ]
259
+
260
+ [[package]]
261
+ name = "block-buffer"
262
+ version = "0.10.4"
263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
264
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
265
+ dependencies = [
266
+ "generic-array",
267
+ ]
268
+
269
+ [[package]]
270
+ name = "bumpalo"
271
+ version = "3.19.1"
272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
273
+ checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510"
274
+
275
+ [[package]]
276
+ name = "bytemuck"
277
+ version = "1.24.0"
278
+ source = "registry+https://github.com/rust-lang/crates.io-index"
279
+ checksum = "1fbdf580320f38b612e485521afda1ee26d10cc9884efaaa750d383e13e3c5f4"
280
+
281
+ [[package]]
282
+ name = "byteorder"
283
+ version = "1.5.0"
284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
285
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
286
+
287
+ [[package]]
288
+ name = "bytes"
289
+ version = "1.11.0"
290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
291
+ checksum = "b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3"
292
+
293
+ [[package]]
294
+ name = "cast"
295
+ version = "0.3.0"
296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
297
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
298
+
299
+ [[package]]
300
+ name = "cc"
301
+ version = "1.2.49"
302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
303
+ checksum = "90583009037521a116abf44494efecd645ba48b6622457080f080b85544e2215"
304
+ dependencies = [
305
+ "find-msvc-tools",
306
+ "shlex",
307
+ ]
308
+
309
+ [[package]]
310
+ name = "cfg-if"
311
+ version = "0.1.10"
312
+ source = "registry+https://github.com/rust-lang/crates.io-index"
313
+ checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
314
+
315
+ [[package]]
316
+ name = "cfg-if"
317
+ version = "1.0.4"
318
+ source = "registry+https://github.com/rust-lang/crates.io-index"
319
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
320
+
321
+ [[package]]
322
+ name = "cfg_aliases"
323
+ version = "0.1.1"
324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
325
+ checksum = "fd16c4719339c4530435d38e511904438d07cce7950afa3718a84ac36c10e89e"
326
+
327
+ [[package]]
328
+ name = "ciborium"
329
+ version = "0.2.2"
330
+ source = "registry+https://github.com/rust-lang/crates.io-index"
331
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
332
+ dependencies = [
333
+ "ciborium-io",
334
+ "ciborium-ll",
335
+ "serde",
336
+ ]
337
+
338
+ [[package]]
339
+ name = "ciborium-io"
340
+ version = "0.2.2"
341
+ source = "registry+https://github.com/rust-lang/crates.io-index"
342
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
343
+
344
+ [[package]]
345
+ name = "ciborium-ll"
346
+ version = "0.2.2"
347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
348
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
349
+ dependencies = [
350
+ "ciborium-io",
351
+ "half",
352
+ ]
353
+
354
+ [[package]]
355
+ name = "clap"
356
+ version = "4.5.53"
357
+ source = "registry+https://github.com/rust-lang/crates.io-index"
358
+ checksum = "c9e340e012a1bf4935f5282ed1436d1489548e8f72308207ea5df0e23d2d03f8"
359
+ dependencies = [
360
+ "clap_builder",
361
+ "clap_derive",
362
+ ]
363
+
364
+ [[package]]
365
+ name = "clap_builder"
366
+ version = "4.5.53"
367
+ source = "registry+https://github.com/rust-lang/crates.io-index"
368
+ checksum = "d76b5d13eaa18c901fd2f7fca939fefe3a0727a953561fefdf3b2922b8569d00"
369
+ dependencies = [
370
+ "anstream",
371
+ "anstyle",
372
+ "clap_lex",
373
+ "strsim",
374
+ ]
375
+
376
+ [[package]]
377
+ name = "clap_derive"
378
+ version = "4.5.49"
379
+ source = "registry+https://github.com/rust-lang/crates.io-index"
380
+ checksum = "2a0b5487afeab2deb2ff4e03a807ad1a03ac532ff5a2cee5d86884440c7f7671"
381
+ dependencies = [
382
+ "heck",
383
+ "proc-macro2",
384
+ "quote",
385
+ "syn",
386
+ ]
387
+
388
+ [[package]]
389
+ name = "clap_lex"
390
+ version = "0.7.6"
391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
392
+ checksum = "a1d728cc89cf3aee9ff92b05e62b19ee65a02b5702cff7d5a377e32c6ae29d8d"
393
+
394
+ [[package]]
395
+ name = "clipboard-win"
396
+ version = "5.4.1"
397
+ source = "registry+https://github.com/rust-lang/crates.io-index"
398
+ checksum = "bde03770d3df201d4fb868f2c9c59e66a3e4e2bd06692a0fe701e7103c7e84d4"
399
+ dependencies = [
400
+ "error-code",
401
+ ]
402
+
403
+ [[package]]
404
+ name = "colorchoice"
405
+ version = "1.0.4"
406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
407
+ checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
408
+
409
+ [[package]]
410
+ name = "colored"
411
+ version = "2.2.0"
412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
413
+ checksum = "117725a109d387c937a1533ce01b450cbde6b88abceea8473c4d7a85853cda3c"
414
+ dependencies = [
415
+ "lazy_static",
416
+ "windows-sys 0.52.0",
417
+ ]
418
+
419
+ [[package]]
420
+ name = "combine"
421
+ version = "4.6.7"
422
+ source = "registry+https://github.com/rust-lang/crates.io-index"
423
+ checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
424
+ dependencies = [
425
+ "bytes",
426
+ "memchr",
427
+ ]
428
+
429
+ [[package]]
430
+ name = "comfy-table"
431
+ version = "7.2.1"
432
+ source = "registry+https://github.com/rust-lang/crates.io-index"
433
+ checksum = "b03b7db8e0b4b2fdad6c551e634134e99ec000e5c8c3b6856c65e8bbaded7a3b"
434
+ dependencies = [
435
+ "crossterm",
436
+ "unicode-segmentation",
437
+ "unicode-width 0.2.2",
438
+ ]
439
+
440
+ [[package]]
441
+ name = "config"
442
+ version = "0.14.1"
443
+ source = "registry+https://github.com/rust-lang/crates.io-index"
444
+ checksum = "68578f196d2a33ff61b27fae256c3164f65e36382648e30666dde05b8cc9dfdf"
445
+ dependencies = [
446
+ "async-trait",
447
+ "convert_case",
448
+ "json5",
449
+ "nom",
450
+ "pathdiff",
451
+ "ron",
452
+ "rust-ini",
453
+ "serde",
454
+ "serde_json",
455
+ "toml",
456
+ "yaml-rust2",
457
+ ]
458
+
459
+ [[package]]
460
+ name = "const-random"
461
+ version = "0.1.18"
462
+ source = "registry+https://github.com/rust-lang/crates.io-index"
463
+ checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359"
464
+ dependencies = [
465
+ "const-random-macro",
466
+ ]
467
+
468
+ [[package]]
469
+ name = "const-random-macro"
470
+ version = "0.1.16"
471
+ source = "registry+https://github.com/rust-lang/crates.io-index"
472
+ checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e"
473
+ dependencies = [
474
+ "getrandom 0.2.16",
475
+ "once_cell",
476
+ "tiny-keccak",
477
+ ]
478
+
479
+ [[package]]
480
+ name = "convert_case"
481
+ version = "0.6.0"
482
+ source = "registry+https://github.com/rust-lang/crates.io-index"
483
+ checksum = "ec182b0ca2f35d8fc196cf3404988fd8b8c739a4d270ff118a398feb0cbec1ca"
484
+ dependencies = [
485
+ "unicode-segmentation",
486
+ ]
487
+
488
+ [[package]]
489
+ name = "core-foundation"
490
+ version = "0.9.4"
491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
492
+ checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
493
+ dependencies = [
494
+ "core-foundation-sys",
495
+ "libc",
496
+ ]
497
+
498
+ [[package]]
499
+ name = "core-foundation-sys"
500
+ version = "0.8.7"
501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
502
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
503
+
504
+ [[package]]
505
+ name = "cpu-time"
506
+ version = "1.0.0"
507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
508
+ checksum = "e9e393a7668fe1fad3075085b86c781883000b4ede868f43627b34a87c8b7ded"
509
+ dependencies = [
510
+ "libc",
511
+ "winapi",
512
+ ]
513
+
514
+ [[package]]
515
+ name = "cpufeatures"
516
+ version = "0.2.17"
517
+ source = "registry+https://github.com/rust-lang/crates.io-index"
518
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
519
+ dependencies = [
520
+ "libc",
521
+ ]
522
+
523
+ [[package]]
524
+ name = "criterion"
525
+ version = "0.5.1"
526
+ source = "registry+https://github.com/rust-lang/crates.io-index"
527
+ checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
528
+ dependencies = [
529
+ "anes",
530
+ "cast",
531
+ "ciborium",
532
+ "clap",
533
+ "criterion-plot",
534
+ "is-terminal",
535
+ "itertools",
536
+ "num-traits",
537
+ "once_cell",
538
+ "oorandom",
539
+ "plotters",
540
+ "rayon",
541
+ "regex",
542
+ "serde",
543
+ "serde_derive",
544
+ "serde_json",
545
+ "tinytemplate",
546
+ "walkdir",
547
+ ]
548
+
549
+ [[package]]
550
+ name = "criterion-plot"
551
+ version = "0.5.0"
552
+ source = "registry+https://github.com/rust-lang/crates.io-index"
553
+ checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
554
+ dependencies = [
555
+ "cast",
556
+ "itertools",
557
+ ]
558
+
559
+ [[package]]
560
+ name = "crossbeam-channel"
561
+ version = "0.5.15"
562
+ source = "registry+https://github.com/rust-lang/crates.io-index"
563
+ checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
564
+ dependencies = [
565
+ "crossbeam-utils",
566
+ ]
567
+
568
+ [[package]]
569
+ name = "crossbeam-deque"
570
+ version = "0.8.6"
571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
572
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
573
+ dependencies = [
574
+ "crossbeam-epoch",
575
+ "crossbeam-utils",
576
+ ]
577
+
578
+ [[package]]
579
+ name = "crossbeam-epoch"
580
+ version = "0.9.18"
581
+ source = "registry+https://github.com/rust-lang/crates.io-index"
582
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
583
+ dependencies = [
584
+ "crossbeam-utils",
585
+ ]
586
+
587
+ [[package]]
588
+ name = "crossbeam-utils"
589
+ version = "0.8.21"
590
+ source = "registry+https://github.com/rust-lang/crates.io-index"
591
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
592
+
593
+ [[package]]
594
+ name = "crossterm"
595
+ version = "0.29.0"
596
+ source = "registry+https://github.com/rust-lang/crates.io-index"
597
+ checksum = "d8b9f2e4c67f833b660cdb0a3523065869fb35570177239812ed4c905aeff87b"
598
+ dependencies = [
599
+ "bitflags 2.10.0",
600
+ "crossterm_winapi",
601
+ "document-features",
602
+ "parking_lot",
603
+ "rustix",
604
+ "winapi",
605
+ ]
606
+
607
+ [[package]]
608
+ name = "crossterm_winapi"
609
+ version = "0.9.1"
610
+ source = "registry+https://github.com/rust-lang/crates.io-index"
611
+ checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b"
612
+ dependencies = [
613
+ "winapi",
614
+ ]
615
+
616
+ [[package]]
617
+ name = "crunchy"
618
+ version = "0.2.4"
619
+ source = "registry+https://github.com/rust-lang/crates.io-index"
620
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
621
+
622
+ [[package]]
623
+ name = "crypto-common"
624
+ version = "0.1.7"
625
+ source = "registry+https://github.com/rust-lang/crates.io-index"
626
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
627
+ dependencies = [
628
+ "generic-array",
629
+ "typenum",
630
+ ]
631
+
632
+ [[package]]
633
+ name = "digest"
634
+ version = "0.10.7"
635
+ source = "registry+https://github.com/rust-lang/crates.io-index"
636
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
637
+ dependencies = [
638
+ "block-buffer",
639
+ "crypto-common",
640
+ ]
641
+
642
+ [[package]]
643
+ name = "dirs"
644
+ version = "5.0.1"
645
+ source = "registry+https://github.com/rust-lang/crates.io-index"
646
+ checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225"
647
+ dependencies = [
648
+ "dirs-sys",
649
+ ]
650
+
651
+ [[package]]
652
+ name = "dirs-sys"
653
+ version = "0.4.1"
654
+ source = "registry+https://github.com/rust-lang/crates.io-index"
655
+ checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c"
656
+ dependencies = [
657
+ "libc",
658
+ "option-ext",
659
+ "redox_users",
660
+ "windows-sys 0.48.0",
661
+ ]
662
+
663
+ [[package]]
664
+ name = "displaydoc"
665
+ version = "0.2.5"
666
+ source = "registry+https://github.com/rust-lang/crates.io-index"
667
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
668
+ dependencies = [
669
+ "proc-macro2",
670
+ "quote",
671
+ "syn",
672
+ ]
673
+
674
+ [[package]]
675
+ name = "dlv-list"
676
+ version = "0.5.2"
677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
678
+ checksum = "442039f5147480ba31067cb00ada1adae6892028e40e45fc5de7b7df6dcc1b5f"
679
+ dependencies = [
680
+ "const-random",
681
+ ]
682
+
683
+ [[package]]
684
+ name = "document-features"
685
+ version = "0.2.12"
686
+ source = "registry+https://github.com/rust-lang/crates.io-index"
687
+ checksum = "d4b8a88685455ed29a21542a33abd9cb6510b6b129abadabdcef0f4c55bc8f61"
688
+ dependencies = [
689
+ "litrs",
690
+ ]
691
+
692
+ [[package]]
693
+ name = "either"
694
+ version = "1.15.0"
695
+ source = "registry+https://github.com/rust-lang/crates.io-index"
696
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
697
+
698
+ [[package]]
699
+ name = "encoding_rs"
700
+ version = "0.8.35"
701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
702
+ checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
703
+ dependencies = [
704
+ "cfg-if 1.0.4",
705
+ ]
706
+
707
+ [[package]]
708
+ name = "endian-type"
709
+ version = "0.1.2"
710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
711
+ checksum = "c34f04666d835ff5d62e058c3995147c06f42fe86ff053337632bca83e42702d"
712
+
713
+ [[package]]
714
+ name = "enum-as-inner"
715
+ version = "0.6.1"
716
+ source = "registry+https://github.com/rust-lang/crates.io-index"
717
+ checksum = "a1e6a265c649f3f5979b601d26f1d05ada116434c87741c9493cb56218f76cbc"
718
+ dependencies = [
719
+ "heck",
720
+ "proc-macro2",
721
+ "quote",
722
+ "syn",
723
+ ]
724
+
725
+ [[package]]
726
+ name = "env_filter"
727
+ version = "0.1.4"
728
+ source = "registry+https://github.com/rust-lang/crates.io-index"
729
+ checksum = "1bf3c259d255ca70051b30e2e95b5446cdb8949ac4cd22c0d7fd634d89f568e2"
730
+ dependencies = [
731
+ "log",
732
+ "regex",
733
+ ]
734
+
735
+ [[package]]
736
+ name = "env_logger"
737
+ version = "0.11.8"
738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
739
+ checksum = "13c863f0904021b108aa8b2f55046443e6b1ebde8fd4a15c399893aae4fa069f"
740
+ dependencies = [
741
+ "anstream",
742
+ "anstyle",
743
+ "env_filter",
744
+ "jiff",
745
+ "log",
746
+ ]
747
+
748
+ [[package]]
749
+ name = "equivalent"
750
+ version = "1.0.2"
751
+ source = "registry+https://github.com/rust-lang/crates.io-index"
752
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
753
+
754
+ [[package]]
755
+ name = "errno"
756
+ version = "0.3.14"
757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
758
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
759
+ dependencies = [
760
+ "libc",
761
+ "windows-sys 0.61.2",
762
+ ]
763
+
764
+ [[package]]
765
+ name = "error-code"
766
+ version = "3.3.2"
767
+ source = "registry+https://github.com/rust-lang/crates.io-index"
768
+ checksum = "dea2df4cf52843e0452895c455a1a2cfbb842a1e7329671acf418fdc53ed4c59"
769
+
770
+ [[package]]
771
+ name = "fastrand"
772
+ version = "2.3.0"
773
+ source = "registry+https://github.com/rust-lang/crates.io-index"
774
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
775
+
776
+ [[package]]
777
+ name = "fd-lock"
778
+ version = "4.0.4"
779
+ source = "registry+https://github.com/rust-lang/crates.io-index"
780
+ checksum = "0ce92ff622d6dadf7349484f42c93271a0d49b7cc4d466a936405bacbe10aa78"
781
+ dependencies = [
782
+ "cfg-if 1.0.4",
783
+ "rustix",
784
+ "windows-sys 0.52.0",
785
+ ]
786
+
787
+ [[package]]
788
+ name = "find-msvc-tools"
789
+ version = "0.1.5"
790
+ source = "registry+https://github.com/rust-lang/crates.io-index"
791
+ checksum = "3a3076410a55c90011c298b04d0cfa770b00fa04e1e3c97d3f6c9de105a03844"
792
+
793
+ [[package]]
794
+ name = "fnv"
795
+ version = "1.0.7"
796
+ source = "registry+https://github.com/rust-lang/crates.io-index"
797
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
798
+
799
+ [[package]]
800
+ name = "foldhash"
801
+ version = "0.1.5"
802
+ source = "registry+https://github.com/rust-lang/crates.io-index"
803
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
804
+
805
+ [[package]]
806
+ name = "foreign-types"
807
+ version = "0.3.2"
808
+ source = "registry+https://github.com/rust-lang/crates.io-index"
809
+ checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
810
+ dependencies = [
811
+ "foreign-types-shared",
812
+ ]
813
+
814
+ [[package]]
815
+ name = "foreign-types-shared"
816
+ version = "0.1.1"
817
+ source = "registry+https://github.com/rust-lang/crates.io-index"
818
+ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
819
+
820
+ [[package]]
821
+ name = "form_urlencoded"
822
+ version = "1.2.2"
823
+ source = "registry+https://github.com/rust-lang/crates.io-index"
824
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
825
+ dependencies = [
826
+ "percent-encoding",
827
+ ]
828
+
829
+ [[package]]
830
+ name = "futures-channel"
831
+ version = "0.3.31"
832
+ source = "registry+https://github.com/rust-lang/crates.io-index"
833
+ checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
834
+ dependencies = [
835
+ "futures-core",
836
+ ]
837
+
838
+ [[package]]
839
+ name = "futures-core"
840
+ version = "0.3.31"
841
+ source = "registry+https://github.com/rust-lang/crates.io-index"
842
+ checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
843
+
844
+ [[package]]
845
+ name = "futures-sink"
846
+ version = "0.3.31"
847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
848
+ checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
849
+
850
+ [[package]]
851
+ name = "futures-task"
852
+ version = "0.3.31"
853
+ source = "registry+https://github.com/rust-lang/crates.io-index"
854
+ checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
855
+
856
+ [[package]]
857
+ name = "futures-util"
858
+ version = "0.3.31"
859
+ source = "registry+https://github.com/rust-lang/crates.io-index"
860
+ checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
861
+ dependencies = [
862
+ "futures-core",
863
+ "futures-task",
864
+ "pin-project-lite",
865
+ "pin-utils",
866
+ ]
867
+
868
+ [[package]]
869
+ name = "generic-array"
870
+ version = "0.14.7"
871
+ source = "registry+https://github.com/rust-lang/crates.io-index"
872
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
873
+ dependencies = [
874
+ "typenum",
875
+ "version_check",
876
+ ]
877
+
878
+ [[package]]
879
+ name = "getrandom"
880
+ version = "0.2.16"
881
+ source = "registry+https://github.com/rust-lang/crates.io-index"
882
+ checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
883
+ dependencies = [
884
+ "cfg-if 1.0.4",
885
+ "libc",
886
+ "wasi",
887
+ ]
888
+
889
+ [[package]]
890
+ name = "getrandom"
891
+ version = "0.3.4"
892
+ source = "registry+https://github.com/rust-lang/crates.io-index"
893
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
894
+ dependencies = [
895
+ "cfg-if 1.0.4",
896
+ "libc",
897
+ "r-efi",
898
+ "wasip2",
899
+ ]
900
+
901
+ [[package]]
902
+ name = "h2"
903
+ version = "0.3.27"
904
+ source = "registry+https://github.com/rust-lang/crates.io-index"
905
+ checksum = "0beca50380b1fc32983fc1cb4587bfa4bb9e78fc259aad4a0032d2080309222d"
906
+ dependencies = [
907
+ "bytes",
908
+ "fnv",
909
+ "futures-core",
910
+ "futures-sink",
911
+ "futures-util",
912
+ "http 0.2.12",
913
+ "indexmap",
914
+ "slab",
915
+ "tokio",
916
+ "tokio-util",
917
+ "tracing",
918
+ ]
919
+
920
+ [[package]]
921
+ name = "half"
922
+ version = "2.7.1"
923
+ source = "registry+https://github.com/rust-lang/crates.io-index"
924
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
925
+ dependencies = [
926
+ "cfg-if 1.0.4",
927
+ "crunchy",
928
+ "zerocopy",
929
+ ]
930
+
931
+ [[package]]
932
+ name = "hashbrown"
933
+ version = "0.14.5"
934
+ source = "registry+https://github.com/rust-lang/crates.io-index"
935
+ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
936
+ dependencies = [
937
+ "ahash",
938
+ "allocator-api2",
939
+ ]
940
+
941
+ [[package]]
942
+ name = "hashbrown"
943
+ version = "0.15.5"
944
+ source = "registry+https://github.com/rust-lang/crates.io-index"
945
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
946
+ dependencies = [
947
+ "allocator-api2",
948
+ "equivalent",
949
+ "foldhash",
950
+ ]
951
+
952
+ [[package]]
953
+ name = "hashbrown"
954
+ version = "0.16.1"
955
+ source = "registry+https://github.com/rust-lang/crates.io-index"
956
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
957
+
958
+ [[package]]
959
+ name = "hashlink"
960
+ version = "0.8.4"
961
+ source = "registry+https://github.com/rust-lang/crates.io-index"
962
+ checksum = "e8094feaf31ff591f651a2664fb9cfd92bba7a60ce3197265e9482ebe753c8f7"
963
+ dependencies = [
964
+ "hashbrown 0.14.5",
965
+ ]
966
+
967
+ [[package]]
968
+ name = "heck"
969
+ version = "0.5.0"
970
+ source = "registry+https://github.com/rust-lang/crates.io-index"
971
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
972
+
973
+ [[package]]
974
+ name = "hermit-abi"
975
+ version = "0.5.2"
976
+ source = "registry+https://github.com/rust-lang/crates.io-index"
977
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
978
+
979
+ [[package]]
980
+ name = "hnsw_rs"
981
+ version = "0.3.3"
982
+ source = "registry+https://github.com/rust-lang/crates.io-index"
983
+ checksum = "22884c1debedfe585612f1f6da7bfe257f557639143cac270a8ac2f8702de750"
984
+ dependencies = [
985
+ "anndists",
986
+ "anyhow",
987
+ "bincode",
988
+ "cfg-if 1.0.4",
989
+ "cpu-time",
990
+ "env_logger",
991
+ "hashbrown 0.15.5",
992
+ "indexmap",
993
+ "lazy_static",
994
+ "log",
995
+ "mmap-rs",
996
+ "num-traits",
997
+ "num_cpus",
998
+ "parking_lot",
999
+ "rand",
1000
+ "rayon",
1001
+ "serde",
1002
+ ]
1003
+
1004
+ [[package]]
1005
+ name = "home"
1006
+ version = "0.5.12"
1007
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1008
+ checksum = "cc627f471c528ff0c4a49e1d5e60450c8f6461dd6d10ba9dcd3a61d3dff7728d"
1009
+ dependencies = [
1010
+ "windows-sys 0.61.2",
1011
+ ]
1012
+
1013
+ [[package]]
1014
+ name = "http"
1015
+ version = "0.2.12"
1016
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1017
+ checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1"
1018
+ dependencies = [
1019
+ "bytes",
1020
+ "fnv",
1021
+ "itoa",
1022
+ ]
1023
+
1024
+ [[package]]
1025
+ name = "http"
1026
+ version = "1.4.0"
1027
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1028
+ checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
1029
+ dependencies = [
1030
+ "bytes",
1031
+ "itoa",
1032
+ ]
1033
+
1034
+ [[package]]
1035
+ name = "http-body"
1036
+ version = "0.4.6"
1037
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1038
+ checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2"
1039
+ dependencies = [
1040
+ "bytes",
1041
+ "http 0.2.12",
1042
+ "pin-project-lite",
1043
+ ]
1044
+
1045
+ [[package]]
1046
+ name = "http-body"
1047
+ version = "1.0.1"
1048
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1049
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
1050
+ dependencies = [
1051
+ "bytes",
1052
+ "http 1.4.0",
1053
+ ]
1054
+
1055
+ [[package]]
1056
+ name = "http-body-util"
1057
+ version = "0.1.3"
1058
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1059
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
1060
+ dependencies = [
1061
+ "bytes",
1062
+ "futures-core",
1063
+ "http 1.4.0",
1064
+ "http-body 1.0.1",
1065
+ "pin-project-lite",
1066
+ ]
1067
+
1068
+ [[package]]
1069
+ name = "httparse"
1070
+ version = "1.10.1"
1071
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1072
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
1073
+
1074
+ [[package]]
1075
+ name = "httpdate"
1076
+ version = "1.0.3"
1077
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1078
+ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
1079
+
1080
+ [[package]]
1081
+ name = "hyper"
1082
+ version = "0.14.32"
1083
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1084
+ checksum = "41dfc780fdec9373c01bae43289ea34c972e40ee3c9f6b3c8801a35f35586ce7"
1085
+ dependencies = [
1086
+ "bytes",
1087
+ "futures-channel",
1088
+ "futures-core",
1089
+ "futures-util",
1090
+ "h2",
1091
+ "http 0.2.12",
1092
+ "http-body 0.4.6",
1093
+ "httparse",
1094
+ "httpdate",
1095
+ "itoa",
1096
+ "pin-project-lite",
1097
+ "socket2 0.5.10",
1098
+ "tokio",
1099
+ "tower-service",
1100
+ "tracing",
1101
+ "want",
1102
+ ]
1103
+
1104
+ [[package]]
1105
+ name = "hyper"
1106
+ version = "1.8.1"
1107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1108
+ checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11"
1109
+ dependencies = [
1110
+ "atomic-waker",
1111
+ "bytes",
1112
+ "futures-channel",
1113
+ "futures-core",
1114
+ "http 1.4.0",
1115
+ "http-body 1.0.1",
1116
+ "httparse",
1117
+ "httpdate",
1118
+ "itoa",
1119
+ "pin-project-lite",
1120
+ "pin-utils",
1121
+ "smallvec",
1122
+ "tokio",
1123
+ ]
1124
+
1125
+ [[package]]
1126
+ name = "hyper-tls"
1127
+ version = "0.5.0"
1128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1129
+ checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905"
1130
+ dependencies = [
1131
+ "bytes",
1132
+ "hyper 0.14.32",
1133
+ "native-tls",
1134
+ "tokio",
1135
+ "tokio-native-tls",
1136
+ ]
1137
+
1138
+ [[package]]
1139
+ name = "hyper-util"
1140
+ version = "0.1.19"
1141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1142
+ checksum = "727805d60e7938b76b826a6ef209eb70eaa1812794f9424d4a4e2d740662df5f"
1143
+ dependencies = [
1144
+ "bytes",
1145
+ "futures-core",
1146
+ "http 1.4.0",
1147
+ "http-body 1.0.1",
1148
+ "hyper 1.8.1",
1149
+ "pin-project-lite",
1150
+ "tokio",
1151
+ "tower-service",
1152
+ ]
1153
+
1154
+ [[package]]
1155
+ name = "icu_collections"
1156
+ version = "2.1.1"
1157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1158
+ checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
1159
+ dependencies = [
1160
+ "displaydoc",
1161
+ "potential_utf",
1162
+ "yoke",
1163
+ "zerofrom",
1164
+ "zerovec",
1165
+ ]
1166
+
1167
+ [[package]]
1168
+ name = "icu_locale_core"
1169
+ version = "2.1.1"
1170
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1171
+ checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
1172
+ dependencies = [
1173
+ "displaydoc",
1174
+ "litemap",
1175
+ "tinystr",
1176
+ "writeable",
1177
+ "zerovec",
1178
+ ]
1179
+
1180
+ [[package]]
1181
+ name = "icu_normalizer"
1182
+ version = "2.1.1"
1183
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1184
+ checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
1185
+ dependencies = [
1186
+ "icu_collections",
1187
+ "icu_normalizer_data",
1188
+ "icu_properties",
1189
+ "icu_provider",
1190
+ "smallvec",
1191
+ "zerovec",
1192
+ ]
1193
+
1194
+ [[package]]
1195
+ name = "icu_normalizer_data"
1196
+ version = "2.1.1"
1197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1198
+ checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
1199
+
1200
+ [[package]]
1201
+ name = "icu_properties"
1202
+ version = "2.1.2"
1203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1204
+ checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
1205
+ dependencies = [
1206
+ "icu_collections",
1207
+ "icu_locale_core",
1208
+ "icu_properties_data",
1209
+ "icu_provider",
1210
+ "zerotrie",
1211
+ "zerovec",
1212
+ ]
1213
+
1214
+ [[package]]
1215
+ name = "icu_properties_data"
1216
+ version = "2.1.2"
1217
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1218
+ checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
1219
+
1220
+ [[package]]
1221
+ name = "icu_provider"
1222
+ version = "2.1.1"
1223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1224
+ checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
1225
+ dependencies = [
1226
+ "displaydoc",
1227
+ "icu_locale_core",
1228
+ "writeable",
1229
+ "yoke",
1230
+ "zerofrom",
1231
+ "zerotrie",
1232
+ "zerovec",
1233
+ ]
1234
+
1235
+ [[package]]
1236
+ name = "idna"
1237
+ version = "1.1.0"
1238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1239
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
1240
+ dependencies = [
1241
+ "idna_adapter",
1242
+ "smallvec",
1243
+ "utf8_iter",
1244
+ ]
1245
+
1246
+ [[package]]
1247
+ name = "idna_adapter"
1248
+ version = "1.2.1"
1249
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1250
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
1251
+ dependencies = [
1252
+ "icu_normalizer",
1253
+ "icu_properties",
1254
+ ]
1255
+
1256
+ [[package]]
1257
+ name = "indexmap"
1258
+ version = "2.12.1"
1259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1260
+ checksum = "0ad4bb2b565bca0645f4d68c5c9af97fba094e9791da685bf83cb5f3ce74acf2"
1261
+ dependencies = [
1262
+ "equivalent",
1263
+ "hashbrown 0.16.1",
1264
+ ]
1265
+
1266
+ [[package]]
1267
+ name = "indoc"
1268
+ version = "2.0.7"
1269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1270
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
1271
+ dependencies = [
1272
+ "rustversion",
1273
+ ]
1274
+
1275
+ [[package]]
1276
+ name = "instant"
1277
+ version = "0.1.13"
1278
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1279
+ checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222"
1280
+ dependencies = [
1281
+ "cfg-if 1.0.4",
1282
+ ]
1283
+
1284
+ [[package]]
1285
+ name = "ipnet"
1286
+ version = "2.11.0"
1287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1288
+ checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
1289
+
1290
+ [[package]]
1291
+ name = "is-terminal"
1292
+ version = "0.4.17"
1293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1294
+ checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
1295
+ dependencies = [
1296
+ "hermit-abi",
1297
+ "libc",
1298
+ "windows-sys 0.61.2",
1299
+ ]
1300
+
1301
+ [[package]]
1302
+ name = "is_terminal_polyfill"
1303
+ version = "1.70.2"
1304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1305
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
1306
+
1307
+ [[package]]
1308
+ name = "itertools"
1309
+ version = "0.10.5"
1310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1311
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
1312
+ dependencies = [
1313
+ "either",
1314
+ ]
1315
+
1316
+ [[package]]
1317
+ name = "itoa"
1318
+ version = "1.0.15"
1319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1320
+ checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
1321
+
1322
+ [[package]]
1323
+ name = "jiff"
1324
+ version = "0.2.16"
1325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1326
+ checksum = "49cce2b81f2098e7e3efc35bc2e0a6b7abec9d34128283d7a26fa8f32a6dbb35"
1327
+ dependencies = [
1328
+ "jiff-static",
1329
+ "log",
1330
+ "portable-atomic",
1331
+ "portable-atomic-util",
1332
+ "serde_core",
1333
+ ]
1334
+
1335
+ [[package]]
1336
+ name = "jiff-static"
1337
+ version = "0.2.16"
1338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1339
+ checksum = "980af8b43c3ad5d8d349ace167ec8170839f753a42d233ba19e08afe1850fa69"
1340
+ dependencies = [
1341
+ "proc-macro2",
1342
+ "quote",
1343
+ "syn",
1344
+ ]
1345
+
1346
+ [[package]]
1347
+ name = "js-sys"
1348
+ version = "0.3.83"
1349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1350
+ checksum = "464a3709c7f55f1f721e5389aa6ea4e3bc6aba669353300af094b29ffbdde1d8"
1351
+ dependencies = [
1352
+ "once_cell",
1353
+ "wasm-bindgen",
1354
+ ]
1355
+
1356
+ [[package]]
1357
+ name = "json5"
1358
+ version = "0.4.1"
1359
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1360
+ checksum = "96b0db21af676c1ce64250b5f40f3ce2cf27e4e47cb91ed91eb6fe9350b430c1"
1361
+ dependencies = [
1362
+ "pest",
1363
+ "pest_derive",
1364
+ "serde",
1365
+ ]
1366
+
1367
+ [[package]]
1368
+ name = "lazy_static"
1369
+ version = "1.5.0"
1370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1371
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1372
+
1373
+ [[package]]
1374
+ name = "libc"
1375
+ version = "0.2.178"
1376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1377
+ checksum = "37c93d8daa9d8a012fd8ab92f088405fb202ea0b6ab73ee2482ae66af4f42091"
1378
+
1379
+ [[package]]
1380
+ name = "libredox"
1381
+ version = "0.1.11"
1382
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1383
+ checksum = "df15f6eac291ed1cf25865b1ee60399f57e7c227e7f51bdbd4c5270396a9ed50"
1384
+ dependencies = [
1385
+ "bitflags 2.10.0",
1386
+ "libc",
1387
+ ]
1388
+
1389
+ [[package]]
1390
+ name = "linux-raw-sys"
1391
+ version = "0.11.0"
1392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1393
+ checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
1394
+
1395
+ [[package]]
1396
+ name = "litemap"
1397
+ version = "0.8.1"
1398
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1399
+ checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
1400
+
1401
+ [[package]]
1402
+ name = "litrs"
1403
+ version = "1.0.0"
1404
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1405
+ checksum = "11d3d7f243d5c5a8b9bb5d6dd2b1602c0cb0b9db1621bafc7ed66e35ff9fe092"
1406
+
1407
+ [[package]]
1408
+ name = "lock_api"
1409
+ version = "0.4.14"
1410
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1411
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
1412
+ dependencies = [
1413
+ "scopeguard",
1414
+ ]
1415
+
1416
+ [[package]]
1417
+ name = "log"
1418
+ version = "0.4.29"
1419
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1420
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
1421
+
1422
+ [[package]]
1423
+ name = "mach2"
1424
+ version = "0.4.3"
1425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1426
+ checksum = "d640282b302c0bb0a2a8e0233ead9035e3bed871f0b7e81fe4a1ec829765db44"
1427
+ dependencies = [
1428
+ "libc",
1429
+ ]
1430
+
1431
+ [[package]]
1432
+ name = "matchers"
1433
+ version = "0.2.0"
1434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1435
+ checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
1436
+ dependencies = [
1437
+ "regex-automata",
1438
+ ]
1439
+
1440
+ [[package]]
1441
+ name = "matchit"
1442
+ version = "0.8.4"
1443
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1444
+ checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3"
1445
+
1446
+ [[package]]
1447
+ name = "matrixmultiply"
1448
+ version = "0.3.10"
1449
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1450
+ checksum = "a06de3016e9fae57a36fd14dba131fccf49f74b40b7fbdb472f96e361ec71a08"
1451
+ dependencies = [
1452
+ "autocfg",
1453
+ "rawpointer",
1454
+ ]
1455
+
1456
+ [[package]]
1457
+ name = "memchr"
1458
+ version = "2.7.6"
1459
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1460
+ checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
1461
+
1462
+ [[package]]
1463
+ name = "memmap2"
1464
+ version = "0.9.9"
1465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1466
+ checksum = "744133e4a0e0a658e1374cf3bf8e415c4052a15a111acd372764c55b4177d490"
1467
+ dependencies = [
1468
+ "libc",
1469
+ ]
1470
+
1471
+ [[package]]
1472
+ name = "memoffset"
1473
+ version = "0.7.1"
1474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1475
+ checksum = "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4"
1476
+ dependencies = [
1477
+ "autocfg",
1478
+ ]
1479
+
1480
+ [[package]]
1481
+ name = "memoffset"
1482
+ version = "0.9.1"
1483
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1484
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
1485
+ dependencies = [
1486
+ "autocfg",
1487
+ ]
1488
+
1489
+ [[package]]
1490
+ name = "mime"
1491
+ version = "0.3.17"
1492
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1493
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
1494
+
1495
+ [[package]]
1496
+ name = "minimal-lexical"
1497
+ version = "0.2.1"
1498
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1499
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
1500
+
1501
+ [[package]]
1502
+ name = "mio"
1503
+ version = "1.1.1"
1504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1505
+ checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
1506
+ dependencies = [
1507
+ "libc",
1508
+ "wasi",
1509
+ "windows-sys 0.61.2",
1510
+ ]
1511
+
1512
+ [[package]]
1513
+ name = "mmap-rs"
1514
+ version = "0.6.1"
1515
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1516
+ checksum = "86968d85441db75203c34deefd0c88032f275aaa85cee19a1dcfff6ae9df56da"
1517
+ dependencies = [
1518
+ "bitflags 1.3.2",
1519
+ "combine",
1520
+ "libc",
1521
+ "mach2",
1522
+ "nix 0.26.4",
1523
+ "sysctl",
1524
+ "thiserror 1.0.69",
1525
+ "widestring",
1526
+ "windows",
1527
+ ]
1528
+
1529
+ [[package]]
1530
+ name = "native-tls"
1531
+ version = "0.2.14"
1532
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1533
+ checksum = "87de3442987e9dbec73158d5c715e7ad9072fda936bb03d19d7fa10e00520f0e"
1534
+ dependencies = [
1535
+ "libc",
1536
+ "log",
1537
+ "openssl",
1538
+ "openssl-probe",
1539
+ "openssl-sys",
1540
+ "schannel",
1541
+ "security-framework",
1542
+ "security-framework-sys",
1543
+ "tempfile",
1544
+ ]
1545
+
1546
+ [[package]]
1547
+ name = "ndarray"
1548
+ version = "0.16.1"
1549
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1550
+ checksum = "882ed72dce9365842bf196bdeedf5055305f11fc8c03dee7bb0194a6cad34841"
1551
+ dependencies = [
1552
+ "matrixmultiply",
1553
+ "num-complex",
1554
+ "num-integer",
1555
+ "num-traits",
1556
+ "portable-atomic",
1557
+ "portable-atomic-util",
1558
+ "rawpointer",
1559
+ ]
1560
+
1561
+ [[package]]
1562
+ name = "nibble_vec"
1563
+ version = "0.1.0"
1564
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1565
+ checksum = "77a5d83df9f36fe23f0c3648c6bbb8b0298bb5f1939c8f2704431371f4b84d43"
1566
+ dependencies = [
1567
+ "smallvec",
1568
+ ]
1569
+
1570
+ [[package]]
1571
+ name = "nix"
1572
+ version = "0.26.4"
1573
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1574
+ checksum = "598beaf3cc6fdd9a5dfb1630c2800c7acd31df7aaf0f565796fba2b53ca1af1b"
1575
+ dependencies = [
1576
+ "bitflags 1.3.2",
1577
+ "cfg-if 1.0.4",
1578
+ "libc",
1579
+ "memoffset 0.7.1",
1580
+ "pin-utils",
1581
+ ]
1582
+
1583
+ [[package]]
1584
+ name = "nix"
1585
+ version = "0.28.0"
1586
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1587
+ checksum = "ab2156c4fce2f8df6c499cc1c763e4394b7482525bf2a9701c9d79d215f519e4"
1588
+ dependencies = [
1589
+ "bitflags 2.10.0",
1590
+ "cfg-if 1.0.4",
1591
+ "cfg_aliases",
1592
+ "libc",
1593
+ ]
1594
+
1595
+ [[package]]
1596
+ name = "nom"
1597
+ version = "7.1.3"
1598
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1599
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
1600
+ dependencies = [
1601
+ "memchr",
1602
+ "minimal-lexical",
1603
+ ]
1604
+
1605
+ [[package]]
1606
+ name = "nu-ansi-term"
1607
+ version = "0.50.3"
1608
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1609
+ checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
1610
+ dependencies = [
1611
+ "windows-sys 0.61.2",
1612
+ ]
1613
+
1614
+ [[package]]
1615
+ name = "num-complex"
1616
+ version = "0.4.6"
1617
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1618
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
1619
+ dependencies = [
1620
+ "num-traits",
1621
+ ]
1622
+
1623
+ [[package]]
1624
+ name = "num-integer"
1625
+ version = "0.1.46"
1626
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1627
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
1628
+ dependencies = [
1629
+ "num-traits",
1630
+ ]
1631
+
1632
+ [[package]]
1633
+ name = "num-traits"
1634
+ version = "0.2.19"
1635
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1636
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1637
+ dependencies = [
1638
+ "autocfg",
1639
+ ]
1640
+
1641
+ [[package]]
1642
+ name = "num_cpus"
1643
+ version = "1.17.0"
1644
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1645
+ checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
1646
+ dependencies = [
1647
+ "hermit-abi",
1648
+ "libc",
1649
+ ]
1650
+
1651
+ [[package]]
1652
+ name = "numpy"
1653
+ version = "0.24.0"
1654
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1655
+ checksum = "a7cfbf3f0feededcaa4d289fe3079b03659e85c5b5a177f4ba6fb01ab4fb3e39"
1656
+ dependencies = [
1657
+ "libc",
1658
+ "ndarray",
1659
+ "num-complex",
1660
+ "num-integer",
1661
+ "num-traits",
1662
+ "pyo3",
1663
+ "pyo3-build-config",
1664
+ "rustc-hash",
1665
+ ]
1666
+
1667
+ [[package]]
1668
+ name = "once_cell"
1669
+ version = "1.21.3"
1670
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1671
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
1672
+
1673
+ [[package]]
1674
+ name = "once_cell_polyfill"
1675
+ version = "1.70.2"
1676
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1677
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
1678
+
1679
+ [[package]]
1680
+ name = "oorandom"
1681
+ version = "11.1.5"
1682
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1683
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
1684
+
1685
+ [[package]]
1686
+ name = "openssl"
1687
+ version = "0.10.75"
1688
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1689
+ checksum = "08838db121398ad17ab8531ce9de97b244589089e290a384c900cb9ff7434328"
1690
+ dependencies = [
1691
+ "bitflags 2.10.0",
1692
+ "cfg-if 1.0.4",
1693
+ "foreign-types",
1694
+ "libc",
1695
+ "once_cell",
1696
+ "openssl-macros",
1697
+ "openssl-sys",
1698
+ ]
1699
+
1700
+ [[package]]
1701
+ name = "openssl-macros"
1702
+ version = "0.1.1"
1703
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1704
+ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
1705
+ dependencies = [
1706
+ "proc-macro2",
1707
+ "quote",
1708
+ "syn",
1709
+ ]
1710
+
1711
+ [[package]]
1712
+ name = "openssl-probe"
1713
+ version = "0.1.6"
1714
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1715
+ checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
1716
+
1717
+ [[package]]
1718
+ name = "openssl-sys"
1719
+ version = "0.9.111"
1720
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1721
+ checksum = "82cab2d520aa75e3c58898289429321eb788c3106963d0dc886ec7a5f4adc321"
1722
+ dependencies = [
1723
+ "cc",
1724
+ "libc",
1725
+ "pkg-config",
1726
+ "vcpkg",
1727
+ ]
1728
+
1729
+ [[package]]
1730
+ name = "option-ext"
1731
+ version = "0.2.0"
1732
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1733
+ checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
1734
+
1735
+ [[package]]
1736
+ name = "ordered-multimap"
1737
+ version = "0.7.3"
1738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1739
+ checksum = "49203cdcae0030493bad186b28da2fa25645fa276a51b6fec8010d281e02ef79"
1740
+ dependencies = [
1741
+ "dlv-list",
1742
+ "hashbrown 0.14.5",
1743
+ ]
1744
+
1745
+ [[package]]
1746
+ name = "parking_lot"
1747
+ version = "0.12.5"
1748
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1749
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
1750
+ dependencies = [
1751
+ "lock_api",
1752
+ "parking_lot_core",
1753
+ ]
1754
+
1755
+ [[package]]
1756
+ name = "parking_lot_core"
1757
+ version = "0.9.12"
1758
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1759
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
1760
+ dependencies = [
1761
+ "cfg-if 1.0.4",
1762
+ "libc",
1763
+ "redox_syscall",
1764
+ "smallvec",
1765
+ "windows-link",
1766
+ ]
1767
+
1768
+ [[package]]
1769
+ name = "paste"
1770
+ version = "0.1.18"
1771
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1772
+ checksum = "45ca20c77d80be666aef2b45486da86238fabe33e38306bd3118fe4af33fa880"
1773
+ dependencies = [
1774
+ "paste-impl",
1775
+ "proc-macro-hack",
1776
+ ]
1777
+
1778
+ [[package]]
1779
+ name = "paste-impl"
1780
+ version = "0.1.18"
1781
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1782
+ checksum = "d95a7db200b97ef370c8e6de0088252f7e0dfff7d047a28528e47456c0fc98b6"
1783
+ dependencies = [
1784
+ "proc-macro-hack",
1785
+ ]
1786
+
1787
+ [[package]]
1788
+ name = "pathdiff"
1789
+ version = "0.2.3"
1790
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1791
+ checksum = "df94ce210e5bc13cb6651479fa48d14f601d9858cfe0467f43ae157023b938d3"
1792
+
1793
+ [[package]]
1794
+ name = "percent-encoding"
1795
+ version = "2.3.2"
1796
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1797
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1798
+
1799
+ [[package]]
1800
+ name = "pest"
1801
+ version = "2.8.4"
1802
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1803
+ checksum = "cbcfd20a6d4eeba40179f05735784ad32bdaef05ce8e8af05f180d45bb3e7e22"
1804
+ dependencies = [
1805
+ "memchr",
1806
+ "ucd-trie",
1807
+ ]
1808
+
1809
+ [[package]]
1810
+ name = "pest_derive"
1811
+ version = "2.8.4"
1812
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1813
+ checksum = "51f72981ade67b1ca6adc26ec221be9f463f2b5839c7508998daa17c23d94d7f"
1814
+ dependencies = [
1815
+ "pest",
1816
+ "pest_generator",
1817
+ ]
1818
+
1819
+ [[package]]
1820
+ name = "pest_generator"
1821
+ version = "2.8.4"
1822
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1823
+ checksum = "dee9efd8cdb50d719a80088b76f81aec7c41ed6d522ee750178f83883d271625"
1824
+ dependencies = [
1825
+ "pest",
1826
+ "pest_meta",
1827
+ "proc-macro2",
1828
+ "quote",
1829
+ "syn",
1830
+ ]
1831
+
1832
+ [[package]]
1833
+ name = "pest_meta"
1834
+ version = "2.8.4"
1835
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1836
+ checksum = "bf1d70880e76bdc13ba52eafa6239ce793d85c8e43896507e43dd8984ff05b82"
1837
+ dependencies = [
1838
+ "pest",
1839
+ "sha2",
1840
+ ]
1841
+
1842
+ [[package]]
1843
+ name = "pin-project-lite"
1844
+ version = "0.2.16"
1845
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1846
+ checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
1847
+
1848
+ [[package]]
1849
+ name = "pin-utils"
1850
+ version = "0.1.0"
1851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1852
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1853
+
1854
+ [[package]]
1855
+ name = "pkg-config"
1856
+ version = "0.3.32"
1857
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1858
+ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
1859
+
1860
+ [[package]]
1861
+ name = "plotters"
1862
+ version = "0.3.7"
1863
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1864
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
1865
+ dependencies = [
1866
+ "num-traits",
1867
+ "plotters-backend",
1868
+ "plotters-svg",
1869
+ "wasm-bindgen",
1870
+ "web-sys",
1871
+ ]
1872
+
1873
+ [[package]]
1874
+ name = "plotters-backend"
1875
+ version = "0.3.7"
1876
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1877
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
1878
+
1879
+ [[package]]
1880
+ name = "plotters-svg"
1881
+ version = "0.3.7"
1882
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1883
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
1884
+ dependencies = [
1885
+ "plotters-backend",
1886
+ ]
1887
+
1888
+ [[package]]
1889
+ name = "portable-atomic"
1890
+ version = "1.11.1"
1891
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1892
+ checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
1893
+
1894
+ [[package]]
1895
+ name = "portable-atomic-util"
1896
+ version = "0.2.4"
1897
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1898
+ checksum = "d8a2f0d8d040d7848a709caf78912debcc3f33ee4b3cac47d73d1e1069e83507"
1899
+ dependencies = [
1900
+ "portable-atomic",
1901
+ ]
1902
+
1903
+ [[package]]
1904
+ name = "potential_utf"
1905
+ version = "0.1.4"
1906
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1907
+ checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
1908
+ dependencies = [
1909
+ "zerovec",
1910
+ ]
1911
+
1912
+ [[package]]
1913
+ name = "ppv-lite86"
1914
+ version = "0.2.21"
1915
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1916
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1917
+ dependencies = [
1918
+ "zerocopy",
1919
+ ]
1920
+
1921
+ [[package]]
1922
+ name = "proc-macro-hack"
1923
+ version = "0.5.20+deprecated"
1924
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1925
+ checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068"
1926
+
1927
+ [[package]]
1928
+ name = "proc-macro2"
1929
+ version = "1.0.103"
1930
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1931
+ checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8"
1932
+ dependencies = [
1933
+ "unicode-ident",
1934
+ ]
1935
+
1936
+ [[package]]
1937
+ name = "proptest"
1938
+ version = "1.9.0"
1939
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1940
+ checksum = "bee689443a2bd0a16ab0348b52ee43e3b2d1b1f931c8aa5c9f8de4c86fbe8c40"
1941
+ dependencies = [
1942
+ "bit-set",
1943
+ "bit-vec",
1944
+ "bitflags 2.10.0",
1945
+ "num-traits",
1946
+ "rand",
1947
+ "rand_chacha",
1948
+ "rand_xorshift",
1949
+ "regex-syntax",
1950
+ "rusty-fork",
1951
+ "tempfile",
1952
+ "unarray",
1953
+ ]
1954
+
1955
+ [[package]]
1956
+ name = "pyo3"
1957
+ version = "0.24.2"
1958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1959
+ checksum = "e5203598f366b11a02b13aa20cab591229ff0a89fd121a308a5df751d5fc9219"
1960
+ dependencies = [
1961
+ "cfg-if 1.0.4",
1962
+ "indoc",
1963
+ "libc",
1964
+ "memoffset 0.9.1",
1965
+ "once_cell",
1966
+ "portable-atomic",
1967
+ "pyo3-build-config",
1968
+ "pyo3-ffi",
1969
+ "pyo3-macros",
1970
+ "unindent",
1971
+ ]
1972
+
1973
+ [[package]]
1974
+ name = "pyo3-build-config"
1975
+ version = "0.24.2"
1976
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1977
+ checksum = "99636d423fa2ca130fa5acde3059308006d46f98caac629418e53f7ebb1e9999"
1978
+ dependencies = [
1979
+ "once_cell",
1980
+ "target-lexicon",
1981
+ ]
1982
+
1983
+ [[package]]
1984
+ name = "pyo3-ffi"
1985
+ version = "0.24.2"
1986
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1987
+ checksum = "78f9cf92ba9c409279bc3305b5409d90db2d2c22392d443a87df3a1adad59e33"
1988
+ dependencies = [
1989
+ "libc",
1990
+ "pyo3-build-config",
1991
+ ]
1992
+
1993
+ [[package]]
1994
+ name = "pyo3-macros"
1995
+ version = "0.24.2"
1996
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1997
+ checksum = "0b999cb1a6ce21f9a6b147dcf1be9ffedf02e0043aec74dc390f3007047cecd9"
1998
+ dependencies = [
1999
+ "proc-macro2",
2000
+ "pyo3-macros-backend",
2001
+ "quote",
2002
+ "syn",
2003
+ ]
2004
+
2005
+ [[package]]
2006
+ name = "pyo3-macros-backend"
2007
+ version = "0.24.2"
2008
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2009
+ checksum = "822ece1c7e1012745607d5cf0bcb2874769f0f7cb34c4cde03b9358eb9ef911a"
2010
+ dependencies = [
2011
+ "heck",
2012
+ "proc-macro2",
2013
+ "pyo3-build-config",
2014
+ "quote",
2015
+ "syn",
2016
+ ]
2017
+
2018
+ [[package]]
2019
+ name = "quick-error"
2020
+ version = "1.2.3"
2021
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2022
+ checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
2023
+
2024
+ [[package]]
2025
+ name = "quote"
2026
+ version = "1.0.42"
2027
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2028
+ checksum = "a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f"
2029
+ dependencies = [
2030
+ "proc-macro2",
2031
+ ]
2032
+
2033
+ [[package]]
2034
+ name = "r-efi"
2035
+ version = "5.3.0"
2036
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2037
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
2038
+
2039
+ [[package]]
2040
+ name = "radix_trie"
2041
+ version = "0.2.1"
2042
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2043
+ checksum = "c069c179fcdc6a2fe24d8d18305cf085fdbd4f922c041943e203685d6a1c58fd"
2044
+ dependencies = [
2045
+ "endian-type",
2046
+ "nibble_vec",
2047
+ ]
2048
+
2049
+ [[package]]
2050
+ name = "rand"
2051
+ version = "0.9.2"
2052
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2053
+ checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
2054
+ dependencies = [
2055
+ "rand_chacha",
2056
+ "rand_core",
2057
+ ]
2058
+
2059
+ [[package]]
2060
+ name = "rand_chacha"
2061
+ version = "0.9.0"
2062
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2063
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
2064
+ dependencies = [
2065
+ "ppv-lite86",
2066
+ "rand_core",
2067
+ ]
2068
+
2069
+ [[package]]
2070
+ name = "rand_core"
2071
+ version = "0.9.3"
2072
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2073
+ checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
2074
+ dependencies = [
2075
+ "getrandom 0.3.4",
2076
+ ]
2077
+
2078
+ [[package]]
2079
+ name = "rand_xorshift"
2080
+ version = "0.4.0"
2081
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2082
+ checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
2083
+ dependencies = [
2084
+ "rand_core",
2085
+ ]
2086
+
2087
+ [[package]]
2088
+ name = "rawpointer"
2089
+ version = "0.2.1"
2090
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2091
+ checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
2092
+
2093
+ [[package]]
2094
+ name = "rayon"
2095
+ version = "1.11.0"
2096
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2097
+ checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
2098
+ dependencies = [
2099
+ "either",
2100
+ "rayon-core",
2101
+ ]
2102
+
2103
+ [[package]]
2104
+ name = "rayon-core"
2105
+ version = "1.13.0"
2106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2107
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
2108
+ dependencies = [
2109
+ "crossbeam-deque",
2110
+ "crossbeam-utils",
2111
+ ]
2112
+
2113
+ [[package]]
2114
+ name = "redox_syscall"
2115
+ version = "0.5.18"
2116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2117
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
2118
+ dependencies = [
2119
+ "bitflags 2.10.0",
2120
+ ]
2121
+
2122
+ [[package]]
2123
+ name = "redox_users"
2124
+ version = "0.4.6"
2125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2126
+ checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43"
2127
+ dependencies = [
2128
+ "getrandom 0.2.16",
2129
+ "libredox",
2130
+ "thiserror 1.0.69",
2131
+ ]
2132
+
2133
+ [[package]]
2134
+ name = "regex"
2135
+ version = "1.12.2"
2136
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2137
+ checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
2138
+ dependencies = [
2139
+ "aho-corasick",
2140
+ "memchr",
2141
+ "regex-automata",
2142
+ "regex-syntax",
2143
+ ]
2144
+
2145
+ [[package]]
2146
+ name = "regex-automata"
2147
+ version = "0.4.13"
2148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2149
+ checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
2150
+ dependencies = [
2151
+ "aho-corasick",
2152
+ "memchr",
2153
+ "regex-syntax",
2154
+ ]
2155
+
2156
+ [[package]]
2157
+ name = "regex-syntax"
2158
+ version = "0.8.8"
2159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2160
+ checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
2161
+
2162
+ [[package]]
2163
+ name = "reqwest"
2164
+ version = "0.11.27"
2165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2166
+ checksum = "dd67538700a17451e7cba03ac727fb961abb7607553461627b97de0b89cf4a62"
2167
+ dependencies = [
2168
+ "base64",
2169
+ "bytes",
2170
+ "encoding_rs",
2171
+ "futures-core",
2172
+ "futures-util",
2173
+ "h2",
2174
+ "http 0.2.12",
2175
+ "http-body 0.4.6",
2176
+ "hyper 0.14.32",
2177
+ "hyper-tls",
2178
+ "ipnet",
2179
+ "js-sys",
2180
+ "log",
2181
+ "mime",
2182
+ "native-tls",
2183
+ "once_cell",
2184
+ "percent-encoding",
2185
+ "pin-project-lite",
2186
+ "rustls-pemfile",
2187
+ "serde",
2188
+ "serde_json",
2189
+ "serde_urlencoded",
2190
+ "sync_wrapper 0.1.2",
2191
+ "system-configuration",
2192
+ "tokio",
2193
+ "tokio-native-tls",
2194
+ "tower-service",
2195
+ "url",
2196
+ "wasm-bindgen",
2197
+ "wasm-bindgen-futures",
2198
+ "web-sys",
2199
+ "winreg",
2200
+ ]
2201
+
2202
+ [[package]]
2203
+ name = "roaring"
2204
+ version = "0.10.12"
2205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2206
+ checksum = "19e8d2cfa184d94d0726d650a9f4a1be7f9b76ac9fdb954219878dc00c1c1e7b"
2207
+ dependencies = [
2208
+ "bytemuck",
2209
+ "byteorder",
2210
+ ]
2211
+
2212
+ [[package]]
2213
+ name = "ron"
2214
+ version = "0.8.1"
2215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2216
+ checksum = "b91f7eff05f748767f183df4320a63d6936e9c6107d97c9e6bdd9784f4289c94"
2217
+ dependencies = [
2218
+ "base64",
2219
+ "bitflags 2.10.0",
2220
+ "serde",
2221
+ "serde_derive",
2222
+ ]
2223
+
2224
+ [[package]]
2225
+ name = "rust-ini"
2226
+ version = "0.20.0"
2227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2228
+ checksum = "3e0698206bcb8882bf2a9ecb4c1e7785db57ff052297085a6efd4fe42302068a"
2229
+ dependencies = [
2230
+ "cfg-if 1.0.4",
2231
+ "ordered-multimap",
2232
+ ]
2233
+
2234
+ [[package]]
2235
+ name = "rustc-hash"
2236
+ version = "2.1.1"
2237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2238
+ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
2239
+
2240
+ [[package]]
2241
+ name = "rustix"
2242
+ version = "1.1.2"
2243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2244
+ checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e"
2245
+ dependencies = [
2246
+ "bitflags 2.10.0",
2247
+ "errno",
2248
+ "libc",
2249
+ "linux-raw-sys",
2250
+ "windows-sys 0.61.2",
2251
+ ]
2252
+
2253
+ [[package]]
2254
+ name = "rustls-pemfile"
2255
+ version = "1.0.4"
2256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2257
+ checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c"
2258
+ dependencies = [
2259
+ "base64",
2260
+ ]
2261
+
2262
+ [[package]]
2263
+ name = "rustversion"
2264
+ version = "1.0.22"
2265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2266
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
2267
+
2268
+ [[package]]
2269
+ name = "rusty-fork"
2270
+ version = "0.3.1"
2271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2272
+ checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2"
2273
+ dependencies = [
2274
+ "fnv",
2275
+ "quick-error",
2276
+ "tempfile",
2277
+ "wait-timeout",
2278
+ ]
2279
+
2280
+ [[package]]
2281
+ name = "rustyline"
2282
+ version = "14.0.0"
2283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2284
+ checksum = "7803e8936da37efd9b6d4478277f4b2b9bb5cdb37a113e8d63222e58da647e63"
2285
+ dependencies = [
2286
+ "bitflags 2.10.0",
2287
+ "cfg-if 1.0.4",
2288
+ "clipboard-win",
2289
+ "fd-lock",
2290
+ "home",
2291
+ "libc",
2292
+ "log",
2293
+ "memchr",
2294
+ "nix 0.28.0",
2295
+ "radix_trie",
2296
+ "rustyline-derive",
2297
+ "unicode-segmentation",
2298
+ "unicode-width 0.1.14",
2299
+ "utf8parse",
2300
+ "windows-sys 0.52.0",
2301
+ ]
2302
+
2303
+ [[package]]
2304
+ name = "rustyline-derive"
2305
+ version = "0.10.0"
2306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2307
+ checksum = "e5af959c8bf6af1aff6d2b463a57f71aae53d1332da58419e30ad8dc7011d951"
2308
+ dependencies = [
2309
+ "proc-macro2",
2310
+ "quote",
2311
+ "syn",
2312
+ ]
2313
+
2314
+ [[package]]
2315
+ name = "ryu"
2316
+ version = "1.0.20"
2317
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2318
+ checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
2319
+
2320
+ [[package]]
2321
+ name = "same-file"
2322
+ version = "1.0.6"
2323
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2324
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
2325
+ dependencies = [
2326
+ "winapi-util",
2327
+ ]
2328
+
2329
+ [[package]]
2330
+ name = "schannel"
2331
+ version = "0.1.28"
2332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2333
+ checksum = "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1"
2334
+ dependencies = [
2335
+ "windows-sys 0.61.2",
2336
+ ]
2337
+
2338
+ [[package]]
2339
+ name = "scopeguard"
2340
+ version = "1.2.0"
2341
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2342
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2343
+
2344
+ [[package]]
2345
+ name = "security-framework"
2346
+ version = "2.11.1"
2347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2348
+ checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
2349
+ dependencies = [
2350
+ "bitflags 2.10.0",
2351
+ "core-foundation",
2352
+ "core-foundation-sys",
2353
+ "libc",
2354
+ "security-framework-sys",
2355
+ ]
2356
+
2357
+ [[package]]
2358
+ name = "security-framework-sys"
2359
+ version = "2.15.0"
2360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2361
+ checksum = "cc1f0cbffaac4852523ce30d8bd3c5cdc873501d96ff467ca09b6767bb8cd5c0"
2362
+ dependencies = [
2363
+ "core-foundation-sys",
2364
+ "libc",
2365
+ ]
2366
+
2367
+ [[package]]
2368
+ name = "serde"
2369
+ version = "1.0.228"
2370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2371
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
2372
+ dependencies = [
2373
+ "serde_core",
2374
+ "serde_derive",
2375
+ ]
2376
+
2377
+ [[package]]
2378
+ name = "serde_core"
2379
+ version = "1.0.228"
2380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2381
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
2382
+ dependencies = [
2383
+ "serde_derive",
2384
+ ]
2385
+
2386
+ [[package]]
2387
+ name = "serde_derive"
2388
+ version = "1.0.228"
2389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2390
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
2391
+ dependencies = [
2392
+ "proc-macro2",
2393
+ "quote",
2394
+ "syn",
2395
+ ]
2396
+
2397
+ [[package]]
2398
+ name = "serde_json"
2399
+ version = "1.0.145"
2400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2401
+ checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
2402
+ dependencies = [
2403
+ "itoa",
2404
+ "memchr",
2405
+ "ryu",
2406
+ "serde",
2407
+ "serde_core",
2408
+ ]
2409
+
2410
+ [[package]]
2411
+ name = "serde_path_to_error"
2412
+ version = "0.1.20"
2413
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2414
+ checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457"
2415
+ dependencies = [
2416
+ "itoa",
2417
+ "serde",
2418
+ "serde_core",
2419
+ ]
2420
+
2421
+ [[package]]
2422
+ name = "serde_spanned"
2423
+ version = "0.6.9"
2424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2425
+ checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
2426
+ dependencies = [
2427
+ "serde",
2428
+ ]
2429
+
2430
+ [[package]]
2431
+ name = "serde_urlencoded"
2432
+ version = "0.7.1"
2433
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2434
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
2435
+ dependencies = [
2436
+ "form_urlencoded",
2437
+ "itoa",
2438
+ "ryu",
2439
+ "serde",
2440
+ ]
2441
+
2442
+ [[package]]
2443
+ name = "sha2"
2444
+ version = "0.10.9"
2445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2446
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
2447
+ dependencies = [
2448
+ "cfg-if 1.0.4",
2449
+ "cpufeatures",
2450
+ "digest",
2451
+ ]
2452
+
2453
+ [[package]]
2454
+ name = "sharded-slab"
2455
+ version = "0.1.7"
2456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2457
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
2458
+ dependencies = [
2459
+ "lazy_static",
2460
+ ]
2461
+
2462
+ [[package]]
2463
+ name = "shlex"
2464
+ version = "1.3.0"
2465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2466
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
2467
+
2468
+ [[package]]
2469
+ name = "signal-hook-registry"
2470
+ version = "1.4.7"
2471
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2472
+ checksum = "7664a098b8e616bdfcc2dc0e9ac44eb231eedf41db4e9fe95d8d32ec728dedad"
2473
+ dependencies = [
2474
+ "libc",
2475
+ ]
2476
+
2477
+ [[package]]
2478
+ name = "simdeez"
2479
+ version = "1.0.8"
2480
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2481
+ checksum = "f6ec898e1be717eee4b54a84ff2fc94ecb5a1b992d4ad148ce30575b45745662"
2482
+ dependencies = [
2483
+ "cfg-if 0.1.10",
2484
+ "paste",
2485
+ ]
2486
+
2487
+ [[package]]
2488
+ name = "slab"
2489
+ version = "0.4.11"
2490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2491
+ checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589"
2492
+
2493
+ [[package]]
2494
+ name = "smallvec"
2495
+ version = "1.15.1"
2496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2497
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
2498
+
2499
+ [[package]]
2500
+ name = "socket2"
2501
+ version = "0.5.10"
2502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2503
+ checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678"
2504
+ dependencies = [
2505
+ "libc",
2506
+ "windows-sys 0.52.0",
2507
+ ]
2508
+
2509
+ [[package]]
2510
+ name = "socket2"
2511
+ version = "0.6.1"
2512
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2513
+ checksum = "17129e116933cf371d018bb80ae557e889637989d8638274fb25622827b03881"
2514
+ dependencies = [
2515
+ "libc",
2516
+ "windows-sys 0.60.2",
2517
+ ]
2518
+
2519
+ [[package]]
2520
+ name = "stable_deref_trait"
2521
+ version = "1.2.1"
2522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2523
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
2524
+
2525
+ [[package]]
2526
+ name = "strsim"
2527
+ version = "0.11.1"
2528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2529
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
2530
+
2531
+ [[package]]
2532
+ name = "syn"
2533
+ version = "2.0.111"
2534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2535
+ checksum = "390cc9a294ab71bdb1aa2e99d13be9c753cd2d7bd6560c77118597410c4d2e87"
2536
+ dependencies = [
2537
+ "proc-macro2",
2538
+ "quote",
2539
+ "unicode-ident",
2540
+ ]
2541
+
2542
+ [[package]]
2543
+ name = "sync_wrapper"
2544
+ version = "0.1.2"
2545
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2546
+ checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160"
2547
+
2548
+ [[package]]
2549
+ name = "sync_wrapper"
2550
+ version = "1.0.2"
2551
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2552
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
2553
+
2554
+ [[package]]
2555
+ name = "synstructure"
2556
+ version = "0.13.2"
2557
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2558
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
2559
+ dependencies = [
2560
+ "proc-macro2",
2561
+ "quote",
2562
+ "syn",
2563
+ ]
2564
+
2565
+ [[package]]
2566
+ name = "sysctl"
2567
+ version = "0.5.5"
2568
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2569
+ checksum = "ec7dddc5f0fee506baf8b9fdb989e242f17e4b11c61dfbb0635b705217199eea"
2570
+ dependencies = [
2571
+ "bitflags 2.10.0",
2572
+ "byteorder",
2573
+ "enum-as-inner",
2574
+ "libc",
2575
+ "thiserror 1.0.69",
2576
+ "walkdir",
2577
+ ]
2578
+
2579
+ [[package]]
2580
+ name = "system-configuration"
2581
+ version = "0.5.1"
2582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2583
+ checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7"
2584
+ dependencies = [
2585
+ "bitflags 1.3.2",
2586
+ "core-foundation",
2587
+ "system-configuration-sys",
2588
+ ]
2589
+
2590
+ [[package]]
2591
+ name = "system-configuration-sys"
2592
+ version = "0.5.0"
2593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2594
+ checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9"
2595
+ dependencies = [
2596
+ "core-foundation-sys",
2597
+ "libc",
2598
+ ]
2599
+
2600
+ [[package]]
2601
+ name = "target-lexicon"
2602
+ version = "0.13.4"
2603
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2604
+ checksum = "b1dd07eb858a2067e2f3c7155d54e929265c264e6f37efe3ee7a8d1b5a1dd0ba"
2605
+
2606
+ [[package]]
2607
+ name = "tempfile"
2608
+ version = "3.23.0"
2609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2610
+ checksum = "2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16"
2611
+ dependencies = [
2612
+ "fastrand",
2613
+ "getrandom 0.3.4",
2614
+ "once_cell",
2615
+ "rustix",
2616
+ "windows-sys 0.61.2",
2617
+ ]
2618
+
2619
+ [[package]]
2620
+ name = "thiserror"
2621
+ version = "1.0.69"
2622
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2623
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
2624
+ dependencies = [
2625
+ "thiserror-impl 1.0.69",
2626
+ ]
2627
+
2628
+ [[package]]
2629
+ name = "thiserror"
2630
+ version = "2.0.17"
2631
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2632
+ checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8"
2633
+ dependencies = [
2634
+ "thiserror-impl 2.0.17",
2635
+ ]
2636
+
2637
+ [[package]]
2638
+ name = "thiserror-impl"
2639
+ version = "1.0.69"
2640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2641
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
2642
+ dependencies = [
2643
+ "proc-macro2",
2644
+ "quote",
2645
+ "syn",
2646
+ ]
2647
+
2648
+ [[package]]
2649
+ name = "thiserror-impl"
2650
+ version = "2.0.17"
2651
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2652
+ checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913"
2653
+ dependencies = [
2654
+ "proc-macro2",
2655
+ "quote",
2656
+ "syn",
2657
+ ]
2658
+
2659
+ [[package]]
2660
+ name = "thread_local"
2661
+ version = "1.1.9"
2662
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2663
+ checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
2664
+ dependencies = [
2665
+ "cfg-if 1.0.4",
2666
+ ]
2667
+
2668
+ [[package]]
2669
+ name = "tiny-keccak"
2670
+ version = "2.0.2"
2671
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2672
+ checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
2673
+ dependencies = [
2674
+ "crunchy",
2675
+ ]
2676
+
2677
+ [[package]]
2678
+ name = "tinystr"
2679
+ version = "0.8.2"
2680
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2681
+ checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
2682
+ dependencies = [
2683
+ "displaydoc",
2684
+ "zerovec",
2685
+ ]
2686
+
2687
+ [[package]]
2688
+ name = "tinytemplate"
2689
+ version = "1.2.1"
2690
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2691
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
2692
+ dependencies = [
2693
+ "serde",
2694
+ "serde_json",
2695
+ ]
2696
+
2697
+ [[package]]
2698
+ name = "tokio"
2699
+ version = "1.48.0"
2700
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2701
+ checksum = "ff360e02eab121e0bc37a2d3b4d4dc622e6eda3a8e5253d5435ecf5bd4c68408"
2702
+ dependencies = [
2703
+ "bytes",
2704
+ "libc",
2705
+ "mio",
2706
+ "parking_lot",
2707
+ "pin-project-lite",
2708
+ "signal-hook-registry",
2709
+ "socket2 0.6.1",
2710
+ "tokio-macros",
2711
+ "windows-sys 0.61.2",
2712
+ ]
2713
+
2714
+ [[package]]
2715
+ name = "tokio-macros"
2716
+ version = "2.6.0"
2717
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2718
+ checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5"
2719
+ dependencies = [
2720
+ "proc-macro2",
2721
+ "quote",
2722
+ "syn",
2723
+ ]
2724
+
2725
+ [[package]]
2726
+ name = "tokio-native-tls"
2727
+ version = "0.3.1"
2728
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2729
+ checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
2730
+ dependencies = [
2731
+ "native-tls",
2732
+ "tokio",
2733
+ ]
2734
+
2735
+ [[package]]
2736
+ name = "tokio-stream"
2737
+ version = "0.1.17"
2738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2739
+ checksum = "eca58d7bba4a75707817a2c44174253f9236b2d5fbd055602e9d5c07c139a047"
2740
+ dependencies = [
2741
+ "futures-core",
2742
+ "pin-project-lite",
2743
+ "tokio",
2744
+ ]
2745
+
2746
+ [[package]]
2747
+ name = "tokio-test"
2748
+ version = "0.4.4"
2749
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2750
+ checksum = "2468baabc3311435b55dd935f702f42cd1b8abb7e754fb7dfb16bd36aa88f9f7"
2751
+ dependencies = [
2752
+ "async-stream",
2753
+ "bytes",
2754
+ "futures-core",
2755
+ "tokio",
2756
+ "tokio-stream",
2757
+ ]
2758
+
2759
+ [[package]]
2760
+ name = "tokio-util"
2761
+ version = "0.7.17"
2762
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2763
+ checksum = "2efa149fe76073d6e8fd97ef4f4eca7b67f599660115591483572e406e165594"
2764
+ dependencies = [
2765
+ "bytes",
2766
+ "futures-core",
2767
+ "futures-sink",
2768
+ "pin-project-lite",
2769
+ "tokio",
2770
+ ]
2771
+
2772
+ [[package]]
2773
+ name = "toml"
2774
+ version = "0.8.23"
2775
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2776
+ checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
2777
+ dependencies = [
2778
+ "serde",
2779
+ "serde_spanned",
2780
+ "toml_datetime",
2781
+ "toml_edit",
2782
+ ]
2783
+
2784
+ [[package]]
2785
+ name = "toml_datetime"
2786
+ version = "0.6.11"
2787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2788
+ checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
2789
+ dependencies = [
2790
+ "serde",
2791
+ ]
2792
+
2793
+ [[package]]
2794
+ name = "toml_edit"
2795
+ version = "0.22.27"
2796
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2797
+ checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
2798
+ dependencies = [
2799
+ "indexmap",
2800
+ "serde",
2801
+ "serde_spanned",
2802
+ "toml_datetime",
2803
+ "toml_write",
2804
+ "winnow",
2805
+ ]
2806
+
2807
+ [[package]]
2808
+ name = "toml_write"
2809
+ version = "0.1.2"
2810
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2811
+ checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
2812
+
2813
+ [[package]]
2814
+ name = "tower"
2815
+ version = "0.5.2"
2816
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2817
+ checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9"
2818
+ dependencies = [
2819
+ "futures-core",
2820
+ "futures-util",
2821
+ "pin-project-lite",
2822
+ "sync_wrapper 1.0.2",
2823
+ "tokio",
2824
+ "tower-layer",
2825
+ "tower-service",
2826
+ "tracing",
2827
+ ]
2828
+
2829
+ [[package]]
2830
+ name = "tower-http"
2831
+ version = "0.6.8"
2832
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2833
+ checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
2834
+ dependencies = [
2835
+ "bitflags 2.10.0",
2836
+ "bytes",
2837
+ "http 1.4.0",
2838
+ "http-body 1.0.1",
2839
+ "pin-project-lite",
2840
+ "tower-layer",
2841
+ "tower-service",
2842
+ "tracing",
2843
+ ]
2844
+
2845
+ [[package]]
2846
+ name = "tower-layer"
2847
+ version = "0.3.3"
2848
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2849
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
2850
+
2851
+ [[package]]
2852
+ name = "tower-service"
2853
+ version = "0.3.3"
2854
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2855
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
2856
+
2857
+ [[package]]
2858
+ name = "tracing"
2859
+ version = "0.1.44"
2860
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2861
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
2862
+ dependencies = [
2863
+ "log",
2864
+ "pin-project-lite",
2865
+ "tracing-attributes",
2866
+ "tracing-core",
2867
+ ]
2868
+
2869
+ [[package]]
2870
+ name = "tracing-attributes"
2871
+ version = "0.1.31"
2872
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2873
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
2874
+ dependencies = [
2875
+ "proc-macro2",
2876
+ "quote",
2877
+ "syn",
2878
+ ]
2879
+
2880
+ [[package]]
2881
+ name = "tracing-core"
2882
+ version = "0.1.36"
2883
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2884
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
2885
+ dependencies = [
2886
+ "once_cell",
2887
+ "valuable",
2888
+ ]
2889
+
2890
+ [[package]]
2891
+ name = "tracing-log"
2892
+ version = "0.2.0"
2893
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2894
+ checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
2895
+ dependencies = [
2896
+ "log",
2897
+ "once_cell",
2898
+ "tracing-core",
2899
+ ]
2900
+
2901
+ [[package]]
2902
+ name = "tracing-subscriber"
2903
+ version = "0.3.22"
2904
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2905
+ checksum = "2f30143827ddab0d256fd843b7a66d164e9f271cfa0dde49142c5ca0ca291f1e"
2906
+ dependencies = [
2907
+ "matchers",
2908
+ "nu-ansi-term",
2909
+ "once_cell",
2910
+ "regex-automata",
2911
+ "sharded-slab",
2912
+ "smallvec",
2913
+ "thread_local",
2914
+ "tracing",
2915
+ "tracing-core",
2916
+ "tracing-log",
2917
+ ]
2918
+
2919
+ [[package]]
2920
+ name = "try-lock"
2921
+ version = "0.2.5"
2922
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2923
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
2924
+
2925
+ [[package]]
2926
+ name = "typenum"
2927
+ version = "1.19.0"
2928
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2929
+ checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
2930
+
2931
+ [[package]]
2932
+ name = "ucd-trie"
2933
+ version = "0.1.7"
2934
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2935
+ checksum = "2896d95c02a80c6d6a5d6e953d479f5ddf2dfdb6a244441010e373ac0fb88971"
2936
+
2937
+ [[package]]
2938
+ name = "unarray"
2939
+ version = "0.1.4"
2940
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2941
+ checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
2942
+
2943
+ [[package]]
2944
+ name = "unicode-ident"
2945
+ version = "1.0.22"
2946
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2947
+ checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
2948
+
2949
+ [[package]]
2950
+ name = "unicode-segmentation"
2951
+ version = "1.12.0"
2952
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2953
+ checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
2954
+
2955
+ [[package]]
2956
+ name = "unicode-width"
2957
+ version = "0.1.14"
2958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2959
+ checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
2960
+
2961
+ [[package]]
2962
+ name = "unicode-width"
2963
+ version = "0.2.2"
2964
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2965
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
2966
+
2967
+ [[package]]
2968
+ name = "unindent"
2969
+ version = "0.2.4"
2970
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2971
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
2972
+
2973
+ [[package]]
2974
+ name = "url"
2975
+ version = "2.5.7"
2976
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2977
+ checksum = "08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b"
2978
+ dependencies = [
2979
+ "form_urlencoded",
2980
+ "idna",
2981
+ "percent-encoding",
2982
+ "serde",
2983
+ ]
2984
+
2985
+ [[package]]
2986
+ name = "utf8_iter"
2987
+ version = "1.0.4"
2988
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2989
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
2990
+
2991
+ [[package]]
2992
+ name = "utf8parse"
2993
+ version = "0.2.2"
2994
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2995
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
2996
+
2997
+ [[package]]
2998
+ name = "uuid"
2999
+ version = "1.19.0"
3000
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3001
+ checksum = "e2e054861b4bd027cd373e18e8d8d8e6548085000e41290d95ce0c373a654b4a"
3002
+ dependencies = [
3003
+ "getrandom 0.3.4",
3004
+ "js-sys",
3005
+ "serde_core",
3006
+ "wasm-bindgen",
3007
+ ]
3008
+
3009
+ [[package]]
3010
+ name = "valuable"
3011
+ version = "0.1.1"
3012
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3013
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
3014
+
3015
+ [[package]]
3016
+ name = "vcpkg"
3017
+ version = "0.2.15"
3018
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3019
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
3020
+
3021
+ [[package]]
3022
+ name = "velesdb-cli"
3023
+ version = "0.1.1"
3024
+ dependencies = [
3025
+ "anyhow",
3026
+ "clap",
3027
+ "colored",
3028
+ "comfy-table",
3029
+ "dirs",
3030
+ "instant",
3031
+ "rustyline",
3032
+ "serde_json",
3033
+ "thiserror 2.0.17",
3034
+ "velesdb-core",
3035
+ ]
3036
+
3037
+ [[package]]
3038
+ name = "velesdb-core"
3039
+ version = "0.1.1"
3040
+ dependencies = [
3041
+ "anyhow",
3042
+ "bincode",
3043
+ "bytes",
3044
+ "criterion",
3045
+ "crossbeam-channel",
3046
+ "hnsw_rs",
3047
+ "memmap2",
3048
+ "parking_lot",
3049
+ "pest",
3050
+ "pest_derive",
3051
+ "proptest",
3052
+ "rayon",
3053
+ "roaring",
3054
+ "rustc-hash",
3055
+ "serde",
3056
+ "serde_json",
3057
+ "tempfile",
3058
+ "thiserror 2.0.17",
3059
+ "tokio",
3060
+ "tokio-test",
3061
+ "tracing",
3062
+ "uuid",
3063
+ ]
3064
+
3065
+ [[package]]
3066
+ name = "velesdb-python"
3067
+ version = "0.1.1"
3068
+ dependencies = [
3069
+ "numpy",
3070
+ "pyo3",
3071
+ "pyo3-build-config",
3072
+ "serde_json",
3073
+ "velesdb-core",
3074
+ ]
3075
+
3076
+ [[package]]
3077
+ name = "velesdb-server"
3078
+ version = "0.1.1"
3079
+ dependencies = [
3080
+ "anyhow",
3081
+ "axum",
3082
+ "clap",
3083
+ "config",
3084
+ "reqwest",
3085
+ "serde",
3086
+ "serde_json",
3087
+ "tempfile",
3088
+ "thiserror 2.0.17",
3089
+ "tokio",
3090
+ "tokio-test",
3091
+ "tower",
3092
+ "tower-http",
3093
+ "tracing",
3094
+ "tracing-subscriber",
3095
+ "velesdb-core",
3096
+ ]
3097
+
3098
+ [[package]]
3099
+ name = "version_check"
3100
+ version = "0.9.5"
3101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3102
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
3103
+
3104
+ [[package]]
3105
+ name = "wait-timeout"
3106
+ version = "0.2.1"
3107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3108
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
3109
+ dependencies = [
3110
+ "libc",
3111
+ ]
3112
+
3113
+ [[package]]
3114
+ name = "walkdir"
3115
+ version = "2.5.0"
3116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3117
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
3118
+ dependencies = [
3119
+ "same-file",
3120
+ "winapi-util",
3121
+ ]
3122
+
3123
+ [[package]]
3124
+ name = "want"
3125
+ version = "0.3.1"
3126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3127
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
3128
+ dependencies = [
3129
+ "try-lock",
3130
+ ]
3131
+
3132
+ [[package]]
3133
+ name = "wasi"
3134
+ version = "0.11.1+wasi-snapshot-preview1"
3135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3136
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
3137
+
3138
+ [[package]]
3139
+ name = "wasip2"
3140
+ version = "1.0.1+wasi-0.2.4"
3141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3142
+ checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
3143
+ dependencies = [
3144
+ "wit-bindgen",
3145
+ ]
3146
+
3147
+ [[package]]
3148
+ name = "wasm-bindgen"
3149
+ version = "0.2.106"
3150
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3151
+ checksum = "0d759f433fa64a2d763d1340820e46e111a7a5ab75f993d1852d70b03dbb80fd"
3152
+ dependencies = [
3153
+ "cfg-if 1.0.4",
3154
+ "once_cell",
3155
+ "rustversion",
3156
+ "wasm-bindgen-macro",
3157
+ "wasm-bindgen-shared",
3158
+ ]
3159
+
3160
+ [[package]]
3161
+ name = "wasm-bindgen-futures"
3162
+ version = "0.4.56"
3163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3164
+ checksum = "836d9622d604feee9e5de25ac10e3ea5f2d65b41eac0d9ce72eb5deae707ce7c"
3165
+ dependencies = [
3166
+ "cfg-if 1.0.4",
3167
+ "js-sys",
3168
+ "once_cell",
3169
+ "wasm-bindgen",
3170
+ "web-sys",
3171
+ ]
3172
+
3173
+ [[package]]
3174
+ name = "wasm-bindgen-macro"
3175
+ version = "0.2.106"
3176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3177
+ checksum = "48cb0d2638f8baedbc542ed444afc0644a29166f1595371af4fecf8ce1e7eeb3"
3178
+ dependencies = [
3179
+ "quote",
3180
+ "wasm-bindgen-macro-support",
3181
+ ]
3182
+
3183
+ [[package]]
3184
+ name = "wasm-bindgen-macro-support"
3185
+ version = "0.2.106"
3186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3187
+ checksum = "cefb59d5cd5f92d9dcf80e4683949f15ca4b511f4ac0a6e14d4e1ac60c6ecd40"
3188
+ dependencies = [
3189
+ "bumpalo",
3190
+ "proc-macro2",
3191
+ "quote",
3192
+ "syn",
3193
+ "wasm-bindgen-shared",
3194
+ ]
3195
+
3196
+ [[package]]
3197
+ name = "wasm-bindgen-shared"
3198
+ version = "0.2.106"
3199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3200
+ checksum = "cbc538057e648b67f72a982e708d485b2efa771e1ac05fec311f9f63e5800db4"
3201
+ dependencies = [
3202
+ "unicode-ident",
3203
+ ]
3204
+
3205
+ [[package]]
3206
+ name = "web-sys"
3207
+ version = "0.3.83"
3208
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3209
+ checksum = "9b32828d774c412041098d182a8b38b16ea816958e07cf40eec2bc080ae137ac"
3210
+ dependencies = [
3211
+ "js-sys",
3212
+ "wasm-bindgen",
3213
+ ]
3214
+
3215
+ [[package]]
3216
+ name = "widestring"
3217
+ version = "1.2.1"
3218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3219
+ checksum = "72069c3113ab32ab29e5584db3c6ec55d416895e60715417b5b883a357c3e471"
3220
+
3221
+ [[package]]
3222
+ name = "winapi"
3223
+ version = "0.3.9"
3224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3225
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
3226
+ dependencies = [
3227
+ "winapi-i686-pc-windows-gnu",
3228
+ "winapi-x86_64-pc-windows-gnu",
3229
+ ]
3230
+
3231
+ [[package]]
3232
+ name = "winapi-i686-pc-windows-gnu"
3233
+ version = "0.4.0"
3234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3235
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
3236
+
3237
+ [[package]]
3238
+ name = "winapi-util"
3239
+ version = "0.1.11"
3240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3241
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
3242
+ dependencies = [
3243
+ "windows-sys 0.61.2",
3244
+ ]
3245
+
3246
+ [[package]]
3247
+ name = "winapi-x86_64-pc-windows-gnu"
3248
+ version = "0.4.0"
3249
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3250
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
3251
+
3252
+ [[package]]
3253
+ name = "windows"
3254
+ version = "0.48.0"
3255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3256
+ checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f"
3257
+ dependencies = [
3258
+ "windows-targets 0.48.5",
3259
+ ]
3260
+
3261
+ [[package]]
3262
+ name = "windows-link"
3263
+ version = "0.2.1"
3264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3265
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
3266
+
3267
+ [[package]]
3268
+ name = "windows-sys"
3269
+ version = "0.48.0"
3270
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3271
+ checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
3272
+ dependencies = [
3273
+ "windows-targets 0.48.5",
3274
+ ]
3275
+
3276
+ [[package]]
3277
+ name = "windows-sys"
3278
+ version = "0.52.0"
3279
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3280
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
3281
+ dependencies = [
3282
+ "windows-targets 0.52.6",
3283
+ ]
3284
+
3285
+ [[package]]
3286
+ name = "windows-sys"
3287
+ version = "0.60.2"
3288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3289
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
3290
+ dependencies = [
3291
+ "windows-targets 0.53.5",
3292
+ ]
3293
+
3294
+ [[package]]
3295
+ name = "windows-sys"
3296
+ version = "0.61.2"
3297
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3298
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
3299
+ dependencies = [
3300
+ "windows-link",
3301
+ ]
3302
+
3303
+ [[package]]
3304
+ name = "windows-targets"
3305
+ version = "0.48.5"
3306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3307
+ checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
3308
+ dependencies = [
3309
+ "windows_aarch64_gnullvm 0.48.5",
3310
+ "windows_aarch64_msvc 0.48.5",
3311
+ "windows_i686_gnu 0.48.5",
3312
+ "windows_i686_msvc 0.48.5",
3313
+ "windows_x86_64_gnu 0.48.5",
3314
+ "windows_x86_64_gnullvm 0.48.5",
3315
+ "windows_x86_64_msvc 0.48.5",
3316
+ ]
3317
+
3318
+ [[package]]
3319
+ name = "windows-targets"
3320
+ version = "0.52.6"
3321
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3322
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
3323
+ dependencies = [
3324
+ "windows_aarch64_gnullvm 0.52.6",
3325
+ "windows_aarch64_msvc 0.52.6",
3326
+ "windows_i686_gnu 0.52.6",
3327
+ "windows_i686_gnullvm 0.52.6",
3328
+ "windows_i686_msvc 0.52.6",
3329
+ "windows_x86_64_gnu 0.52.6",
3330
+ "windows_x86_64_gnullvm 0.52.6",
3331
+ "windows_x86_64_msvc 0.52.6",
3332
+ ]
3333
+
3334
+ [[package]]
3335
+ name = "windows-targets"
3336
+ version = "0.53.5"
3337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3338
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
3339
+ dependencies = [
3340
+ "windows-link",
3341
+ "windows_aarch64_gnullvm 0.53.1",
3342
+ "windows_aarch64_msvc 0.53.1",
3343
+ "windows_i686_gnu 0.53.1",
3344
+ "windows_i686_gnullvm 0.53.1",
3345
+ "windows_i686_msvc 0.53.1",
3346
+ "windows_x86_64_gnu 0.53.1",
3347
+ "windows_x86_64_gnullvm 0.53.1",
3348
+ "windows_x86_64_msvc 0.53.1",
3349
+ ]
3350
+
3351
+ [[package]]
3352
+ name = "windows_aarch64_gnullvm"
3353
+ version = "0.48.5"
3354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3355
+ checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
3356
+
3357
+ [[package]]
3358
+ name = "windows_aarch64_gnullvm"
3359
+ version = "0.52.6"
3360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3361
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
3362
+
3363
+ [[package]]
3364
+ name = "windows_aarch64_gnullvm"
3365
+ version = "0.53.1"
3366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3367
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
3368
+
3369
+ [[package]]
3370
+ name = "windows_aarch64_msvc"
3371
+ version = "0.48.5"
3372
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3373
+ checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
3374
+
3375
+ [[package]]
3376
+ name = "windows_aarch64_msvc"
3377
+ version = "0.52.6"
3378
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3379
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
3380
+
3381
+ [[package]]
3382
+ name = "windows_aarch64_msvc"
3383
+ version = "0.53.1"
3384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3385
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
3386
+
3387
+ [[package]]
3388
+ name = "windows_i686_gnu"
3389
+ version = "0.48.5"
3390
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3391
+ checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
3392
+
3393
+ [[package]]
3394
+ name = "windows_i686_gnu"
3395
+ version = "0.52.6"
3396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3397
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
3398
+
3399
+ [[package]]
3400
+ name = "windows_i686_gnu"
3401
+ version = "0.53.1"
3402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3403
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
3404
+
3405
+ [[package]]
3406
+ name = "windows_i686_gnullvm"
3407
+ version = "0.52.6"
3408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3409
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
3410
+
3411
+ [[package]]
3412
+ name = "windows_i686_gnullvm"
3413
+ version = "0.53.1"
3414
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3415
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
3416
+
3417
+ [[package]]
3418
+ name = "windows_i686_msvc"
3419
+ version = "0.48.5"
3420
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3421
+ checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
3422
+
3423
+ [[package]]
3424
+ name = "windows_i686_msvc"
3425
+ version = "0.52.6"
3426
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3427
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
3428
+
3429
+ [[package]]
3430
+ name = "windows_i686_msvc"
3431
+ version = "0.53.1"
3432
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3433
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
3434
+
3435
+ [[package]]
3436
+ name = "windows_x86_64_gnu"
3437
+ version = "0.48.5"
3438
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3439
+ checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
3440
+
3441
+ [[package]]
3442
+ name = "windows_x86_64_gnu"
3443
+ version = "0.52.6"
3444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3445
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
3446
+
3447
+ [[package]]
3448
+ name = "windows_x86_64_gnu"
3449
+ version = "0.53.1"
3450
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3451
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
3452
+
3453
+ [[package]]
3454
+ name = "windows_x86_64_gnullvm"
3455
+ version = "0.48.5"
3456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3457
+ checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
3458
+
3459
+ [[package]]
3460
+ name = "windows_x86_64_gnullvm"
3461
+ version = "0.52.6"
3462
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3463
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
3464
+
3465
+ [[package]]
3466
+ name = "windows_x86_64_gnullvm"
3467
+ version = "0.53.1"
3468
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3469
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
3470
+
3471
+ [[package]]
3472
+ name = "windows_x86_64_msvc"
3473
+ version = "0.48.5"
3474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3475
+ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
3476
+
3477
+ [[package]]
3478
+ name = "windows_x86_64_msvc"
3479
+ version = "0.52.6"
3480
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3481
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
3482
+
3483
+ [[package]]
3484
+ name = "windows_x86_64_msvc"
3485
+ version = "0.53.1"
3486
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3487
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
3488
+
3489
+ [[package]]
3490
+ name = "winnow"
3491
+ version = "0.7.14"
3492
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3493
+ checksum = "5a5364e9d77fcdeeaa6062ced926ee3381faa2ee02d3eb83a5c27a8825540829"
3494
+ dependencies = [
3495
+ "memchr",
3496
+ ]
3497
+
3498
+ [[package]]
3499
+ name = "winreg"
3500
+ version = "0.50.0"
3501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3502
+ checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1"
3503
+ dependencies = [
3504
+ "cfg-if 1.0.4",
3505
+ "windows-sys 0.48.0",
3506
+ ]
3507
+
3508
+ [[package]]
3509
+ name = "wit-bindgen"
3510
+ version = "0.46.0"
3511
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3512
+ checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
3513
+
3514
+ [[package]]
3515
+ name = "writeable"
3516
+ version = "0.6.2"
3517
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3518
+ checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
3519
+
3520
+ [[package]]
3521
+ name = "yaml-rust2"
3522
+ version = "0.8.1"
3523
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3524
+ checksum = "8902160c4e6f2fb145dbe9d6760a75e3c9522d8bf796ed7047c85919ac7115f8"
3525
+ dependencies = [
3526
+ "arraydeque",
3527
+ "encoding_rs",
3528
+ "hashlink",
3529
+ ]
3530
+
3531
+ [[package]]
3532
+ name = "yoke"
3533
+ version = "0.8.1"
3534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3535
+ checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
3536
+ dependencies = [
3537
+ "stable_deref_trait",
3538
+ "yoke-derive",
3539
+ "zerofrom",
3540
+ ]
3541
+
3542
+ [[package]]
3543
+ name = "yoke-derive"
3544
+ version = "0.8.1"
3545
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3546
+ checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
3547
+ dependencies = [
3548
+ "proc-macro2",
3549
+ "quote",
3550
+ "syn",
3551
+ "synstructure",
3552
+ ]
3553
+
3554
+ [[package]]
3555
+ name = "zerocopy"
3556
+ version = "0.8.31"
3557
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3558
+ checksum = "fd74ec98b9250adb3ca554bdde269adf631549f51d8a8f8f0a10b50f1cb298c3"
3559
+ dependencies = [
3560
+ "zerocopy-derive",
3561
+ ]
3562
+
3563
+ [[package]]
3564
+ name = "zerocopy-derive"
3565
+ version = "0.8.31"
3566
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3567
+ checksum = "d8a8d209fdf45cf5138cbb5a506f6b52522a25afccc534d1475dad8e31105c6a"
3568
+ dependencies = [
3569
+ "proc-macro2",
3570
+ "quote",
3571
+ "syn",
3572
+ ]
3573
+
3574
+ [[package]]
3575
+ name = "zerofrom"
3576
+ version = "0.1.6"
3577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3578
+ checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
3579
+ dependencies = [
3580
+ "zerofrom-derive",
3581
+ ]
3582
+
3583
+ [[package]]
3584
+ name = "zerofrom-derive"
3585
+ version = "0.1.6"
3586
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3587
+ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
3588
+ dependencies = [
3589
+ "proc-macro2",
3590
+ "quote",
3591
+ "syn",
3592
+ "synstructure",
3593
+ ]
3594
+
3595
+ [[package]]
3596
+ name = "zerotrie"
3597
+ version = "0.2.3"
3598
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3599
+ checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
3600
+ dependencies = [
3601
+ "displaydoc",
3602
+ "yoke",
3603
+ "zerofrom",
3604
+ ]
3605
+
3606
+ [[package]]
3607
+ name = "zerovec"
3608
+ version = "0.11.5"
3609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3610
+ checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
3611
+ dependencies = [
3612
+ "yoke",
3613
+ "zerofrom",
3614
+ "zerovec-derive",
3615
+ ]
3616
+
3617
+ [[package]]
3618
+ name = "zerovec-derive"
3619
+ version = "0.11.2"
3620
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3621
+ checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
3622
+ dependencies = [
3623
+ "proc-macro2",
3624
+ "quote",
3625
+ "syn",
3626
+ ]