pulsehive 0.3.0b2__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 (80) hide show
  1. pulsehive-0.3.0b2/Cargo.lock +3498 -0
  2. pulsehive-0.3.0b2/Cargo.toml +57 -0
  3. pulsehive-0.3.0b2/PKG-INFO +162 -0
  4. pulsehive-0.3.0b2/README.md +141 -0
  5. pulsehive-0.3.0b2/pulsehive-anthropic/Cargo.toml +22 -0
  6. pulsehive-0.3.0b2/pulsehive-anthropic/README.md +58 -0
  7. pulsehive-0.3.0b2/pulsehive-anthropic/src/config.rs +89 -0
  8. pulsehive-0.3.0b2/pulsehive-anthropic/src/lib.rs +22 -0
  9. pulsehive-0.3.0b2/pulsehive-anthropic/src/provider.rs +214 -0
  10. pulsehive-0.3.0b2/pulsehive-anthropic/src/types.rs +315 -0
  11. pulsehive-0.3.0b2/pulsehive-core/Cargo.toml +27 -0
  12. pulsehive-0.3.0b2/pulsehive-core/README.md +71 -0
  13. pulsehive-0.3.0b2/pulsehive-core/src/agent.rs +267 -0
  14. pulsehive-0.3.0b2/pulsehive-core/src/approval.rs +188 -0
  15. pulsehive-0.3.0b2/pulsehive-core/src/context.rs +83 -0
  16. pulsehive-0.3.0b2/pulsehive-core/src/embedding.rs +125 -0
  17. pulsehive-0.3.0b2/pulsehive-core/src/error.rs +134 -0
  18. pulsehive-0.3.0b2/pulsehive-core/src/event.rs +472 -0
  19. pulsehive-0.3.0b2/pulsehive-core/src/export.rs +57 -0
  20. pulsehive-0.3.0b2/pulsehive-core/src/lens.rs +258 -0
  21. pulsehive-0.3.0b2/pulsehive-core/src/lib.rs +67 -0
  22. pulsehive-0.3.0b2/pulsehive-core/src/llm.rs +464 -0
  23. pulsehive-0.3.0b2/pulsehive-core/src/tool.rs +178 -0
  24. pulsehive-0.3.0b2/pulsehive-openai/Cargo.toml +29 -0
  25. pulsehive-0.3.0b2/pulsehive-openai/README.md +62 -0
  26. pulsehive-0.3.0b2/pulsehive-openai/src/config.rs +127 -0
  27. pulsehive-0.3.0b2/pulsehive-openai/src/lib.rs +20 -0
  28. pulsehive-0.3.0b2/pulsehive-openai/src/provider.rs +686 -0
  29. pulsehive-0.3.0b2/pulsehive-openai/src/types.rs +344 -0
  30. pulsehive-0.3.0b2/pulsehive-openai/tests/live_api_test.rs +183 -0
  31. pulsehive-0.3.0b2/pulsehive-py/Cargo.toml +32 -0
  32. pulsehive-0.3.0b2/pulsehive-py/README.md +141 -0
  33. pulsehive-0.3.0b2/pulsehive-py/benchmarks/python_vs_rust.py +178 -0
  34. pulsehive-0.3.0b2/pulsehive-py/examples/custom_tools.py +203 -0
  35. pulsehive-0.3.0b2/pulsehive-py/examples/getting_started.py +97 -0
  36. pulsehive-0.3.0b2/pulsehive-py/examples/multi_agent.py +151 -0
  37. pulsehive-0.3.0b2/pulsehive-py/src/agents.rs +281 -0
  38. pulsehive-0.3.0b2/pulsehive-py/src/events.rs +328 -0
  39. pulsehive-0.3.0b2/pulsehive-py/src/hivemind.rs +300 -0
  40. pulsehive-0.3.0b2/pulsehive-py/src/lib.rs +45 -0
  41. pulsehive-0.3.0b2/pulsehive-py/src/stream.rs +54 -0
  42. pulsehive-0.3.0b2/pulsehive-py/src/tool.rs +351 -0
  43. pulsehive-0.3.0b2/pulsehive-py/src/types.rs +225 -0
  44. pulsehive-0.3.0b2/pulsehive-py/tests/test_integration.py +109 -0
  45. pulsehive-0.3.0b2/pulsehive-py/tests/test_tool_integration.py +171 -0
  46. pulsehive-0.3.0b2/pulsehive-py/tests/test_tools.py +163 -0
  47. pulsehive-0.3.0b2/pulsehive-py/tests/test_types.py +176 -0
  48. pulsehive-0.3.0b2/pulsehive-runtime/Cargo.toml +41 -0
  49. pulsehive-0.3.0b2/pulsehive-runtime/README.md +68 -0
  50. pulsehive-0.3.0b2/pulsehive-runtime/benches/field_bench.rs +99 -0
  51. pulsehive-0.3.0b2/pulsehive-runtime/benches/substrate_bench.rs +124 -0
  52. pulsehive-0.3.0b2/pulsehive-runtime/examples/cli_agent.rs +105 -0
  53. pulsehive-0.3.0b2/pulsehive-runtime/examples/custom_tool.rs +295 -0
  54. pulsehive-0.3.0b2/pulsehive-runtime/examples/multi_agent_workflow.rs +242 -0
  55. pulsehive-0.3.0b2/pulsehive-runtime/src/agentic_loop.rs +962 -0
  56. pulsehive-0.3.0b2/pulsehive-runtime/src/experience.rs +325 -0
  57. pulsehive-0.3.0b2/pulsehive-runtime/src/field.rs +316 -0
  58. pulsehive-0.3.0b2/pulsehive-runtime/src/hivemind.rs +711 -0
  59. pulsehive-0.3.0b2/pulsehive-runtime/src/intelligence/context.rs +237 -0
  60. pulsehive-0.3.0b2/pulsehive-runtime/src/intelligence/insight.rs +292 -0
  61. pulsehive-0.3.0b2/pulsehive-runtime/src/intelligence/mod.rs +11 -0
  62. pulsehive-0.3.0b2/pulsehive-runtime/src/intelligence/relationship.rs +220 -0
  63. pulsehive-0.3.0b2/pulsehive-runtime/src/lib.rs +12 -0
  64. pulsehive-0.3.0b2/pulsehive-runtime/src/perception.rs +569 -0
  65. pulsehive-0.3.0b2/pulsehive-runtime/src/workflow.rs +918 -0
  66. pulsehive-0.3.0b2/pulsehive-runtime/tests/approval_test.rs +469 -0
  67. pulsehive-0.3.0b2/pulsehive-runtime/tests/embedding_test.rs +194 -0
  68. pulsehive-0.3.0b2/pulsehive-runtime/tests/integration_test.rs +261 -0
  69. pulsehive-0.3.0b2/pulsehive-runtime/tests/intelligence_test.rs +164 -0
  70. pulsehive-0.3.0b2/pulsehive-runtime/tests/live_integration_test.rs +218 -0
  71. pulsehive-0.3.0b2/pulsehive-runtime/tests/perception_test.rs +179 -0
  72. pulsehive-0.3.0b2/pulsehive-runtime/tests/persistence_test.rs +59 -0
  73. pulsehive-0.3.0b2/pulsehive-runtime/tests/phase1_test.rs +211 -0
  74. pulsehive-0.3.0b2/pulsehive-runtime/tests/phase2_test.rs +273 -0
  75. pulsehive-0.3.0b2/pulsehive-runtime/tests/substrate_test.rs +116 -0
  76. pulsehive-0.3.0b2/pulsehive-runtime/tests/tracing_test.rs +230 -0
  77. pulsehive-0.3.0b2/pulsehive-runtime/tests/workflow_test.rs +458 -0
  78. pulsehive-0.3.0b2/pyproject.toml +34 -0
  79. pulsehive-0.3.0b2/python/pulsehive/__init__.py +49 -0
  80. pulsehive-0.3.0b2/python/pulsehive/py.typed +0 -0
@@ -0,0 +1,3498 @@
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 = "aho-corasick"
13
+ version = "1.1.4"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
16
+ dependencies = [
17
+ "memchr",
18
+ ]
19
+
20
+ [[package]]
21
+ name = "allocator-api2"
22
+ version = "0.2.21"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
25
+
26
+ [[package]]
27
+ name = "anes"
28
+ version = "0.1.6"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
31
+
32
+ [[package]]
33
+ name = "anndists"
34
+ version = "0.1.5"
35
+ source = "registry+https://github.com/rust-lang/crates.io-index"
36
+ checksum = "9a8396b473aa0bceed68fb32462505387ea39fa47c7029417e0a49f10592b036"
37
+ dependencies = [
38
+ "anyhow",
39
+ "cfg-if",
40
+ "cpu-time",
41
+ "env_logger",
42
+ "lazy_static",
43
+ "log",
44
+ "num-traits",
45
+ "num_cpus",
46
+ "rayon",
47
+ ]
48
+
49
+ [[package]]
50
+ name = "anstream"
51
+ version = "1.0.0"
52
+ source = "registry+https://github.com/rust-lang/crates.io-index"
53
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
54
+ dependencies = [
55
+ "anstyle",
56
+ "anstyle-parse",
57
+ "anstyle-query",
58
+ "anstyle-wincon",
59
+ "colorchoice",
60
+ "is_terminal_polyfill",
61
+ "utf8parse",
62
+ ]
63
+
64
+ [[package]]
65
+ name = "anstyle"
66
+ version = "1.0.14"
67
+ source = "registry+https://github.com/rust-lang/crates.io-index"
68
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
69
+
70
+ [[package]]
71
+ name = "anstyle-parse"
72
+ version = "1.0.0"
73
+ source = "registry+https://github.com/rust-lang/crates.io-index"
74
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
75
+ dependencies = [
76
+ "utf8parse",
77
+ ]
78
+
79
+ [[package]]
80
+ name = "anstyle-query"
81
+ version = "1.1.5"
82
+ source = "registry+https://github.com/rust-lang/crates.io-index"
83
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
84
+ dependencies = [
85
+ "windows-sys 0.61.2",
86
+ ]
87
+
88
+ [[package]]
89
+ name = "anstyle-wincon"
90
+ version = "3.0.11"
91
+ source = "registry+https://github.com/rust-lang/crates.io-index"
92
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
93
+ dependencies = [
94
+ "anstyle",
95
+ "once_cell_polyfill",
96
+ "windows-sys 0.61.2",
97
+ ]
98
+
99
+ [[package]]
100
+ name = "anyhow"
101
+ version = "1.0.103"
102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
103
+ checksum = "2a4385e2e34eb35d6b3efe798b9eb88096925d87726c0798709bf56d9ed84af3"
104
+
105
+ [[package]]
106
+ name = "async-trait"
107
+ version = "0.1.89"
108
+ source = "registry+https://github.com/rust-lang/crates.io-index"
109
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
110
+ dependencies = [
111
+ "proc-macro2",
112
+ "quote",
113
+ "syn",
114
+ ]
115
+
116
+ [[package]]
117
+ name = "atomic-waker"
118
+ version = "1.1.2"
119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
120
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
121
+
122
+ [[package]]
123
+ name = "autocfg"
124
+ version = "1.5.1"
125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
126
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
127
+
128
+ [[package]]
129
+ name = "base64"
130
+ version = "0.13.1"
131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
132
+ checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
133
+
134
+ [[package]]
135
+ name = "base64"
136
+ version = "0.22.1"
137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
138
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
139
+
140
+ [[package]]
141
+ name = "base64ct"
142
+ version = "1.8.3"
143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
144
+ checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
145
+
146
+ [[package]]
147
+ name = "bincode"
148
+ version = "1.3.3"
149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
150
+ checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
151
+ dependencies = [
152
+ "serde",
153
+ ]
154
+
155
+ [[package]]
156
+ name = "bitflags"
157
+ version = "1.3.2"
158
+ source = "registry+https://github.com/rust-lang/crates.io-index"
159
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
160
+
161
+ [[package]]
162
+ name = "bitflags"
163
+ version = "2.13.0"
164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
165
+ checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
166
+
167
+ [[package]]
168
+ name = "bumpalo"
169
+ version = "3.20.3"
170
+ source = "registry+https://github.com/rust-lang/crates.io-index"
171
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
172
+
173
+ [[package]]
174
+ name = "byteorder"
175
+ version = "1.5.0"
176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
177
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
178
+
179
+ [[package]]
180
+ name = "bytes"
181
+ version = "1.12.0"
182
+ source = "registry+https://github.com/rust-lang/crates.io-index"
183
+ checksum = "8ae3f5d315924270530207e2a68396c3cc547f6dca3fbdca317cfb1a51edb593"
184
+
185
+ [[package]]
186
+ name = "cast"
187
+ version = "0.3.0"
188
+ source = "registry+https://github.com/rust-lang/crates.io-index"
189
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
190
+
191
+ [[package]]
192
+ name = "cc"
193
+ version = "1.2.65"
194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
195
+ checksum = "e228eec9be7c17ccb640b59b36a5cd805ea2a564a4c5e162c2f659fea30d3b96"
196
+ dependencies = [
197
+ "find-msvc-tools",
198
+ "shlex",
199
+ ]
200
+
201
+ [[package]]
202
+ name = "cfg-if"
203
+ version = "1.0.4"
204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
205
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
206
+
207
+ [[package]]
208
+ name = "cfg_aliases"
209
+ version = "0.2.1"
210
+ source = "registry+https://github.com/rust-lang/crates.io-index"
211
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
212
+
213
+ [[package]]
214
+ name = "ciborium"
215
+ version = "0.2.2"
216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
217
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
218
+ dependencies = [
219
+ "ciborium-io",
220
+ "ciborium-ll",
221
+ "serde",
222
+ ]
223
+
224
+ [[package]]
225
+ name = "ciborium-io"
226
+ version = "0.2.2"
227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
228
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
229
+
230
+ [[package]]
231
+ name = "ciborium-ll"
232
+ version = "0.2.2"
233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
234
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
235
+ dependencies = [
236
+ "ciborium-io",
237
+ "half",
238
+ ]
239
+
240
+ [[package]]
241
+ name = "clap"
242
+ version = "4.6.1"
243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
244
+ checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
245
+ dependencies = [
246
+ "clap_builder",
247
+ ]
248
+
249
+ [[package]]
250
+ name = "clap_builder"
251
+ version = "4.6.0"
252
+ source = "registry+https://github.com/rust-lang/crates.io-index"
253
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
254
+ dependencies = [
255
+ "anstyle",
256
+ "clap_lex",
257
+ ]
258
+
259
+ [[package]]
260
+ name = "clap_lex"
261
+ version = "1.1.0"
262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
263
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
264
+
265
+ [[package]]
266
+ name = "colorchoice"
267
+ version = "1.0.5"
268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
269
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
270
+
271
+ [[package]]
272
+ name = "combine"
273
+ version = "4.6.7"
274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
275
+ checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
276
+ dependencies = [
277
+ "bytes",
278
+ "memchr",
279
+ ]
280
+
281
+ [[package]]
282
+ name = "convert_case"
283
+ version = "0.11.0"
284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
285
+ checksum = "affbf0190ed2caf063e3def54ff444b449371d55c58e513a95ab98eca50adb49"
286
+ dependencies = [
287
+ "unicode-segmentation",
288
+ ]
289
+
290
+ [[package]]
291
+ name = "core-foundation"
292
+ version = "0.9.4"
293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
294
+ checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
295
+ dependencies = [
296
+ "core-foundation-sys",
297
+ "libc",
298
+ ]
299
+
300
+ [[package]]
301
+ name = "core-foundation"
302
+ version = "0.10.1"
303
+ source = "registry+https://github.com/rust-lang/crates.io-index"
304
+ checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
305
+ dependencies = [
306
+ "core-foundation-sys",
307
+ "libc",
308
+ ]
309
+
310
+ [[package]]
311
+ name = "core-foundation-sys"
312
+ version = "0.8.7"
313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
314
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
315
+
316
+ [[package]]
317
+ name = "cpu-time"
318
+ version = "1.0.0"
319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
320
+ checksum = "e9e393a7668fe1fad3075085b86c781883000b4ede868f43627b34a87c8b7ded"
321
+ dependencies = [
322
+ "libc",
323
+ "winapi",
324
+ ]
325
+
326
+ [[package]]
327
+ name = "crc32fast"
328
+ version = "1.5.0"
329
+ source = "registry+https://github.com/rust-lang/crates.io-index"
330
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
331
+ dependencies = [
332
+ "cfg-if",
333
+ ]
334
+
335
+ [[package]]
336
+ name = "criterion"
337
+ version = "0.5.1"
338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
339
+ checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
340
+ dependencies = [
341
+ "anes",
342
+ "cast",
343
+ "ciborium",
344
+ "clap",
345
+ "criterion-plot",
346
+ "is-terminal",
347
+ "itertools 0.10.5",
348
+ "num-traits",
349
+ "once_cell",
350
+ "oorandom",
351
+ "plotters",
352
+ "rayon",
353
+ "regex",
354
+ "serde",
355
+ "serde_derive",
356
+ "serde_json",
357
+ "tinytemplate",
358
+ "walkdir",
359
+ ]
360
+
361
+ [[package]]
362
+ name = "criterion-plot"
363
+ version = "0.5.0"
364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
365
+ checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
366
+ dependencies = [
367
+ "cast",
368
+ "itertools 0.10.5",
369
+ ]
370
+
371
+ [[package]]
372
+ name = "crossbeam-channel"
373
+ version = "0.5.15"
374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
375
+ checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
376
+ dependencies = [
377
+ "crossbeam-utils",
378
+ ]
379
+
380
+ [[package]]
381
+ name = "crossbeam-deque"
382
+ version = "0.8.6"
383
+ source = "registry+https://github.com/rust-lang/crates.io-index"
384
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
385
+ dependencies = [
386
+ "crossbeam-epoch",
387
+ "crossbeam-utils",
388
+ ]
389
+
390
+ [[package]]
391
+ name = "crossbeam-epoch"
392
+ version = "0.9.18"
393
+ source = "registry+https://github.com/rust-lang/crates.io-index"
394
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
395
+ dependencies = [
396
+ "crossbeam-utils",
397
+ ]
398
+
399
+ [[package]]
400
+ name = "crossbeam-utils"
401
+ version = "0.8.21"
402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
403
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
404
+
405
+ [[package]]
406
+ name = "crunchy"
407
+ version = "0.2.4"
408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
409
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
410
+
411
+ [[package]]
412
+ name = "ctor"
413
+ version = "1.0.7"
414
+ source = "registry+https://github.com/rust-lang/crates.io-index"
415
+ checksum = "01334b89b69ff726750c5ce5073fc8bd860e99aa9a8fc5ca11b04730e3aee97a"
416
+
417
+ [[package]]
418
+ name = "darling"
419
+ version = "0.20.11"
420
+ source = "registry+https://github.com/rust-lang/crates.io-index"
421
+ checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
422
+ dependencies = [
423
+ "darling_core",
424
+ "darling_macro",
425
+ ]
426
+
427
+ [[package]]
428
+ name = "darling_core"
429
+ version = "0.20.11"
430
+ source = "registry+https://github.com/rust-lang/crates.io-index"
431
+ checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e"
432
+ dependencies = [
433
+ "fnv",
434
+ "ident_case",
435
+ "proc-macro2",
436
+ "quote",
437
+ "strsim",
438
+ "syn",
439
+ ]
440
+
441
+ [[package]]
442
+ name = "darling_macro"
443
+ version = "0.20.11"
444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
445
+ checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
446
+ dependencies = [
447
+ "darling_core",
448
+ "quote",
449
+ "syn",
450
+ ]
451
+
452
+ [[package]]
453
+ name = "defmt"
454
+ version = "1.1.0"
455
+ source = "registry+https://github.com/rust-lang/crates.io-index"
456
+ checksum = "a6e524506490a1953d237cb87b1cfc1e46f88c18f10a22dfe0f507dc6bfc7f7f"
457
+ dependencies = [
458
+ "bitflags 1.3.2",
459
+ "defmt-macros",
460
+ ]
461
+
462
+ [[package]]
463
+ name = "defmt-macros"
464
+ version = "1.1.0"
465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
466
+ checksum = "f0a27770e9c8f719a79d8b638281f4d828f77d8fd61e0bd94451b9b85e576a0b"
467
+ dependencies = [
468
+ "defmt-parser",
469
+ "proc-macro-error2",
470
+ "proc-macro2",
471
+ "quote",
472
+ "syn",
473
+ ]
474
+
475
+ [[package]]
476
+ name = "defmt-parser"
477
+ version = "1.0.0"
478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
479
+ checksum = "10d60334b3b2e7c9d91ef8150abfb6fa4c1c39ebbcf4a81c2e346aad939fee3e"
480
+ dependencies = [
481
+ "thiserror 2.0.18",
482
+ ]
483
+
484
+ [[package]]
485
+ name = "der"
486
+ version = "0.8.0"
487
+ source = "registry+https://github.com/rust-lang/crates.io-index"
488
+ checksum = "71fd89660b2dc699704064e59e9dba0147b903e85319429e131620d022be411b"
489
+ dependencies = [
490
+ "pem-rfc7468",
491
+ "zeroize",
492
+ ]
493
+
494
+ [[package]]
495
+ name = "derive_builder"
496
+ version = "0.20.2"
497
+ source = "registry+https://github.com/rust-lang/crates.io-index"
498
+ checksum = "507dfb09ea8b7fa618fcf76e953f4f5e192547945816d5358edffe39f6f94947"
499
+ dependencies = [
500
+ "derive_builder_macro",
501
+ ]
502
+
503
+ [[package]]
504
+ name = "derive_builder_core"
505
+ version = "0.20.2"
506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
507
+ checksum = "2d5bcf7b024d6835cfb3d473887cd966994907effbe9227e8c8219824d06c4e8"
508
+ dependencies = [
509
+ "darling",
510
+ "proc-macro2",
511
+ "quote",
512
+ "syn",
513
+ ]
514
+
515
+ [[package]]
516
+ name = "derive_builder_macro"
517
+ version = "0.20.2"
518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
519
+ checksum = "ab63b0e2bf4d5928aff72e83a7dace85d7bba5fe12dcc3c5a572d78caffd3f3c"
520
+ dependencies = [
521
+ "derive_builder_core",
522
+ "syn",
523
+ ]
524
+
525
+ [[package]]
526
+ name = "dirs"
527
+ version = "5.0.1"
528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
529
+ checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225"
530
+ dependencies = [
531
+ "dirs-sys",
532
+ ]
533
+
534
+ [[package]]
535
+ name = "dirs-sys"
536
+ version = "0.4.1"
537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
538
+ checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c"
539
+ dependencies = [
540
+ "libc",
541
+ "option-ext",
542
+ "redox_users",
543
+ "windows-sys 0.48.0",
544
+ ]
545
+
546
+ [[package]]
547
+ name = "displaydoc"
548
+ version = "0.2.6"
549
+ source = "registry+https://github.com/rust-lang/crates.io-index"
550
+ checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f"
551
+ dependencies = [
552
+ "proc-macro2",
553
+ "quote",
554
+ "syn",
555
+ ]
556
+
557
+ [[package]]
558
+ name = "dotenvy"
559
+ version = "0.15.7"
560
+ source = "registry+https://github.com/rust-lang/crates.io-index"
561
+ checksum = "1aaf95b3e5c8f23aa320147307562d361db0ae0d51242340f558153b4eb2439b"
562
+
563
+ [[package]]
564
+ name = "either"
565
+ version = "1.16.0"
566
+ source = "registry+https://github.com/rust-lang/crates.io-index"
567
+ checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
568
+
569
+ [[package]]
570
+ name = "encoding_rs"
571
+ version = "0.8.35"
572
+ source = "registry+https://github.com/rust-lang/crates.io-index"
573
+ checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
574
+ dependencies = [
575
+ "cfg-if",
576
+ ]
577
+
578
+ [[package]]
579
+ name = "enum-as-inner"
580
+ version = "0.6.1"
581
+ source = "registry+https://github.com/rust-lang/crates.io-index"
582
+ checksum = "a1e6a265c649f3f5979b601d26f1d05ada116434c87741c9493cb56218f76cbc"
583
+ dependencies = [
584
+ "heck",
585
+ "proc-macro2",
586
+ "quote",
587
+ "syn",
588
+ ]
589
+
590
+ [[package]]
591
+ name = "env_filter"
592
+ version = "2.0.0"
593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
594
+ checksum = "900d271a03799a1ee8d1ca9b19893b48ca674a9284fefcfb85f05e74ed314217"
595
+ dependencies = [
596
+ "log",
597
+ "regex",
598
+ ]
599
+
600
+ [[package]]
601
+ name = "env_logger"
602
+ version = "0.11.11"
603
+ source = "registry+https://github.com/rust-lang/crates.io-index"
604
+ checksum = "de671bd27a75a797dc9ae289ba1e77276e75e2026408aab65185384e2d5cd3f6"
605
+ dependencies = [
606
+ "anstream",
607
+ "anstyle",
608
+ "env_filter",
609
+ "jiff",
610
+ "log",
611
+ ]
612
+
613
+ [[package]]
614
+ name = "equivalent"
615
+ version = "1.0.2"
616
+ source = "registry+https://github.com/rust-lang/crates.io-index"
617
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
618
+
619
+ [[package]]
620
+ name = "errno"
621
+ version = "0.3.14"
622
+ source = "registry+https://github.com/rust-lang/crates.io-index"
623
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
624
+ dependencies = [
625
+ "libc",
626
+ "windows-sys 0.61.2",
627
+ ]
628
+
629
+ [[package]]
630
+ name = "esaxx-rs"
631
+ version = "0.1.10"
632
+ source = "registry+https://github.com/rust-lang/crates.io-index"
633
+ checksum = "d817e038c30374a4bcb22f94d0a8a0e216958d4c3dcde369b1439fec4bdda6e6"
634
+
635
+ [[package]]
636
+ name = "fastrand"
637
+ version = "2.4.1"
638
+ source = "registry+https://github.com/rust-lang/crates.io-index"
639
+ checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
640
+
641
+ [[package]]
642
+ name = "find-msvc-tools"
643
+ version = "0.1.9"
644
+ source = "registry+https://github.com/rust-lang/crates.io-index"
645
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
646
+
647
+ [[package]]
648
+ name = "flate2"
649
+ version = "1.1.9"
650
+ source = "registry+https://github.com/rust-lang/crates.io-index"
651
+ checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
652
+ dependencies = [
653
+ "crc32fast",
654
+ "miniz_oxide",
655
+ ]
656
+
657
+ [[package]]
658
+ name = "fnv"
659
+ version = "1.0.7"
660
+ source = "registry+https://github.com/rust-lang/crates.io-index"
661
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
662
+
663
+ [[package]]
664
+ name = "foldhash"
665
+ version = "0.1.5"
666
+ source = "registry+https://github.com/rust-lang/crates.io-index"
667
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
668
+
669
+ [[package]]
670
+ name = "foreign-types"
671
+ version = "0.3.2"
672
+ source = "registry+https://github.com/rust-lang/crates.io-index"
673
+ checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
674
+ dependencies = [
675
+ "foreign-types-shared",
676
+ ]
677
+
678
+ [[package]]
679
+ name = "foreign-types-shared"
680
+ version = "0.1.1"
681
+ source = "registry+https://github.com/rust-lang/crates.io-index"
682
+ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
683
+
684
+ [[package]]
685
+ name = "form_urlencoded"
686
+ version = "1.2.2"
687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
688
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
689
+ dependencies = [
690
+ "percent-encoding",
691
+ ]
692
+
693
+ [[package]]
694
+ name = "fs2"
695
+ version = "0.4.3"
696
+ source = "registry+https://github.com/rust-lang/crates.io-index"
697
+ checksum = "9564fc758e15025b46aa6643b1b77d047d1a56a1aea6e01002ac0c7026876213"
698
+ dependencies = [
699
+ "libc",
700
+ "winapi",
701
+ ]
702
+
703
+ [[package]]
704
+ name = "futures"
705
+ version = "0.3.32"
706
+ source = "registry+https://github.com/rust-lang/crates.io-index"
707
+ checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
708
+ dependencies = [
709
+ "futures-channel",
710
+ "futures-core",
711
+ "futures-executor",
712
+ "futures-io",
713
+ "futures-sink",
714
+ "futures-task",
715
+ "futures-util",
716
+ ]
717
+
718
+ [[package]]
719
+ name = "futures-channel"
720
+ version = "0.3.32"
721
+ source = "registry+https://github.com/rust-lang/crates.io-index"
722
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
723
+ dependencies = [
724
+ "futures-core",
725
+ "futures-sink",
726
+ ]
727
+
728
+ [[package]]
729
+ name = "futures-core"
730
+ version = "0.3.32"
731
+ source = "registry+https://github.com/rust-lang/crates.io-index"
732
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
733
+
734
+ [[package]]
735
+ name = "futures-executor"
736
+ version = "0.3.32"
737
+ source = "registry+https://github.com/rust-lang/crates.io-index"
738
+ checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
739
+ dependencies = [
740
+ "futures-core",
741
+ "futures-task",
742
+ "futures-util",
743
+ ]
744
+
745
+ [[package]]
746
+ name = "futures-io"
747
+ version = "0.3.32"
748
+ source = "registry+https://github.com/rust-lang/crates.io-index"
749
+ checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
750
+
751
+ [[package]]
752
+ name = "futures-macro"
753
+ version = "0.3.32"
754
+ source = "registry+https://github.com/rust-lang/crates.io-index"
755
+ checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
756
+ dependencies = [
757
+ "proc-macro2",
758
+ "quote",
759
+ "syn",
760
+ ]
761
+
762
+ [[package]]
763
+ name = "futures-sink"
764
+ version = "0.3.32"
765
+ source = "registry+https://github.com/rust-lang/crates.io-index"
766
+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
767
+
768
+ [[package]]
769
+ name = "futures-task"
770
+ version = "0.3.32"
771
+ source = "registry+https://github.com/rust-lang/crates.io-index"
772
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
773
+
774
+ [[package]]
775
+ name = "futures-util"
776
+ version = "0.3.32"
777
+ source = "registry+https://github.com/rust-lang/crates.io-index"
778
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
779
+ dependencies = [
780
+ "futures-channel",
781
+ "futures-core",
782
+ "futures-io",
783
+ "futures-macro",
784
+ "futures-sink",
785
+ "futures-task",
786
+ "memchr",
787
+ "pin-project-lite",
788
+ "slab",
789
+ ]
790
+
791
+ [[package]]
792
+ name = "getrandom"
793
+ version = "0.2.17"
794
+ source = "registry+https://github.com/rust-lang/crates.io-index"
795
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
796
+ dependencies = [
797
+ "cfg-if",
798
+ "libc",
799
+ "wasi",
800
+ ]
801
+
802
+ [[package]]
803
+ name = "getrandom"
804
+ version = "0.3.4"
805
+ source = "registry+https://github.com/rust-lang/crates.io-index"
806
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
807
+ dependencies = [
808
+ "cfg-if",
809
+ "libc",
810
+ "r-efi 5.3.0",
811
+ "wasip2",
812
+ ]
813
+
814
+ [[package]]
815
+ name = "getrandom"
816
+ version = "0.4.3"
817
+ source = "registry+https://github.com/rust-lang/crates.io-index"
818
+ checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
819
+ dependencies = [
820
+ "cfg-if",
821
+ "libc",
822
+ "r-efi 6.0.0",
823
+ ]
824
+
825
+ [[package]]
826
+ name = "h2"
827
+ version = "0.4.15"
828
+ source = "registry+https://github.com/rust-lang/crates.io-index"
829
+ checksum = "6cb093c84e8bd9b188d4c4a8cb6579fc016968d14c99882163cd3ff402a4f155"
830
+ dependencies = [
831
+ "atomic-waker",
832
+ "bytes",
833
+ "fnv",
834
+ "futures-core",
835
+ "futures-sink",
836
+ "http",
837
+ "indexmap",
838
+ "slab",
839
+ "tokio",
840
+ "tokio-util",
841
+ "tracing",
842
+ ]
843
+
844
+ [[package]]
845
+ name = "half"
846
+ version = "2.7.1"
847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
848
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
849
+ dependencies = [
850
+ "cfg-if",
851
+ "crunchy",
852
+ "zerocopy",
853
+ ]
854
+
855
+ [[package]]
856
+ name = "hashbrown"
857
+ version = "0.15.5"
858
+ source = "registry+https://github.com/rust-lang/crates.io-index"
859
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
860
+ dependencies = [
861
+ "allocator-api2",
862
+ "equivalent",
863
+ "foldhash",
864
+ ]
865
+
866
+ [[package]]
867
+ name = "hashbrown"
868
+ version = "0.17.1"
869
+ source = "registry+https://github.com/rust-lang/crates.io-index"
870
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
871
+
872
+ [[package]]
873
+ name = "heck"
874
+ version = "0.5.0"
875
+ source = "registry+https://github.com/rust-lang/crates.io-index"
876
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
877
+
878
+ [[package]]
879
+ name = "hermit-abi"
880
+ version = "0.5.2"
881
+ source = "registry+https://github.com/rust-lang/crates.io-index"
882
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
883
+
884
+ [[package]]
885
+ name = "hmac-sha256"
886
+ version = "1.1.14"
887
+ source = "registry+https://github.com/rust-lang/crates.io-index"
888
+ checksum = "ec9d92d097f4749b64e8cc33d924d9f40a2d4eb91402b458014b781f5733d60f"
889
+
890
+ [[package]]
891
+ name = "hnsw_rs"
892
+ version = "0.3.4"
893
+ source = "registry+https://github.com/rust-lang/crates.io-index"
894
+ checksum = "43a5258f079b97bf2e8311ff9579e903c899dcbac0d9a138d62e9a066778bd07"
895
+ dependencies = [
896
+ "anndists",
897
+ "anyhow",
898
+ "bincode",
899
+ "cfg-if",
900
+ "cpu-time",
901
+ "env_logger",
902
+ "hashbrown 0.15.5",
903
+ "indexmap",
904
+ "lazy_static",
905
+ "log",
906
+ "mmap-rs",
907
+ "num-traits",
908
+ "num_cpus",
909
+ "parking_lot",
910
+ "rand 0.9.4",
911
+ "rayon",
912
+ "serde",
913
+ ]
914
+
915
+ [[package]]
916
+ name = "http"
917
+ version = "1.4.2"
918
+ source = "registry+https://github.com/rust-lang/crates.io-index"
919
+ checksum = "6970f50e31d6fc17d3fa27329444bfa74e196cf62e95052a3f6fee181dba6425"
920
+ dependencies = [
921
+ "bytes",
922
+ "itoa",
923
+ ]
924
+
925
+ [[package]]
926
+ name = "http-body"
927
+ version = "1.0.1"
928
+ source = "registry+https://github.com/rust-lang/crates.io-index"
929
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
930
+ dependencies = [
931
+ "bytes",
932
+ "http",
933
+ ]
934
+
935
+ [[package]]
936
+ name = "http-body-util"
937
+ version = "0.1.3"
938
+ source = "registry+https://github.com/rust-lang/crates.io-index"
939
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
940
+ dependencies = [
941
+ "bytes",
942
+ "futures-core",
943
+ "http",
944
+ "http-body",
945
+ "pin-project-lite",
946
+ ]
947
+
948
+ [[package]]
949
+ name = "httparse"
950
+ version = "1.10.1"
951
+ source = "registry+https://github.com/rust-lang/crates.io-index"
952
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
953
+
954
+ [[package]]
955
+ name = "hyper"
956
+ version = "1.10.1"
957
+ source = "registry+https://github.com/rust-lang/crates.io-index"
958
+ checksum = "55281c53a1894c864990125767da440a4e630446785086f52523b20033b74498"
959
+ dependencies = [
960
+ "atomic-waker",
961
+ "bytes",
962
+ "futures-channel",
963
+ "futures-core",
964
+ "h2",
965
+ "http",
966
+ "http-body",
967
+ "httparse",
968
+ "itoa",
969
+ "pin-project-lite",
970
+ "smallvec",
971
+ "tokio",
972
+ "want",
973
+ ]
974
+
975
+ [[package]]
976
+ name = "hyper-rustls"
977
+ version = "0.27.9"
978
+ source = "registry+https://github.com/rust-lang/crates.io-index"
979
+ checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f"
980
+ dependencies = [
981
+ "http",
982
+ "hyper",
983
+ "hyper-util",
984
+ "rustls",
985
+ "tokio",
986
+ "tokio-rustls",
987
+ "tower-service",
988
+ ]
989
+
990
+ [[package]]
991
+ name = "hyper-tls"
992
+ version = "0.6.0"
993
+ source = "registry+https://github.com/rust-lang/crates.io-index"
994
+ checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0"
995
+ dependencies = [
996
+ "bytes",
997
+ "http-body-util",
998
+ "hyper",
999
+ "hyper-util",
1000
+ "native-tls",
1001
+ "tokio",
1002
+ "tokio-native-tls",
1003
+ "tower-service",
1004
+ ]
1005
+
1006
+ [[package]]
1007
+ name = "hyper-util"
1008
+ version = "0.1.20"
1009
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1010
+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
1011
+ dependencies = [
1012
+ "base64 0.22.1",
1013
+ "bytes",
1014
+ "futures-channel",
1015
+ "futures-util",
1016
+ "http",
1017
+ "http-body",
1018
+ "hyper",
1019
+ "ipnet",
1020
+ "libc",
1021
+ "percent-encoding",
1022
+ "pin-project-lite",
1023
+ "socket2",
1024
+ "system-configuration",
1025
+ "tokio",
1026
+ "tower-service",
1027
+ "tracing",
1028
+ "windows-registry",
1029
+ ]
1030
+
1031
+ [[package]]
1032
+ name = "icu_collections"
1033
+ version = "2.2.0"
1034
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1035
+ checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
1036
+ dependencies = [
1037
+ "displaydoc",
1038
+ "potential_utf",
1039
+ "utf8_iter",
1040
+ "yoke",
1041
+ "zerofrom",
1042
+ "zerovec",
1043
+ ]
1044
+
1045
+ [[package]]
1046
+ name = "icu_locale_core"
1047
+ version = "2.2.0"
1048
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1049
+ checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
1050
+ dependencies = [
1051
+ "displaydoc",
1052
+ "litemap",
1053
+ "tinystr",
1054
+ "writeable",
1055
+ "zerovec",
1056
+ ]
1057
+
1058
+ [[package]]
1059
+ name = "icu_normalizer"
1060
+ version = "2.2.0"
1061
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1062
+ checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
1063
+ dependencies = [
1064
+ "icu_collections",
1065
+ "icu_normalizer_data",
1066
+ "icu_properties",
1067
+ "icu_provider",
1068
+ "smallvec",
1069
+ "zerovec",
1070
+ ]
1071
+
1072
+ [[package]]
1073
+ name = "icu_normalizer_data"
1074
+ version = "2.2.0"
1075
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1076
+ checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
1077
+
1078
+ [[package]]
1079
+ name = "icu_properties"
1080
+ version = "2.2.0"
1081
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1082
+ checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
1083
+ dependencies = [
1084
+ "icu_collections",
1085
+ "icu_locale_core",
1086
+ "icu_properties_data",
1087
+ "icu_provider",
1088
+ "zerotrie",
1089
+ "zerovec",
1090
+ ]
1091
+
1092
+ [[package]]
1093
+ name = "icu_properties_data"
1094
+ version = "2.2.0"
1095
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1096
+ checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
1097
+
1098
+ [[package]]
1099
+ name = "icu_provider"
1100
+ version = "2.2.0"
1101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1102
+ checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
1103
+ dependencies = [
1104
+ "displaydoc",
1105
+ "icu_locale_core",
1106
+ "writeable",
1107
+ "yoke",
1108
+ "zerofrom",
1109
+ "zerotrie",
1110
+ "zerovec",
1111
+ ]
1112
+
1113
+ [[package]]
1114
+ name = "ident_case"
1115
+ version = "1.0.1"
1116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1117
+ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
1118
+
1119
+ [[package]]
1120
+ name = "idna"
1121
+ version = "1.1.0"
1122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1123
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
1124
+ dependencies = [
1125
+ "idna_adapter",
1126
+ "smallvec",
1127
+ "utf8_iter",
1128
+ ]
1129
+
1130
+ [[package]]
1131
+ name = "idna_adapter"
1132
+ version = "1.2.2"
1133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1134
+ checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
1135
+ dependencies = [
1136
+ "icu_normalizer",
1137
+ "icu_properties",
1138
+ ]
1139
+
1140
+ [[package]]
1141
+ name = "indexmap"
1142
+ version = "2.14.0"
1143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1144
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
1145
+ dependencies = [
1146
+ "equivalent",
1147
+ "hashbrown 0.17.1",
1148
+ ]
1149
+
1150
+ [[package]]
1151
+ name = "ipnet"
1152
+ version = "2.12.0"
1153
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1154
+ checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
1155
+
1156
+ [[package]]
1157
+ name = "is-terminal"
1158
+ version = "0.4.17"
1159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1160
+ checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
1161
+ dependencies = [
1162
+ "hermit-abi",
1163
+ "libc",
1164
+ "windows-sys 0.61.2",
1165
+ ]
1166
+
1167
+ [[package]]
1168
+ name = "is_terminal_polyfill"
1169
+ version = "1.70.2"
1170
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1171
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
1172
+
1173
+ [[package]]
1174
+ name = "itertools"
1175
+ version = "0.10.5"
1176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1177
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
1178
+ dependencies = [
1179
+ "either",
1180
+ ]
1181
+
1182
+ [[package]]
1183
+ name = "itertools"
1184
+ version = "0.11.0"
1185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1186
+ checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57"
1187
+ dependencies = [
1188
+ "either",
1189
+ ]
1190
+
1191
+ [[package]]
1192
+ name = "itertools"
1193
+ version = "0.12.1"
1194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1195
+ checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
1196
+ dependencies = [
1197
+ "either",
1198
+ ]
1199
+
1200
+ [[package]]
1201
+ name = "itoa"
1202
+ version = "1.0.18"
1203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1204
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
1205
+
1206
+ [[package]]
1207
+ name = "jiff"
1208
+ version = "0.2.31"
1209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1210
+ checksum = "ccfe6121cbe750cf81efa362d85c0bde7ea298ec43092d3a193baca59cdbd634"
1211
+ dependencies = [
1212
+ "defmt",
1213
+ "jiff-static",
1214
+ "log",
1215
+ "portable-atomic",
1216
+ "portable-atomic-util",
1217
+ "serde_core",
1218
+ ]
1219
+
1220
+ [[package]]
1221
+ name = "jiff-static"
1222
+ version = "0.2.31"
1223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1224
+ checksum = "e165e897f662d428f3cd3828a919dbe067c2d42bb1031eede74ef9d27ecdedd2"
1225
+ dependencies = [
1226
+ "proc-macro2",
1227
+ "quote",
1228
+ "syn",
1229
+ ]
1230
+
1231
+ [[package]]
1232
+ name = "js-sys"
1233
+ version = "0.3.103"
1234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1235
+ checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102"
1236
+ dependencies = [
1237
+ "cfg-if",
1238
+ "futures-util",
1239
+ "wasm-bindgen",
1240
+ ]
1241
+
1242
+ [[package]]
1243
+ name = "lazy_static"
1244
+ version = "1.5.0"
1245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1246
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1247
+
1248
+ [[package]]
1249
+ name = "libc"
1250
+ version = "0.2.186"
1251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1252
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
1253
+
1254
+ [[package]]
1255
+ name = "libloading"
1256
+ version = "0.9.0"
1257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1258
+ checksum = "754ca22de805bb5744484a5b151a9e1a8e837d5dc232c2d7d8c2e3492edc8b60"
1259
+ dependencies = [
1260
+ "cfg-if",
1261
+ "windows-link",
1262
+ ]
1263
+
1264
+ [[package]]
1265
+ name = "libredox"
1266
+ version = "0.1.18"
1267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1268
+ checksum = "c943259e342f1e06ff2da7a83eabdfe7f92ce10262688dbf1895ff0b3e6e4652"
1269
+ dependencies = [
1270
+ "libc",
1271
+ ]
1272
+
1273
+ [[package]]
1274
+ name = "linux-raw-sys"
1275
+ version = "0.12.1"
1276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1277
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
1278
+
1279
+ [[package]]
1280
+ name = "litemap"
1281
+ version = "0.8.2"
1282
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1283
+ checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
1284
+
1285
+ [[package]]
1286
+ name = "lock_api"
1287
+ version = "0.4.14"
1288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1289
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
1290
+ dependencies = [
1291
+ "scopeguard",
1292
+ ]
1293
+
1294
+ [[package]]
1295
+ name = "log"
1296
+ version = "0.4.33"
1297
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1298
+ checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
1299
+
1300
+ [[package]]
1301
+ name = "lzma-rust2"
1302
+ version = "0.15.8"
1303
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1304
+ checksum = "e20f57f9918e5bd7bc58c22cdd70a6afc7375d4dd9683af5f2b34bd3d2bba619"
1305
+
1306
+ [[package]]
1307
+ name = "mach2"
1308
+ version = "0.4.3"
1309
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1310
+ checksum = "d640282b302c0bb0a2a8e0233ead9035e3bed871f0b7e81fe4a1ec829765db44"
1311
+ dependencies = [
1312
+ "libc",
1313
+ ]
1314
+
1315
+ [[package]]
1316
+ name = "macro_rules_attribute"
1317
+ version = "0.2.2"
1318
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1319
+ checksum = "65049d7923698040cd0b1ddcced9b0eb14dd22c5f86ae59c3740eab64a676520"
1320
+ dependencies = [
1321
+ "macro_rules_attribute-proc_macro",
1322
+ "paste",
1323
+ ]
1324
+
1325
+ [[package]]
1326
+ name = "macro_rules_attribute-proc_macro"
1327
+ version = "0.2.2"
1328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1329
+ checksum = "670fdfda89751bc4a84ac13eaa63e205cf0fd22b4c9a5fbfa085b63c1f1d3a30"
1330
+
1331
+ [[package]]
1332
+ name = "matrixmultiply"
1333
+ version = "0.3.10"
1334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1335
+ checksum = "a06de3016e9fae57a36fd14dba131fccf49f74b40b7fbdb472f96e361ec71a08"
1336
+ dependencies = [
1337
+ "autocfg",
1338
+ "rawpointer",
1339
+ ]
1340
+
1341
+ [[package]]
1342
+ name = "memchr"
1343
+ version = "2.8.2"
1344
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1345
+ checksum = "88904434abc2901f197fe8cc55f0445e7ded921dba5911dad2e2b39b48e663c4"
1346
+
1347
+ [[package]]
1348
+ name = "mime"
1349
+ version = "0.3.17"
1350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1351
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
1352
+
1353
+ [[package]]
1354
+ name = "minimal-lexical"
1355
+ version = "0.2.1"
1356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1357
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
1358
+
1359
+ [[package]]
1360
+ name = "miniz_oxide"
1361
+ version = "0.8.9"
1362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1363
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
1364
+ dependencies = [
1365
+ "adler2",
1366
+ "simd-adler32",
1367
+ ]
1368
+
1369
+ [[package]]
1370
+ name = "mio"
1371
+ version = "1.2.1"
1372
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1373
+ checksum = "02bd0af71c67b473010cbbc60715ee815645a4dc942899111f494b4b737d6fda"
1374
+ dependencies = [
1375
+ "libc",
1376
+ "wasi",
1377
+ "windows-sys 0.61.2",
1378
+ ]
1379
+
1380
+ [[package]]
1381
+ name = "mmap-rs"
1382
+ version = "0.7.0"
1383
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1384
+ checksum = "4ecce9d566cb9234ae3db9e249c8b55665feaaf32b0859ff1e27e310d2beb3d8"
1385
+ dependencies = [
1386
+ "bitflags 2.13.0",
1387
+ "combine",
1388
+ "libc",
1389
+ "mach2",
1390
+ "nix",
1391
+ "sysctl",
1392
+ "thiserror 2.0.18",
1393
+ "widestring",
1394
+ "windows",
1395
+ ]
1396
+
1397
+ [[package]]
1398
+ name = "monostate"
1399
+ version = "0.1.18"
1400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1401
+ checksum = "3341a273f6c9d5bef1908f17b7267bbab0e95c9bf69a0d4dcf8e9e1b2c76ef67"
1402
+ dependencies = [
1403
+ "monostate-impl",
1404
+ "serde",
1405
+ "serde_core",
1406
+ ]
1407
+
1408
+ [[package]]
1409
+ name = "monostate-impl"
1410
+ version = "0.1.18"
1411
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1412
+ checksum = "e4db6d5580af57bf992f59068d4ea26fd518574ff48d7639b255a36f9de6e7e9"
1413
+ dependencies = [
1414
+ "proc-macro2",
1415
+ "quote",
1416
+ "syn",
1417
+ ]
1418
+
1419
+ [[package]]
1420
+ name = "napi"
1421
+ version = "3.10.0"
1422
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1423
+ checksum = "abd366ba6a12e4bdbc360e1ad4e1f01da40c4395eef1f9e872d88f8b135e8048"
1424
+ dependencies = [
1425
+ "bitflags 2.13.0",
1426
+ "ctor",
1427
+ "futures",
1428
+ "napi-build 2.3.2",
1429
+ "napi-sys",
1430
+ "nohash-hasher",
1431
+ "rustc-hash",
1432
+ "tokio",
1433
+ ]
1434
+
1435
+ [[package]]
1436
+ name = "napi-build"
1437
+ version = "1.2.1"
1438
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1439
+ checksum = "ebd4419172727423cf30351406c54f6cc1b354a2cfb4f1dba3e6cd07f6d5522b"
1440
+
1441
+ [[package]]
1442
+ name = "napi-build"
1443
+ version = "2.3.2"
1444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1445
+ checksum = "c9c366d2c8c60b86fa632df75f745509b52f9128f91a6bad4c796e44abb505e1"
1446
+
1447
+ [[package]]
1448
+ name = "napi-derive"
1449
+ version = "3.5.8"
1450
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1451
+ checksum = "6730ee4e7b335eac6d7cf10fc2525d92743bd4713a13cb2e6667f0e97322d7c3"
1452
+ dependencies = [
1453
+ "convert_case",
1454
+ "ctor",
1455
+ "napi-derive-backend",
1456
+ "proc-macro2",
1457
+ "quote",
1458
+ "syn",
1459
+ ]
1460
+
1461
+ [[package]]
1462
+ name = "napi-derive-backend"
1463
+ version = "5.1.0"
1464
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1465
+ checksum = "db5ccc18b1b16d1049dcbd3e1a21fdfbf3ce720b8944979c5e1a76d4e30d9f9f"
1466
+ dependencies = [
1467
+ "convert_case",
1468
+ "proc-macro2",
1469
+ "quote",
1470
+ "semver",
1471
+ "syn",
1472
+ ]
1473
+
1474
+ [[package]]
1475
+ name = "napi-sys"
1476
+ version = "3.2.2"
1477
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1478
+ checksum = "1f5bcdf71abd3a50d00b49c1c2c75251cb3c913777d6139cd37dabc093a5e400"
1479
+ dependencies = [
1480
+ "libloading",
1481
+ ]
1482
+
1483
+ [[package]]
1484
+ name = "native-tls"
1485
+ version = "0.2.18"
1486
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1487
+ checksum = "465500e14ea162429d264d44189adc38b199b62b1c21eea9f69e4b73cb03bbf2"
1488
+ dependencies = [
1489
+ "libc",
1490
+ "log",
1491
+ "openssl",
1492
+ "openssl-probe",
1493
+ "openssl-sys",
1494
+ "schannel",
1495
+ "security-framework",
1496
+ "security-framework-sys",
1497
+ "tempfile",
1498
+ ]
1499
+
1500
+ [[package]]
1501
+ name = "ndarray"
1502
+ version = "0.17.2"
1503
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1504
+ checksum = "520080814a7a6b4a6e9070823bb24b4531daac8c4627e08ba5de8c5ef2f2752d"
1505
+ dependencies = [
1506
+ "matrixmultiply",
1507
+ "num-complex",
1508
+ "num-integer",
1509
+ "num-traits",
1510
+ "portable-atomic",
1511
+ "portable-atomic-util",
1512
+ "rawpointer",
1513
+ ]
1514
+
1515
+ [[package]]
1516
+ name = "nix"
1517
+ version = "0.30.1"
1518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1519
+ checksum = "74523f3a35e05aba87a1d978330aef40f67b0304ac79c1c00b294c9830543db6"
1520
+ dependencies = [
1521
+ "bitflags 2.13.0",
1522
+ "cfg-if",
1523
+ "cfg_aliases",
1524
+ "libc",
1525
+ ]
1526
+
1527
+ [[package]]
1528
+ name = "nohash-hasher"
1529
+ version = "0.2.0"
1530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1531
+ checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451"
1532
+
1533
+ [[package]]
1534
+ name = "nom"
1535
+ version = "7.1.3"
1536
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1537
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
1538
+ dependencies = [
1539
+ "memchr",
1540
+ "minimal-lexical",
1541
+ ]
1542
+
1543
+ [[package]]
1544
+ name = "nu-ansi-term"
1545
+ version = "0.50.3"
1546
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1547
+ checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
1548
+ dependencies = [
1549
+ "windows-sys 0.61.2",
1550
+ ]
1551
+
1552
+ [[package]]
1553
+ name = "num-complex"
1554
+ version = "0.4.6"
1555
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1556
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
1557
+ dependencies = [
1558
+ "num-traits",
1559
+ ]
1560
+
1561
+ [[package]]
1562
+ name = "num-integer"
1563
+ version = "0.1.46"
1564
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1565
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
1566
+ dependencies = [
1567
+ "num-traits",
1568
+ ]
1569
+
1570
+ [[package]]
1571
+ name = "num-traits"
1572
+ version = "0.2.19"
1573
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1574
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1575
+ dependencies = [
1576
+ "autocfg",
1577
+ ]
1578
+
1579
+ [[package]]
1580
+ name = "num_cpus"
1581
+ version = "1.17.0"
1582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1583
+ checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
1584
+ dependencies = [
1585
+ "hermit-abi",
1586
+ "libc",
1587
+ ]
1588
+
1589
+ [[package]]
1590
+ name = "once_cell"
1591
+ version = "1.21.4"
1592
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1593
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
1594
+
1595
+ [[package]]
1596
+ name = "once_cell_polyfill"
1597
+ version = "1.70.2"
1598
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1599
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
1600
+
1601
+ [[package]]
1602
+ name = "onig"
1603
+ version = "6.5.3"
1604
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1605
+ checksum = "0cc3cbf698f9438986c11a880c90a6d04b9de27575afd28bbf45b154b6c709e2"
1606
+ dependencies = [
1607
+ "bitflags 2.13.0",
1608
+ "libc",
1609
+ "once_cell",
1610
+ "onig_sys",
1611
+ ]
1612
+
1613
+ [[package]]
1614
+ name = "onig_sys"
1615
+ version = "69.9.3"
1616
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1617
+ checksum = "1e68317604e77e53b85896388e1a803c1d21b74c899ec9e5e1112db90735edd7"
1618
+ dependencies = [
1619
+ "cc",
1620
+ "pkg-config",
1621
+ ]
1622
+
1623
+ [[package]]
1624
+ name = "oorandom"
1625
+ version = "11.1.5"
1626
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1627
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
1628
+
1629
+ [[package]]
1630
+ name = "openssl"
1631
+ version = "0.10.81"
1632
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1633
+ checksum = "77823a27f0babb03091cb9ed9ef80af3b39dbc82f97e8fa530374b7dafd87a45"
1634
+ dependencies = [
1635
+ "bitflags 2.13.0",
1636
+ "cfg-if",
1637
+ "foreign-types",
1638
+ "libc",
1639
+ "openssl-macros",
1640
+ "openssl-sys",
1641
+ ]
1642
+
1643
+ [[package]]
1644
+ name = "openssl-macros"
1645
+ version = "0.1.1"
1646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1647
+ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
1648
+ dependencies = [
1649
+ "proc-macro2",
1650
+ "quote",
1651
+ "syn",
1652
+ ]
1653
+
1654
+ [[package]]
1655
+ name = "openssl-probe"
1656
+ version = "0.2.1"
1657
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1658
+ checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
1659
+
1660
+ [[package]]
1661
+ name = "openssl-sys"
1662
+ version = "0.9.117"
1663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1664
+ checksum = "b47e7e6bb2c38cd930d25a23b40fa52e068c10e85f3e03a7f5ba5aaca5713695"
1665
+ dependencies = [
1666
+ "cc",
1667
+ "libc",
1668
+ "pkg-config",
1669
+ "vcpkg",
1670
+ ]
1671
+
1672
+ [[package]]
1673
+ name = "option-ext"
1674
+ version = "0.2.0"
1675
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1676
+ checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
1677
+
1678
+ [[package]]
1679
+ name = "ort"
1680
+ version = "2.0.0-rc.12"
1681
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1682
+ checksum = "d7de3af33d24a745ffb8fab904b13478438d1cd52868e6f17735ef6e1f8bf133"
1683
+ dependencies = [
1684
+ "ndarray",
1685
+ "ort-sys",
1686
+ "smallvec",
1687
+ "tracing",
1688
+ "ureq",
1689
+ ]
1690
+
1691
+ [[package]]
1692
+ name = "ort-sys"
1693
+ version = "2.0.0-rc.12"
1694
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1695
+ checksum = "d7b497d21a8b6fbb4b5a544f8fadb77e801a09ae0add9e411d31c6f89e3c1e90"
1696
+ dependencies = [
1697
+ "hmac-sha256",
1698
+ "lzma-rust2",
1699
+ "ureq",
1700
+ ]
1701
+
1702
+ [[package]]
1703
+ name = "parking_lot"
1704
+ version = "0.12.5"
1705
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1706
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
1707
+ dependencies = [
1708
+ "lock_api",
1709
+ "parking_lot_core",
1710
+ ]
1711
+
1712
+ [[package]]
1713
+ name = "parking_lot_core"
1714
+ version = "0.9.12"
1715
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1716
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
1717
+ dependencies = [
1718
+ "cfg-if",
1719
+ "libc",
1720
+ "redox_syscall",
1721
+ "smallvec",
1722
+ "windows-link",
1723
+ ]
1724
+
1725
+ [[package]]
1726
+ name = "paste"
1727
+ version = "1.0.15"
1728
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1729
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
1730
+
1731
+ [[package]]
1732
+ name = "pem-rfc7468"
1733
+ version = "1.0.0"
1734
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1735
+ checksum = "a6305423e0e7738146434843d1694d621cce767262b2a86910beab705e4493d9"
1736
+ dependencies = [
1737
+ "base64ct",
1738
+ ]
1739
+
1740
+ [[package]]
1741
+ name = "percent-encoding"
1742
+ version = "2.3.2"
1743
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1744
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1745
+
1746
+ [[package]]
1747
+ name = "pin-project-lite"
1748
+ version = "0.2.17"
1749
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1750
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
1751
+
1752
+ [[package]]
1753
+ name = "pkg-config"
1754
+ version = "0.3.33"
1755
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1756
+ checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
1757
+
1758
+ [[package]]
1759
+ name = "plotters"
1760
+ version = "0.3.7"
1761
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1762
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
1763
+ dependencies = [
1764
+ "num-traits",
1765
+ "plotters-backend",
1766
+ "plotters-svg",
1767
+ "wasm-bindgen",
1768
+ "web-sys",
1769
+ ]
1770
+
1771
+ [[package]]
1772
+ name = "plotters-backend"
1773
+ version = "0.3.7"
1774
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1775
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
1776
+
1777
+ [[package]]
1778
+ name = "plotters-svg"
1779
+ version = "0.3.7"
1780
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1781
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
1782
+ dependencies = [
1783
+ "plotters-backend",
1784
+ ]
1785
+
1786
+ [[package]]
1787
+ name = "portable-atomic"
1788
+ version = "1.13.1"
1789
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1790
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
1791
+
1792
+ [[package]]
1793
+ name = "portable-atomic-util"
1794
+ version = "0.2.7"
1795
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1796
+ checksum = "c2a106d1259c23fac8e543272398ae0e3c0b8d33c88ed73d0cc71b0f1d902618"
1797
+ dependencies = [
1798
+ "portable-atomic",
1799
+ ]
1800
+
1801
+ [[package]]
1802
+ name = "potential_utf"
1803
+ version = "0.1.5"
1804
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1805
+ checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
1806
+ dependencies = [
1807
+ "zerovec",
1808
+ ]
1809
+
1810
+ [[package]]
1811
+ name = "ppv-lite86"
1812
+ version = "0.2.21"
1813
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1814
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1815
+ dependencies = [
1816
+ "zerocopy",
1817
+ ]
1818
+
1819
+ [[package]]
1820
+ name = "proc-macro-error-attr2"
1821
+ version = "2.0.0"
1822
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1823
+ checksum = "96de42df36bb9bba5542fe9f1a054b8cc87e172759a1868aa05c1f3acc89dfc5"
1824
+ dependencies = [
1825
+ "proc-macro2",
1826
+ "quote",
1827
+ ]
1828
+
1829
+ [[package]]
1830
+ name = "proc-macro-error2"
1831
+ version = "2.0.1"
1832
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1833
+ checksum = "11ec05c52be0a07b08061f7dd003e7d7092e0472bc731b4af7bb1ef876109802"
1834
+ dependencies = [
1835
+ "proc-macro-error-attr2",
1836
+ "proc-macro2",
1837
+ "quote",
1838
+ "syn",
1839
+ ]
1840
+
1841
+ [[package]]
1842
+ name = "proc-macro2"
1843
+ version = "1.0.106"
1844
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1845
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1846
+ dependencies = [
1847
+ "unicode-ident",
1848
+ ]
1849
+
1850
+ [[package]]
1851
+ name = "pulsehive"
1852
+ version = "2.0.2"
1853
+ dependencies = [
1854
+ "pulsehive-anthropic",
1855
+ "pulsehive-core",
1856
+ "pulsehive-openai",
1857
+ "pulsehive-runtime",
1858
+ ]
1859
+
1860
+ [[package]]
1861
+ name = "pulsehive-anthropic"
1862
+ version = "2.0.2"
1863
+ dependencies = [
1864
+ "async-trait",
1865
+ "futures-core",
1866
+ "pulsehive-core",
1867
+ "reqwest",
1868
+ "serde",
1869
+ "serde_json",
1870
+ "tokio",
1871
+ ]
1872
+
1873
+ [[package]]
1874
+ name = "pulsehive-core"
1875
+ version = "2.0.2"
1876
+ dependencies = [
1877
+ "async-trait",
1878
+ "futures-core",
1879
+ "pulsehive-db",
1880
+ "serde",
1881
+ "serde_json",
1882
+ "thiserror 2.0.18",
1883
+ "tokio",
1884
+ "tracing",
1885
+ "uuid",
1886
+ ]
1887
+
1888
+ [[package]]
1889
+ name = "pulsehive-db"
1890
+ version = "0.4.0"
1891
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1892
+ checksum = "dea91d5f7a48a6f54f707211fd81a587c2452faadf38d1ecc55e9fd02e600e48"
1893
+ dependencies = [
1894
+ "anndists",
1895
+ "async-trait",
1896
+ "atomic-waker",
1897
+ "bincode",
1898
+ "crossbeam-channel",
1899
+ "dirs",
1900
+ "fs2",
1901
+ "futures-core",
1902
+ "hnsw_rs",
1903
+ "ndarray",
1904
+ "ort",
1905
+ "redb",
1906
+ "serde",
1907
+ "serde_json",
1908
+ "thiserror 1.0.69",
1909
+ "tokenizers",
1910
+ "tokio",
1911
+ "tracing",
1912
+ "ureq",
1913
+ "uuid",
1914
+ ]
1915
+
1916
+ [[package]]
1917
+ name = "pulsehive-js"
1918
+ version = "2.0.2"
1919
+ dependencies = [
1920
+ "async-trait",
1921
+ "futures",
1922
+ "futures-core",
1923
+ "napi",
1924
+ "napi-build 1.2.1",
1925
+ "napi-derive",
1926
+ "pulsehive-anthropic",
1927
+ "pulsehive-core",
1928
+ "pulsehive-openai",
1929
+ "pulsehive-runtime",
1930
+ "serde_json",
1931
+ "tokio",
1932
+ ]
1933
+
1934
+ [[package]]
1935
+ name = "pulsehive-openai"
1936
+ version = "2.0.2"
1937
+ dependencies = [
1938
+ "async-trait",
1939
+ "dotenvy",
1940
+ "futures",
1941
+ "futures-core",
1942
+ "pulsehive-core",
1943
+ "reqwest",
1944
+ "serde",
1945
+ "serde_json",
1946
+ "tokio",
1947
+ "tracing",
1948
+ ]
1949
+
1950
+ [[package]]
1951
+ name = "pulsehive-py"
1952
+ version = "2.0.2"
1953
+ dependencies = [
1954
+ "async-trait",
1955
+ "futures",
1956
+ "futures-core",
1957
+ "pulsehive-anthropic",
1958
+ "pulsehive-core",
1959
+ "pulsehive-openai",
1960
+ "pulsehive-runtime",
1961
+ "pyo3",
1962
+ "pyo3-async-runtimes",
1963
+ "serde_json",
1964
+ "tokio",
1965
+ ]
1966
+
1967
+ [[package]]
1968
+ name = "pulsehive-runtime"
1969
+ version = "2.0.2"
1970
+ dependencies = [
1971
+ "async-trait",
1972
+ "criterion",
1973
+ "dotenvy",
1974
+ "futures",
1975
+ "futures-core",
1976
+ "pulsehive-core",
1977
+ "pulsehive-db",
1978
+ "pulsehive-openai",
1979
+ "serde_json",
1980
+ "tempfile",
1981
+ "tokio",
1982
+ "tracing",
1983
+ "tracing-subscriber",
1984
+ "uuid",
1985
+ ]
1986
+
1987
+ [[package]]
1988
+ name = "pyo3"
1989
+ version = "0.29.0"
1990
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1991
+ checksum = "cd274650b21d4bfc26a0a47587962c1edb425f69287324355cd040c3ea66071c"
1992
+ dependencies = [
1993
+ "libc",
1994
+ "once_cell",
1995
+ "portable-atomic",
1996
+ "pyo3-build-config",
1997
+ "pyo3-ffi",
1998
+ "pyo3-macros",
1999
+ ]
2000
+
2001
+ [[package]]
2002
+ name = "pyo3-async-runtimes"
2003
+ version = "0.29.0"
2004
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2005
+ checksum = "b3ef68daa7316a3fac65e5e18b2203f010346de1c1c53456811a2624673ab046"
2006
+ dependencies = [
2007
+ "futures-channel",
2008
+ "futures-util",
2009
+ "once_cell",
2010
+ "pin-project-lite",
2011
+ "pyo3",
2012
+ "tokio",
2013
+ ]
2014
+
2015
+ [[package]]
2016
+ name = "pyo3-build-config"
2017
+ version = "0.29.0"
2018
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2019
+ checksum = "c5e2a7d2f0d013342f295c048ad19237add5154a55b1c5a254c0ec93d4109078"
2020
+ dependencies = [
2021
+ "target-lexicon",
2022
+ ]
2023
+
2024
+ [[package]]
2025
+ name = "pyo3-ffi"
2026
+ version = "0.29.0"
2027
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2028
+ checksum = "ca85c467da1bbc8d866eea5deff9cf29ea5f7785054a17da36e65bda9c05845b"
2029
+ dependencies = [
2030
+ "libc",
2031
+ "pyo3-build-config",
2032
+ ]
2033
+
2034
+ [[package]]
2035
+ name = "pyo3-macros"
2036
+ version = "0.29.0"
2037
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2038
+ checksum = "9ac53762fd065daa3194dd09337a38bd793a188100fd1a9304c4ab312d901771"
2039
+ dependencies = [
2040
+ "proc-macro2",
2041
+ "pyo3-macros-backend",
2042
+ "quote",
2043
+ "syn",
2044
+ ]
2045
+
2046
+ [[package]]
2047
+ name = "pyo3-macros-backend"
2048
+ version = "0.29.0"
2049
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2050
+ checksum = "4ca3a1557399783172dc5bf39cfca835157732532cba56b71d2292161e53b362"
2051
+ dependencies = [
2052
+ "heck",
2053
+ "proc-macro2",
2054
+ "quote",
2055
+ "syn",
2056
+ ]
2057
+
2058
+ [[package]]
2059
+ name = "quote"
2060
+ version = "1.0.46"
2061
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2062
+ checksum = "dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368"
2063
+ dependencies = [
2064
+ "proc-macro2",
2065
+ ]
2066
+
2067
+ [[package]]
2068
+ name = "r-efi"
2069
+ version = "5.3.0"
2070
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2071
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
2072
+
2073
+ [[package]]
2074
+ name = "r-efi"
2075
+ version = "6.0.0"
2076
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2077
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
2078
+
2079
+ [[package]]
2080
+ name = "rand"
2081
+ version = "0.8.6"
2082
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2083
+ checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a"
2084
+ dependencies = [
2085
+ "libc",
2086
+ "rand_chacha 0.3.1",
2087
+ "rand_core 0.6.4",
2088
+ ]
2089
+
2090
+ [[package]]
2091
+ name = "rand"
2092
+ version = "0.9.4"
2093
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2094
+ checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
2095
+ dependencies = [
2096
+ "rand_chacha 0.9.0",
2097
+ "rand_core 0.9.5",
2098
+ ]
2099
+
2100
+ [[package]]
2101
+ name = "rand_chacha"
2102
+ version = "0.3.1"
2103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2104
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
2105
+ dependencies = [
2106
+ "ppv-lite86",
2107
+ "rand_core 0.6.4",
2108
+ ]
2109
+
2110
+ [[package]]
2111
+ name = "rand_chacha"
2112
+ version = "0.9.0"
2113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2114
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
2115
+ dependencies = [
2116
+ "ppv-lite86",
2117
+ "rand_core 0.9.5",
2118
+ ]
2119
+
2120
+ [[package]]
2121
+ name = "rand_core"
2122
+ version = "0.6.4"
2123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2124
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2125
+ dependencies = [
2126
+ "getrandom 0.2.17",
2127
+ ]
2128
+
2129
+ [[package]]
2130
+ name = "rand_core"
2131
+ version = "0.9.5"
2132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2133
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
2134
+ dependencies = [
2135
+ "getrandom 0.3.4",
2136
+ ]
2137
+
2138
+ [[package]]
2139
+ name = "rawpointer"
2140
+ version = "0.2.1"
2141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2142
+ checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
2143
+
2144
+ [[package]]
2145
+ name = "rayon"
2146
+ version = "1.12.0"
2147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2148
+ checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
2149
+ dependencies = [
2150
+ "either",
2151
+ "rayon-core",
2152
+ ]
2153
+
2154
+ [[package]]
2155
+ name = "rayon-cond"
2156
+ version = "0.3.0"
2157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2158
+ checksum = "059f538b55efd2309c9794130bc149c6a553db90e9d99c2030785c82f0bd7df9"
2159
+ dependencies = [
2160
+ "either",
2161
+ "itertools 0.11.0",
2162
+ "rayon",
2163
+ ]
2164
+
2165
+ [[package]]
2166
+ name = "rayon-core"
2167
+ version = "1.13.0"
2168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2169
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
2170
+ dependencies = [
2171
+ "crossbeam-deque",
2172
+ "crossbeam-utils",
2173
+ ]
2174
+
2175
+ [[package]]
2176
+ name = "redb"
2177
+ version = "2.6.3"
2178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2179
+ checksum = "8eca1e9d98d5a7e9002d0013e18d5a9b000aee942eb134883a82f06ebffb6c01"
2180
+ dependencies = [
2181
+ "libc",
2182
+ ]
2183
+
2184
+ [[package]]
2185
+ name = "redox_syscall"
2186
+ version = "0.5.18"
2187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2188
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
2189
+ dependencies = [
2190
+ "bitflags 2.13.0",
2191
+ ]
2192
+
2193
+ [[package]]
2194
+ name = "redox_users"
2195
+ version = "0.4.6"
2196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2197
+ checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43"
2198
+ dependencies = [
2199
+ "getrandom 0.2.17",
2200
+ "libredox",
2201
+ "thiserror 1.0.69",
2202
+ ]
2203
+
2204
+ [[package]]
2205
+ name = "regex"
2206
+ version = "1.12.4"
2207
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2208
+ checksum = "f1292b7759ae1cb9ec195452d1390a074f0cd8541ab7a5a8c31cd6db45d4a6ba"
2209
+ dependencies = [
2210
+ "aho-corasick",
2211
+ "memchr",
2212
+ "regex-automata",
2213
+ "regex-syntax",
2214
+ ]
2215
+
2216
+ [[package]]
2217
+ name = "regex-automata"
2218
+ version = "0.4.14"
2219
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2220
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
2221
+ dependencies = [
2222
+ "aho-corasick",
2223
+ "memchr",
2224
+ "regex-syntax",
2225
+ ]
2226
+
2227
+ [[package]]
2228
+ name = "regex-syntax"
2229
+ version = "0.8.11"
2230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2231
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
2232
+
2233
+ [[package]]
2234
+ name = "reqwest"
2235
+ version = "0.12.28"
2236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2237
+ checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
2238
+ dependencies = [
2239
+ "base64 0.22.1",
2240
+ "bytes",
2241
+ "encoding_rs",
2242
+ "futures-core",
2243
+ "futures-util",
2244
+ "h2",
2245
+ "http",
2246
+ "http-body",
2247
+ "http-body-util",
2248
+ "hyper",
2249
+ "hyper-rustls",
2250
+ "hyper-tls",
2251
+ "hyper-util",
2252
+ "js-sys",
2253
+ "log",
2254
+ "mime",
2255
+ "native-tls",
2256
+ "percent-encoding",
2257
+ "pin-project-lite",
2258
+ "rustls-pki-types",
2259
+ "serde",
2260
+ "serde_json",
2261
+ "serde_urlencoded",
2262
+ "sync_wrapper",
2263
+ "tokio",
2264
+ "tokio-native-tls",
2265
+ "tokio-util",
2266
+ "tower",
2267
+ "tower-http",
2268
+ "tower-service",
2269
+ "url",
2270
+ "wasm-bindgen",
2271
+ "wasm-bindgen-futures",
2272
+ "wasm-streams",
2273
+ "web-sys",
2274
+ ]
2275
+
2276
+ [[package]]
2277
+ name = "ring"
2278
+ version = "0.17.14"
2279
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2280
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
2281
+ dependencies = [
2282
+ "cc",
2283
+ "cfg-if",
2284
+ "getrandom 0.2.17",
2285
+ "libc",
2286
+ "untrusted",
2287
+ "windows-sys 0.52.0",
2288
+ ]
2289
+
2290
+ [[package]]
2291
+ name = "rustc-hash"
2292
+ version = "2.1.3"
2293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2294
+ checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
2295
+
2296
+ [[package]]
2297
+ name = "rustix"
2298
+ version = "1.1.4"
2299
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2300
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
2301
+ dependencies = [
2302
+ "bitflags 2.13.0",
2303
+ "errno",
2304
+ "libc",
2305
+ "linux-raw-sys",
2306
+ "windows-sys 0.61.2",
2307
+ ]
2308
+
2309
+ [[package]]
2310
+ name = "rustls"
2311
+ version = "0.23.41"
2312
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2313
+ checksum = "6b92b125634d9b795e7beca796cc790df15a7fb38323bf3196fda83292d06b1f"
2314
+ dependencies = [
2315
+ "log",
2316
+ "once_cell",
2317
+ "ring",
2318
+ "rustls-pki-types",
2319
+ "rustls-webpki",
2320
+ "subtle",
2321
+ "zeroize",
2322
+ ]
2323
+
2324
+ [[package]]
2325
+ name = "rustls-pki-types"
2326
+ version = "1.15.0"
2327
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2328
+ checksum = "764899a24af3980067ee14bc143654f297b22eaebfe3c7b6b211920a5a59b046"
2329
+ dependencies = [
2330
+ "zeroize",
2331
+ ]
2332
+
2333
+ [[package]]
2334
+ name = "rustls-webpki"
2335
+ version = "0.103.13"
2336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2337
+ checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
2338
+ dependencies = [
2339
+ "ring",
2340
+ "rustls-pki-types",
2341
+ "untrusted",
2342
+ ]
2343
+
2344
+ [[package]]
2345
+ name = "rustversion"
2346
+ version = "1.0.22"
2347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2348
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
2349
+
2350
+ [[package]]
2351
+ name = "ryu"
2352
+ version = "1.0.23"
2353
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2354
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
2355
+
2356
+ [[package]]
2357
+ name = "same-file"
2358
+ version = "1.0.6"
2359
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2360
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
2361
+ dependencies = [
2362
+ "winapi-util",
2363
+ ]
2364
+
2365
+ [[package]]
2366
+ name = "schannel"
2367
+ version = "0.1.29"
2368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2369
+ checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939"
2370
+ dependencies = [
2371
+ "windows-sys 0.61.2",
2372
+ ]
2373
+
2374
+ [[package]]
2375
+ name = "scopeguard"
2376
+ version = "1.2.0"
2377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2378
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2379
+
2380
+ [[package]]
2381
+ name = "security-framework"
2382
+ version = "3.7.0"
2383
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2384
+ checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
2385
+ dependencies = [
2386
+ "bitflags 2.13.0",
2387
+ "core-foundation 0.10.1",
2388
+ "core-foundation-sys",
2389
+ "libc",
2390
+ "security-framework-sys",
2391
+ ]
2392
+
2393
+ [[package]]
2394
+ name = "security-framework-sys"
2395
+ version = "2.17.0"
2396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2397
+ checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
2398
+ dependencies = [
2399
+ "core-foundation-sys",
2400
+ "libc",
2401
+ ]
2402
+
2403
+ [[package]]
2404
+ name = "semver"
2405
+ version = "1.0.28"
2406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2407
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
2408
+
2409
+ [[package]]
2410
+ name = "serde"
2411
+ version = "1.0.228"
2412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2413
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
2414
+ dependencies = [
2415
+ "serde_core",
2416
+ "serde_derive",
2417
+ ]
2418
+
2419
+ [[package]]
2420
+ name = "serde_core"
2421
+ version = "1.0.228"
2422
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2423
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
2424
+ dependencies = [
2425
+ "serde_derive",
2426
+ ]
2427
+
2428
+ [[package]]
2429
+ name = "serde_derive"
2430
+ version = "1.0.228"
2431
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2432
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
2433
+ dependencies = [
2434
+ "proc-macro2",
2435
+ "quote",
2436
+ "syn",
2437
+ ]
2438
+
2439
+ [[package]]
2440
+ name = "serde_json"
2441
+ version = "1.0.150"
2442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2443
+ checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
2444
+ dependencies = [
2445
+ "itoa",
2446
+ "memchr",
2447
+ "serde",
2448
+ "serde_core",
2449
+ "zmij",
2450
+ ]
2451
+
2452
+ [[package]]
2453
+ name = "serde_urlencoded"
2454
+ version = "0.7.1"
2455
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2456
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
2457
+ dependencies = [
2458
+ "form_urlencoded",
2459
+ "itoa",
2460
+ "ryu",
2461
+ "serde",
2462
+ ]
2463
+
2464
+ [[package]]
2465
+ name = "sharded-slab"
2466
+ version = "0.1.7"
2467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2468
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
2469
+ dependencies = [
2470
+ "lazy_static",
2471
+ ]
2472
+
2473
+ [[package]]
2474
+ name = "shlex"
2475
+ version = "2.0.1"
2476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2477
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
2478
+
2479
+ [[package]]
2480
+ name = "simd-adler32"
2481
+ version = "0.3.9"
2482
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2483
+ checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
2484
+
2485
+ [[package]]
2486
+ name = "slab"
2487
+ version = "0.4.12"
2488
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2489
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
2490
+
2491
+ [[package]]
2492
+ name = "smallvec"
2493
+ version = "1.15.2"
2494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2495
+ checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
2496
+
2497
+ [[package]]
2498
+ name = "socket2"
2499
+ version = "0.6.4"
2500
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2501
+ checksum = "52d1cfed4120b4d927bf7c0f86d2087a4a7d6027c906d9f9d525a80573b9be51"
2502
+ dependencies = [
2503
+ "libc",
2504
+ "windows-sys 0.61.2",
2505
+ ]
2506
+
2507
+ [[package]]
2508
+ name = "socks"
2509
+ version = "0.3.4"
2510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2511
+ checksum = "f0c3dbbd9ae980613c6dd8e28a9407b50509d3803b57624d5dfe8315218cd58b"
2512
+ dependencies = [
2513
+ "byteorder",
2514
+ "libc",
2515
+ "winapi",
2516
+ ]
2517
+
2518
+ [[package]]
2519
+ name = "spm_precompiled"
2520
+ version = "0.1.4"
2521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2522
+ checksum = "5851699c4033c63636f7ea4cf7b7c1f1bf06d0cc03cfb42e711de5a5c46cf326"
2523
+ dependencies = [
2524
+ "base64 0.13.1",
2525
+ "nom",
2526
+ "serde",
2527
+ "unicode-segmentation",
2528
+ ]
2529
+
2530
+ [[package]]
2531
+ name = "stable_deref_trait"
2532
+ version = "1.2.1"
2533
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2534
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
2535
+
2536
+ [[package]]
2537
+ name = "strsim"
2538
+ version = "0.11.1"
2539
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2540
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
2541
+
2542
+ [[package]]
2543
+ name = "subtle"
2544
+ version = "2.6.1"
2545
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2546
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
2547
+
2548
+ [[package]]
2549
+ name = "syn"
2550
+ version = "2.0.118"
2551
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2552
+ checksum = "1b9ae57f904213ebb649ce6895b8a66c66f0203b9319718f69a5612a065b1422"
2553
+ dependencies = [
2554
+ "proc-macro2",
2555
+ "quote",
2556
+ "unicode-ident",
2557
+ ]
2558
+
2559
+ [[package]]
2560
+ name = "sync_wrapper"
2561
+ version = "1.0.2"
2562
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2563
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
2564
+ dependencies = [
2565
+ "futures-core",
2566
+ ]
2567
+
2568
+ [[package]]
2569
+ name = "synstructure"
2570
+ version = "0.13.2"
2571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2572
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
2573
+ dependencies = [
2574
+ "proc-macro2",
2575
+ "quote",
2576
+ "syn",
2577
+ ]
2578
+
2579
+ [[package]]
2580
+ name = "sysctl"
2581
+ version = "0.6.0"
2582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2583
+ checksum = "01198a2debb237c62b6826ec7081082d951f46dbb64b0e8c7649a452230d1dfc"
2584
+ dependencies = [
2585
+ "bitflags 2.13.0",
2586
+ "byteorder",
2587
+ "enum-as-inner",
2588
+ "libc",
2589
+ "thiserror 1.0.69",
2590
+ "walkdir",
2591
+ ]
2592
+
2593
+ [[package]]
2594
+ name = "system-configuration"
2595
+ version = "0.7.0"
2596
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2597
+ checksum = "a13f3d0daba03132c0aa9767f98351b3488edc2c100cda2d2ec2b04f3d8d3c8b"
2598
+ dependencies = [
2599
+ "bitflags 2.13.0",
2600
+ "core-foundation 0.9.4",
2601
+ "system-configuration-sys",
2602
+ ]
2603
+
2604
+ [[package]]
2605
+ name = "system-configuration-sys"
2606
+ version = "0.6.0"
2607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2608
+ checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4"
2609
+ dependencies = [
2610
+ "core-foundation-sys",
2611
+ "libc",
2612
+ ]
2613
+
2614
+ [[package]]
2615
+ name = "target-lexicon"
2616
+ version = "0.13.5"
2617
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2618
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
2619
+
2620
+ [[package]]
2621
+ name = "tempfile"
2622
+ version = "3.27.0"
2623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2624
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
2625
+ dependencies = [
2626
+ "fastrand",
2627
+ "getrandom 0.4.3",
2628
+ "once_cell",
2629
+ "rustix",
2630
+ "windows-sys 0.61.2",
2631
+ ]
2632
+
2633
+ [[package]]
2634
+ name = "thiserror"
2635
+ version = "1.0.69"
2636
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2637
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
2638
+ dependencies = [
2639
+ "thiserror-impl 1.0.69",
2640
+ ]
2641
+
2642
+ [[package]]
2643
+ name = "thiserror"
2644
+ version = "2.0.18"
2645
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2646
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
2647
+ dependencies = [
2648
+ "thiserror-impl 2.0.18",
2649
+ ]
2650
+
2651
+ [[package]]
2652
+ name = "thiserror-impl"
2653
+ version = "1.0.69"
2654
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2655
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
2656
+ dependencies = [
2657
+ "proc-macro2",
2658
+ "quote",
2659
+ "syn",
2660
+ ]
2661
+
2662
+ [[package]]
2663
+ name = "thiserror-impl"
2664
+ version = "2.0.18"
2665
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2666
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
2667
+ dependencies = [
2668
+ "proc-macro2",
2669
+ "quote",
2670
+ "syn",
2671
+ ]
2672
+
2673
+ [[package]]
2674
+ name = "thread_local"
2675
+ version = "1.1.9"
2676
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2677
+ checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
2678
+ dependencies = [
2679
+ "cfg-if",
2680
+ ]
2681
+
2682
+ [[package]]
2683
+ name = "tinystr"
2684
+ version = "0.8.3"
2685
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2686
+ checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
2687
+ dependencies = [
2688
+ "displaydoc",
2689
+ "zerovec",
2690
+ ]
2691
+
2692
+ [[package]]
2693
+ name = "tinytemplate"
2694
+ version = "1.2.1"
2695
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2696
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
2697
+ dependencies = [
2698
+ "serde",
2699
+ "serde_json",
2700
+ ]
2701
+
2702
+ [[package]]
2703
+ name = "tokenizers"
2704
+ version = "0.20.4"
2705
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2706
+ checksum = "3b08cc37428a476fc9e20ac850132a513a2e1ce32b6a31addf2b74fa7033b905"
2707
+ dependencies = [
2708
+ "aho-corasick",
2709
+ "derive_builder",
2710
+ "esaxx-rs",
2711
+ "getrandom 0.2.17",
2712
+ "itertools 0.12.1",
2713
+ "lazy_static",
2714
+ "log",
2715
+ "macro_rules_attribute",
2716
+ "monostate",
2717
+ "onig",
2718
+ "paste",
2719
+ "rand 0.8.6",
2720
+ "rayon",
2721
+ "rayon-cond",
2722
+ "regex",
2723
+ "regex-syntax",
2724
+ "serde",
2725
+ "serde_json",
2726
+ "spm_precompiled",
2727
+ "thiserror 1.0.69",
2728
+ "unicode-normalization-alignments",
2729
+ "unicode-segmentation",
2730
+ "unicode_categories",
2731
+ ]
2732
+
2733
+ [[package]]
2734
+ name = "tokio"
2735
+ version = "1.52.3"
2736
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2737
+ checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
2738
+ dependencies = [
2739
+ "bytes",
2740
+ "libc",
2741
+ "mio",
2742
+ "pin-project-lite",
2743
+ "socket2",
2744
+ "tokio-macros",
2745
+ "windows-sys 0.61.2",
2746
+ ]
2747
+
2748
+ [[package]]
2749
+ name = "tokio-macros"
2750
+ version = "2.7.0"
2751
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2752
+ checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
2753
+ dependencies = [
2754
+ "proc-macro2",
2755
+ "quote",
2756
+ "syn",
2757
+ ]
2758
+
2759
+ [[package]]
2760
+ name = "tokio-native-tls"
2761
+ version = "0.3.1"
2762
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2763
+ checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
2764
+ dependencies = [
2765
+ "native-tls",
2766
+ "tokio",
2767
+ ]
2768
+
2769
+ [[package]]
2770
+ name = "tokio-rustls"
2771
+ version = "0.26.4"
2772
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2773
+ checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
2774
+ dependencies = [
2775
+ "rustls",
2776
+ "tokio",
2777
+ ]
2778
+
2779
+ [[package]]
2780
+ name = "tokio-util"
2781
+ version = "0.7.18"
2782
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2783
+ checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
2784
+ dependencies = [
2785
+ "bytes",
2786
+ "futures-core",
2787
+ "futures-sink",
2788
+ "pin-project-lite",
2789
+ "tokio",
2790
+ ]
2791
+
2792
+ [[package]]
2793
+ name = "tower"
2794
+ version = "0.5.3"
2795
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2796
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
2797
+ dependencies = [
2798
+ "futures-core",
2799
+ "futures-util",
2800
+ "pin-project-lite",
2801
+ "sync_wrapper",
2802
+ "tokio",
2803
+ "tower-layer",
2804
+ "tower-service",
2805
+ ]
2806
+
2807
+ [[package]]
2808
+ name = "tower-http"
2809
+ version = "0.6.11"
2810
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2811
+ checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840"
2812
+ dependencies = [
2813
+ "bitflags 2.13.0",
2814
+ "bytes",
2815
+ "futures-util",
2816
+ "http",
2817
+ "http-body",
2818
+ "pin-project-lite",
2819
+ "tower",
2820
+ "tower-layer",
2821
+ "tower-service",
2822
+ "url",
2823
+ ]
2824
+
2825
+ [[package]]
2826
+ name = "tower-layer"
2827
+ version = "0.3.3"
2828
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2829
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
2830
+
2831
+ [[package]]
2832
+ name = "tower-service"
2833
+ version = "0.3.3"
2834
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2835
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
2836
+
2837
+ [[package]]
2838
+ name = "tracing"
2839
+ version = "0.1.44"
2840
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2841
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
2842
+ dependencies = [
2843
+ "pin-project-lite",
2844
+ "tracing-attributes",
2845
+ "tracing-core",
2846
+ ]
2847
+
2848
+ [[package]]
2849
+ name = "tracing-attributes"
2850
+ version = "0.1.31"
2851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2852
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
2853
+ dependencies = [
2854
+ "proc-macro2",
2855
+ "quote",
2856
+ "syn",
2857
+ ]
2858
+
2859
+ [[package]]
2860
+ name = "tracing-core"
2861
+ version = "0.1.36"
2862
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2863
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
2864
+ dependencies = [
2865
+ "once_cell",
2866
+ "valuable",
2867
+ ]
2868
+
2869
+ [[package]]
2870
+ name = "tracing-log"
2871
+ version = "0.2.0"
2872
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2873
+ checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
2874
+ dependencies = [
2875
+ "log",
2876
+ "once_cell",
2877
+ "tracing-core",
2878
+ ]
2879
+
2880
+ [[package]]
2881
+ name = "tracing-subscriber"
2882
+ version = "0.3.23"
2883
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2884
+ checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319"
2885
+ dependencies = [
2886
+ "nu-ansi-term",
2887
+ "sharded-slab",
2888
+ "smallvec",
2889
+ "thread_local",
2890
+ "tracing-core",
2891
+ "tracing-log",
2892
+ ]
2893
+
2894
+ [[package]]
2895
+ name = "try-lock"
2896
+ version = "0.2.5"
2897
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2898
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
2899
+
2900
+ [[package]]
2901
+ name = "unicode-ident"
2902
+ version = "1.0.24"
2903
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2904
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
2905
+
2906
+ [[package]]
2907
+ name = "unicode-normalization-alignments"
2908
+ version = "0.1.12"
2909
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2910
+ checksum = "43f613e4fa046e69818dd287fdc4bc78175ff20331479dab6e1b0f98d57062de"
2911
+ dependencies = [
2912
+ "smallvec",
2913
+ ]
2914
+
2915
+ [[package]]
2916
+ name = "unicode-segmentation"
2917
+ version = "1.13.3"
2918
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2919
+ checksum = "c6f5d3c3b1bf09027a88a6bc961fc00497d651009560b5463668dc81b0fa87a8"
2920
+
2921
+ [[package]]
2922
+ name = "unicode_categories"
2923
+ version = "0.1.1"
2924
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2925
+ checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e"
2926
+
2927
+ [[package]]
2928
+ name = "untrusted"
2929
+ version = "0.9.0"
2930
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2931
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
2932
+
2933
+ [[package]]
2934
+ name = "ureq"
2935
+ version = "3.3.0"
2936
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2937
+ checksum = "dea7109cdcd5864d4eeb1b58a1648dc9bf520360d7af16ec26d0a9354bafcfc0"
2938
+ dependencies = [
2939
+ "base64 0.22.1",
2940
+ "der",
2941
+ "flate2",
2942
+ "log",
2943
+ "native-tls",
2944
+ "percent-encoding",
2945
+ "rustls",
2946
+ "rustls-pki-types",
2947
+ "socks",
2948
+ "ureq-proto",
2949
+ "utf8-zero",
2950
+ "webpki-root-certs",
2951
+ "webpki-roots",
2952
+ ]
2953
+
2954
+ [[package]]
2955
+ name = "ureq-proto"
2956
+ version = "0.6.0"
2957
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2958
+ checksum = "e994ba84b0bd1b1b0cf92878b7ef898a5c1760108fe7b6010327e274917a808c"
2959
+ dependencies = [
2960
+ "base64 0.22.1",
2961
+ "http",
2962
+ "httparse",
2963
+ "log",
2964
+ ]
2965
+
2966
+ [[package]]
2967
+ name = "url"
2968
+ version = "2.5.8"
2969
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2970
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
2971
+ dependencies = [
2972
+ "form_urlencoded",
2973
+ "idna",
2974
+ "percent-encoding",
2975
+ "serde",
2976
+ ]
2977
+
2978
+ [[package]]
2979
+ name = "utf8-zero"
2980
+ version = "0.8.1"
2981
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2982
+ checksum = "b8c0a043c9540bae7c578c88f91dda8bd82e59ae27c21baca69c8b191aaf5a6e"
2983
+
2984
+ [[package]]
2985
+ name = "utf8_iter"
2986
+ version = "1.0.4"
2987
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2988
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
2989
+
2990
+ [[package]]
2991
+ name = "utf8parse"
2992
+ version = "0.2.2"
2993
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2994
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
2995
+
2996
+ [[package]]
2997
+ name = "uuid"
2998
+ version = "1.23.4"
2999
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3000
+ checksum = "bf80a72845275afea99e7f2b434723d3bc7e38470fcd1c7ed39a599c73319a53"
3001
+ dependencies = [
3002
+ "getrandom 0.4.3",
3003
+ "js-sys",
3004
+ "serde_core",
3005
+ "wasm-bindgen",
3006
+ ]
3007
+
3008
+ [[package]]
3009
+ name = "valuable"
3010
+ version = "0.1.1"
3011
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3012
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
3013
+
3014
+ [[package]]
3015
+ name = "vcpkg"
3016
+ version = "0.2.15"
3017
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3018
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
3019
+
3020
+ [[package]]
3021
+ name = "walkdir"
3022
+ version = "2.5.0"
3023
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3024
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
3025
+ dependencies = [
3026
+ "same-file",
3027
+ "winapi-util",
3028
+ ]
3029
+
3030
+ [[package]]
3031
+ name = "want"
3032
+ version = "0.3.1"
3033
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3034
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
3035
+ dependencies = [
3036
+ "try-lock",
3037
+ ]
3038
+
3039
+ [[package]]
3040
+ name = "wasi"
3041
+ version = "0.11.1+wasi-snapshot-preview1"
3042
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3043
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
3044
+
3045
+ [[package]]
3046
+ name = "wasip2"
3047
+ version = "1.0.4+wasi-0.2.12"
3048
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3049
+ checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
3050
+ dependencies = [
3051
+ "wit-bindgen",
3052
+ ]
3053
+
3054
+ [[package]]
3055
+ name = "wasm-bindgen"
3056
+ version = "0.2.126"
3057
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3058
+ checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4"
3059
+ dependencies = [
3060
+ "cfg-if",
3061
+ "once_cell",
3062
+ "rustversion",
3063
+ "wasm-bindgen-macro",
3064
+ "wasm-bindgen-shared",
3065
+ ]
3066
+
3067
+ [[package]]
3068
+ name = "wasm-bindgen-futures"
3069
+ version = "0.4.76"
3070
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3071
+ checksum = "c62df1340f32221cb9c54d6a27b030e3dba64361d4a95bed55f9aacb44da291d"
3072
+ dependencies = [
3073
+ "js-sys",
3074
+ "wasm-bindgen",
3075
+ ]
3076
+
3077
+ [[package]]
3078
+ name = "wasm-bindgen-macro"
3079
+ version = "0.2.126"
3080
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3081
+ checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1"
3082
+ dependencies = [
3083
+ "quote",
3084
+ "wasm-bindgen-macro-support",
3085
+ ]
3086
+
3087
+ [[package]]
3088
+ name = "wasm-bindgen-macro-support"
3089
+ version = "0.2.126"
3090
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3091
+ checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e"
3092
+ dependencies = [
3093
+ "bumpalo",
3094
+ "proc-macro2",
3095
+ "quote",
3096
+ "syn",
3097
+ "wasm-bindgen-shared",
3098
+ ]
3099
+
3100
+ [[package]]
3101
+ name = "wasm-bindgen-shared"
3102
+ version = "0.2.126"
3103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3104
+ checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24"
3105
+ dependencies = [
3106
+ "unicode-ident",
3107
+ ]
3108
+
3109
+ [[package]]
3110
+ name = "wasm-streams"
3111
+ version = "0.4.2"
3112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3113
+ checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65"
3114
+ dependencies = [
3115
+ "futures-util",
3116
+ "js-sys",
3117
+ "wasm-bindgen",
3118
+ "wasm-bindgen-futures",
3119
+ "web-sys",
3120
+ ]
3121
+
3122
+ [[package]]
3123
+ name = "web-sys"
3124
+ version = "0.3.103"
3125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3126
+ checksum = "8622dcb61c0bcc9fffa6938bed81210af2da9a7e4a1a834b2e37a59b6dfb6141"
3127
+ dependencies = [
3128
+ "js-sys",
3129
+ "wasm-bindgen",
3130
+ ]
3131
+
3132
+ [[package]]
3133
+ name = "webpki-root-certs"
3134
+ version = "1.0.8"
3135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3136
+ checksum = "0d46a5a140e6f7afeccd8eae97eff335163939eac8b929834875168b29b3d267"
3137
+ dependencies = [
3138
+ "rustls-pki-types",
3139
+ ]
3140
+
3141
+ [[package]]
3142
+ name = "webpki-roots"
3143
+ version = "1.0.8"
3144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3145
+ checksum = "bf85cb06032201fa7c6f829d7db5a7e5aa45bcc0655327713065f6f0576731bf"
3146
+ dependencies = [
3147
+ "rustls-pki-types",
3148
+ ]
3149
+
3150
+ [[package]]
3151
+ name = "widestring"
3152
+ version = "1.2.1"
3153
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3154
+ checksum = "72069c3113ab32ab29e5584db3c6ec55d416895e60715417b5b883a357c3e471"
3155
+
3156
+ [[package]]
3157
+ name = "winapi"
3158
+ version = "0.3.9"
3159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3160
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
3161
+ dependencies = [
3162
+ "winapi-i686-pc-windows-gnu",
3163
+ "winapi-x86_64-pc-windows-gnu",
3164
+ ]
3165
+
3166
+ [[package]]
3167
+ name = "winapi-i686-pc-windows-gnu"
3168
+ version = "0.4.0"
3169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3170
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
3171
+
3172
+ [[package]]
3173
+ name = "winapi-util"
3174
+ version = "0.1.11"
3175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3176
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
3177
+ dependencies = [
3178
+ "windows-sys 0.61.2",
3179
+ ]
3180
+
3181
+ [[package]]
3182
+ name = "winapi-x86_64-pc-windows-gnu"
3183
+ version = "0.4.0"
3184
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3185
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
3186
+
3187
+ [[package]]
3188
+ name = "windows"
3189
+ version = "0.48.0"
3190
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3191
+ checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f"
3192
+ dependencies = [
3193
+ "windows-targets 0.48.5",
3194
+ ]
3195
+
3196
+ [[package]]
3197
+ name = "windows-link"
3198
+ version = "0.2.1"
3199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3200
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
3201
+
3202
+ [[package]]
3203
+ name = "windows-registry"
3204
+ version = "0.6.1"
3205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3206
+ checksum = "02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720"
3207
+ dependencies = [
3208
+ "windows-link",
3209
+ "windows-result",
3210
+ "windows-strings",
3211
+ ]
3212
+
3213
+ [[package]]
3214
+ name = "windows-result"
3215
+ version = "0.4.1"
3216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3217
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
3218
+ dependencies = [
3219
+ "windows-link",
3220
+ ]
3221
+
3222
+ [[package]]
3223
+ name = "windows-strings"
3224
+ version = "0.5.1"
3225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3226
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
3227
+ dependencies = [
3228
+ "windows-link",
3229
+ ]
3230
+
3231
+ [[package]]
3232
+ name = "windows-sys"
3233
+ version = "0.48.0"
3234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3235
+ checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
3236
+ dependencies = [
3237
+ "windows-targets 0.48.5",
3238
+ ]
3239
+
3240
+ [[package]]
3241
+ name = "windows-sys"
3242
+ version = "0.52.0"
3243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3244
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
3245
+ dependencies = [
3246
+ "windows-targets 0.52.6",
3247
+ ]
3248
+
3249
+ [[package]]
3250
+ name = "windows-sys"
3251
+ version = "0.61.2"
3252
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3253
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
3254
+ dependencies = [
3255
+ "windows-link",
3256
+ ]
3257
+
3258
+ [[package]]
3259
+ name = "windows-targets"
3260
+ version = "0.48.5"
3261
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3262
+ checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
3263
+ dependencies = [
3264
+ "windows_aarch64_gnullvm 0.48.5",
3265
+ "windows_aarch64_msvc 0.48.5",
3266
+ "windows_i686_gnu 0.48.5",
3267
+ "windows_i686_msvc 0.48.5",
3268
+ "windows_x86_64_gnu 0.48.5",
3269
+ "windows_x86_64_gnullvm 0.48.5",
3270
+ "windows_x86_64_msvc 0.48.5",
3271
+ ]
3272
+
3273
+ [[package]]
3274
+ name = "windows-targets"
3275
+ version = "0.52.6"
3276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3277
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
3278
+ dependencies = [
3279
+ "windows_aarch64_gnullvm 0.52.6",
3280
+ "windows_aarch64_msvc 0.52.6",
3281
+ "windows_i686_gnu 0.52.6",
3282
+ "windows_i686_gnullvm",
3283
+ "windows_i686_msvc 0.52.6",
3284
+ "windows_x86_64_gnu 0.52.6",
3285
+ "windows_x86_64_gnullvm 0.52.6",
3286
+ "windows_x86_64_msvc 0.52.6",
3287
+ ]
3288
+
3289
+ [[package]]
3290
+ name = "windows_aarch64_gnullvm"
3291
+ version = "0.48.5"
3292
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3293
+ checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
3294
+
3295
+ [[package]]
3296
+ name = "windows_aarch64_gnullvm"
3297
+ version = "0.52.6"
3298
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3299
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
3300
+
3301
+ [[package]]
3302
+ name = "windows_aarch64_msvc"
3303
+ version = "0.48.5"
3304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3305
+ checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
3306
+
3307
+ [[package]]
3308
+ name = "windows_aarch64_msvc"
3309
+ version = "0.52.6"
3310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3311
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
3312
+
3313
+ [[package]]
3314
+ name = "windows_i686_gnu"
3315
+ version = "0.48.5"
3316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3317
+ checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
3318
+
3319
+ [[package]]
3320
+ name = "windows_i686_gnu"
3321
+ version = "0.52.6"
3322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3323
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
3324
+
3325
+ [[package]]
3326
+ name = "windows_i686_gnullvm"
3327
+ version = "0.52.6"
3328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3329
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
3330
+
3331
+ [[package]]
3332
+ name = "windows_i686_msvc"
3333
+ version = "0.48.5"
3334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3335
+ checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
3336
+
3337
+ [[package]]
3338
+ name = "windows_i686_msvc"
3339
+ version = "0.52.6"
3340
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3341
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
3342
+
3343
+ [[package]]
3344
+ name = "windows_x86_64_gnu"
3345
+ version = "0.48.5"
3346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3347
+ checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
3348
+
3349
+ [[package]]
3350
+ name = "windows_x86_64_gnu"
3351
+ version = "0.52.6"
3352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3353
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
3354
+
3355
+ [[package]]
3356
+ name = "windows_x86_64_gnullvm"
3357
+ version = "0.48.5"
3358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3359
+ checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
3360
+
3361
+ [[package]]
3362
+ name = "windows_x86_64_gnullvm"
3363
+ version = "0.52.6"
3364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3365
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
3366
+
3367
+ [[package]]
3368
+ name = "windows_x86_64_msvc"
3369
+ version = "0.48.5"
3370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3371
+ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
3372
+
3373
+ [[package]]
3374
+ name = "windows_x86_64_msvc"
3375
+ version = "0.52.6"
3376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3377
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
3378
+
3379
+ [[package]]
3380
+ name = "wit-bindgen"
3381
+ version = "0.57.1"
3382
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3383
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
3384
+
3385
+ [[package]]
3386
+ name = "writeable"
3387
+ version = "0.6.3"
3388
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3389
+ checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
3390
+
3391
+ [[package]]
3392
+ name = "yoke"
3393
+ version = "0.8.3"
3394
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3395
+ checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5"
3396
+ dependencies = [
3397
+ "stable_deref_trait",
3398
+ "yoke-derive",
3399
+ "zerofrom",
3400
+ ]
3401
+
3402
+ [[package]]
3403
+ name = "yoke-derive"
3404
+ version = "0.8.2"
3405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3406
+ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
3407
+ dependencies = [
3408
+ "proc-macro2",
3409
+ "quote",
3410
+ "syn",
3411
+ "synstructure",
3412
+ ]
3413
+
3414
+ [[package]]
3415
+ name = "zerocopy"
3416
+ version = "0.8.52"
3417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3418
+ checksum = "ce1022995ff5ff5d841ad7d994facc23098cd40152f2c1d11cd607c6f530653f"
3419
+ dependencies = [
3420
+ "zerocopy-derive",
3421
+ ]
3422
+
3423
+ [[package]]
3424
+ name = "zerocopy-derive"
3425
+ version = "0.8.52"
3426
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3427
+ checksum = "1ae7f38b72ec2a254e2b87ef277cf2cd4fb97cbebf944faa6f33354da0867930"
3428
+ dependencies = [
3429
+ "proc-macro2",
3430
+ "quote",
3431
+ "syn",
3432
+ ]
3433
+
3434
+ [[package]]
3435
+ name = "zerofrom"
3436
+ version = "0.1.8"
3437
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3438
+ checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
3439
+ dependencies = [
3440
+ "zerofrom-derive",
3441
+ ]
3442
+
3443
+ [[package]]
3444
+ name = "zerofrom-derive"
3445
+ version = "0.1.7"
3446
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3447
+ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
3448
+ dependencies = [
3449
+ "proc-macro2",
3450
+ "quote",
3451
+ "syn",
3452
+ "synstructure",
3453
+ ]
3454
+
3455
+ [[package]]
3456
+ name = "zeroize"
3457
+ version = "1.9.0"
3458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3459
+ checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e"
3460
+
3461
+ [[package]]
3462
+ name = "zerotrie"
3463
+ version = "0.2.4"
3464
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3465
+ checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
3466
+ dependencies = [
3467
+ "displaydoc",
3468
+ "yoke",
3469
+ "zerofrom",
3470
+ ]
3471
+
3472
+ [[package]]
3473
+ name = "zerovec"
3474
+ version = "0.11.6"
3475
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3476
+ checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
3477
+ dependencies = [
3478
+ "yoke",
3479
+ "zerofrom",
3480
+ "zerovec-derive",
3481
+ ]
3482
+
3483
+ [[package]]
3484
+ name = "zerovec-derive"
3485
+ version = "0.11.3"
3486
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3487
+ checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
3488
+ dependencies = [
3489
+ "proc-macro2",
3490
+ "quote",
3491
+ "syn",
3492
+ ]
3493
+
3494
+ [[package]]
3495
+ name = "zmij"
3496
+ version = "1.0.21"
3497
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3498
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"