mnemefusion-cpu 0.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (86) hide show
  1. mnemefusion_cpu-0.1.0/Cargo.lock +4294 -0
  2. mnemefusion_cpu-0.1.0/Cargo.toml +45 -0
  3. mnemefusion_cpu-0.1.0/PKG-INFO +252 -0
  4. mnemefusion_cpu-0.1.0/README.md +231 -0
  5. mnemefusion_cpu-0.1.0/mnemefusion-core/Cargo.toml +61 -0
  6. mnemefusion_cpu-0.1.0/mnemefusion-core/benches/core_operations.rs +234 -0
  7. mnemefusion_cpu-0.1.0/mnemefusion-core/benches/profiling.rs +154 -0
  8. mnemefusion_cpu-0.1.0/mnemefusion-core/build.rs +93 -0
  9. mnemefusion_cpu-0.1.0/mnemefusion-core/examples/basic_usage.rs +226 -0
  10. mnemefusion_cpu-0.1.0/mnemefusion-core/src/config.rs +872 -0
  11. mnemefusion_cpu-0.1.0/mnemefusion-core/src/embedding/engine.rs +139 -0
  12. mnemefusion_cpu-0.1.0/mnemefusion-core/src/embedding/mod.rs +11 -0
  13. mnemefusion_cpu-0.1.0/mnemefusion-core/src/error.rs +390 -0
  14. mnemefusion_cpu-0.1.0/mnemefusion-core/src/extraction/extractor.rs +923 -0
  15. mnemefusion_cpu-0.1.0/mnemefusion-core/src/extraction/mod.rs +39 -0
  16. mnemefusion_cpu-0.1.0/mnemefusion-core/src/extraction/output.rs +359 -0
  17. mnemefusion_cpu-0.1.0/mnemefusion-core/src/extraction/prompt.rs +882 -0
  18. mnemefusion_cpu-0.1.0/mnemefusion-core/src/extraction/triplex.rs +559 -0
  19. mnemefusion_cpu-0.1.0/mnemefusion-core/src/graph/causal.rs +616 -0
  20. mnemefusion_cpu-0.1.0/mnemefusion-core/src/graph/entity.rs +535 -0
  21. mnemefusion_cpu-0.1.0/mnemefusion-core/src/graph/mod.rs +12 -0
  22. mnemefusion_cpu-0.1.0/mnemefusion-core/src/graph/persist.rs +555 -0
  23. mnemefusion_cpu-0.1.0/mnemefusion-core/src/index/bm25.rs +685 -0
  24. mnemefusion_cpu-0.1.0/mnemefusion-core/src/index/mod.rs +14 -0
  25. mnemefusion_cpu-0.1.0/mnemefusion-core/src/index/temporal.rs +665 -0
  26. mnemefusion_cpu-0.1.0/mnemefusion-core/src/index/vector.rs +685 -0
  27. mnemefusion_cpu-0.1.0/mnemefusion-core/src/inference/engine.rs +720 -0
  28. mnemefusion_cpu-0.1.0/mnemefusion-core/src/inference/grammar.rs +115 -0
  29. mnemefusion_cpu-0.1.0/mnemefusion-core/src/inference/mod.rs +32 -0
  30. mnemefusion_cpu-0.1.0/mnemefusion-core/src/ingest/causal_extractor.rs +375 -0
  31. mnemefusion_cpu-0.1.0/mnemefusion-core/src/ingest/entity_extractor.rs +566 -0
  32. mnemefusion_cpu-0.1.0/mnemefusion-core/src/ingest/mod.rs +33 -0
  33. mnemefusion_cpu-0.1.0/mnemefusion-core/src/ingest/pipeline.rs +3175 -0
  34. mnemefusion_cpu-0.1.0/mnemefusion-core/src/ingest/slm_extractor.rs +918 -0
  35. mnemefusion_cpu-0.1.0/mnemefusion-core/src/ingest/temporal_extractor.rs +473 -0
  36. mnemefusion_cpu-0.1.0/mnemefusion-core/src/lib.rs +112 -0
  37. mnemefusion_cpu-0.1.0/mnemefusion-core/src/memory.rs +3836 -0
  38. mnemefusion_cpu-0.1.0/mnemefusion-core/src/query/aggregator.rs +468 -0
  39. mnemefusion_cpu-0.1.0/mnemefusion-core/src/query/fusion.rs +990 -0
  40. mnemefusion_cpu-0.1.0/mnemefusion-core/src/query/graph_traversal.rs +340 -0
  41. mnemefusion_cpu-0.1.0/mnemefusion-core/src/query/intent.rs +477 -0
  42. mnemefusion_cpu-0.1.0/mnemefusion-core/src/query/mod.rs +25 -0
  43. mnemefusion_cpu-0.1.0/mnemefusion-core/src/query/planner.rs +3871 -0
  44. mnemefusion_cpu-0.1.0/mnemefusion-core/src/query/profile_search.rs +1030 -0
  45. mnemefusion_cpu-0.1.0/mnemefusion-core/src/query/reranker.rs +338 -0
  46. mnemefusion_cpu-0.1.0/mnemefusion-core/src/slm/MANUAL_SETUP.md +282 -0
  47. mnemefusion_cpu-0.1.0/mnemefusion-core/src/slm/QUICKSTART.md +146 -0
  48. mnemefusion_cpu-0.1.0/mnemefusion-core/src/slm/README.md +183 -0
  49. mnemefusion_cpu-0.1.0/mnemefusion-core/src/slm/classifier.rs +460 -0
  50. mnemefusion_cpu-0.1.0/mnemefusion-core/src/slm/config.rs +199 -0
  51. mnemefusion_cpu-0.1.0/mnemefusion-core/src/slm/mod.rs +79 -0
  52. mnemefusion_cpu-0.1.0/mnemefusion-core/src/slm/tests.rs +298 -0
  53. mnemefusion_cpu-0.1.0/mnemefusion-core/src/storage/engine.rs +2079 -0
  54. mnemefusion_cpu-0.1.0/mnemefusion-core/src/storage/format.rs +315 -0
  55. mnemefusion_cpu-0.1.0/mnemefusion-core/src/storage/mod.rs +9 -0
  56. mnemefusion_cpu-0.1.0/mnemefusion-core/src/types/batch.rs +336 -0
  57. mnemefusion_cpu-0.1.0/mnemefusion-core/src/types/dedup.rs +204 -0
  58. mnemefusion_cpu-0.1.0/mnemefusion-core/src/types/entity.rs +226 -0
  59. mnemefusion_cpu-0.1.0/mnemefusion-core/src/types/filter.rs +230 -0
  60. mnemefusion_cpu-0.1.0/mnemefusion-core/src/types/memory.rs +512 -0
  61. mnemefusion_cpu-0.1.0/mnemefusion-core/src/types/mod.rs +21 -0
  62. mnemefusion_cpu-0.1.0/mnemefusion-core/src/types/profile.rs +1124 -0
  63. mnemefusion_cpu-0.1.0/mnemefusion-core/src/types/source.rs +339 -0
  64. mnemefusion_cpu-0.1.0/mnemefusion-core/src/types/timestamp.rs +324 -0
  65. mnemefusion_cpu-0.1.0/mnemefusion-core/src/util/hash.rs +117 -0
  66. mnemefusion_cpu-0.1.0/mnemefusion-core/src/util/mod.rs +3 -0
  67. mnemefusion_cpu-0.1.0/mnemefusion-core/tests/custom/causal_tests.rs +2198 -0
  68. mnemefusion_cpu-0.1.0/mnemefusion-core/tests/custom/entity_tests.rs +1700 -0
  69. mnemefusion_cpu-0.1.0/mnemefusion-core/tests/custom/fusion_tests.rs +449 -0
  70. mnemefusion_cpu-0.1.0/mnemefusion-core/tests/custom/intent_tests.rs +446 -0
  71. mnemefusion_cpu-0.1.0/mnemefusion-core/tests/custom/mod.rs +31 -0
  72. mnemefusion_cpu-0.1.0/mnemefusion-core/tests/custom/temporal_tests.rs +1236 -0
  73. mnemefusion_cpu-0.1.0/mnemefusion-core/tests/custom/test_data_format.md +253 -0
  74. mnemefusion_cpu-0.1.0/mnemefusion-core/tests/custom/test_utils.rs +396 -0
  75. mnemefusion_cpu-0.1.0/mnemefusion-core/tests/custom.rs +8 -0
  76. mnemefusion_cpu-0.1.0/mnemefusion-core/tests/integration_test.rs +1149 -0
  77. mnemefusion_cpu-0.1.0/mnemefusion-core/tests/property_tests.rs +939 -0
  78. mnemefusion_cpu-0.1.0/mnemefusion-python/Cargo.toml +35 -0
  79. mnemefusion_cpu-0.1.0/mnemefusion-python/README.md +231 -0
  80. mnemefusion_cpu-0.1.0/mnemefusion-python/build.rs +96 -0
  81. mnemefusion_cpu-0.1.0/mnemefusion-python/examples/basic_usage.py +169 -0
  82. mnemefusion_cpu-0.1.0/mnemefusion-python/pytest.ini +6 -0
  83. mnemefusion_cpu-0.1.0/mnemefusion-python/src/lib.rs +2221 -0
  84. mnemefusion_cpu-0.1.0/mnemefusion-python/tests/__init__.py +1 -0
  85. mnemefusion_cpu-0.1.0/mnemefusion-python/tests/test_mnemefusion.py +386 -0
  86. mnemefusion_cpu-0.1.0/pyproject.toml +33 -0
@@ -0,0 +1,4294 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "adler2"
7
+ version = "2.0.1"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
10
+
11
+ [[package]]
12
+ name = "ahash"
13
+ version = "0.8.12"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
16
+ dependencies = [
17
+ "cfg-if",
18
+ "getrandom 0.3.4",
19
+ "once_cell",
20
+ "serde",
21
+ "version_check",
22
+ "zerocopy",
23
+ ]
24
+
25
+ [[package]]
26
+ name = "aho-corasick"
27
+ version = "1.1.4"
28
+ source = "registry+https://github.com/rust-lang/crates.io-index"
29
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
30
+ dependencies = [
31
+ "memchr",
32
+ ]
33
+
34
+ [[package]]
35
+ name = "aligned"
36
+ version = "0.4.3"
37
+ source = "registry+https://github.com/rust-lang/crates.io-index"
38
+ checksum = "ee4508988c62edf04abd8d92897fca0c2995d907ce1dfeaf369dac3716a40685"
39
+ dependencies = [
40
+ "as-slice",
41
+ ]
42
+
43
+ [[package]]
44
+ name = "aligned-vec"
45
+ version = "0.6.4"
46
+ source = "registry+https://github.com/rust-lang/crates.io-index"
47
+ checksum = "dc890384c8602f339876ded803c97ad529f3842aba97f6392b3dba0dd171769b"
48
+ dependencies = [
49
+ "equator",
50
+ ]
51
+
52
+ [[package]]
53
+ name = "alloca"
54
+ version = "0.4.0"
55
+ source = "registry+https://github.com/rust-lang/crates.io-index"
56
+ checksum = "e5a7d05ea6aea7e9e64d25b9156ba2fee3fdd659e34e41063cd2fc7cd020d7f4"
57
+ dependencies = [
58
+ "cc",
59
+ ]
60
+
61
+ [[package]]
62
+ name = "anes"
63
+ version = "0.1.6"
64
+ source = "registry+https://github.com/rust-lang/crates.io-index"
65
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
66
+
67
+ [[package]]
68
+ name = "anstyle"
69
+ version = "1.0.14"
70
+ source = "registry+https://github.com/rust-lang/crates.io-index"
71
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
72
+
73
+ [[package]]
74
+ name = "anyhow"
75
+ version = "1.0.102"
76
+ source = "registry+https://github.com/rust-lang/crates.io-index"
77
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
78
+
79
+ [[package]]
80
+ name = "arbitrary"
81
+ version = "1.4.2"
82
+ source = "registry+https://github.com/rust-lang/crates.io-index"
83
+ checksum = "c3d036a3c4ab069c7b410a2ce876bd74808d2d0888a82667669f8e783a898bf1"
84
+
85
+ [[package]]
86
+ name = "arg_enum_proc_macro"
87
+ version = "0.3.4"
88
+ source = "registry+https://github.com/rust-lang/crates.io-index"
89
+ checksum = "0ae92a5119aa49cdbcf6b9f893fe4e1d98b04ccbf82ee0584ad948a44a734dea"
90
+ dependencies = [
91
+ "proc-macro2",
92
+ "quote",
93
+ "syn",
94
+ ]
95
+
96
+ [[package]]
97
+ name = "arrayvec"
98
+ version = "0.7.6"
99
+ source = "registry+https://github.com/rust-lang/crates.io-index"
100
+ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
101
+
102
+ [[package]]
103
+ name = "as-slice"
104
+ version = "0.2.1"
105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
106
+ checksum = "516b6b4f0e40d50dcda9365d53964ec74560ad4284da2e7fc97122cd83174516"
107
+ dependencies = [
108
+ "stable_deref_trait",
109
+ ]
110
+
111
+ [[package]]
112
+ name = "atomic-waker"
113
+ version = "1.1.2"
114
+ source = "registry+https://github.com/rust-lang/crates.io-index"
115
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
116
+
117
+ [[package]]
118
+ name = "autocfg"
119
+ version = "1.5.0"
120
+ source = "registry+https://github.com/rust-lang/crates.io-index"
121
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
122
+
123
+ [[package]]
124
+ name = "av-scenechange"
125
+ version = "0.14.1"
126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
127
+ checksum = "0f321d77c20e19b92c39e7471cf986812cbb46659d2af674adc4331ef3f18394"
128
+ dependencies = [
129
+ "aligned",
130
+ "anyhow",
131
+ "arg_enum_proc_macro",
132
+ "arrayvec",
133
+ "log",
134
+ "num-rational",
135
+ "num-traits",
136
+ "pastey",
137
+ "rayon",
138
+ "thiserror",
139
+ "v_frame",
140
+ "y4m",
141
+ ]
142
+
143
+ [[package]]
144
+ name = "av1-grain"
145
+ version = "0.2.5"
146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
147
+ checksum = "8cfddb07216410377231960af4fcab838eaa12e013417781b78bd95ee22077f8"
148
+ dependencies = [
149
+ "anyhow",
150
+ "arrayvec",
151
+ "log",
152
+ "nom 8.0.0",
153
+ "num-rational",
154
+ "v_frame",
155
+ ]
156
+
157
+ [[package]]
158
+ name = "avif-serialize"
159
+ version = "0.8.8"
160
+ source = "registry+https://github.com/rust-lang/crates.io-index"
161
+ checksum = "375082f007bd67184fb9c0374614b29f9aaa604ec301635f72338bb65386a53d"
162
+ dependencies = [
163
+ "arrayvec",
164
+ ]
165
+
166
+ [[package]]
167
+ name = "base64"
168
+ version = "0.13.1"
169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
170
+ checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
171
+
172
+ [[package]]
173
+ name = "base64"
174
+ version = "0.22.1"
175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
176
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
177
+
178
+ [[package]]
179
+ name = "bindgen"
180
+ version = "0.72.1"
181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
182
+ checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895"
183
+ dependencies = [
184
+ "bitflags",
185
+ "cexpr",
186
+ "clang-sys",
187
+ "itertools 0.13.0",
188
+ "log",
189
+ "prettyplease",
190
+ "proc-macro2",
191
+ "quote",
192
+ "regex",
193
+ "rustc-hash",
194
+ "shlex",
195
+ "syn",
196
+ ]
197
+
198
+ [[package]]
199
+ name = "bit-set"
200
+ version = "0.8.0"
201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
202
+ checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
203
+ dependencies = [
204
+ "bit-vec",
205
+ ]
206
+
207
+ [[package]]
208
+ name = "bit-vec"
209
+ version = "0.8.0"
210
+ source = "registry+https://github.com/rust-lang/crates.io-index"
211
+ checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
212
+
213
+ [[package]]
214
+ name = "bit_field"
215
+ version = "0.10.3"
216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
217
+ checksum = "1e4b40c7323adcfc0a41c4b88143ed58346ff65a288fc144329c5c45e05d70c6"
218
+
219
+ [[package]]
220
+ name = "bitflags"
221
+ version = "2.11.0"
222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
223
+ checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
224
+
225
+ [[package]]
226
+ name = "bitstream-io"
227
+ version = "4.9.0"
228
+ source = "registry+https://github.com/rust-lang/crates.io-index"
229
+ checksum = "60d4bd9d1db2c6bdf285e223a7fa369d5ce98ec767dec949c6ca62863ce61757"
230
+ dependencies = [
231
+ "core2",
232
+ ]
233
+
234
+ [[package]]
235
+ name = "block-buffer"
236
+ version = "0.10.4"
237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
238
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
239
+ dependencies = [
240
+ "generic-array",
241
+ ]
242
+
243
+ [[package]]
244
+ name = "built"
245
+ version = "0.8.0"
246
+ source = "registry+https://github.com/rust-lang/crates.io-index"
247
+ checksum = "f4ad8f11f288f48ca24471bbd51ac257aaeaaa07adae295591266b792902ae64"
248
+
249
+ [[package]]
250
+ name = "bumpalo"
251
+ version = "3.20.2"
252
+ source = "registry+https://github.com/rust-lang/crates.io-index"
253
+ checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
254
+
255
+ [[package]]
256
+ name = "bytecheck"
257
+ version = "0.8.2"
258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
259
+ checksum = "0caa33a2c0edca0419d15ac723dff03f1956f7978329b1e3b5fdaaaed9d3ca8b"
260
+ dependencies = [
261
+ "bytecheck_derive",
262
+ "ptr_meta",
263
+ "rancor",
264
+ "simdutf8",
265
+ ]
266
+
267
+ [[package]]
268
+ name = "bytecheck_derive"
269
+ version = "0.8.2"
270
+ source = "registry+https://github.com/rust-lang/crates.io-index"
271
+ checksum = "89385e82b5d1821d2219e0b095efa2cc1f246cbf99080f3be46a1a85c0d392d9"
272
+ dependencies = [
273
+ "proc-macro2",
274
+ "quote",
275
+ "syn",
276
+ ]
277
+
278
+ [[package]]
279
+ name = "bytemuck"
280
+ version = "1.25.0"
281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
282
+ checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec"
283
+
284
+ [[package]]
285
+ name = "byteorder"
286
+ version = "1.5.0"
287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
288
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
289
+
290
+ [[package]]
291
+ name = "byteorder-lite"
292
+ version = "0.1.0"
293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
294
+ checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495"
295
+
296
+ [[package]]
297
+ name = "bytes"
298
+ version = "1.11.1"
299
+ source = "registry+https://github.com/rust-lang/crates.io-index"
300
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
301
+
302
+ [[package]]
303
+ name = "cast"
304
+ version = "0.3.0"
305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
306
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
307
+
308
+ [[package]]
309
+ name = "castaway"
310
+ version = "0.2.4"
311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
312
+ checksum = "dec551ab6e7578819132c713a93c022a05d60159dc86e7a7050223577484c55a"
313
+ dependencies = [
314
+ "rustversion",
315
+ ]
316
+
317
+ [[package]]
318
+ name = "cc"
319
+ version = "1.2.57"
320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
321
+ checksum = "7a0dd1ca384932ff3641c8718a02769f1698e7563dc6974ffd03346116310423"
322
+ dependencies = [
323
+ "find-msvc-tools",
324
+ "jobserver",
325
+ "libc",
326
+ "shlex",
327
+ ]
328
+
329
+ [[package]]
330
+ name = "cexpr"
331
+ version = "0.6.0"
332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
333
+ checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
334
+ dependencies = [
335
+ "nom 7.1.3",
336
+ ]
337
+
338
+ [[package]]
339
+ name = "cfg-if"
340
+ version = "1.0.4"
341
+ source = "registry+https://github.com/rust-lang/crates.io-index"
342
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
343
+
344
+ [[package]]
345
+ name = "ciborium"
346
+ version = "0.2.2"
347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
348
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
349
+ dependencies = [
350
+ "ciborium-io",
351
+ "ciborium-ll",
352
+ "serde",
353
+ ]
354
+
355
+ [[package]]
356
+ name = "ciborium-io"
357
+ version = "0.2.2"
358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
359
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
360
+
361
+ [[package]]
362
+ name = "ciborium-ll"
363
+ version = "0.2.2"
364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
365
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
366
+ dependencies = [
367
+ "ciborium-io",
368
+ "half",
369
+ ]
370
+
371
+ [[package]]
372
+ name = "clang-sys"
373
+ version = "1.8.1"
374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
375
+ checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
376
+ dependencies = [
377
+ "glob",
378
+ "libc",
379
+ "libloading",
380
+ ]
381
+
382
+ [[package]]
383
+ name = "clap"
384
+ version = "4.6.0"
385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
386
+ checksum = "b193af5b67834b676abd72466a96c1024e6a6ad978a1f484bd90b85c94041351"
387
+ dependencies = [
388
+ "clap_builder",
389
+ ]
390
+
391
+ [[package]]
392
+ name = "clap_builder"
393
+ version = "4.6.0"
394
+ source = "registry+https://github.com/rust-lang/crates.io-index"
395
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
396
+ dependencies = [
397
+ "anstyle",
398
+ "clap_lex",
399
+ "strsim",
400
+ ]
401
+
402
+ [[package]]
403
+ name = "clap_lex"
404
+ version = "1.1.0"
405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
406
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
407
+
408
+ [[package]]
409
+ name = "cmake"
410
+ version = "0.1.57"
411
+ source = "registry+https://github.com/rust-lang/crates.io-index"
412
+ checksum = "75443c44cd6b379beb8c5b45d85d0773baf31cce901fe7bb252f4eff3008ef7d"
413
+ dependencies = [
414
+ "cc",
415
+ ]
416
+
417
+ [[package]]
418
+ name = "codespan-reporting"
419
+ version = "0.13.1"
420
+ source = "registry+https://github.com/rust-lang/crates.io-index"
421
+ checksum = "af491d569909a7e4dee0ad7db7f5341fef5c614d5b8ec8cf765732aba3cff681"
422
+ dependencies = [
423
+ "serde",
424
+ "termcolor",
425
+ "unicode-width",
426
+ ]
427
+
428
+ [[package]]
429
+ name = "color_quant"
430
+ version = "1.1.0"
431
+ source = "registry+https://github.com/rust-lang/crates.io-index"
432
+ checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b"
433
+
434
+ [[package]]
435
+ name = "compact_str"
436
+ version = "0.9.0"
437
+ source = "registry+https://github.com/rust-lang/crates.io-index"
438
+ checksum = "3fdb1325a1cece981e8a296ab8f0f9b63ae357bd0784a9faaf548cc7b480707a"
439
+ dependencies = [
440
+ "castaway",
441
+ "cfg-if",
442
+ "itoa",
443
+ "rustversion",
444
+ "ryu",
445
+ "serde",
446
+ "static_assertions",
447
+ ]
448
+
449
+ [[package]]
450
+ name = "console"
451
+ version = "0.15.11"
452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
453
+ checksum = "054ccb5b10f9f2cbf51eb355ca1d05c2d279ce1804688d0db74b4733a5aeafd8"
454
+ dependencies = [
455
+ "encode_unicode",
456
+ "libc",
457
+ "once_cell",
458
+ "unicode-width",
459
+ "windows-sys 0.59.0",
460
+ ]
461
+
462
+ [[package]]
463
+ name = "core-foundation"
464
+ version = "0.9.4"
465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
466
+ checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
467
+ dependencies = [
468
+ "core-foundation-sys",
469
+ "libc",
470
+ ]
471
+
472
+ [[package]]
473
+ name = "core-foundation"
474
+ version = "0.10.1"
475
+ source = "registry+https://github.com/rust-lang/crates.io-index"
476
+ checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
477
+ dependencies = [
478
+ "core-foundation-sys",
479
+ "libc",
480
+ ]
481
+
482
+ [[package]]
483
+ name = "core-foundation-sys"
484
+ version = "0.8.7"
485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
486
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
487
+
488
+ [[package]]
489
+ name = "core2"
490
+ version = "0.4.0"
491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
492
+ checksum = "b49ba7ef1ad6107f8824dbe97de947cbaac53c44e7f9756a1fba0d37c1eec505"
493
+ dependencies = [
494
+ "memchr",
495
+ ]
496
+
497
+ [[package]]
498
+ name = "cpufeatures"
499
+ version = "0.2.17"
500
+ source = "registry+https://github.com/rust-lang/crates.io-index"
501
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
502
+ dependencies = [
503
+ "libc",
504
+ ]
505
+
506
+ [[package]]
507
+ name = "crc32fast"
508
+ version = "1.5.0"
509
+ source = "registry+https://github.com/rust-lang/crates.io-index"
510
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
511
+ dependencies = [
512
+ "cfg-if",
513
+ ]
514
+
515
+ [[package]]
516
+ name = "criterion"
517
+ version = "0.8.2"
518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
519
+ checksum = "950046b2aa2492f9a536f5f4f9a3de7b9e2476e575e05bd6c333371add4d98f3"
520
+ dependencies = [
521
+ "alloca",
522
+ "anes",
523
+ "cast",
524
+ "ciborium",
525
+ "clap",
526
+ "criterion-plot",
527
+ "itertools 0.13.0",
528
+ "num-traits",
529
+ "oorandom",
530
+ "page_size",
531
+ "plotters",
532
+ "rayon",
533
+ "regex",
534
+ "serde",
535
+ "serde_json",
536
+ "tinytemplate",
537
+ "walkdir",
538
+ ]
539
+
540
+ [[package]]
541
+ name = "criterion-plot"
542
+ version = "0.8.2"
543
+ source = "registry+https://github.com/rust-lang/crates.io-index"
544
+ checksum = "d8d80a2f4f5b554395e47b5d8305bc3d27813bacb73493eb1001e8f76dae29ea"
545
+ dependencies = [
546
+ "cast",
547
+ "itertools 0.13.0",
548
+ ]
549
+
550
+ [[package]]
551
+ name = "crossbeam-deque"
552
+ version = "0.8.6"
553
+ source = "registry+https://github.com/rust-lang/crates.io-index"
554
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
555
+ dependencies = [
556
+ "crossbeam-epoch",
557
+ "crossbeam-utils",
558
+ ]
559
+
560
+ [[package]]
561
+ name = "crossbeam-epoch"
562
+ version = "0.9.18"
563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
564
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
565
+ dependencies = [
566
+ "crossbeam-utils",
567
+ ]
568
+
569
+ [[package]]
570
+ name = "crossbeam-utils"
571
+ version = "0.8.21"
572
+ source = "registry+https://github.com/rust-lang/crates.io-index"
573
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
574
+
575
+ [[package]]
576
+ name = "crunchy"
577
+ version = "0.2.4"
578
+ source = "registry+https://github.com/rust-lang/crates.io-index"
579
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
580
+
581
+ [[package]]
582
+ name = "crypto-common"
583
+ version = "0.1.7"
584
+ source = "registry+https://github.com/rust-lang/crates.io-index"
585
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
586
+ dependencies = [
587
+ "generic-array",
588
+ "typenum",
589
+ ]
590
+
591
+ [[package]]
592
+ name = "cxx"
593
+ version = "1.0.194"
594
+ source = "registry+https://github.com/rust-lang/crates.io-index"
595
+ checksum = "747d8437319e3a2f43d93b341c137927ca70c0f5dabeea7a005a73665e247c7e"
596
+ dependencies = [
597
+ "cc",
598
+ "cxx-build",
599
+ "cxxbridge-cmd",
600
+ "cxxbridge-flags",
601
+ "cxxbridge-macro",
602
+ "foldhash 0.2.0",
603
+ "link-cplusplus",
604
+ ]
605
+
606
+ [[package]]
607
+ name = "cxx-build"
608
+ version = "1.0.194"
609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
610
+ checksum = "b0f4697d190a142477b16aef7da8a99bfdc41e7e8b1687583c0d23a79c7afc1e"
611
+ dependencies = [
612
+ "cc",
613
+ "codespan-reporting",
614
+ "indexmap",
615
+ "proc-macro2",
616
+ "quote",
617
+ "scratch",
618
+ "syn",
619
+ ]
620
+
621
+ [[package]]
622
+ name = "cxxbridge-cmd"
623
+ version = "1.0.194"
624
+ source = "registry+https://github.com/rust-lang/crates.io-index"
625
+ checksum = "d0956799fa8678d4c50eed028f2de1c0552ae183c76e976cf7ca8c4e36a7c328"
626
+ dependencies = [
627
+ "clap",
628
+ "codespan-reporting",
629
+ "indexmap",
630
+ "proc-macro2",
631
+ "quote",
632
+ "syn",
633
+ ]
634
+
635
+ [[package]]
636
+ name = "cxxbridge-flags"
637
+ version = "1.0.194"
638
+ source = "registry+https://github.com/rust-lang/crates.io-index"
639
+ checksum = "23384a836ab4f0ad98ace7e3955ad2de39de42378ab487dc28d3990392cb283a"
640
+
641
+ [[package]]
642
+ name = "cxxbridge-macro"
643
+ version = "1.0.194"
644
+ source = "registry+https://github.com/rust-lang/crates.io-index"
645
+ checksum = "e6acc6b5822b9526adfb4fc377b67128fdd60aac757cc4a741a6278603f763cf"
646
+ dependencies = [
647
+ "indexmap",
648
+ "proc-macro2",
649
+ "quote",
650
+ "syn",
651
+ ]
652
+
653
+ [[package]]
654
+ name = "darling"
655
+ version = "0.20.11"
656
+ source = "registry+https://github.com/rust-lang/crates.io-index"
657
+ checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
658
+ dependencies = [
659
+ "darling_core",
660
+ "darling_macro",
661
+ ]
662
+
663
+ [[package]]
664
+ name = "darling_core"
665
+ version = "0.20.11"
666
+ source = "registry+https://github.com/rust-lang/crates.io-index"
667
+ checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e"
668
+ dependencies = [
669
+ "fnv",
670
+ "ident_case",
671
+ "proc-macro2",
672
+ "quote",
673
+ "strsim",
674
+ "syn",
675
+ ]
676
+
677
+ [[package]]
678
+ name = "darling_macro"
679
+ version = "0.20.11"
680
+ source = "registry+https://github.com/rust-lang/crates.io-index"
681
+ checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
682
+ dependencies = [
683
+ "darling_core",
684
+ "quote",
685
+ "syn",
686
+ ]
687
+
688
+ [[package]]
689
+ name = "dary_heap"
690
+ version = "0.3.8"
691
+ source = "registry+https://github.com/rust-lang/crates.io-index"
692
+ checksum = "06d2e3287df1c007e74221c49ca10a95d557349e54b3a75dc2fb14712c751f04"
693
+ dependencies = [
694
+ "serde",
695
+ ]
696
+
697
+ [[package]]
698
+ name = "derive_builder"
699
+ version = "0.20.2"
700
+ source = "registry+https://github.com/rust-lang/crates.io-index"
701
+ checksum = "507dfb09ea8b7fa618fcf76e953f4f5e192547945816d5358edffe39f6f94947"
702
+ dependencies = [
703
+ "derive_builder_macro",
704
+ ]
705
+
706
+ [[package]]
707
+ name = "derive_builder_core"
708
+ version = "0.20.2"
709
+ source = "registry+https://github.com/rust-lang/crates.io-index"
710
+ checksum = "2d5bcf7b024d6835cfb3d473887cd966994907effbe9227e8c8219824d06c4e8"
711
+ dependencies = [
712
+ "darling",
713
+ "proc-macro2",
714
+ "quote",
715
+ "syn",
716
+ ]
717
+
718
+ [[package]]
719
+ name = "derive_builder_macro"
720
+ version = "0.20.2"
721
+ source = "registry+https://github.com/rust-lang/crates.io-index"
722
+ checksum = "ab63b0e2bf4d5928aff72e83a7dace85d7bba5fe12dcc3c5a572d78caffd3f3c"
723
+ dependencies = [
724
+ "derive_builder_core",
725
+ "syn",
726
+ ]
727
+
728
+ [[package]]
729
+ name = "digest"
730
+ version = "0.10.7"
731
+ source = "registry+https://github.com/rust-lang/crates.io-index"
732
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
733
+ dependencies = [
734
+ "block-buffer",
735
+ "crypto-common",
736
+ ]
737
+
738
+ [[package]]
739
+ name = "dirs"
740
+ version = "6.0.0"
741
+ source = "registry+https://github.com/rust-lang/crates.io-index"
742
+ checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e"
743
+ dependencies = [
744
+ "dirs-sys",
745
+ ]
746
+
747
+ [[package]]
748
+ name = "dirs-sys"
749
+ version = "0.5.0"
750
+ source = "registry+https://github.com/rust-lang/crates.io-index"
751
+ checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab"
752
+ dependencies = [
753
+ "libc",
754
+ "option-ext",
755
+ "redox_users",
756
+ "windows-sys 0.61.2",
757
+ ]
758
+
759
+ [[package]]
760
+ name = "displaydoc"
761
+ version = "0.2.5"
762
+ source = "registry+https://github.com/rust-lang/crates.io-index"
763
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
764
+ dependencies = [
765
+ "proc-macro2",
766
+ "quote",
767
+ "syn",
768
+ ]
769
+
770
+ [[package]]
771
+ name = "either"
772
+ version = "1.15.0"
773
+ source = "registry+https://github.com/rust-lang/crates.io-index"
774
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
775
+
776
+ [[package]]
777
+ name = "encode_unicode"
778
+ version = "1.0.0"
779
+ source = "registry+https://github.com/rust-lang/crates.io-index"
780
+ checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
781
+
782
+ [[package]]
783
+ name = "encoding_rs"
784
+ version = "0.8.35"
785
+ source = "registry+https://github.com/rust-lang/crates.io-index"
786
+ checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
787
+ dependencies = [
788
+ "cfg-if",
789
+ ]
790
+
791
+ [[package]]
792
+ name = "enumflags2"
793
+ version = "0.7.12"
794
+ source = "registry+https://github.com/rust-lang/crates.io-index"
795
+ checksum = "1027f7680c853e056ebcec683615fb6fbbc07dbaa13b4d5d9442b146ded4ecef"
796
+ dependencies = [
797
+ "enumflags2_derive",
798
+ ]
799
+
800
+ [[package]]
801
+ name = "enumflags2_derive"
802
+ version = "0.7.12"
803
+ source = "registry+https://github.com/rust-lang/crates.io-index"
804
+ checksum = "67c78a4d8fdf9953a5c9d458f9efe940fd97a0cab0941c075a813ac594733827"
805
+ dependencies = [
806
+ "proc-macro2",
807
+ "quote",
808
+ "syn",
809
+ ]
810
+
811
+ [[package]]
812
+ name = "equator"
813
+ version = "0.4.2"
814
+ source = "registry+https://github.com/rust-lang/crates.io-index"
815
+ checksum = "4711b213838dfee0117e3be6ac926007d7f433d7bbe33595975d4190cb07e6fc"
816
+ dependencies = [
817
+ "equator-macro",
818
+ ]
819
+
820
+ [[package]]
821
+ name = "equator-macro"
822
+ version = "0.4.2"
823
+ source = "registry+https://github.com/rust-lang/crates.io-index"
824
+ checksum = "44f23cf4b44bfce11a86ace86f8a73ffdec849c9fd00a386a53d278bd9e81fb3"
825
+ dependencies = [
826
+ "proc-macro2",
827
+ "quote",
828
+ "syn",
829
+ ]
830
+
831
+ [[package]]
832
+ name = "equivalent"
833
+ version = "1.0.2"
834
+ source = "registry+https://github.com/rust-lang/crates.io-index"
835
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
836
+
837
+ [[package]]
838
+ name = "errno"
839
+ version = "0.3.14"
840
+ source = "registry+https://github.com/rust-lang/crates.io-index"
841
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
842
+ dependencies = [
843
+ "libc",
844
+ "windows-sys 0.61.2",
845
+ ]
846
+
847
+ [[package]]
848
+ name = "esaxx-rs"
849
+ version = "0.1.10"
850
+ source = "registry+https://github.com/rust-lang/crates.io-index"
851
+ checksum = "d817e038c30374a4bcb22f94d0a8a0e216958d4c3dcde369b1439fec4bdda6e6"
852
+
853
+ [[package]]
854
+ name = "exr"
855
+ version = "1.74.0"
856
+ source = "registry+https://github.com/rust-lang/crates.io-index"
857
+ checksum = "4300e043a56aa2cb633c01af81ca8f699a321879a7854d3896a0ba89056363be"
858
+ dependencies = [
859
+ "bit_field",
860
+ "half",
861
+ "lebe",
862
+ "miniz_oxide",
863
+ "rayon-core",
864
+ "smallvec",
865
+ "zune-inflate",
866
+ ]
867
+
868
+ [[package]]
869
+ name = "fastembed"
870
+ version = "4.9.1"
871
+ source = "registry+https://github.com/rust-lang/crates.io-index"
872
+ checksum = "04c269a76bfc6cea69553b7d040acb16c793119cebd97c756d21e08d0f075ff8"
873
+ dependencies = [
874
+ "anyhow",
875
+ "hf-hub",
876
+ "image",
877
+ "ndarray",
878
+ "ort",
879
+ "ort-sys",
880
+ "rayon",
881
+ "serde_json",
882
+ "tokenizers",
883
+ ]
884
+
885
+ [[package]]
886
+ name = "fastrand"
887
+ version = "2.3.0"
888
+ source = "registry+https://github.com/rust-lang/crates.io-index"
889
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
890
+
891
+ [[package]]
892
+ name = "fax"
893
+ version = "0.2.6"
894
+ source = "registry+https://github.com/rust-lang/crates.io-index"
895
+ checksum = "f05de7d48f37cd6730705cbca900770cab77a89f413d23e100ad7fad7795a0ab"
896
+ dependencies = [
897
+ "fax_derive",
898
+ ]
899
+
900
+ [[package]]
901
+ name = "fax_derive"
902
+ version = "0.2.0"
903
+ source = "registry+https://github.com/rust-lang/crates.io-index"
904
+ checksum = "a0aca10fb742cb43f9e7bb8467c91aa9bcb8e3ffbc6a6f7389bb93ffc920577d"
905
+ dependencies = [
906
+ "proc-macro2",
907
+ "quote",
908
+ "syn",
909
+ ]
910
+
911
+ [[package]]
912
+ name = "fdeflate"
913
+ version = "0.3.7"
914
+ source = "registry+https://github.com/rust-lang/crates.io-index"
915
+ checksum = "1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c"
916
+ dependencies = [
917
+ "simd-adler32",
918
+ ]
919
+
920
+ [[package]]
921
+ name = "filetime"
922
+ version = "0.2.27"
923
+ source = "registry+https://github.com/rust-lang/crates.io-index"
924
+ checksum = "f98844151eee8917efc50bd9e8318cb963ae8b297431495d3f758616ea5c57db"
925
+ dependencies = [
926
+ "cfg-if",
927
+ "libc",
928
+ "libredox",
929
+ ]
930
+
931
+ [[package]]
932
+ name = "find-msvc-tools"
933
+ version = "0.1.9"
934
+ source = "registry+https://github.com/rust-lang/crates.io-index"
935
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
936
+
937
+ [[package]]
938
+ name = "find_cuda_helper"
939
+ version = "0.2.0"
940
+ source = "registry+https://github.com/rust-lang/crates.io-index"
941
+ checksum = "f9f9e65c593dd01ac77daad909ea4ad17f0d6d1776193fc8ea766356177abdad"
942
+ dependencies = [
943
+ "glob",
944
+ ]
945
+
946
+ [[package]]
947
+ name = "fixedbitset"
948
+ version = "0.4.2"
949
+ source = "registry+https://github.com/rust-lang/crates.io-index"
950
+ checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
951
+
952
+ [[package]]
953
+ name = "flate2"
954
+ version = "1.1.9"
955
+ source = "registry+https://github.com/rust-lang/crates.io-index"
956
+ checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
957
+ dependencies = [
958
+ "crc32fast",
959
+ "miniz_oxide",
960
+ ]
961
+
962
+ [[package]]
963
+ name = "fnv"
964
+ version = "1.0.7"
965
+ source = "registry+https://github.com/rust-lang/crates.io-index"
966
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
967
+
968
+ [[package]]
969
+ name = "foldhash"
970
+ version = "0.1.5"
971
+ source = "registry+https://github.com/rust-lang/crates.io-index"
972
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
973
+
974
+ [[package]]
975
+ name = "foldhash"
976
+ version = "0.2.0"
977
+ source = "registry+https://github.com/rust-lang/crates.io-index"
978
+ checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
979
+
980
+ [[package]]
981
+ name = "foreign-types"
982
+ version = "0.3.2"
983
+ source = "registry+https://github.com/rust-lang/crates.io-index"
984
+ checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
985
+ dependencies = [
986
+ "foreign-types-shared",
987
+ ]
988
+
989
+ [[package]]
990
+ name = "foreign-types-shared"
991
+ version = "0.1.1"
992
+ source = "registry+https://github.com/rust-lang/crates.io-index"
993
+ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
994
+
995
+ [[package]]
996
+ name = "form_urlencoded"
997
+ version = "1.2.2"
998
+ source = "registry+https://github.com/rust-lang/crates.io-index"
999
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
1000
+ dependencies = [
1001
+ "percent-encoding",
1002
+ ]
1003
+
1004
+ [[package]]
1005
+ name = "futures-channel"
1006
+ version = "0.3.32"
1007
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1008
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
1009
+ dependencies = [
1010
+ "futures-core",
1011
+ ]
1012
+
1013
+ [[package]]
1014
+ name = "futures-core"
1015
+ version = "0.3.32"
1016
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1017
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
1018
+
1019
+ [[package]]
1020
+ name = "futures-io"
1021
+ version = "0.3.32"
1022
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1023
+ checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
1024
+
1025
+ [[package]]
1026
+ name = "futures-macro"
1027
+ version = "0.3.32"
1028
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1029
+ checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
1030
+ dependencies = [
1031
+ "proc-macro2",
1032
+ "quote",
1033
+ "syn",
1034
+ ]
1035
+
1036
+ [[package]]
1037
+ name = "futures-sink"
1038
+ version = "0.3.32"
1039
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1040
+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
1041
+
1042
+ [[package]]
1043
+ name = "futures-task"
1044
+ version = "0.3.32"
1045
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1046
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
1047
+
1048
+ [[package]]
1049
+ name = "futures-util"
1050
+ version = "0.3.32"
1051
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1052
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
1053
+ dependencies = [
1054
+ "futures-core",
1055
+ "futures-io",
1056
+ "futures-macro",
1057
+ "futures-sink",
1058
+ "futures-task",
1059
+ "memchr",
1060
+ "pin-project-lite",
1061
+ "slab",
1062
+ ]
1063
+
1064
+ [[package]]
1065
+ name = "generic-array"
1066
+ version = "0.14.7"
1067
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1068
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
1069
+ dependencies = [
1070
+ "typenum",
1071
+ "version_check",
1072
+ ]
1073
+
1074
+ [[package]]
1075
+ name = "getrandom"
1076
+ version = "0.2.17"
1077
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1078
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
1079
+ dependencies = [
1080
+ "cfg-if",
1081
+ "libc",
1082
+ "wasi",
1083
+ ]
1084
+
1085
+ [[package]]
1086
+ name = "getrandom"
1087
+ version = "0.3.4"
1088
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1089
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
1090
+ dependencies = [
1091
+ "cfg-if",
1092
+ "libc",
1093
+ "r-efi 5.3.0",
1094
+ "wasip2",
1095
+ ]
1096
+
1097
+ [[package]]
1098
+ name = "getrandom"
1099
+ version = "0.4.2"
1100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1101
+ checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
1102
+ dependencies = [
1103
+ "cfg-if",
1104
+ "libc",
1105
+ "r-efi 6.0.0",
1106
+ "wasip2",
1107
+ "wasip3",
1108
+ ]
1109
+
1110
+ [[package]]
1111
+ name = "gif"
1112
+ version = "0.14.1"
1113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1114
+ checksum = "f5df2ba84018d80c213569363bdcd0c64e6933c67fe4c1d60ecf822971a3c35e"
1115
+ dependencies = [
1116
+ "color_quant",
1117
+ "weezl",
1118
+ ]
1119
+
1120
+ [[package]]
1121
+ name = "glob"
1122
+ version = "0.3.3"
1123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1124
+ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
1125
+
1126
+ [[package]]
1127
+ name = "h2"
1128
+ version = "0.4.13"
1129
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1130
+ checksum = "2f44da3a8150a6703ed5d34e164b875fd14c2cdab9af1252a9a1020bde2bdc54"
1131
+ dependencies = [
1132
+ "atomic-waker",
1133
+ "bytes",
1134
+ "fnv",
1135
+ "futures-core",
1136
+ "futures-sink",
1137
+ "http",
1138
+ "indexmap",
1139
+ "slab",
1140
+ "tokio",
1141
+ "tokio-util",
1142
+ "tracing",
1143
+ ]
1144
+
1145
+ [[package]]
1146
+ name = "half"
1147
+ version = "2.7.1"
1148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1149
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
1150
+ dependencies = [
1151
+ "cfg-if",
1152
+ "crunchy",
1153
+ "zerocopy",
1154
+ ]
1155
+
1156
+ [[package]]
1157
+ name = "hashbrown"
1158
+ version = "0.15.5"
1159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1160
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
1161
+ dependencies = [
1162
+ "foldhash 0.1.5",
1163
+ ]
1164
+
1165
+ [[package]]
1166
+ name = "hashbrown"
1167
+ version = "0.16.1"
1168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1169
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
1170
+
1171
+ [[package]]
1172
+ name = "heck"
1173
+ version = "0.4.1"
1174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1175
+ checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
1176
+
1177
+ [[package]]
1178
+ name = "heck"
1179
+ version = "0.5.0"
1180
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1181
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
1182
+
1183
+ [[package]]
1184
+ name = "hex"
1185
+ version = "0.4.3"
1186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1187
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
1188
+
1189
+ [[package]]
1190
+ name = "hf-hub"
1191
+ version = "0.4.3"
1192
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1193
+ checksum = "629d8f3bbeda9d148036d6b0de0a3ab947abd08ce90626327fc3547a49d59d97"
1194
+ dependencies = [
1195
+ "dirs",
1196
+ "http",
1197
+ "indicatif",
1198
+ "libc",
1199
+ "log",
1200
+ "native-tls",
1201
+ "rand",
1202
+ "reqwest",
1203
+ "serde",
1204
+ "serde_json",
1205
+ "thiserror",
1206
+ "ureq",
1207
+ "windows-sys 0.60.2",
1208
+ ]
1209
+
1210
+ [[package]]
1211
+ name = "http"
1212
+ version = "1.4.0"
1213
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1214
+ checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
1215
+ dependencies = [
1216
+ "bytes",
1217
+ "itoa",
1218
+ ]
1219
+
1220
+ [[package]]
1221
+ name = "http-body"
1222
+ version = "1.0.1"
1223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1224
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
1225
+ dependencies = [
1226
+ "bytes",
1227
+ "http",
1228
+ ]
1229
+
1230
+ [[package]]
1231
+ name = "http-body-util"
1232
+ version = "0.1.3"
1233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1234
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
1235
+ dependencies = [
1236
+ "bytes",
1237
+ "futures-core",
1238
+ "http",
1239
+ "http-body",
1240
+ "pin-project-lite",
1241
+ ]
1242
+
1243
+ [[package]]
1244
+ name = "httparse"
1245
+ version = "1.10.1"
1246
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1247
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
1248
+
1249
+ [[package]]
1250
+ name = "hyper"
1251
+ version = "1.8.1"
1252
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1253
+ checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11"
1254
+ dependencies = [
1255
+ "atomic-waker",
1256
+ "bytes",
1257
+ "futures-channel",
1258
+ "futures-core",
1259
+ "h2",
1260
+ "http",
1261
+ "http-body",
1262
+ "httparse",
1263
+ "itoa",
1264
+ "pin-project-lite",
1265
+ "pin-utils",
1266
+ "smallvec",
1267
+ "tokio",
1268
+ "want",
1269
+ ]
1270
+
1271
+ [[package]]
1272
+ name = "hyper-rustls"
1273
+ version = "0.27.7"
1274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1275
+ checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
1276
+ dependencies = [
1277
+ "http",
1278
+ "hyper",
1279
+ "hyper-util",
1280
+ "rustls",
1281
+ "rustls-pki-types",
1282
+ "tokio",
1283
+ "tokio-rustls",
1284
+ "tower-service",
1285
+ ]
1286
+
1287
+ [[package]]
1288
+ name = "hyper-tls"
1289
+ version = "0.6.0"
1290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1291
+ checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0"
1292
+ dependencies = [
1293
+ "bytes",
1294
+ "http-body-util",
1295
+ "hyper",
1296
+ "hyper-util",
1297
+ "native-tls",
1298
+ "tokio",
1299
+ "tokio-native-tls",
1300
+ "tower-service",
1301
+ ]
1302
+
1303
+ [[package]]
1304
+ name = "hyper-util"
1305
+ version = "0.1.20"
1306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1307
+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
1308
+ dependencies = [
1309
+ "base64 0.22.1",
1310
+ "bytes",
1311
+ "futures-channel",
1312
+ "futures-util",
1313
+ "http",
1314
+ "http-body",
1315
+ "hyper",
1316
+ "ipnet",
1317
+ "libc",
1318
+ "percent-encoding",
1319
+ "pin-project-lite",
1320
+ "socket2",
1321
+ "system-configuration",
1322
+ "tokio",
1323
+ "tower-service",
1324
+ "tracing",
1325
+ "windows-registry",
1326
+ ]
1327
+
1328
+ [[package]]
1329
+ name = "icu_collections"
1330
+ version = "2.1.1"
1331
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1332
+ checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
1333
+ dependencies = [
1334
+ "displaydoc",
1335
+ "potential_utf",
1336
+ "yoke",
1337
+ "zerofrom",
1338
+ "zerovec",
1339
+ ]
1340
+
1341
+ [[package]]
1342
+ name = "icu_locale_core"
1343
+ version = "2.1.1"
1344
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1345
+ checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
1346
+ dependencies = [
1347
+ "displaydoc",
1348
+ "litemap",
1349
+ "tinystr",
1350
+ "writeable",
1351
+ "zerovec",
1352
+ ]
1353
+
1354
+ [[package]]
1355
+ name = "icu_normalizer"
1356
+ version = "2.1.1"
1357
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1358
+ checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
1359
+ dependencies = [
1360
+ "icu_collections",
1361
+ "icu_normalizer_data",
1362
+ "icu_properties",
1363
+ "icu_provider",
1364
+ "smallvec",
1365
+ "zerovec",
1366
+ ]
1367
+
1368
+ [[package]]
1369
+ name = "icu_normalizer_data"
1370
+ version = "2.1.1"
1371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1372
+ checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
1373
+
1374
+ [[package]]
1375
+ name = "icu_properties"
1376
+ version = "2.1.2"
1377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1378
+ checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
1379
+ dependencies = [
1380
+ "icu_collections",
1381
+ "icu_locale_core",
1382
+ "icu_properties_data",
1383
+ "icu_provider",
1384
+ "zerotrie",
1385
+ "zerovec",
1386
+ ]
1387
+
1388
+ [[package]]
1389
+ name = "icu_properties_data"
1390
+ version = "2.1.2"
1391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1392
+ checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
1393
+
1394
+ [[package]]
1395
+ name = "icu_provider"
1396
+ version = "2.1.1"
1397
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1398
+ checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
1399
+ dependencies = [
1400
+ "displaydoc",
1401
+ "icu_locale_core",
1402
+ "writeable",
1403
+ "yoke",
1404
+ "zerofrom",
1405
+ "zerotrie",
1406
+ "zerovec",
1407
+ ]
1408
+
1409
+ [[package]]
1410
+ name = "id-arena"
1411
+ version = "2.3.0"
1412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1413
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
1414
+
1415
+ [[package]]
1416
+ name = "ident_case"
1417
+ version = "1.0.1"
1418
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1419
+ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
1420
+
1421
+ [[package]]
1422
+ name = "idna"
1423
+ version = "1.1.0"
1424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1425
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
1426
+ dependencies = [
1427
+ "idna_adapter",
1428
+ "smallvec",
1429
+ "utf8_iter",
1430
+ ]
1431
+
1432
+ [[package]]
1433
+ name = "idna_adapter"
1434
+ version = "1.2.1"
1435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1436
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
1437
+ dependencies = [
1438
+ "icu_normalizer",
1439
+ "icu_properties",
1440
+ ]
1441
+
1442
+ [[package]]
1443
+ name = "image"
1444
+ version = "0.25.10"
1445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1446
+ checksum = "85ab80394333c02fe689eaf900ab500fbd0c2213da414687ebf995a65d5a6104"
1447
+ dependencies = [
1448
+ "bytemuck",
1449
+ "byteorder-lite",
1450
+ "color_quant",
1451
+ "exr",
1452
+ "gif",
1453
+ "image-webp",
1454
+ "moxcms",
1455
+ "num-traits",
1456
+ "png",
1457
+ "qoi",
1458
+ "ravif",
1459
+ "rayon",
1460
+ "rgb",
1461
+ "tiff",
1462
+ "zune-core",
1463
+ "zune-jpeg",
1464
+ ]
1465
+
1466
+ [[package]]
1467
+ name = "image-webp"
1468
+ version = "0.2.4"
1469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1470
+ checksum = "525e9ff3e1a4be2fbea1fdf0e98686a6d98b4d8f937e1bf7402245af1909e8c3"
1471
+ dependencies = [
1472
+ "byteorder-lite",
1473
+ "quick-error 2.0.1",
1474
+ ]
1475
+
1476
+ [[package]]
1477
+ name = "imgref"
1478
+ version = "1.12.0"
1479
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1480
+ checksum = "e7c5cedc30da3a610cac6b4ba17597bdf7152cf974e8aab3afb3d54455e371c8"
1481
+
1482
+ [[package]]
1483
+ name = "indexmap"
1484
+ version = "2.13.0"
1485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1486
+ checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
1487
+ dependencies = [
1488
+ "equivalent",
1489
+ "hashbrown 0.16.1",
1490
+ "serde",
1491
+ "serde_core",
1492
+ ]
1493
+
1494
+ [[package]]
1495
+ name = "indicatif"
1496
+ version = "0.17.11"
1497
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1498
+ checksum = "183b3088984b400f4cfac3620d5e076c84da5364016b4f49473de574b2586235"
1499
+ dependencies = [
1500
+ "console",
1501
+ "number_prefix",
1502
+ "portable-atomic",
1503
+ "unicode-width",
1504
+ "web-time",
1505
+ ]
1506
+
1507
+ [[package]]
1508
+ name = "indoc"
1509
+ version = "2.0.7"
1510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1511
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
1512
+ dependencies = [
1513
+ "rustversion",
1514
+ ]
1515
+
1516
+ [[package]]
1517
+ name = "interpolate_name"
1518
+ version = "0.2.4"
1519
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1520
+ checksum = "c34819042dc3d3971c46c2190835914dfbe0c3c13f61449b2997f4e9722dfa60"
1521
+ dependencies = [
1522
+ "proc-macro2",
1523
+ "quote",
1524
+ "syn",
1525
+ ]
1526
+
1527
+ [[package]]
1528
+ name = "ipnet"
1529
+ version = "2.12.0"
1530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1531
+ checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
1532
+
1533
+ [[package]]
1534
+ name = "iri-string"
1535
+ version = "0.7.10"
1536
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1537
+ checksum = "c91338f0783edbd6195decb37bae672fd3b165faffb89bf7b9e6942f8b1a731a"
1538
+ dependencies = [
1539
+ "memchr",
1540
+ "serde",
1541
+ ]
1542
+
1543
+ [[package]]
1544
+ name = "itertools"
1545
+ version = "0.13.0"
1546
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1547
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
1548
+ dependencies = [
1549
+ "either",
1550
+ ]
1551
+
1552
+ [[package]]
1553
+ name = "itertools"
1554
+ version = "0.14.0"
1555
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1556
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
1557
+ dependencies = [
1558
+ "either",
1559
+ ]
1560
+
1561
+ [[package]]
1562
+ name = "itoa"
1563
+ version = "1.0.17"
1564
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1565
+ checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
1566
+
1567
+ [[package]]
1568
+ name = "jobserver"
1569
+ version = "0.1.34"
1570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1571
+ checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
1572
+ dependencies = [
1573
+ "getrandom 0.3.4",
1574
+ "libc",
1575
+ ]
1576
+
1577
+ [[package]]
1578
+ name = "js-sys"
1579
+ version = "0.3.91"
1580
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1581
+ checksum = "b49715b7073f385ba4bc528e5747d02e66cb39c6146efb66b781f131f0fb399c"
1582
+ dependencies = [
1583
+ "once_cell",
1584
+ "wasm-bindgen",
1585
+ ]
1586
+
1587
+ [[package]]
1588
+ name = "lazy_static"
1589
+ version = "1.5.0"
1590
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1591
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1592
+
1593
+ [[package]]
1594
+ name = "leb128fmt"
1595
+ version = "0.1.0"
1596
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1597
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
1598
+
1599
+ [[package]]
1600
+ name = "lebe"
1601
+ version = "0.5.3"
1602
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1603
+ checksum = "7a79a3332a6609480d7d0c9eab957bca6b455b91bb84e66d19f5ff66294b85b8"
1604
+
1605
+ [[package]]
1606
+ name = "libc"
1607
+ version = "0.2.183"
1608
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1609
+ checksum = "b5b646652bf6661599e1da8901b3b9522896f01e736bad5f723fe7a3a27f899d"
1610
+
1611
+ [[package]]
1612
+ name = "libfuzzer-sys"
1613
+ version = "0.4.12"
1614
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1615
+ checksum = "f12a681b7dd8ce12bff52488013ba614b869148d54dd79836ab85aafdd53f08d"
1616
+ dependencies = [
1617
+ "arbitrary",
1618
+ "cc",
1619
+ ]
1620
+
1621
+ [[package]]
1622
+ name = "libloading"
1623
+ version = "0.8.9"
1624
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1625
+ checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
1626
+ dependencies = [
1627
+ "cfg-if",
1628
+ "windows-link",
1629
+ ]
1630
+
1631
+ [[package]]
1632
+ name = "libredox"
1633
+ version = "0.1.14"
1634
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1635
+ checksum = "1744e39d1d6a9948f4f388969627434e31128196de472883b39f148769bfe30a"
1636
+ dependencies = [
1637
+ "bitflags",
1638
+ "libc",
1639
+ "plain",
1640
+ "redox_syscall 0.7.3",
1641
+ ]
1642
+
1643
+ [[package]]
1644
+ name = "link-cplusplus"
1645
+ version = "1.0.12"
1646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1647
+ checksum = "7f78c730aaa7d0b9336a299029ea49f9ee53b0ed06e9202e8cb7db9bae7b8c82"
1648
+ dependencies = [
1649
+ "cc",
1650
+ ]
1651
+
1652
+ [[package]]
1653
+ name = "linux-raw-sys"
1654
+ version = "0.12.1"
1655
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1656
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
1657
+
1658
+ [[package]]
1659
+ name = "litemap"
1660
+ version = "0.8.1"
1661
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1662
+ checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
1663
+
1664
+ [[package]]
1665
+ name = "llama-cpp-2"
1666
+ version = "0.1.138"
1667
+ source = "git+https://github.com/gkanellopoulos/llama-cpp-rs?branch=mnemefusion-patches#546d272db30d2bcc9d6c474acb2bf735b797f651"
1668
+ dependencies = [
1669
+ "encoding_rs",
1670
+ "enumflags2",
1671
+ "llama-cpp-sys-2",
1672
+ "thiserror",
1673
+ "tracing",
1674
+ "tracing-core",
1675
+ ]
1676
+
1677
+ [[package]]
1678
+ name = "llama-cpp-sys-2"
1679
+ version = "0.1.138"
1680
+ source = "git+https://github.com/gkanellopoulos/llama-cpp-rs?branch=mnemefusion-patches#546d272db30d2bcc9d6c474acb2bf735b797f651"
1681
+ dependencies = [
1682
+ "bindgen",
1683
+ "cc",
1684
+ "cmake",
1685
+ "find_cuda_helper",
1686
+ "glob",
1687
+ "walkdir",
1688
+ ]
1689
+
1690
+ [[package]]
1691
+ name = "lock_api"
1692
+ version = "0.4.14"
1693
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1694
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
1695
+ dependencies = [
1696
+ "scopeguard",
1697
+ ]
1698
+
1699
+ [[package]]
1700
+ name = "log"
1701
+ version = "0.4.29"
1702
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1703
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
1704
+
1705
+ [[package]]
1706
+ name = "loop9"
1707
+ version = "0.1.5"
1708
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1709
+ checksum = "0fae87c125b03c1d2c0150c90365d7d6bcc53fb73a9acaef207d2d065860f062"
1710
+ dependencies = [
1711
+ "imgref",
1712
+ ]
1713
+
1714
+ [[package]]
1715
+ name = "macro_rules_attribute"
1716
+ version = "0.2.2"
1717
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1718
+ checksum = "65049d7923698040cd0b1ddcced9b0eb14dd22c5f86ae59c3740eab64a676520"
1719
+ dependencies = [
1720
+ "macro_rules_attribute-proc_macro",
1721
+ "paste",
1722
+ ]
1723
+
1724
+ [[package]]
1725
+ name = "macro_rules_attribute-proc_macro"
1726
+ version = "0.2.2"
1727
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1728
+ checksum = "670fdfda89751bc4a84ac13eaa63e205cf0fd22b4c9a5fbfa085b63c1f1d3a30"
1729
+
1730
+ [[package]]
1731
+ name = "matchers"
1732
+ version = "0.2.0"
1733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1734
+ checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
1735
+ dependencies = [
1736
+ "regex-automata",
1737
+ ]
1738
+
1739
+ [[package]]
1740
+ name = "matrixmultiply"
1741
+ version = "0.3.10"
1742
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1743
+ checksum = "a06de3016e9fae57a36fd14dba131fccf49f74b40b7fbdb472f96e361ec71a08"
1744
+ dependencies = [
1745
+ "autocfg",
1746
+ "rawpointer",
1747
+ ]
1748
+
1749
+ [[package]]
1750
+ name = "maybe-rayon"
1751
+ version = "0.1.1"
1752
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1753
+ checksum = "8ea1f30cedd69f0a2954655f7188c6a834246d2bcf1e315e2ac40c4b24dc9519"
1754
+ dependencies = [
1755
+ "cfg-if",
1756
+ "rayon",
1757
+ ]
1758
+
1759
+ [[package]]
1760
+ name = "memchr"
1761
+ version = "2.8.0"
1762
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1763
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
1764
+
1765
+ [[package]]
1766
+ name = "memoffset"
1767
+ version = "0.9.1"
1768
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1769
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
1770
+ dependencies = [
1771
+ "autocfg",
1772
+ ]
1773
+
1774
+ [[package]]
1775
+ name = "mime"
1776
+ version = "0.3.17"
1777
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1778
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
1779
+
1780
+ [[package]]
1781
+ name = "minimal-lexical"
1782
+ version = "0.2.1"
1783
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1784
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
1785
+
1786
+ [[package]]
1787
+ name = "miniz_oxide"
1788
+ version = "0.8.9"
1789
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1790
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
1791
+ dependencies = [
1792
+ "adler2",
1793
+ "simd-adler32",
1794
+ ]
1795
+
1796
+ [[package]]
1797
+ name = "mio"
1798
+ version = "1.1.1"
1799
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1800
+ checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
1801
+ dependencies = [
1802
+ "libc",
1803
+ "wasi",
1804
+ "windows-sys 0.61.2",
1805
+ ]
1806
+
1807
+ [[package]]
1808
+ name = "mnemefusion-core"
1809
+ version = "0.1.0"
1810
+ dependencies = [
1811
+ "criterion",
1812
+ "dirs",
1813
+ "fastembed",
1814
+ "hex",
1815
+ "llama-cpp-2",
1816
+ "llama-cpp-sys-2",
1817
+ "petgraph",
1818
+ "proptest",
1819
+ "redb",
1820
+ "regex",
1821
+ "rkyv",
1822
+ "rust-stemmers",
1823
+ "serde",
1824
+ "serde_json",
1825
+ "sha2",
1826
+ "tempfile",
1827
+ "thiserror",
1828
+ "tracing",
1829
+ "tracing-subscriber",
1830
+ "usearch",
1831
+ "uuid",
1832
+ ]
1833
+
1834
+ [[package]]
1835
+ name = "mnemefusion-python"
1836
+ version = "0.1.0"
1837
+ dependencies = [
1838
+ "mnemefusion-core",
1839
+ "pyo3",
1840
+ ]
1841
+
1842
+ [[package]]
1843
+ name = "monostate"
1844
+ version = "0.1.18"
1845
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1846
+ checksum = "3341a273f6c9d5bef1908f17b7267bbab0e95c9bf69a0d4dcf8e9e1b2c76ef67"
1847
+ dependencies = [
1848
+ "monostate-impl",
1849
+ "serde",
1850
+ "serde_core",
1851
+ ]
1852
+
1853
+ [[package]]
1854
+ name = "monostate-impl"
1855
+ version = "0.1.18"
1856
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1857
+ checksum = "e4db6d5580af57bf992f59068d4ea26fd518574ff48d7639b255a36f9de6e7e9"
1858
+ dependencies = [
1859
+ "proc-macro2",
1860
+ "quote",
1861
+ "syn",
1862
+ ]
1863
+
1864
+ [[package]]
1865
+ name = "moxcms"
1866
+ version = "0.8.1"
1867
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1868
+ checksum = "bb85c154ba489f01b25c0d36ae69a87e4a1c73a72631fc6c0eb6dde34a73e44b"
1869
+ dependencies = [
1870
+ "num-traits",
1871
+ "pxfm",
1872
+ ]
1873
+
1874
+ [[package]]
1875
+ name = "munge"
1876
+ version = "0.4.7"
1877
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1878
+ checksum = "5e17401f259eba956ca16491461b6e8f72913a0a114e39736ce404410f915a0c"
1879
+ dependencies = [
1880
+ "munge_macro",
1881
+ ]
1882
+
1883
+ [[package]]
1884
+ name = "munge_macro"
1885
+ version = "0.4.7"
1886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1887
+ checksum = "4568f25ccbd45ab5d5603dc34318c1ec56b117531781260002151b8530a9f931"
1888
+ dependencies = [
1889
+ "proc-macro2",
1890
+ "quote",
1891
+ "syn",
1892
+ ]
1893
+
1894
+ [[package]]
1895
+ name = "native-tls"
1896
+ version = "0.2.18"
1897
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1898
+ checksum = "465500e14ea162429d264d44189adc38b199b62b1c21eea9f69e4b73cb03bbf2"
1899
+ dependencies = [
1900
+ "libc",
1901
+ "log",
1902
+ "openssl",
1903
+ "openssl-probe",
1904
+ "openssl-sys",
1905
+ "schannel",
1906
+ "security-framework",
1907
+ "security-framework-sys",
1908
+ "tempfile",
1909
+ ]
1910
+
1911
+ [[package]]
1912
+ name = "ndarray"
1913
+ version = "0.16.1"
1914
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1915
+ checksum = "882ed72dce9365842bf196bdeedf5055305f11fc8c03dee7bb0194a6cad34841"
1916
+ dependencies = [
1917
+ "matrixmultiply",
1918
+ "num-complex",
1919
+ "num-integer",
1920
+ "num-traits",
1921
+ "portable-atomic",
1922
+ "portable-atomic-util",
1923
+ "rawpointer",
1924
+ ]
1925
+
1926
+ [[package]]
1927
+ name = "new_debug_unreachable"
1928
+ version = "1.0.6"
1929
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1930
+ checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
1931
+
1932
+ [[package]]
1933
+ name = "nom"
1934
+ version = "7.1.3"
1935
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1936
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
1937
+ dependencies = [
1938
+ "memchr",
1939
+ "minimal-lexical",
1940
+ ]
1941
+
1942
+ [[package]]
1943
+ name = "nom"
1944
+ version = "8.0.0"
1945
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1946
+ checksum = "df9761775871bdef83bee530e60050f7e54b1105350d6884eb0fb4f46c2f9405"
1947
+ dependencies = [
1948
+ "memchr",
1949
+ ]
1950
+
1951
+ [[package]]
1952
+ name = "noop_proc_macro"
1953
+ version = "0.3.0"
1954
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1955
+ checksum = "0676bb32a98c1a483ce53e500a81ad9c3d5b3f7c920c28c24e9cb0980d0b5bc8"
1956
+
1957
+ [[package]]
1958
+ name = "nu-ansi-term"
1959
+ version = "0.50.3"
1960
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1961
+ checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
1962
+ dependencies = [
1963
+ "windows-sys 0.61.2",
1964
+ ]
1965
+
1966
+ [[package]]
1967
+ name = "num-bigint"
1968
+ version = "0.4.6"
1969
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1970
+ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
1971
+ dependencies = [
1972
+ "num-integer",
1973
+ "num-traits",
1974
+ ]
1975
+
1976
+ [[package]]
1977
+ name = "num-complex"
1978
+ version = "0.4.6"
1979
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1980
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
1981
+ dependencies = [
1982
+ "num-traits",
1983
+ ]
1984
+
1985
+ [[package]]
1986
+ name = "num-derive"
1987
+ version = "0.4.2"
1988
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1989
+ checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202"
1990
+ dependencies = [
1991
+ "proc-macro2",
1992
+ "quote",
1993
+ "syn",
1994
+ ]
1995
+
1996
+ [[package]]
1997
+ name = "num-integer"
1998
+ version = "0.1.46"
1999
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2000
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
2001
+ dependencies = [
2002
+ "num-traits",
2003
+ ]
2004
+
2005
+ [[package]]
2006
+ name = "num-rational"
2007
+ version = "0.4.2"
2008
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2009
+ checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
2010
+ dependencies = [
2011
+ "num-bigint",
2012
+ "num-integer",
2013
+ "num-traits",
2014
+ ]
2015
+
2016
+ [[package]]
2017
+ name = "num-traits"
2018
+ version = "0.2.19"
2019
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2020
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
2021
+ dependencies = [
2022
+ "autocfg",
2023
+ ]
2024
+
2025
+ [[package]]
2026
+ name = "number_prefix"
2027
+ version = "0.4.0"
2028
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2029
+ checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"
2030
+
2031
+ [[package]]
2032
+ name = "once_cell"
2033
+ version = "1.21.4"
2034
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2035
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
2036
+
2037
+ [[package]]
2038
+ name = "onig"
2039
+ version = "6.5.1"
2040
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2041
+ checksum = "336b9c63443aceef14bea841b899035ae3abe89b7c486aaf4c5bd8aafedac3f0"
2042
+ dependencies = [
2043
+ "bitflags",
2044
+ "libc",
2045
+ "once_cell",
2046
+ "onig_sys",
2047
+ ]
2048
+
2049
+ [[package]]
2050
+ name = "onig_sys"
2051
+ version = "69.9.1"
2052
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2053
+ checksum = "c7f86c6eef3d6df15f23bcfb6af487cbd2fed4e5581d58d5bf1f5f8b7f6727dc"
2054
+ dependencies = [
2055
+ "cc",
2056
+ "pkg-config",
2057
+ ]
2058
+
2059
+ [[package]]
2060
+ name = "oorandom"
2061
+ version = "11.1.5"
2062
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2063
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
2064
+
2065
+ [[package]]
2066
+ name = "openssl"
2067
+ version = "0.10.76"
2068
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2069
+ checksum = "951c002c75e16ea2c65b8c7e4d3d51d5530d8dfa7d060b4776828c88cfb18ecf"
2070
+ dependencies = [
2071
+ "bitflags",
2072
+ "cfg-if",
2073
+ "foreign-types",
2074
+ "libc",
2075
+ "once_cell",
2076
+ "openssl-macros",
2077
+ "openssl-sys",
2078
+ ]
2079
+
2080
+ [[package]]
2081
+ name = "openssl-macros"
2082
+ version = "0.1.1"
2083
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2084
+ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
2085
+ dependencies = [
2086
+ "proc-macro2",
2087
+ "quote",
2088
+ "syn",
2089
+ ]
2090
+
2091
+ [[package]]
2092
+ name = "openssl-probe"
2093
+ version = "0.2.1"
2094
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2095
+ checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
2096
+
2097
+ [[package]]
2098
+ name = "openssl-sys"
2099
+ version = "0.9.112"
2100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2101
+ checksum = "57d55af3b3e226502be1526dfdba67ab0e9c96fc293004e79576b2b9edb0dbdb"
2102
+ dependencies = [
2103
+ "cc",
2104
+ "libc",
2105
+ "pkg-config",
2106
+ "vcpkg",
2107
+ ]
2108
+
2109
+ [[package]]
2110
+ name = "option-ext"
2111
+ version = "0.2.0"
2112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2113
+ checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
2114
+
2115
+ [[package]]
2116
+ name = "ort"
2117
+ version = "2.0.0-rc.9"
2118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2119
+ checksum = "52afb44b6b0cffa9bf45e4d37e5a4935b0334a51570658e279e9e3e6cf324aa5"
2120
+ dependencies = [
2121
+ "ndarray",
2122
+ "ort-sys",
2123
+ "tracing",
2124
+ ]
2125
+
2126
+ [[package]]
2127
+ name = "ort-sys"
2128
+ version = "2.0.0-rc.9"
2129
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2130
+ checksum = "c41d7757331aef2d04b9cb09b45583a59217628beaf91895b7e76187b6e8c088"
2131
+ dependencies = [
2132
+ "flate2",
2133
+ "pkg-config",
2134
+ "sha2",
2135
+ "tar",
2136
+ "ureq",
2137
+ ]
2138
+
2139
+ [[package]]
2140
+ name = "page_size"
2141
+ version = "0.6.0"
2142
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2143
+ checksum = "30d5b2194ed13191c1999ae0704b7839fb18384fa22e49b57eeaa97d79ce40da"
2144
+ dependencies = [
2145
+ "libc",
2146
+ "winapi",
2147
+ ]
2148
+
2149
+ [[package]]
2150
+ name = "parking_lot"
2151
+ version = "0.12.5"
2152
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2153
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
2154
+ dependencies = [
2155
+ "lock_api",
2156
+ "parking_lot_core",
2157
+ ]
2158
+
2159
+ [[package]]
2160
+ name = "parking_lot_core"
2161
+ version = "0.9.12"
2162
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2163
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
2164
+ dependencies = [
2165
+ "cfg-if",
2166
+ "libc",
2167
+ "redox_syscall 0.5.18",
2168
+ "smallvec",
2169
+ "windows-link",
2170
+ ]
2171
+
2172
+ [[package]]
2173
+ name = "paste"
2174
+ version = "1.0.15"
2175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2176
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
2177
+
2178
+ [[package]]
2179
+ name = "pastey"
2180
+ version = "0.1.1"
2181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2182
+ checksum = "35fb2e5f958ec131621fdd531e9fc186ed768cbe395337403ae56c17a74c68ec"
2183
+
2184
+ [[package]]
2185
+ name = "percent-encoding"
2186
+ version = "2.3.2"
2187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2188
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
2189
+
2190
+ [[package]]
2191
+ name = "petgraph"
2192
+ version = "0.6.5"
2193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2194
+ checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db"
2195
+ dependencies = [
2196
+ "fixedbitset",
2197
+ "indexmap",
2198
+ ]
2199
+
2200
+ [[package]]
2201
+ name = "pin-project-lite"
2202
+ version = "0.2.17"
2203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2204
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
2205
+
2206
+ [[package]]
2207
+ name = "pin-utils"
2208
+ version = "0.1.0"
2209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2210
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
2211
+
2212
+ [[package]]
2213
+ name = "pkg-config"
2214
+ version = "0.3.32"
2215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2216
+ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
2217
+
2218
+ [[package]]
2219
+ name = "plain"
2220
+ version = "0.2.3"
2221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2222
+ checksum = "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6"
2223
+
2224
+ [[package]]
2225
+ name = "plotters"
2226
+ version = "0.3.7"
2227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2228
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
2229
+ dependencies = [
2230
+ "num-traits",
2231
+ "plotters-backend",
2232
+ "plotters-svg",
2233
+ "wasm-bindgen",
2234
+ "web-sys",
2235
+ ]
2236
+
2237
+ [[package]]
2238
+ name = "plotters-backend"
2239
+ version = "0.3.7"
2240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2241
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
2242
+
2243
+ [[package]]
2244
+ name = "plotters-svg"
2245
+ version = "0.3.7"
2246
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2247
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
2248
+ dependencies = [
2249
+ "plotters-backend",
2250
+ ]
2251
+
2252
+ [[package]]
2253
+ name = "png"
2254
+ version = "0.18.1"
2255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2256
+ checksum = "60769b8b31b2a9f263dae2776c37b1b28ae246943cf719eb6946a1db05128a61"
2257
+ dependencies = [
2258
+ "bitflags",
2259
+ "crc32fast",
2260
+ "fdeflate",
2261
+ "flate2",
2262
+ "miniz_oxide",
2263
+ ]
2264
+
2265
+ [[package]]
2266
+ name = "portable-atomic"
2267
+ version = "1.13.1"
2268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2269
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
2270
+
2271
+ [[package]]
2272
+ name = "portable-atomic-util"
2273
+ version = "0.2.6"
2274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2275
+ checksum = "091397be61a01d4be58e7841595bd4bfedb15f1cd54977d79b8271e94ed799a3"
2276
+ dependencies = [
2277
+ "portable-atomic",
2278
+ ]
2279
+
2280
+ [[package]]
2281
+ name = "potential_utf"
2282
+ version = "0.1.4"
2283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2284
+ checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
2285
+ dependencies = [
2286
+ "zerovec",
2287
+ ]
2288
+
2289
+ [[package]]
2290
+ name = "ppv-lite86"
2291
+ version = "0.2.21"
2292
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2293
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
2294
+ dependencies = [
2295
+ "zerocopy",
2296
+ ]
2297
+
2298
+ [[package]]
2299
+ name = "prettyplease"
2300
+ version = "0.2.37"
2301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2302
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
2303
+ dependencies = [
2304
+ "proc-macro2",
2305
+ "syn",
2306
+ ]
2307
+
2308
+ [[package]]
2309
+ name = "proc-macro2"
2310
+ version = "1.0.106"
2311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2312
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
2313
+ dependencies = [
2314
+ "unicode-ident",
2315
+ ]
2316
+
2317
+ [[package]]
2318
+ name = "profiling"
2319
+ version = "1.0.17"
2320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2321
+ checksum = "3eb8486b569e12e2c32ad3e204dbaba5e4b5b216e9367044f25f1dba42341773"
2322
+ dependencies = [
2323
+ "profiling-procmacros",
2324
+ ]
2325
+
2326
+ [[package]]
2327
+ name = "profiling-procmacros"
2328
+ version = "1.0.17"
2329
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2330
+ checksum = "52717f9a02b6965224f95ca2a81e2e0c5c43baacd28ca057577988930b6c3d5b"
2331
+ dependencies = [
2332
+ "quote",
2333
+ "syn",
2334
+ ]
2335
+
2336
+ [[package]]
2337
+ name = "proptest"
2338
+ version = "1.10.0"
2339
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2340
+ checksum = "37566cb3fdacef14c0737f9546df7cfeadbfbc9fef10991038bf5015d0c80532"
2341
+ dependencies = [
2342
+ "bit-set",
2343
+ "bit-vec",
2344
+ "bitflags",
2345
+ "num-traits",
2346
+ "rand",
2347
+ "rand_chacha",
2348
+ "rand_xorshift",
2349
+ "regex-syntax",
2350
+ "rusty-fork",
2351
+ "tempfile",
2352
+ "unarray",
2353
+ ]
2354
+
2355
+ [[package]]
2356
+ name = "ptr_meta"
2357
+ version = "0.3.1"
2358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2359
+ checksum = "0b9a0cf95a1196af61d4f1cbdab967179516d9a4a4312af1f31948f8f6224a79"
2360
+ dependencies = [
2361
+ "ptr_meta_derive",
2362
+ ]
2363
+
2364
+ [[package]]
2365
+ name = "ptr_meta_derive"
2366
+ version = "0.3.1"
2367
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2368
+ checksum = "7347867d0a7e1208d93b46767be83e2b8f978c3dad35f775ac8d8847551d6fe1"
2369
+ dependencies = [
2370
+ "proc-macro2",
2371
+ "quote",
2372
+ "syn",
2373
+ ]
2374
+
2375
+ [[package]]
2376
+ name = "pxfm"
2377
+ version = "0.1.28"
2378
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2379
+ checksum = "b5a041e753da8b807c9255f28de81879c78c876392ff2469cde94799b2896b9d"
2380
+
2381
+ [[package]]
2382
+ name = "pyo3"
2383
+ version = "0.20.3"
2384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2385
+ checksum = "53bdbb96d49157e65d45cc287af5f32ffadd5f4761438b527b055fb0d4bb8233"
2386
+ dependencies = [
2387
+ "cfg-if",
2388
+ "indoc",
2389
+ "libc",
2390
+ "memoffset",
2391
+ "parking_lot",
2392
+ "portable-atomic",
2393
+ "pyo3-build-config",
2394
+ "pyo3-ffi",
2395
+ "pyo3-macros",
2396
+ "unindent",
2397
+ ]
2398
+
2399
+ [[package]]
2400
+ name = "pyo3-build-config"
2401
+ version = "0.20.3"
2402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2403
+ checksum = "deaa5745de3f5231ce10517a1f5dd97d53e5a2fd77aa6b5842292085831d48d7"
2404
+ dependencies = [
2405
+ "once_cell",
2406
+ "target-lexicon",
2407
+ ]
2408
+
2409
+ [[package]]
2410
+ name = "pyo3-ffi"
2411
+ version = "0.20.3"
2412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2413
+ checksum = "62b42531d03e08d4ef1f6e85a2ed422eb678b8cd62b762e53891c05faf0d4afa"
2414
+ dependencies = [
2415
+ "libc",
2416
+ "pyo3-build-config",
2417
+ ]
2418
+
2419
+ [[package]]
2420
+ name = "pyo3-macros"
2421
+ version = "0.20.3"
2422
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2423
+ checksum = "7305c720fa01b8055ec95e484a6eca7a83c841267f0dd5280f0c8b8551d2c158"
2424
+ dependencies = [
2425
+ "proc-macro2",
2426
+ "pyo3-macros-backend",
2427
+ "quote",
2428
+ "syn",
2429
+ ]
2430
+
2431
+ [[package]]
2432
+ name = "pyo3-macros-backend"
2433
+ version = "0.20.3"
2434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2435
+ checksum = "7c7e9b68bb9c3149c5b0cade5d07f953d6d125eb4337723c4ccdb665f1f96185"
2436
+ dependencies = [
2437
+ "heck 0.4.1",
2438
+ "proc-macro2",
2439
+ "pyo3-build-config",
2440
+ "quote",
2441
+ "syn",
2442
+ ]
2443
+
2444
+ [[package]]
2445
+ name = "qoi"
2446
+ version = "0.4.1"
2447
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2448
+ checksum = "7f6d64c71eb498fe9eae14ce4ec935c555749aef511cca85b5568910d6e48001"
2449
+ dependencies = [
2450
+ "bytemuck",
2451
+ ]
2452
+
2453
+ [[package]]
2454
+ name = "quick-error"
2455
+ version = "1.2.3"
2456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2457
+ checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
2458
+
2459
+ [[package]]
2460
+ name = "quick-error"
2461
+ version = "2.0.1"
2462
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2463
+ checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3"
2464
+
2465
+ [[package]]
2466
+ name = "quote"
2467
+ version = "1.0.45"
2468
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2469
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
2470
+ dependencies = [
2471
+ "proc-macro2",
2472
+ ]
2473
+
2474
+ [[package]]
2475
+ name = "r-efi"
2476
+ version = "5.3.0"
2477
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2478
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
2479
+
2480
+ [[package]]
2481
+ name = "r-efi"
2482
+ version = "6.0.0"
2483
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2484
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
2485
+
2486
+ [[package]]
2487
+ name = "rancor"
2488
+ version = "0.1.1"
2489
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2490
+ checksum = "a063ea72381527c2a0561da9c80000ef822bdd7c3241b1cc1b12100e3df081ee"
2491
+ dependencies = [
2492
+ "ptr_meta",
2493
+ ]
2494
+
2495
+ [[package]]
2496
+ name = "rand"
2497
+ version = "0.9.2"
2498
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2499
+ checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
2500
+ dependencies = [
2501
+ "rand_chacha",
2502
+ "rand_core",
2503
+ ]
2504
+
2505
+ [[package]]
2506
+ name = "rand_chacha"
2507
+ version = "0.9.0"
2508
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2509
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
2510
+ dependencies = [
2511
+ "ppv-lite86",
2512
+ "rand_core",
2513
+ ]
2514
+
2515
+ [[package]]
2516
+ name = "rand_core"
2517
+ version = "0.9.5"
2518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2519
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
2520
+ dependencies = [
2521
+ "getrandom 0.3.4",
2522
+ ]
2523
+
2524
+ [[package]]
2525
+ name = "rand_xorshift"
2526
+ version = "0.4.0"
2527
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2528
+ checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
2529
+ dependencies = [
2530
+ "rand_core",
2531
+ ]
2532
+
2533
+ [[package]]
2534
+ name = "rav1e"
2535
+ version = "0.8.1"
2536
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2537
+ checksum = "43b6dd56e85d9483277cde964fd1bdb0428de4fec5ebba7540995639a21cb32b"
2538
+ dependencies = [
2539
+ "aligned-vec",
2540
+ "arbitrary",
2541
+ "arg_enum_proc_macro",
2542
+ "arrayvec",
2543
+ "av-scenechange",
2544
+ "av1-grain",
2545
+ "bitstream-io",
2546
+ "built",
2547
+ "cfg-if",
2548
+ "interpolate_name",
2549
+ "itertools 0.14.0",
2550
+ "libc",
2551
+ "libfuzzer-sys",
2552
+ "log",
2553
+ "maybe-rayon",
2554
+ "new_debug_unreachable",
2555
+ "noop_proc_macro",
2556
+ "num-derive",
2557
+ "num-traits",
2558
+ "paste",
2559
+ "profiling",
2560
+ "rand",
2561
+ "rand_chacha",
2562
+ "simd_helpers",
2563
+ "thiserror",
2564
+ "v_frame",
2565
+ "wasm-bindgen",
2566
+ ]
2567
+
2568
+ [[package]]
2569
+ name = "ravif"
2570
+ version = "0.13.0"
2571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2572
+ checksum = "e52310197d971b0f5be7fe6b57530dcd27beb35c1b013f29d66c1ad73fbbcc45"
2573
+ dependencies = [
2574
+ "avif-serialize",
2575
+ "imgref",
2576
+ "loop9",
2577
+ "quick-error 2.0.1",
2578
+ "rav1e",
2579
+ "rayon",
2580
+ "rgb",
2581
+ ]
2582
+
2583
+ [[package]]
2584
+ name = "rawpointer"
2585
+ version = "0.2.1"
2586
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2587
+ checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
2588
+
2589
+ [[package]]
2590
+ name = "rayon"
2591
+ version = "1.11.0"
2592
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2593
+ checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
2594
+ dependencies = [
2595
+ "either",
2596
+ "rayon-core",
2597
+ ]
2598
+
2599
+ [[package]]
2600
+ name = "rayon-cond"
2601
+ version = "0.4.0"
2602
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2603
+ checksum = "2964d0cf57a3e7a06e8183d14a8b527195c706b7983549cd5462d5aa3747438f"
2604
+ dependencies = [
2605
+ "either",
2606
+ "itertools 0.14.0",
2607
+ "rayon",
2608
+ ]
2609
+
2610
+ [[package]]
2611
+ name = "rayon-core"
2612
+ version = "1.13.0"
2613
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2614
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
2615
+ dependencies = [
2616
+ "crossbeam-deque",
2617
+ "crossbeam-utils",
2618
+ ]
2619
+
2620
+ [[package]]
2621
+ name = "redb"
2622
+ version = "2.6.3"
2623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2624
+ checksum = "8eca1e9d98d5a7e9002d0013e18d5a9b000aee942eb134883a82f06ebffb6c01"
2625
+ dependencies = [
2626
+ "libc",
2627
+ ]
2628
+
2629
+ [[package]]
2630
+ name = "redox_syscall"
2631
+ version = "0.5.18"
2632
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2633
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
2634
+ dependencies = [
2635
+ "bitflags",
2636
+ ]
2637
+
2638
+ [[package]]
2639
+ name = "redox_syscall"
2640
+ version = "0.7.3"
2641
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2642
+ checksum = "6ce70a74e890531977d37e532c34d45e9055d2409ed08ddba14529471ed0be16"
2643
+ dependencies = [
2644
+ "bitflags",
2645
+ ]
2646
+
2647
+ [[package]]
2648
+ name = "redox_users"
2649
+ version = "0.5.2"
2650
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2651
+ checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac"
2652
+ dependencies = [
2653
+ "getrandom 0.2.17",
2654
+ "libredox",
2655
+ "thiserror",
2656
+ ]
2657
+
2658
+ [[package]]
2659
+ name = "regex"
2660
+ version = "1.12.3"
2661
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2662
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
2663
+ dependencies = [
2664
+ "aho-corasick",
2665
+ "memchr",
2666
+ "regex-automata",
2667
+ "regex-syntax",
2668
+ ]
2669
+
2670
+ [[package]]
2671
+ name = "regex-automata"
2672
+ version = "0.4.14"
2673
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2674
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
2675
+ dependencies = [
2676
+ "aho-corasick",
2677
+ "memchr",
2678
+ "regex-syntax",
2679
+ ]
2680
+
2681
+ [[package]]
2682
+ name = "regex-syntax"
2683
+ version = "0.8.10"
2684
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2685
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
2686
+
2687
+ [[package]]
2688
+ name = "rend"
2689
+ version = "0.5.3"
2690
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2691
+ checksum = "cadadef317c2f20755a64d7fdc48f9e7178ee6b0e1f7fce33fa60f1d68a276e6"
2692
+ dependencies = [
2693
+ "bytecheck",
2694
+ ]
2695
+
2696
+ [[package]]
2697
+ name = "reqwest"
2698
+ version = "0.12.28"
2699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2700
+ checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
2701
+ dependencies = [
2702
+ "base64 0.22.1",
2703
+ "bytes",
2704
+ "encoding_rs",
2705
+ "futures-core",
2706
+ "futures-util",
2707
+ "h2",
2708
+ "http",
2709
+ "http-body",
2710
+ "http-body-util",
2711
+ "hyper",
2712
+ "hyper-rustls",
2713
+ "hyper-tls",
2714
+ "hyper-util",
2715
+ "js-sys",
2716
+ "log",
2717
+ "mime",
2718
+ "native-tls",
2719
+ "percent-encoding",
2720
+ "pin-project-lite",
2721
+ "rustls-pki-types",
2722
+ "serde",
2723
+ "serde_json",
2724
+ "serde_urlencoded",
2725
+ "sync_wrapper",
2726
+ "tokio",
2727
+ "tokio-native-tls",
2728
+ "tokio-util",
2729
+ "tower",
2730
+ "tower-http",
2731
+ "tower-service",
2732
+ "url",
2733
+ "wasm-bindgen",
2734
+ "wasm-bindgen-futures",
2735
+ "wasm-streams",
2736
+ "web-sys",
2737
+ ]
2738
+
2739
+ [[package]]
2740
+ name = "rgb"
2741
+ version = "0.8.53"
2742
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2743
+ checksum = "47b34b781b31e5d73e9fbc8689c70551fd1ade9a19e3e28cfec8580a79290cc4"
2744
+
2745
+ [[package]]
2746
+ name = "ring"
2747
+ version = "0.17.14"
2748
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2749
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
2750
+ dependencies = [
2751
+ "cc",
2752
+ "cfg-if",
2753
+ "getrandom 0.2.17",
2754
+ "libc",
2755
+ "untrusted",
2756
+ "windows-sys 0.52.0",
2757
+ ]
2758
+
2759
+ [[package]]
2760
+ name = "rkyv"
2761
+ version = "0.8.15"
2762
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2763
+ checksum = "1a30e631b7f4a03dee9056b8ef6982e8ba371dd5bedb74d3ec86df4499132c70"
2764
+ dependencies = [
2765
+ "bytecheck",
2766
+ "bytes",
2767
+ "hashbrown 0.16.1",
2768
+ "indexmap",
2769
+ "munge",
2770
+ "ptr_meta",
2771
+ "rancor",
2772
+ "rend",
2773
+ "rkyv_derive",
2774
+ "tinyvec",
2775
+ "uuid",
2776
+ ]
2777
+
2778
+ [[package]]
2779
+ name = "rkyv_derive"
2780
+ version = "0.8.15"
2781
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2782
+ checksum = "8100bb34c0a1d0f907143db3149e6b4eea3c33b9ee8b189720168e818303986f"
2783
+ dependencies = [
2784
+ "proc-macro2",
2785
+ "quote",
2786
+ "syn",
2787
+ ]
2788
+
2789
+ [[package]]
2790
+ name = "rust-stemmers"
2791
+ version = "1.2.0"
2792
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2793
+ checksum = "e46a2036019fdb888131db7a4c847a1063a7493f971ed94ea82c67eada63ca54"
2794
+ dependencies = [
2795
+ "serde",
2796
+ "serde_derive",
2797
+ ]
2798
+
2799
+ [[package]]
2800
+ name = "rustc-hash"
2801
+ version = "2.1.1"
2802
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2803
+ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
2804
+
2805
+ [[package]]
2806
+ name = "rustix"
2807
+ version = "1.1.4"
2808
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2809
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
2810
+ dependencies = [
2811
+ "bitflags",
2812
+ "errno",
2813
+ "libc",
2814
+ "linux-raw-sys",
2815
+ "windows-sys 0.61.2",
2816
+ ]
2817
+
2818
+ [[package]]
2819
+ name = "rustls"
2820
+ version = "0.23.37"
2821
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2822
+ checksum = "758025cb5fccfd3bc2fd74708fd4682be41d99e5dff73c377c0646c6012c73a4"
2823
+ dependencies = [
2824
+ "log",
2825
+ "once_cell",
2826
+ "ring",
2827
+ "rustls-pki-types",
2828
+ "rustls-webpki",
2829
+ "subtle",
2830
+ "zeroize",
2831
+ ]
2832
+
2833
+ [[package]]
2834
+ name = "rustls-pki-types"
2835
+ version = "1.14.0"
2836
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2837
+ checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd"
2838
+ dependencies = [
2839
+ "zeroize",
2840
+ ]
2841
+
2842
+ [[package]]
2843
+ name = "rustls-webpki"
2844
+ version = "0.103.9"
2845
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2846
+ checksum = "d7df23109aa6c1567d1c575b9952556388da57401e4ace1d15f79eedad0d8f53"
2847
+ dependencies = [
2848
+ "ring",
2849
+ "rustls-pki-types",
2850
+ "untrusted",
2851
+ ]
2852
+
2853
+ [[package]]
2854
+ name = "rustversion"
2855
+ version = "1.0.22"
2856
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2857
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
2858
+
2859
+ [[package]]
2860
+ name = "rusty-fork"
2861
+ version = "0.3.1"
2862
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2863
+ checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2"
2864
+ dependencies = [
2865
+ "fnv",
2866
+ "quick-error 1.2.3",
2867
+ "tempfile",
2868
+ "wait-timeout",
2869
+ ]
2870
+
2871
+ [[package]]
2872
+ name = "ryu"
2873
+ version = "1.0.23"
2874
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2875
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
2876
+
2877
+ [[package]]
2878
+ name = "same-file"
2879
+ version = "1.0.6"
2880
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2881
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
2882
+ dependencies = [
2883
+ "winapi-util",
2884
+ ]
2885
+
2886
+ [[package]]
2887
+ name = "schannel"
2888
+ version = "0.1.29"
2889
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2890
+ checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939"
2891
+ dependencies = [
2892
+ "windows-sys 0.61.2",
2893
+ ]
2894
+
2895
+ [[package]]
2896
+ name = "scopeguard"
2897
+ version = "1.2.0"
2898
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2899
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2900
+
2901
+ [[package]]
2902
+ name = "scratch"
2903
+ version = "1.0.9"
2904
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2905
+ checksum = "d68f2ec51b097e4c1a75b681a8bec621909b5e91f15bb7b840c4f2f7b01148b2"
2906
+
2907
+ [[package]]
2908
+ name = "security-framework"
2909
+ version = "3.7.0"
2910
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2911
+ checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
2912
+ dependencies = [
2913
+ "bitflags",
2914
+ "core-foundation 0.10.1",
2915
+ "core-foundation-sys",
2916
+ "libc",
2917
+ "security-framework-sys",
2918
+ ]
2919
+
2920
+ [[package]]
2921
+ name = "security-framework-sys"
2922
+ version = "2.17.0"
2923
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2924
+ checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
2925
+ dependencies = [
2926
+ "core-foundation-sys",
2927
+ "libc",
2928
+ ]
2929
+
2930
+ [[package]]
2931
+ name = "semver"
2932
+ version = "1.0.27"
2933
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2934
+ checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
2935
+
2936
+ [[package]]
2937
+ name = "serde"
2938
+ version = "1.0.228"
2939
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2940
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
2941
+ dependencies = [
2942
+ "serde_core",
2943
+ "serde_derive",
2944
+ ]
2945
+
2946
+ [[package]]
2947
+ name = "serde_core"
2948
+ version = "1.0.228"
2949
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2950
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
2951
+ dependencies = [
2952
+ "serde_derive",
2953
+ ]
2954
+
2955
+ [[package]]
2956
+ name = "serde_derive"
2957
+ version = "1.0.228"
2958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2959
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
2960
+ dependencies = [
2961
+ "proc-macro2",
2962
+ "quote",
2963
+ "syn",
2964
+ ]
2965
+
2966
+ [[package]]
2967
+ name = "serde_json"
2968
+ version = "1.0.149"
2969
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2970
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
2971
+ dependencies = [
2972
+ "itoa",
2973
+ "memchr",
2974
+ "serde",
2975
+ "serde_core",
2976
+ "zmij",
2977
+ ]
2978
+
2979
+ [[package]]
2980
+ name = "serde_urlencoded"
2981
+ version = "0.7.1"
2982
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2983
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
2984
+ dependencies = [
2985
+ "form_urlencoded",
2986
+ "itoa",
2987
+ "ryu",
2988
+ "serde",
2989
+ ]
2990
+
2991
+ [[package]]
2992
+ name = "sha2"
2993
+ version = "0.10.9"
2994
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2995
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
2996
+ dependencies = [
2997
+ "cfg-if",
2998
+ "cpufeatures",
2999
+ "digest",
3000
+ ]
3001
+
3002
+ [[package]]
3003
+ name = "sharded-slab"
3004
+ version = "0.1.7"
3005
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3006
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
3007
+ dependencies = [
3008
+ "lazy_static",
3009
+ ]
3010
+
3011
+ [[package]]
3012
+ name = "shlex"
3013
+ version = "1.3.0"
3014
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3015
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
3016
+
3017
+ [[package]]
3018
+ name = "simd-adler32"
3019
+ version = "0.3.8"
3020
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3021
+ checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2"
3022
+
3023
+ [[package]]
3024
+ name = "simd_helpers"
3025
+ version = "0.1.0"
3026
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3027
+ checksum = "95890f873bec569a0362c235787f3aca6e1e887302ba4840839bcc6459c42da6"
3028
+ dependencies = [
3029
+ "quote",
3030
+ ]
3031
+
3032
+ [[package]]
3033
+ name = "simdutf8"
3034
+ version = "0.1.5"
3035
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3036
+ checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
3037
+
3038
+ [[package]]
3039
+ name = "slab"
3040
+ version = "0.4.12"
3041
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3042
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
3043
+
3044
+ [[package]]
3045
+ name = "smallvec"
3046
+ version = "1.15.1"
3047
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3048
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
3049
+
3050
+ [[package]]
3051
+ name = "socket2"
3052
+ version = "0.6.3"
3053
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3054
+ checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e"
3055
+ dependencies = [
3056
+ "libc",
3057
+ "windows-sys 0.61.2",
3058
+ ]
3059
+
3060
+ [[package]]
3061
+ name = "socks"
3062
+ version = "0.3.4"
3063
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3064
+ checksum = "f0c3dbbd9ae980613c6dd8e28a9407b50509d3803b57624d5dfe8315218cd58b"
3065
+ dependencies = [
3066
+ "byteorder",
3067
+ "libc",
3068
+ "winapi",
3069
+ ]
3070
+
3071
+ [[package]]
3072
+ name = "spm_precompiled"
3073
+ version = "0.1.4"
3074
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3075
+ checksum = "5851699c4033c63636f7ea4cf7b7c1f1bf06d0cc03cfb42e711de5a5c46cf326"
3076
+ dependencies = [
3077
+ "base64 0.13.1",
3078
+ "nom 7.1.3",
3079
+ "serde",
3080
+ "unicode-segmentation",
3081
+ ]
3082
+
3083
+ [[package]]
3084
+ name = "stable_deref_trait"
3085
+ version = "1.2.1"
3086
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3087
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
3088
+
3089
+ [[package]]
3090
+ name = "static_assertions"
3091
+ version = "1.1.0"
3092
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3093
+ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
3094
+
3095
+ [[package]]
3096
+ name = "strsim"
3097
+ version = "0.11.1"
3098
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3099
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
3100
+
3101
+ [[package]]
3102
+ name = "subtle"
3103
+ version = "2.6.1"
3104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3105
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
3106
+
3107
+ [[package]]
3108
+ name = "syn"
3109
+ version = "2.0.117"
3110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3111
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
3112
+ dependencies = [
3113
+ "proc-macro2",
3114
+ "quote",
3115
+ "unicode-ident",
3116
+ ]
3117
+
3118
+ [[package]]
3119
+ name = "sync_wrapper"
3120
+ version = "1.0.2"
3121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3122
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
3123
+ dependencies = [
3124
+ "futures-core",
3125
+ ]
3126
+
3127
+ [[package]]
3128
+ name = "synstructure"
3129
+ version = "0.13.2"
3130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3131
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
3132
+ dependencies = [
3133
+ "proc-macro2",
3134
+ "quote",
3135
+ "syn",
3136
+ ]
3137
+
3138
+ [[package]]
3139
+ name = "system-configuration"
3140
+ version = "0.7.0"
3141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3142
+ checksum = "a13f3d0daba03132c0aa9767f98351b3488edc2c100cda2d2ec2b04f3d8d3c8b"
3143
+ dependencies = [
3144
+ "bitflags",
3145
+ "core-foundation 0.9.4",
3146
+ "system-configuration-sys",
3147
+ ]
3148
+
3149
+ [[package]]
3150
+ name = "system-configuration-sys"
3151
+ version = "0.6.0"
3152
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3153
+ checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4"
3154
+ dependencies = [
3155
+ "core-foundation-sys",
3156
+ "libc",
3157
+ ]
3158
+
3159
+ [[package]]
3160
+ name = "tar"
3161
+ version = "0.4.44"
3162
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3163
+ checksum = "1d863878d212c87a19c1a610eb53bb01fe12951c0501cf5a0d65f724914a667a"
3164
+ dependencies = [
3165
+ "filetime",
3166
+ "libc",
3167
+ "xattr",
3168
+ ]
3169
+
3170
+ [[package]]
3171
+ name = "target-lexicon"
3172
+ version = "0.12.16"
3173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3174
+ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
3175
+
3176
+ [[package]]
3177
+ name = "tempfile"
3178
+ version = "3.27.0"
3179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3180
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
3181
+ dependencies = [
3182
+ "fastrand",
3183
+ "getrandom 0.4.2",
3184
+ "once_cell",
3185
+ "rustix",
3186
+ "windows-sys 0.61.2",
3187
+ ]
3188
+
3189
+ [[package]]
3190
+ name = "termcolor"
3191
+ version = "1.4.1"
3192
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3193
+ checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
3194
+ dependencies = [
3195
+ "winapi-util",
3196
+ ]
3197
+
3198
+ [[package]]
3199
+ name = "thiserror"
3200
+ version = "2.0.18"
3201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3202
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
3203
+ dependencies = [
3204
+ "thiserror-impl",
3205
+ ]
3206
+
3207
+ [[package]]
3208
+ name = "thiserror-impl"
3209
+ version = "2.0.18"
3210
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3211
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
3212
+ dependencies = [
3213
+ "proc-macro2",
3214
+ "quote",
3215
+ "syn",
3216
+ ]
3217
+
3218
+ [[package]]
3219
+ name = "thread_local"
3220
+ version = "1.1.9"
3221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3222
+ checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
3223
+ dependencies = [
3224
+ "cfg-if",
3225
+ ]
3226
+
3227
+ [[package]]
3228
+ name = "tiff"
3229
+ version = "0.11.3"
3230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3231
+ checksum = "b63feaf3343d35b6ca4d50483f94843803b0f51634937cc2ec519fc32232bc52"
3232
+ dependencies = [
3233
+ "fax",
3234
+ "flate2",
3235
+ "half",
3236
+ "quick-error 2.0.1",
3237
+ "weezl",
3238
+ "zune-jpeg",
3239
+ ]
3240
+
3241
+ [[package]]
3242
+ name = "tinystr"
3243
+ version = "0.8.2"
3244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3245
+ checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
3246
+ dependencies = [
3247
+ "displaydoc",
3248
+ "zerovec",
3249
+ ]
3250
+
3251
+ [[package]]
3252
+ name = "tinytemplate"
3253
+ version = "1.2.1"
3254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3255
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
3256
+ dependencies = [
3257
+ "serde",
3258
+ "serde_json",
3259
+ ]
3260
+
3261
+ [[package]]
3262
+ name = "tinyvec"
3263
+ version = "1.11.0"
3264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3265
+ checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
3266
+ dependencies = [
3267
+ "tinyvec_macros",
3268
+ ]
3269
+
3270
+ [[package]]
3271
+ name = "tinyvec_macros"
3272
+ version = "0.1.1"
3273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3274
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
3275
+
3276
+ [[package]]
3277
+ name = "tokenizers"
3278
+ version = "0.21.4"
3279
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3280
+ checksum = "a620b996116a59e184c2fa2dfd8251ea34a36d0a514758c6f966386bd2e03476"
3281
+ dependencies = [
3282
+ "ahash",
3283
+ "aho-corasick",
3284
+ "compact_str",
3285
+ "dary_heap",
3286
+ "derive_builder",
3287
+ "esaxx-rs",
3288
+ "getrandom 0.3.4",
3289
+ "itertools 0.14.0",
3290
+ "log",
3291
+ "macro_rules_attribute",
3292
+ "monostate",
3293
+ "onig",
3294
+ "paste",
3295
+ "rand",
3296
+ "rayon",
3297
+ "rayon-cond",
3298
+ "regex",
3299
+ "regex-syntax",
3300
+ "serde",
3301
+ "serde_json",
3302
+ "spm_precompiled",
3303
+ "thiserror",
3304
+ "unicode-normalization-alignments",
3305
+ "unicode-segmentation",
3306
+ "unicode_categories",
3307
+ ]
3308
+
3309
+ [[package]]
3310
+ name = "tokio"
3311
+ version = "1.50.0"
3312
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3313
+ checksum = "27ad5e34374e03cfffefc301becb44e9dc3c17584f414349ebe29ed26661822d"
3314
+ dependencies = [
3315
+ "bytes",
3316
+ "libc",
3317
+ "mio",
3318
+ "pin-project-lite",
3319
+ "socket2",
3320
+ "windows-sys 0.61.2",
3321
+ ]
3322
+
3323
+ [[package]]
3324
+ name = "tokio-native-tls"
3325
+ version = "0.3.1"
3326
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3327
+ checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
3328
+ dependencies = [
3329
+ "native-tls",
3330
+ "tokio",
3331
+ ]
3332
+
3333
+ [[package]]
3334
+ name = "tokio-rustls"
3335
+ version = "0.26.4"
3336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3337
+ checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
3338
+ dependencies = [
3339
+ "rustls",
3340
+ "tokio",
3341
+ ]
3342
+
3343
+ [[package]]
3344
+ name = "tokio-util"
3345
+ version = "0.7.18"
3346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3347
+ checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
3348
+ dependencies = [
3349
+ "bytes",
3350
+ "futures-core",
3351
+ "futures-sink",
3352
+ "pin-project-lite",
3353
+ "tokio",
3354
+ ]
3355
+
3356
+ [[package]]
3357
+ name = "tower"
3358
+ version = "0.5.3"
3359
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3360
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
3361
+ dependencies = [
3362
+ "futures-core",
3363
+ "futures-util",
3364
+ "pin-project-lite",
3365
+ "sync_wrapper",
3366
+ "tokio",
3367
+ "tower-layer",
3368
+ "tower-service",
3369
+ ]
3370
+
3371
+ [[package]]
3372
+ name = "tower-http"
3373
+ version = "0.6.8"
3374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3375
+ checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
3376
+ dependencies = [
3377
+ "bitflags",
3378
+ "bytes",
3379
+ "futures-util",
3380
+ "http",
3381
+ "http-body",
3382
+ "iri-string",
3383
+ "pin-project-lite",
3384
+ "tower",
3385
+ "tower-layer",
3386
+ "tower-service",
3387
+ ]
3388
+
3389
+ [[package]]
3390
+ name = "tower-layer"
3391
+ version = "0.3.3"
3392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3393
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
3394
+
3395
+ [[package]]
3396
+ name = "tower-service"
3397
+ version = "0.3.3"
3398
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3399
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
3400
+
3401
+ [[package]]
3402
+ name = "tracing"
3403
+ version = "0.1.44"
3404
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3405
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
3406
+ dependencies = [
3407
+ "pin-project-lite",
3408
+ "tracing-attributes",
3409
+ "tracing-core",
3410
+ ]
3411
+
3412
+ [[package]]
3413
+ name = "tracing-attributes"
3414
+ version = "0.1.31"
3415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3416
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
3417
+ dependencies = [
3418
+ "proc-macro2",
3419
+ "quote",
3420
+ "syn",
3421
+ ]
3422
+
3423
+ [[package]]
3424
+ name = "tracing-core"
3425
+ version = "0.1.36"
3426
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3427
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
3428
+ dependencies = [
3429
+ "once_cell",
3430
+ "valuable",
3431
+ ]
3432
+
3433
+ [[package]]
3434
+ name = "tracing-log"
3435
+ version = "0.2.0"
3436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3437
+ checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
3438
+ dependencies = [
3439
+ "log",
3440
+ "once_cell",
3441
+ "tracing-core",
3442
+ ]
3443
+
3444
+ [[package]]
3445
+ name = "tracing-subscriber"
3446
+ version = "0.3.23"
3447
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3448
+ checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319"
3449
+ dependencies = [
3450
+ "matchers",
3451
+ "nu-ansi-term",
3452
+ "once_cell",
3453
+ "regex-automata",
3454
+ "sharded-slab",
3455
+ "smallvec",
3456
+ "thread_local",
3457
+ "tracing",
3458
+ "tracing-core",
3459
+ "tracing-log",
3460
+ ]
3461
+
3462
+ [[package]]
3463
+ name = "try-lock"
3464
+ version = "0.2.5"
3465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3466
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
3467
+
3468
+ [[package]]
3469
+ name = "typenum"
3470
+ version = "1.19.0"
3471
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3472
+ checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
3473
+
3474
+ [[package]]
3475
+ name = "unarray"
3476
+ version = "0.1.4"
3477
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3478
+ checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
3479
+
3480
+ [[package]]
3481
+ name = "unicode-ident"
3482
+ version = "1.0.24"
3483
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3484
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
3485
+
3486
+ [[package]]
3487
+ name = "unicode-normalization-alignments"
3488
+ version = "0.1.12"
3489
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3490
+ checksum = "43f613e4fa046e69818dd287fdc4bc78175ff20331479dab6e1b0f98d57062de"
3491
+ dependencies = [
3492
+ "smallvec",
3493
+ ]
3494
+
3495
+ [[package]]
3496
+ name = "unicode-segmentation"
3497
+ version = "1.12.0"
3498
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3499
+ checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
3500
+
3501
+ [[package]]
3502
+ name = "unicode-width"
3503
+ version = "0.2.2"
3504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3505
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
3506
+
3507
+ [[package]]
3508
+ name = "unicode-xid"
3509
+ version = "0.2.6"
3510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3511
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
3512
+
3513
+ [[package]]
3514
+ name = "unicode_categories"
3515
+ version = "0.1.1"
3516
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3517
+ checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e"
3518
+
3519
+ [[package]]
3520
+ name = "unindent"
3521
+ version = "0.2.4"
3522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3523
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
3524
+
3525
+ [[package]]
3526
+ name = "untrusted"
3527
+ version = "0.9.0"
3528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3529
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
3530
+
3531
+ [[package]]
3532
+ name = "ureq"
3533
+ version = "2.12.1"
3534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3535
+ checksum = "02d1a66277ed75f640d608235660df48c8e3c19f3b4edb6a263315626cc3c01d"
3536
+ dependencies = [
3537
+ "base64 0.22.1",
3538
+ "flate2",
3539
+ "log",
3540
+ "native-tls",
3541
+ "once_cell",
3542
+ "rustls",
3543
+ "rustls-pki-types",
3544
+ "serde",
3545
+ "serde_json",
3546
+ "socks",
3547
+ "url",
3548
+ "webpki-roots 0.26.11",
3549
+ ]
3550
+
3551
+ [[package]]
3552
+ name = "url"
3553
+ version = "2.5.8"
3554
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3555
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
3556
+ dependencies = [
3557
+ "form_urlencoded",
3558
+ "idna",
3559
+ "percent-encoding",
3560
+ "serde",
3561
+ ]
3562
+
3563
+ [[package]]
3564
+ name = "usearch"
3565
+ version = "2.23.0"
3566
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3567
+ checksum = "0a03c05af8d678ec19f014c734ab667c20ea54128b4f9a1472cb470246a9b341"
3568
+ dependencies = [
3569
+ "cxx",
3570
+ "cxx-build",
3571
+ ]
3572
+
3573
+ [[package]]
3574
+ name = "utf8_iter"
3575
+ version = "1.0.4"
3576
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3577
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
3578
+
3579
+ [[package]]
3580
+ name = "uuid"
3581
+ version = "1.22.0"
3582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3583
+ checksum = "a68d3c8f01c0cfa54a75291d83601161799e4a89a39e0929f4b0354d88757a37"
3584
+ dependencies = [
3585
+ "getrandom 0.4.2",
3586
+ "js-sys",
3587
+ "serde_core",
3588
+ "wasm-bindgen",
3589
+ ]
3590
+
3591
+ [[package]]
3592
+ name = "v_frame"
3593
+ version = "0.3.9"
3594
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3595
+ checksum = "666b7727c8875d6ab5db9533418d7c764233ac9c0cff1d469aec8fa127597be2"
3596
+ dependencies = [
3597
+ "aligned-vec",
3598
+ "num-traits",
3599
+ "wasm-bindgen",
3600
+ ]
3601
+
3602
+ [[package]]
3603
+ name = "valuable"
3604
+ version = "0.1.1"
3605
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3606
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
3607
+
3608
+ [[package]]
3609
+ name = "vcpkg"
3610
+ version = "0.2.15"
3611
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3612
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
3613
+
3614
+ [[package]]
3615
+ name = "version_check"
3616
+ version = "0.9.5"
3617
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3618
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
3619
+
3620
+ [[package]]
3621
+ name = "wait-timeout"
3622
+ version = "0.2.1"
3623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3624
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
3625
+ dependencies = [
3626
+ "libc",
3627
+ ]
3628
+
3629
+ [[package]]
3630
+ name = "walkdir"
3631
+ version = "2.5.0"
3632
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3633
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
3634
+ dependencies = [
3635
+ "same-file",
3636
+ "winapi-util",
3637
+ ]
3638
+
3639
+ [[package]]
3640
+ name = "want"
3641
+ version = "0.3.1"
3642
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3643
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
3644
+ dependencies = [
3645
+ "try-lock",
3646
+ ]
3647
+
3648
+ [[package]]
3649
+ name = "wasi"
3650
+ version = "0.11.1+wasi-snapshot-preview1"
3651
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3652
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
3653
+
3654
+ [[package]]
3655
+ name = "wasip2"
3656
+ version = "1.0.2+wasi-0.2.9"
3657
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3658
+ checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
3659
+ dependencies = [
3660
+ "wit-bindgen",
3661
+ ]
3662
+
3663
+ [[package]]
3664
+ name = "wasip3"
3665
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
3666
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3667
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
3668
+ dependencies = [
3669
+ "wit-bindgen",
3670
+ ]
3671
+
3672
+ [[package]]
3673
+ name = "wasm-bindgen"
3674
+ version = "0.2.114"
3675
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3676
+ checksum = "6532f9a5c1ece3798cb1c2cfdba640b9b3ba884f5db45973a6f442510a87d38e"
3677
+ dependencies = [
3678
+ "cfg-if",
3679
+ "once_cell",
3680
+ "rustversion",
3681
+ "wasm-bindgen-macro",
3682
+ "wasm-bindgen-shared",
3683
+ ]
3684
+
3685
+ [[package]]
3686
+ name = "wasm-bindgen-futures"
3687
+ version = "0.4.64"
3688
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3689
+ checksum = "e9c5522b3a28661442748e09d40924dfb9ca614b21c00d3fd135720e48b67db8"
3690
+ dependencies = [
3691
+ "cfg-if",
3692
+ "futures-util",
3693
+ "js-sys",
3694
+ "once_cell",
3695
+ "wasm-bindgen",
3696
+ "web-sys",
3697
+ ]
3698
+
3699
+ [[package]]
3700
+ name = "wasm-bindgen-macro"
3701
+ version = "0.2.114"
3702
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3703
+ checksum = "18a2d50fcf105fb33bb15f00e7a77b772945a2ee45dcf454961fd843e74c18e6"
3704
+ dependencies = [
3705
+ "quote",
3706
+ "wasm-bindgen-macro-support",
3707
+ ]
3708
+
3709
+ [[package]]
3710
+ name = "wasm-bindgen-macro-support"
3711
+ version = "0.2.114"
3712
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3713
+ checksum = "03ce4caeaac547cdf713d280eda22a730824dd11e6b8c3ca9e42247b25c631e3"
3714
+ dependencies = [
3715
+ "bumpalo",
3716
+ "proc-macro2",
3717
+ "quote",
3718
+ "syn",
3719
+ "wasm-bindgen-shared",
3720
+ ]
3721
+
3722
+ [[package]]
3723
+ name = "wasm-bindgen-shared"
3724
+ version = "0.2.114"
3725
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3726
+ checksum = "75a326b8c223ee17883a4251907455a2431acc2791c98c26279376490c378c16"
3727
+ dependencies = [
3728
+ "unicode-ident",
3729
+ ]
3730
+
3731
+ [[package]]
3732
+ name = "wasm-encoder"
3733
+ version = "0.244.0"
3734
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3735
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
3736
+ dependencies = [
3737
+ "leb128fmt",
3738
+ "wasmparser",
3739
+ ]
3740
+
3741
+ [[package]]
3742
+ name = "wasm-metadata"
3743
+ version = "0.244.0"
3744
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3745
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
3746
+ dependencies = [
3747
+ "anyhow",
3748
+ "indexmap",
3749
+ "wasm-encoder",
3750
+ "wasmparser",
3751
+ ]
3752
+
3753
+ [[package]]
3754
+ name = "wasm-streams"
3755
+ version = "0.4.2"
3756
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3757
+ checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65"
3758
+ dependencies = [
3759
+ "futures-util",
3760
+ "js-sys",
3761
+ "wasm-bindgen",
3762
+ "wasm-bindgen-futures",
3763
+ "web-sys",
3764
+ ]
3765
+
3766
+ [[package]]
3767
+ name = "wasmparser"
3768
+ version = "0.244.0"
3769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3770
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
3771
+ dependencies = [
3772
+ "bitflags",
3773
+ "hashbrown 0.15.5",
3774
+ "indexmap",
3775
+ "semver",
3776
+ ]
3777
+
3778
+ [[package]]
3779
+ name = "web-sys"
3780
+ version = "0.3.91"
3781
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3782
+ checksum = "854ba17bb104abfb26ba36da9729addc7ce7f06f5c0f90f3c391f8461cca21f9"
3783
+ dependencies = [
3784
+ "js-sys",
3785
+ "wasm-bindgen",
3786
+ ]
3787
+
3788
+ [[package]]
3789
+ name = "web-time"
3790
+ version = "1.1.0"
3791
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3792
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
3793
+ dependencies = [
3794
+ "js-sys",
3795
+ "wasm-bindgen",
3796
+ ]
3797
+
3798
+ [[package]]
3799
+ name = "webpki-roots"
3800
+ version = "0.26.11"
3801
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3802
+ checksum = "521bc38abb08001b01866da9f51eb7c5d647a19260e00054a8c7fd5f9e57f7a9"
3803
+ dependencies = [
3804
+ "webpki-roots 1.0.6",
3805
+ ]
3806
+
3807
+ [[package]]
3808
+ name = "webpki-roots"
3809
+ version = "1.0.6"
3810
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3811
+ checksum = "22cfaf3c063993ff62e73cb4311efde4db1efb31ab78a3e5c457939ad5cc0bed"
3812
+ dependencies = [
3813
+ "rustls-pki-types",
3814
+ ]
3815
+
3816
+ [[package]]
3817
+ name = "weezl"
3818
+ version = "0.1.12"
3819
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3820
+ checksum = "a28ac98ddc8b9274cb41bb4d9d4d5c425b6020c50c46f25559911905610b4a88"
3821
+
3822
+ [[package]]
3823
+ name = "winapi"
3824
+ version = "0.3.9"
3825
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3826
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
3827
+ dependencies = [
3828
+ "winapi-i686-pc-windows-gnu",
3829
+ "winapi-x86_64-pc-windows-gnu",
3830
+ ]
3831
+
3832
+ [[package]]
3833
+ name = "winapi-i686-pc-windows-gnu"
3834
+ version = "0.4.0"
3835
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3836
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
3837
+
3838
+ [[package]]
3839
+ name = "winapi-util"
3840
+ version = "0.1.11"
3841
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3842
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
3843
+ dependencies = [
3844
+ "windows-sys 0.61.2",
3845
+ ]
3846
+
3847
+ [[package]]
3848
+ name = "winapi-x86_64-pc-windows-gnu"
3849
+ version = "0.4.0"
3850
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3851
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
3852
+
3853
+ [[package]]
3854
+ name = "windows-link"
3855
+ version = "0.2.1"
3856
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3857
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
3858
+
3859
+ [[package]]
3860
+ name = "windows-registry"
3861
+ version = "0.6.1"
3862
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3863
+ checksum = "02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720"
3864
+ dependencies = [
3865
+ "windows-link",
3866
+ "windows-result",
3867
+ "windows-strings",
3868
+ ]
3869
+
3870
+ [[package]]
3871
+ name = "windows-result"
3872
+ version = "0.4.1"
3873
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3874
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
3875
+ dependencies = [
3876
+ "windows-link",
3877
+ ]
3878
+
3879
+ [[package]]
3880
+ name = "windows-strings"
3881
+ version = "0.5.1"
3882
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3883
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
3884
+ dependencies = [
3885
+ "windows-link",
3886
+ ]
3887
+
3888
+ [[package]]
3889
+ name = "windows-sys"
3890
+ version = "0.52.0"
3891
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3892
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
3893
+ dependencies = [
3894
+ "windows-targets 0.52.6",
3895
+ ]
3896
+
3897
+ [[package]]
3898
+ name = "windows-sys"
3899
+ version = "0.59.0"
3900
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3901
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
3902
+ dependencies = [
3903
+ "windows-targets 0.52.6",
3904
+ ]
3905
+
3906
+ [[package]]
3907
+ name = "windows-sys"
3908
+ version = "0.60.2"
3909
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3910
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
3911
+ dependencies = [
3912
+ "windows-targets 0.53.5",
3913
+ ]
3914
+
3915
+ [[package]]
3916
+ name = "windows-sys"
3917
+ version = "0.61.2"
3918
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3919
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
3920
+ dependencies = [
3921
+ "windows-link",
3922
+ ]
3923
+
3924
+ [[package]]
3925
+ name = "windows-targets"
3926
+ version = "0.52.6"
3927
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3928
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
3929
+ dependencies = [
3930
+ "windows_aarch64_gnullvm 0.52.6",
3931
+ "windows_aarch64_msvc 0.52.6",
3932
+ "windows_i686_gnu 0.52.6",
3933
+ "windows_i686_gnullvm 0.52.6",
3934
+ "windows_i686_msvc 0.52.6",
3935
+ "windows_x86_64_gnu 0.52.6",
3936
+ "windows_x86_64_gnullvm 0.52.6",
3937
+ "windows_x86_64_msvc 0.52.6",
3938
+ ]
3939
+
3940
+ [[package]]
3941
+ name = "windows-targets"
3942
+ version = "0.53.5"
3943
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3944
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
3945
+ dependencies = [
3946
+ "windows-link",
3947
+ "windows_aarch64_gnullvm 0.53.1",
3948
+ "windows_aarch64_msvc 0.53.1",
3949
+ "windows_i686_gnu 0.53.1",
3950
+ "windows_i686_gnullvm 0.53.1",
3951
+ "windows_i686_msvc 0.53.1",
3952
+ "windows_x86_64_gnu 0.53.1",
3953
+ "windows_x86_64_gnullvm 0.53.1",
3954
+ "windows_x86_64_msvc 0.53.1",
3955
+ ]
3956
+
3957
+ [[package]]
3958
+ name = "windows_aarch64_gnullvm"
3959
+ version = "0.52.6"
3960
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3961
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
3962
+
3963
+ [[package]]
3964
+ name = "windows_aarch64_gnullvm"
3965
+ version = "0.53.1"
3966
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3967
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
3968
+
3969
+ [[package]]
3970
+ name = "windows_aarch64_msvc"
3971
+ version = "0.52.6"
3972
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3973
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
3974
+
3975
+ [[package]]
3976
+ name = "windows_aarch64_msvc"
3977
+ version = "0.53.1"
3978
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3979
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
3980
+
3981
+ [[package]]
3982
+ name = "windows_i686_gnu"
3983
+ version = "0.52.6"
3984
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3985
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
3986
+
3987
+ [[package]]
3988
+ name = "windows_i686_gnu"
3989
+ version = "0.53.1"
3990
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3991
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
3992
+
3993
+ [[package]]
3994
+ name = "windows_i686_gnullvm"
3995
+ version = "0.52.6"
3996
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3997
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
3998
+
3999
+ [[package]]
4000
+ name = "windows_i686_gnullvm"
4001
+ version = "0.53.1"
4002
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4003
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
4004
+
4005
+ [[package]]
4006
+ name = "windows_i686_msvc"
4007
+ version = "0.52.6"
4008
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4009
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
4010
+
4011
+ [[package]]
4012
+ name = "windows_i686_msvc"
4013
+ version = "0.53.1"
4014
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4015
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
4016
+
4017
+ [[package]]
4018
+ name = "windows_x86_64_gnu"
4019
+ version = "0.52.6"
4020
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4021
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
4022
+
4023
+ [[package]]
4024
+ name = "windows_x86_64_gnu"
4025
+ version = "0.53.1"
4026
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4027
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
4028
+
4029
+ [[package]]
4030
+ name = "windows_x86_64_gnullvm"
4031
+ version = "0.52.6"
4032
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4033
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
4034
+
4035
+ [[package]]
4036
+ name = "windows_x86_64_gnullvm"
4037
+ version = "0.53.1"
4038
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4039
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
4040
+
4041
+ [[package]]
4042
+ name = "windows_x86_64_msvc"
4043
+ version = "0.52.6"
4044
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4045
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
4046
+
4047
+ [[package]]
4048
+ name = "windows_x86_64_msvc"
4049
+ version = "0.53.1"
4050
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4051
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
4052
+
4053
+ [[package]]
4054
+ name = "wit-bindgen"
4055
+ version = "0.51.0"
4056
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4057
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
4058
+ dependencies = [
4059
+ "wit-bindgen-rust-macro",
4060
+ ]
4061
+
4062
+ [[package]]
4063
+ name = "wit-bindgen-core"
4064
+ version = "0.51.0"
4065
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4066
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
4067
+ dependencies = [
4068
+ "anyhow",
4069
+ "heck 0.5.0",
4070
+ "wit-parser",
4071
+ ]
4072
+
4073
+ [[package]]
4074
+ name = "wit-bindgen-rust"
4075
+ version = "0.51.0"
4076
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4077
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
4078
+ dependencies = [
4079
+ "anyhow",
4080
+ "heck 0.5.0",
4081
+ "indexmap",
4082
+ "prettyplease",
4083
+ "syn",
4084
+ "wasm-metadata",
4085
+ "wit-bindgen-core",
4086
+ "wit-component",
4087
+ ]
4088
+
4089
+ [[package]]
4090
+ name = "wit-bindgen-rust-macro"
4091
+ version = "0.51.0"
4092
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4093
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
4094
+ dependencies = [
4095
+ "anyhow",
4096
+ "prettyplease",
4097
+ "proc-macro2",
4098
+ "quote",
4099
+ "syn",
4100
+ "wit-bindgen-core",
4101
+ "wit-bindgen-rust",
4102
+ ]
4103
+
4104
+ [[package]]
4105
+ name = "wit-component"
4106
+ version = "0.244.0"
4107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4108
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
4109
+ dependencies = [
4110
+ "anyhow",
4111
+ "bitflags",
4112
+ "indexmap",
4113
+ "log",
4114
+ "serde",
4115
+ "serde_derive",
4116
+ "serde_json",
4117
+ "wasm-encoder",
4118
+ "wasm-metadata",
4119
+ "wasmparser",
4120
+ "wit-parser",
4121
+ ]
4122
+
4123
+ [[package]]
4124
+ name = "wit-parser"
4125
+ version = "0.244.0"
4126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4127
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
4128
+ dependencies = [
4129
+ "anyhow",
4130
+ "id-arena",
4131
+ "indexmap",
4132
+ "log",
4133
+ "semver",
4134
+ "serde",
4135
+ "serde_derive",
4136
+ "serde_json",
4137
+ "unicode-xid",
4138
+ "wasmparser",
4139
+ ]
4140
+
4141
+ [[package]]
4142
+ name = "writeable"
4143
+ version = "0.6.2"
4144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4145
+ checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
4146
+
4147
+ [[package]]
4148
+ name = "xattr"
4149
+ version = "1.6.1"
4150
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4151
+ checksum = "32e45ad4206f6d2479085147f02bc2ef834ac85886624a23575ae137c8aa8156"
4152
+ dependencies = [
4153
+ "libc",
4154
+ "rustix",
4155
+ ]
4156
+
4157
+ [[package]]
4158
+ name = "y4m"
4159
+ version = "0.8.0"
4160
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4161
+ checksum = "7a5a4b21e1a62b67a2970e6831bc091d7b87e119e7f9791aef9702e3bef04448"
4162
+
4163
+ [[package]]
4164
+ name = "yoke"
4165
+ version = "0.8.1"
4166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4167
+ checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
4168
+ dependencies = [
4169
+ "stable_deref_trait",
4170
+ "yoke-derive",
4171
+ "zerofrom",
4172
+ ]
4173
+
4174
+ [[package]]
4175
+ name = "yoke-derive"
4176
+ version = "0.8.1"
4177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4178
+ checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
4179
+ dependencies = [
4180
+ "proc-macro2",
4181
+ "quote",
4182
+ "syn",
4183
+ "synstructure",
4184
+ ]
4185
+
4186
+ [[package]]
4187
+ name = "zerocopy"
4188
+ version = "0.8.42"
4189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4190
+ checksum = "f2578b716f8a7a858b7f02d5bd870c14bf4ddbbcf3a4c05414ba6503640505e3"
4191
+ dependencies = [
4192
+ "zerocopy-derive",
4193
+ ]
4194
+
4195
+ [[package]]
4196
+ name = "zerocopy-derive"
4197
+ version = "0.8.42"
4198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4199
+ checksum = "7e6cc098ea4d3bd6246687de65af3f920c430e236bee1e3bf2e441463f08a02f"
4200
+ dependencies = [
4201
+ "proc-macro2",
4202
+ "quote",
4203
+ "syn",
4204
+ ]
4205
+
4206
+ [[package]]
4207
+ name = "zerofrom"
4208
+ version = "0.1.6"
4209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4210
+ checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
4211
+ dependencies = [
4212
+ "zerofrom-derive",
4213
+ ]
4214
+
4215
+ [[package]]
4216
+ name = "zerofrom-derive"
4217
+ version = "0.1.6"
4218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4219
+ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
4220
+ dependencies = [
4221
+ "proc-macro2",
4222
+ "quote",
4223
+ "syn",
4224
+ "synstructure",
4225
+ ]
4226
+
4227
+ [[package]]
4228
+ name = "zeroize"
4229
+ version = "1.8.2"
4230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4231
+ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
4232
+
4233
+ [[package]]
4234
+ name = "zerotrie"
4235
+ version = "0.2.3"
4236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4237
+ checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
4238
+ dependencies = [
4239
+ "displaydoc",
4240
+ "yoke",
4241
+ "zerofrom",
4242
+ ]
4243
+
4244
+ [[package]]
4245
+ name = "zerovec"
4246
+ version = "0.11.5"
4247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4248
+ checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
4249
+ dependencies = [
4250
+ "yoke",
4251
+ "zerofrom",
4252
+ "zerovec-derive",
4253
+ ]
4254
+
4255
+ [[package]]
4256
+ name = "zerovec-derive"
4257
+ version = "0.11.2"
4258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4259
+ checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
4260
+ dependencies = [
4261
+ "proc-macro2",
4262
+ "quote",
4263
+ "syn",
4264
+ ]
4265
+
4266
+ [[package]]
4267
+ name = "zmij"
4268
+ version = "1.0.21"
4269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4270
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
4271
+
4272
+ [[package]]
4273
+ name = "zune-core"
4274
+ version = "0.5.1"
4275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4276
+ checksum = "cb8a0807f7c01457d0379ba880ba6322660448ddebc890ce29bb64da71fb40f9"
4277
+
4278
+ [[package]]
4279
+ name = "zune-inflate"
4280
+ version = "0.2.54"
4281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4282
+ checksum = "73ab332fe2f6680068f3582b16a24f90ad7096d5d39b974d1c0aff0125116f02"
4283
+ dependencies = [
4284
+ "simd-adler32",
4285
+ ]
4286
+
4287
+ [[package]]
4288
+ name = "zune-jpeg"
4289
+ version = "0.5.13"
4290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4291
+ checksum = "ec5f41c76397b7da451efd19915684f727d7e1d516384ca6bd0ec43ec94de23c"
4292
+ dependencies = [
4293
+ "zune-core",
4294
+ ]