axilog 0.1.1__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 (69) hide show
  1. axilog-0.1.1/Cargo.lock +1053 -0
  2. axilog-0.1.1/Cargo.toml +16 -0
  3. axilog-0.1.1/PKG-INFO +140 -0
  4. axilog-0.1.1/README.md +129 -0
  5. axilog-0.1.1/crates/axilog-core/Cargo.toml +14 -0
  6. axilog-0.1.1/crates/axilog-core/src/analysis/buffs/events.rs +968 -0
  7. axilog-0.1.1/crates/axilog-core/src/analysis/buffs/generation.rs +632 -0
  8. axilog-0.1.1/crates/axilog-core/src/analysis/buffs/mod.rs +343 -0
  9. axilog-0.1.1/crates/axilog-core/src/analysis/buffs/simulator.rs +652 -0
  10. axilog-0.1.1/crates/axilog-core/src/analysis/buffs/uptime.rs +172 -0
  11. axilog-0.1.1/crates/axilog-core/src/analysis/cc.rs +567 -0
  12. axilog-0.1.1/crates/axilog-core/src/analysis/contribution.rs +890 -0
  13. axilog-0.1.1/crates/axilog-core/src/analysis/damage.rs +408 -0
  14. axilog-0.1.1/crates/axilog-core/src/analysis/defenses.rs +1018 -0
  15. axilog-0.1.1/crates/axilog-core/src/analysis/downs.rs +77 -0
  16. axilog-0.1.1/crates/axilog-core/src/analysis/healing.rs +689 -0
  17. axilog-0.1.1/crates/axilog-core/src/analysis/health.rs +385 -0
  18. axilog-0.1.1/crates/axilog-core/src/analysis/hit_stats.rs +929 -0
  19. axilog-0.1.1/crates/axilog-core/src/analysis/missiles.rs +645 -0
  20. axilog-0.1.1/crates/axilog-core/src/analysis/mod.rs +731 -0
  21. axilog-0.1.1/crates/axilog-core/src/analysis/replay.rs +940 -0
  22. axilog-0.1.1/crates/axilog-core/src/analysis/rotation.rs +841 -0
  23. axilog-0.1.1/crates/axilog-core/src/analysis/skill_damage.rs +556 -0
  24. axilog-0.1.1/crates/axilog-core/src/analysis/skill_map.rs +592 -0
  25. axilog-0.1.1/crates/axilog-core/src/analysis/support.rs +1098 -0
  26. axilog-0.1.1/crates/axilog-core/src/analysis/timeseries.rs +540 -0
  27. axilog-0.1.1/crates/axilog-core/src/evtc/agent.rs +95 -0
  28. axilog-0.1.1/crates/axilog-core/src/evtc/anonymize.rs +292 -0
  29. axilog-0.1.1/crates/axilog-core/src/evtc/container.rs +287 -0
  30. axilog-0.1.1/crates/axilog-core/src/evtc/event.rs +953 -0
  31. axilog-0.1.1/crates/axilog-core/src/evtc/ext_healing.rs +507 -0
  32. axilog-0.1.1/crates/axilog-core/src/evtc/guid.rs +170 -0
  33. axilog-0.1.1/crates/axilog-core/src/evtc/header.rs +102 -0
  34. axilog-0.1.1/crates/axilog-core/src/evtc/mod.rs +59 -0
  35. axilog-0.1.1/crates/axilog-core/src/evtc/skill.rs +103 -0
  36. axilog-0.1.1/crates/axilog-core/src/lib.rs +4 -0
  37. axilog-0.1.1/crates/axilog-core/src/model/mod.rs +237 -0
  38. axilog-0.1.1/crates/axilog-core/src/wvw/markers.rs +736 -0
  39. axilog-0.1.1/crates/axilog-core/src/wvw/mod.rs +679 -0
  40. axilog-0.1.1/crates/axilog-core/tests/anonymize_fixture.rs +188 -0
  41. axilog-0.1.1/crates/axilog-core/tests/boons_golden.rs +382 -0
  42. axilog-0.1.1/crates/axilog-core/tests/common/mod.rs +88 -0
  43. axilog-0.1.1/crates/axilog-core/tests/contribution_fixture.rs +123 -0
  44. axilog-0.1.1/crates/axilog-core/tests/decode_fixture.rs +41 -0
  45. axilog-0.1.1/crates/axilog-core/tests/defenses_golden.rs +512 -0
  46. axilog-0.1.1/crates/axilog-core/tests/golden.rs +757 -0
  47. axilog-0.1.1/crates/axilog-core/tests/healing_golden.rs +410 -0
  48. axilog-0.1.1/crates/axilog-core/tests/health_fixture.rs +135 -0
  49. axilog-0.1.1/crates/axilog-core/tests/hit_stats_golden.rs +448 -0
  50. axilog-0.1.1/crates/axilog-core/tests/postrework_golden.rs +289 -0
  51. axilog-0.1.1/crates/axilog-core/tests/replay_golden.rs +343 -0
  52. axilog-0.1.1/crates/axilog-core/tests/rotation_golden.rs +477 -0
  53. axilog-0.1.1/crates/axilog-core/tests/skill_damage_golden.rs +388 -0
  54. axilog-0.1.1/crates/axilog-core/tests/skill_map_golden.rs +210 -0
  55. axilog-0.1.1/crates/axilog-core/tests/support_golden.rs +171 -0
  56. axilog-0.1.1/crates/axilog-core/tests/timeseries_golden.rs +307 -0
  57. axilog-0.1.1/crates/axilog-core/tests/wvw_partition.rs +78 -0
  58. axilog-0.1.1/crates/axilog-ei/Cargo.toml +11 -0
  59. axilog-0.1.1/crates/axilog-ei/src/lib.rs +1214 -0
  60. axilog-0.1.1/crates/axilog-ei/tests/ei_golden.rs +543 -0
  61. axilog-0.1.1/crates/axilog-py/Cargo.toml +39 -0
  62. axilog-0.1.1/crates/axilog-py/README.md +129 -0
  63. axilog-0.1.1/crates/axilog-py/axilog.pyi +629 -0
  64. axilog-0.1.1/crates/axilog-py/py.typed +0 -0
  65. axilog-0.1.1/crates/axilog-py/src/lib.rs +236 -0
  66. axilog-0.1.1/crates/axilog-py/tests/test_sdk.py +486 -0
  67. axilog-0.1.1/crates/axilog-schema/Cargo.toml +11 -0
  68. axilog-0.1.1/crates/axilog-schema/src/lib.rs +1316 -0
  69. axilog-0.1.1/pyproject.toml +22 -0
@@ -0,0 +1,1053 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 3
4
+
5
+ [[package]]
6
+ name = "adler2"
7
+ version = "2.0.1"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
10
+
11
+ [[package]]
12
+ name = "aho-corasick"
13
+ version = "1.1.5"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "c982642fa9e8606056828ee9a8505737230110bb1099153c79efe865c59d12ba"
16
+ dependencies = [
17
+ "memchr",
18
+ ]
19
+
20
+ [[package]]
21
+ name = "alloca"
22
+ version = "0.4.0"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "e5a7d05ea6aea7e9e64d25b9156ba2fee3fdd659e34e41063cd2fc7cd020d7f4"
25
+ dependencies = [
26
+ "cc",
27
+ ]
28
+
29
+ [[package]]
30
+ name = "anes"
31
+ version = "0.1.6"
32
+ source = "registry+https://github.com/rust-lang/crates.io-index"
33
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
34
+
35
+ [[package]]
36
+ name = "anstream"
37
+ version = "1.0.0"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
40
+ dependencies = [
41
+ "anstyle",
42
+ "anstyle-parse",
43
+ "anstyle-query",
44
+ "anstyle-wincon",
45
+ "colorchoice",
46
+ "is_terminal_polyfill",
47
+ "utf8parse",
48
+ ]
49
+
50
+ [[package]]
51
+ name = "anstyle"
52
+ version = "1.0.14"
53
+ source = "registry+https://github.com/rust-lang/crates.io-index"
54
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
55
+
56
+ [[package]]
57
+ name = "anstyle-parse"
58
+ version = "1.0.0"
59
+ source = "registry+https://github.com/rust-lang/crates.io-index"
60
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
61
+ dependencies = [
62
+ "utf8parse",
63
+ ]
64
+
65
+ [[package]]
66
+ name = "anstyle-query"
67
+ version = "1.1.5"
68
+ source = "registry+https://github.com/rust-lang/crates.io-index"
69
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
70
+ dependencies = [
71
+ "windows-sys",
72
+ ]
73
+
74
+ [[package]]
75
+ name = "anstyle-wincon"
76
+ version = "3.0.11"
77
+ source = "registry+https://github.com/rust-lang/crates.io-index"
78
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
79
+ dependencies = [
80
+ "anstyle",
81
+ "once_cell_polyfill",
82
+ "windows-sys",
83
+ ]
84
+
85
+ [[package]]
86
+ name = "autocfg"
87
+ version = "1.5.1"
88
+ source = "registry+https://github.com/rust-lang/crates.io-index"
89
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
90
+
91
+ [[package]]
92
+ name = "axilog-cli"
93
+ version = "0.1.1"
94
+ dependencies = [
95
+ "axilog-core",
96
+ "axilog-ei",
97
+ "axilog-html",
98
+ "axilog-schema",
99
+ "clap",
100
+ "criterion",
101
+ "serde_json",
102
+ ]
103
+
104
+ [[package]]
105
+ name = "axilog-core"
106
+ version = "0.1.1"
107
+ dependencies = [
108
+ "flate2",
109
+ "serde_json",
110
+ "sha2",
111
+ "thiserror",
112
+ ]
113
+
114
+ [[package]]
115
+ name = "axilog-ei"
116
+ version = "0.1.1"
117
+ dependencies = [
118
+ "axilog-core",
119
+ "axilog-schema",
120
+ "serde_json",
121
+ ]
122
+
123
+ [[package]]
124
+ name = "axilog-html"
125
+ version = "0.1.1"
126
+ dependencies = [
127
+ "axilog-core",
128
+ "axilog-schema",
129
+ "serde_json",
130
+ ]
131
+
132
+ [[package]]
133
+ name = "axilog-node"
134
+ version = "0.1.1"
135
+ dependencies = [
136
+ "axilog-core",
137
+ "axilog-ei",
138
+ "axilog-schema",
139
+ "napi",
140
+ "napi-build",
141
+ "napi-derive",
142
+ "serde_json",
143
+ ]
144
+
145
+ [[package]]
146
+ name = "axilog-py"
147
+ version = "0.1.1"
148
+ dependencies = [
149
+ "axilog-core",
150
+ "axilog-ei",
151
+ "axilog-schema",
152
+ "pyo3",
153
+ "pythonize",
154
+ "serde_json",
155
+ ]
156
+
157
+ [[package]]
158
+ name = "axilog-schema"
159
+ version = "0.1.1"
160
+ dependencies = [
161
+ "axilog-core",
162
+ "serde",
163
+ "serde_json",
164
+ ]
165
+
166
+ [[package]]
167
+ name = "bitflags"
168
+ version = "2.13.1"
169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
170
+ checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
171
+
172
+ [[package]]
173
+ name = "block-buffer"
174
+ version = "0.10.4"
175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
176
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
177
+ dependencies = [
178
+ "generic-array",
179
+ ]
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.4.2"
190
+ source = "registry+https://github.com/rust-lang/crates.io-index"
191
+ checksum = "5d262e149917187838d5b42777c8253bcb64500067342904e7d429499a6f277e"
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 = "ciborium"
205
+ version = "0.2.2"
206
+ source = "registry+https://github.com/rust-lang/crates.io-index"
207
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
208
+ dependencies = [
209
+ "ciborium-io",
210
+ "ciborium-ll",
211
+ "serde",
212
+ ]
213
+
214
+ [[package]]
215
+ name = "ciborium-io"
216
+ version = "0.2.2"
217
+ source = "registry+https://github.com/rust-lang/crates.io-index"
218
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
219
+
220
+ [[package]]
221
+ name = "ciborium-ll"
222
+ version = "0.2.2"
223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
224
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
225
+ dependencies = [
226
+ "ciborium-io",
227
+ "half",
228
+ ]
229
+
230
+ [[package]]
231
+ name = "clap"
232
+ version = "4.6.6"
233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
234
+ checksum = "473c7e07f409a8d772161724aa8db6a765a2532a70f9667eeb7b49d3d02fbdca"
235
+ dependencies = [
236
+ "clap_builder",
237
+ "clap_derive",
238
+ ]
239
+
240
+ [[package]]
241
+ name = "clap_builder"
242
+ version = "4.6.6"
243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
244
+ checksum = "7b48fea5a88e9ae728a2dcbedbfc0e730f7d60da42e1cb049a83c9fb8b789889"
245
+ dependencies = [
246
+ "anstream",
247
+ "anstyle",
248
+ "clap_lex",
249
+ "strsim",
250
+ ]
251
+
252
+ [[package]]
253
+ name = "clap_derive"
254
+ version = "4.6.4"
255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
256
+ checksum = "d012d2b9d65aca7f18f4d9878a045bc17899bba951561ba5ec3c2ba1eed9a061"
257
+ dependencies = [
258
+ "heck",
259
+ "proc-macro2",
260
+ "quote",
261
+ "syn 3.0.3",
262
+ ]
263
+
264
+ [[package]]
265
+ name = "clap_lex"
266
+ version = "1.1.0"
267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
268
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
269
+
270
+ [[package]]
271
+ name = "colorchoice"
272
+ version = "1.0.5"
273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
274
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
275
+
276
+ [[package]]
277
+ name = "convert_case"
278
+ version = "0.11.0"
279
+ source = "registry+https://github.com/rust-lang/crates.io-index"
280
+ checksum = "affbf0190ed2caf063e3def54ff444b449371d55c58e513a95ab98eca50adb49"
281
+ dependencies = [
282
+ "unicode-segmentation",
283
+ ]
284
+
285
+ [[package]]
286
+ name = "cpufeatures"
287
+ version = "0.2.17"
288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
289
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
290
+ dependencies = [
291
+ "libc",
292
+ ]
293
+
294
+ [[package]]
295
+ name = "crc32fast"
296
+ version = "1.5.0"
297
+ source = "registry+https://github.com/rust-lang/crates.io-index"
298
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
299
+ dependencies = [
300
+ "cfg-if",
301
+ ]
302
+
303
+ [[package]]
304
+ name = "criterion"
305
+ version = "0.8.2"
306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
307
+ checksum = "950046b2aa2492f9a536f5f4f9a3de7b9e2476e575e05bd6c333371add4d98f3"
308
+ dependencies = [
309
+ "alloca",
310
+ "anes",
311
+ "cast",
312
+ "ciborium",
313
+ "clap",
314
+ "criterion-plot",
315
+ "itertools",
316
+ "num-traits",
317
+ "oorandom",
318
+ "page_size",
319
+ "regex",
320
+ "serde",
321
+ "serde_json",
322
+ "tinytemplate",
323
+ "walkdir",
324
+ ]
325
+
326
+ [[package]]
327
+ name = "criterion-plot"
328
+ version = "0.8.2"
329
+ source = "registry+https://github.com/rust-lang/crates.io-index"
330
+ checksum = "d8d80a2f4f5b554395e47b5d8305bc3d27813bacb73493eb1001e8f76dae29ea"
331
+ dependencies = [
332
+ "cast",
333
+ "itertools",
334
+ ]
335
+
336
+ [[package]]
337
+ name = "crunchy"
338
+ version = "0.2.4"
339
+ source = "registry+https://github.com/rust-lang/crates.io-index"
340
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
341
+
342
+ [[package]]
343
+ name = "crypto-common"
344
+ version = "0.1.7"
345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
346
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
347
+ dependencies = [
348
+ "generic-array",
349
+ "typenum",
350
+ ]
351
+
352
+ [[package]]
353
+ name = "ctor"
354
+ version = "1.0.12"
355
+ source = "registry+https://github.com/rust-lang/crates.io-index"
356
+ checksum = "2d83cb7e7a873830708d6b02a78cd36a592c6fa14bf267b68725103b85c0d77f"
357
+
358
+ [[package]]
359
+ name = "digest"
360
+ version = "0.10.7"
361
+ source = "registry+https://github.com/rust-lang/crates.io-index"
362
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
363
+ dependencies = [
364
+ "block-buffer",
365
+ "crypto-common",
366
+ ]
367
+
368
+ [[package]]
369
+ name = "either"
370
+ version = "1.17.0"
371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
372
+ checksum = "9e5e8f6c15a24b9a3ee5efec809ccd006d3b30e8b3bb63c39af737c7f87daa1d"
373
+
374
+ [[package]]
375
+ name = "find-msvc-tools"
376
+ version = "0.1.10"
377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
378
+ checksum = "26b73573e6edcd2af0cdf47bd6cb58f0b3839491263c314eaad1ccf24430e1de"
379
+
380
+ [[package]]
381
+ name = "flate2"
382
+ version = "1.1.9"
383
+ source = "registry+https://github.com/rust-lang/crates.io-index"
384
+ checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
385
+ dependencies = [
386
+ "crc32fast",
387
+ "miniz_oxide",
388
+ ]
389
+
390
+ [[package]]
391
+ name = "futures"
392
+ version = "0.3.33"
393
+ source = "registry+https://github.com/rust-lang/crates.io-index"
394
+ checksum = "a88cf1f829d945f548cf8fec32c61b1f202b6d93b45848602fc02af4b12ad218"
395
+ dependencies = [
396
+ "futures-channel",
397
+ "futures-core",
398
+ "futures-executor",
399
+ "futures-io",
400
+ "futures-sink",
401
+ "futures-task",
402
+ "futures-util",
403
+ ]
404
+
405
+ [[package]]
406
+ name = "futures-channel"
407
+ version = "0.3.33"
408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
409
+ checksum = "262590f4fe6afeb0bc83be1daa64e52657fe185690a958af7f3ad0e92085c5ae"
410
+ dependencies = [
411
+ "futures-core",
412
+ "futures-sink",
413
+ ]
414
+
415
+ [[package]]
416
+ name = "futures-core"
417
+ version = "0.3.33"
418
+ source = "registry+https://github.com/rust-lang/crates.io-index"
419
+ checksum = "2cd50c473c80f6d7c3670a752354b8e569b1a7cbfdc0419ec88e5edad85e0dc7"
420
+
421
+ [[package]]
422
+ name = "futures-executor"
423
+ version = "0.3.33"
424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
425
+ checksum = "6754879cc9f2c66f88c6e5c35344bb0bdb0708b0352b1201815667c7eabc7458"
426
+ dependencies = [
427
+ "futures-core",
428
+ "futures-task",
429
+ "futures-util",
430
+ ]
431
+
432
+ [[package]]
433
+ name = "futures-io"
434
+ version = "0.3.33"
435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
436
+ checksum = "4577ecaa3c4f96589d473f679a71b596316f6641bc350038b962a5daf0085d7a"
437
+
438
+ [[package]]
439
+ name = "futures-macro"
440
+ version = "0.3.33"
441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
442
+ checksum = "2d6d3cde68c518367be28956066ddfef33813991b77a55005a69dae04bf3b10b"
443
+ dependencies = [
444
+ "proc-macro2",
445
+ "quote",
446
+ "syn 2.0.119",
447
+ ]
448
+
449
+ [[package]]
450
+ name = "futures-sink"
451
+ version = "0.3.33"
452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
453
+ checksum = "e34418ac499d6305c2fb5ad0ed2f6ac998c5f8ca209b4510f7f94242c647e307"
454
+
455
+ [[package]]
456
+ name = "futures-task"
457
+ version = "0.3.33"
458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
459
+ checksum = "b231ed28831efb4a61a08580c4bc233ec56bc009f4cd8f52da2c3cb97df0c109"
460
+
461
+ [[package]]
462
+ name = "futures-util"
463
+ version = "0.3.33"
464
+ source = "registry+https://github.com/rust-lang/crates.io-index"
465
+ checksum = "a77a90a256fce34da66415271e30f94ee91c57b04b8a2c042d9cf3220179deaa"
466
+ dependencies = [
467
+ "futures-channel",
468
+ "futures-core",
469
+ "futures-io",
470
+ "futures-macro",
471
+ "futures-sink",
472
+ "futures-task",
473
+ "memchr",
474
+ "pin-project-lite",
475
+ "slab",
476
+ ]
477
+
478
+ [[package]]
479
+ name = "generic-array"
480
+ version = "0.14.7"
481
+ source = "registry+https://github.com/rust-lang/crates.io-index"
482
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
483
+ dependencies = [
484
+ "typenum",
485
+ "version_check",
486
+ ]
487
+
488
+ [[package]]
489
+ name = "half"
490
+ version = "2.7.1"
491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
492
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
493
+ dependencies = [
494
+ "cfg-if",
495
+ "crunchy",
496
+ "zerocopy",
497
+ ]
498
+
499
+ [[package]]
500
+ name = "heck"
501
+ version = "0.5.0"
502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
503
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
504
+
505
+ [[package]]
506
+ name = "is_terminal_polyfill"
507
+ version = "1.70.2"
508
+ source = "registry+https://github.com/rust-lang/crates.io-index"
509
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
510
+
511
+ [[package]]
512
+ name = "itertools"
513
+ version = "0.13.0"
514
+ source = "registry+https://github.com/rust-lang/crates.io-index"
515
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
516
+ dependencies = [
517
+ "either",
518
+ ]
519
+
520
+ [[package]]
521
+ name = "itoa"
522
+ version = "1.0.18"
523
+ source = "registry+https://github.com/rust-lang/crates.io-index"
524
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
525
+
526
+ [[package]]
527
+ name = "libc"
528
+ version = "0.2.189"
529
+ source = "registry+https://github.com/rust-lang/crates.io-index"
530
+ checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
531
+
532
+ [[package]]
533
+ name = "libloading"
534
+ version = "0.9.0"
535
+ source = "registry+https://github.com/rust-lang/crates.io-index"
536
+ checksum = "754ca22de805bb5744484a5b151a9e1a8e837d5dc232c2d7d8c2e3492edc8b60"
537
+ dependencies = [
538
+ "cfg-if",
539
+ "windows-link",
540
+ ]
541
+
542
+ [[package]]
543
+ name = "memchr"
544
+ version = "2.8.3"
545
+ source = "registry+https://github.com/rust-lang/crates.io-index"
546
+ checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
547
+
548
+ [[package]]
549
+ name = "miniz_oxide"
550
+ version = "0.8.9"
551
+ source = "registry+https://github.com/rust-lang/crates.io-index"
552
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
553
+ dependencies = [
554
+ "adler2",
555
+ "simd-adler32",
556
+ ]
557
+
558
+ [[package]]
559
+ name = "napi"
560
+ version = "3.12.0"
561
+ source = "registry+https://github.com/rust-lang/crates.io-index"
562
+ checksum = "6f71d6bc097c4a6eb853c3f24991ab8c9f50f57d1f719e305175541482217e36"
563
+ dependencies = [
564
+ "bitflags",
565
+ "ctor",
566
+ "futures",
567
+ "napi-build",
568
+ "napi-sys",
569
+ "nohash-hasher",
570
+ "rustc-hash",
571
+ "serde",
572
+ "serde_json",
573
+ ]
574
+
575
+ [[package]]
576
+ name = "napi-build"
577
+ version = "2.4.0"
578
+ source = "registry+https://github.com/rust-lang/crates.io-index"
579
+ checksum = "5282704fbe8d49b0cf8b08e3f33233416a528658f205c7e5ace63b582de0b11c"
580
+
581
+ [[package]]
582
+ name = "napi-derive"
583
+ version = "3.6.2"
584
+ source = "registry+https://github.com/rust-lang/crates.io-index"
585
+ checksum = "6d9002b2940f0184444754546e0fcd15182f56948e6f381968b019d549387c42"
586
+ dependencies = [
587
+ "convert_case",
588
+ "ctor",
589
+ "napi-derive-backend",
590
+ "proc-macro2",
591
+ "quote",
592
+ "syn 2.0.119",
593
+ ]
594
+
595
+ [[package]]
596
+ name = "napi-derive-backend"
597
+ version = "6.1.1"
598
+ source = "registry+https://github.com/rust-lang/crates.io-index"
599
+ checksum = "d60b5d773ad46c698c8cc2cd9fde0b283d39cbb7f71c04bee633c7bdba4423bd"
600
+ dependencies = [
601
+ "convert_case",
602
+ "proc-macro2",
603
+ "quote",
604
+ "semver",
605
+ "syn 2.0.119",
606
+ ]
607
+
608
+ [[package]]
609
+ name = "napi-sys"
610
+ version = "3.3.0"
611
+ source = "registry+https://github.com/rust-lang/crates.io-index"
612
+ checksum = "85fbf1fa9f1babfe396d74bbbf52b3643770243e8f5b0b46715d4caf7f0dfc9a"
613
+ dependencies = [
614
+ "libloading",
615
+ ]
616
+
617
+ [[package]]
618
+ name = "nohash-hasher"
619
+ version = "0.2.0"
620
+ source = "registry+https://github.com/rust-lang/crates.io-index"
621
+ checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451"
622
+
623
+ [[package]]
624
+ name = "num-traits"
625
+ version = "0.2.19"
626
+ source = "registry+https://github.com/rust-lang/crates.io-index"
627
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
628
+ dependencies = [
629
+ "autocfg",
630
+ ]
631
+
632
+ [[package]]
633
+ name = "once_cell"
634
+ version = "1.21.4"
635
+ source = "registry+https://github.com/rust-lang/crates.io-index"
636
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
637
+
638
+ [[package]]
639
+ name = "once_cell_polyfill"
640
+ version = "1.70.2"
641
+ source = "registry+https://github.com/rust-lang/crates.io-index"
642
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
643
+
644
+ [[package]]
645
+ name = "oorandom"
646
+ version = "11.1.5"
647
+ source = "registry+https://github.com/rust-lang/crates.io-index"
648
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
649
+
650
+ [[package]]
651
+ name = "page_size"
652
+ version = "0.6.0"
653
+ source = "registry+https://github.com/rust-lang/crates.io-index"
654
+ checksum = "30d5b2194ed13191c1999ae0704b7839fb18384fa22e49b57eeaa97d79ce40da"
655
+ dependencies = [
656
+ "libc",
657
+ "winapi",
658
+ ]
659
+
660
+ [[package]]
661
+ name = "pin-project-lite"
662
+ version = "0.2.17"
663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
664
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
665
+
666
+ [[package]]
667
+ name = "portable-atomic"
668
+ version = "1.14.0"
669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
670
+ checksum = "3d20d5497ef88037a52ff98267d066e7f11fcc5e99bbfbd58a42336193aacec3"
671
+
672
+ [[package]]
673
+ name = "proc-macro2"
674
+ version = "1.0.107"
675
+ source = "registry+https://github.com/rust-lang/crates.io-index"
676
+ checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
677
+ dependencies = [
678
+ "unicode-ident",
679
+ ]
680
+
681
+ [[package]]
682
+ name = "pyo3"
683
+ version = "0.29.2"
684
+ source = "registry+https://github.com/rust-lang/crates.io-index"
685
+ checksum = "4688ddedf473e32662b9b067670129a8afb8c18e351482c70d62ba4a88171e8b"
686
+ dependencies = [
687
+ "libc",
688
+ "once_cell",
689
+ "portable-atomic",
690
+ "pyo3-build-config",
691
+ "pyo3-ffi",
692
+ "pyo3-macros",
693
+ ]
694
+
695
+ [[package]]
696
+ name = "pyo3-build-config"
697
+ version = "0.29.2"
698
+ source = "registry+https://github.com/rust-lang/crates.io-index"
699
+ checksum = "f41027e41b4bd03f6e60f9f417fe24a6341a6bb744edd62b6f709f2a52ea30e9"
700
+ dependencies = [
701
+ "target-lexicon",
702
+ ]
703
+
704
+ [[package]]
705
+ name = "pyo3-ffi"
706
+ version = "0.29.2"
707
+ source = "registry+https://github.com/rust-lang/crates.io-index"
708
+ checksum = "e591a95526fead067432c3b3a33fc74770b87b1e04e73671090d9c2055a2b327"
709
+ dependencies = [
710
+ "libc",
711
+ "pyo3-build-config",
712
+ ]
713
+
714
+ [[package]]
715
+ name = "pyo3-macros"
716
+ version = "0.29.2"
717
+ source = "registry+https://github.com/rust-lang/crates.io-index"
718
+ checksum = "73225868fc1cd84eef2c3c230ddb91273bf1de46aeb8a4248da76d32a0924a1c"
719
+ dependencies = [
720
+ "proc-macro2",
721
+ "pyo3-macros-backend",
722
+ "quote",
723
+ "syn 2.0.119",
724
+ ]
725
+
726
+ [[package]]
727
+ name = "pyo3-macros-backend"
728
+ version = "0.29.2"
729
+ source = "registry+https://github.com/rust-lang/crates.io-index"
730
+ checksum = "571575aa3749fa6216757dd47d2a3e7ef360f329a40f0666a9fbd14889024952"
731
+ dependencies = [
732
+ "heck",
733
+ "proc-macro2",
734
+ "quote",
735
+ "syn 2.0.119",
736
+ ]
737
+
738
+ [[package]]
739
+ name = "pythonize"
740
+ version = "0.29.0"
741
+ source = "registry+https://github.com/rust-lang/crates.io-index"
742
+ checksum = "6ec376e1216e0c929a74964ce2020012a1a39f32d80e78aa688721219ea7fb89"
743
+ dependencies = [
744
+ "pyo3",
745
+ "serde",
746
+ ]
747
+
748
+ [[package]]
749
+ name = "quote"
750
+ version = "1.0.47"
751
+ source = "registry+https://github.com/rust-lang/crates.io-index"
752
+ checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
753
+ dependencies = [
754
+ "proc-macro2",
755
+ ]
756
+
757
+ [[package]]
758
+ name = "regex"
759
+ version = "1.13.1"
760
+ source = "registry+https://github.com/rust-lang/crates.io-index"
761
+ checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d"
762
+ dependencies = [
763
+ "aho-corasick",
764
+ "memchr",
765
+ "regex-automata",
766
+ "regex-syntax",
767
+ ]
768
+
769
+ [[package]]
770
+ name = "regex-automata"
771
+ version = "0.4.18"
772
+ source = "registry+https://github.com/rust-lang/crates.io-index"
773
+ checksum = "ad8553b9b26413251cbf30e620595c7a41b3887f03da04579c0e6b0d6a06b4b2"
774
+ dependencies = [
775
+ "aho-corasick",
776
+ "memchr",
777
+ "regex-syntax",
778
+ ]
779
+
780
+ [[package]]
781
+ name = "regex-syntax"
782
+ version = "0.8.11"
783
+ source = "registry+https://github.com/rust-lang/crates.io-index"
784
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
785
+
786
+ [[package]]
787
+ name = "rustc-hash"
788
+ version = "2.1.3"
789
+ source = "registry+https://github.com/rust-lang/crates.io-index"
790
+ checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
791
+
792
+ [[package]]
793
+ name = "same-file"
794
+ version = "1.0.6"
795
+ source = "registry+https://github.com/rust-lang/crates.io-index"
796
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
797
+ dependencies = [
798
+ "winapi-util",
799
+ ]
800
+
801
+ [[package]]
802
+ name = "semver"
803
+ version = "1.0.28"
804
+ source = "registry+https://github.com/rust-lang/crates.io-index"
805
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
806
+
807
+ [[package]]
808
+ name = "serde"
809
+ version = "1.0.229"
810
+ source = "registry+https://github.com/rust-lang/crates.io-index"
811
+ checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
812
+ dependencies = [
813
+ "serde_core",
814
+ "serde_derive",
815
+ ]
816
+
817
+ [[package]]
818
+ name = "serde_core"
819
+ version = "1.0.229"
820
+ source = "registry+https://github.com/rust-lang/crates.io-index"
821
+ checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
822
+ dependencies = [
823
+ "serde_derive",
824
+ ]
825
+
826
+ [[package]]
827
+ name = "serde_derive"
828
+ version = "1.0.229"
829
+ source = "registry+https://github.com/rust-lang/crates.io-index"
830
+ checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
831
+ dependencies = [
832
+ "proc-macro2",
833
+ "quote",
834
+ "syn 3.0.3",
835
+ ]
836
+
837
+ [[package]]
838
+ name = "serde_json"
839
+ version = "1.0.151"
840
+ source = "registry+https://github.com/rust-lang/crates.io-index"
841
+ checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
842
+ dependencies = [
843
+ "itoa",
844
+ "memchr",
845
+ "serde",
846
+ "serde_core",
847
+ "zmij",
848
+ ]
849
+
850
+ [[package]]
851
+ name = "sha2"
852
+ version = "0.10.9"
853
+ source = "registry+https://github.com/rust-lang/crates.io-index"
854
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
855
+ dependencies = [
856
+ "cfg-if",
857
+ "cpufeatures",
858
+ "digest",
859
+ ]
860
+
861
+ [[package]]
862
+ name = "shlex"
863
+ version = "2.0.1"
864
+ source = "registry+https://github.com/rust-lang/crates.io-index"
865
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
866
+
867
+ [[package]]
868
+ name = "simd-adler32"
869
+ version = "0.3.10"
870
+ source = "registry+https://github.com/rust-lang/crates.io-index"
871
+ checksum = "3a219298ac11a56ea9a6d2120044824d6f01aeb034955e7af7bc16858527deea"
872
+
873
+ [[package]]
874
+ name = "slab"
875
+ version = "0.4.12"
876
+ source = "registry+https://github.com/rust-lang/crates.io-index"
877
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
878
+
879
+ [[package]]
880
+ name = "strsim"
881
+ version = "0.11.1"
882
+ source = "registry+https://github.com/rust-lang/crates.io-index"
883
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
884
+
885
+ [[package]]
886
+ name = "syn"
887
+ version = "2.0.119"
888
+ source = "registry+https://github.com/rust-lang/crates.io-index"
889
+ checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
890
+ dependencies = [
891
+ "proc-macro2",
892
+ "quote",
893
+ "unicode-ident",
894
+ ]
895
+
896
+ [[package]]
897
+ name = "syn"
898
+ version = "3.0.3"
899
+ source = "registry+https://github.com/rust-lang/crates.io-index"
900
+ checksum = "53e9bae58849f64dfa4f5d5ae372c8341f7305f82a3868709269343628b659a3"
901
+ dependencies = [
902
+ "proc-macro2",
903
+ "quote",
904
+ "unicode-ident",
905
+ ]
906
+
907
+ [[package]]
908
+ name = "target-lexicon"
909
+ version = "0.13.5"
910
+ source = "registry+https://github.com/rust-lang/crates.io-index"
911
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
912
+
913
+ [[package]]
914
+ name = "thiserror"
915
+ version = "1.0.69"
916
+ source = "registry+https://github.com/rust-lang/crates.io-index"
917
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
918
+ dependencies = [
919
+ "thiserror-impl",
920
+ ]
921
+
922
+ [[package]]
923
+ name = "thiserror-impl"
924
+ version = "1.0.69"
925
+ source = "registry+https://github.com/rust-lang/crates.io-index"
926
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
927
+ dependencies = [
928
+ "proc-macro2",
929
+ "quote",
930
+ "syn 2.0.119",
931
+ ]
932
+
933
+ [[package]]
934
+ name = "tinytemplate"
935
+ version = "1.2.1"
936
+ source = "registry+https://github.com/rust-lang/crates.io-index"
937
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
938
+ dependencies = [
939
+ "serde",
940
+ "serde_json",
941
+ ]
942
+
943
+ [[package]]
944
+ name = "typenum"
945
+ version = "1.20.1"
946
+ source = "registry+https://github.com/rust-lang/crates.io-index"
947
+ checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
948
+
949
+ [[package]]
950
+ name = "unicode-ident"
951
+ version = "1.0.24"
952
+ source = "registry+https://github.com/rust-lang/crates.io-index"
953
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
954
+
955
+ [[package]]
956
+ name = "unicode-segmentation"
957
+ version = "1.13.3"
958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
959
+ checksum = "c6f5d3c3b1bf09027a88a6bc961fc00497d651009560b5463668dc81b0fa87a8"
960
+
961
+ [[package]]
962
+ name = "utf8parse"
963
+ version = "0.2.2"
964
+ source = "registry+https://github.com/rust-lang/crates.io-index"
965
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
966
+
967
+ [[package]]
968
+ name = "version_check"
969
+ version = "0.9.5"
970
+ source = "registry+https://github.com/rust-lang/crates.io-index"
971
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
972
+
973
+ [[package]]
974
+ name = "walkdir"
975
+ version = "2.5.0"
976
+ source = "registry+https://github.com/rust-lang/crates.io-index"
977
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
978
+ dependencies = [
979
+ "same-file",
980
+ "winapi-util",
981
+ ]
982
+
983
+ [[package]]
984
+ name = "winapi"
985
+ version = "0.3.9"
986
+ source = "registry+https://github.com/rust-lang/crates.io-index"
987
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
988
+ dependencies = [
989
+ "winapi-i686-pc-windows-gnu",
990
+ "winapi-x86_64-pc-windows-gnu",
991
+ ]
992
+
993
+ [[package]]
994
+ name = "winapi-i686-pc-windows-gnu"
995
+ version = "0.4.0"
996
+ source = "registry+https://github.com/rust-lang/crates.io-index"
997
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
998
+
999
+ [[package]]
1000
+ name = "winapi-util"
1001
+ version = "0.1.11"
1002
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1003
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
1004
+ dependencies = [
1005
+ "windows-sys",
1006
+ ]
1007
+
1008
+ [[package]]
1009
+ name = "winapi-x86_64-pc-windows-gnu"
1010
+ version = "0.4.0"
1011
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1012
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
1013
+
1014
+ [[package]]
1015
+ name = "windows-link"
1016
+ version = "0.2.1"
1017
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1018
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1019
+
1020
+ [[package]]
1021
+ name = "windows-sys"
1022
+ version = "0.61.2"
1023
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1024
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1025
+ dependencies = [
1026
+ "windows-link",
1027
+ ]
1028
+
1029
+ [[package]]
1030
+ name = "zerocopy"
1031
+ version = "0.8.56"
1032
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1033
+ checksum = "556764e583adb45a9f8d413c2a147fa7e8d821e48e12b14fd560b607998b75eb"
1034
+ dependencies = [
1035
+ "zerocopy-derive",
1036
+ ]
1037
+
1038
+ [[package]]
1039
+ name = "zerocopy-derive"
1040
+ version = "0.8.56"
1041
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1042
+ checksum = "f2ab42fc20575779bd240faa45f94a74256f755c0fa9e89f0ede20d91d0cdfc1"
1043
+ dependencies = [
1044
+ "proc-macro2",
1045
+ "quote",
1046
+ "syn 2.0.119",
1047
+ ]
1048
+
1049
+ [[package]]
1050
+ name = "zmij"
1051
+ version = "1.0.23"
1052
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1053
+ checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"