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