wickra-impact 0.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (35) hide show
  1. wickra_impact-0.1.0/Cargo.lock +3008 -0
  2. wickra_impact-0.1.0/Cargo.toml +55 -0
  3. wickra_impact-0.1.0/PKG-INFO +95 -0
  4. wickra_impact-0.1.0/README.md +65 -0
  5. wickra_impact-0.1.0/bindings/python/Cargo.toml +22 -0
  6. wickra_impact-0.1.0/bindings/python/LICENSE-APACHE +201 -0
  7. wickra_impact-0.1.0/bindings/python/LICENSE-MIT +21 -0
  8. wickra_impact-0.1.0/bindings/python/README.md +65 -0
  9. wickra_impact-0.1.0/bindings/python/src/lib.rs +58 -0
  10. wickra_impact-0.1.0/bindings/python/tests/run_without_pytest.py +61 -0
  11. wickra_impact-0.1.0/bindings/python/tests/test_book_required.py +89 -0
  12. wickra_impact-0.1.0/bindings/python/tests/test_completeness.py +18 -0
  13. wickra_impact-0.1.0/bindings/python/tests/test_golden.py +58 -0
  14. wickra_impact-0.1.0/bindings/python/tests/test_smoke.py +68 -0
  15. wickra_impact-0.1.0/crates/impact-core/Cargo.toml +34 -0
  16. wickra_impact-0.1.0/crates/impact-core/LICENSE-APACHE +201 -0
  17. wickra_impact-0.1.0/crates/impact-core/LICENSE-MIT +21 -0
  18. wickra_impact-0.1.0/crates/impact-core/src/book_model.rs +311 -0
  19. wickra_impact-0.1.0/crates/impact-core/src/config.rs +24 -0
  20. wickra_impact-0.1.0/crates/impact-core/src/error.rs +33 -0
  21. wickra_impact-0.1.0/crates/impact-core/src/impact.rs +152 -0
  22. wickra_impact-0.1.0/crates/impact-core/src/latency.rs +97 -0
  23. wickra_impact-0.1.0/crates/impact-core/src/lib.rs +56 -0
  24. wickra_impact-0.1.0/crates/impact-core/src/run.rs +930 -0
  25. wickra_impact-0.1.0/crates/impact-core/src/spec.rs +71 -0
  26. wickra_impact-0.1.0/crates/impact-core/tests/book_required.rs +85 -0
  27. wickra_impact-0.1.0/crates/impact-core/tests/conformance.rs +115 -0
  28. wickra_impact-0.1.0/crates/impact-core/tests/golden.rs +57 -0
  29. wickra_impact-0.1.0/crates/impact-core/tests/latency_moves_the_fill.rs +125 -0
  30. wickra_impact-0.1.0/crates/impact-core/tests/proptest_invariants.rs +78 -0
  31. wickra_impact-0.1.0/crates/impact-core/tests/walk_vs_naive.rs +72 -0
  32. wickra_impact-0.1.0/pyproject.toml +47 -0
  33. wickra_impact-0.1.0/python/wickra_impact/__init__.py +12 -0
  34. wickra_impact-0.1.0/python/wickra_impact/__init__.pyi +25 -0
  35. wickra_impact-0.1.0/python/wickra_impact/py.typed +0 -0
@@ -0,0 +1,3008 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "adler2"
7
+ version = "2.0.1"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
10
+
11
+ [[package]]
12
+ name = "aho-corasick"
13
+ version = "1.1.4"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
16
+ dependencies = [
17
+ "memchr",
18
+ ]
19
+
20
+ [[package]]
21
+ name = "anes"
22
+ version = "0.1.6"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
25
+
26
+ [[package]]
27
+ name = "anstream"
28
+ version = "1.0.0"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
31
+ dependencies = [
32
+ "anstyle",
33
+ "anstyle-parse",
34
+ "anstyle-query",
35
+ "anstyle-wincon",
36
+ "colorchoice",
37
+ "is_terminal_polyfill",
38
+ "utf8parse",
39
+ ]
40
+
41
+ [[package]]
42
+ name = "anstyle"
43
+ version = "1.0.14"
44
+ source = "registry+https://github.com/rust-lang/crates.io-index"
45
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
46
+
47
+ [[package]]
48
+ name = "anstyle-parse"
49
+ version = "1.0.0"
50
+ source = "registry+https://github.com/rust-lang/crates.io-index"
51
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
52
+ dependencies = [
53
+ "utf8parse",
54
+ ]
55
+
56
+ [[package]]
57
+ name = "anstyle-query"
58
+ version = "1.1.5"
59
+ source = "registry+https://github.com/rust-lang/crates.io-index"
60
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
61
+ dependencies = [
62
+ "windows-sys 0.61.2",
63
+ ]
64
+
65
+ [[package]]
66
+ name = "anstyle-wincon"
67
+ version = "3.0.11"
68
+ source = "registry+https://github.com/rust-lang/crates.io-index"
69
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
70
+ dependencies = [
71
+ "anstyle",
72
+ "once_cell_polyfill",
73
+ "windows-sys 0.61.2",
74
+ ]
75
+
76
+ [[package]]
77
+ name = "anyhow"
78
+ version = "1.0.104"
79
+ source = "registry+https://github.com/rust-lang/crates.io-index"
80
+ checksum = "330a5ed07fa54e4702c9d6c4174f74427fc0ef6e214bbd677ae50a5099946470"
81
+
82
+ [[package]]
83
+ name = "approx"
84
+ version = "0.5.1"
85
+ source = "registry+https://github.com/rust-lang/crates.io-index"
86
+ checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6"
87
+ dependencies = [
88
+ "num-traits",
89
+ ]
90
+
91
+ [[package]]
92
+ name = "arrayvec"
93
+ version = "0.7.8"
94
+ source = "registry+https://github.com/rust-lang/crates.io-index"
95
+ checksum = "d3fb67a6e08acf24fdeccbac2cb6ac4305825bd1f117462e0e6f2f193345ad56"
96
+
97
+ [[package]]
98
+ name = "atomic-waker"
99
+ version = "1.1.2"
100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
101
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
102
+
103
+ [[package]]
104
+ name = "autocfg"
105
+ version = "1.5.1"
106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
107
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
108
+
109
+ [[package]]
110
+ name = "base16ct"
111
+ version = "1.0.0"
112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
113
+ checksum = "fd307490d624467aa6f74b0eabb77633d1f758a7b25f12bceb0b22e08d9726f6"
114
+
115
+ [[package]]
116
+ name = "base64"
117
+ version = "0.22.1"
118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
119
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
120
+
121
+ [[package]]
122
+ name = "base64ct"
123
+ version = "1.8.3"
124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
125
+ checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
126
+
127
+ [[package]]
128
+ name = "bit-set"
129
+ version = "0.8.0"
130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
131
+ checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
132
+ dependencies = [
133
+ "bit-vec",
134
+ ]
135
+
136
+ [[package]]
137
+ name = "bit-vec"
138
+ version = "0.8.0"
139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
140
+ checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
141
+
142
+ [[package]]
143
+ name = "bitflags"
144
+ version = "2.13.1"
145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
146
+ checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
147
+
148
+ [[package]]
149
+ name = "block-buffer"
150
+ version = "0.12.1"
151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
152
+ checksum = "d2f6c7dbe95a6ed67ad9f18e57daf93a2f034c524b99fd2b76d18fdfeb6660aa"
153
+ dependencies = [
154
+ "hybrid-array",
155
+ ]
156
+
157
+ [[package]]
158
+ name = "borsh"
159
+ version = "1.8.0"
160
+ source = "registry+https://github.com/rust-lang/crates.io-index"
161
+ checksum = "a88b7ea17d208c4193f2c1e6de3c35fe71f98c96982d5ced308bdcc749ff6e1f"
162
+ dependencies = [
163
+ "borsh-derive",
164
+ "bytes",
165
+ "cfg_aliases",
166
+ ]
167
+
168
+ [[package]]
169
+ name = "borsh-derive"
170
+ version = "1.8.0"
171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
172
+ checksum = "d8f347189c62a579b8cd5f80714efa178f52e461dc2e6d701d264f5ff22e566c"
173
+ dependencies = [
174
+ "once_cell",
175
+ "proc-macro-crate",
176
+ "proc-macro2",
177
+ "quote",
178
+ "syn 2.0.119",
179
+ ]
180
+
181
+ [[package]]
182
+ name = "bumpalo"
183
+ version = "3.20.3"
184
+ source = "registry+https://github.com/rust-lang/crates.io-index"
185
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
186
+
187
+ [[package]]
188
+ name = "bytes"
189
+ version = "1.12.1"
190
+ source = "registry+https://github.com/rust-lang/crates.io-index"
191
+ checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04"
192
+
193
+ [[package]]
194
+ name = "cast"
195
+ version = "0.3.0"
196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
197
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
198
+
199
+ [[package]]
200
+ name = "cc"
201
+ version = "1.2.67"
202
+ source = "registry+https://github.com/rust-lang/crates.io-index"
203
+ checksum = "e17dd265a7d0f31ef544e1b20e03add05d3b45b491b633b10d67145d2acc1a38"
204
+ dependencies = [
205
+ "find-msvc-tools",
206
+ "shlex",
207
+ ]
208
+
209
+ [[package]]
210
+ name = "cfg-if"
211
+ version = "1.0.4"
212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
213
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
214
+
215
+ [[package]]
216
+ name = "cfg_aliases"
217
+ version = "0.2.2"
218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
219
+ checksum = "f079e83a288787bcd14a6aea84cee5c87a67c5a3e660c30f557a3d24761b3527"
220
+
221
+ [[package]]
222
+ name = "chacha20"
223
+ version = "0.10.1"
224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
225
+ checksum = "d524456ba66e72eb8b115ff89e01e497f8e6d11d78b70b1aa13c0fbd97540a81"
226
+ dependencies = [
227
+ "cfg-if",
228
+ "cpufeatures",
229
+ "rand_core 0.10.1",
230
+ ]
231
+
232
+ [[package]]
233
+ name = "ciborium"
234
+ version = "0.2.2"
235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
236
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
237
+ dependencies = [
238
+ "ciborium-io",
239
+ "ciborium-ll",
240
+ "serde",
241
+ ]
242
+
243
+ [[package]]
244
+ name = "ciborium-io"
245
+ version = "0.2.2"
246
+ source = "registry+https://github.com/rust-lang/crates.io-index"
247
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
248
+
249
+ [[package]]
250
+ name = "ciborium-ll"
251
+ version = "0.2.2"
252
+ source = "registry+https://github.com/rust-lang/crates.io-index"
253
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
254
+ dependencies = [
255
+ "ciborium-io",
256
+ "half",
257
+ ]
258
+
259
+ [[package]]
260
+ name = "clap"
261
+ version = "4.6.6"
262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
263
+ checksum = "473c7e07f409a8d772161724aa8db6a765a2532a70f9667eeb7b49d3d02fbdca"
264
+ dependencies = [
265
+ "clap_builder",
266
+ "clap_derive",
267
+ ]
268
+
269
+ [[package]]
270
+ name = "clap_builder"
271
+ version = "4.6.6"
272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
273
+ checksum = "7b48fea5a88e9ae728a2dcbedbfc0e730f7d60da42e1cb049a83c9fb8b789889"
274
+ dependencies = [
275
+ "anstream",
276
+ "anstyle",
277
+ "clap_lex",
278
+ "strsim",
279
+ ]
280
+
281
+ [[package]]
282
+ name = "clap_derive"
283
+ version = "4.6.4"
284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
285
+ checksum = "d012d2b9d65aca7f18f4d9878a045bc17899bba951561ba5ec3c2ba1eed9a061"
286
+ dependencies = [
287
+ "heck",
288
+ "proc-macro2",
289
+ "quote",
290
+ "syn 3.0.3",
291
+ ]
292
+
293
+ [[package]]
294
+ name = "clap_lex"
295
+ version = "1.1.0"
296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
297
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
298
+
299
+ [[package]]
300
+ name = "cmov"
301
+ version = "0.5.4"
302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
303
+ checksum = "0c9ea0ac24bc397ab3c98583a3c9ba74fa56b09a4449bbe172b9b1ddb016027a"
304
+
305
+ [[package]]
306
+ name = "codspeed"
307
+ version = "5.0.1"
308
+ source = "registry+https://github.com/rust-lang/crates.io-index"
309
+ checksum = "7083f253260bcb4aaa3b4aa4c52973703dabc1a85c2f193997e2689aafa8a919"
310
+ dependencies = [
311
+ "anyhow",
312
+ "cc",
313
+ "colored",
314
+ "getrandom 0.4.3",
315
+ "glob",
316
+ "libc",
317
+ "nix",
318
+ "serde",
319
+ "serde_json",
320
+ "statrs",
321
+ ]
322
+
323
+ [[package]]
324
+ name = "codspeed-criterion-compat"
325
+ version = "5.0.1"
326
+ source = "registry+https://github.com/rust-lang/crates.io-index"
327
+ checksum = "d9f24251445188c69d50f10179d795424bd71b533b7e3f84fc03f26893b01af0"
328
+ dependencies = [
329
+ "clap",
330
+ "codspeed",
331
+ "codspeed-criterion-compat-walltime",
332
+ "colored",
333
+ "regex",
334
+ ]
335
+
336
+ [[package]]
337
+ name = "codspeed-criterion-compat-walltime"
338
+ version = "5.0.1"
339
+ source = "registry+https://github.com/rust-lang/crates.io-index"
340
+ checksum = "5c38205d56e2cb4fe04b708de7f9653a3f1b89edbe3a20b28f21e9e525e9e061"
341
+ dependencies = [
342
+ "anes",
343
+ "cast",
344
+ "ciborium",
345
+ "clap",
346
+ "codspeed",
347
+ "criterion-plot",
348
+ "is-terminal",
349
+ "itertools",
350
+ "num-traits",
351
+ "once_cell",
352
+ "oorandom",
353
+ "plotters",
354
+ "rayon",
355
+ "regex",
356
+ "serde",
357
+ "serde_derive",
358
+ "serde_json",
359
+ "tinytemplate",
360
+ "walkdir",
361
+ ]
362
+
363
+ [[package]]
364
+ name = "colorchoice"
365
+ version = "1.0.5"
366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
367
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
368
+
369
+ [[package]]
370
+ name = "colored"
371
+ version = "3.1.1"
372
+ source = "registry+https://github.com/rust-lang/crates.io-index"
373
+ checksum = "faf9468729b8cbcea668e36183cb69d317348c2e08e994829fb56ebfdfbaac34"
374
+ dependencies = [
375
+ "windows-sys 0.61.2",
376
+ ]
377
+
378
+ [[package]]
379
+ name = "const-oid"
380
+ version = "0.10.2"
381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
382
+ checksum = "a6ef517f0926dd24a1582492c791b6a4818a4d94e789a334894aa15b0d12f55c"
383
+
384
+ [[package]]
385
+ name = "convert_case"
386
+ version = "0.11.0"
387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
388
+ checksum = "affbf0190ed2caf063e3def54ff444b449371d55c58e513a95ab98eca50adb49"
389
+ dependencies = [
390
+ "unicode-segmentation",
391
+ ]
392
+
393
+ [[package]]
394
+ name = "cpubits"
395
+ version = "0.1.1"
396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
397
+ checksum = "15b85f9c39137c3a891689859392b1bd49812121d0d61c9caf00d46ed5ce06ae"
398
+
399
+ [[package]]
400
+ name = "cpufeatures"
401
+ version = "0.3.0"
402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
403
+ checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
404
+ dependencies = [
405
+ "libc",
406
+ ]
407
+
408
+ [[package]]
409
+ name = "crc32fast"
410
+ version = "1.5.1"
411
+ source = "registry+https://github.com/rust-lang/crates.io-index"
412
+ checksum = "8498c871161e1742aaa9d52551b2d6ebdd4c3d45a3be423e3728f33b955be550"
413
+ dependencies = [
414
+ "cfg-if",
415
+ ]
416
+
417
+ [[package]]
418
+ name = "criterion-plot"
419
+ version = "0.5.0"
420
+ source = "registry+https://github.com/rust-lang/crates.io-index"
421
+ checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
422
+ dependencies = [
423
+ "cast",
424
+ "itertools",
425
+ ]
426
+
427
+ [[package]]
428
+ name = "crossbeam-deque"
429
+ version = "0.8.7"
430
+ source = "registry+https://github.com/rust-lang/crates.io-index"
431
+ checksum = "5181e0de7b61eb03a81e347d6dd8797bae9da5146707b51077e2d71a54ec0ceb"
432
+ dependencies = [
433
+ "crossbeam-epoch",
434
+ "crossbeam-utils",
435
+ ]
436
+
437
+ [[package]]
438
+ name = "crossbeam-epoch"
439
+ version = "0.9.20"
440
+ source = "registry+https://github.com/rust-lang/crates.io-index"
441
+ checksum = "2d6914041f254d6e9176c01941b21115dcfb7089e55135a35411081bd106ef3f"
442
+ dependencies = [
443
+ "crossbeam-utils",
444
+ ]
445
+
446
+ [[package]]
447
+ name = "crossbeam-utils"
448
+ version = "0.8.22"
449
+ source = "registry+https://github.com/rust-lang/crates.io-index"
450
+ checksum = "61803da095bee82a81bb1a452ecc25d3b2f1416d1897eb86430c6159ef717c17"
451
+
452
+ [[package]]
453
+ name = "crunchy"
454
+ version = "0.2.4"
455
+ source = "registry+https://github.com/rust-lang/crates.io-index"
456
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
457
+
458
+ [[package]]
459
+ name = "crypto-bigint"
460
+ version = "0.7.5"
461
+ source = "registry+https://github.com/rust-lang/crates.io-index"
462
+ checksum = "1a52aa3fcda4e6302a9f48734f234d35d4721b96f8fe07d073f07ce9df4f0271"
463
+ dependencies = [
464
+ "cpubits",
465
+ "ctutils",
466
+ "getrandom 0.4.3",
467
+ "hybrid-array",
468
+ "num-traits",
469
+ "rand_core 0.10.1",
470
+ "subtle",
471
+ "zeroize",
472
+ ]
473
+
474
+ [[package]]
475
+ name = "crypto-common"
476
+ version = "0.2.2"
477
+ source = "registry+https://github.com/rust-lang/crates.io-index"
478
+ checksum = "ce6e4c961d6cd6c9a86db418387425e8bdeaf05b3c8bc1411e6dca4c252f1453"
479
+ dependencies = [
480
+ "getrandom 0.4.3",
481
+ "hybrid-array",
482
+ "rand_core 0.10.1",
483
+ ]
484
+
485
+ [[package]]
486
+ name = "ctor"
487
+ version = "1.0.9"
488
+ source = "registry+https://github.com/rust-lang/crates.io-index"
489
+ checksum = "a394189d59f9befacce833f337f7b1eca5e9a91221bcdd4d28e0114d96e597b3"
490
+
491
+ [[package]]
492
+ name = "ctutils"
493
+ version = "0.4.2"
494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
495
+ checksum = "7d5515a3834141de9eafb9717ad39eea8247b5674e6066c404e8c4b365d2a29e"
496
+ dependencies = [
497
+ "cmov",
498
+ "subtle",
499
+ ]
500
+
501
+ [[package]]
502
+ name = "data-encoding"
503
+ version = "2.11.0"
504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
505
+ checksum = "a4ae5f15dda3c708c0ade84bfee31ccab44a3da4f88015ed22f63732abe300c8"
506
+
507
+ [[package]]
508
+ name = "der"
509
+ version = "0.8.1"
510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
511
+ checksum = "a69dedd701da44b0536442edf09c81a64b0ab97a7a4a5e3d1971f00027cbc63d"
512
+ dependencies = [
513
+ "const-oid",
514
+ "pem-rfc7468",
515
+ "zeroize",
516
+ ]
517
+
518
+ [[package]]
519
+ name = "digest"
520
+ version = "0.11.3"
521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
522
+ checksum = "f1dd6dbb5841937940781866fa1281a1ff7bd3bf827091440879f9994983d5c2"
523
+ dependencies = [
524
+ "block-buffer",
525
+ "const-oid",
526
+ "crypto-common",
527
+ "ctutils",
528
+ ]
529
+
530
+ [[package]]
531
+ name = "displaydoc"
532
+ version = "0.2.6"
533
+ source = "registry+https://github.com/rust-lang/crates.io-index"
534
+ checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f"
535
+ dependencies = [
536
+ "proc-macro2",
537
+ "quote",
538
+ "syn 2.0.119",
539
+ ]
540
+
541
+ [[package]]
542
+ name = "dyn-clone"
543
+ version = "1.0.20"
544
+ source = "registry+https://github.com/rust-lang/crates.io-index"
545
+ checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
546
+
547
+ [[package]]
548
+ name = "ecdsa"
549
+ version = "0.17.0"
550
+ source = "registry+https://github.com/rust-lang/crates.io-index"
551
+ checksum = "c0681a4fc24c767085329728d8dfba959af91228aa4610cca4f8ce317ba46ae0"
552
+ dependencies = [
553
+ "der",
554
+ "digest",
555
+ "elliptic-curve",
556
+ "rfc6979",
557
+ "signature",
558
+ "spki",
559
+ "zeroize",
560
+ ]
561
+
562
+ [[package]]
563
+ name = "either"
564
+ version = "1.16.0"
565
+ source = "registry+https://github.com/rust-lang/crates.io-index"
566
+ checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
567
+
568
+ [[package]]
569
+ name = "elliptic-curve"
570
+ version = "0.14.1"
571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
572
+ checksum = "9d65aa39b3a5c1c9c1b745c9a019234bb7a21b77abcb4f4d266d706e2d577d65"
573
+ dependencies = [
574
+ "base16ct",
575
+ "crypto-bigint",
576
+ "crypto-common",
577
+ "digest",
578
+ "ff",
579
+ "group",
580
+ "hybrid-array",
581
+ "pem-rfc7468",
582
+ "pkcs8",
583
+ "rand_core 0.10.1",
584
+ "sec1",
585
+ "subtle",
586
+ "zeroize",
587
+ ]
588
+
589
+ [[package]]
590
+ name = "equivalent"
591
+ version = "1.0.2"
592
+ source = "registry+https://github.com/rust-lang/crates.io-index"
593
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
594
+
595
+ [[package]]
596
+ name = "errno"
597
+ version = "0.3.14"
598
+ source = "registry+https://github.com/rust-lang/crates.io-index"
599
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
600
+ dependencies = [
601
+ "libc",
602
+ "windows-sys 0.61.2",
603
+ ]
604
+
605
+ [[package]]
606
+ name = "fastrand"
607
+ version = "2.4.1"
608
+ source = "registry+https://github.com/rust-lang/crates.io-index"
609
+ checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
610
+
611
+ [[package]]
612
+ name = "ff"
613
+ version = "0.14.0"
614
+ source = "registry+https://github.com/rust-lang/crates.io-index"
615
+ checksum = "a1f686ab92a9fb0eaf188f6c6c87b89490baa6fdb0db4544ba4dc47f7942489f"
616
+ dependencies = [
617
+ "rand_core 0.10.1",
618
+ "subtle",
619
+ ]
620
+
621
+ [[package]]
622
+ name = "find-msvc-tools"
623
+ version = "0.1.9"
624
+ source = "registry+https://github.com/rust-lang/crates.io-index"
625
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
626
+
627
+ [[package]]
628
+ name = "flate2"
629
+ version = "1.1.10"
630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
631
+ checksum = "6e634e2e0ebac1ee034020da1ca582e17ffe4e0f5e985823721e168928136dcb"
632
+ dependencies = [
633
+ "crc32fast",
634
+ "miniz_oxide",
635
+ "zlib-rs",
636
+ ]
637
+
638
+ [[package]]
639
+ name = "fnv"
640
+ version = "1.0.7"
641
+ source = "registry+https://github.com/rust-lang/crates.io-index"
642
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
643
+
644
+ [[package]]
645
+ name = "form_urlencoded"
646
+ version = "1.2.2"
647
+ source = "registry+https://github.com/rust-lang/crates.io-index"
648
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
649
+ dependencies = [
650
+ "percent-encoding",
651
+ ]
652
+
653
+ [[package]]
654
+ name = "futures"
655
+ version = "0.3.32"
656
+ source = "registry+https://github.com/rust-lang/crates.io-index"
657
+ checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
658
+ dependencies = [
659
+ "futures-channel",
660
+ "futures-core",
661
+ "futures-executor",
662
+ "futures-io",
663
+ "futures-sink",
664
+ "futures-task",
665
+ "futures-util",
666
+ ]
667
+
668
+ [[package]]
669
+ name = "futures-channel"
670
+ version = "0.3.32"
671
+ source = "registry+https://github.com/rust-lang/crates.io-index"
672
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
673
+ dependencies = [
674
+ "futures-core",
675
+ "futures-sink",
676
+ ]
677
+
678
+ [[package]]
679
+ name = "futures-core"
680
+ version = "0.3.32"
681
+ source = "registry+https://github.com/rust-lang/crates.io-index"
682
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
683
+
684
+ [[package]]
685
+ name = "futures-executor"
686
+ version = "0.3.32"
687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
688
+ checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
689
+ dependencies = [
690
+ "futures-core",
691
+ "futures-task",
692
+ "futures-util",
693
+ ]
694
+
695
+ [[package]]
696
+ name = "futures-io"
697
+ version = "0.3.32"
698
+ source = "registry+https://github.com/rust-lang/crates.io-index"
699
+ checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
700
+
701
+ [[package]]
702
+ name = "futures-macro"
703
+ version = "0.3.32"
704
+ source = "registry+https://github.com/rust-lang/crates.io-index"
705
+ checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
706
+ dependencies = [
707
+ "proc-macro2",
708
+ "quote",
709
+ "syn 2.0.119",
710
+ ]
711
+
712
+ [[package]]
713
+ name = "futures-sink"
714
+ version = "0.3.32"
715
+ source = "registry+https://github.com/rust-lang/crates.io-index"
716
+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
717
+
718
+ [[package]]
719
+ name = "futures-task"
720
+ version = "0.3.32"
721
+ source = "registry+https://github.com/rust-lang/crates.io-index"
722
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
723
+
724
+ [[package]]
725
+ name = "futures-util"
726
+ version = "0.3.32"
727
+ source = "registry+https://github.com/rust-lang/crates.io-index"
728
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
729
+ dependencies = [
730
+ "futures-channel",
731
+ "futures-core",
732
+ "futures-io",
733
+ "futures-macro",
734
+ "futures-sink",
735
+ "futures-task",
736
+ "memchr",
737
+ "pin-project-lite",
738
+ "slab",
739
+ ]
740
+
741
+ [[package]]
742
+ name = "getrandom"
743
+ version = "0.2.17"
744
+ source = "registry+https://github.com/rust-lang/crates.io-index"
745
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
746
+ dependencies = [
747
+ "cfg-if",
748
+ "js-sys",
749
+ "libc",
750
+ "wasi",
751
+ "wasm-bindgen",
752
+ ]
753
+
754
+ [[package]]
755
+ name = "getrandom"
756
+ version = "0.3.4"
757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
758
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
759
+ dependencies = [
760
+ "cfg-if",
761
+ "libc",
762
+ "r-efi 5.3.0",
763
+ "wasip2",
764
+ ]
765
+
766
+ [[package]]
767
+ name = "getrandom"
768
+ version = "0.4.3"
769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
770
+ checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
771
+ dependencies = [
772
+ "cfg-if",
773
+ "js-sys",
774
+ "libc",
775
+ "r-efi 6.0.0",
776
+ "rand_core 0.10.1",
777
+ "wasm-bindgen",
778
+ ]
779
+
780
+ [[package]]
781
+ name = "glob"
782
+ version = "0.3.4"
783
+ source = "registry+https://github.com/rust-lang/crates.io-index"
784
+ checksum = "e4eba85ea1d0a966a983acd07deee566e67395d2d96b6fb39e62b5a833f1eb0b"
785
+
786
+ [[package]]
787
+ name = "group"
788
+ version = "0.14.0"
789
+ source = "registry+https://github.com/rust-lang/crates.io-index"
790
+ checksum = "7fd1a1c7a5206c5b7a3f5a0d7ccd3ff85d0c8f5133d62a02680255b0004af5f4"
791
+ dependencies = [
792
+ "ff",
793
+ "rand_core 0.10.1",
794
+ "subtle",
795
+ ]
796
+
797
+ [[package]]
798
+ name = "half"
799
+ version = "2.7.1"
800
+ source = "registry+https://github.com/rust-lang/crates.io-index"
801
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
802
+ dependencies = [
803
+ "cfg-if",
804
+ "crunchy",
805
+ "zerocopy",
806
+ ]
807
+
808
+ [[package]]
809
+ name = "hashbrown"
810
+ version = "0.17.1"
811
+ source = "registry+https://github.com/rust-lang/crates.io-index"
812
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
813
+
814
+ [[package]]
815
+ name = "heck"
816
+ version = "0.5.0"
817
+ source = "registry+https://github.com/rust-lang/crates.io-index"
818
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
819
+
820
+ [[package]]
821
+ name = "hermit-abi"
822
+ version = "0.5.3"
823
+ source = "registry+https://github.com/rust-lang/crates.io-index"
824
+ checksum = "e17592d60ebacc7d5e169f4663c5f84f9161cc90328abcfe8456f41e4dfcb284"
825
+
826
+ [[package]]
827
+ name = "hex"
828
+ version = "0.4.3"
829
+ source = "registry+https://github.com/rust-lang/crates.io-index"
830
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
831
+
832
+ [[package]]
833
+ name = "hmac"
834
+ version = "0.13.0"
835
+ source = "registry+https://github.com/rust-lang/crates.io-index"
836
+ checksum = "6303bc9732ae41b04cb554b844a762b4115a61bfaa81e3e83050991eeb56863f"
837
+ dependencies = [
838
+ "digest",
839
+ ]
840
+
841
+ [[package]]
842
+ name = "http"
843
+ version = "1.4.2"
844
+ source = "registry+https://github.com/rust-lang/crates.io-index"
845
+ checksum = "6970f50e31d6fc17d3fa27329444bfa74e196cf62e95052a3f6fee181dba6425"
846
+ dependencies = [
847
+ "bytes",
848
+ "itoa",
849
+ ]
850
+
851
+ [[package]]
852
+ name = "http-body"
853
+ version = "1.1.0"
854
+ source = "registry+https://github.com/rust-lang/crates.io-index"
855
+ checksum = "ca2a8f2913ee65f60facd6a5905613afaa448497a0230cc41ce022d93290bc2c"
856
+ dependencies = [
857
+ "bytes",
858
+ "http",
859
+ ]
860
+
861
+ [[package]]
862
+ name = "http-body-util"
863
+ version = "0.1.4"
864
+ source = "registry+https://github.com/rust-lang/crates.io-index"
865
+ checksum = "e9f41fd6a08e4d4ec69df65976da761afd5ad5e58a9d4acb46bd1c953a9e3ff2"
866
+ dependencies = [
867
+ "bytes",
868
+ "futures-core",
869
+ "http",
870
+ "http-body",
871
+ "pin-project-lite",
872
+ ]
873
+
874
+ [[package]]
875
+ name = "httparse"
876
+ version = "1.10.1"
877
+ source = "registry+https://github.com/rust-lang/crates.io-index"
878
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
879
+
880
+ [[package]]
881
+ name = "hybrid-array"
882
+ version = "0.4.13"
883
+ source = "registry+https://github.com/rust-lang/crates.io-index"
884
+ checksum = "818356c5132c1fede50f837ca96afbe78ff42413047f4abb886217845e1b6c8c"
885
+ dependencies = [
886
+ "subtle",
887
+ "typenum",
888
+ "zeroize",
889
+ ]
890
+
891
+ [[package]]
892
+ name = "hyper"
893
+ version = "1.10.1"
894
+ source = "registry+https://github.com/rust-lang/crates.io-index"
895
+ checksum = "55281c53a1894c864990125767da440a4e630446785086f52523b20033b74498"
896
+ dependencies = [
897
+ "atomic-waker",
898
+ "bytes",
899
+ "futures-channel",
900
+ "futures-core",
901
+ "http",
902
+ "http-body",
903
+ "httparse",
904
+ "itoa",
905
+ "pin-project-lite",
906
+ "smallvec",
907
+ "tokio",
908
+ "want",
909
+ ]
910
+
911
+ [[package]]
912
+ name = "hyper-rustls"
913
+ version = "0.27.9"
914
+ source = "registry+https://github.com/rust-lang/crates.io-index"
915
+ checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f"
916
+ dependencies = [
917
+ "http",
918
+ "hyper",
919
+ "hyper-util",
920
+ "rustls",
921
+ "tokio",
922
+ "tokio-rustls",
923
+ "tower-service",
924
+ "webpki-roots 1.0.8",
925
+ ]
926
+
927
+ [[package]]
928
+ name = "hyper-util"
929
+ version = "0.1.20"
930
+ source = "registry+https://github.com/rust-lang/crates.io-index"
931
+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
932
+ dependencies = [
933
+ "base64",
934
+ "bytes",
935
+ "futures-channel",
936
+ "futures-util",
937
+ "http",
938
+ "http-body",
939
+ "hyper",
940
+ "ipnet",
941
+ "libc",
942
+ "percent-encoding",
943
+ "pin-project-lite",
944
+ "socket2",
945
+ "tokio",
946
+ "tower-service",
947
+ "tracing",
948
+ ]
949
+
950
+ [[package]]
951
+ name = "icu_collections"
952
+ version = "2.2.0"
953
+ source = "registry+https://github.com/rust-lang/crates.io-index"
954
+ checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
955
+ dependencies = [
956
+ "displaydoc",
957
+ "potential_utf",
958
+ "utf8_iter",
959
+ "yoke",
960
+ "zerofrom",
961
+ "zerovec",
962
+ ]
963
+
964
+ [[package]]
965
+ name = "icu_locale_core"
966
+ version = "2.2.0"
967
+ source = "registry+https://github.com/rust-lang/crates.io-index"
968
+ checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
969
+ dependencies = [
970
+ "displaydoc",
971
+ "litemap",
972
+ "tinystr",
973
+ "writeable",
974
+ "zerovec",
975
+ ]
976
+
977
+ [[package]]
978
+ name = "icu_normalizer"
979
+ version = "2.2.0"
980
+ source = "registry+https://github.com/rust-lang/crates.io-index"
981
+ checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
982
+ dependencies = [
983
+ "icu_collections",
984
+ "icu_normalizer_data",
985
+ "icu_properties",
986
+ "icu_provider",
987
+ "smallvec",
988
+ "zerovec",
989
+ ]
990
+
991
+ [[package]]
992
+ name = "icu_normalizer_data"
993
+ version = "2.2.0"
994
+ source = "registry+https://github.com/rust-lang/crates.io-index"
995
+ checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
996
+
997
+ [[package]]
998
+ name = "icu_properties"
999
+ version = "2.2.0"
1000
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1001
+ checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
1002
+ dependencies = [
1003
+ "icu_collections",
1004
+ "icu_locale_core",
1005
+ "icu_properties_data",
1006
+ "icu_provider",
1007
+ "zerotrie",
1008
+ "zerovec",
1009
+ ]
1010
+
1011
+ [[package]]
1012
+ name = "icu_properties_data"
1013
+ version = "2.2.0"
1014
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1015
+ checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
1016
+
1017
+ [[package]]
1018
+ name = "icu_provider"
1019
+ version = "2.2.0"
1020
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1021
+ checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
1022
+ dependencies = [
1023
+ "displaydoc",
1024
+ "icu_locale_core",
1025
+ "writeable",
1026
+ "yoke",
1027
+ "zerofrom",
1028
+ "zerotrie",
1029
+ "zerovec",
1030
+ ]
1031
+
1032
+ [[package]]
1033
+ name = "idna"
1034
+ version = "1.1.0"
1035
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1036
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
1037
+ dependencies = [
1038
+ "idna_adapter",
1039
+ "smallvec",
1040
+ "utf8_iter",
1041
+ ]
1042
+
1043
+ [[package]]
1044
+ name = "idna_adapter"
1045
+ version = "1.2.2"
1046
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1047
+ checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
1048
+ dependencies = [
1049
+ "icu_normalizer",
1050
+ "icu_properties",
1051
+ ]
1052
+
1053
+ [[package]]
1054
+ name = "impact-bench"
1055
+ version = "0.1.0"
1056
+ dependencies = [
1057
+ "codspeed-criterion-compat",
1058
+ "serde_json",
1059
+ "wickra-backtest",
1060
+ "wickra-impact-core",
1061
+ ]
1062
+
1063
+ [[package]]
1064
+ name = "indexmap"
1065
+ version = "2.14.0"
1066
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1067
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
1068
+ dependencies = [
1069
+ "equivalent",
1070
+ "hashbrown",
1071
+ ]
1072
+
1073
+ [[package]]
1074
+ name = "ipnet"
1075
+ version = "2.12.0"
1076
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1077
+ checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
1078
+
1079
+ [[package]]
1080
+ name = "is-terminal"
1081
+ version = "0.4.17"
1082
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1083
+ checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
1084
+ dependencies = [
1085
+ "hermit-abi",
1086
+ "libc",
1087
+ "windows-sys 0.61.2",
1088
+ ]
1089
+
1090
+ [[package]]
1091
+ name = "is_terminal_polyfill"
1092
+ version = "1.70.2"
1093
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1094
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
1095
+
1096
+ [[package]]
1097
+ name = "itertools"
1098
+ version = "0.10.5"
1099
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1100
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
1101
+ dependencies = [
1102
+ "either",
1103
+ ]
1104
+
1105
+ [[package]]
1106
+ name = "itoa"
1107
+ version = "1.0.18"
1108
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1109
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
1110
+
1111
+ [[package]]
1112
+ name = "js-sys"
1113
+ version = "0.3.103"
1114
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1115
+ checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102"
1116
+ dependencies = [
1117
+ "cfg-if",
1118
+ "futures-util",
1119
+ "wasm-bindgen",
1120
+ ]
1121
+
1122
+ [[package]]
1123
+ name = "libc"
1124
+ version = "0.2.186"
1125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1126
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
1127
+
1128
+ [[package]]
1129
+ name = "libloading"
1130
+ version = "0.9.0"
1131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1132
+ checksum = "754ca22de805bb5744484a5b151a9e1a8e837d5dc232c2d7d8c2e3492edc8b60"
1133
+ dependencies = [
1134
+ "cfg-if",
1135
+ "windows-link",
1136
+ ]
1137
+
1138
+ [[package]]
1139
+ name = "linux-raw-sys"
1140
+ version = "0.12.1"
1141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1142
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
1143
+
1144
+ [[package]]
1145
+ name = "litemap"
1146
+ version = "0.8.2"
1147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1148
+ checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
1149
+
1150
+ [[package]]
1151
+ name = "log"
1152
+ version = "0.4.33"
1153
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1154
+ checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
1155
+
1156
+ [[package]]
1157
+ name = "lru-slab"
1158
+ version = "0.1.2"
1159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1160
+ checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
1161
+
1162
+ [[package]]
1163
+ name = "memchr"
1164
+ version = "2.8.3"
1165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1166
+ checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
1167
+
1168
+ [[package]]
1169
+ name = "miniz_oxide"
1170
+ version = "0.9.1"
1171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1172
+ checksum = "b63fbc4a50860e98e7b2aa7804ded1db5cbc3aff9193adaff57a6931bf7c4b4c"
1173
+ dependencies = [
1174
+ "adler2",
1175
+ "simd-adler32",
1176
+ ]
1177
+
1178
+ [[package]]
1179
+ name = "mio"
1180
+ version = "1.2.2"
1181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1182
+ checksum = "30d65c71f1ce40ab09135ce117d742b9f8a19ff91a41a8b57ed50bc2de59c427"
1183
+ dependencies = [
1184
+ "libc",
1185
+ "wasi",
1186
+ "windows-sys 0.61.2",
1187
+ ]
1188
+
1189
+ [[package]]
1190
+ name = "napi"
1191
+ version = "3.12.2"
1192
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1193
+ checksum = "58c5f4d5375213fdb7be2655e152386e82f026f9a5ba36a75556e11359aafe09"
1194
+ dependencies = [
1195
+ "bitflags",
1196
+ "ctor",
1197
+ "futures",
1198
+ "libc",
1199
+ "napi-build",
1200
+ "napi-sys",
1201
+ "nohash-hasher",
1202
+ "rustc-hash",
1203
+ ]
1204
+
1205
+ [[package]]
1206
+ name = "napi-build"
1207
+ version = "2.4.1"
1208
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1209
+ checksum = "60fdf9b392c50e7c4170fa633bd909490ed7835cea4c046776d1a4dd8d2ae0ab"
1210
+
1211
+ [[package]]
1212
+ name = "napi-derive"
1213
+ version = "3.6.3"
1214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1215
+ checksum = "0fa55ea69990c90b888e9e77044410e304ce7f35de599dc6d0b5c1923d2e59af"
1216
+ dependencies = [
1217
+ "convert_case",
1218
+ "ctor",
1219
+ "napi-derive-backend",
1220
+ "proc-macro2",
1221
+ "quote",
1222
+ "syn 2.0.119",
1223
+ ]
1224
+
1225
+ [[package]]
1226
+ name = "napi-derive-backend"
1227
+ version = "6.1.2"
1228
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1229
+ checksum = "df4056ac7c18e4438ccf0edaed4340ca0d269278c8ec19284f7b23cb039fd0ae"
1230
+ dependencies = [
1231
+ "convert_case",
1232
+ "proc-macro2",
1233
+ "quote",
1234
+ "semver",
1235
+ "syn 2.0.119",
1236
+ ]
1237
+
1238
+ [[package]]
1239
+ name = "napi-sys"
1240
+ version = "3.3.0"
1241
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1242
+ checksum = "85fbf1fa9f1babfe396d74bbbf52b3643770243e8f5b0b46715d4caf7f0dfc9a"
1243
+ dependencies = [
1244
+ "libloading",
1245
+ ]
1246
+
1247
+ [[package]]
1248
+ name = "nix"
1249
+ version = "0.31.3"
1250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1251
+ checksum = "cf20d2fde8ff38632c426f1165ed7436270b44f199fc55284c38276f9db47c3d"
1252
+ dependencies = [
1253
+ "bitflags",
1254
+ "cfg-if",
1255
+ "cfg_aliases",
1256
+ "libc",
1257
+ ]
1258
+
1259
+ [[package]]
1260
+ name = "nohash-hasher"
1261
+ version = "0.2.0"
1262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1263
+ checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451"
1264
+
1265
+ [[package]]
1266
+ name = "num-traits"
1267
+ version = "0.2.19"
1268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1269
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1270
+ dependencies = [
1271
+ "autocfg",
1272
+ ]
1273
+
1274
+ [[package]]
1275
+ name = "once_cell"
1276
+ version = "1.21.4"
1277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1278
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
1279
+
1280
+ [[package]]
1281
+ name = "once_cell_polyfill"
1282
+ version = "1.70.2"
1283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1284
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
1285
+
1286
+ [[package]]
1287
+ name = "oorandom"
1288
+ version = "11.1.5"
1289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1290
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
1291
+
1292
+ [[package]]
1293
+ name = "p256"
1294
+ version = "0.14.0"
1295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1296
+ checksum = "d2c9239b2dbc807adbbe147e8cf72ea7450c3a0aabe62cb8e75ff4ec22e1f72a"
1297
+ dependencies = [
1298
+ "ecdsa",
1299
+ "elliptic-curve",
1300
+ "primefield",
1301
+ "primeorder",
1302
+ "sha2",
1303
+ ]
1304
+
1305
+ [[package]]
1306
+ name = "pem-rfc7468"
1307
+ version = "1.0.0"
1308
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1309
+ checksum = "a6305423e0e7738146434843d1694d621cce767262b2a86910beab705e4493d9"
1310
+ dependencies = [
1311
+ "base64ct",
1312
+ ]
1313
+
1314
+ [[package]]
1315
+ name = "percent-encoding"
1316
+ version = "2.3.2"
1317
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1318
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1319
+
1320
+ [[package]]
1321
+ name = "pin-project-lite"
1322
+ version = "0.2.17"
1323
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1324
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
1325
+
1326
+ [[package]]
1327
+ name = "pkcs8"
1328
+ version = "0.11.0"
1329
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1330
+ checksum = "451913da69c775a56034ea8d9003d27ee8948e12443eae7c038ba100a4f21cb7"
1331
+ dependencies = [
1332
+ "der",
1333
+ "spki",
1334
+ ]
1335
+
1336
+ [[package]]
1337
+ name = "plotters"
1338
+ version = "0.3.7"
1339
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1340
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
1341
+ dependencies = [
1342
+ "num-traits",
1343
+ "plotters-backend",
1344
+ "plotters-svg",
1345
+ "wasm-bindgen",
1346
+ "web-sys",
1347
+ ]
1348
+
1349
+ [[package]]
1350
+ name = "plotters-backend"
1351
+ version = "0.3.7"
1352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1353
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
1354
+
1355
+ [[package]]
1356
+ name = "plotters-svg"
1357
+ version = "0.3.7"
1358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1359
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
1360
+ dependencies = [
1361
+ "plotters-backend",
1362
+ ]
1363
+
1364
+ [[package]]
1365
+ name = "portable-atomic"
1366
+ version = "1.14.0"
1367
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1368
+ checksum = "3d20d5497ef88037a52ff98267d066e7f11fcc5e99bbfbd58a42336193aacec3"
1369
+
1370
+ [[package]]
1371
+ name = "potential_utf"
1372
+ version = "0.1.5"
1373
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1374
+ checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
1375
+ dependencies = [
1376
+ "zerovec",
1377
+ ]
1378
+
1379
+ [[package]]
1380
+ name = "ppv-lite86"
1381
+ version = "0.2.21"
1382
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1383
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1384
+ dependencies = [
1385
+ "zerocopy",
1386
+ ]
1387
+
1388
+ [[package]]
1389
+ name = "primefield"
1390
+ version = "0.14.0"
1391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1392
+ checksum = "c555a6e4eb7d4e158fcb028c835c3b8642206ddc279b5c6b202ef9a8bdb592f4"
1393
+ dependencies = [
1394
+ "crypto-bigint",
1395
+ "crypto-common",
1396
+ "ff",
1397
+ "rand_core 0.10.1",
1398
+ "subtle",
1399
+ "zeroize",
1400
+ ]
1401
+
1402
+ [[package]]
1403
+ name = "primeorder"
1404
+ version = "0.14.0"
1405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1406
+ checksum = "5c9f42978c78a00e3d68f69fc03e57a234debae69da4020a4fb588fcdcd07b06"
1407
+ dependencies = [
1408
+ "elliptic-curve",
1409
+ "once_cell",
1410
+ "primefield",
1411
+ "serdect",
1412
+ "wnaf",
1413
+ ]
1414
+
1415
+ [[package]]
1416
+ name = "proc-macro-crate"
1417
+ version = "3.5.0"
1418
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1419
+ checksum = "e67ba7e9b2b56446f1d419b1d807906278ffa1a658a8a5d8a39dcb1f5a78614f"
1420
+ dependencies = [
1421
+ "toml_edit",
1422
+ ]
1423
+
1424
+ [[package]]
1425
+ name = "proc-macro2"
1426
+ version = "1.0.106"
1427
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1428
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1429
+ dependencies = [
1430
+ "unicode-ident",
1431
+ ]
1432
+
1433
+ [[package]]
1434
+ name = "proptest"
1435
+ version = "1.11.0"
1436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1437
+ checksum = "4b45fcc2344c680f5025fe57779faef368840d0bd1f42f216291f0dc4ace4744"
1438
+ dependencies = [
1439
+ "bit-set",
1440
+ "bit-vec",
1441
+ "bitflags",
1442
+ "num-traits",
1443
+ "rand 0.9.5",
1444
+ "rand_chacha 0.9.0",
1445
+ "rand_xorshift",
1446
+ "regex-syntax",
1447
+ "rusty-fork",
1448
+ "tempfile",
1449
+ "unarray",
1450
+ ]
1451
+
1452
+ [[package]]
1453
+ name = "pyo3"
1454
+ version = "0.29.2"
1455
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1456
+ checksum = "4688ddedf473e32662b9b067670129a8afb8c18e351482c70d62ba4a88171e8b"
1457
+ dependencies = [
1458
+ "libc",
1459
+ "once_cell",
1460
+ "portable-atomic",
1461
+ "pyo3-build-config",
1462
+ "pyo3-ffi",
1463
+ "pyo3-macros",
1464
+ ]
1465
+
1466
+ [[package]]
1467
+ name = "pyo3-build-config"
1468
+ version = "0.29.2"
1469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1470
+ checksum = "f41027e41b4bd03f6e60f9f417fe24a6341a6bb744edd62b6f709f2a52ea30e9"
1471
+ dependencies = [
1472
+ "target-lexicon",
1473
+ ]
1474
+
1475
+ [[package]]
1476
+ name = "pyo3-ffi"
1477
+ version = "0.29.2"
1478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1479
+ checksum = "e591a95526fead067432c3b3a33fc74770b87b1e04e73671090d9c2055a2b327"
1480
+ dependencies = [
1481
+ "libc",
1482
+ "pyo3-build-config",
1483
+ ]
1484
+
1485
+ [[package]]
1486
+ name = "pyo3-macros"
1487
+ version = "0.29.2"
1488
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1489
+ checksum = "73225868fc1cd84eef2c3c230ddb91273bf1de46aeb8a4248da76d32a0924a1c"
1490
+ dependencies = [
1491
+ "proc-macro2",
1492
+ "pyo3-macros-backend",
1493
+ "quote",
1494
+ "syn 2.0.119",
1495
+ ]
1496
+
1497
+ [[package]]
1498
+ name = "pyo3-macros-backend"
1499
+ version = "0.29.2"
1500
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1501
+ checksum = "571575aa3749fa6216757dd47d2a3e7ef360f329a40f0666a9fbd14889024952"
1502
+ dependencies = [
1503
+ "heck",
1504
+ "proc-macro2",
1505
+ "quote",
1506
+ "syn 2.0.119",
1507
+ ]
1508
+
1509
+ [[package]]
1510
+ name = "quick-error"
1511
+ version = "1.2.3"
1512
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1513
+ checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
1514
+
1515
+ [[package]]
1516
+ name = "quinn"
1517
+ version = "0.11.11"
1518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1519
+ checksum = "0c1a41e437b6bbd489372cd4971de128e85c855f56c57f283d20ff016cf7c0a8"
1520
+ dependencies = [
1521
+ "bytes",
1522
+ "cfg_aliases",
1523
+ "pin-project-lite",
1524
+ "quinn-proto",
1525
+ "quinn-udp",
1526
+ "rustc-hash",
1527
+ "rustls",
1528
+ "socket2",
1529
+ "thiserror",
1530
+ "tokio",
1531
+ "tracing",
1532
+ "web-time",
1533
+ ]
1534
+
1535
+ [[package]]
1536
+ name = "quinn-proto"
1537
+ version = "0.11.16"
1538
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1539
+ checksum = "2f4bfc015262b9df63c8845072ce59068853ff5872180c2ce2f13038b970e560"
1540
+ dependencies = [
1541
+ "bytes",
1542
+ "getrandom 0.4.3",
1543
+ "lru-slab",
1544
+ "rand 0.10.2",
1545
+ "rand_pcg",
1546
+ "ring",
1547
+ "rustc-hash",
1548
+ "rustls",
1549
+ "rustls-pki-types",
1550
+ "slab",
1551
+ "thiserror",
1552
+ "tinyvec",
1553
+ "tracing",
1554
+ "web-time",
1555
+ ]
1556
+
1557
+ [[package]]
1558
+ name = "quinn-udp"
1559
+ version = "0.5.15"
1560
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1561
+ checksum = "35a133f956daabe89a61a685c2649f13d82d5aa4bd5d12d1277e1072a21c0694"
1562
+ dependencies = [
1563
+ "cfg_aliases",
1564
+ "libc",
1565
+ "once_cell",
1566
+ "socket2",
1567
+ "tracing",
1568
+ "windows-sys 0.61.2",
1569
+ ]
1570
+
1571
+ [[package]]
1572
+ name = "quote"
1573
+ version = "1.0.46"
1574
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1575
+ checksum = "dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368"
1576
+ dependencies = [
1577
+ "proc-macro2",
1578
+ ]
1579
+
1580
+ [[package]]
1581
+ name = "r-efi"
1582
+ version = "5.3.0"
1583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1584
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1585
+
1586
+ [[package]]
1587
+ name = "r-efi"
1588
+ version = "6.0.0"
1589
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1590
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
1591
+
1592
+ [[package]]
1593
+ name = "rand"
1594
+ version = "0.8.7"
1595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1596
+ checksum = "22f6172bdec972074665ed81ed53b71da00bfc44b65a753cfde883ec4c702a1a"
1597
+ dependencies = [
1598
+ "libc",
1599
+ "rand_chacha 0.3.1",
1600
+ "rand_core 0.6.4",
1601
+ ]
1602
+
1603
+ [[package]]
1604
+ name = "rand"
1605
+ version = "0.9.5"
1606
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1607
+ checksum = "b9ef1d0d795eb7d84685bca4f72f3649f064e6641543d3a8c415898726a57b41"
1608
+ dependencies = [
1609
+ "rand_chacha 0.9.0",
1610
+ "rand_core 0.9.5",
1611
+ ]
1612
+
1613
+ [[package]]
1614
+ name = "rand"
1615
+ version = "0.10.2"
1616
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1617
+ checksum = "c7f5fa3a058cd35567ef9bfa5e75732bee0f9e4c55fa90477bef2dfcdbc4be80"
1618
+ dependencies = [
1619
+ "chacha20",
1620
+ "getrandom 0.4.3",
1621
+ "rand_core 0.10.1",
1622
+ ]
1623
+
1624
+ [[package]]
1625
+ name = "rand_chacha"
1626
+ version = "0.3.1"
1627
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1628
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
1629
+ dependencies = [
1630
+ "ppv-lite86",
1631
+ "rand_core 0.6.4",
1632
+ ]
1633
+
1634
+ [[package]]
1635
+ name = "rand_chacha"
1636
+ version = "0.9.0"
1637
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1638
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
1639
+ dependencies = [
1640
+ "ppv-lite86",
1641
+ "rand_core 0.9.5",
1642
+ ]
1643
+
1644
+ [[package]]
1645
+ name = "rand_core"
1646
+ version = "0.6.4"
1647
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1648
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1649
+ dependencies = [
1650
+ "getrandom 0.2.17",
1651
+ ]
1652
+
1653
+ [[package]]
1654
+ name = "rand_core"
1655
+ version = "0.9.5"
1656
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1657
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
1658
+ dependencies = [
1659
+ "getrandom 0.3.4",
1660
+ ]
1661
+
1662
+ [[package]]
1663
+ name = "rand_core"
1664
+ version = "0.10.1"
1665
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1666
+ checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69"
1667
+
1668
+ [[package]]
1669
+ name = "rand_pcg"
1670
+ version = "0.10.2"
1671
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1672
+ checksum = "caa0f4137e1c0a72f4c651489402276c8e8e1cf081f3b0ba156d2cbeef09e86a"
1673
+ dependencies = [
1674
+ "rand_core 0.10.1",
1675
+ ]
1676
+
1677
+ [[package]]
1678
+ name = "rand_xorshift"
1679
+ version = "0.4.0"
1680
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1681
+ checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
1682
+ dependencies = [
1683
+ "rand_core 0.9.5",
1684
+ ]
1685
+
1686
+ [[package]]
1687
+ name = "rayon"
1688
+ version = "1.12.0"
1689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1690
+ checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
1691
+ dependencies = [
1692
+ "either",
1693
+ "rayon-core",
1694
+ ]
1695
+
1696
+ [[package]]
1697
+ name = "rayon-core"
1698
+ version = "1.13.0"
1699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1700
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
1701
+ dependencies = [
1702
+ "crossbeam-deque",
1703
+ "crossbeam-utils",
1704
+ ]
1705
+
1706
+ [[package]]
1707
+ name = "regex"
1708
+ version = "1.13.1"
1709
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1710
+ checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d"
1711
+ dependencies = [
1712
+ "aho-corasick",
1713
+ "memchr",
1714
+ "regex-automata",
1715
+ "regex-syntax",
1716
+ ]
1717
+
1718
+ [[package]]
1719
+ name = "regex-automata"
1720
+ version = "0.4.16"
1721
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1722
+ checksum = "8fcfdb36bda0c880c5931cdc7a2bcdc8ba4556847b9d912bca70bc94708711ad"
1723
+ dependencies = [
1724
+ "aho-corasick",
1725
+ "memchr",
1726
+ "regex-syntax",
1727
+ ]
1728
+
1729
+ [[package]]
1730
+ name = "regex-syntax"
1731
+ version = "0.8.11"
1732
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1733
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
1734
+
1735
+ [[package]]
1736
+ name = "reqwest"
1737
+ version = "0.12.28"
1738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1739
+ checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
1740
+ dependencies = [
1741
+ "base64",
1742
+ "bytes",
1743
+ "futures-channel",
1744
+ "futures-core",
1745
+ "futures-util",
1746
+ "http",
1747
+ "http-body",
1748
+ "http-body-util",
1749
+ "hyper",
1750
+ "hyper-rustls",
1751
+ "hyper-util",
1752
+ "js-sys",
1753
+ "log",
1754
+ "percent-encoding",
1755
+ "pin-project-lite",
1756
+ "quinn",
1757
+ "rustls",
1758
+ "rustls-pki-types",
1759
+ "serde",
1760
+ "serde_json",
1761
+ "serde_urlencoded",
1762
+ "sync_wrapper",
1763
+ "tokio",
1764
+ "tokio-rustls",
1765
+ "tower",
1766
+ "tower-http",
1767
+ "tower-service",
1768
+ "url",
1769
+ "wasm-bindgen",
1770
+ "wasm-bindgen-futures",
1771
+ "web-sys",
1772
+ "webpki-roots 1.0.8",
1773
+ ]
1774
+
1775
+ [[package]]
1776
+ name = "rfc6979"
1777
+ version = "0.6.0"
1778
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1779
+ checksum = "b4a459cddafb3fe76b31fd8f1108007566c40301feb64dc7b54656eb7388172b"
1780
+ dependencies = [
1781
+ "crypto-bigint",
1782
+ "hmac",
1783
+ ]
1784
+
1785
+ [[package]]
1786
+ name = "ring"
1787
+ version = "0.17.14"
1788
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1789
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
1790
+ dependencies = [
1791
+ "cc",
1792
+ "cfg-if",
1793
+ "getrandom 0.2.17",
1794
+ "libc",
1795
+ "untrusted",
1796
+ "windows-sys 0.52.0",
1797
+ ]
1798
+
1799
+ [[package]]
1800
+ name = "rust_decimal"
1801
+ version = "1.43.0"
1802
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1803
+ checksum = "7653272e75dcac41dc199fbea6f5797633994fafd339943c06c9af16bf29cd3a"
1804
+ dependencies = [
1805
+ "arrayvec",
1806
+ "borsh",
1807
+ "bytes",
1808
+ "num-traits",
1809
+ "rand 0.8.7",
1810
+ "rand 0.9.5",
1811
+ "serde",
1812
+ "serde_json",
1813
+ "wasm-bindgen",
1814
+ ]
1815
+
1816
+ [[package]]
1817
+ name = "rustc-hash"
1818
+ version = "2.1.3"
1819
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1820
+ checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
1821
+
1822
+ [[package]]
1823
+ name = "rustix"
1824
+ version = "1.1.4"
1825
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1826
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
1827
+ dependencies = [
1828
+ "bitflags",
1829
+ "errno",
1830
+ "libc",
1831
+ "linux-raw-sys",
1832
+ "windows-sys 0.61.2",
1833
+ ]
1834
+
1835
+ [[package]]
1836
+ name = "rustls"
1837
+ version = "0.23.42"
1838
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1839
+ checksum = "3c54fcab019b409d04215d3a17cb438fd7fbf192ee61461f20f4fe18704bc138"
1840
+ dependencies = [
1841
+ "once_cell",
1842
+ "ring",
1843
+ "rustls-pki-types",
1844
+ "rustls-webpki",
1845
+ "subtle",
1846
+ "zeroize",
1847
+ ]
1848
+
1849
+ [[package]]
1850
+ name = "rustls-pki-types"
1851
+ version = "1.15.0"
1852
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1853
+ checksum = "764899a24af3980067ee14bc143654f297b22eaebfe3c7b6b211920a5a59b046"
1854
+ dependencies = [
1855
+ "web-time",
1856
+ "zeroize",
1857
+ ]
1858
+
1859
+ [[package]]
1860
+ name = "rustls-webpki"
1861
+ version = "0.103.13"
1862
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1863
+ checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
1864
+ dependencies = [
1865
+ "ring",
1866
+ "rustls-pki-types",
1867
+ "untrusted",
1868
+ ]
1869
+
1870
+ [[package]]
1871
+ name = "rustversion"
1872
+ version = "1.0.23"
1873
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1874
+ checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
1875
+
1876
+ [[package]]
1877
+ name = "rusty-fork"
1878
+ version = "0.3.1"
1879
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1880
+ checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2"
1881
+ dependencies = [
1882
+ "fnv",
1883
+ "quick-error",
1884
+ "tempfile",
1885
+ "wait-timeout",
1886
+ ]
1887
+
1888
+ [[package]]
1889
+ name = "ryu"
1890
+ version = "1.0.23"
1891
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1892
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
1893
+
1894
+ [[package]]
1895
+ name = "same-file"
1896
+ version = "1.0.6"
1897
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1898
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1899
+ dependencies = [
1900
+ "winapi-util",
1901
+ ]
1902
+
1903
+ [[package]]
1904
+ name = "schemars"
1905
+ version = "0.8.22"
1906
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1907
+ checksum = "3fbf2ae1b8bc8e02df939598064d22402220cd5bbcca1c76f7d6a310974d5615"
1908
+ dependencies = [
1909
+ "dyn-clone",
1910
+ "schemars_derive",
1911
+ "serde",
1912
+ "serde_json",
1913
+ ]
1914
+
1915
+ [[package]]
1916
+ name = "schemars_derive"
1917
+ version = "0.8.22"
1918
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1919
+ checksum = "32e265784ad618884abaea0600a9adf15393368d840e0222d101a072f3f7534d"
1920
+ dependencies = [
1921
+ "proc-macro2",
1922
+ "quote",
1923
+ "serde_derive_internals",
1924
+ "syn 2.0.119",
1925
+ ]
1926
+
1927
+ [[package]]
1928
+ name = "sec1"
1929
+ version = "0.8.1"
1930
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1931
+ checksum = "d56d437c2f19203ce5f7122e507831de96f3d2d4d3be5af44a0b0a09d8a80e4d"
1932
+ dependencies = [
1933
+ "base16ct",
1934
+ "ctutils",
1935
+ "der",
1936
+ "hybrid-array",
1937
+ "subtle",
1938
+ "zeroize",
1939
+ ]
1940
+
1941
+ [[package]]
1942
+ name = "semver"
1943
+ version = "1.0.28"
1944
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1945
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
1946
+
1947
+ [[package]]
1948
+ name = "serde"
1949
+ version = "1.0.229"
1950
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1951
+ checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
1952
+ dependencies = [
1953
+ "serde_core",
1954
+ "serde_derive",
1955
+ ]
1956
+
1957
+ [[package]]
1958
+ name = "serde_core"
1959
+ version = "1.0.229"
1960
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1961
+ checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
1962
+ dependencies = [
1963
+ "serde_derive",
1964
+ ]
1965
+
1966
+ [[package]]
1967
+ name = "serde_derive"
1968
+ version = "1.0.229"
1969
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1970
+ checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
1971
+ dependencies = [
1972
+ "proc-macro2",
1973
+ "quote",
1974
+ "syn 3.0.3",
1975
+ ]
1976
+
1977
+ [[package]]
1978
+ name = "serde_derive_internals"
1979
+ version = "0.29.1"
1980
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1981
+ checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711"
1982
+ dependencies = [
1983
+ "proc-macro2",
1984
+ "quote",
1985
+ "syn 2.0.119",
1986
+ ]
1987
+
1988
+ [[package]]
1989
+ name = "serde_json"
1990
+ version = "1.0.151"
1991
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1992
+ checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
1993
+ dependencies = [
1994
+ "itoa",
1995
+ "memchr",
1996
+ "serde",
1997
+ "serde_core",
1998
+ "zmij",
1999
+ ]
2000
+
2001
+ [[package]]
2002
+ name = "serde_urlencoded"
2003
+ version = "0.7.1"
2004
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2005
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
2006
+ dependencies = [
2007
+ "form_urlencoded",
2008
+ "itoa",
2009
+ "ryu",
2010
+ "serde",
2011
+ ]
2012
+
2013
+ [[package]]
2014
+ name = "serdect"
2015
+ version = "0.4.3"
2016
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2017
+ checksum = "66cf8fedced2fcf12406bcb34223dffb92eaf34908ede12fed414c82b7f00b3e"
2018
+ dependencies = [
2019
+ "base16ct",
2020
+ "serde",
2021
+ ]
2022
+
2023
+ [[package]]
2024
+ name = "sha1"
2025
+ version = "0.11.0"
2026
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2027
+ checksum = "aacc4cc499359472b4abe1bf11d0b12e688af9a805fa5e3016f9a386dc2d0214"
2028
+ dependencies = [
2029
+ "cfg-if",
2030
+ "cpufeatures",
2031
+ "digest",
2032
+ ]
2033
+
2034
+ [[package]]
2035
+ name = "sha2"
2036
+ version = "0.11.0"
2037
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2038
+ checksum = "446ba717509524cb3f22f17ecc096f10f4822d76ab5c0b9822c5f9c284e825f4"
2039
+ dependencies = [
2040
+ "cfg-if",
2041
+ "cpufeatures",
2042
+ "digest",
2043
+ ]
2044
+
2045
+ [[package]]
2046
+ name = "shlex"
2047
+ version = "2.0.1"
2048
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2049
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
2050
+
2051
+ [[package]]
2052
+ name = "signature"
2053
+ version = "3.0.0"
2054
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2055
+ checksum = "28d567dcbaf0049cb8ac2608a76cd95ff9e4412e1899d389ee400918ca7537f5"
2056
+ dependencies = [
2057
+ "digest",
2058
+ "rand_core 0.10.1",
2059
+ ]
2060
+
2061
+ [[package]]
2062
+ name = "simd-adler32"
2063
+ version = "0.3.10"
2064
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2065
+ checksum = "3a219298ac11a56ea9a6d2120044824d6f01aeb034955e7af7bc16858527deea"
2066
+
2067
+ [[package]]
2068
+ name = "slab"
2069
+ version = "0.4.12"
2070
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2071
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
2072
+
2073
+ [[package]]
2074
+ name = "smallvec"
2075
+ version = "1.15.2"
2076
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2077
+ checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
2078
+
2079
+ [[package]]
2080
+ name = "socket2"
2081
+ version = "0.6.5"
2082
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2083
+ checksum = "c3d1e2c7f27f8d4cb10542a02c49005dbd6e93095799d6f3be745fae9f8fedd4"
2084
+ dependencies = [
2085
+ "libc",
2086
+ "windows-sys 0.61.2",
2087
+ ]
2088
+
2089
+ [[package]]
2090
+ name = "spki"
2091
+ version = "0.8.0"
2092
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2093
+ checksum = "1d9efca8738c78ee9484207732f728b1ef517bbb1833d6fc0879ca898a522f6f"
2094
+ dependencies = [
2095
+ "base64ct",
2096
+ "der",
2097
+ ]
2098
+
2099
+ [[package]]
2100
+ name = "stable_deref_trait"
2101
+ version = "1.2.1"
2102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2103
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
2104
+
2105
+ [[package]]
2106
+ name = "statrs"
2107
+ version = "0.18.0"
2108
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2109
+ checksum = "2a3fe7c28c6512e766b0874335db33c94ad7b8f9054228ae1c2abd47ce7d335e"
2110
+ dependencies = [
2111
+ "approx",
2112
+ "num-traits",
2113
+ ]
2114
+
2115
+ [[package]]
2116
+ name = "strsim"
2117
+ version = "0.11.1"
2118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2119
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
2120
+
2121
+ [[package]]
2122
+ name = "subtle"
2123
+ version = "2.6.1"
2124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2125
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
2126
+
2127
+ [[package]]
2128
+ name = "syn"
2129
+ version = "2.0.119"
2130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2131
+ checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
2132
+ dependencies = [
2133
+ "proc-macro2",
2134
+ "quote",
2135
+ "unicode-ident",
2136
+ ]
2137
+
2138
+ [[package]]
2139
+ name = "syn"
2140
+ version = "3.0.3"
2141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2142
+ checksum = "53e9bae58849f64dfa4f5d5ae372c8341f7305f82a3868709269343628b659a3"
2143
+ dependencies = [
2144
+ "proc-macro2",
2145
+ "quote",
2146
+ "unicode-ident",
2147
+ ]
2148
+
2149
+ [[package]]
2150
+ name = "sync_wrapper"
2151
+ version = "1.0.2"
2152
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2153
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
2154
+ dependencies = [
2155
+ "futures-core",
2156
+ ]
2157
+
2158
+ [[package]]
2159
+ name = "synstructure"
2160
+ version = "0.13.2"
2161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2162
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
2163
+ dependencies = [
2164
+ "proc-macro2",
2165
+ "quote",
2166
+ "syn 2.0.119",
2167
+ ]
2168
+
2169
+ [[package]]
2170
+ name = "target-lexicon"
2171
+ version = "0.13.5"
2172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2173
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
2174
+
2175
+ [[package]]
2176
+ name = "tempfile"
2177
+ version = "3.27.0"
2178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2179
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
2180
+ dependencies = [
2181
+ "fastrand",
2182
+ "getrandom 0.4.3",
2183
+ "once_cell",
2184
+ "rustix",
2185
+ "windows-sys 0.61.2",
2186
+ ]
2187
+
2188
+ [[package]]
2189
+ name = "thiserror"
2190
+ version = "2.0.20"
2191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2192
+ checksum = "ec86235f5fcc2a73650310756d2ac5b138a5780bbbdfae3eeccec992c435ba4f"
2193
+ dependencies = [
2194
+ "thiserror-impl",
2195
+ ]
2196
+
2197
+ [[package]]
2198
+ name = "thiserror-impl"
2199
+ version = "2.0.20"
2200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2201
+ checksum = "bc04cd3e1236dd4a98afca4569f2deb3f120e5422a4023be2cb683f8486292af"
2202
+ dependencies = [
2203
+ "proc-macro2",
2204
+ "quote",
2205
+ "syn 3.0.3",
2206
+ ]
2207
+
2208
+ [[package]]
2209
+ name = "tinystr"
2210
+ version = "0.8.3"
2211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2212
+ checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
2213
+ dependencies = [
2214
+ "displaydoc",
2215
+ "zerovec",
2216
+ ]
2217
+
2218
+ [[package]]
2219
+ name = "tinytemplate"
2220
+ version = "1.2.1"
2221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2222
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
2223
+ dependencies = [
2224
+ "serde",
2225
+ "serde_json",
2226
+ ]
2227
+
2228
+ [[package]]
2229
+ name = "tinyvec"
2230
+ version = "1.12.0"
2231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2232
+ checksum = "bb4ebadaa0af04fab11ae01eb5f9fdb5f9c5b875506e210e71c07873528baa7f"
2233
+ dependencies = [
2234
+ "tinyvec_macros",
2235
+ ]
2236
+
2237
+ [[package]]
2238
+ name = "tinyvec_macros"
2239
+ version = "0.1.1"
2240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2241
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2242
+
2243
+ [[package]]
2244
+ name = "tokio"
2245
+ version = "1.53.0"
2246
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2247
+ checksum = "d988bcd52dbe076d3d46903332f58c912b87a2c49b1428419a5845154762ffee"
2248
+ dependencies = [
2249
+ "bytes",
2250
+ "libc",
2251
+ "mio",
2252
+ "pin-project-lite",
2253
+ "socket2",
2254
+ "tokio-macros",
2255
+ "windows-sys 0.61.2",
2256
+ ]
2257
+
2258
+ [[package]]
2259
+ name = "tokio-macros"
2260
+ version = "2.7.1"
2261
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2262
+ checksum = "6328af13490e73a9b4694030fafd93f8c8c6a9dede33e821c3fc63eddf8042ba"
2263
+ dependencies = [
2264
+ "proc-macro2",
2265
+ "quote",
2266
+ "syn 2.0.119",
2267
+ ]
2268
+
2269
+ [[package]]
2270
+ name = "tokio-rustls"
2271
+ version = "0.26.4"
2272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2273
+ checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
2274
+ dependencies = [
2275
+ "rustls",
2276
+ "tokio",
2277
+ ]
2278
+
2279
+ [[package]]
2280
+ name = "tokio-tungstenite"
2281
+ version = "0.30.0"
2282
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2283
+ checksum = "17a073bfed563fa236697a068031408a93cd9522e08abf9933ead3e73411bd71"
2284
+ dependencies = [
2285
+ "futures-util",
2286
+ "log",
2287
+ "rustls",
2288
+ "rustls-pki-types",
2289
+ "tokio",
2290
+ "tokio-rustls",
2291
+ "tungstenite",
2292
+ "webpki-roots 0.26.11",
2293
+ ]
2294
+
2295
+ [[package]]
2296
+ name = "toml_datetime"
2297
+ version = "1.1.1+spec-1.1.0"
2298
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2299
+ checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7"
2300
+ dependencies = [
2301
+ "serde_core",
2302
+ ]
2303
+
2304
+ [[package]]
2305
+ name = "toml_edit"
2306
+ version = "0.25.13+spec-1.1.0"
2307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2308
+ checksum = "6975367e4d2ef766d86af01ffad14b622fecc8d4357a998fbc4deb6e9bacaf9b"
2309
+ dependencies = [
2310
+ "indexmap",
2311
+ "toml_datetime",
2312
+ "toml_parser",
2313
+ "winnow",
2314
+ ]
2315
+
2316
+ [[package]]
2317
+ name = "toml_parser"
2318
+ version = "1.1.2+spec-1.1.0"
2319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2320
+ checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526"
2321
+ dependencies = [
2322
+ "winnow",
2323
+ ]
2324
+
2325
+ [[package]]
2326
+ name = "tower"
2327
+ version = "0.5.3"
2328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2329
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
2330
+ dependencies = [
2331
+ "futures-core",
2332
+ "futures-util",
2333
+ "pin-project-lite",
2334
+ "sync_wrapper",
2335
+ "tokio",
2336
+ "tower-layer",
2337
+ "tower-service",
2338
+ ]
2339
+
2340
+ [[package]]
2341
+ name = "tower-http"
2342
+ version = "0.6.11"
2343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2344
+ checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840"
2345
+ dependencies = [
2346
+ "bitflags",
2347
+ "bytes",
2348
+ "futures-util",
2349
+ "http",
2350
+ "http-body",
2351
+ "pin-project-lite",
2352
+ "tower",
2353
+ "tower-layer",
2354
+ "tower-service",
2355
+ "url",
2356
+ ]
2357
+
2358
+ [[package]]
2359
+ name = "tower-layer"
2360
+ version = "0.3.3"
2361
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2362
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
2363
+
2364
+ [[package]]
2365
+ name = "tower-service"
2366
+ version = "0.3.3"
2367
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2368
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
2369
+
2370
+ [[package]]
2371
+ name = "tracing"
2372
+ version = "0.1.44"
2373
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2374
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
2375
+ dependencies = [
2376
+ "pin-project-lite",
2377
+ "tracing-attributes",
2378
+ "tracing-core",
2379
+ ]
2380
+
2381
+ [[package]]
2382
+ name = "tracing-attributes"
2383
+ version = "0.1.31"
2384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2385
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
2386
+ dependencies = [
2387
+ "proc-macro2",
2388
+ "quote",
2389
+ "syn 2.0.119",
2390
+ ]
2391
+
2392
+ [[package]]
2393
+ name = "tracing-core"
2394
+ version = "0.1.36"
2395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2396
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
2397
+ dependencies = [
2398
+ "once_cell",
2399
+ ]
2400
+
2401
+ [[package]]
2402
+ name = "try-lock"
2403
+ version = "0.2.5"
2404
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2405
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
2406
+
2407
+ [[package]]
2408
+ name = "tungstenite"
2409
+ version = "0.30.0"
2410
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2411
+ checksum = "e48ac77174b19c110a50ab2128b24215ac9cb40e0e12e093fb602d175c569d22"
2412
+ dependencies = [
2413
+ "bytes",
2414
+ "data-encoding",
2415
+ "http",
2416
+ "httparse",
2417
+ "log",
2418
+ "rand 0.10.2",
2419
+ "rustls",
2420
+ "rustls-pki-types",
2421
+ "sha1",
2422
+ "thiserror",
2423
+ ]
2424
+
2425
+ [[package]]
2426
+ name = "typenum"
2427
+ version = "1.20.1"
2428
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2429
+ checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
2430
+
2431
+ [[package]]
2432
+ name = "unarray"
2433
+ version = "0.1.4"
2434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2435
+ checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
2436
+
2437
+ [[package]]
2438
+ name = "unicode-ident"
2439
+ version = "1.0.24"
2440
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2441
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
2442
+
2443
+ [[package]]
2444
+ name = "unicode-segmentation"
2445
+ version = "1.13.3"
2446
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2447
+ checksum = "c6f5d3c3b1bf09027a88a6bc961fc00497d651009560b5463668dc81b0fa87a8"
2448
+
2449
+ [[package]]
2450
+ name = "untrusted"
2451
+ version = "0.9.0"
2452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2453
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
2454
+
2455
+ [[package]]
2456
+ name = "url"
2457
+ version = "2.5.8"
2458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2459
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
2460
+ dependencies = [
2461
+ "form_urlencoded",
2462
+ "idna",
2463
+ "percent-encoding",
2464
+ "serde",
2465
+ ]
2466
+
2467
+ [[package]]
2468
+ name = "utf8_iter"
2469
+ version = "1.0.4"
2470
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2471
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
2472
+
2473
+ [[package]]
2474
+ name = "utf8parse"
2475
+ version = "0.2.2"
2476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2477
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
2478
+
2479
+ [[package]]
2480
+ name = "wait-timeout"
2481
+ version = "0.2.1"
2482
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2483
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
2484
+ dependencies = [
2485
+ "libc",
2486
+ ]
2487
+
2488
+ [[package]]
2489
+ name = "walkdir"
2490
+ version = "2.5.0"
2491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2492
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
2493
+ dependencies = [
2494
+ "same-file",
2495
+ "winapi-util",
2496
+ ]
2497
+
2498
+ [[package]]
2499
+ name = "want"
2500
+ version = "0.3.1"
2501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2502
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
2503
+ dependencies = [
2504
+ "try-lock",
2505
+ ]
2506
+
2507
+ [[package]]
2508
+ name = "wasi"
2509
+ version = "0.11.1+wasi-snapshot-preview1"
2510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2511
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
2512
+
2513
+ [[package]]
2514
+ name = "wasip2"
2515
+ version = "1.0.4+wasi-0.2.12"
2516
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2517
+ checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
2518
+ dependencies = [
2519
+ "wit-bindgen",
2520
+ ]
2521
+
2522
+ [[package]]
2523
+ name = "wasm-bindgen"
2524
+ version = "0.2.126"
2525
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2526
+ checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4"
2527
+ dependencies = [
2528
+ "cfg-if",
2529
+ "once_cell",
2530
+ "rustversion",
2531
+ "serde",
2532
+ "wasm-bindgen-macro",
2533
+ "wasm-bindgen-shared",
2534
+ ]
2535
+
2536
+ [[package]]
2537
+ name = "wasm-bindgen-futures"
2538
+ version = "0.4.76"
2539
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2540
+ checksum = "c62df1340f32221cb9c54d6a27b030e3dba64361d4a95bed55f9aacb44da291d"
2541
+ dependencies = [
2542
+ "js-sys",
2543
+ "wasm-bindgen",
2544
+ ]
2545
+
2546
+ [[package]]
2547
+ name = "wasm-bindgen-macro"
2548
+ version = "0.2.126"
2549
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2550
+ checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1"
2551
+ dependencies = [
2552
+ "quote",
2553
+ "wasm-bindgen-macro-support",
2554
+ ]
2555
+
2556
+ [[package]]
2557
+ name = "wasm-bindgen-macro-support"
2558
+ version = "0.2.126"
2559
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2560
+ checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e"
2561
+ dependencies = [
2562
+ "bumpalo",
2563
+ "proc-macro2",
2564
+ "quote",
2565
+ "syn 2.0.119",
2566
+ "wasm-bindgen-shared",
2567
+ ]
2568
+
2569
+ [[package]]
2570
+ name = "wasm-bindgen-shared"
2571
+ version = "0.2.126"
2572
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2573
+ checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24"
2574
+ dependencies = [
2575
+ "unicode-ident",
2576
+ ]
2577
+
2578
+ [[package]]
2579
+ name = "web-sys"
2580
+ version = "0.3.103"
2581
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2582
+ checksum = "8622dcb61c0bcc9fffa6938bed81210af2da9a7e4a1a834b2e37a59b6dfb6141"
2583
+ dependencies = [
2584
+ "js-sys",
2585
+ "wasm-bindgen",
2586
+ ]
2587
+
2588
+ [[package]]
2589
+ name = "web-time"
2590
+ version = "1.1.0"
2591
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2592
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
2593
+ dependencies = [
2594
+ "js-sys",
2595
+ "wasm-bindgen",
2596
+ ]
2597
+
2598
+ [[package]]
2599
+ name = "webpki-roots"
2600
+ version = "0.26.11"
2601
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2602
+ checksum = "521bc38abb08001b01866da9f51eb7c5d647a19260e00054a8c7fd5f9e57f7a9"
2603
+ dependencies = [
2604
+ "webpki-roots 1.0.8",
2605
+ ]
2606
+
2607
+ [[package]]
2608
+ name = "webpki-roots"
2609
+ version = "1.0.8"
2610
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2611
+ checksum = "bf85cb06032201fa7c6f829d7db5a7e5aa45bcc0655327713065f6f0576731bf"
2612
+ dependencies = [
2613
+ "rustls-pki-types",
2614
+ ]
2615
+
2616
+ [[package]]
2617
+ name = "wickra-backtest"
2618
+ version = "0.1.4"
2619
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2620
+ checksum = "7fa9f0c071d1466cac34f23ea0ac20ecbe5df3fc744a094ea49924735623e1c8"
2621
+ dependencies = [
2622
+ "wickra-backtest-core",
2623
+ "wickra-backtest-data",
2624
+ ]
2625
+
2626
+ [[package]]
2627
+ name = "wickra-backtest-core"
2628
+ version = "0.1.4"
2629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2630
+ checksum = "a92723219f4eb739fc69871fd1c5d2958b33cdf3aeb6b4193826ef981d44ac65"
2631
+ dependencies = [
2632
+ "schemars",
2633
+ "serde",
2634
+ "serde_json",
2635
+ "thiserror",
2636
+ "wickra-core",
2637
+ ]
2638
+
2639
+ [[package]]
2640
+ name = "wickra-backtest-data"
2641
+ version = "0.1.4"
2642
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2643
+ checksum = "a2ddd1a0cc11393db45a7536c3871abb76b6c91f0ff28665cecc972b0c5a811a"
2644
+ dependencies = [
2645
+ "serde_json",
2646
+ "wickra-backtest-core",
2647
+ "wickra-core",
2648
+ ]
2649
+
2650
+ [[package]]
2651
+ name = "wickra-core"
2652
+ version = "1.0.4"
2653
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2654
+ checksum = "3801b8e584405b19c5db178a8aae4587250a27daf26397ce3bde9e4c0badb115"
2655
+ dependencies = [
2656
+ "rayon",
2657
+ "thiserror",
2658
+ ]
2659
+
2660
+ [[package]]
2661
+ name = "wickra-exchange"
2662
+ version = "0.1.3"
2663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2664
+ checksum = "d3e3dcd2e47b9109238daa57973499107fa63ca284b08dbeedda89473c8e9496"
2665
+ dependencies = [
2666
+ "flate2",
2667
+ "futures-util",
2668
+ "reqwest",
2669
+ "tokio",
2670
+ "tokio-tungstenite",
2671
+ "wickra-exchange-core",
2672
+ ]
2673
+
2674
+ [[package]]
2675
+ name = "wickra-exchange-core"
2676
+ version = "0.1.3"
2677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2678
+ checksum = "7da1d108c609715a7e97102ee4600d46b467012e85591f91ca4564dda9a4e81d"
2679
+ dependencies = [
2680
+ "base64",
2681
+ "hex",
2682
+ "hmac",
2683
+ "p256",
2684
+ "rust_decimal",
2685
+ "serde",
2686
+ "serde_json",
2687
+ "sha2",
2688
+ "thiserror",
2689
+ "tracing",
2690
+ "wickra-core",
2691
+ "zeroize",
2692
+ ]
2693
+
2694
+ [[package]]
2695
+ name = "wickra-impact"
2696
+ version = "0.1.0"
2697
+ dependencies = [
2698
+ "clap",
2699
+ "serde",
2700
+ "serde_json",
2701
+ "wickra-impact-core",
2702
+ ]
2703
+
2704
+ [[package]]
2705
+ name = "wickra-impact-c"
2706
+ version = "0.1.0"
2707
+ dependencies = [
2708
+ "serde_json",
2709
+ "wickra-impact-core",
2710
+ ]
2711
+
2712
+ [[package]]
2713
+ name = "wickra-impact-core"
2714
+ version = "0.1.0"
2715
+ dependencies = [
2716
+ "proptest",
2717
+ "rayon",
2718
+ "serde",
2719
+ "serde_json",
2720
+ "thiserror",
2721
+ "wickra-backtest",
2722
+ "wickra-exchange",
2723
+ ]
2724
+
2725
+ [[package]]
2726
+ name = "wickra-impact-node"
2727
+ version = "0.1.0"
2728
+ dependencies = [
2729
+ "napi",
2730
+ "napi-build",
2731
+ "napi-derive",
2732
+ "wickra-impact-core",
2733
+ ]
2734
+
2735
+ [[package]]
2736
+ name = "wickra-impact-python"
2737
+ version = "0.1.0"
2738
+ dependencies = [
2739
+ "pyo3",
2740
+ "wickra-impact-core",
2741
+ ]
2742
+
2743
+ [[package]]
2744
+ name = "wickra-impact-wasm"
2745
+ version = "0.1.0"
2746
+ dependencies = [
2747
+ "wasm-bindgen",
2748
+ "wickra-impact-core",
2749
+ ]
2750
+
2751
+ [[package]]
2752
+ name = "winapi-util"
2753
+ version = "0.1.11"
2754
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2755
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
2756
+ dependencies = [
2757
+ "windows-sys 0.61.2",
2758
+ ]
2759
+
2760
+ [[package]]
2761
+ name = "windows-link"
2762
+ version = "0.2.1"
2763
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2764
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
2765
+
2766
+ [[package]]
2767
+ name = "windows-sys"
2768
+ version = "0.52.0"
2769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2770
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
2771
+ dependencies = [
2772
+ "windows-targets",
2773
+ ]
2774
+
2775
+ [[package]]
2776
+ name = "windows-sys"
2777
+ version = "0.61.2"
2778
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2779
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
2780
+ dependencies = [
2781
+ "windows-link",
2782
+ ]
2783
+
2784
+ [[package]]
2785
+ name = "windows-targets"
2786
+ version = "0.52.6"
2787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2788
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
2789
+ dependencies = [
2790
+ "windows_aarch64_gnullvm",
2791
+ "windows_aarch64_msvc",
2792
+ "windows_i686_gnu",
2793
+ "windows_i686_gnullvm",
2794
+ "windows_i686_msvc",
2795
+ "windows_x86_64_gnu",
2796
+ "windows_x86_64_gnullvm",
2797
+ "windows_x86_64_msvc",
2798
+ ]
2799
+
2800
+ [[package]]
2801
+ name = "windows_aarch64_gnullvm"
2802
+ version = "0.52.6"
2803
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2804
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
2805
+
2806
+ [[package]]
2807
+ name = "windows_aarch64_msvc"
2808
+ version = "0.52.6"
2809
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2810
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
2811
+
2812
+ [[package]]
2813
+ name = "windows_i686_gnu"
2814
+ version = "0.52.6"
2815
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2816
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
2817
+
2818
+ [[package]]
2819
+ name = "windows_i686_gnullvm"
2820
+ version = "0.52.6"
2821
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2822
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
2823
+
2824
+ [[package]]
2825
+ name = "windows_i686_msvc"
2826
+ version = "0.52.6"
2827
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2828
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
2829
+
2830
+ [[package]]
2831
+ name = "windows_x86_64_gnu"
2832
+ version = "0.52.6"
2833
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2834
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
2835
+
2836
+ [[package]]
2837
+ name = "windows_x86_64_gnullvm"
2838
+ version = "0.52.6"
2839
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2840
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
2841
+
2842
+ [[package]]
2843
+ name = "windows_x86_64_msvc"
2844
+ version = "0.52.6"
2845
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2846
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
2847
+
2848
+ [[package]]
2849
+ name = "winnow"
2850
+ version = "1.0.4"
2851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2852
+ checksum = "23b97319f7b8343df12cc98938e5c3eb436064524c8d2b4e30a1d3a36eecdf81"
2853
+ dependencies = [
2854
+ "memchr",
2855
+ ]
2856
+
2857
+ [[package]]
2858
+ name = "wit-bindgen"
2859
+ version = "0.57.1"
2860
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2861
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
2862
+
2863
+ [[package]]
2864
+ name = "wnaf"
2865
+ version = "0.14.1"
2866
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2867
+ checksum = "795ca18b3fdb5e62bf982199278341ddcf7ebf7d32e25e212ad05d496e95f6fa"
2868
+ dependencies = [
2869
+ "ff",
2870
+ "group",
2871
+ "hybrid-array",
2872
+ "primefield",
2873
+ ]
2874
+
2875
+ [[package]]
2876
+ name = "writeable"
2877
+ version = "0.6.3"
2878
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2879
+ checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
2880
+
2881
+ [[package]]
2882
+ name = "yoke"
2883
+ version = "0.8.3"
2884
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2885
+ checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5"
2886
+ dependencies = [
2887
+ "stable_deref_trait",
2888
+ "yoke-derive",
2889
+ "zerofrom",
2890
+ ]
2891
+
2892
+ [[package]]
2893
+ name = "yoke-derive"
2894
+ version = "0.8.2"
2895
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2896
+ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
2897
+ dependencies = [
2898
+ "proc-macro2",
2899
+ "quote",
2900
+ "syn 2.0.119",
2901
+ "synstructure",
2902
+ ]
2903
+
2904
+ [[package]]
2905
+ name = "zerocopy"
2906
+ version = "0.8.54"
2907
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2908
+ checksum = "b7cbbc0a705a0fd05cc3676525980d2bf5a9bc4adac6d6475209a7887cf59d19"
2909
+ dependencies = [
2910
+ "zerocopy-derive",
2911
+ ]
2912
+
2913
+ [[package]]
2914
+ name = "zerocopy-derive"
2915
+ version = "0.8.54"
2916
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2917
+ checksum = "e2e817b7b52d0c7358d3246da9d69935ebb18116b2b102b4230dac079b4862f5"
2918
+ dependencies = [
2919
+ "proc-macro2",
2920
+ "quote",
2921
+ "syn 2.0.119",
2922
+ ]
2923
+
2924
+ [[package]]
2925
+ name = "zerofrom"
2926
+ version = "0.1.8"
2927
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2928
+ checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
2929
+ dependencies = [
2930
+ "zerofrom-derive",
2931
+ ]
2932
+
2933
+ [[package]]
2934
+ name = "zerofrom-derive"
2935
+ version = "0.1.7"
2936
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2937
+ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
2938
+ dependencies = [
2939
+ "proc-macro2",
2940
+ "quote",
2941
+ "syn 2.0.119",
2942
+ "synstructure",
2943
+ ]
2944
+
2945
+ [[package]]
2946
+ name = "zeroize"
2947
+ version = "1.9.0"
2948
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2949
+ checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e"
2950
+ dependencies = [
2951
+ "zeroize_derive",
2952
+ ]
2953
+
2954
+ [[package]]
2955
+ name = "zeroize_derive"
2956
+ version = "1.5.0"
2957
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2958
+ checksum = "3c50655cbb0fe3fc43170059e702f1ce5e19b84cec58dc87b037a09935c2f328"
2959
+ dependencies = [
2960
+ "proc-macro2",
2961
+ "quote",
2962
+ "syn 2.0.119",
2963
+ ]
2964
+
2965
+ [[package]]
2966
+ name = "zerotrie"
2967
+ version = "0.2.4"
2968
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2969
+ checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
2970
+ dependencies = [
2971
+ "displaydoc",
2972
+ "yoke",
2973
+ "zerofrom",
2974
+ ]
2975
+
2976
+ [[package]]
2977
+ name = "zerovec"
2978
+ version = "0.11.6"
2979
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2980
+ checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
2981
+ dependencies = [
2982
+ "yoke",
2983
+ "zerofrom",
2984
+ "zerovec-derive",
2985
+ ]
2986
+
2987
+ [[package]]
2988
+ name = "zerovec-derive"
2989
+ version = "0.11.3"
2990
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2991
+ checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
2992
+ dependencies = [
2993
+ "proc-macro2",
2994
+ "quote",
2995
+ "syn 2.0.119",
2996
+ ]
2997
+
2998
+ [[package]]
2999
+ name = "zlib-rs"
3000
+ version = "0.6.7"
3001
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3002
+ checksum = "34b31d188d9d685a4f9c7b46d6e36631b07058d2cfe190267adce54dc230bf12"
3003
+
3004
+ [[package]]
3005
+ name = "zmij"
3006
+ version = "1.0.23"
3007
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3008
+ checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"