faultlib 1.0.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 (57) hide show
  1. faultlib-1.0.0/Cargo.lock +1095 -0
  2. faultlib-1.0.0/Cargo.toml +49 -0
  3. faultlib-1.0.0/PKG-INFO +171 -0
  4. faultlib-1.0.0/README.md +153 -0
  5. faultlib-1.0.0/fault-engine/Cargo.toml +23 -0
  6. faultlib-1.0.0/fault-engine/README.md +117 -0
  7. faultlib-1.0.0/fault-engine/src/control.rs +578 -0
  8. faultlib-1.0.0/fault-engine/src/endpoint.rs +7 -0
  9. faultlib-1.0.0/fault-engine/src/engine.rs +401 -0
  10. faultlib-1.0.0/fault-engine/src/error.rs +61 -0
  11. faultlib-1.0.0/fault-engine/src/faults/bandwidth.rs +160 -0
  12. faultlib-1.0.0/fault-engine/src/faults/blackhole.rs +87 -0
  13. faultlib-1.0.0/fault-engine/src/faults/connection_reset.rs +100 -0
  14. faultlib-1.0.0/fault-engine/src/faults/delay.rs +85 -0
  15. faultlib-1.0.0/fault-engine/src/faults/jitter.rs +179 -0
  16. faultlib-1.0.0/fault-engine/src/faults/latency.rs +155 -0
  17. faultlib-1.0.0/fault-engine/src/faults/mod.rs +253 -0
  18. faultlib-1.0.0/fault-engine/src/faults/runtime.rs +215 -0
  19. faultlib-1.0.0/fault-engine/src/faults/stream.rs +27 -0
  20. faultlib-1.0.0/fault-engine/src/lib.rs +22 -0
  21. faultlib-1.0.0/fault-engine/src/observation.rs +719 -0
  22. faultlib-1.0.0/fault-engine/src/proxy/mod.rs +2 -0
  23. faultlib-1.0.0/fault-engine/src/proxy/tcp.rs +252 -0
  24. faultlib-1.0.0/fault-engine/src/proxy/udp.rs +489 -0
  25. faultlib-1.0.0/fault-engine/src/run/mod.rs +81 -0
  26. faultlib-1.0.0/fault-engine/tests/lifecycle.rs +1241 -0
  27. faultlib-1.0.0/fault-model/Cargo.toml +21 -0
  28. faultlib-1.0.0/fault-model/README.md +104 -0
  29. faultlib-1.0.0/fault-model/examples/generate_schemas.rs +33 -0
  30. faultlib-1.0.0/fault-model/schema_artifacts.rs +250 -0
  31. faultlib-1.0.0/fault-model/src/config.rs +42 -0
  32. faultlib-1.0.0/fault-model/src/fault.rs +174 -0
  33. faultlib-1.0.0/fault-model/src/journal.rs +30 -0
  34. faultlib-1.0.0/fault-model/src/lib.rs +44 -0
  35. faultlib-1.0.0/fault-model/src/run.rs +284 -0
  36. faultlib-1.0.0/fault-model/src/transport.rs +245 -0
  37. faultlib-1.0.0/fault-model/src/validation.rs +340 -0
  38. faultlib-1.0.0/fault-model/src/version.rs +86 -0
  39. faultlib-1.0.0/fault-model/tests/schema_artifacts.rs +36 -0
  40. faultlib-1.0.0/fault-python/.gitignore +3 -0
  41. faultlib-1.0.0/fault-python/Cargo.toml +26 -0
  42. faultlib-1.0.0/fault-python/README.md +153 -0
  43. faultlib-1.0.0/fault-python/src/engine.rs +466 -0
  44. faultlib-1.0.0/fault-python/src/error.rs +19 -0
  45. faultlib-1.0.0/fault-python/src/json.rs +16 -0
  46. faultlib-1.0.0/fault-python/src/lib.rs +15 -0
  47. faultlib-1.0.0/fault-python/uv.lock +43 -0
  48. faultlib-1.0.0/pyproject.toml +40 -0
  49. faultlib-1.0.0/python/faultlib/__init__.py +114 -0
  50. faultlib-1.0.0/python/faultlib/_types.py +3 -0
  51. faultlib-1.0.0/python/faultlib/config.py +94 -0
  52. faultlib-1.0.0/python/faultlib/engine.py +151 -0
  53. faultlib-1.0.0/python/faultlib/events.py +21 -0
  54. faultlib-1.0.0/python/faultlib/phase.py +181 -0
  55. faultlib-1.0.0/python/faultlib/py.typed +1 -0
  56. faultlib-1.0.0/python/faultlib/run.py +107 -0
  57. faultlib-1.0.0/python/faultlib/transport.py +266 -0
@@ -0,0 +1,1095 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "android_system_properties"
7
+ version = "0.1.6"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "ae221649c9976a6f6c56ae1facf410f3ddb33cc661c4b7b61020a912d4237fbc"
10
+ dependencies = [
11
+ "libc",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "anstream"
16
+ version = "1.0.0"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
19
+ dependencies = [
20
+ "anstyle",
21
+ "anstyle-parse",
22
+ "anstyle-query",
23
+ "anstyle-wincon",
24
+ "colorchoice",
25
+ "is_terminal_polyfill",
26
+ "utf8parse",
27
+ ]
28
+
29
+ [[package]]
30
+ name = "anstyle"
31
+ version = "1.0.14"
32
+ source = "registry+https://github.com/rust-lang/crates.io-index"
33
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
34
+
35
+ [[package]]
36
+ name = "anstyle-parse"
37
+ version = "1.0.0"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
40
+ dependencies = [
41
+ "utf8parse",
42
+ ]
43
+
44
+ [[package]]
45
+ name = "anstyle-query"
46
+ version = "1.1.5"
47
+ source = "registry+https://github.com/rust-lang/crates.io-index"
48
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
49
+ dependencies = [
50
+ "windows-sys",
51
+ ]
52
+
53
+ [[package]]
54
+ name = "anstyle-wincon"
55
+ version = "3.0.11"
56
+ source = "registry+https://github.com/rust-lang/crates.io-index"
57
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
58
+ dependencies = [
59
+ "anstyle",
60
+ "once_cell_polyfill",
61
+ "windows-sys",
62
+ ]
63
+
64
+ [[package]]
65
+ name = "anyhow"
66
+ version = "1.0.104"
67
+ source = "registry+https://github.com/rust-lang/crates.io-index"
68
+ checksum = "330a5ed07fa54e4702c9d6c4174f74427fc0ef6e214bbd677ae50a5099946470"
69
+
70
+ [[package]]
71
+ name = "arc-swap"
72
+ version = "1.9.2"
73
+ source = "registry+https://github.com/rust-lang/crates.io-index"
74
+ checksum = "c049c0be4daef0b145cb3555416b3b8ef5b7888a38aea1a3a155801fe7b0810b"
75
+ dependencies = [
76
+ "rustversion",
77
+ ]
78
+
79
+ [[package]]
80
+ name = "autocfg"
81
+ version = "1.5.1"
82
+ source = "registry+https://github.com/rust-lang/crates.io-index"
83
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
84
+
85
+ [[package]]
86
+ name = "bumpalo"
87
+ version = "3.20.3"
88
+ source = "registry+https://github.com/rust-lang/crates.io-index"
89
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
90
+
91
+ [[package]]
92
+ name = "bytes"
93
+ version = "1.12.1"
94
+ source = "registry+https://github.com/rust-lang/crates.io-index"
95
+ checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04"
96
+
97
+ [[package]]
98
+ name = "cc"
99
+ version = "1.4.4"
100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
101
+ checksum = "0ad534f4357a5264cce5019c989cf66a4f0dc4e0d1b1d15f8aacec0ff7360273"
102
+ dependencies = [
103
+ "find-msvc-tools",
104
+ "shlex",
105
+ ]
106
+
107
+ [[package]]
108
+ name = "cfg-if"
109
+ version = "1.0.4"
110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
111
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
112
+
113
+ [[package]]
114
+ name = "chrono"
115
+ version = "0.4.45"
116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
117
+ checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
118
+ dependencies = [
119
+ "iana-time-zone",
120
+ "js-sys",
121
+ "num-traits",
122
+ "serde",
123
+ "wasm-bindgen",
124
+ "windows-link",
125
+ ]
126
+
127
+ [[package]]
128
+ name = "clap"
129
+ version = "4.6.6"
130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
131
+ checksum = "473c7e07f409a8d772161724aa8db6a765a2532a70f9667eeb7b49d3d02fbdca"
132
+ dependencies = [
133
+ "clap_builder",
134
+ "clap_derive",
135
+ ]
136
+
137
+ [[package]]
138
+ name = "clap_builder"
139
+ version = "4.6.6"
140
+ source = "registry+https://github.com/rust-lang/crates.io-index"
141
+ checksum = "7b48fea5a88e9ae728a2dcbedbfc0e730f7d60da42e1cb049a83c9fb8b789889"
142
+ dependencies = [
143
+ "anstream",
144
+ "anstyle",
145
+ "clap_lex",
146
+ "strsim",
147
+ ]
148
+
149
+ [[package]]
150
+ name = "clap_derive"
151
+ version = "4.6.4"
152
+ source = "registry+https://github.com/rust-lang/crates.io-index"
153
+ checksum = "d012d2b9d65aca7f18f4d9878a045bc17899bba951561ba5ec3c2ba1eed9a061"
154
+ dependencies = [
155
+ "heck",
156
+ "proc-macro2",
157
+ "quote",
158
+ "syn 3.0.4",
159
+ ]
160
+
161
+ [[package]]
162
+ name = "clap_lex"
163
+ version = "1.1.0"
164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
165
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
166
+
167
+ [[package]]
168
+ name = "colorchoice"
169
+ version = "1.0.5"
170
+ source = "registry+https://github.com/rust-lang/crates.io-index"
171
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
172
+
173
+ [[package]]
174
+ name = "core-foundation-sys"
175
+ version = "0.8.7"
176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
177
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
178
+
179
+ [[package]]
180
+ name = "dyn-clone"
181
+ version = "1.0.20"
182
+ source = "registry+https://github.com/rust-lang/crates.io-index"
183
+ checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
184
+
185
+ [[package]]
186
+ name = "equivalent"
187
+ version = "1.0.2"
188
+ source = "registry+https://github.com/rust-lang/crates.io-index"
189
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
190
+
191
+ [[package]]
192
+ name = "errno"
193
+ version = "0.3.14"
194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
195
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
196
+ dependencies = [
197
+ "libc",
198
+ "windows-sys",
199
+ ]
200
+
201
+ [[package]]
202
+ name = "fault-cli"
203
+ version = "1.0.0"
204
+ dependencies = [
205
+ "anyhow",
206
+ "chrono",
207
+ "clap",
208
+ "fault-engine",
209
+ "fault-model",
210
+ "serde",
211
+ "serde_json",
212
+ "tokio",
213
+ "yaml_serde",
214
+ ]
215
+
216
+ [[package]]
217
+ name = "fault-engine"
218
+ version = "1.0.0"
219
+ dependencies = [
220
+ "arc-swap",
221
+ "chrono",
222
+ "fault-model",
223
+ "rand",
224
+ "rand_distr",
225
+ "socket2",
226
+ "thiserror",
227
+ "tokio",
228
+ "tokio-util",
229
+ "uuid",
230
+ ]
231
+
232
+ [[package]]
233
+ name = "fault-model"
234
+ version = "1.0.0"
235
+ dependencies = [
236
+ "chrono",
237
+ "humantime",
238
+ "schemars",
239
+ "serde",
240
+ "serde_json",
241
+ "strum",
242
+ "thiserror",
243
+ "uuid",
244
+ ]
245
+
246
+ [[package]]
247
+ name = "fault-python"
248
+ version = "1.0.0"
249
+ dependencies = [
250
+ "fault-engine",
251
+ "fault-model",
252
+ "pyo3",
253
+ "pyo3-async-runtimes",
254
+ "serde",
255
+ "serde_json",
256
+ "tokio",
257
+ "uuid",
258
+ ]
259
+
260
+ [[package]]
261
+ name = "find-msvc-tools"
262
+ version = "0.1.11"
263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
264
+ checksum = "d45db016d36b838f563236e9193d0ee6ce38f3f68b6c94e914b4929c96bbb890"
265
+
266
+ [[package]]
267
+ name = "futures-channel"
268
+ version = "0.3.34"
269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
270
+ checksum = "b1f9e3d69d39e4862ffed03ed071a76f9a13ba1d9109d355b0f0aa6b15e393c4"
271
+ dependencies = [
272
+ "futures-core",
273
+ ]
274
+
275
+ [[package]]
276
+ name = "futures-core"
277
+ version = "0.3.34"
278
+ source = "registry+https://github.com/rust-lang/crates.io-index"
279
+ checksum = "92d699e522242e69e3003b94ecc1f960f3a5e015aa7c5d7486e65ad01dd94f5e"
280
+
281
+ [[package]]
282
+ name = "futures-macro"
283
+ version = "0.3.34"
284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
285
+ checksum = "9fb9654ba8355388abeb8dcb4fc62f511300867002afc858860463bdd9fe0c44"
286
+ dependencies = [
287
+ "proc-macro2",
288
+ "quote",
289
+ "syn 3.0.4",
290
+ ]
291
+
292
+ [[package]]
293
+ name = "futures-sink"
294
+ version = "0.3.34"
295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
296
+ checksum = "1944426bf7d03f1d14f708785e4b33efd750b36d48a157b836b3efc15ede8e1d"
297
+
298
+ [[package]]
299
+ name = "futures-task"
300
+ version = "0.3.34"
301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
302
+ checksum = "cd417de3d1d015fc3bfd2b1ea46dfc7bab72ef86f1cc7cc9c78e728b34a6d1fd"
303
+
304
+ [[package]]
305
+ name = "futures-util"
306
+ version = "0.3.34"
307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
308
+ checksum = "0d50a92467f8ba5dd6e3ee5d4bd04d73ab2e4e1c44474a0674821dfce14b79bc"
309
+ dependencies = [
310
+ "futures-core",
311
+ "futures-macro",
312
+ "futures-task",
313
+ "pin-project-lite",
314
+ "slab",
315
+ ]
316
+
317
+ [[package]]
318
+ name = "getrandom"
319
+ version = "0.3.4"
320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
321
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
322
+ dependencies = [
323
+ "cfg-if",
324
+ "libc",
325
+ "r-efi 5.3.0",
326
+ "wasip2",
327
+ ]
328
+
329
+ [[package]]
330
+ name = "getrandom"
331
+ version = "0.4.3"
332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
333
+ checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
334
+ dependencies = [
335
+ "cfg-if",
336
+ "libc",
337
+ "r-efi 6.0.0",
338
+ ]
339
+
340
+ [[package]]
341
+ name = "hashbrown"
342
+ version = "0.17.1"
343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
344
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
345
+
346
+ [[package]]
347
+ name = "heck"
348
+ version = "0.5.0"
349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
350
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
351
+
352
+ [[package]]
353
+ name = "humantime"
354
+ version = "2.4.0"
355
+ source = "registry+https://github.com/rust-lang/crates.io-index"
356
+ checksum = "15cdd26707701c53297e2fa6afb323d55fbc1d0810c3aec078ae3ef0424c3c15"
357
+
358
+ [[package]]
359
+ name = "iana-time-zone"
360
+ version = "0.1.65"
361
+ source = "registry+https://github.com/rust-lang/crates.io-index"
362
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
363
+ dependencies = [
364
+ "android_system_properties",
365
+ "core-foundation-sys",
366
+ "iana-time-zone-haiku",
367
+ "js-sys",
368
+ "log",
369
+ "wasm-bindgen",
370
+ "windows-core",
371
+ ]
372
+
373
+ [[package]]
374
+ name = "iana-time-zone-haiku"
375
+ version = "0.1.2"
376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
377
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
378
+ dependencies = [
379
+ "cc",
380
+ ]
381
+
382
+ [[package]]
383
+ name = "indexmap"
384
+ version = "2.14.1"
385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
386
+ checksum = "07aa2048142242915a31d35844fb311e0e53fcca590c3a0a40dcf1b841fa09eb"
387
+ dependencies = [
388
+ "equivalent",
389
+ "hashbrown",
390
+ ]
391
+
392
+ [[package]]
393
+ name = "is_terminal_polyfill"
394
+ version = "1.70.2"
395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
396
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
397
+
398
+ [[package]]
399
+ name = "itoa"
400
+ version = "1.0.18"
401
+ source = "registry+https://github.com/rust-lang/crates.io-index"
402
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
403
+
404
+ [[package]]
405
+ name = "js-sys"
406
+ version = "0.3.104"
407
+ source = "registry+https://github.com/rust-lang/crates.io-index"
408
+ checksum = "0e0c1080212aad755ea003d18543e8768dd432c48819efd73a7bf1e39b7a5a3a"
409
+ dependencies = [
410
+ "cfg-if",
411
+ "futures-util",
412
+ "wasm-bindgen",
413
+ ]
414
+
415
+ [[package]]
416
+ name = "libc"
417
+ version = "0.2.189"
418
+ source = "registry+https://github.com/rust-lang/crates.io-index"
419
+ checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
420
+
421
+ [[package]]
422
+ name = "libm"
423
+ version = "0.2.16"
424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
425
+ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
426
+
427
+ [[package]]
428
+ name = "libyaml-rs"
429
+ version = "0.3.0"
430
+ source = "registry+https://github.com/rust-lang/crates.io-index"
431
+ checksum = "2e126dda6f34391ab7b444f9922055facc83c07a910da3eb16f1e4d9c45dc777"
432
+
433
+ [[package]]
434
+ name = "log"
435
+ version = "0.4.34"
436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
437
+ checksum = "f9f8bd3e56ce4dfc153cf470fffbfa98c7620958b312ca5c3a4b8d5181fd13c6"
438
+
439
+ [[package]]
440
+ name = "memchr"
441
+ version = "2.8.3"
442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
443
+ checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
444
+
445
+ [[package]]
446
+ name = "mio"
447
+ version = "1.2.2"
448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
449
+ checksum = "30d65c71f1ce40ab09135ce117d742b9f8a19ff91a41a8b57ed50bc2de59c427"
450
+ dependencies = [
451
+ "libc",
452
+ "wasi",
453
+ "windows-sys",
454
+ ]
455
+
456
+ [[package]]
457
+ name = "num-traits"
458
+ version = "0.2.19"
459
+ source = "registry+https://github.com/rust-lang/crates.io-index"
460
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
461
+ dependencies = [
462
+ "autocfg",
463
+ "libm",
464
+ ]
465
+
466
+ [[package]]
467
+ name = "once_cell"
468
+ version = "1.21.4"
469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
470
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
471
+
472
+ [[package]]
473
+ name = "once_cell_polyfill"
474
+ version = "1.70.2"
475
+ source = "registry+https://github.com/rust-lang/crates.io-index"
476
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
477
+
478
+ [[package]]
479
+ name = "pin-project-lite"
480
+ version = "0.2.17"
481
+ source = "registry+https://github.com/rust-lang/crates.io-index"
482
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
483
+
484
+ [[package]]
485
+ name = "portable-atomic"
486
+ version = "1.15.0"
487
+ source = "registry+https://github.com/rust-lang/crates.io-index"
488
+ checksum = "05c8b63e8d9609db387f0324918f81d68fe27748f084ef092fb35954d0539a85"
489
+
490
+ [[package]]
491
+ name = "ppv-lite86"
492
+ version = "0.2.21"
493
+ source = "registry+https://github.com/rust-lang/crates.io-index"
494
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
495
+ dependencies = [
496
+ "zerocopy",
497
+ ]
498
+
499
+ [[package]]
500
+ name = "proc-macro2"
501
+ version = "1.0.107"
502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
503
+ checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
504
+ dependencies = [
505
+ "unicode-ident",
506
+ ]
507
+
508
+ [[package]]
509
+ name = "pyo3"
510
+ version = "0.29.2"
511
+ source = "registry+https://github.com/rust-lang/crates.io-index"
512
+ checksum = "4688ddedf473e32662b9b067670129a8afb8c18e351482c70d62ba4a88171e8b"
513
+ dependencies = [
514
+ "libc",
515
+ "once_cell",
516
+ "portable-atomic",
517
+ "pyo3-build-config",
518
+ "pyo3-ffi",
519
+ "pyo3-macros",
520
+ ]
521
+
522
+ [[package]]
523
+ name = "pyo3-async-runtimes"
524
+ version = "0.29.0"
525
+ source = "registry+https://github.com/rust-lang/crates.io-index"
526
+ checksum = "b3ef68daa7316a3fac65e5e18b2203f010346de1c1c53456811a2624673ab046"
527
+ dependencies = [
528
+ "futures-channel",
529
+ "futures-util",
530
+ "once_cell",
531
+ "pin-project-lite",
532
+ "pyo3",
533
+ "tokio",
534
+ ]
535
+
536
+ [[package]]
537
+ name = "pyo3-build-config"
538
+ version = "0.29.2"
539
+ source = "registry+https://github.com/rust-lang/crates.io-index"
540
+ checksum = "f41027e41b4bd03f6e60f9f417fe24a6341a6bb744edd62b6f709f2a52ea30e9"
541
+ dependencies = [
542
+ "target-lexicon",
543
+ ]
544
+
545
+ [[package]]
546
+ name = "pyo3-ffi"
547
+ version = "0.29.2"
548
+ source = "registry+https://github.com/rust-lang/crates.io-index"
549
+ checksum = "e591a95526fead067432c3b3a33fc74770b87b1e04e73671090d9c2055a2b327"
550
+ dependencies = [
551
+ "libc",
552
+ "pyo3-build-config",
553
+ ]
554
+
555
+ [[package]]
556
+ name = "pyo3-macros"
557
+ version = "0.29.2"
558
+ source = "registry+https://github.com/rust-lang/crates.io-index"
559
+ checksum = "73225868fc1cd84eef2c3c230ddb91273bf1de46aeb8a4248da76d32a0924a1c"
560
+ dependencies = [
561
+ "proc-macro2",
562
+ "pyo3-macros-backend",
563
+ "quote",
564
+ "syn 2.0.119",
565
+ ]
566
+
567
+ [[package]]
568
+ name = "pyo3-macros-backend"
569
+ version = "0.29.2"
570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
571
+ checksum = "571575aa3749fa6216757dd47d2a3e7ef360f329a40f0666a9fbd14889024952"
572
+ dependencies = [
573
+ "heck",
574
+ "proc-macro2",
575
+ "quote",
576
+ "syn 2.0.119",
577
+ ]
578
+
579
+ [[package]]
580
+ name = "quote"
581
+ version = "1.0.47"
582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
583
+ checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
584
+ dependencies = [
585
+ "proc-macro2",
586
+ ]
587
+
588
+ [[package]]
589
+ name = "r-efi"
590
+ version = "5.3.0"
591
+ source = "registry+https://github.com/rust-lang/crates.io-index"
592
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
593
+
594
+ [[package]]
595
+ name = "r-efi"
596
+ version = "6.0.0"
597
+ source = "registry+https://github.com/rust-lang/crates.io-index"
598
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
599
+
600
+ [[package]]
601
+ name = "rand"
602
+ version = "0.9.5"
603
+ source = "registry+https://github.com/rust-lang/crates.io-index"
604
+ checksum = "b9ef1d0d795eb7d84685bca4f72f3649f064e6641543d3a8c415898726a57b41"
605
+ dependencies = [
606
+ "rand_chacha",
607
+ "rand_core",
608
+ ]
609
+
610
+ [[package]]
611
+ name = "rand_chacha"
612
+ version = "0.9.0"
613
+ source = "registry+https://github.com/rust-lang/crates.io-index"
614
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
615
+ dependencies = [
616
+ "ppv-lite86",
617
+ "rand_core",
618
+ ]
619
+
620
+ [[package]]
621
+ name = "rand_core"
622
+ version = "0.9.5"
623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
624
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
625
+ dependencies = [
626
+ "getrandom 0.3.4",
627
+ ]
628
+
629
+ [[package]]
630
+ name = "rand_distr"
631
+ version = "0.5.1"
632
+ source = "registry+https://github.com/rust-lang/crates.io-index"
633
+ checksum = "6a8615d50dcf34fa31f7ab52692afec947c4dd0ab803cc87cb3b0b4570ff7463"
634
+ dependencies = [
635
+ "num-traits",
636
+ "rand",
637
+ ]
638
+
639
+ [[package]]
640
+ name = "ref-cast"
641
+ version = "1.0.27"
642
+ source = "registry+https://github.com/rust-lang/crates.io-index"
643
+ checksum = "7e440fb4e4b4147295338efb76001ab9e4efc0e5839df2c47fc5ac2381d365c3"
644
+ dependencies = [
645
+ "ref-cast-impl",
646
+ ]
647
+
648
+ [[package]]
649
+ name = "ref-cast-impl"
650
+ version = "1.0.27"
651
+ source = "registry+https://github.com/rust-lang/crates.io-index"
652
+ checksum = "92ecd8964f8453721699a1ed72037b0db49ce2f5a5138486ee89bed6f67cdf3a"
653
+ dependencies = [
654
+ "proc-macro2",
655
+ "quote",
656
+ "syn 3.0.4",
657
+ ]
658
+
659
+ [[package]]
660
+ name = "rustversion"
661
+ version = "1.0.23"
662
+ source = "registry+https://github.com/rust-lang/crates.io-index"
663
+ checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
664
+
665
+ [[package]]
666
+ name = "ryu"
667
+ version = "1.0.23"
668
+ source = "registry+https://github.com/rust-lang/crates.io-index"
669
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
670
+
671
+ [[package]]
672
+ name = "schemars"
673
+ version = "1.2.2"
674
+ source = "registry+https://github.com/rust-lang/crates.io-index"
675
+ checksum = "687274d293b6cdc6e73e0fee520bf2049650090d7164f87672d212a3c530cf4a"
676
+ dependencies = [
677
+ "chrono",
678
+ "dyn-clone",
679
+ "ref-cast",
680
+ "schemars_derive",
681
+ "serde",
682
+ "serde_json",
683
+ "uuid",
684
+ ]
685
+
686
+ [[package]]
687
+ name = "schemars_derive"
688
+ version = "1.2.2"
689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
690
+ checksum = "d98c67716b46af2f0b8cf752abc930f6f9aecfbf671ecfb531db8a31dbe4e2ba"
691
+ dependencies = [
692
+ "proc-macro2",
693
+ "quote",
694
+ "serde_derive_internals",
695
+ "syn 3.0.4",
696
+ ]
697
+
698
+ [[package]]
699
+ name = "serde"
700
+ version = "1.0.229"
701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
702
+ checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
703
+ dependencies = [
704
+ "serde_core",
705
+ "serde_derive",
706
+ ]
707
+
708
+ [[package]]
709
+ name = "serde_core"
710
+ version = "1.0.229"
711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
712
+ checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
713
+ dependencies = [
714
+ "serde_derive",
715
+ ]
716
+
717
+ [[package]]
718
+ name = "serde_derive"
719
+ version = "1.0.229"
720
+ source = "registry+https://github.com/rust-lang/crates.io-index"
721
+ checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
722
+ dependencies = [
723
+ "proc-macro2",
724
+ "quote",
725
+ "syn 3.0.4",
726
+ ]
727
+
728
+ [[package]]
729
+ name = "serde_derive_internals"
730
+ version = "0.30.0"
731
+ source = "registry+https://github.com/rust-lang/crates.io-index"
732
+ checksum = "f852137cce035d6a4df67ccce505ff6b3e9fd3a10e3e52b24dc71e650bb1a9bd"
733
+ dependencies = [
734
+ "proc-macro2",
735
+ "quote",
736
+ "syn 3.0.4",
737
+ ]
738
+
739
+ [[package]]
740
+ name = "serde_json"
741
+ version = "1.0.151"
742
+ source = "registry+https://github.com/rust-lang/crates.io-index"
743
+ checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
744
+ dependencies = [
745
+ "itoa",
746
+ "memchr",
747
+ "serde",
748
+ "serde_core",
749
+ "zmij",
750
+ ]
751
+
752
+ [[package]]
753
+ name = "shlex"
754
+ version = "2.0.1"
755
+ source = "registry+https://github.com/rust-lang/crates.io-index"
756
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
757
+
758
+ [[package]]
759
+ name = "signal-hook-registry"
760
+ version = "1.4.8"
761
+ source = "registry+https://github.com/rust-lang/crates.io-index"
762
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
763
+ dependencies = [
764
+ "errno",
765
+ "libc",
766
+ ]
767
+
768
+ [[package]]
769
+ name = "slab"
770
+ version = "0.4.12"
771
+ source = "registry+https://github.com/rust-lang/crates.io-index"
772
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
773
+
774
+ [[package]]
775
+ name = "socket2"
776
+ version = "0.6.5"
777
+ source = "registry+https://github.com/rust-lang/crates.io-index"
778
+ checksum = "c3d1e2c7f27f8d4cb10542a02c49005dbd6e93095799d6f3be745fae9f8fedd4"
779
+ dependencies = [
780
+ "libc",
781
+ "windows-sys",
782
+ ]
783
+
784
+ [[package]]
785
+ name = "strsim"
786
+ version = "0.11.1"
787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
788
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
789
+
790
+ [[package]]
791
+ name = "strum"
792
+ version = "0.28.0"
793
+ source = "registry+https://github.com/rust-lang/crates.io-index"
794
+ checksum = "9628de9b8791db39ceda2b119bbe13134770b56c138ec1d3af810d045c04f9bd"
795
+ dependencies = [
796
+ "strum_macros",
797
+ ]
798
+
799
+ [[package]]
800
+ name = "strum_macros"
801
+ version = "0.28.0"
802
+ source = "registry+https://github.com/rust-lang/crates.io-index"
803
+ checksum = "ab85eea0270ee17587ed4156089e10b9e6880ee688791d45a905f5b1ca36f664"
804
+ dependencies = [
805
+ "heck",
806
+ "proc-macro2",
807
+ "quote",
808
+ "syn 2.0.119",
809
+ ]
810
+
811
+ [[package]]
812
+ name = "syn"
813
+ version = "2.0.119"
814
+ source = "registry+https://github.com/rust-lang/crates.io-index"
815
+ checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
816
+ dependencies = [
817
+ "proc-macro2",
818
+ "quote",
819
+ "unicode-ident",
820
+ ]
821
+
822
+ [[package]]
823
+ name = "syn"
824
+ version = "3.0.4"
825
+ source = "registry+https://github.com/rust-lang/crates.io-index"
826
+ checksum = "e6275cddf4610d1775e6d1fe9469b2e77d0f39fd98fb7450901b821e0c53649f"
827
+ dependencies = [
828
+ "proc-macro2",
829
+ "quote",
830
+ "unicode-ident",
831
+ ]
832
+
833
+ [[package]]
834
+ name = "target-lexicon"
835
+ version = "0.13.5"
836
+ source = "registry+https://github.com/rust-lang/crates.io-index"
837
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
838
+
839
+ [[package]]
840
+ name = "thiserror"
841
+ version = "2.0.20"
842
+ source = "registry+https://github.com/rust-lang/crates.io-index"
843
+ checksum = "ec86235f5fcc2a73650310756d2ac5b138a5780bbbdfae3eeccec992c435ba4f"
844
+ dependencies = [
845
+ "thiserror-impl",
846
+ ]
847
+
848
+ [[package]]
849
+ name = "thiserror-impl"
850
+ version = "2.0.20"
851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
852
+ checksum = "bc04cd3e1236dd4a98afca4569f2deb3f120e5422a4023be2cb683f8486292af"
853
+ dependencies = [
854
+ "proc-macro2",
855
+ "quote",
856
+ "syn 3.0.4",
857
+ ]
858
+
859
+ [[package]]
860
+ name = "tokio"
861
+ version = "1.53.1"
862
+ source = "registry+https://github.com/rust-lang/crates.io-index"
863
+ checksum = "202caea871b69668250d242070849eb495be178ed697a3e98aebce5bc81a0bed"
864
+ dependencies = [
865
+ "bytes",
866
+ "libc",
867
+ "mio",
868
+ "pin-project-lite",
869
+ "signal-hook-registry",
870
+ "socket2",
871
+ "tokio-macros",
872
+ "windows-sys",
873
+ ]
874
+
875
+ [[package]]
876
+ name = "tokio-macros"
877
+ version = "2.7.2"
878
+ source = "registry+https://github.com/rust-lang/crates.io-index"
879
+ checksum = "78773a2a397f451582ce068015985c33193cf6dea8b74d2a639fe457b2f07b0e"
880
+ dependencies = [
881
+ "proc-macro2",
882
+ "quote",
883
+ "syn 3.0.4",
884
+ ]
885
+
886
+ [[package]]
887
+ name = "tokio-util"
888
+ version = "0.7.19"
889
+ source = "registry+https://github.com/rust-lang/crates.io-index"
890
+ checksum = "494815d09bf52b5548659851081238f0ca39ff638363907596da739561c62c52"
891
+ dependencies = [
892
+ "bytes",
893
+ "futures-core",
894
+ "futures-sink",
895
+ "futures-util",
896
+ "pin-project-lite",
897
+ "tokio",
898
+ ]
899
+
900
+ [[package]]
901
+ name = "unicode-ident"
902
+ version = "1.0.24"
903
+ source = "registry+https://github.com/rust-lang/crates.io-index"
904
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
905
+
906
+ [[package]]
907
+ name = "utf8parse"
908
+ version = "0.2.2"
909
+ source = "registry+https://github.com/rust-lang/crates.io-index"
910
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
911
+
912
+ [[package]]
913
+ name = "uuid"
914
+ version = "1.25.0"
915
+ source = "registry+https://github.com/rust-lang/crates.io-index"
916
+ checksum = "f053576934f05a761a402421fbbe3d425d9366f75f978806a037b3ca481abecc"
917
+ dependencies = [
918
+ "getrandom 0.4.3",
919
+ "js-sys",
920
+ "serde_core",
921
+ "wasm-bindgen",
922
+ ]
923
+
924
+ [[package]]
925
+ name = "wasi"
926
+ version = "0.11.1+wasi-snapshot-preview1"
927
+ source = "registry+https://github.com/rust-lang/crates.io-index"
928
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
929
+
930
+ [[package]]
931
+ name = "wasip2"
932
+ version = "1.0.4+wasi-0.2.12"
933
+ source = "registry+https://github.com/rust-lang/crates.io-index"
934
+ checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
935
+ dependencies = [
936
+ "wit-bindgen",
937
+ ]
938
+
939
+ [[package]]
940
+ name = "wasm-bindgen"
941
+ version = "0.2.127"
942
+ source = "registry+https://github.com/rust-lang/crates.io-index"
943
+ checksum = "1b70935747edd64d89de3efa29d73789b806c15798f8e7dca4d8ac356b50ce70"
944
+ dependencies = [
945
+ "cfg-if",
946
+ "once_cell",
947
+ "rustversion",
948
+ "wasm-bindgen-macro",
949
+ "wasm-bindgen-shared",
950
+ ]
951
+
952
+ [[package]]
953
+ name = "wasm-bindgen-macro"
954
+ version = "0.2.127"
955
+ source = "registry+https://github.com/rust-lang/crates.io-index"
956
+ checksum = "77775f8f3f7217702089053b94958f8f54061a3f663417df76e19cbdcca29bc1"
957
+ dependencies = [
958
+ "quote",
959
+ "wasm-bindgen-macro-support",
960
+ ]
961
+
962
+ [[package]]
963
+ name = "wasm-bindgen-macro-support"
964
+ version = "0.2.127"
965
+ source = "registry+https://github.com/rust-lang/crates.io-index"
966
+ checksum = "e11d33f857dc2fb11b8bc75aee111aa9cbeb12cd9f25efd3d4c2a3dd4e235284"
967
+ dependencies = [
968
+ "bumpalo",
969
+ "proc-macro2",
970
+ "quote",
971
+ "syn 2.0.119",
972
+ "wasm-bindgen-shared",
973
+ ]
974
+
975
+ [[package]]
976
+ name = "wasm-bindgen-shared"
977
+ version = "0.2.127"
978
+ source = "registry+https://github.com/rust-lang/crates.io-index"
979
+ checksum = "7ef64dbcc55df09c7e5a46182d181c2cfa3e925f3da937ea764728b4bbb9dcbf"
980
+ dependencies = [
981
+ "unicode-ident",
982
+ ]
983
+
984
+ [[package]]
985
+ name = "windows-core"
986
+ version = "0.62.2"
987
+ source = "registry+https://github.com/rust-lang/crates.io-index"
988
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
989
+ dependencies = [
990
+ "windows-implement",
991
+ "windows-interface",
992
+ "windows-link",
993
+ "windows-result",
994
+ "windows-strings",
995
+ ]
996
+
997
+ [[package]]
998
+ name = "windows-implement"
999
+ version = "0.60.2"
1000
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1001
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
1002
+ dependencies = [
1003
+ "proc-macro2",
1004
+ "quote",
1005
+ "syn 2.0.119",
1006
+ ]
1007
+
1008
+ [[package]]
1009
+ name = "windows-interface"
1010
+ version = "0.59.3"
1011
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1012
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
1013
+ dependencies = [
1014
+ "proc-macro2",
1015
+ "quote",
1016
+ "syn 2.0.119",
1017
+ ]
1018
+
1019
+ [[package]]
1020
+ name = "windows-link"
1021
+ version = "0.2.1"
1022
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1023
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1024
+
1025
+ [[package]]
1026
+ name = "windows-result"
1027
+ version = "0.4.1"
1028
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1029
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
1030
+ dependencies = [
1031
+ "windows-link",
1032
+ ]
1033
+
1034
+ [[package]]
1035
+ name = "windows-strings"
1036
+ version = "0.5.1"
1037
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1038
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
1039
+ dependencies = [
1040
+ "windows-link",
1041
+ ]
1042
+
1043
+ [[package]]
1044
+ name = "windows-sys"
1045
+ version = "0.61.2"
1046
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1047
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1048
+ dependencies = [
1049
+ "windows-link",
1050
+ ]
1051
+
1052
+ [[package]]
1053
+ name = "wit-bindgen"
1054
+ version = "0.57.1"
1055
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1056
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
1057
+
1058
+ [[package]]
1059
+ name = "yaml_serde"
1060
+ version = "0.10.7"
1061
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1062
+ checksum = "33b729a08a9a6be689bbad3e2bf8015926db54b6622cc89c3a5f7dc174b9e918"
1063
+ dependencies = [
1064
+ "indexmap",
1065
+ "itoa",
1066
+ "libyaml-rs",
1067
+ "ryu",
1068
+ "serde",
1069
+ ]
1070
+
1071
+ [[package]]
1072
+ name = "zerocopy"
1073
+ version = "0.8.56"
1074
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1075
+ checksum = "556764e583adb45a9f8d413c2a147fa7e8d821e48e12b14fd560b607998b75eb"
1076
+ dependencies = [
1077
+ "zerocopy-derive",
1078
+ ]
1079
+
1080
+ [[package]]
1081
+ name = "zerocopy-derive"
1082
+ version = "0.8.56"
1083
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1084
+ checksum = "f2ab42fc20575779bd240faa45f94a74256f755c0fa9e89f0ede20d91d0cdfc1"
1085
+ dependencies = [
1086
+ "proc-macro2",
1087
+ "quote",
1088
+ "syn 2.0.119",
1089
+ ]
1090
+
1091
+ [[package]]
1092
+ name = "zmij"
1093
+ version = "1.0.23"
1094
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1095
+ checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"