solverforge 0.2.2__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 (62) hide show
  1. solverforge-0.2.2/Cargo.lock +2425 -0
  2. solverforge-0.2.2/Cargo.toml +59 -0
  3. solverforge-0.2.2/PKG-INFO +83 -0
  4. solverforge-0.2.2/README.md +57 -0
  5. solverforge-0.2.2/pyproject.toml +38 -0
  6. solverforge-0.2.2/python/solverforge/__init__.py +65 -0
  7. solverforge-0.2.2/solverforge-core/Cargo.toml +43 -0
  8. solverforge-0.2.2/solverforge-core/README.md +64 -0
  9. solverforge-0.2.2/solverforge-core/src/analysis/explanation.rs +406 -0
  10. solverforge-0.2.2/solverforge-core/src/analysis/manager.rs +329 -0
  11. solverforge-0.2.2/solverforge-core/src/analysis/mod.rs +5 -0
  12. solverforge-0.2.2/solverforge-core/src/bridge.rs +315 -0
  13. solverforge-0.2.2/solverforge-core/src/constraints/collectors.rs +445 -0
  14. solverforge-0.2.2/solverforge-core/src/constraints/constraint.rs +315 -0
  15. solverforge-0.2.2/solverforge-core/src/constraints/joiners.rs +597 -0
  16. solverforge-0.2.2/solverforge-core/src/constraints/mod.rs +9 -0
  17. solverforge-0.2.2/solverforge-core/src/constraints/stream.rs +587 -0
  18. solverforge-0.2.2/solverforge-core/src/domain/annotations.rs +305 -0
  19. solverforge-0.2.2/solverforge-core/src/domain/class.rs +431 -0
  20. solverforge-0.2.2/solverforge-core/src/domain/constraint_config.rs +100 -0
  21. solverforge-0.2.2/solverforge-core/src/domain/mod.rs +13 -0
  22. solverforge-0.2.2/solverforge-core/src/domain/model.rs +441 -0
  23. solverforge-0.2.2/solverforge-core/src/domain/shadow.rs +331 -0
  24. solverforge-0.2.2/solverforge-core/src/error.rs +100 -0
  25. solverforge-0.2.2/solverforge-core/src/handles.rs +171 -0
  26. solverforge-0.2.2/solverforge-core/src/lib.rs +80 -0
  27. solverforge-0.2.2/solverforge-core/src/score/bendable.rs +554 -0
  28. solverforge-0.2.2/solverforge-core/src/score/hard_soft.rs +506 -0
  29. solverforge-0.2.2/solverforge-core/src/score/hard_soft_decimal.rs +481 -0
  30. solverforge-0.2.2/solverforge-core/src/score/mod.rs +25 -0
  31. solverforge-0.2.2/solverforge-core/src/score/simple.rs +168 -0
  32. solverforge-0.2.2/solverforge-core/src/score/simple_decimal.rs +188 -0
  33. solverforge-0.2.2/solverforge-core/src/solver/builder.rs +857 -0
  34. solverforge-0.2.2/solverforge-core/src/solver/client.rs +191 -0
  35. solverforge-0.2.2/solverforge-core/src/solver/config.rs +216 -0
  36. solverforge-0.2.2/solverforge-core/src/solver/environment.rs +195 -0
  37. solverforge-0.2.2/solverforge-core/src/solver/factory.rs +284 -0
  38. solverforge-0.2.2/solverforge-core/src/solver/mod.rs +22 -0
  39. solverforge-0.2.2/solverforge-core/src/solver/request.rs +641 -0
  40. solverforge-0.2.2/solverforge-core/src/solver/response.rs +467 -0
  41. solverforge-0.2.2/solverforge-core/src/solver/termination.rs +249 -0
  42. solverforge-0.2.2/solverforge-core/src/traits.rs +495 -0
  43. solverforge-0.2.2/solverforge-core/src/value.rs +402 -0
  44. solverforge-0.2.2/solverforge-core/src/wasm/expr_builder.rs +534 -0
  45. solverforge-0.2.2/solverforge-core/src/wasm/expression.rs +614 -0
  46. solverforge-0.2.2/solverforge-core/src/wasm/generator.rs +1617 -0
  47. solverforge-0.2.2/solverforge-core/src/wasm/host_functions.rs +240 -0
  48. solverforge-0.2.2/solverforge-core/src/wasm/memory.rs +300 -0
  49. solverforge-0.2.2/solverforge-core/src/wasm/mod.rs +16 -0
  50. solverforge-0.2.2/solverforge-python/Cargo.toml +35 -0
  51. solverforge-0.2.2/solverforge-python/README.md +57 -0
  52. solverforge-0.2.2/solverforge-python/python/solverforge/__init__.py +65 -0
  53. solverforge-0.2.2/solverforge-python/src/annotations.rs +573 -0
  54. solverforge-0.2.2/solverforge-python/src/bridge.rs +1031 -0
  55. solverforge-0.2.2/solverforge-python/src/collectors.rs +349 -0
  56. solverforge-0.2.2/solverforge-python/src/decorators.rs +773 -0
  57. solverforge-0.2.2/solverforge-python/src/joiners.rs +400 -0
  58. solverforge-0.2.2/solverforge-python/src/lambda_analyzer.rs +1368 -0
  59. solverforge-0.2.2/solverforge-python/src/lib.rs +72 -0
  60. solverforge-0.2.2/solverforge-python/src/score.rs +579 -0
  61. solverforge-0.2.2/solverforge-python/src/solver.rs +1580 -0
  62. solverforge-0.2.2/solverforge-python/src/stream.rs +1289 -0
@@ -0,0 +1,2425 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "ahash"
7
+ version = "0.7.8"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9"
10
+ dependencies = [
11
+ "getrandom 0.2.16",
12
+ "once_cell",
13
+ "version_check",
14
+ ]
15
+
16
+ [[package]]
17
+ name = "aho-corasick"
18
+ version = "1.1.4"
19
+ source = "registry+https://github.com/rust-lang/crates.io-index"
20
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
21
+ dependencies = [
22
+ "memchr",
23
+ ]
24
+
25
+ [[package]]
26
+ name = "android_system_properties"
27
+ version = "0.1.5"
28
+ source = "registry+https://github.com/rust-lang/crates.io-index"
29
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
30
+ dependencies = [
31
+ "libc",
32
+ ]
33
+
34
+ [[package]]
35
+ name = "anstream"
36
+ version = "0.6.21"
37
+ source = "registry+https://github.com/rust-lang/crates.io-index"
38
+ checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
39
+ dependencies = [
40
+ "anstyle",
41
+ "anstyle-parse",
42
+ "anstyle-query",
43
+ "anstyle-wincon",
44
+ "colorchoice",
45
+ "is_terminal_polyfill",
46
+ "utf8parse",
47
+ ]
48
+
49
+ [[package]]
50
+ name = "anstyle"
51
+ version = "1.0.13"
52
+ source = "registry+https://github.com/rust-lang/crates.io-index"
53
+ checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
54
+
55
+ [[package]]
56
+ name = "anstyle-parse"
57
+ version = "0.2.7"
58
+ source = "registry+https://github.com/rust-lang/crates.io-index"
59
+ checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
60
+ dependencies = [
61
+ "utf8parse",
62
+ ]
63
+
64
+ [[package]]
65
+ name = "anstyle-query"
66
+ version = "1.1.5"
67
+ source = "registry+https://github.com/rust-lang/crates.io-index"
68
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
69
+ dependencies = [
70
+ "windows-sys 0.61.2",
71
+ ]
72
+
73
+ [[package]]
74
+ name = "anstyle-wincon"
75
+ version = "3.0.11"
76
+ source = "registry+https://github.com/rust-lang/crates.io-index"
77
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
78
+ dependencies = [
79
+ "anstyle",
80
+ "once_cell_polyfill",
81
+ "windows-sys 0.61.2",
82
+ ]
83
+
84
+ [[package]]
85
+ name = "arrayvec"
86
+ version = "0.7.6"
87
+ source = "registry+https://github.com/rust-lang/crates.io-index"
88
+ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
89
+
90
+ [[package]]
91
+ name = "atomic-waker"
92
+ version = "1.1.2"
93
+ source = "registry+https://github.com/rust-lang/crates.io-index"
94
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
95
+
96
+ [[package]]
97
+ name = "autocfg"
98
+ version = "1.5.0"
99
+ source = "registry+https://github.com/rust-lang/crates.io-index"
100
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
101
+
102
+ [[package]]
103
+ name = "base64"
104
+ version = "0.22.1"
105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
106
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
107
+
108
+ [[package]]
109
+ name = "bit-set"
110
+ version = "0.8.0"
111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
112
+ checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
113
+ dependencies = [
114
+ "bit-vec",
115
+ ]
116
+
117
+ [[package]]
118
+ name = "bit-vec"
119
+ version = "0.8.0"
120
+ source = "registry+https://github.com/rust-lang/crates.io-index"
121
+ checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
122
+
123
+ [[package]]
124
+ name = "bitflags"
125
+ version = "2.10.0"
126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
127
+ checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
128
+
129
+ [[package]]
130
+ name = "bitvec"
131
+ version = "1.0.1"
132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
133
+ checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c"
134
+ dependencies = [
135
+ "funty",
136
+ "radium",
137
+ "tap",
138
+ "wyz",
139
+ ]
140
+
141
+ [[package]]
142
+ name = "borsh"
143
+ version = "1.6.0"
144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
145
+ checksum = "d1da5ab77c1437701eeff7c88d968729e7766172279eab0676857b3d63af7a6f"
146
+ dependencies = [
147
+ "borsh-derive",
148
+ "cfg_aliases",
149
+ ]
150
+
151
+ [[package]]
152
+ name = "borsh-derive"
153
+ version = "1.6.0"
154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
155
+ checksum = "0686c856aa6aac0c4498f936d7d6a02df690f614c03e4d906d1018062b5c5e2c"
156
+ dependencies = [
157
+ "once_cell",
158
+ "proc-macro-crate",
159
+ "proc-macro2",
160
+ "quote",
161
+ "syn 2.0.111",
162
+ ]
163
+
164
+ [[package]]
165
+ name = "bumpalo"
166
+ version = "3.19.0"
167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
168
+ checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
169
+
170
+ [[package]]
171
+ name = "bytecheck"
172
+ version = "0.6.12"
173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
174
+ checksum = "23cdc57ce23ac53c931e88a43d06d070a6fd142f2617be5855eb75efc9beb1c2"
175
+ dependencies = [
176
+ "bytecheck_derive",
177
+ "ptr_meta",
178
+ "simdutf8",
179
+ ]
180
+
181
+ [[package]]
182
+ name = "bytecheck_derive"
183
+ version = "0.6.12"
184
+ source = "registry+https://github.com/rust-lang/crates.io-index"
185
+ checksum = "3db406d29fbcd95542e92559bed4d8ad92636d1ca8b3b72ede10b4bcc010e659"
186
+ dependencies = [
187
+ "proc-macro2",
188
+ "quote",
189
+ "syn 1.0.109",
190
+ ]
191
+
192
+ [[package]]
193
+ name = "bytes"
194
+ version = "1.11.0"
195
+ source = "registry+https://github.com/rust-lang/crates.io-index"
196
+ checksum = "b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3"
197
+
198
+ [[package]]
199
+ name = "cc"
200
+ version = "1.2.49"
201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
202
+ checksum = "90583009037521a116abf44494efecd645ba48b6622457080f080b85544e2215"
203
+ dependencies = [
204
+ "find-msvc-tools",
205
+ "shlex",
206
+ ]
207
+
208
+ [[package]]
209
+ name = "cfg-if"
210
+ version = "1.0.4"
211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
212
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
213
+
214
+ [[package]]
215
+ name = "cfg_aliases"
216
+ version = "0.2.1"
217
+ source = "registry+https://github.com/rust-lang/crates.io-index"
218
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
219
+
220
+ [[package]]
221
+ name = "chrono"
222
+ version = "0.4.42"
223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
224
+ checksum = "145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2"
225
+ dependencies = [
226
+ "iana-time-zone",
227
+ "js-sys",
228
+ "num-traits",
229
+ "wasm-bindgen",
230
+ "windows-link",
231
+ ]
232
+
233
+ [[package]]
234
+ name = "colorchoice"
235
+ version = "1.0.4"
236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
237
+ checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
238
+
239
+ [[package]]
240
+ name = "core-foundation-sys"
241
+ version = "0.8.7"
242
+ source = "registry+https://github.com/rust-lang/crates.io-index"
243
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
244
+
245
+ [[package]]
246
+ name = "dirs"
247
+ version = "6.0.0"
248
+ source = "registry+https://github.com/rust-lang/crates.io-index"
249
+ checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e"
250
+ dependencies = [
251
+ "dirs-sys",
252
+ ]
253
+
254
+ [[package]]
255
+ name = "dirs-sys"
256
+ version = "0.5.0"
257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
258
+ checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab"
259
+ dependencies = [
260
+ "libc",
261
+ "option-ext",
262
+ "redox_users",
263
+ "windows-sys 0.61.2",
264
+ ]
265
+
266
+ [[package]]
267
+ name = "displaydoc"
268
+ version = "0.2.5"
269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
270
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
271
+ dependencies = [
272
+ "proc-macro2",
273
+ "quote",
274
+ "syn 2.0.111",
275
+ ]
276
+
277
+ [[package]]
278
+ name = "env_filter"
279
+ version = "0.1.4"
280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
281
+ checksum = "1bf3c259d255ca70051b30e2e95b5446cdb8949ac4cd22c0d7fd634d89f568e2"
282
+ dependencies = [
283
+ "log",
284
+ "regex",
285
+ ]
286
+
287
+ [[package]]
288
+ name = "env_logger"
289
+ version = "0.11.8"
290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
291
+ checksum = "13c863f0904021b108aa8b2f55046443e6b1ebde8fd4a15c399893aae4fa069f"
292
+ dependencies = [
293
+ "anstream",
294
+ "anstyle",
295
+ "env_filter",
296
+ "jiff",
297
+ "log",
298
+ ]
299
+
300
+ [[package]]
301
+ name = "equivalent"
302
+ version = "1.0.2"
303
+ source = "registry+https://github.com/rust-lang/crates.io-index"
304
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
305
+
306
+ [[package]]
307
+ name = "errno"
308
+ version = "0.3.14"
309
+ source = "registry+https://github.com/rust-lang/crates.io-index"
310
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
311
+ dependencies = [
312
+ "libc",
313
+ "windows-sys 0.61.2",
314
+ ]
315
+
316
+ [[package]]
317
+ name = "fastrand"
318
+ version = "2.3.0"
319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
320
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
321
+
322
+ [[package]]
323
+ name = "find-msvc-tools"
324
+ version = "0.1.5"
325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
326
+ checksum = "3a3076410a55c90011c298b04d0cfa770b00fa04e1e3c97d3f6c9de105a03844"
327
+
328
+ [[package]]
329
+ name = "fnv"
330
+ version = "1.0.7"
331
+ source = "registry+https://github.com/rust-lang/crates.io-index"
332
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
333
+
334
+ [[package]]
335
+ name = "form_urlencoded"
336
+ version = "1.2.2"
337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
338
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
339
+ dependencies = [
340
+ "percent-encoding",
341
+ ]
342
+
343
+ [[package]]
344
+ name = "funty"
345
+ version = "2.0.0"
346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
347
+ checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
348
+
349
+ [[package]]
350
+ name = "futures-channel"
351
+ version = "0.3.31"
352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
353
+ checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
354
+ dependencies = [
355
+ "futures-core",
356
+ "futures-sink",
357
+ ]
358
+
359
+ [[package]]
360
+ name = "futures-core"
361
+ version = "0.3.31"
362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
363
+ checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
364
+
365
+ [[package]]
366
+ name = "futures-io"
367
+ version = "0.3.31"
368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
369
+ checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
370
+
371
+ [[package]]
372
+ name = "futures-sink"
373
+ version = "0.3.31"
374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
375
+ checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
376
+
377
+ [[package]]
378
+ name = "futures-task"
379
+ version = "0.3.31"
380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
381
+ checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
382
+
383
+ [[package]]
384
+ name = "futures-util"
385
+ version = "0.3.31"
386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
387
+ checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
388
+ dependencies = [
389
+ "futures-core",
390
+ "futures-io",
391
+ "futures-sink",
392
+ "futures-task",
393
+ "memchr",
394
+ "pin-project-lite",
395
+ "pin-utils",
396
+ "slab",
397
+ ]
398
+
399
+ [[package]]
400
+ name = "getrandom"
401
+ version = "0.2.16"
402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
403
+ checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
404
+ dependencies = [
405
+ "cfg-if",
406
+ "js-sys",
407
+ "libc",
408
+ "wasi",
409
+ "wasm-bindgen",
410
+ ]
411
+
412
+ [[package]]
413
+ name = "getrandom"
414
+ version = "0.3.4"
415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
416
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
417
+ dependencies = [
418
+ "cfg-if",
419
+ "js-sys",
420
+ "libc",
421
+ "r-efi",
422
+ "wasip2",
423
+ "wasm-bindgen",
424
+ ]
425
+
426
+ [[package]]
427
+ name = "hashbrown"
428
+ version = "0.12.3"
429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
430
+ checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
431
+ dependencies = [
432
+ "ahash",
433
+ ]
434
+
435
+ [[package]]
436
+ name = "hashbrown"
437
+ version = "0.16.1"
438
+ source = "registry+https://github.com/rust-lang/crates.io-index"
439
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
440
+
441
+ [[package]]
442
+ name = "heck"
443
+ version = "0.5.0"
444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
445
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
446
+
447
+ [[package]]
448
+ name = "http"
449
+ version = "1.4.0"
450
+ source = "registry+https://github.com/rust-lang/crates.io-index"
451
+ checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
452
+ dependencies = [
453
+ "bytes",
454
+ "itoa",
455
+ ]
456
+
457
+ [[package]]
458
+ name = "http-body"
459
+ version = "1.0.1"
460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
461
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
462
+ dependencies = [
463
+ "bytes",
464
+ "http",
465
+ ]
466
+
467
+ [[package]]
468
+ name = "http-body-util"
469
+ version = "0.1.3"
470
+ source = "registry+https://github.com/rust-lang/crates.io-index"
471
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
472
+ dependencies = [
473
+ "bytes",
474
+ "futures-core",
475
+ "http",
476
+ "http-body",
477
+ "pin-project-lite",
478
+ ]
479
+
480
+ [[package]]
481
+ name = "httparse"
482
+ version = "1.10.1"
483
+ source = "registry+https://github.com/rust-lang/crates.io-index"
484
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
485
+
486
+ [[package]]
487
+ name = "hyper"
488
+ version = "1.8.1"
489
+ source = "registry+https://github.com/rust-lang/crates.io-index"
490
+ checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11"
491
+ dependencies = [
492
+ "atomic-waker",
493
+ "bytes",
494
+ "futures-channel",
495
+ "futures-core",
496
+ "http",
497
+ "http-body",
498
+ "httparse",
499
+ "itoa",
500
+ "pin-project-lite",
501
+ "pin-utils",
502
+ "smallvec",
503
+ "tokio",
504
+ "want",
505
+ ]
506
+
507
+ [[package]]
508
+ name = "hyper-rustls"
509
+ version = "0.27.7"
510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
511
+ checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
512
+ dependencies = [
513
+ "http",
514
+ "hyper",
515
+ "hyper-util",
516
+ "rustls",
517
+ "rustls-pki-types",
518
+ "tokio",
519
+ "tokio-rustls",
520
+ "tower-service",
521
+ "webpki-roots",
522
+ ]
523
+
524
+ [[package]]
525
+ name = "hyper-util"
526
+ version = "0.1.19"
527
+ source = "registry+https://github.com/rust-lang/crates.io-index"
528
+ checksum = "727805d60e7938b76b826a6ef209eb70eaa1812794f9424d4a4e2d740662df5f"
529
+ dependencies = [
530
+ "base64",
531
+ "bytes",
532
+ "futures-channel",
533
+ "futures-core",
534
+ "futures-util",
535
+ "http",
536
+ "http-body",
537
+ "hyper",
538
+ "ipnet",
539
+ "libc",
540
+ "percent-encoding",
541
+ "pin-project-lite",
542
+ "socket2",
543
+ "tokio",
544
+ "tower-service",
545
+ "tracing",
546
+ ]
547
+
548
+ [[package]]
549
+ name = "iana-time-zone"
550
+ version = "0.1.64"
551
+ source = "registry+https://github.com/rust-lang/crates.io-index"
552
+ checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb"
553
+ dependencies = [
554
+ "android_system_properties",
555
+ "core-foundation-sys",
556
+ "iana-time-zone-haiku",
557
+ "js-sys",
558
+ "log",
559
+ "wasm-bindgen",
560
+ "windows-core",
561
+ ]
562
+
563
+ [[package]]
564
+ name = "iana-time-zone-haiku"
565
+ version = "0.1.2"
566
+ source = "registry+https://github.com/rust-lang/crates.io-index"
567
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
568
+ dependencies = [
569
+ "cc",
570
+ ]
571
+
572
+ [[package]]
573
+ name = "icu_collections"
574
+ version = "2.1.1"
575
+ source = "registry+https://github.com/rust-lang/crates.io-index"
576
+ checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
577
+ dependencies = [
578
+ "displaydoc",
579
+ "potential_utf",
580
+ "yoke",
581
+ "zerofrom",
582
+ "zerovec",
583
+ ]
584
+
585
+ [[package]]
586
+ name = "icu_locale_core"
587
+ version = "2.1.1"
588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
589
+ checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
590
+ dependencies = [
591
+ "displaydoc",
592
+ "litemap",
593
+ "tinystr",
594
+ "writeable",
595
+ "zerovec",
596
+ ]
597
+
598
+ [[package]]
599
+ name = "icu_normalizer"
600
+ version = "2.1.1"
601
+ source = "registry+https://github.com/rust-lang/crates.io-index"
602
+ checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
603
+ dependencies = [
604
+ "icu_collections",
605
+ "icu_normalizer_data",
606
+ "icu_properties",
607
+ "icu_provider",
608
+ "smallvec",
609
+ "zerovec",
610
+ ]
611
+
612
+ [[package]]
613
+ name = "icu_normalizer_data"
614
+ version = "2.1.1"
615
+ source = "registry+https://github.com/rust-lang/crates.io-index"
616
+ checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
617
+
618
+ [[package]]
619
+ name = "icu_properties"
620
+ version = "2.1.2"
621
+ source = "registry+https://github.com/rust-lang/crates.io-index"
622
+ checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
623
+ dependencies = [
624
+ "icu_collections",
625
+ "icu_locale_core",
626
+ "icu_properties_data",
627
+ "icu_provider",
628
+ "zerotrie",
629
+ "zerovec",
630
+ ]
631
+
632
+ [[package]]
633
+ name = "icu_properties_data"
634
+ version = "2.1.2"
635
+ source = "registry+https://github.com/rust-lang/crates.io-index"
636
+ checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
637
+
638
+ [[package]]
639
+ name = "icu_provider"
640
+ version = "2.1.1"
641
+ source = "registry+https://github.com/rust-lang/crates.io-index"
642
+ checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
643
+ dependencies = [
644
+ "displaydoc",
645
+ "icu_locale_core",
646
+ "writeable",
647
+ "yoke",
648
+ "zerofrom",
649
+ "zerotrie",
650
+ "zerovec",
651
+ ]
652
+
653
+ [[package]]
654
+ name = "idna"
655
+ version = "1.1.0"
656
+ source = "registry+https://github.com/rust-lang/crates.io-index"
657
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
658
+ dependencies = [
659
+ "idna_adapter",
660
+ "smallvec",
661
+ "utf8_iter",
662
+ ]
663
+
664
+ [[package]]
665
+ name = "idna_adapter"
666
+ version = "1.2.1"
667
+ source = "registry+https://github.com/rust-lang/crates.io-index"
668
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
669
+ dependencies = [
670
+ "icu_normalizer",
671
+ "icu_properties",
672
+ ]
673
+
674
+ [[package]]
675
+ name = "indexmap"
676
+ version = "2.12.1"
677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
678
+ checksum = "0ad4bb2b565bca0645f4d68c5c9af97fba094e9791da685bf83cb5f3ce74acf2"
679
+ dependencies = [
680
+ "equivalent",
681
+ "hashbrown 0.16.1",
682
+ "serde",
683
+ "serde_core",
684
+ ]
685
+
686
+ [[package]]
687
+ name = "indoc"
688
+ version = "2.0.7"
689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
690
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
691
+ dependencies = [
692
+ "rustversion",
693
+ ]
694
+
695
+ [[package]]
696
+ name = "ipnet"
697
+ version = "2.11.0"
698
+ source = "registry+https://github.com/rust-lang/crates.io-index"
699
+ checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
700
+
701
+ [[package]]
702
+ name = "iri-string"
703
+ version = "0.7.9"
704
+ source = "registry+https://github.com/rust-lang/crates.io-index"
705
+ checksum = "4f867b9d1d896b67beb18518eda36fdb77a32ea590de864f1325b294a6d14397"
706
+ dependencies = [
707
+ "memchr",
708
+ "serde",
709
+ ]
710
+
711
+ [[package]]
712
+ name = "is_terminal_polyfill"
713
+ version = "1.70.2"
714
+ source = "registry+https://github.com/rust-lang/crates.io-index"
715
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
716
+
717
+ [[package]]
718
+ name = "itoa"
719
+ version = "1.0.15"
720
+ source = "registry+https://github.com/rust-lang/crates.io-index"
721
+ checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
722
+
723
+ [[package]]
724
+ name = "jiff"
725
+ version = "0.2.16"
726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
727
+ checksum = "49cce2b81f2098e7e3efc35bc2e0a6b7abec9d34128283d7a26fa8f32a6dbb35"
728
+ dependencies = [
729
+ "jiff-static",
730
+ "log",
731
+ "portable-atomic",
732
+ "portable-atomic-util",
733
+ "serde_core",
734
+ ]
735
+
736
+ [[package]]
737
+ name = "jiff-static"
738
+ version = "0.2.16"
739
+ source = "registry+https://github.com/rust-lang/crates.io-index"
740
+ checksum = "980af8b43c3ad5d8d349ace167ec8170839f753a42d233ba19e08afe1850fa69"
741
+ dependencies = [
742
+ "proc-macro2",
743
+ "quote",
744
+ "syn 2.0.111",
745
+ ]
746
+
747
+ [[package]]
748
+ name = "js-sys"
749
+ version = "0.3.83"
750
+ source = "registry+https://github.com/rust-lang/crates.io-index"
751
+ checksum = "464a3709c7f55f1f721e5389aa6ea4e3bc6aba669353300af094b29ffbdde1d8"
752
+ dependencies = [
753
+ "once_cell",
754
+ "wasm-bindgen",
755
+ ]
756
+
757
+ [[package]]
758
+ name = "leb128"
759
+ version = "0.2.5"
760
+ source = "registry+https://github.com/rust-lang/crates.io-index"
761
+ checksum = "884e2677b40cc8c339eaefcb701c32ef1fd2493d71118dc0ca4b6a736c93bd67"
762
+
763
+ [[package]]
764
+ name = "leb128fmt"
765
+ version = "0.1.0"
766
+ source = "registry+https://github.com/rust-lang/crates.io-index"
767
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
768
+
769
+ [[package]]
770
+ name = "libc"
771
+ version = "0.2.178"
772
+ source = "registry+https://github.com/rust-lang/crates.io-index"
773
+ checksum = "37c93d8daa9d8a012fd8ab92f088405fb202ea0b6ab73ee2482ae66af4f42091"
774
+
775
+ [[package]]
776
+ name = "libredox"
777
+ version = "0.1.10"
778
+ source = "registry+https://github.com/rust-lang/crates.io-index"
779
+ checksum = "416f7e718bdb06000964960ffa43b4335ad4012ae8b99060261aa4a8088d5ccb"
780
+ dependencies = [
781
+ "bitflags",
782
+ "libc",
783
+ ]
784
+
785
+ [[package]]
786
+ name = "linux-raw-sys"
787
+ version = "0.11.0"
788
+ source = "registry+https://github.com/rust-lang/crates.io-index"
789
+ checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
790
+
791
+ [[package]]
792
+ name = "litemap"
793
+ version = "0.8.1"
794
+ source = "registry+https://github.com/rust-lang/crates.io-index"
795
+ checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
796
+
797
+ [[package]]
798
+ name = "log"
799
+ version = "0.4.29"
800
+ source = "registry+https://github.com/rust-lang/crates.io-index"
801
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
802
+
803
+ [[package]]
804
+ name = "lru-slab"
805
+ version = "0.1.2"
806
+ source = "registry+https://github.com/rust-lang/crates.io-index"
807
+ checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
808
+
809
+ [[package]]
810
+ name = "memchr"
811
+ version = "2.7.6"
812
+ source = "registry+https://github.com/rust-lang/crates.io-index"
813
+ checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
814
+
815
+ [[package]]
816
+ name = "memoffset"
817
+ version = "0.9.1"
818
+ source = "registry+https://github.com/rust-lang/crates.io-index"
819
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
820
+ dependencies = [
821
+ "autocfg",
822
+ ]
823
+
824
+ [[package]]
825
+ name = "mio"
826
+ version = "1.1.1"
827
+ source = "registry+https://github.com/rust-lang/crates.io-index"
828
+ checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
829
+ dependencies = [
830
+ "libc",
831
+ "wasi",
832
+ "windows-sys 0.61.2",
833
+ ]
834
+
835
+ [[package]]
836
+ name = "num-traits"
837
+ version = "0.2.19"
838
+ source = "registry+https://github.com/rust-lang/crates.io-index"
839
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
840
+ dependencies = [
841
+ "autocfg",
842
+ ]
843
+
844
+ [[package]]
845
+ name = "once_cell"
846
+ version = "1.21.3"
847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
848
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
849
+
850
+ [[package]]
851
+ name = "once_cell_polyfill"
852
+ version = "1.70.2"
853
+ source = "registry+https://github.com/rust-lang/crates.io-index"
854
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
855
+
856
+ [[package]]
857
+ name = "option-ext"
858
+ version = "0.2.0"
859
+ source = "registry+https://github.com/rust-lang/crates.io-index"
860
+ checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
861
+
862
+ [[package]]
863
+ name = "percent-encoding"
864
+ version = "2.3.2"
865
+ source = "registry+https://github.com/rust-lang/crates.io-index"
866
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
867
+
868
+ [[package]]
869
+ name = "pin-project-lite"
870
+ version = "0.2.16"
871
+ source = "registry+https://github.com/rust-lang/crates.io-index"
872
+ checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
873
+
874
+ [[package]]
875
+ name = "pin-utils"
876
+ version = "0.1.0"
877
+ source = "registry+https://github.com/rust-lang/crates.io-index"
878
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
879
+
880
+ [[package]]
881
+ name = "portable-atomic"
882
+ version = "1.11.1"
883
+ source = "registry+https://github.com/rust-lang/crates.io-index"
884
+ checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
885
+
886
+ [[package]]
887
+ name = "portable-atomic-util"
888
+ version = "0.2.4"
889
+ source = "registry+https://github.com/rust-lang/crates.io-index"
890
+ checksum = "d8a2f0d8d040d7848a709caf78912debcc3f33ee4b3cac47d73d1e1069e83507"
891
+ dependencies = [
892
+ "portable-atomic",
893
+ ]
894
+
895
+ [[package]]
896
+ name = "potential_utf"
897
+ version = "0.1.4"
898
+ source = "registry+https://github.com/rust-lang/crates.io-index"
899
+ checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
900
+ dependencies = [
901
+ "zerovec",
902
+ ]
903
+
904
+ [[package]]
905
+ name = "ppv-lite86"
906
+ version = "0.2.21"
907
+ source = "registry+https://github.com/rust-lang/crates.io-index"
908
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
909
+ dependencies = [
910
+ "zerocopy",
911
+ ]
912
+
913
+ [[package]]
914
+ name = "proc-macro-crate"
915
+ version = "3.4.0"
916
+ source = "registry+https://github.com/rust-lang/crates.io-index"
917
+ checksum = "219cb19e96be00ab2e37d6e299658a0cfa83e52429179969b0f0121b4ac46983"
918
+ dependencies = [
919
+ "toml_edit",
920
+ ]
921
+
922
+ [[package]]
923
+ name = "proc-macro2"
924
+ version = "1.0.103"
925
+ source = "registry+https://github.com/rust-lang/crates.io-index"
926
+ checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8"
927
+ dependencies = [
928
+ "unicode-ident",
929
+ ]
930
+
931
+ [[package]]
932
+ name = "proptest"
933
+ version = "1.9.0"
934
+ source = "registry+https://github.com/rust-lang/crates.io-index"
935
+ checksum = "bee689443a2bd0a16ab0348b52ee43e3b2d1b1f931c8aa5c9f8de4c86fbe8c40"
936
+ dependencies = [
937
+ "bit-set",
938
+ "bit-vec",
939
+ "bitflags",
940
+ "num-traits",
941
+ "rand 0.9.2",
942
+ "rand_chacha 0.9.0",
943
+ "rand_xorshift",
944
+ "regex-syntax",
945
+ "rusty-fork",
946
+ "tempfile",
947
+ "unarray",
948
+ ]
949
+
950
+ [[package]]
951
+ name = "ptr_meta"
952
+ version = "0.1.4"
953
+ source = "registry+https://github.com/rust-lang/crates.io-index"
954
+ checksum = "0738ccf7ea06b608c10564b31debd4f5bc5e197fc8bfe088f68ae5ce81e7a4f1"
955
+ dependencies = [
956
+ "ptr_meta_derive",
957
+ ]
958
+
959
+ [[package]]
960
+ name = "ptr_meta_derive"
961
+ version = "0.1.4"
962
+ source = "registry+https://github.com/rust-lang/crates.io-index"
963
+ checksum = "16b845dbfca988fa33db069c0e230574d15a3088f147a87b64c7589eb662c9ac"
964
+ dependencies = [
965
+ "proc-macro2",
966
+ "quote",
967
+ "syn 1.0.109",
968
+ ]
969
+
970
+ [[package]]
971
+ name = "pyo3"
972
+ version = "0.27.2"
973
+ source = "registry+https://github.com/rust-lang/crates.io-index"
974
+ checksum = "ab53c047fcd1a1d2a8820fe84f05d6be69e9526be40cb03b73f86b6b03e6d87d"
975
+ dependencies = [
976
+ "indoc",
977
+ "libc",
978
+ "memoffset",
979
+ "once_cell",
980
+ "portable-atomic",
981
+ "pyo3-build-config",
982
+ "pyo3-ffi",
983
+ "pyo3-macros",
984
+ "unindent",
985
+ ]
986
+
987
+ [[package]]
988
+ name = "pyo3-build-config"
989
+ version = "0.27.2"
990
+ source = "registry+https://github.com/rust-lang/crates.io-index"
991
+ checksum = "b455933107de8642b4487ed26d912c2d899dec6114884214a0b3bb3be9261ea6"
992
+ dependencies = [
993
+ "target-lexicon",
994
+ ]
995
+
996
+ [[package]]
997
+ name = "pyo3-ffi"
998
+ version = "0.27.2"
999
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1000
+ checksum = "1c85c9cbfaddf651b1221594209aed57e9e5cff63c4d11d1feead529b872a089"
1001
+ dependencies = [
1002
+ "libc",
1003
+ "pyo3-build-config",
1004
+ ]
1005
+
1006
+ [[package]]
1007
+ name = "pyo3-macros"
1008
+ version = "0.27.2"
1009
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1010
+ checksum = "0a5b10c9bf9888125d917fb4d2ca2d25c8df94c7ab5a52e13313a07e050a3b02"
1011
+ dependencies = [
1012
+ "proc-macro2",
1013
+ "pyo3-macros-backend",
1014
+ "quote",
1015
+ "syn 2.0.111",
1016
+ ]
1017
+
1018
+ [[package]]
1019
+ name = "pyo3-macros-backend"
1020
+ version = "0.27.2"
1021
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1022
+ checksum = "03b51720d314836e53327f5871d4c0cfb4fb37cc2c4a11cc71907a86342c40f9"
1023
+ dependencies = [
1024
+ "heck",
1025
+ "proc-macro2",
1026
+ "pyo3-build-config",
1027
+ "quote",
1028
+ "syn 2.0.111",
1029
+ ]
1030
+
1031
+ [[package]]
1032
+ name = "quick-error"
1033
+ version = "1.2.3"
1034
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1035
+ checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
1036
+
1037
+ [[package]]
1038
+ name = "quinn"
1039
+ version = "0.11.9"
1040
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1041
+ checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
1042
+ dependencies = [
1043
+ "bytes",
1044
+ "cfg_aliases",
1045
+ "pin-project-lite",
1046
+ "quinn-proto",
1047
+ "quinn-udp",
1048
+ "rustc-hash",
1049
+ "rustls",
1050
+ "socket2",
1051
+ "thiserror",
1052
+ "tokio",
1053
+ "tracing",
1054
+ "web-time",
1055
+ ]
1056
+
1057
+ [[package]]
1058
+ name = "quinn-proto"
1059
+ version = "0.11.13"
1060
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1061
+ checksum = "f1906b49b0c3bc04b5fe5d86a77925ae6524a19b816ae38ce1e426255f1d8a31"
1062
+ dependencies = [
1063
+ "bytes",
1064
+ "getrandom 0.3.4",
1065
+ "lru-slab",
1066
+ "rand 0.9.2",
1067
+ "ring",
1068
+ "rustc-hash",
1069
+ "rustls",
1070
+ "rustls-pki-types",
1071
+ "slab",
1072
+ "thiserror",
1073
+ "tinyvec",
1074
+ "tracing",
1075
+ "web-time",
1076
+ ]
1077
+
1078
+ [[package]]
1079
+ name = "quinn-udp"
1080
+ version = "0.5.14"
1081
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1082
+ checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
1083
+ dependencies = [
1084
+ "cfg_aliases",
1085
+ "libc",
1086
+ "once_cell",
1087
+ "socket2",
1088
+ "tracing",
1089
+ "windows-sys 0.52.0",
1090
+ ]
1091
+
1092
+ [[package]]
1093
+ name = "quote"
1094
+ version = "1.0.42"
1095
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1096
+ checksum = "a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f"
1097
+ dependencies = [
1098
+ "proc-macro2",
1099
+ ]
1100
+
1101
+ [[package]]
1102
+ name = "r-efi"
1103
+ version = "5.3.0"
1104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1105
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1106
+
1107
+ [[package]]
1108
+ name = "radium"
1109
+ version = "0.7.0"
1110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1111
+ checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
1112
+
1113
+ [[package]]
1114
+ name = "rand"
1115
+ version = "0.8.5"
1116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1117
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
1118
+ dependencies = [
1119
+ "libc",
1120
+ "rand_chacha 0.3.1",
1121
+ "rand_core 0.6.4",
1122
+ ]
1123
+
1124
+ [[package]]
1125
+ name = "rand"
1126
+ version = "0.9.2"
1127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1128
+ checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
1129
+ dependencies = [
1130
+ "rand_chacha 0.9.0",
1131
+ "rand_core 0.9.3",
1132
+ ]
1133
+
1134
+ [[package]]
1135
+ name = "rand_chacha"
1136
+ version = "0.3.1"
1137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1138
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
1139
+ dependencies = [
1140
+ "ppv-lite86",
1141
+ "rand_core 0.6.4",
1142
+ ]
1143
+
1144
+ [[package]]
1145
+ name = "rand_chacha"
1146
+ version = "0.9.0"
1147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1148
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
1149
+ dependencies = [
1150
+ "ppv-lite86",
1151
+ "rand_core 0.9.3",
1152
+ ]
1153
+
1154
+ [[package]]
1155
+ name = "rand_core"
1156
+ version = "0.6.4"
1157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1158
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1159
+ dependencies = [
1160
+ "getrandom 0.2.16",
1161
+ ]
1162
+
1163
+ [[package]]
1164
+ name = "rand_core"
1165
+ version = "0.9.3"
1166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1167
+ checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
1168
+ dependencies = [
1169
+ "getrandom 0.3.4",
1170
+ ]
1171
+
1172
+ [[package]]
1173
+ name = "rand_xorshift"
1174
+ version = "0.4.0"
1175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1176
+ checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
1177
+ dependencies = [
1178
+ "rand_core 0.9.3",
1179
+ ]
1180
+
1181
+ [[package]]
1182
+ name = "redox_users"
1183
+ version = "0.5.2"
1184
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1185
+ checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac"
1186
+ dependencies = [
1187
+ "getrandom 0.2.16",
1188
+ "libredox",
1189
+ "thiserror",
1190
+ ]
1191
+
1192
+ [[package]]
1193
+ name = "regex"
1194
+ version = "1.12.2"
1195
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1196
+ checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
1197
+ dependencies = [
1198
+ "aho-corasick",
1199
+ "memchr",
1200
+ "regex-automata",
1201
+ "regex-syntax",
1202
+ ]
1203
+
1204
+ [[package]]
1205
+ name = "regex-automata"
1206
+ version = "0.4.13"
1207
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1208
+ checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
1209
+ dependencies = [
1210
+ "aho-corasick",
1211
+ "memchr",
1212
+ "regex-syntax",
1213
+ ]
1214
+
1215
+ [[package]]
1216
+ name = "regex-syntax"
1217
+ version = "0.8.8"
1218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1219
+ checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
1220
+
1221
+ [[package]]
1222
+ name = "rend"
1223
+ version = "0.4.2"
1224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1225
+ checksum = "71fe3824f5629716b1589be05dacd749f6aa084c87e00e016714a8cdfccc997c"
1226
+ dependencies = [
1227
+ "bytecheck",
1228
+ ]
1229
+
1230
+ [[package]]
1231
+ name = "reqwest"
1232
+ version = "0.12.26"
1233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1234
+ checksum = "3b4c14b2d9afca6a60277086b0cc6a6ae0b568f6f7916c943a8cdc79f8be240f"
1235
+ dependencies = [
1236
+ "base64",
1237
+ "bytes",
1238
+ "futures-channel",
1239
+ "futures-core",
1240
+ "futures-util",
1241
+ "http",
1242
+ "http-body",
1243
+ "http-body-util",
1244
+ "hyper",
1245
+ "hyper-rustls",
1246
+ "hyper-util",
1247
+ "js-sys",
1248
+ "log",
1249
+ "percent-encoding",
1250
+ "pin-project-lite",
1251
+ "quinn",
1252
+ "rustls",
1253
+ "rustls-pki-types",
1254
+ "serde",
1255
+ "serde_json",
1256
+ "serde_urlencoded",
1257
+ "sync_wrapper",
1258
+ "tokio",
1259
+ "tokio-rustls",
1260
+ "tower",
1261
+ "tower-http",
1262
+ "tower-service",
1263
+ "url",
1264
+ "wasm-bindgen",
1265
+ "wasm-bindgen-futures",
1266
+ "web-sys",
1267
+ "webpki-roots",
1268
+ ]
1269
+
1270
+ [[package]]
1271
+ name = "ring"
1272
+ version = "0.17.14"
1273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1274
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
1275
+ dependencies = [
1276
+ "cc",
1277
+ "cfg-if",
1278
+ "getrandom 0.2.16",
1279
+ "libc",
1280
+ "untrusted",
1281
+ "windows-sys 0.52.0",
1282
+ ]
1283
+
1284
+ [[package]]
1285
+ name = "rkyv"
1286
+ version = "0.7.45"
1287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1288
+ checksum = "9008cd6385b9e161d8229e1f6549dd23c3d022f132a2ea37ac3a10ac4935779b"
1289
+ dependencies = [
1290
+ "bitvec",
1291
+ "bytecheck",
1292
+ "bytes",
1293
+ "hashbrown 0.12.3",
1294
+ "ptr_meta",
1295
+ "rend",
1296
+ "rkyv_derive",
1297
+ "seahash",
1298
+ "tinyvec",
1299
+ "uuid",
1300
+ ]
1301
+
1302
+ [[package]]
1303
+ name = "rkyv_derive"
1304
+ version = "0.7.45"
1305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1306
+ checksum = "503d1d27590a2b0a3a4ca4c94755aa2875657196ecbf401a42eff41d7de532c0"
1307
+ dependencies = [
1308
+ "proc-macro2",
1309
+ "quote",
1310
+ "syn 1.0.109",
1311
+ ]
1312
+
1313
+ [[package]]
1314
+ name = "rust_decimal"
1315
+ version = "1.39.0"
1316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1317
+ checksum = "35affe401787a9bd846712274d97654355d21b2a2c092a3139aabe31e9022282"
1318
+ dependencies = [
1319
+ "arrayvec",
1320
+ "borsh",
1321
+ "bytes",
1322
+ "num-traits",
1323
+ "rand 0.8.5",
1324
+ "rkyv",
1325
+ "serde",
1326
+ "serde_json",
1327
+ ]
1328
+
1329
+ [[package]]
1330
+ name = "rustc-hash"
1331
+ version = "2.1.1"
1332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1333
+ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
1334
+
1335
+ [[package]]
1336
+ name = "rustix"
1337
+ version = "1.1.2"
1338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1339
+ checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e"
1340
+ dependencies = [
1341
+ "bitflags",
1342
+ "errno",
1343
+ "libc",
1344
+ "linux-raw-sys",
1345
+ "windows-sys 0.61.2",
1346
+ ]
1347
+
1348
+ [[package]]
1349
+ name = "rustls"
1350
+ version = "0.23.35"
1351
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1352
+ checksum = "533f54bc6a7d4f647e46ad909549eda97bf5afc1585190ef692b4286b198bd8f"
1353
+ dependencies = [
1354
+ "once_cell",
1355
+ "ring",
1356
+ "rustls-pki-types",
1357
+ "rustls-webpki",
1358
+ "subtle",
1359
+ "zeroize",
1360
+ ]
1361
+
1362
+ [[package]]
1363
+ name = "rustls-pki-types"
1364
+ version = "1.13.1"
1365
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1366
+ checksum = "708c0f9d5f54ba0272468c1d306a52c495b31fa155e91bc25371e6df7996908c"
1367
+ dependencies = [
1368
+ "web-time",
1369
+ "zeroize",
1370
+ ]
1371
+
1372
+ [[package]]
1373
+ name = "rustls-webpki"
1374
+ version = "0.103.8"
1375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1376
+ checksum = "2ffdfa2f5286e2247234e03f680868ac2815974dc39e00ea15adc445d0aafe52"
1377
+ dependencies = [
1378
+ "ring",
1379
+ "rustls-pki-types",
1380
+ "untrusted",
1381
+ ]
1382
+
1383
+ [[package]]
1384
+ name = "rustversion"
1385
+ version = "1.0.22"
1386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1387
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1388
+
1389
+ [[package]]
1390
+ name = "rusty-fork"
1391
+ version = "0.3.1"
1392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1393
+ checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2"
1394
+ dependencies = [
1395
+ "fnv",
1396
+ "quick-error",
1397
+ "tempfile",
1398
+ "wait-timeout",
1399
+ ]
1400
+
1401
+ [[package]]
1402
+ name = "ryu"
1403
+ version = "1.0.20"
1404
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1405
+ checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
1406
+
1407
+ [[package]]
1408
+ name = "seahash"
1409
+ version = "4.1.0"
1410
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1411
+ checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b"
1412
+
1413
+ [[package]]
1414
+ name = "semver"
1415
+ version = "1.0.27"
1416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1417
+ checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
1418
+
1419
+ [[package]]
1420
+ name = "serde"
1421
+ version = "1.0.228"
1422
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1423
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1424
+ dependencies = [
1425
+ "serde_core",
1426
+ "serde_derive",
1427
+ ]
1428
+
1429
+ [[package]]
1430
+ name = "serde_core"
1431
+ version = "1.0.228"
1432
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1433
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1434
+ dependencies = [
1435
+ "serde_derive",
1436
+ ]
1437
+
1438
+ [[package]]
1439
+ name = "serde_derive"
1440
+ version = "1.0.228"
1441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1442
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1443
+ dependencies = [
1444
+ "proc-macro2",
1445
+ "quote",
1446
+ "syn 2.0.111",
1447
+ ]
1448
+
1449
+ [[package]]
1450
+ name = "serde_json"
1451
+ version = "1.0.145"
1452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1453
+ checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
1454
+ dependencies = [
1455
+ "itoa",
1456
+ "memchr",
1457
+ "ryu",
1458
+ "serde",
1459
+ "serde_core",
1460
+ ]
1461
+
1462
+ [[package]]
1463
+ name = "serde_urlencoded"
1464
+ version = "0.7.1"
1465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1466
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
1467
+ dependencies = [
1468
+ "form_urlencoded",
1469
+ "itoa",
1470
+ "ryu",
1471
+ "serde",
1472
+ ]
1473
+
1474
+ [[package]]
1475
+ name = "shlex"
1476
+ version = "1.3.0"
1477
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1478
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1479
+
1480
+ [[package]]
1481
+ name = "simdutf8"
1482
+ version = "0.1.5"
1483
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1484
+ checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
1485
+
1486
+ [[package]]
1487
+ name = "slab"
1488
+ version = "0.4.11"
1489
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1490
+ checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589"
1491
+
1492
+ [[package]]
1493
+ name = "smallvec"
1494
+ version = "1.15.1"
1495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1496
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
1497
+
1498
+ [[package]]
1499
+ name = "socket2"
1500
+ version = "0.6.1"
1501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1502
+ checksum = "17129e116933cf371d018bb80ae557e889637989d8638274fb25622827b03881"
1503
+ dependencies = [
1504
+ "libc",
1505
+ "windows-sys 0.60.2",
1506
+ ]
1507
+
1508
+ [[package]]
1509
+ name = "solverforge"
1510
+ version = "0.2.2"
1511
+ dependencies = [
1512
+ "solverforge-core",
1513
+ "solverforge-derive",
1514
+ "solverforge-service",
1515
+ ]
1516
+
1517
+ [[package]]
1518
+ name = "solverforge-core"
1519
+ version = "0.2.2"
1520
+ dependencies = [
1521
+ "base64",
1522
+ "indexmap",
1523
+ "log",
1524
+ "proptest",
1525
+ "reqwest",
1526
+ "rust_decimal",
1527
+ "serde",
1528
+ "serde_json",
1529
+ "thiserror",
1530
+ "wasm-encoder 0.223.1",
1531
+ ]
1532
+
1533
+ [[package]]
1534
+ name = "solverforge-derive"
1535
+ version = "0.2.2"
1536
+ dependencies = [
1537
+ "proc-macro2",
1538
+ "quote",
1539
+ "serde",
1540
+ "serde_json",
1541
+ "solverforge-core",
1542
+ "syn 2.0.111",
1543
+ ]
1544
+
1545
+ [[package]]
1546
+ name = "solverforge-python"
1547
+ version = "0.2.2"
1548
+ dependencies = [
1549
+ "log",
1550
+ "pyo3",
1551
+ "serde",
1552
+ "serde_json",
1553
+ "solverforge-core",
1554
+ "tempfile",
1555
+ "thiserror",
1556
+ ]
1557
+
1558
+ [[package]]
1559
+ name = "solverforge-service"
1560
+ version = "0.2.2"
1561
+ dependencies = [
1562
+ "base64",
1563
+ "chrono",
1564
+ "dirs",
1565
+ "env_logger",
1566
+ "indexmap",
1567
+ "libc",
1568
+ "log",
1569
+ "reqwest",
1570
+ "serde_json",
1571
+ "solverforge-core",
1572
+ "tempfile",
1573
+ "thiserror",
1574
+ "wat",
1575
+ ]
1576
+
1577
+ [[package]]
1578
+ name = "stable_deref_trait"
1579
+ version = "1.2.1"
1580
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1581
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
1582
+
1583
+ [[package]]
1584
+ name = "subtle"
1585
+ version = "2.6.1"
1586
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1587
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
1588
+
1589
+ [[package]]
1590
+ name = "syn"
1591
+ version = "1.0.109"
1592
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1593
+ checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
1594
+ dependencies = [
1595
+ "proc-macro2",
1596
+ "quote",
1597
+ "unicode-ident",
1598
+ ]
1599
+
1600
+ [[package]]
1601
+ name = "syn"
1602
+ version = "2.0.111"
1603
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1604
+ checksum = "390cc9a294ab71bdb1aa2e99d13be9c753cd2d7bd6560c77118597410c4d2e87"
1605
+ dependencies = [
1606
+ "proc-macro2",
1607
+ "quote",
1608
+ "unicode-ident",
1609
+ ]
1610
+
1611
+ [[package]]
1612
+ name = "sync_wrapper"
1613
+ version = "1.0.2"
1614
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1615
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
1616
+ dependencies = [
1617
+ "futures-core",
1618
+ ]
1619
+
1620
+ [[package]]
1621
+ name = "synstructure"
1622
+ version = "0.13.2"
1623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1624
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
1625
+ dependencies = [
1626
+ "proc-macro2",
1627
+ "quote",
1628
+ "syn 2.0.111",
1629
+ ]
1630
+
1631
+ [[package]]
1632
+ name = "tap"
1633
+ version = "1.0.1"
1634
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1635
+ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
1636
+
1637
+ [[package]]
1638
+ name = "target-lexicon"
1639
+ version = "0.13.3"
1640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1641
+ checksum = "df7f62577c25e07834649fc3b39fafdc597c0a3527dc1c60129201ccfcbaa50c"
1642
+
1643
+ [[package]]
1644
+ name = "tempfile"
1645
+ version = "3.23.0"
1646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1647
+ checksum = "2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16"
1648
+ dependencies = [
1649
+ "fastrand",
1650
+ "getrandom 0.3.4",
1651
+ "once_cell",
1652
+ "rustix",
1653
+ "windows-sys 0.61.2",
1654
+ ]
1655
+
1656
+ [[package]]
1657
+ name = "thiserror"
1658
+ version = "2.0.17"
1659
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1660
+ checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8"
1661
+ dependencies = [
1662
+ "thiserror-impl",
1663
+ ]
1664
+
1665
+ [[package]]
1666
+ name = "thiserror-impl"
1667
+ version = "2.0.17"
1668
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1669
+ checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913"
1670
+ dependencies = [
1671
+ "proc-macro2",
1672
+ "quote",
1673
+ "syn 2.0.111",
1674
+ ]
1675
+
1676
+ [[package]]
1677
+ name = "tinystr"
1678
+ version = "0.8.2"
1679
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1680
+ checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
1681
+ dependencies = [
1682
+ "displaydoc",
1683
+ "zerovec",
1684
+ ]
1685
+
1686
+ [[package]]
1687
+ name = "tinyvec"
1688
+ version = "1.10.0"
1689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1690
+ checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa"
1691
+ dependencies = [
1692
+ "tinyvec_macros",
1693
+ ]
1694
+
1695
+ [[package]]
1696
+ name = "tinyvec_macros"
1697
+ version = "0.1.1"
1698
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1699
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
1700
+
1701
+ [[package]]
1702
+ name = "tokio"
1703
+ version = "1.48.0"
1704
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1705
+ checksum = "ff360e02eab121e0bc37a2d3b4d4dc622e6eda3a8e5253d5435ecf5bd4c68408"
1706
+ dependencies = [
1707
+ "bytes",
1708
+ "libc",
1709
+ "mio",
1710
+ "pin-project-lite",
1711
+ "socket2",
1712
+ "windows-sys 0.61.2",
1713
+ ]
1714
+
1715
+ [[package]]
1716
+ name = "tokio-rustls"
1717
+ version = "0.26.4"
1718
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1719
+ checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
1720
+ dependencies = [
1721
+ "rustls",
1722
+ "tokio",
1723
+ ]
1724
+
1725
+ [[package]]
1726
+ name = "toml_datetime"
1727
+ version = "0.7.3"
1728
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1729
+ checksum = "f2cdb639ebbc97961c51720f858597f7f24c4fc295327923af55b74c3c724533"
1730
+ dependencies = [
1731
+ "serde_core",
1732
+ ]
1733
+
1734
+ [[package]]
1735
+ name = "toml_edit"
1736
+ version = "0.23.9"
1737
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1738
+ checksum = "5d7cbc3b4b49633d57a0509303158ca50de80ae32c265093b24c414705807832"
1739
+ dependencies = [
1740
+ "indexmap",
1741
+ "toml_datetime",
1742
+ "toml_parser",
1743
+ "winnow",
1744
+ ]
1745
+
1746
+ [[package]]
1747
+ name = "toml_parser"
1748
+ version = "1.0.4"
1749
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1750
+ checksum = "c0cbe268d35bdb4bb5a56a2de88d0ad0eb70af5384a99d648cd4b3d04039800e"
1751
+ dependencies = [
1752
+ "winnow",
1753
+ ]
1754
+
1755
+ [[package]]
1756
+ name = "tower"
1757
+ version = "0.5.2"
1758
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1759
+ checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9"
1760
+ dependencies = [
1761
+ "futures-core",
1762
+ "futures-util",
1763
+ "pin-project-lite",
1764
+ "sync_wrapper",
1765
+ "tokio",
1766
+ "tower-layer",
1767
+ "tower-service",
1768
+ ]
1769
+
1770
+ [[package]]
1771
+ name = "tower-http"
1772
+ version = "0.6.8"
1773
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1774
+ checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
1775
+ dependencies = [
1776
+ "bitflags",
1777
+ "bytes",
1778
+ "futures-util",
1779
+ "http",
1780
+ "http-body",
1781
+ "iri-string",
1782
+ "pin-project-lite",
1783
+ "tower",
1784
+ "tower-layer",
1785
+ "tower-service",
1786
+ ]
1787
+
1788
+ [[package]]
1789
+ name = "tower-layer"
1790
+ version = "0.3.3"
1791
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1792
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
1793
+
1794
+ [[package]]
1795
+ name = "tower-service"
1796
+ version = "0.3.3"
1797
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1798
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
1799
+
1800
+ [[package]]
1801
+ name = "tracing"
1802
+ version = "0.1.43"
1803
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1804
+ checksum = "2d15d90a0b5c19378952d479dc858407149d7bb45a14de0142f6c534b16fc647"
1805
+ dependencies = [
1806
+ "pin-project-lite",
1807
+ "tracing-core",
1808
+ ]
1809
+
1810
+ [[package]]
1811
+ name = "tracing-core"
1812
+ version = "0.1.35"
1813
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1814
+ checksum = "7a04e24fab5c89c6a36eb8558c9656f30d81de51dfa4d3b45f26b21d61fa0a6c"
1815
+ dependencies = [
1816
+ "once_cell",
1817
+ ]
1818
+
1819
+ [[package]]
1820
+ name = "try-lock"
1821
+ version = "0.2.5"
1822
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1823
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
1824
+
1825
+ [[package]]
1826
+ name = "unarray"
1827
+ version = "0.1.4"
1828
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1829
+ checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
1830
+
1831
+ [[package]]
1832
+ name = "unicode-ident"
1833
+ version = "1.0.22"
1834
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1835
+ checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
1836
+
1837
+ [[package]]
1838
+ name = "unicode-width"
1839
+ version = "0.2.2"
1840
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1841
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
1842
+
1843
+ [[package]]
1844
+ name = "unindent"
1845
+ version = "0.2.4"
1846
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1847
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
1848
+
1849
+ [[package]]
1850
+ name = "untrusted"
1851
+ version = "0.9.0"
1852
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1853
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
1854
+
1855
+ [[package]]
1856
+ name = "url"
1857
+ version = "2.5.7"
1858
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1859
+ checksum = "08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b"
1860
+ dependencies = [
1861
+ "form_urlencoded",
1862
+ "idna",
1863
+ "percent-encoding",
1864
+ "serde",
1865
+ ]
1866
+
1867
+ [[package]]
1868
+ name = "utf8_iter"
1869
+ version = "1.0.4"
1870
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1871
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
1872
+
1873
+ [[package]]
1874
+ name = "utf8parse"
1875
+ version = "0.2.2"
1876
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1877
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
1878
+
1879
+ [[package]]
1880
+ name = "uuid"
1881
+ version = "1.19.0"
1882
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1883
+ checksum = "e2e054861b4bd027cd373e18e8d8d8e6548085000e41290d95ce0c373a654b4a"
1884
+ dependencies = [
1885
+ "js-sys",
1886
+ "wasm-bindgen",
1887
+ ]
1888
+
1889
+ [[package]]
1890
+ name = "version_check"
1891
+ version = "0.9.5"
1892
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1893
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
1894
+
1895
+ [[package]]
1896
+ name = "wait-timeout"
1897
+ version = "0.2.1"
1898
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1899
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
1900
+ dependencies = [
1901
+ "libc",
1902
+ ]
1903
+
1904
+ [[package]]
1905
+ name = "want"
1906
+ version = "0.3.1"
1907
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1908
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
1909
+ dependencies = [
1910
+ "try-lock",
1911
+ ]
1912
+
1913
+ [[package]]
1914
+ name = "wasi"
1915
+ version = "0.11.1+wasi-snapshot-preview1"
1916
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1917
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1918
+
1919
+ [[package]]
1920
+ name = "wasip2"
1921
+ version = "1.0.1+wasi-0.2.4"
1922
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1923
+ checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
1924
+ dependencies = [
1925
+ "wit-bindgen",
1926
+ ]
1927
+
1928
+ [[package]]
1929
+ name = "wasm-bindgen"
1930
+ version = "0.2.106"
1931
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1932
+ checksum = "0d759f433fa64a2d763d1340820e46e111a7a5ab75f993d1852d70b03dbb80fd"
1933
+ dependencies = [
1934
+ "cfg-if",
1935
+ "once_cell",
1936
+ "rustversion",
1937
+ "wasm-bindgen-macro",
1938
+ "wasm-bindgen-shared",
1939
+ ]
1940
+
1941
+ [[package]]
1942
+ name = "wasm-bindgen-futures"
1943
+ version = "0.4.56"
1944
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1945
+ checksum = "836d9622d604feee9e5de25ac10e3ea5f2d65b41eac0d9ce72eb5deae707ce7c"
1946
+ dependencies = [
1947
+ "cfg-if",
1948
+ "js-sys",
1949
+ "once_cell",
1950
+ "wasm-bindgen",
1951
+ "web-sys",
1952
+ ]
1953
+
1954
+ [[package]]
1955
+ name = "wasm-bindgen-macro"
1956
+ version = "0.2.106"
1957
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1958
+ checksum = "48cb0d2638f8baedbc542ed444afc0644a29166f1595371af4fecf8ce1e7eeb3"
1959
+ dependencies = [
1960
+ "quote",
1961
+ "wasm-bindgen-macro-support",
1962
+ ]
1963
+
1964
+ [[package]]
1965
+ name = "wasm-bindgen-macro-support"
1966
+ version = "0.2.106"
1967
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1968
+ checksum = "cefb59d5cd5f92d9dcf80e4683949f15ca4b511f4ac0a6e14d4e1ac60c6ecd40"
1969
+ dependencies = [
1970
+ "bumpalo",
1971
+ "proc-macro2",
1972
+ "quote",
1973
+ "syn 2.0.111",
1974
+ "wasm-bindgen-shared",
1975
+ ]
1976
+
1977
+ [[package]]
1978
+ name = "wasm-bindgen-shared"
1979
+ version = "0.2.106"
1980
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1981
+ checksum = "cbc538057e648b67f72a982e708d485b2efa771e1ac05fec311f9f63e5800db4"
1982
+ dependencies = [
1983
+ "unicode-ident",
1984
+ ]
1985
+
1986
+ [[package]]
1987
+ name = "wasm-encoder"
1988
+ version = "0.223.1"
1989
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1990
+ checksum = "7a0a96fdeaee8fbeb4bd917fb8157d48c0d61c3b1f4ee4c363c8e8d68b2f4fe8"
1991
+ dependencies = [
1992
+ "leb128",
1993
+ "wasmparser 0.223.1",
1994
+ ]
1995
+
1996
+ [[package]]
1997
+ name = "wasm-encoder"
1998
+ version = "0.243.0"
1999
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2000
+ checksum = "c55db9c896d70bd9fa535ce83cd4e1f2ec3726b0edd2142079f594fc3be1cb35"
2001
+ dependencies = [
2002
+ "leb128fmt",
2003
+ "wasmparser 0.243.0",
2004
+ ]
2005
+
2006
+ [[package]]
2007
+ name = "wasmparser"
2008
+ version = "0.223.1"
2009
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2010
+ checksum = "664b980991ed9a8c834eb528a8979ab1109edcf52dc05dd5751e2cc3fb31035d"
2011
+ dependencies = [
2012
+ "bitflags",
2013
+ "indexmap",
2014
+ "semver",
2015
+ ]
2016
+
2017
+ [[package]]
2018
+ name = "wasmparser"
2019
+ version = "0.243.0"
2020
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2021
+ checksum = "f6d8db401b0528ec316dfbe579e6ab4152d61739cfe076706d2009127970159d"
2022
+ dependencies = [
2023
+ "bitflags",
2024
+ "indexmap",
2025
+ "semver",
2026
+ ]
2027
+
2028
+ [[package]]
2029
+ name = "wast"
2030
+ version = "243.0.0"
2031
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2032
+ checksum = "df21d01c2d91e46cb7a221d79e58a2d210ea02020d57c092e79255cc2999ca7f"
2033
+ dependencies = [
2034
+ "bumpalo",
2035
+ "leb128fmt",
2036
+ "memchr",
2037
+ "unicode-width",
2038
+ "wasm-encoder 0.243.0",
2039
+ ]
2040
+
2041
+ [[package]]
2042
+ name = "wat"
2043
+ version = "1.243.0"
2044
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2045
+ checksum = "226a9a91cd80a50449312fef0c75c23478fcecfcc4092bdebe1dc8e760ef521b"
2046
+ dependencies = [
2047
+ "wast",
2048
+ ]
2049
+
2050
+ [[package]]
2051
+ name = "web-sys"
2052
+ version = "0.3.83"
2053
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2054
+ checksum = "9b32828d774c412041098d182a8b38b16ea816958e07cf40eec2bc080ae137ac"
2055
+ dependencies = [
2056
+ "js-sys",
2057
+ "wasm-bindgen",
2058
+ ]
2059
+
2060
+ [[package]]
2061
+ name = "web-time"
2062
+ version = "1.1.0"
2063
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2064
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
2065
+ dependencies = [
2066
+ "js-sys",
2067
+ "wasm-bindgen",
2068
+ ]
2069
+
2070
+ [[package]]
2071
+ name = "webpki-roots"
2072
+ version = "1.0.4"
2073
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2074
+ checksum = "b2878ef029c47c6e8cf779119f20fcf52bde7ad42a731b2a304bc221df17571e"
2075
+ dependencies = [
2076
+ "rustls-pki-types",
2077
+ ]
2078
+
2079
+ [[package]]
2080
+ name = "windows-core"
2081
+ version = "0.62.2"
2082
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2083
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
2084
+ dependencies = [
2085
+ "windows-implement",
2086
+ "windows-interface",
2087
+ "windows-link",
2088
+ "windows-result",
2089
+ "windows-strings",
2090
+ ]
2091
+
2092
+ [[package]]
2093
+ name = "windows-implement"
2094
+ version = "0.60.2"
2095
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2096
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
2097
+ dependencies = [
2098
+ "proc-macro2",
2099
+ "quote",
2100
+ "syn 2.0.111",
2101
+ ]
2102
+
2103
+ [[package]]
2104
+ name = "windows-interface"
2105
+ version = "0.59.3"
2106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2107
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
2108
+ dependencies = [
2109
+ "proc-macro2",
2110
+ "quote",
2111
+ "syn 2.0.111",
2112
+ ]
2113
+
2114
+ [[package]]
2115
+ name = "windows-link"
2116
+ version = "0.2.1"
2117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2118
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
2119
+
2120
+ [[package]]
2121
+ name = "windows-result"
2122
+ version = "0.4.1"
2123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2124
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
2125
+ dependencies = [
2126
+ "windows-link",
2127
+ ]
2128
+
2129
+ [[package]]
2130
+ name = "windows-strings"
2131
+ version = "0.5.1"
2132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2133
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
2134
+ dependencies = [
2135
+ "windows-link",
2136
+ ]
2137
+
2138
+ [[package]]
2139
+ name = "windows-sys"
2140
+ version = "0.52.0"
2141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2142
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
2143
+ dependencies = [
2144
+ "windows-targets 0.52.6",
2145
+ ]
2146
+
2147
+ [[package]]
2148
+ name = "windows-sys"
2149
+ version = "0.60.2"
2150
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2151
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
2152
+ dependencies = [
2153
+ "windows-targets 0.53.5",
2154
+ ]
2155
+
2156
+ [[package]]
2157
+ name = "windows-sys"
2158
+ version = "0.61.2"
2159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2160
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
2161
+ dependencies = [
2162
+ "windows-link",
2163
+ ]
2164
+
2165
+ [[package]]
2166
+ name = "windows-targets"
2167
+ version = "0.52.6"
2168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2169
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
2170
+ dependencies = [
2171
+ "windows_aarch64_gnullvm 0.52.6",
2172
+ "windows_aarch64_msvc 0.52.6",
2173
+ "windows_i686_gnu 0.52.6",
2174
+ "windows_i686_gnullvm 0.52.6",
2175
+ "windows_i686_msvc 0.52.6",
2176
+ "windows_x86_64_gnu 0.52.6",
2177
+ "windows_x86_64_gnullvm 0.52.6",
2178
+ "windows_x86_64_msvc 0.52.6",
2179
+ ]
2180
+
2181
+ [[package]]
2182
+ name = "windows-targets"
2183
+ version = "0.53.5"
2184
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2185
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
2186
+ dependencies = [
2187
+ "windows-link",
2188
+ "windows_aarch64_gnullvm 0.53.1",
2189
+ "windows_aarch64_msvc 0.53.1",
2190
+ "windows_i686_gnu 0.53.1",
2191
+ "windows_i686_gnullvm 0.53.1",
2192
+ "windows_i686_msvc 0.53.1",
2193
+ "windows_x86_64_gnu 0.53.1",
2194
+ "windows_x86_64_gnullvm 0.53.1",
2195
+ "windows_x86_64_msvc 0.53.1",
2196
+ ]
2197
+
2198
+ [[package]]
2199
+ name = "windows_aarch64_gnullvm"
2200
+ version = "0.52.6"
2201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2202
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
2203
+
2204
+ [[package]]
2205
+ name = "windows_aarch64_gnullvm"
2206
+ version = "0.53.1"
2207
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2208
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
2209
+
2210
+ [[package]]
2211
+ name = "windows_aarch64_msvc"
2212
+ version = "0.52.6"
2213
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2214
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
2215
+
2216
+ [[package]]
2217
+ name = "windows_aarch64_msvc"
2218
+ version = "0.53.1"
2219
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2220
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
2221
+
2222
+ [[package]]
2223
+ name = "windows_i686_gnu"
2224
+ version = "0.52.6"
2225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2226
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
2227
+
2228
+ [[package]]
2229
+ name = "windows_i686_gnu"
2230
+ version = "0.53.1"
2231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2232
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
2233
+
2234
+ [[package]]
2235
+ name = "windows_i686_gnullvm"
2236
+ version = "0.52.6"
2237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2238
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
2239
+
2240
+ [[package]]
2241
+ name = "windows_i686_gnullvm"
2242
+ version = "0.53.1"
2243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2244
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
2245
+
2246
+ [[package]]
2247
+ name = "windows_i686_msvc"
2248
+ version = "0.52.6"
2249
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2250
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
2251
+
2252
+ [[package]]
2253
+ name = "windows_i686_msvc"
2254
+ version = "0.53.1"
2255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2256
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
2257
+
2258
+ [[package]]
2259
+ name = "windows_x86_64_gnu"
2260
+ version = "0.52.6"
2261
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2262
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
2263
+
2264
+ [[package]]
2265
+ name = "windows_x86_64_gnu"
2266
+ version = "0.53.1"
2267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2268
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
2269
+
2270
+ [[package]]
2271
+ name = "windows_x86_64_gnullvm"
2272
+ version = "0.52.6"
2273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2274
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
2275
+
2276
+ [[package]]
2277
+ name = "windows_x86_64_gnullvm"
2278
+ version = "0.53.1"
2279
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2280
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
2281
+
2282
+ [[package]]
2283
+ name = "windows_x86_64_msvc"
2284
+ version = "0.52.6"
2285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2286
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
2287
+
2288
+ [[package]]
2289
+ name = "windows_x86_64_msvc"
2290
+ version = "0.53.1"
2291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2292
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
2293
+
2294
+ [[package]]
2295
+ name = "winnow"
2296
+ version = "0.7.14"
2297
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2298
+ checksum = "5a5364e9d77fcdeeaa6062ced926ee3381faa2ee02d3eb83a5c27a8825540829"
2299
+ dependencies = [
2300
+ "memchr",
2301
+ ]
2302
+
2303
+ [[package]]
2304
+ name = "wit-bindgen"
2305
+ version = "0.46.0"
2306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2307
+ checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
2308
+
2309
+ [[package]]
2310
+ name = "writeable"
2311
+ version = "0.6.2"
2312
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2313
+ checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
2314
+
2315
+ [[package]]
2316
+ name = "wyz"
2317
+ version = "0.5.1"
2318
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2319
+ checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
2320
+ dependencies = [
2321
+ "tap",
2322
+ ]
2323
+
2324
+ [[package]]
2325
+ name = "yoke"
2326
+ version = "0.8.1"
2327
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2328
+ checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
2329
+ dependencies = [
2330
+ "stable_deref_trait",
2331
+ "yoke-derive",
2332
+ "zerofrom",
2333
+ ]
2334
+
2335
+ [[package]]
2336
+ name = "yoke-derive"
2337
+ version = "0.8.1"
2338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2339
+ checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
2340
+ dependencies = [
2341
+ "proc-macro2",
2342
+ "quote",
2343
+ "syn 2.0.111",
2344
+ "synstructure",
2345
+ ]
2346
+
2347
+ [[package]]
2348
+ name = "zerocopy"
2349
+ version = "0.8.31"
2350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2351
+ checksum = "fd74ec98b9250adb3ca554bdde269adf631549f51d8a8f8f0a10b50f1cb298c3"
2352
+ dependencies = [
2353
+ "zerocopy-derive",
2354
+ ]
2355
+
2356
+ [[package]]
2357
+ name = "zerocopy-derive"
2358
+ version = "0.8.31"
2359
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2360
+ checksum = "d8a8d209fdf45cf5138cbb5a506f6b52522a25afccc534d1475dad8e31105c6a"
2361
+ dependencies = [
2362
+ "proc-macro2",
2363
+ "quote",
2364
+ "syn 2.0.111",
2365
+ ]
2366
+
2367
+ [[package]]
2368
+ name = "zerofrom"
2369
+ version = "0.1.6"
2370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2371
+ checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
2372
+ dependencies = [
2373
+ "zerofrom-derive",
2374
+ ]
2375
+
2376
+ [[package]]
2377
+ name = "zerofrom-derive"
2378
+ version = "0.1.6"
2379
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2380
+ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
2381
+ dependencies = [
2382
+ "proc-macro2",
2383
+ "quote",
2384
+ "syn 2.0.111",
2385
+ "synstructure",
2386
+ ]
2387
+
2388
+ [[package]]
2389
+ name = "zeroize"
2390
+ version = "1.8.2"
2391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2392
+ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
2393
+
2394
+ [[package]]
2395
+ name = "zerotrie"
2396
+ version = "0.2.3"
2397
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2398
+ checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
2399
+ dependencies = [
2400
+ "displaydoc",
2401
+ "yoke",
2402
+ "zerofrom",
2403
+ ]
2404
+
2405
+ [[package]]
2406
+ name = "zerovec"
2407
+ version = "0.11.5"
2408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2409
+ checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
2410
+ dependencies = [
2411
+ "yoke",
2412
+ "zerofrom",
2413
+ "zerovec-derive",
2414
+ ]
2415
+
2416
+ [[package]]
2417
+ name = "zerovec-derive"
2418
+ version = "0.11.2"
2419
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2420
+ checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
2421
+ dependencies = [
2422
+ "proc-macro2",
2423
+ "quote",
2424
+ "syn 2.0.111",
2425
+ ]