wickra-timemachine 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 (36) hide show
  1. wickra_timemachine-0.1.0/Cargo.lock +2066 -0
  2. wickra_timemachine-0.1.0/Cargo.toml +62 -0
  3. wickra_timemachine-0.1.0/PKG-INFO +88 -0
  4. wickra_timemachine-0.1.0/README.md +58 -0
  5. wickra_timemachine-0.1.0/bindings/python/Cargo.toml +22 -0
  6. wickra_timemachine-0.1.0/bindings/python/LICENSE-APACHE +201 -0
  7. wickra_timemachine-0.1.0/bindings/python/LICENSE-MIT +21 -0
  8. wickra_timemachine-0.1.0/bindings/python/README.md +58 -0
  9. wickra_timemachine-0.1.0/bindings/python/src/lib.rs +58 -0
  10. wickra_timemachine-0.1.0/bindings/python/tests/run_without_pytest.py +61 -0
  11. wickra_timemachine-0.1.0/bindings/python/tests/test_completeness.py +18 -0
  12. wickra_timemachine-0.1.0/bindings/python/tests/test_golden.py +61 -0
  13. wickra_timemachine-0.1.0/bindings/python/tests/test_smoke.py +62 -0
  14. wickra_timemachine-0.1.0/bindings/python/tests/test_streaming.py +58 -0
  15. wickra_timemachine-0.1.0/crates/timemachine-core/Cargo.toml +39 -0
  16. wickra_timemachine-0.1.0/crates/timemachine-core/LICENSE-APACHE +201 -0
  17. wickra_timemachine-0.1.0/crates/timemachine-core/LICENSE-MIT +21 -0
  18. wickra_timemachine-0.1.0/crates/timemachine-core/src/config.rs +38 -0
  19. wickra_timemachine-0.1.0/crates/timemachine-core/src/error.rs +22 -0
  20. wickra_timemachine-0.1.0/crates/timemachine-core/src/event.rs +97 -0
  21. wickra_timemachine-0.1.0/crates/timemachine-core/src/indicator_set.rs +270 -0
  22. wickra_timemachine-0.1.0/crates/timemachine-core/src/lib.rs +46 -0
  23. wickra_timemachine-0.1.0/crates/timemachine-core/src/seek.rs +106 -0
  24. wickra_timemachine-0.1.0/crates/timemachine-core/src/snapshot.rs +107 -0
  25. wickra_timemachine-0.1.0/crates/timemachine-core/src/spec.rs +143 -0
  26. wickra_timemachine-0.1.0/crates/timemachine-core/src/symbol_state.rs +360 -0
  27. wickra_timemachine-0.1.0/crates/timemachine-core/src/timemachine.rs +185 -0
  28. wickra_timemachine-0.1.0/crates/timemachine-core/tests/conformance.rs +87 -0
  29. wickra_timemachine-0.1.0/crates/timemachine-core/tests/golden.rs +51 -0
  30. wickra_timemachine-0.1.0/crates/timemachine-core/tests/proptest_invariants.proptest-regressions +7 -0
  31. wickra_timemachine-0.1.0/crates/timemachine-core/tests/proptest_invariants.rs +105 -0
  32. wickra_timemachine-0.1.0/crates/timemachine-core/tests/seek_eq_play.rs +45 -0
  33. wickra_timemachine-0.1.0/pyproject.toml +47 -0
  34. wickra_timemachine-0.1.0/python/wickra_timemachine/__init__.py +13 -0
  35. wickra_timemachine-0.1.0/python/wickra_timemachine/__init__.pyi +25 -0
  36. wickra_timemachine-0.1.0/python/wickra_timemachine/py.typed +0 -0
@@ -0,0 +1,2066 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "aho-corasick"
7
+ version = "1.1.4"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
10
+ dependencies = [
11
+ "memchr",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "anes"
16
+ version = "0.1.6"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
19
+
20
+ [[package]]
21
+ name = "anstream"
22
+ version = "1.0.0"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
25
+ dependencies = [
26
+ "anstyle",
27
+ "anstyle-parse",
28
+ "anstyle-query",
29
+ "anstyle-wincon",
30
+ "colorchoice",
31
+ "is_terminal_polyfill",
32
+ "utf8parse",
33
+ ]
34
+
35
+ [[package]]
36
+ name = "anstyle"
37
+ version = "1.0.14"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
40
+
41
+ [[package]]
42
+ name = "anstyle-parse"
43
+ version = "1.0.0"
44
+ source = "registry+https://github.com/rust-lang/crates.io-index"
45
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
46
+ dependencies = [
47
+ "utf8parse",
48
+ ]
49
+
50
+ [[package]]
51
+ name = "anstyle-query"
52
+ version = "1.1.5"
53
+ source = "registry+https://github.com/rust-lang/crates.io-index"
54
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
55
+ dependencies = [
56
+ "windows-sys",
57
+ ]
58
+
59
+ [[package]]
60
+ name = "anstyle-wincon"
61
+ version = "3.0.11"
62
+ source = "registry+https://github.com/rust-lang/crates.io-index"
63
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
64
+ dependencies = [
65
+ "anstyle",
66
+ "once_cell_polyfill",
67
+ "windows-sys",
68
+ ]
69
+
70
+ [[package]]
71
+ name = "anyhow"
72
+ version = "1.0.104"
73
+ source = "registry+https://github.com/rust-lang/crates.io-index"
74
+ checksum = "330a5ed07fa54e4702c9d6c4174f74427fc0ef6e214bbd677ae50a5099946470"
75
+
76
+ [[package]]
77
+ name = "approx"
78
+ version = "0.5.1"
79
+ source = "registry+https://github.com/rust-lang/crates.io-index"
80
+ checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6"
81
+ dependencies = [
82
+ "num-traits",
83
+ ]
84
+
85
+ [[package]]
86
+ name = "arrayvec"
87
+ version = "0.7.8"
88
+ source = "registry+https://github.com/rust-lang/crates.io-index"
89
+ checksum = "d3fb67a6e08acf24fdeccbac2cb6ac4305825bd1f117462e0e6f2f193345ad56"
90
+
91
+ [[package]]
92
+ name = "autocfg"
93
+ version = "1.5.1"
94
+ source = "registry+https://github.com/rust-lang/crates.io-index"
95
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
96
+
97
+ [[package]]
98
+ name = "base16ct"
99
+ version = "1.0.0"
100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
101
+ checksum = "fd307490d624467aa6f74b0eabb77633d1f758a7b25f12bceb0b22e08d9726f6"
102
+
103
+ [[package]]
104
+ name = "base64"
105
+ version = "0.22.1"
106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
107
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
108
+
109
+ [[package]]
110
+ name = "base64ct"
111
+ version = "1.8.3"
112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
113
+ checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
114
+
115
+ [[package]]
116
+ name = "bit-set"
117
+ version = "0.8.0"
118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
119
+ checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
120
+ dependencies = [
121
+ "bit-vec",
122
+ ]
123
+
124
+ [[package]]
125
+ name = "bit-vec"
126
+ version = "0.8.0"
127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
128
+ checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
129
+
130
+ [[package]]
131
+ name = "bitflags"
132
+ version = "2.13.1"
133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
134
+ checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
135
+
136
+ [[package]]
137
+ name = "block-buffer"
138
+ version = "0.12.1"
139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
140
+ checksum = "d2f6c7dbe95a6ed67ad9f18e57daf93a2f034c524b99fd2b76d18fdfeb6660aa"
141
+ dependencies = [
142
+ "hybrid-array",
143
+ ]
144
+
145
+ [[package]]
146
+ name = "borsh"
147
+ version = "1.8.0"
148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
149
+ checksum = "a88b7ea17d208c4193f2c1e6de3c35fe71f98c96982d5ced308bdcc749ff6e1f"
150
+ dependencies = [
151
+ "borsh-derive",
152
+ "bytes",
153
+ "cfg_aliases",
154
+ ]
155
+
156
+ [[package]]
157
+ name = "borsh-derive"
158
+ version = "1.8.0"
159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
160
+ checksum = "d8f347189c62a579b8cd5f80714efa178f52e461dc2e6d701d264f5ff22e566c"
161
+ dependencies = [
162
+ "once_cell",
163
+ "proc-macro-crate",
164
+ "proc-macro2",
165
+ "quote",
166
+ "syn 2.0.119",
167
+ ]
168
+
169
+ [[package]]
170
+ name = "bumpalo"
171
+ version = "3.20.3"
172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
173
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
174
+
175
+ [[package]]
176
+ name = "bytes"
177
+ version = "1.12.1"
178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
179
+ checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04"
180
+
181
+ [[package]]
182
+ name = "cast"
183
+ version = "0.3.0"
184
+ source = "registry+https://github.com/rust-lang/crates.io-index"
185
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
186
+
187
+ [[package]]
188
+ name = "cc"
189
+ version = "1.2.67"
190
+ source = "registry+https://github.com/rust-lang/crates.io-index"
191
+ checksum = "e17dd265a7d0f31ef544e1b20e03add05d3b45b491b633b10d67145d2acc1a38"
192
+ dependencies = [
193
+ "find-msvc-tools",
194
+ "shlex",
195
+ ]
196
+
197
+ [[package]]
198
+ name = "cfg-if"
199
+ version = "1.0.4"
200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
201
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
202
+
203
+ [[package]]
204
+ name = "cfg_aliases"
205
+ version = "0.2.2"
206
+ source = "registry+https://github.com/rust-lang/crates.io-index"
207
+ checksum = "f079e83a288787bcd14a6aea84cee5c87a67c5a3e660c30f557a3d24761b3527"
208
+
209
+ [[package]]
210
+ name = "ciborium"
211
+ version = "0.2.2"
212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
213
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
214
+ dependencies = [
215
+ "ciborium-io",
216
+ "ciborium-ll",
217
+ "serde",
218
+ ]
219
+
220
+ [[package]]
221
+ name = "ciborium-io"
222
+ version = "0.2.2"
223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
224
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
225
+
226
+ [[package]]
227
+ name = "ciborium-ll"
228
+ version = "0.2.2"
229
+ source = "registry+https://github.com/rust-lang/crates.io-index"
230
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
231
+ dependencies = [
232
+ "ciborium-io",
233
+ "half",
234
+ ]
235
+
236
+ [[package]]
237
+ name = "clap"
238
+ version = "4.6.6"
239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
240
+ checksum = "473c7e07f409a8d772161724aa8db6a765a2532a70f9667eeb7b49d3d02fbdca"
241
+ dependencies = [
242
+ "clap_builder",
243
+ "clap_derive",
244
+ ]
245
+
246
+ [[package]]
247
+ name = "clap_builder"
248
+ version = "4.6.6"
249
+ source = "registry+https://github.com/rust-lang/crates.io-index"
250
+ checksum = "7b48fea5a88e9ae728a2dcbedbfc0e730f7d60da42e1cb049a83c9fb8b789889"
251
+ dependencies = [
252
+ "anstream",
253
+ "anstyle",
254
+ "clap_lex",
255
+ "strsim",
256
+ ]
257
+
258
+ [[package]]
259
+ name = "clap_derive"
260
+ version = "4.6.4"
261
+ source = "registry+https://github.com/rust-lang/crates.io-index"
262
+ checksum = "d012d2b9d65aca7f18f4d9878a045bc17899bba951561ba5ec3c2ba1eed9a061"
263
+ dependencies = [
264
+ "heck",
265
+ "proc-macro2",
266
+ "quote",
267
+ "syn 3.0.3",
268
+ ]
269
+
270
+ [[package]]
271
+ name = "clap_lex"
272
+ version = "1.1.0"
273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
274
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
275
+
276
+ [[package]]
277
+ name = "cmov"
278
+ version = "0.5.4"
279
+ source = "registry+https://github.com/rust-lang/crates.io-index"
280
+ checksum = "0c9ea0ac24bc397ab3c98583a3c9ba74fa56b09a4449bbe172b9b1ddb016027a"
281
+
282
+ [[package]]
283
+ name = "codspeed"
284
+ version = "5.0.1"
285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
286
+ checksum = "7083f253260bcb4aaa3b4aa4c52973703dabc1a85c2f193997e2689aafa8a919"
287
+ dependencies = [
288
+ "anyhow",
289
+ "cc",
290
+ "colored",
291
+ "getrandom 0.4.3",
292
+ "glob",
293
+ "libc",
294
+ "nix",
295
+ "serde",
296
+ "serde_json",
297
+ "statrs",
298
+ ]
299
+
300
+ [[package]]
301
+ name = "codspeed-criterion-compat"
302
+ version = "5.0.1"
303
+ source = "registry+https://github.com/rust-lang/crates.io-index"
304
+ checksum = "d9f24251445188c69d50f10179d795424bd71b533b7e3f84fc03f26893b01af0"
305
+ dependencies = [
306
+ "clap",
307
+ "codspeed",
308
+ "codspeed-criterion-compat-walltime",
309
+ "colored",
310
+ "regex",
311
+ ]
312
+
313
+ [[package]]
314
+ name = "codspeed-criterion-compat-walltime"
315
+ version = "5.0.1"
316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
317
+ checksum = "5c38205d56e2cb4fe04b708de7f9653a3f1b89edbe3a20b28f21e9e525e9e061"
318
+ dependencies = [
319
+ "anes",
320
+ "cast",
321
+ "ciborium",
322
+ "clap",
323
+ "codspeed",
324
+ "criterion-plot",
325
+ "is-terminal",
326
+ "itertools",
327
+ "num-traits",
328
+ "once_cell",
329
+ "oorandom",
330
+ "plotters",
331
+ "rayon",
332
+ "regex",
333
+ "serde",
334
+ "serde_derive",
335
+ "serde_json",
336
+ "tinytemplate",
337
+ "walkdir",
338
+ ]
339
+
340
+ [[package]]
341
+ name = "colorchoice"
342
+ version = "1.0.5"
343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
344
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
345
+
346
+ [[package]]
347
+ name = "colored"
348
+ version = "3.1.1"
349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
350
+ checksum = "faf9468729b8cbcea668e36183cb69d317348c2e08e994829fb56ebfdfbaac34"
351
+ dependencies = [
352
+ "windows-sys",
353
+ ]
354
+
355
+ [[package]]
356
+ name = "const-oid"
357
+ version = "0.10.2"
358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
359
+ checksum = "a6ef517f0926dd24a1582492c791b6a4818a4d94e789a334894aa15b0d12f55c"
360
+
361
+ [[package]]
362
+ name = "convert_case"
363
+ version = "0.11.0"
364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
365
+ checksum = "affbf0190ed2caf063e3def54ff444b449371d55c58e513a95ab98eca50adb49"
366
+ dependencies = [
367
+ "unicode-segmentation",
368
+ ]
369
+
370
+ [[package]]
371
+ name = "cpubits"
372
+ version = "0.1.1"
373
+ source = "registry+https://github.com/rust-lang/crates.io-index"
374
+ checksum = "15b85f9c39137c3a891689859392b1bd49812121d0d61c9caf00d46ed5ce06ae"
375
+
376
+ [[package]]
377
+ name = "cpufeatures"
378
+ version = "0.3.0"
379
+ source = "registry+https://github.com/rust-lang/crates.io-index"
380
+ checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
381
+ dependencies = [
382
+ "libc",
383
+ ]
384
+
385
+ [[package]]
386
+ name = "criterion-plot"
387
+ version = "0.5.0"
388
+ source = "registry+https://github.com/rust-lang/crates.io-index"
389
+ checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
390
+ dependencies = [
391
+ "cast",
392
+ "itertools",
393
+ ]
394
+
395
+ [[package]]
396
+ name = "crossbeam-deque"
397
+ version = "0.8.7"
398
+ source = "registry+https://github.com/rust-lang/crates.io-index"
399
+ checksum = "5181e0de7b61eb03a81e347d6dd8797bae9da5146707b51077e2d71a54ec0ceb"
400
+ dependencies = [
401
+ "crossbeam-epoch",
402
+ "crossbeam-utils",
403
+ ]
404
+
405
+ [[package]]
406
+ name = "crossbeam-epoch"
407
+ version = "0.9.20"
408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
409
+ checksum = "2d6914041f254d6e9176c01941b21115dcfb7089e55135a35411081bd106ef3f"
410
+ dependencies = [
411
+ "crossbeam-utils",
412
+ ]
413
+
414
+ [[package]]
415
+ name = "crossbeam-utils"
416
+ version = "0.8.22"
417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
418
+ checksum = "61803da095bee82a81bb1a452ecc25d3b2f1416d1897eb86430c6159ef717c17"
419
+
420
+ [[package]]
421
+ name = "crunchy"
422
+ version = "0.2.4"
423
+ source = "registry+https://github.com/rust-lang/crates.io-index"
424
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
425
+
426
+ [[package]]
427
+ name = "crypto-bigint"
428
+ version = "0.7.5"
429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
430
+ checksum = "1a52aa3fcda4e6302a9f48734f234d35d4721b96f8fe07d073f07ce9df4f0271"
431
+ dependencies = [
432
+ "cpubits",
433
+ "ctutils",
434
+ "getrandom 0.4.3",
435
+ "hybrid-array",
436
+ "num-traits",
437
+ "rand_core 0.10.1",
438
+ "subtle",
439
+ "zeroize",
440
+ ]
441
+
442
+ [[package]]
443
+ name = "crypto-common"
444
+ version = "0.2.2"
445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
446
+ checksum = "ce6e4c961d6cd6c9a86db418387425e8bdeaf05b3c8bc1411e6dca4c252f1453"
447
+ dependencies = [
448
+ "getrandom 0.4.3",
449
+ "hybrid-array",
450
+ "rand_core 0.10.1",
451
+ ]
452
+
453
+ [[package]]
454
+ name = "ctor"
455
+ version = "1.0.9"
456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
457
+ checksum = "a394189d59f9befacce833f337f7b1eca5e9a91221bcdd4d28e0114d96e597b3"
458
+
459
+ [[package]]
460
+ name = "ctutils"
461
+ version = "0.4.2"
462
+ source = "registry+https://github.com/rust-lang/crates.io-index"
463
+ checksum = "7d5515a3834141de9eafb9717ad39eea8247b5674e6066c404e8c4b365d2a29e"
464
+ dependencies = [
465
+ "cmov",
466
+ "subtle",
467
+ ]
468
+
469
+ [[package]]
470
+ name = "der"
471
+ version = "0.8.1"
472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
473
+ checksum = "a69dedd701da44b0536442edf09c81a64b0ab97a7a4a5e3d1971f00027cbc63d"
474
+ dependencies = [
475
+ "const-oid",
476
+ "pem-rfc7468",
477
+ "zeroize",
478
+ ]
479
+
480
+ [[package]]
481
+ name = "digest"
482
+ version = "0.11.3"
483
+ source = "registry+https://github.com/rust-lang/crates.io-index"
484
+ checksum = "f1dd6dbb5841937940781866fa1281a1ff7bd3bf827091440879f9994983d5c2"
485
+ dependencies = [
486
+ "block-buffer",
487
+ "const-oid",
488
+ "crypto-common",
489
+ "ctutils",
490
+ ]
491
+
492
+ [[package]]
493
+ name = "dyn-clone"
494
+ version = "1.0.20"
495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
496
+ checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
497
+
498
+ [[package]]
499
+ name = "ecdsa"
500
+ version = "0.17.0"
501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
502
+ checksum = "c0681a4fc24c767085329728d8dfba959af91228aa4610cca4f8ce317ba46ae0"
503
+ dependencies = [
504
+ "der",
505
+ "digest",
506
+ "elliptic-curve",
507
+ "rfc6979",
508
+ "signature",
509
+ "spki",
510
+ "zeroize",
511
+ ]
512
+
513
+ [[package]]
514
+ name = "either"
515
+ version = "1.16.0"
516
+ source = "registry+https://github.com/rust-lang/crates.io-index"
517
+ checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
518
+
519
+ [[package]]
520
+ name = "elliptic-curve"
521
+ version = "0.14.1"
522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
523
+ checksum = "9d65aa39b3a5c1c9c1b745c9a019234bb7a21b77abcb4f4d266d706e2d577d65"
524
+ dependencies = [
525
+ "base16ct",
526
+ "crypto-bigint",
527
+ "crypto-common",
528
+ "digest",
529
+ "ff",
530
+ "group",
531
+ "hybrid-array",
532
+ "pem-rfc7468",
533
+ "pkcs8",
534
+ "rand_core 0.10.1",
535
+ "sec1",
536
+ "subtle",
537
+ "zeroize",
538
+ ]
539
+
540
+ [[package]]
541
+ name = "equivalent"
542
+ version = "1.0.2"
543
+ source = "registry+https://github.com/rust-lang/crates.io-index"
544
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
545
+
546
+ [[package]]
547
+ name = "errno"
548
+ version = "0.3.14"
549
+ source = "registry+https://github.com/rust-lang/crates.io-index"
550
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
551
+ dependencies = [
552
+ "libc",
553
+ "windows-sys",
554
+ ]
555
+
556
+ [[package]]
557
+ name = "fastrand"
558
+ version = "2.4.1"
559
+ source = "registry+https://github.com/rust-lang/crates.io-index"
560
+ checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
561
+
562
+ [[package]]
563
+ name = "ff"
564
+ version = "0.14.0"
565
+ source = "registry+https://github.com/rust-lang/crates.io-index"
566
+ checksum = "a1f686ab92a9fb0eaf188f6c6c87b89490baa6fdb0db4544ba4dc47f7942489f"
567
+ dependencies = [
568
+ "rand_core 0.10.1",
569
+ "subtle",
570
+ ]
571
+
572
+ [[package]]
573
+ name = "find-msvc-tools"
574
+ version = "0.1.9"
575
+ source = "registry+https://github.com/rust-lang/crates.io-index"
576
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
577
+
578
+ [[package]]
579
+ name = "fnv"
580
+ version = "1.0.7"
581
+ source = "registry+https://github.com/rust-lang/crates.io-index"
582
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
583
+
584
+ [[package]]
585
+ name = "futures"
586
+ version = "0.3.32"
587
+ source = "registry+https://github.com/rust-lang/crates.io-index"
588
+ checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
589
+ dependencies = [
590
+ "futures-channel",
591
+ "futures-core",
592
+ "futures-executor",
593
+ "futures-io",
594
+ "futures-sink",
595
+ "futures-task",
596
+ "futures-util",
597
+ ]
598
+
599
+ [[package]]
600
+ name = "futures-channel"
601
+ version = "0.3.32"
602
+ source = "registry+https://github.com/rust-lang/crates.io-index"
603
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
604
+ dependencies = [
605
+ "futures-core",
606
+ "futures-sink",
607
+ ]
608
+
609
+ [[package]]
610
+ name = "futures-core"
611
+ version = "0.3.32"
612
+ source = "registry+https://github.com/rust-lang/crates.io-index"
613
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
614
+
615
+ [[package]]
616
+ name = "futures-executor"
617
+ version = "0.3.32"
618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
619
+ checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
620
+ dependencies = [
621
+ "futures-core",
622
+ "futures-task",
623
+ "futures-util",
624
+ ]
625
+
626
+ [[package]]
627
+ name = "futures-io"
628
+ version = "0.3.32"
629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
630
+ checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
631
+
632
+ [[package]]
633
+ name = "futures-macro"
634
+ version = "0.3.32"
635
+ source = "registry+https://github.com/rust-lang/crates.io-index"
636
+ checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
637
+ dependencies = [
638
+ "proc-macro2",
639
+ "quote",
640
+ "syn 2.0.119",
641
+ ]
642
+
643
+ [[package]]
644
+ name = "futures-sink"
645
+ version = "0.3.32"
646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
647
+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
648
+
649
+ [[package]]
650
+ name = "futures-task"
651
+ version = "0.3.32"
652
+ source = "registry+https://github.com/rust-lang/crates.io-index"
653
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
654
+
655
+ [[package]]
656
+ name = "futures-util"
657
+ version = "0.3.32"
658
+ source = "registry+https://github.com/rust-lang/crates.io-index"
659
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
660
+ dependencies = [
661
+ "futures-channel",
662
+ "futures-core",
663
+ "futures-io",
664
+ "futures-macro",
665
+ "futures-sink",
666
+ "futures-task",
667
+ "memchr",
668
+ "pin-project-lite",
669
+ "slab",
670
+ ]
671
+
672
+ [[package]]
673
+ name = "getrandom"
674
+ version = "0.2.17"
675
+ source = "registry+https://github.com/rust-lang/crates.io-index"
676
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
677
+ dependencies = [
678
+ "cfg-if",
679
+ "js-sys",
680
+ "libc",
681
+ "wasi",
682
+ "wasm-bindgen",
683
+ ]
684
+
685
+ [[package]]
686
+ name = "getrandom"
687
+ version = "0.3.4"
688
+ source = "registry+https://github.com/rust-lang/crates.io-index"
689
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
690
+ dependencies = [
691
+ "cfg-if",
692
+ "js-sys",
693
+ "libc",
694
+ "r-efi 5.3.0",
695
+ "wasip2",
696
+ "wasm-bindgen",
697
+ ]
698
+
699
+ [[package]]
700
+ name = "getrandom"
701
+ version = "0.4.3"
702
+ source = "registry+https://github.com/rust-lang/crates.io-index"
703
+ checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
704
+ dependencies = [
705
+ "cfg-if",
706
+ "js-sys",
707
+ "libc",
708
+ "r-efi 6.0.0",
709
+ "rand_core 0.10.1",
710
+ "wasm-bindgen",
711
+ ]
712
+
713
+ [[package]]
714
+ name = "glob"
715
+ version = "0.3.4"
716
+ source = "registry+https://github.com/rust-lang/crates.io-index"
717
+ checksum = "e4eba85ea1d0a966a983acd07deee566e67395d2d96b6fb39e62b5a833f1eb0b"
718
+
719
+ [[package]]
720
+ name = "group"
721
+ version = "0.14.0"
722
+ source = "registry+https://github.com/rust-lang/crates.io-index"
723
+ checksum = "7fd1a1c7a5206c5b7a3f5a0d7ccd3ff85d0c8f5133d62a02680255b0004af5f4"
724
+ dependencies = [
725
+ "ff",
726
+ "rand_core 0.10.1",
727
+ "subtle",
728
+ ]
729
+
730
+ [[package]]
731
+ name = "half"
732
+ version = "2.7.1"
733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
734
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
735
+ dependencies = [
736
+ "cfg-if",
737
+ "crunchy",
738
+ "zerocopy",
739
+ ]
740
+
741
+ [[package]]
742
+ name = "hashbrown"
743
+ version = "0.17.1"
744
+ source = "registry+https://github.com/rust-lang/crates.io-index"
745
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
746
+
747
+ [[package]]
748
+ name = "heck"
749
+ version = "0.5.0"
750
+ source = "registry+https://github.com/rust-lang/crates.io-index"
751
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
752
+
753
+ [[package]]
754
+ name = "hermit-abi"
755
+ version = "0.5.3"
756
+ source = "registry+https://github.com/rust-lang/crates.io-index"
757
+ checksum = "e17592d60ebacc7d5e169f4663c5f84f9161cc90328abcfe8456f41e4dfcb284"
758
+
759
+ [[package]]
760
+ name = "hex"
761
+ version = "0.4.3"
762
+ source = "registry+https://github.com/rust-lang/crates.io-index"
763
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
764
+
765
+ [[package]]
766
+ name = "hmac"
767
+ version = "0.13.0"
768
+ source = "registry+https://github.com/rust-lang/crates.io-index"
769
+ checksum = "6303bc9732ae41b04cb554b844a762b4115a61bfaa81e3e83050991eeb56863f"
770
+ dependencies = [
771
+ "digest",
772
+ ]
773
+
774
+ [[package]]
775
+ name = "hybrid-array"
776
+ version = "0.4.13"
777
+ source = "registry+https://github.com/rust-lang/crates.io-index"
778
+ checksum = "818356c5132c1fede50f837ca96afbe78ff42413047f4abb886217845e1b6c8c"
779
+ dependencies = [
780
+ "subtle",
781
+ "typenum",
782
+ "zeroize",
783
+ ]
784
+
785
+ [[package]]
786
+ name = "indexmap"
787
+ version = "2.14.0"
788
+ source = "registry+https://github.com/rust-lang/crates.io-index"
789
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
790
+ dependencies = [
791
+ "equivalent",
792
+ "hashbrown",
793
+ ]
794
+
795
+ [[package]]
796
+ name = "is-terminal"
797
+ version = "0.4.17"
798
+ source = "registry+https://github.com/rust-lang/crates.io-index"
799
+ checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
800
+ dependencies = [
801
+ "hermit-abi",
802
+ "libc",
803
+ "windows-sys",
804
+ ]
805
+
806
+ [[package]]
807
+ name = "is_terminal_polyfill"
808
+ version = "1.70.2"
809
+ source = "registry+https://github.com/rust-lang/crates.io-index"
810
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
811
+
812
+ [[package]]
813
+ name = "itertools"
814
+ version = "0.10.5"
815
+ source = "registry+https://github.com/rust-lang/crates.io-index"
816
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
817
+ dependencies = [
818
+ "either",
819
+ ]
820
+
821
+ [[package]]
822
+ name = "itoa"
823
+ version = "1.0.18"
824
+ source = "registry+https://github.com/rust-lang/crates.io-index"
825
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
826
+
827
+ [[package]]
828
+ name = "js-sys"
829
+ version = "0.3.103"
830
+ source = "registry+https://github.com/rust-lang/crates.io-index"
831
+ checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102"
832
+ dependencies = [
833
+ "cfg-if",
834
+ "futures-util",
835
+ "wasm-bindgen",
836
+ ]
837
+
838
+ [[package]]
839
+ name = "libc"
840
+ version = "0.2.186"
841
+ source = "registry+https://github.com/rust-lang/crates.io-index"
842
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
843
+
844
+ [[package]]
845
+ name = "libloading"
846
+ version = "0.9.0"
847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
848
+ checksum = "754ca22de805bb5744484a5b151a9e1a8e837d5dc232c2d7d8c2e3492edc8b60"
849
+ dependencies = [
850
+ "cfg-if",
851
+ "windows-link",
852
+ ]
853
+
854
+ [[package]]
855
+ name = "linux-raw-sys"
856
+ version = "0.12.1"
857
+ source = "registry+https://github.com/rust-lang/crates.io-index"
858
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
859
+
860
+ [[package]]
861
+ name = "memchr"
862
+ version = "2.8.3"
863
+ source = "registry+https://github.com/rust-lang/crates.io-index"
864
+ checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
865
+
866
+ [[package]]
867
+ name = "napi"
868
+ version = "3.12.2"
869
+ source = "registry+https://github.com/rust-lang/crates.io-index"
870
+ checksum = "58c5f4d5375213fdb7be2655e152386e82f026f9a5ba36a75556e11359aafe09"
871
+ dependencies = [
872
+ "bitflags",
873
+ "ctor",
874
+ "futures",
875
+ "libc",
876
+ "napi-build",
877
+ "napi-sys",
878
+ "nohash-hasher",
879
+ "rustc-hash",
880
+ ]
881
+
882
+ [[package]]
883
+ name = "napi-build"
884
+ version = "2.4.2"
885
+ source = "registry+https://github.com/rust-lang/crates.io-index"
886
+ checksum = "860e7c40864f95cfb83cde99f9ebadd88ef3d9bdccd7dd2cee0cc96a2dd4ffa7"
887
+
888
+ [[package]]
889
+ name = "napi-derive"
890
+ version = "3.6.3"
891
+ source = "registry+https://github.com/rust-lang/crates.io-index"
892
+ checksum = "0fa55ea69990c90b888e9e77044410e304ce7f35de599dc6d0b5c1923d2e59af"
893
+ dependencies = [
894
+ "convert_case",
895
+ "ctor",
896
+ "napi-derive-backend",
897
+ "proc-macro2",
898
+ "quote",
899
+ "syn 2.0.119",
900
+ ]
901
+
902
+ [[package]]
903
+ name = "napi-derive-backend"
904
+ version = "6.1.2"
905
+ source = "registry+https://github.com/rust-lang/crates.io-index"
906
+ checksum = "df4056ac7c18e4438ccf0edaed4340ca0d269278c8ec19284f7b23cb039fd0ae"
907
+ dependencies = [
908
+ "convert_case",
909
+ "proc-macro2",
910
+ "quote",
911
+ "semver",
912
+ "syn 2.0.119",
913
+ ]
914
+
915
+ [[package]]
916
+ name = "napi-sys"
917
+ version = "3.3.0"
918
+ source = "registry+https://github.com/rust-lang/crates.io-index"
919
+ checksum = "85fbf1fa9f1babfe396d74bbbf52b3643770243e8f5b0b46715d4caf7f0dfc9a"
920
+ dependencies = [
921
+ "libloading",
922
+ ]
923
+
924
+ [[package]]
925
+ name = "nix"
926
+ version = "0.31.3"
927
+ source = "registry+https://github.com/rust-lang/crates.io-index"
928
+ checksum = "cf20d2fde8ff38632c426f1165ed7436270b44f199fc55284c38276f9db47c3d"
929
+ dependencies = [
930
+ "bitflags",
931
+ "cfg-if",
932
+ "cfg_aliases",
933
+ "libc",
934
+ ]
935
+
936
+ [[package]]
937
+ name = "nohash-hasher"
938
+ version = "0.2.0"
939
+ source = "registry+https://github.com/rust-lang/crates.io-index"
940
+ checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451"
941
+
942
+ [[package]]
943
+ name = "num-traits"
944
+ version = "0.2.19"
945
+ source = "registry+https://github.com/rust-lang/crates.io-index"
946
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
947
+ dependencies = [
948
+ "autocfg",
949
+ ]
950
+
951
+ [[package]]
952
+ name = "once_cell"
953
+ version = "1.21.4"
954
+ source = "registry+https://github.com/rust-lang/crates.io-index"
955
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
956
+
957
+ [[package]]
958
+ name = "once_cell_polyfill"
959
+ version = "1.70.2"
960
+ source = "registry+https://github.com/rust-lang/crates.io-index"
961
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
962
+
963
+ [[package]]
964
+ name = "oorandom"
965
+ version = "11.1.5"
966
+ source = "registry+https://github.com/rust-lang/crates.io-index"
967
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
968
+
969
+ [[package]]
970
+ name = "p256"
971
+ version = "0.14.0"
972
+ source = "registry+https://github.com/rust-lang/crates.io-index"
973
+ checksum = "d2c9239b2dbc807adbbe147e8cf72ea7450c3a0aabe62cb8e75ff4ec22e1f72a"
974
+ dependencies = [
975
+ "ecdsa",
976
+ "elliptic-curve",
977
+ "primefield",
978
+ "primeorder",
979
+ "sha2",
980
+ ]
981
+
982
+ [[package]]
983
+ name = "pem-rfc7468"
984
+ version = "1.0.0"
985
+ source = "registry+https://github.com/rust-lang/crates.io-index"
986
+ checksum = "a6305423e0e7738146434843d1694d621cce767262b2a86910beab705e4493d9"
987
+ dependencies = [
988
+ "base64ct",
989
+ ]
990
+
991
+ [[package]]
992
+ name = "pin-project-lite"
993
+ version = "0.2.17"
994
+ source = "registry+https://github.com/rust-lang/crates.io-index"
995
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
996
+
997
+ [[package]]
998
+ name = "pkcs8"
999
+ version = "0.11.0"
1000
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1001
+ checksum = "451913da69c775a56034ea8d9003d27ee8948e12443eae7c038ba100a4f21cb7"
1002
+ dependencies = [
1003
+ "der",
1004
+ "spki",
1005
+ ]
1006
+
1007
+ [[package]]
1008
+ name = "plotters"
1009
+ version = "0.3.7"
1010
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1011
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
1012
+ dependencies = [
1013
+ "num-traits",
1014
+ "plotters-backend",
1015
+ "plotters-svg",
1016
+ "wasm-bindgen",
1017
+ "web-sys",
1018
+ ]
1019
+
1020
+ [[package]]
1021
+ name = "plotters-backend"
1022
+ version = "0.3.7"
1023
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1024
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
1025
+
1026
+ [[package]]
1027
+ name = "plotters-svg"
1028
+ version = "0.3.7"
1029
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1030
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
1031
+ dependencies = [
1032
+ "plotters-backend",
1033
+ ]
1034
+
1035
+ [[package]]
1036
+ name = "portable-atomic"
1037
+ version = "1.14.0"
1038
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1039
+ checksum = "3d20d5497ef88037a52ff98267d066e7f11fcc5e99bbfbd58a42336193aacec3"
1040
+
1041
+ [[package]]
1042
+ name = "ppv-lite86"
1043
+ version = "0.2.21"
1044
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1045
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1046
+ dependencies = [
1047
+ "zerocopy",
1048
+ ]
1049
+
1050
+ [[package]]
1051
+ name = "primefield"
1052
+ version = "0.14.0"
1053
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1054
+ checksum = "c555a6e4eb7d4e158fcb028c835c3b8642206ddc279b5c6b202ef9a8bdb592f4"
1055
+ dependencies = [
1056
+ "crypto-bigint",
1057
+ "crypto-common",
1058
+ "ff",
1059
+ "rand_core 0.10.1",
1060
+ "subtle",
1061
+ "zeroize",
1062
+ ]
1063
+
1064
+ [[package]]
1065
+ name = "primeorder"
1066
+ version = "0.14.0"
1067
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1068
+ checksum = "5c9f42978c78a00e3d68f69fc03e57a234debae69da4020a4fb588fcdcd07b06"
1069
+ dependencies = [
1070
+ "elliptic-curve",
1071
+ "once_cell",
1072
+ "primefield",
1073
+ "serdect",
1074
+ "wnaf",
1075
+ ]
1076
+
1077
+ [[package]]
1078
+ name = "proc-macro-crate"
1079
+ version = "3.5.0"
1080
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1081
+ checksum = "e67ba7e9b2b56446f1d419b1d807906278ffa1a658a8a5d8a39dcb1f5a78614f"
1082
+ dependencies = [
1083
+ "toml_edit",
1084
+ ]
1085
+
1086
+ [[package]]
1087
+ name = "proc-macro2"
1088
+ version = "1.0.106"
1089
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1090
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1091
+ dependencies = [
1092
+ "unicode-ident",
1093
+ ]
1094
+
1095
+ [[package]]
1096
+ name = "proptest"
1097
+ version = "1.11.0"
1098
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1099
+ checksum = "4b45fcc2344c680f5025fe57779faef368840d0bd1f42f216291f0dc4ace4744"
1100
+ dependencies = [
1101
+ "bit-set",
1102
+ "bit-vec",
1103
+ "bitflags",
1104
+ "num-traits",
1105
+ "rand 0.9.5",
1106
+ "rand_chacha 0.9.0",
1107
+ "rand_xorshift",
1108
+ "regex-syntax",
1109
+ "rusty-fork",
1110
+ "tempfile",
1111
+ "unarray",
1112
+ ]
1113
+
1114
+ [[package]]
1115
+ name = "pyo3"
1116
+ version = "0.29.2"
1117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1118
+ checksum = "4688ddedf473e32662b9b067670129a8afb8c18e351482c70d62ba4a88171e8b"
1119
+ dependencies = [
1120
+ "libc",
1121
+ "once_cell",
1122
+ "portable-atomic",
1123
+ "pyo3-build-config",
1124
+ "pyo3-ffi",
1125
+ "pyo3-macros",
1126
+ ]
1127
+
1128
+ [[package]]
1129
+ name = "pyo3-build-config"
1130
+ version = "0.29.2"
1131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1132
+ checksum = "f41027e41b4bd03f6e60f9f417fe24a6341a6bb744edd62b6f709f2a52ea30e9"
1133
+ dependencies = [
1134
+ "target-lexicon",
1135
+ ]
1136
+
1137
+ [[package]]
1138
+ name = "pyo3-ffi"
1139
+ version = "0.29.2"
1140
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1141
+ checksum = "e591a95526fead067432c3b3a33fc74770b87b1e04e73671090d9c2055a2b327"
1142
+ dependencies = [
1143
+ "libc",
1144
+ "pyo3-build-config",
1145
+ ]
1146
+
1147
+ [[package]]
1148
+ name = "pyo3-macros"
1149
+ version = "0.29.2"
1150
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1151
+ checksum = "73225868fc1cd84eef2c3c230ddb91273bf1de46aeb8a4248da76d32a0924a1c"
1152
+ dependencies = [
1153
+ "proc-macro2",
1154
+ "pyo3-macros-backend",
1155
+ "quote",
1156
+ "syn 2.0.119",
1157
+ ]
1158
+
1159
+ [[package]]
1160
+ name = "pyo3-macros-backend"
1161
+ version = "0.29.2"
1162
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1163
+ checksum = "571575aa3749fa6216757dd47d2a3e7ef360f329a40f0666a9fbd14889024952"
1164
+ dependencies = [
1165
+ "heck",
1166
+ "proc-macro2",
1167
+ "quote",
1168
+ "syn 2.0.119",
1169
+ ]
1170
+
1171
+ [[package]]
1172
+ name = "quick-error"
1173
+ version = "1.2.3"
1174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1175
+ checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
1176
+
1177
+ [[package]]
1178
+ name = "quote"
1179
+ version = "1.0.46"
1180
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1181
+ checksum = "dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368"
1182
+ dependencies = [
1183
+ "proc-macro2",
1184
+ ]
1185
+
1186
+ [[package]]
1187
+ name = "r-efi"
1188
+ version = "5.3.0"
1189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1190
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1191
+
1192
+ [[package]]
1193
+ name = "r-efi"
1194
+ version = "6.0.0"
1195
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1196
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
1197
+
1198
+ [[package]]
1199
+ name = "rand"
1200
+ version = "0.8.7"
1201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1202
+ checksum = "22f6172bdec972074665ed81ed53b71da00bfc44b65a753cfde883ec4c702a1a"
1203
+ dependencies = [
1204
+ "libc",
1205
+ "rand_chacha 0.3.1",
1206
+ "rand_core 0.6.4",
1207
+ ]
1208
+
1209
+ [[package]]
1210
+ name = "rand"
1211
+ version = "0.9.5"
1212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1213
+ checksum = "b9ef1d0d795eb7d84685bca4f72f3649f064e6641543d3a8c415898726a57b41"
1214
+ dependencies = [
1215
+ "rand_chacha 0.9.0",
1216
+ "rand_core 0.9.5",
1217
+ ]
1218
+
1219
+ [[package]]
1220
+ name = "rand_chacha"
1221
+ version = "0.3.1"
1222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1223
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
1224
+ dependencies = [
1225
+ "ppv-lite86",
1226
+ "rand_core 0.6.4",
1227
+ ]
1228
+
1229
+ [[package]]
1230
+ name = "rand_chacha"
1231
+ version = "0.9.0"
1232
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1233
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
1234
+ dependencies = [
1235
+ "ppv-lite86",
1236
+ "rand_core 0.9.5",
1237
+ ]
1238
+
1239
+ [[package]]
1240
+ name = "rand_core"
1241
+ version = "0.6.4"
1242
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1243
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1244
+ dependencies = [
1245
+ "getrandom 0.2.17",
1246
+ ]
1247
+
1248
+ [[package]]
1249
+ name = "rand_core"
1250
+ version = "0.9.5"
1251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1252
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
1253
+ dependencies = [
1254
+ "getrandom 0.3.4",
1255
+ ]
1256
+
1257
+ [[package]]
1258
+ name = "rand_core"
1259
+ version = "0.10.1"
1260
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1261
+ checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69"
1262
+
1263
+ [[package]]
1264
+ name = "rand_xorshift"
1265
+ version = "0.4.0"
1266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1267
+ checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
1268
+ dependencies = [
1269
+ "rand_core 0.9.5",
1270
+ ]
1271
+
1272
+ [[package]]
1273
+ name = "rayon"
1274
+ version = "1.12.0"
1275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1276
+ checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
1277
+ dependencies = [
1278
+ "either",
1279
+ "rayon-core",
1280
+ ]
1281
+
1282
+ [[package]]
1283
+ name = "rayon-core"
1284
+ version = "1.13.0"
1285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1286
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
1287
+ dependencies = [
1288
+ "crossbeam-deque",
1289
+ "crossbeam-utils",
1290
+ ]
1291
+
1292
+ [[package]]
1293
+ name = "regex"
1294
+ version = "1.13.1"
1295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1296
+ checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d"
1297
+ dependencies = [
1298
+ "aho-corasick",
1299
+ "memchr",
1300
+ "regex-automata",
1301
+ "regex-syntax",
1302
+ ]
1303
+
1304
+ [[package]]
1305
+ name = "regex-automata"
1306
+ version = "0.4.16"
1307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1308
+ checksum = "8fcfdb36bda0c880c5931cdc7a2bcdc8ba4556847b9d912bca70bc94708711ad"
1309
+ dependencies = [
1310
+ "aho-corasick",
1311
+ "memchr",
1312
+ "regex-syntax",
1313
+ ]
1314
+
1315
+ [[package]]
1316
+ name = "regex-syntax"
1317
+ version = "0.8.11"
1318
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1319
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
1320
+
1321
+ [[package]]
1322
+ name = "rfc6979"
1323
+ version = "0.6.0"
1324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1325
+ checksum = "b4a459cddafb3fe76b31fd8f1108007566c40301feb64dc7b54656eb7388172b"
1326
+ dependencies = [
1327
+ "crypto-bigint",
1328
+ "hmac",
1329
+ ]
1330
+
1331
+ [[package]]
1332
+ name = "rust_decimal"
1333
+ version = "1.43.0"
1334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1335
+ checksum = "7653272e75dcac41dc199fbea6f5797633994fafd339943c06c9af16bf29cd3a"
1336
+ dependencies = [
1337
+ "arrayvec",
1338
+ "borsh",
1339
+ "bytes",
1340
+ "num-traits",
1341
+ "rand 0.8.7",
1342
+ "rand 0.9.5",
1343
+ "serde",
1344
+ "serde_json",
1345
+ "wasm-bindgen",
1346
+ ]
1347
+
1348
+ [[package]]
1349
+ name = "rust_decimal_macros"
1350
+ version = "1.40.0"
1351
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1352
+ checksum = "74a5a6f027e892c7a035c6fddb50435a1fbf5a734ffc0c2a9fed4d0221440519"
1353
+ dependencies = [
1354
+ "quote",
1355
+ "syn 2.0.119",
1356
+ ]
1357
+
1358
+ [[package]]
1359
+ name = "rustc-hash"
1360
+ version = "2.1.3"
1361
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1362
+ checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
1363
+
1364
+ [[package]]
1365
+ name = "rustix"
1366
+ version = "1.1.4"
1367
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1368
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
1369
+ dependencies = [
1370
+ "bitflags",
1371
+ "errno",
1372
+ "libc",
1373
+ "linux-raw-sys",
1374
+ "windows-sys",
1375
+ ]
1376
+
1377
+ [[package]]
1378
+ name = "rustversion"
1379
+ version = "1.0.23"
1380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1381
+ checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
1382
+
1383
+ [[package]]
1384
+ name = "rusty-fork"
1385
+ version = "0.3.1"
1386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1387
+ checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2"
1388
+ dependencies = [
1389
+ "fnv",
1390
+ "quick-error",
1391
+ "tempfile",
1392
+ "wait-timeout",
1393
+ ]
1394
+
1395
+ [[package]]
1396
+ name = "same-file"
1397
+ version = "1.0.6"
1398
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1399
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1400
+ dependencies = [
1401
+ "winapi-util",
1402
+ ]
1403
+
1404
+ [[package]]
1405
+ name = "schemars"
1406
+ version = "0.8.22"
1407
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1408
+ checksum = "3fbf2ae1b8bc8e02df939598064d22402220cd5bbcca1c76f7d6a310974d5615"
1409
+ dependencies = [
1410
+ "dyn-clone",
1411
+ "schemars_derive",
1412
+ "serde",
1413
+ "serde_json",
1414
+ ]
1415
+
1416
+ [[package]]
1417
+ name = "schemars_derive"
1418
+ version = "0.8.22"
1419
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1420
+ checksum = "32e265784ad618884abaea0600a9adf15393368d840e0222d101a072f3f7534d"
1421
+ dependencies = [
1422
+ "proc-macro2",
1423
+ "quote",
1424
+ "serde_derive_internals",
1425
+ "syn 2.0.119",
1426
+ ]
1427
+
1428
+ [[package]]
1429
+ name = "sec1"
1430
+ version = "0.8.1"
1431
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1432
+ checksum = "d56d437c2f19203ce5f7122e507831de96f3d2d4d3be5af44a0b0a09d8a80e4d"
1433
+ dependencies = [
1434
+ "base16ct",
1435
+ "ctutils",
1436
+ "der",
1437
+ "hybrid-array",
1438
+ "subtle",
1439
+ "zeroize",
1440
+ ]
1441
+
1442
+ [[package]]
1443
+ name = "semver"
1444
+ version = "1.0.28"
1445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1446
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
1447
+
1448
+ [[package]]
1449
+ name = "serde"
1450
+ version = "1.0.229"
1451
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1452
+ checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
1453
+ dependencies = [
1454
+ "serde_core",
1455
+ "serde_derive",
1456
+ ]
1457
+
1458
+ [[package]]
1459
+ name = "serde_core"
1460
+ version = "1.0.229"
1461
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1462
+ checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
1463
+ dependencies = [
1464
+ "serde_derive",
1465
+ ]
1466
+
1467
+ [[package]]
1468
+ name = "serde_derive"
1469
+ version = "1.0.229"
1470
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1471
+ checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
1472
+ dependencies = [
1473
+ "proc-macro2",
1474
+ "quote",
1475
+ "syn 3.0.3",
1476
+ ]
1477
+
1478
+ [[package]]
1479
+ name = "serde_derive_internals"
1480
+ version = "0.29.1"
1481
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1482
+ checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711"
1483
+ dependencies = [
1484
+ "proc-macro2",
1485
+ "quote",
1486
+ "syn 2.0.119",
1487
+ ]
1488
+
1489
+ [[package]]
1490
+ name = "serde_json"
1491
+ version = "1.0.151"
1492
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1493
+ checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
1494
+ dependencies = [
1495
+ "itoa",
1496
+ "memchr",
1497
+ "serde",
1498
+ "serde_core",
1499
+ "zmij",
1500
+ ]
1501
+
1502
+ [[package]]
1503
+ name = "serdect"
1504
+ version = "0.4.3"
1505
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1506
+ checksum = "66cf8fedced2fcf12406bcb34223dffb92eaf34908ede12fed414c82b7f00b3e"
1507
+ dependencies = [
1508
+ "base16ct",
1509
+ "serde",
1510
+ ]
1511
+
1512
+ [[package]]
1513
+ name = "sha2"
1514
+ version = "0.11.0"
1515
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1516
+ checksum = "446ba717509524cb3f22f17ecc096f10f4822d76ab5c0b9822c5f9c284e825f4"
1517
+ dependencies = [
1518
+ "cfg-if",
1519
+ "cpufeatures",
1520
+ "digest",
1521
+ ]
1522
+
1523
+ [[package]]
1524
+ name = "shlex"
1525
+ version = "2.0.1"
1526
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1527
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
1528
+
1529
+ [[package]]
1530
+ name = "signature"
1531
+ version = "3.0.0"
1532
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1533
+ checksum = "28d567dcbaf0049cb8ac2608a76cd95ff9e4412e1899d389ee400918ca7537f5"
1534
+ dependencies = [
1535
+ "digest",
1536
+ "rand_core 0.10.1",
1537
+ ]
1538
+
1539
+ [[package]]
1540
+ name = "slab"
1541
+ version = "0.4.12"
1542
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1543
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1544
+
1545
+ [[package]]
1546
+ name = "spki"
1547
+ version = "0.8.0"
1548
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1549
+ checksum = "1d9efca8738c78ee9484207732f728b1ef517bbb1833d6fc0879ca898a522f6f"
1550
+ dependencies = [
1551
+ "base64ct",
1552
+ "der",
1553
+ ]
1554
+
1555
+ [[package]]
1556
+ name = "statrs"
1557
+ version = "0.18.0"
1558
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1559
+ checksum = "2a3fe7c28c6512e766b0874335db33c94ad7b8f9054228ae1c2abd47ce7d335e"
1560
+ dependencies = [
1561
+ "approx",
1562
+ "num-traits",
1563
+ ]
1564
+
1565
+ [[package]]
1566
+ name = "strsim"
1567
+ version = "0.11.1"
1568
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1569
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1570
+
1571
+ [[package]]
1572
+ name = "subtle"
1573
+ version = "2.6.1"
1574
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1575
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
1576
+
1577
+ [[package]]
1578
+ name = "syn"
1579
+ version = "2.0.119"
1580
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1581
+ checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
1582
+ dependencies = [
1583
+ "proc-macro2",
1584
+ "quote",
1585
+ "unicode-ident",
1586
+ ]
1587
+
1588
+ [[package]]
1589
+ name = "syn"
1590
+ version = "3.0.3"
1591
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1592
+ checksum = "53e9bae58849f64dfa4f5d5ae372c8341f7305f82a3868709269343628b659a3"
1593
+ dependencies = [
1594
+ "proc-macro2",
1595
+ "quote",
1596
+ "unicode-ident",
1597
+ ]
1598
+
1599
+ [[package]]
1600
+ name = "target-lexicon"
1601
+ version = "0.13.5"
1602
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1603
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
1604
+
1605
+ [[package]]
1606
+ name = "tempfile"
1607
+ version = "3.27.0"
1608
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1609
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
1610
+ dependencies = [
1611
+ "fastrand",
1612
+ "getrandom 0.4.3",
1613
+ "once_cell",
1614
+ "rustix",
1615
+ "windows-sys",
1616
+ ]
1617
+
1618
+ [[package]]
1619
+ name = "thiserror"
1620
+ version = "2.0.20"
1621
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1622
+ checksum = "ec86235f5fcc2a73650310756d2ac5b138a5780bbbdfae3eeccec992c435ba4f"
1623
+ dependencies = [
1624
+ "thiserror-impl",
1625
+ ]
1626
+
1627
+ [[package]]
1628
+ name = "thiserror-impl"
1629
+ version = "2.0.20"
1630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1631
+ checksum = "bc04cd3e1236dd4a98afca4569f2deb3f120e5422a4023be2cb683f8486292af"
1632
+ dependencies = [
1633
+ "proc-macro2",
1634
+ "quote",
1635
+ "syn 3.0.3",
1636
+ ]
1637
+
1638
+ [[package]]
1639
+ name = "timemachine-bench"
1640
+ version = "0.1.0"
1641
+ dependencies = [
1642
+ "codspeed-criterion-compat",
1643
+ "wickra-timemachine-core",
1644
+ ]
1645
+
1646
+ [[package]]
1647
+ name = "tinytemplate"
1648
+ version = "1.2.1"
1649
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1650
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
1651
+ dependencies = [
1652
+ "serde",
1653
+ "serde_json",
1654
+ ]
1655
+
1656
+ [[package]]
1657
+ name = "toml_datetime"
1658
+ version = "1.1.1+spec-1.1.0"
1659
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1660
+ checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7"
1661
+ dependencies = [
1662
+ "serde_core",
1663
+ ]
1664
+
1665
+ [[package]]
1666
+ name = "toml_edit"
1667
+ version = "0.25.13+spec-1.1.0"
1668
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1669
+ checksum = "6975367e4d2ef766d86af01ffad14b622fecc8d4357a998fbc4deb6e9bacaf9b"
1670
+ dependencies = [
1671
+ "indexmap",
1672
+ "toml_datetime",
1673
+ "toml_parser",
1674
+ "winnow",
1675
+ ]
1676
+
1677
+ [[package]]
1678
+ name = "toml_parser"
1679
+ version = "1.1.2+spec-1.1.0"
1680
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1681
+ checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526"
1682
+ dependencies = [
1683
+ "winnow",
1684
+ ]
1685
+
1686
+ [[package]]
1687
+ name = "tracing"
1688
+ version = "0.1.44"
1689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1690
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
1691
+ dependencies = [
1692
+ "pin-project-lite",
1693
+ "tracing-attributes",
1694
+ "tracing-core",
1695
+ ]
1696
+
1697
+ [[package]]
1698
+ name = "tracing-attributes"
1699
+ version = "0.1.31"
1700
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1701
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
1702
+ dependencies = [
1703
+ "proc-macro2",
1704
+ "quote",
1705
+ "syn 2.0.119",
1706
+ ]
1707
+
1708
+ [[package]]
1709
+ name = "tracing-core"
1710
+ version = "0.1.36"
1711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1712
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
1713
+ dependencies = [
1714
+ "once_cell",
1715
+ ]
1716
+
1717
+ [[package]]
1718
+ name = "typenum"
1719
+ version = "1.20.1"
1720
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1721
+ checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
1722
+
1723
+ [[package]]
1724
+ name = "unarray"
1725
+ version = "0.1.4"
1726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1727
+ checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
1728
+
1729
+ [[package]]
1730
+ name = "unicode-ident"
1731
+ version = "1.0.24"
1732
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1733
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1734
+
1735
+ [[package]]
1736
+ name = "unicode-segmentation"
1737
+ version = "1.13.3"
1738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1739
+ checksum = "c6f5d3c3b1bf09027a88a6bc961fc00497d651009560b5463668dc81b0fa87a8"
1740
+
1741
+ [[package]]
1742
+ name = "utf8parse"
1743
+ version = "0.2.2"
1744
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1745
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
1746
+
1747
+ [[package]]
1748
+ name = "wait-timeout"
1749
+ version = "0.2.1"
1750
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1751
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
1752
+ dependencies = [
1753
+ "libc",
1754
+ ]
1755
+
1756
+ [[package]]
1757
+ name = "walkdir"
1758
+ version = "2.5.0"
1759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1760
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
1761
+ dependencies = [
1762
+ "same-file",
1763
+ "winapi-util",
1764
+ ]
1765
+
1766
+ [[package]]
1767
+ name = "wasi"
1768
+ version = "0.11.1+wasi-snapshot-preview1"
1769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1770
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1771
+
1772
+ [[package]]
1773
+ name = "wasip2"
1774
+ version = "1.0.4+wasi-0.2.12"
1775
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1776
+ checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
1777
+ dependencies = [
1778
+ "wit-bindgen",
1779
+ ]
1780
+
1781
+ [[package]]
1782
+ name = "wasm-bindgen"
1783
+ version = "0.2.126"
1784
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1785
+ checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4"
1786
+ dependencies = [
1787
+ "cfg-if",
1788
+ "once_cell",
1789
+ "rustversion",
1790
+ "serde",
1791
+ "wasm-bindgen-macro",
1792
+ "wasm-bindgen-shared",
1793
+ ]
1794
+
1795
+ [[package]]
1796
+ name = "wasm-bindgen-macro"
1797
+ version = "0.2.126"
1798
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1799
+ checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1"
1800
+ dependencies = [
1801
+ "quote",
1802
+ "wasm-bindgen-macro-support",
1803
+ ]
1804
+
1805
+ [[package]]
1806
+ name = "wasm-bindgen-macro-support"
1807
+ version = "0.2.126"
1808
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1809
+ checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e"
1810
+ dependencies = [
1811
+ "bumpalo",
1812
+ "proc-macro2",
1813
+ "quote",
1814
+ "syn 2.0.119",
1815
+ "wasm-bindgen-shared",
1816
+ ]
1817
+
1818
+ [[package]]
1819
+ name = "wasm-bindgen-shared"
1820
+ version = "0.2.126"
1821
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1822
+ checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24"
1823
+ dependencies = [
1824
+ "unicode-ident",
1825
+ ]
1826
+
1827
+ [[package]]
1828
+ name = "web-sys"
1829
+ version = "0.3.103"
1830
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1831
+ checksum = "8622dcb61c0bcc9fffa6938bed81210af2da9a7e4a1a834b2e37a59b6dfb6141"
1832
+ dependencies = [
1833
+ "js-sys",
1834
+ "wasm-bindgen",
1835
+ ]
1836
+
1837
+ [[package]]
1838
+ name = "wickra-backtest"
1839
+ version = "0.1.4"
1840
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1841
+ checksum = "7fa9f0c071d1466cac34f23ea0ac20ecbe5df3fc744a094ea49924735623e1c8"
1842
+ dependencies = [
1843
+ "wickra-backtest-core",
1844
+ "wickra-backtest-data",
1845
+ ]
1846
+
1847
+ [[package]]
1848
+ name = "wickra-backtest-core"
1849
+ version = "0.1.4"
1850
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1851
+ checksum = "a92723219f4eb739fc69871fd1c5d2958b33cdf3aeb6b4193826ef981d44ac65"
1852
+ dependencies = [
1853
+ "schemars",
1854
+ "serde",
1855
+ "serde_json",
1856
+ "thiserror",
1857
+ "wickra-core",
1858
+ ]
1859
+
1860
+ [[package]]
1861
+ name = "wickra-backtest-data"
1862
+ version = "0.1.4"
1863
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1864
+ checksum = "a2ddd1a0cc11393db45a7536c3871abb76b6c91f0ff28665cecc972b0c5a811a"
1865
+ dependencies = [
1866
+ "serde_json",
1867
+ "wickra-backtest-core",
1868
+ "wickra-core",
1869
+ ]
1870
+
1871
+ [[package]]
1872
+ name = "wickra-core"
1873
+ version = "1.0.4"
1874
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1875
+ checksum = "3801b8e584405b19c5db178a8aae4587250a27daf26397ce3bde9e4c0badb115"
1876
+ dependencies = [
1877
+ "rayon",
1878
+ "thiserror",
1879
+ ]
1880
+
1881
+ [[package]]
1882
+ name = "wickra-exchange-core"
1883
+ version = "0.1.3"
1884
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1885
+ checksum = "7da1d108c609715a7e97102ee4600d46b467012e85591f91ca4564dda9a4e81d"
1886
+ dependencies = [
1887
+ "base64",
1888
+ "hex",
1889
+ "hmac",
1890
+ "p256",
1891
+ "rust_decimal",
1892
+ "serde",
1893
+ "serde_json",
1894
+ "sha2",
1895
+ "thiserror",
1896
+ "tracing",
1897
+ "wickra-core",
1898
+ "zeroize",
1899
+ ]
1900
+
1901
+ [[package]]
1902
+ name = "wickra-timemachine"
1903
+ version = "0.1.0"
1904
+ dependencies = [
1905
+ "clap",
1906
+ "serde_json",
1907
+ "wickra-timemachine-core",
1908
+ ]
1909
+
1910
+ [[package]]
1911
+ name = "wickra-timemachine-c"
1912
+ version = "0.1.0"
1913
+ dependencies = [
1914
+ "serde_json",
1915
+ "wickra-timemachine-core",
1916
+ ]
1917
+
1918
+ [[package]]
1919
+ name = "wickra-timemachine-core"
1920
+ version = "0.1.0"
1921
+ dependencies = [
1922
+ "proptest",
1923
+ "rayon",
1924
+ "rust_decimal",
1925
+ "rust_decimal_macros",
1926
+ "serde",
1927
+ "serde_json",
1928
+ "thiserror",
1929
+ "wickra-backtest",
1930
+ "wickra-core",
1931
+ "wickra-exchange-core",
1932
+ ]
1933
+
1934
+ [[package]]
1935
+ name = "wickra-timemachine-example"
1936
+ version = "0.1.0"
1937
+ dependencies = [
1938
+ "serde_json",
1939
+ "wickra-timemachine-core",
1940
+ ]
1941
+
1942
+ [[package]]
1943
+ name = "wickra-timemachine-node"
1944
+ version = "0.1.0"
1945
+ dependencies = [
1946
+ "napi",
1947
+ "napi-build",
1948
+ "napi-derive",
1949
+ "wickra-timemachine-core",
1950
+ ]
1951
+
1952
+ [[package]]
1953
+ name = "wickra-timemachine-python"
1954
+ version = "0.1.0"
1955
+ dependencies = [
1956
+ "pyo3",
1957
+ "wickra-timemachine-core",
1958
+ ]
1959
+
1960
+ [[package]]
1961
+ name = "wickra-timemachine-wasm"
1962
+ version = "0.1.0"
1963
+ dependencies = [
1964
+ "getrandom 0.2.17",
1965
+ "getrandom 0.3.4",
1966
+ "getrandom 0.4.3",
1967
+ "wasm-bindgen",
1968
+ "wickra-timemachine-core",
1969
+ ]
1970
+
1971
+ [[package]]
1972
+ name = "winapi-util"
1973
+ version = "0.1.11"
1974
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1975
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
1976
+ dependencies = [
1977
+ "windows-sys",
1978
+ ]
1979
+
1980
+ [[package]]
1981
+ name = "windows-link"
1982
+ version = "0.2.1"
1983
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1984
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1985
+
1986
+ [[package]]
1987
+ name = "windows-sys"
1988
+ version = "0.61.2"
1989
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1990
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1991
+ dependencies = [
1992
+ "windows-link",
1993
+ ]
1994
+
1995
+ [[package]]
1996
+ name = "winnow"
1997
+ version = "1.0.4"
1998
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1999
+ checksum = "23b97319f7b8343df12cc98938e5c3eb436064524c8d2b4e30a1d3a36eecdf81"
2000
+ dependencies = [
2001
+ "memchr",
2002
+ ]
2003
+
2004
+ [[package]]
2005
+ name = "wit-bindgen"
2006
+ version = "0.57.1"
2007
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2008
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
2009
+
2010
+ [[package]]
2011
+ name = "wnaf"
2012
+ version = "0.14.1"
2013
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2014
+ checksum = "795ca18b3fdb5e62bf982199278341ddcf7ebf7d32e25e212ad05d496e95f6fa"
2015
+ dependencies = [
2016
+ "ff",
2017
+ "group",
2018
+ "hybrid-array",
2019
+ "primefield",
2020
+ ]
2021
+
2022
+ [[package]]
2023
+ name = "zerocopy"
2024
+ version = "0.8.54"
2025
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2026
+ checksum = "b7cbbc0a705a0fd05cc3676525980d2bf5a9bc4adac6d6475209a7887cf59d19"
2027
+ dependencies = [
2028
+ "zerocopy-derive",
2029
+ ]
2030
+
2031
+ [[package]]
2032
+ name = "zerocopy-derive"
2033
+ version = "0.8.54"
2034
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2035
+ checksum = "e2e817b7b52d0c7358d3246da9d69935ebb18116b2b102b4230dac079b4862f5"
2036
+ dependencies = [
2037
+ "proc-macro2",
2038
+ "quote",
2039
+ "syn 2.0.119",
2040
+ ]
2041
+
2042
+ [[package]]
2043
+ name = "zeroize"
2044
+ version = "1.9.0"
2045
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2046
+ checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e"
2047
+ dependencies = [
2048
+ "zeroize_derive",
2049
+ ]
2050
+
2051
+ [[package]]
2052
+ name = "zeroize_derive"
2053
+ version = "1.5.0"
2054
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2055
+ checksum = "3c50655cbb0fe3fc43170059e702f1ce5e19b84cec58dc87b037a09935c2f328"
2056
+ dependencies = [
2057
+ "proc-macro2",
2058
+ "quote",
2059
+ "syn 2.0.119",
2060
+ ]
2061
+
2062
+ [[package]]
2063
+ name = "zmij"
2064
+ version = "1.0.23"
2065
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2066
+ checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"