python-lancelot 0.9.10__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 (105) hide show
  1. python_lancelot-0.9.10/Cargo.lock +2105 -0
  2. python_lancelot-0.9.10/Cargo.toml +27 -0
  3. python_lancelot-0.9.10/LICENSE.txt +202 -0
  4. python_lancelot-0.9.10/PKG-INFO +50 -0
  5. python_lancelot-0.9.10/README.md +16 -0
  6. python_lancelot-0.9.10/core/Cargo.toml +66 -0
  7. python_lancelot-0.9.10/core/README.md +12 -0
  8. python_lancelot-0.9.10/core/benches/core.rs +104 -0
  9. python_lancelot-0.9.10/core/src/analysis/cfg/code_references.rs +168 -0
  10. python_lancelot-0.9.10/core/src/analysis/cfg/flow.rs +305 -0
  11. python_lancelot-0.9.10/core/src/analysis/cfg/mod.rs +1234 -0
  12. python_lancelot-0.9.10/core/src/analysis/cfg/noret.rs +125 -0
  13. python_lancelot-0.9.10/core/src/analysis/cfg/thunk.rs +107 -0
  14. python_lancelot-0.9.10/core/src/analysis/dis.rs +591 -0
  15. python_lancelot-0.9.10/core/src/analysis/flirt.rs +209 -0
  16. python_lancelot-0.9.10/core/src/analysis/heuristics.rs +231 -0
  17. python_lancelot-0.9.10/core/src/analysis/mod.rs +9 -0
  18. python_lancelot-0.9.10/core/src/analysis/pe/call_targets.rs +187 -0
  19. python_lancelot-0.9.10/core/src/analysis/pe/control_flow_guard.rs +223 -0
  20. python_lancelot-0.9.10/core/src/analysis/pe/entrypoints.rs +71 -0
  21. python_lancelot-0.9.10/core/src/analysis/pe/exports.rs +89 -0
  22. python_lancelot-0.9.10/core/src/analysis/pe/mod.rs +294 -0
  23. python_lancelot-0.9.10/core/src/analysis/pe/noret_imports.rs +131 -0
  24. python_lancelot-0.9.10/core/src/analysis/pe/patterns.rs +207 -0
  25. python_lancelot-0.9.10/core/src/analysis/pe/pointers.rs +183 -0
  26. python_lancelot-0.9.10/core/src/analysis/pe/runtime_functions.rs +266 -0
  27. python_lancelot-0.9.10/core/src/analysis/pe/safeseh.rs +140 -0
  28. python_lancelot-0.9.10/core/src/arch.rs +14 -0
  29. python_lancelot-0.9.10/core/src/aspace.rs +407 -0
  30. python_lancelot-0.9.10/core/src/config.rs +2 -0
  31. python_lancelot-0.9.10/core/src/emu/mmu.rs +877 -0
  32. python_lancelot-0.9.10/core/src/emu/mod.rs +1807 -0
  33. python_lancelot-0.9.10/core/src/emu/plat/mod.rs +1 -0
  34. python_lancelot-0.9.10/core/src/emu/plat/win/api.rs +82 -0
  35. python_lancelot-0.9.10/core/src/emu/plat/win/mod.rs +113 -0
  36. python_lancelot-0.9.10/core/src/emu/plat/win/win32.rs +294 -0
  37. python_lancelot-0.9.10/core/src/emu/plat/win/win64.rs +105 -0
  38. python_lancelot-0.9.10/core/src/emu/reg.rs +288 -0
  39. python_lancelot-0.9.10/core/src/lib.rs +26 -0
  40. python_lancelot-0.9.10/core/src/loader/coff/mod.rs +1089 -0
  41. python_lancelot-0.9.10/core/src/loader/mod.rs +10 -0
  42. python_lancelot-0.9.10/core/src/loader/pe/imports.rs +222 -0
  43. python_lancelot-0.9.10/core/src/loader/pe/mod.rs +426 -0
  44. python_lancelot-0.9.10/core/src/loader/pe/reloc.rs +251 -0
  45. python_lancelot-0.9.10/core/src/loader/pe/rsrc.rs +314 -0
  46. python_lancelot-0.9.10/core/src/module.rs +139 -0
  47. python_lancelot-0.9.10/core/src/pagemap.rs +466 -0
  48. python_lancelot-0.9.10/core/src/rsrc.rs +110 -0
  49. python_lancelot-0.9.10/core/src/test.rs +303 -0
  50. python_lancelot-0.9.10/core/src/util.rs +262 -0
  51. python_lancelot-0.9.10/core/src/workspace/config.rs +121 -0
  52. python_lancelot-0.9.10/core/src/workspace/export/binexport2.proto +415 -0
  53. python_lancelot-0.9.10/core/src/workspace/export/binexport2.rs +1008 -0
  54. python_lancelot-0.9.10/core/src/workspace/export/mod.rs +2 -0
  55. python_lancelot-0.9.10/core/src/workspace/export/pb.rs +561 -0
  56. python_lancelot-0.9.10/core/src/workspace/formatter.rs +507 -0
  57. python_lancelot-0.9.10/core/src/workspace/mod.rs +746 -0
  58. python_lancelot-0.9.10/flirt/Cargo.toml +35 -0
  59. python_lancelot-0.9.10/flirt/README.md +109 -0
  60. python_lancelot-0.9.10/flirt/benches/fragments.txt +172 -0
  61. python_lancelot-0.9.10/flirt/benches/patterns.txt +34503 -0
  62. python_lancelot-0.9.10/flirt/benches/regex.rs +40123 -0
  63. python_lancelot-0.9.10/flirt/sig.bt +324 -0
  64. python_lancelot-0.9.10/flirt/sigs/pat/__EH_prolog3.pat +5 -0
  65. python_lancelot-0.9.10/flirt/sigs/sig/libcmt_15_msvc_x86.dumpsig +748 -0
  66. python_lancelot-0.9.10/flirt/sigs/sig/libcmt_15_msvc_x86.sig +0 -0
  67. python_lancelot-0.9.10/flirt/sigs/yara/__EH_prolog3.yara +12 -0
  68. python_lancelot-0.9.10/flirt/src/bin/decompress_sig.rs +63 -0
  69. python_lancelot-0.9.10/flirt/src/bin/parsepat.rs +58 -0
  70. python_lancelot-0.9.10/flirt/src/bin/sig2pat.rs +58 -0
  71. python_lancelot-0.9.10/flirt/src/decision_tree.rs +675 -0
  72. python_lancelot-0.9.10/flirt/src/lib.rs +778 -0
  73. python_lancelot-0.9.10/flirt/src/pat/mod.rs +390 -0
  74. python_lancelot-0.9.10/flirt/src/pattern_set.rs +300 -0
  75. python_lancelot-0.9.10/flirt/src/sig/mod.rs +674 -0
  76. python_lancelot-0.9.10/pylancelot/.env/devshell.toml +37 -0
  77. python_lancelot-0.9.10/pylancelot/.env/flake.lock +96 -0
  78. python_lancelot-0.9.10/pylancelot/.env/flake.nix +35 -0
  79. python_lancelot-0.9.10/pylancelot/.envrc +4 -0
  80. python_lancelot-0.9.10/pylancelot/.gitattributes +3 -0
  81. python_lancelot-0.9.10/pylancelot/.gitignore +2 -0
  82. python_lancelot-0.9.10/pylancelot/Cargo.toml +23 -0
  83. python_lancelot-0.9.10/pylancelot/LICENSE.txt +202 -0
  84. python_lancelot-0.9.10/pylancelot/README.md +16 -0
  85. python_lancelot-0.9.10/pylancelot/justfile +17 -0
  86. python_lancelot-0.9.10/pylancelot/python/lancelot/__init__.py +14 -0
  87. python_lancelot-0.9.10/pylancelot/python/lancelot/be2utils/__init__.py +340 -0
  88. python_lancelot-0.9.10/pylancelot/python/lancelot/be2utils/binexport2_pb2.py +73 -0
  89. python_lancelot-0.9.10/pylancelot/python/lancelot/be2utils/binexport2_pb2.pyi +1128 -0
  90. python_lancelot-0.9.10/pylancelot/scripts/generate-binexport2.py +13 -0
  91. python_lancelot-0.9.10/pylancelot/scripts/inspect-workspace.py +510 -0
  92. python_lancelot-0.9.10/pylancelot/scripts/list-functions.py +15 -0
  93. python_lancelot-0.9.10/pylancelot/scripts/show-strings-by-function.py +155 -0
  94. python_lancelot-0.9.10/pylancelot/setup.cfg +2 -0
  95. python_lancelot-0.9.10/pylancelot/src/lib.rs +112 -0
  96. python_lancelot-0.9.10/pylancelot/tests/conftest.py +23 -0
  97. python_lancelot-0.9.10/pylancelot/tests/data/.gitignore +8 -0
  98. python_lancelot-0.9.10/pylancelot/tests/data/altsvc.c.obj +0 -0
  99. python_lancelot-0.9.10/pylancelot/tests/data/k32.dll_ +0 -0
  100. python_lancelot-0.9.10/pylancelot/tests/test_pylancelot.py +36 -0
  101. python_lancelot-0.9.10/pyproject.toml +64 -0
  102. python_lancelot-0.9.10/python/lancelot/__init__.py +14 -0
  103. python_lancelot-0.9.10/python/lancelot/be2utils/__init__.py +340 -0
  104. python_lancelot-0.9.10/python/lancelot/be2utils/binexport2_pb2.py +73 -0
  105. python_lancelot-0.9.10/python/lancelot/be2utils/binexport2_pb2.pyi +1128 -0
@@ -0,0 +1,2105 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "addr2line"
7
+ version = "0.25.1"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "1b5d307320b3181d6d7954e663bd7c774a838b8220fe0593c86d9fb09f498b4b"
10
+ dependencies = [
11
+ "gimli",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "adler2"
16
+ version = "2.0.1"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
19
+
20
+ [[package]]
21
+ name = "adler32"
22
+ version = "1.2.0"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234"
25
+
26
+ [[package]]
27
+ name = "aho-corasick"
28
+ version = "1.1.4"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
31
+ dependencies = [
32
+ "memchr",
33
+ ]
34
+
35
+ [[package]]
36
+ name = "android_system_properties"
37
+ version = "0.1.5"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
40
+ dependencies = [
41
+ "libc",
42
+ ]
43
+
44
+ [[package]]
45
+ name = "anes"
46
+ version = "0.1.6"
47
+ source = "registry+https://github.com/rust-lang/crates.io-index"
48
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
49
+
50
+ [[package]]
51
+ name = "ansi_term"
52
+ version = "0.12.1"
53
+ source = "registry+https://github.com/rust-lang/crates.io-index"
54
+ checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
55
+ dependencies = [
56
+ "winapi",
57
+ ]
58
+
59
+ [[package]]
60
+ name = "anstream"
61
+ version = "0.6.21"
62
+ source = "registry+https://github.com/rust-lang/crates.io-index"
63
+ checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
64
+ dependencies = [
65
+ "anstyle",
66
+ "anstyle-parse",
67
+ "anstyle-query",
68
+ "anstyle-wincon",
69
+ "colorchoice",
70
+ "is_terminal_polyfill",
71
+ "utf8parse",
72
+ ]
73
+
74
+ [[package]]
75
+ name = "anstyle"
76
+ version = "1.0.13"
77
+ source = "registry+https://github.com/rust-lang/crates.io-index"
78
+ checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
79
+
80
+ [[package]]
81
+ name = "anstyle-parse"
82
+ version = "0.2.7"
83
+ source = "registry+https://github.com/rust-lang/crates.io-index"
84
+ checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
85
+ dependencies = [
86
+ "utf8parse",
87
+ ]
88
+
89
+ [[package]]
90
+ name = "anstyle-query"
91
+ version = "1.1.5"
92
+ source = "registry+https://github.com/rust-lang/crates.io-index"
93
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
94
+ dependencies = [
95
+ "windows-sys 0.61.2",
96
+ ]
97
+
98
+ [[package]]
99
+ name = "anstyle-wincon"
100
+ version = "3.0.11"
101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
102
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
103
+ dependencies = [
104
+ "anstyle",
105
+ "once_cell_polyfill",
106
+ "windows-sys 0.61.2",
107
+ ]
108
+
109
+ [[package]]
110
+ name = "anyhow"
111
+ version = "1.0.100"
112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
113
+ checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
114
+
115
+ [[package]]
116
+ name = "ar"
117
+ version = "0.9.0"
118
+ source = "git+https://github.com/mdsteele/rust-ar?rev=03d664b#03d664bddb8cc5ebff598e715357b656f75221c1"
119
+
120
+ [[package]]
121
+ name = "arc-swap"
122
+ version = "1.8.0"
123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
124
+ checksum = "51d03449bb8ca2cc2ef70869af31463d1ae5ccc8fa3e334b307203fbf815207e"
125
+ dependencies = [
126
+ "rustversion",
127
+ ]
128
+
129
+ [[package]]
130
+ name = "async-trait"
131
+ version = "0.1.89"
132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
133
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
134
+ dependencies = [
135
+ "proc-macro2",
136
+ "quote",
137
+ "syn 2.0.114",
138
+ ]
139
+
140
+ [[package]]
141
+ name = "atty"
142
+ version = "0.2.14"
143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
144
+ checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
145
+ dependencies = [
146
+ "hermit-abi 0.1.19",
147
+ "libc",
148
+ "winapi",
149
+ ]
150
+
151
+ [[package]]
152
+ name = "autocfg"
153
+ version = "1.5.0"
154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
155
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
156
+
157
+ [[package]]
158
+ name = "backtrace"
159
+ version = "0.3.76"
160
+ source = "registry+https://github.com/rust-lang/crates.io-index"
161
+ checksum = "bb531853791a215d7c62a30daf0dde835f381ab5de4589cfe7c649d2cbe92bd6"
162
+ dependencies = [
163
+ "addr2line",
164
+ "cfg-if",
165
+ "libc",
166
+ "miniz_oxide",
167
+ "object 0.37.3",
168
+ "rustc-demangle",
169
+ "windows-link",
170
+ ]
171
+
172
+ [[package]]
173
+ name = "better-panic"
174
+ version = "0.3.0"
175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
176
+ checksum = "6fa9e1d11a268684cbd90ed36370d7577afb6c62d912ddff5c15fc34343e5036"
177
+ dependencies = [
178
+ "backtrace",
179
+ "console",
180
+ ]
181
+
182
+ [[package]]
183
+ name = "bindgen"
184
+ version = "0.71.1"
185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
186
+ checksum = "5f58bf3d7db68cfbac37cfc485a8d711e87e064c3d0fe0435b92f7a407f9d6b3"
187
+ dependencies = [
188
+ "bitflags 2.10.0",
189
+ "cexpr",
190
+ "clang-sys",
191
+ "itertools 0.13.0",
192
+ "log",
193
+ "prettyplease",
194
+ "proc-macro2",
195
+ "quote",
196
+ "regex",
197
+ "rustc-hash",
198
+ "shlex",
199
+ "syn 2.0.114",
200
+ ]
201
+
202
+ [[package]]
203
+ name = "bitflags"
204
+ version = "1.3.2"
205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
206
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
207
+
208
+ [[package]]
209
+ name = "bitflags"
210
+ version = "2.10.0"
211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
212
+ checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
213
+
214
+ [[package]]
215
+ name = "bitvec"
216
+ version = "1.0.1"
217
+ source = "registry+https://github.com/rust-lang/crates.io-index"
218
+ checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c"
219
+ dependencies = [
220
+ "funty",
221
+ "radium",
222
+ "tap",
223
+ "wyz",
224
+ ]
225
+
226
+ [[package]]
227
+ name = "block-buffer"
228
+ version = "0.10.4"
229
+ source = "registry+https://github.com/rust-lang/crates.io-index"
230
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
231
+ dependencies = [
232
+ "generic-array",
233
+ ]
234
+
235
+ [[package]]
236
+ name = "borsh"
237
+ version = "1.6.0"
238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
239
+ checksum = "d1da5ab77c1437701eeff7c88d968729e7766172279eab0676857b3d63af7a6f"
240
+ dependencies = [
241
+ "cfg_aliases",
242
+ ]
243
+
244
+ [[package]]
245
+ name = "bumpalo"
246
+ version = "3.19.1"
247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
248
+ checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510"
249
+
250
+ [[package]]
251
+ name = "byteorder"
252
+ version = "1.5.0"
253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
254
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
255
+
256
+ [[package]]
257
+ name = "bytes"
258
+ version = "1.11.0"
259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
260
+ checksum = "b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3"
261
+
262
+ [[package]]
263
+ name = "cast"
264
+ version = "0.3.0"
265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
266
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
267
+
268
+ [[package]]
269
+ name = "cc"
270
+ version = "1.2.51"
271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
272
+ checksum = "7a0aeaff4ff1a90589618835a598e545176939b97874f7abc7851caa0618f203"
273
+ dependencies = [
274
+ "find-msvc-tools",
275
+ "shlex",
276
+ ]
277
+
278
+ [[package]]
279
+ name = "cexpr"
280
+ version = "0.6.0"
281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
282
+ checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
283
+ dependencies = [
284
+ "nom",
285
+ ]
286
+
287
+ [[package]]
288
+ name = "cfg-if"
289
+ version = "1.0.4"
290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
291
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
292
+
293
+ [[package]]
294
+ name = "cfg_aliases"
295
+ version = "0.2.1"
296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
297
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
298
+
299
+ [[package]]
300
+ name = "chrono"
301
+ version = "0.4.42"
302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
303
+ checksum = "145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2"
304
+ dependencies = [
305
+ "iana-time-zone",
306
+ "js-sys",
307
+ "num-traits",
308
+ "wasm-bindgen",
309
+ "windows-link",
310
+ ]
311
+
312
+ [[package]]
313
+ name = "ciborium"
314
+ version = "0.2.2"
315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
316
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
317
+ dependencies = [
318
+ "ciborium-io",
319
+ "ciborium-ll",
320
+ "serde",
321
+ ]
322
+
323
+ [[package]]
324
+ name = "ciborium-io"
325
+ version = "0.2.2"
326
+ source = "registry+https://github.com/rust-lang/crates.io-index"
327
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
328
+
329
+ [[package]]
330
+ name = "ciborium-ll"
331
+ version = "0.2.2"
332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
333
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
334
+ dependencies = [
335
+ "ciborium-io",
336
+ "half",
337
+ ]
338
+
339
+ [[package]]
340
+ name = "clang-sys"
341
+ version = "1.8.1"
342
+ source = "registry+https://github.com/rust-lang/crates.io-index"
343
+ checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
344
+ dependencies = [
345
+ "glob",
346
+ "libc",
347
+ "libloading",
348
+ ]
349
+
350
+ [[package]]
351
+ name = "clap"
352
+ version = "3.2.25"
353
+ source = "registry+https://github.com/rust-lang/crates.io-index"
354
+ checksum = "4ea181bf566f71cb9a5d17a59e1871af638180a18fb0035c92ae62b705207123"
355
+ dependencies = [
356
+ "atty",
357
+ "bitflags 1.3.2",
358
+ "clap_lex 0.2.4",
359
+ "indexmap",
360
+ "strsim 0.10.0",
361
+ "termcolor",
362
+ "textwrap",
363
+ ]
364
+
365
+ [[package]]
366
+ name = "clap"
367
+ version = "4.5.54"
368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
369
+ checksum = "c6e6ff9dcd79cff5cd969a17a545d79e84ab086e444102a591e288a8aa3ce394"
370
+ dependencies = [
371
+ "clap_builder",
372
+ "clap_derive",
373
+ ]
374
+
375
+ [[package]]
376
+ name = "clap_builder"
377
+ version = "4.5.54"
378
+ source = "registry+https://github.com/rust-lang/crates.io-index"
379
+ checksum = "fa42cf4d2b7a41bc8f663a7cab4031ebafa1bf3875705bfaf8466dc60ab52c00"
380
+ dependencies = [
381
+ "anstream",
382
+ "anstyle",
383
+ "clap_lex 0.7.6",
384
+ "strsim 0.11.1",
385
+ "terminal_size",
386
+ ]
387
+
388
+ [[package]]
389
+ name = "clap_derive"
390
+ version = "4.5.49"
391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
392
+ checksum = "2a0b5487afeab2deb2ff4e03a807ad1a03ac532ff5a2cee5d86884440c7f7671"
393
+ dependencies = [
394
+ "heck",
395
+ "proc-macro2",
396
+ "quote",
397
+ "syn 2.0.114",
398
+ ]
399
+
400
+ [[package]]
401
+ name = "clap_lex"
402
+ version = "0.2.4"
403
+ source = "registry+https://github.com/rust-lang/crates.io-index"
404
+ checksum = "2850f2f5a82cbf437dd5af4d49848fbdfc27c157c3d010345776f952765261c5"
405
+ dependencies = [
406
+ "os_str_bytes",
407
+ ]
408
+
409
+ [[package]]
410
+ name = "clap_lex"
411
+ version = "0.7.6"
412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
413
+ checksum = "a1d728cc89cf3aee9ff92b05e62b19ee65a02b5702cff7d5a377e32c6ae29d8d"
414
+
415
+ [[package]]
416
+ name = "cmake"
417
+ version = "0.1.57"
418
+ source = "registry+https://github.com/rust-lang/crates.io-index"
419
+ checksum = "75443c44cd6b379beb8c5b45d85d0773baf31cce901fe7bb252f4eff3008ef7d"
420
+ dependencies = [
421
+ "cc",
422
+ ]
423
+
424
+ [[package]]
425
+ name = "colorchoice"
426
+ version = "1.0.4"
427
+ source = "registry+https://github.com/rust-lang/crates.io-index"
428
+ checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
429
+
430
+ [[package]]
431
+ name = "console"
432
+ version = "0.15.11"
433
+ source = "registry+https://github.com/rust-lang/crates.io-index"
434
+ checksum = "054ccb5b10f9f2cbf51eb355ca1d05c2d279ce1804688d0db74b4733a5aeafd8"
435
+ dependencies = [
436
+ "encode_unicode",
437
+ "libc",
438
+ "once_cell",
439
+ "windows-sys 0.59.0",
440
+ ]
441
+
442
+ [[package]]
443
+ name = "const_format"
444
+ version = "0.2.35"
445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
446
+ checksum = "7faa7469a93a566e9ccc1c73fe783b4a65c274c5ace346038dca9c39fe0030ad"
447
+ dependencies = [
448
+ "const_format_proc_macros",
449
+ ]
450
+
451
+ [[package]]
452
+ name = "const_format_proc_macros"
453
+ version = "0.2.34"
454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
455
+ checksum = "1d57c2eccfb16dbac1f4e61e206105db5820c9d26c3c472bc17c774259ef7744"
456
+ dependencies = [
457
+ "proc-macro2",
458
+ "quote",
459
+ "unicode-xid",
460
+ ]
461
+
462
+ [[package]]
463
+ name = "core-foundation-sys"
464
+ version = "0.8.7"
465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
466
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
467
+
468
+ [[package]]
469
+ name = "cpufeatures"
470
+ version = "0.2.17"
471
+ source = "registry+https://github.com/rust-lang/crates.io-index"
472
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
473
+ dependencies = [
474
+ "libc",
475
+ ]
476
+
477
+ [[package]]
478
+ name = "crc32fast"
479
+ version = "1.5.0"
480
+ source = "registry+https://github.com/rust-lang/crates.io-index"
481
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
482
+ dependencies = [
483
+ "cfg-if",
484
+ ]
485
+
486
+ [[package]]
487
+ name = "criterion"
488
+ version = "0.5.1"
489
+ source = "registry+https://github.com/rust-lang/crates.io-index"
490
+ checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
491
+ dependencies = [
492
+ "anes",
493
+ "cast",
494
+ "ciborium",
495
+ "clap 4.5.54",
496
+ "criterion-plot",
497
+ "is-terminal",
498
+ "itertools 0.10.5",
499
+ "num-traits",
500
+ "once_cell",
501
+ "oorandom",
502
+ "plotters",
503
+ "rayon",
504
+ "regex",
505
+ "serde",
506
+ "serde_derive",
507
+ "serde_json",
508
+ "tinytemplate",
509
+ "walkdir",
510
+ ]
511
+
512
+ [[package]]
513
+ name = "criterion-plot"
514
+ version = "0.5.0"
515
+ source = "registry+https://github.com/rust-lang/crates.io-index"
516
+ checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
517
+ dependencies = [
518
+ "cast",
519
+ "itertools 0.10.5",
520
+ ]
521
+
522
+ [[package]]
523
+ name = "crossbeam-deque"
524
+ version = "0.8.6"
525
+ source = "registry+https://github.com/rust-lang/crates.io-index"
526
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
527
+ dependencies = [
528
+ "crossbeam-epoch",
529
+ "crossbeam-utils",
530
+ ]
531
+
532
+ [[package]]
533
+ name = "crossbeam-epoch"
534
+ version = "0.9.18"
535
+ source = "registry+https://github.com/rust-lang/crates.io-index"
536
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
537
+ dependencies = [
538
+ "crossbeam-utils",
539
+ ]
540
+
541
+ [[package]]
542
+ name = "crossbeam-utils"
543
+ version = "0.8.21"
544
+ source = "registry+https://github.com/rust-lang/crates.io-index"
545
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
546
+
547
+ [[package]]
548
+ name = "crunchy"
549
+ version = "0.2.4"
550
+ source = "registry+https://github.com/rust-lang/crates.io-index"
551
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
552
+
553
+ [[package]]
554
+ name = "crypto-common"
555
+ version = "0.1.7"
556
+ source = "registry+https://github.com/rust-lang/crates.io-index"
557
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
558
+ dependencies = [
559
+ "generic-array",
560
+ "typenum",
561
+ ]
562
+
563
+ [[package]]
564
+ name = "digest"
565
+ version = "0.10.7"
566
+ source = "registry+https://github.com/rust-lang/crates.io-index"
567
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
568
+ dependencies = [
569
+ "block-buffer",
570
+ "crypto-common",
571
+ ]
572
+
573
+ [[package]]
574
+ name = "dynasm"
575
+ version = "1.2.3"
576
+ source = "registry+https://github.com/rust-lang/crates.io-index"
577
+ checksum = "add9a102807b524ec050363f09e06f1504214b0e1c7797f64261c891022dce8b"
578
+ dependencies = [
579
+ "bitflags 1.3.2",
580
+ "byteorder",
581
+ "lazy_static",
582
+ "proc-macro-error",
583
+ "proc-macro2",
584
+ "quote",
585
+ "syn 1.0.109",
586
+ ]
587
+
588
+ [[package]]
589
+ name = "dynasmrt"
590
+ version = "1.2.3"
591
+ source = "registry+https://github.com/rust-lang/crates.io-index"
592
+ checksum = "64fba5a42bd76a17cad4bfa00de168ee1cbfa06a5e8ce992ae880218c05641a9"
593
+ dependencies = [
594
+ "byteorder",
595
+ "dynasm",
596
+ "memmap2",
597
+ ]
598
+
599
+ [[package]]
600
+ name = "either"
601
+ version = "1.15.0"
602
+ source = "registry+https://github.com/rust-lang/crates.io-index"
603
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
604
+
605
+ [[package]]
606
+ name = "encode_unicode"
607
+ version = "1.0.0"
608
+ source = "registry+https://github.com/rust-lang/crates.io-index"
609
+ checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
610
+
611
+ [[package]]
612
+ name = "errno"
613
+ version = "0.3.14"
614
+ source = "registry+https://github.com/rust-lang/crates.io-index"
615
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
616
+ dependencies = [
617
+ "libc",
618
+ "windows-sys 0.61.2",
619
+ ]
620
+
621
+ [[package]]
622
+ name = "fern"
623
+ version = "0.7.1"
624
+ source = "registry+https://github.com/rust-lang/crates.io-index"
625
+ checksum = "4316185f709b23713e41e3195f90edef7fb00c3ed4adc79769cf09cc762a3b29"
626
+ dependencies = [
627
+ "log",
628
+ ]
629
+
630
+ [[package]]
631
+ name = "find-msvc-tools"
632
+ version = "0.1.6"
633
+ source = "registry+https://github.com/rust-lang/crates.io-index"
634
+ checksum = "645cbb3a84e60b7531617d5ae4e57f7e27308f6445f5abf653209ea76dec8dff"
635
+
636
+ [[package]]
637
+ name = "flate2"
638
+ version = "1.1.5"
639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
640
+ checksum = "bfe33edd8e85a12a67454e37f8c75e730830d83e313556ab9ebf9ee7fbeb3bfb"
641
+ dependencies = [
642
+ "crc32fast",
643
+ "miniz_oxide",
644
+ ]
645
+
646
+ [[package]]
647
+ name = "funty"
648
+ version = "2.0.0"
649
+ source = "registry+https://github.com/rust-lang/crates.io-index"
650
+ checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
651
+
652
+ [[package]]
653
+ name = "generic-array"
654
+ version = "0.14.7"
655
+ source = "registry+https://github.com/rust-lang/crates.io-index"
656
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
657
+ dependencies = [
658
+ "typenum",
659
+ "version_check",
660
+ ]
661
+
662
+ [[package]]
663
+ name = "gimli"
664
+ version = "0.32.3"
665
+ source = "registry+https://github.com/rust-lang/crates.io-index"
666
+ checksum = "e629b9b98ef3dd8afe6ca2bd0f89306cec16d43d907889945bc5d6687f2f13c7"
667
+
668
+ [[package]]
669
+ name = "glob"
670
+ version = "0.3.3"
671
+ source = "registry+https://github.com/rust-lang/crates.io-index"
672
+ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
673
+
674
+ [[package]]
675
+ name = "goblin"
676
+ version = "0.9.3"
677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
678
+ checksum = "daa0a64d21a7eb230583b4c5f4e23b7e4e57974f96620f42a7e75e08ae66d745"
679
+ dependencies = [
680
+ "log",
681
+ "plain",
682
+ "scroll",
683
+ ]
684
+
685
+ [[package]]
686
+ name = "half"
687
+ version = "2.7.1"
688
+ source = "registry+https://github.com/rust-lang/crates.io-index"
689
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
690
+ dependencies = [
691
+ "cfg-if",
692
+ "crunchy",
693
+ "zerocopy",
694
+ ]
695
+
696
+ [[package]]
697
+ name = "hashbrown"
698
+ version = "0.12.3"
699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
700
+ checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
701
+
702
+ [[package]]
703
+ name = "heck"
704
+ version = "0.5.0"
705
+ source = "registry+https://github.com/rust-lang/crates.io-index"
706
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
707
+
708
+ [[package]]
709
+ name = "hermit-abi"
710
+ version = "0.1.19"
711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
712
+ checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
713
+ dependencies = [
714
+ "libc",
715
+ ]
716
+
717
+ [[package]]
718
+ name = "hermit-abi"
719
+ version = "0.5.2"
720
+ source = "registry+https://github.com/rust-lang/crates.io-index"
721
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
722
+
723
+ [[package]]
724
+ name = "hex"
725
+ version = "0.4.3"
726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
727
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
728
+
729
+ [[package]]
730
+ name = "hexyl"
731
+ version = "0.15.0"
732
+ source = "registry+https://github.com/rust-lang/crates.io-index"
733
+ checksum = "42852ba75d3155575dd9e1d801ddab5f5db6e38c430ba784563f7a6b517829a6"
734
+ dependencies = [
735
+ "anyhow",
736
+ "clap 4.5.54",
737
+ "const_format",
738
+ "libc",
739
+ "owo-colors",
740
+ "supports-color",
741
+ "terminal_size",
742
+ "thiserror 1.0.69",
743
+ ]
744
+
745
+ [[package]]
746
+ name = "iana-time-zone"
747
+ version = "0.1.64"
748
+ source = "registry+https://github.com/rust-lang/crates.io-index"
749
+ checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb"
750
+ dependencies = [
751
+ "android_system_properties",
752
+ "core-foundation-sys",
753
+ "iana-time-zone-haiku",
754
+ "js-sys",
755
+ "log",
756
+ "wasm-bindgen",
757
+ "windows-core",
758
+ ]
759
+
760
+ [[package]]
761
+ name = "iana-time-zone-haiku"
762
+ version = "0.1.2"
763
+ source = "registry+https://github.com/rust-lang/crates.io-index"
764
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
765
+ dependencies = [
766
+ "cc",
767
+ ]
768
+
769
+ [[package]]
770
+ name = "indexmap"
771
+ version = "1.9.3"
772
+ source = "registry+https://github.com/rust-lang/crates.io-index"
773
+ checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
774
+ dependencies = [
775
+ "autocfg",
776
+ "hashbrown",
777
+ ]
778
+
779
+ [[package]]
780
+ name = "indoc"
781
+ version = "2.0.7"
782
+ source = "registry+https://github.com/rust-lang/crates.io-index"
783
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
784
+ dependencies = [
785
+ "rustversion",
786
+ ]
787
+
788
+ [[package]]
789
+ name = "inflate"
790
+ version = "0.4.5"
791
+ source = "registry+https://github.com/rust-lang/crates.io-index"
792
+ checksum = "1cdb29978cc5797bd8dcc8e5bf7de604891df2a8dc576973d71a281e916db2ff"
793
+ dependencies = [
794
+ "adler32",
795
+ ]
796
+
797
+ [[package]]
798
+ name = "is-terminal"
799
+ version = "0.4.17"
800
+ source = "registry+https://github.com/rust-lang/crates.io-index"
801
+ checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
802
+ dependencies = [
803
+ "hermit-abi 0.5.2",
804
+ "libc",
805
+ "windows-sys 0.61.2",
806
+ ]
807
+
808
+ [[package]]
809
+ name = "is_ci"
810
+ version = "1.2.0"
811
+ source = "registry+https://github.com/rust-lang/crates.io-index"
812
+ checksum = "7655c9839580ee829dfacba1d1278c2b7883e50a277ff7541299489d6bdfdc45"
813
+
814
+ [[package]]
815
+ name = "is_terminal_polyfill"
816
+ version = "1.70.2"
817
+ source = "registry+https://github.com/rust-lang/crates.io-index"
818
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
819
+
820
+ [[package]]
821
+ name = "itertools"
822
+ version = "0.10.5"
823
+ source = "registry+https://github.com/rust-lang/crates.io-index"
824
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
825
+ dependencies = [
826
+ "either",
827
+ ]
828
+
829
+ [[package]]
830
+ name = "itertools"
831
+ version = "0.13.0"
832
+ source = "registry+https://github.com/rust-lang/crates.io-index"
833
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
834
+ dependencies = [
835
+ "either",
836
+ ]
837
+
838
+ [[package]]
839
+ name = "itertools"
840
+ version = "0.14.0"
841
+ source = "registry+https://github.com/rust-lang/crates.io-index"
842
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
843
+ dependencies = [
844
+ "either",
845
+ ]
846
+
847
+ [[package]]
848
+ name = "itoa"
849
+ version = "1.0.17"
850
+ source = "registry+https://github.com/rust-lang/crates.io-index"
851
+ checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
852
+
853
+ [[package]]
854
+ name = "js-sys"
855
+ version = "0.3.83"
856
+ source = "registry+https://github.com/rust-lang/crates.io-index"
857
+ checksum = "464a3709c7f55f1f721e5389aa6ea4e3bc6aba669353300af094b29ffbdde1d8"
858
+ dependencies = [
859
+ "once_cell",
860
+ "wasm-bindgen",
861
+ ]
862
+
863
+ [[package]]
864
+ name = "lancelot"
865
+ version = "0.9.10"
866
+ dependencies = [
867
+ "ansi_term",
868
+ "anyhow",
869
+ "bitflags 1.3.2",
870
+ "bitvec",
871
+ "byteorder",
872
+ "chrono",
873
+ "criterion",
874
+ "dynasm",
875
+ "dynasmrt",
876
+ "fern",
877
+ "goblin",
878
+ "lancelot-flirt",
879
+ "lazy_static",
880
+ "log",
881
+ "object 0.36.7",
882
+ "prost",
883
+ "regex",
884
+ "smallvec",
885
+ "smol_str",
886
+ "thiserror 2.0.17",
887
+ "unicorn-engine",
888
+ "widestring",
889
+ "zydis",
890
+ ]
891
+
892
+ [[package]]
893
+ name = "lancelot-bin"
894
+ version = "0.9.10"
895
+ dependencies = [
896
+ "ansi_term",
897
+ "anyhow",
898
+ "ar",
899
+ "better-panic",
900
+ "chrono",
901
+ "clap 3.2.25",
902
+ "fern",
903
+ "goblin",
904
+ "hex",
905
+ "hexyl",
906
+ "lancelot",
907
+ "lancelot-flirt",
908
+ "log",
909
+ "serde_json",
910
+ "sha256",
911
+ "thiserror 2.0.17",
912
+ ]
913
+
914
+ [[package]]
915
+ name = "lancelot-flirt"
916
+ version = "0.9.10"
917
+ dependencies = [
918
+ "anyhow",
919
+ "better-panic",
920
+ "bitflags 1.3.2",
921
+ "bitvec",
922
+ "chrono",
923
+ "clap 3.2.25",
924
+ "criterion",
925
+ "fern",
926
+ "inflate",
927
+ "log",
928
+ "nom",
929
+ "regex",
930
+ "smallvec",
931
+ "thiserror 2.0.17",
932
+ ]
933
+
934
+ [[package]]
935
+ name = "lazy_static"
936
+ version = "1.5.0"
937
+ source = "registry+https://github.com/rust-lang/crates.io-index"
938
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
939
+
940
+ [[package]]
941
+ name = "libc"
942
+ version = "0.2.180"
943
+ source = "registry+https://github.com/rust-lang/crates.io-index"
944
+ checksum = "bcc35a38544a891a5f7c865aca548a982ccb3b8650a5b06d0fd33a10283c56fc"
945
+
946
+ [[package]]
947
+ name = "libloading"
948
+ version = "0.8.9"
949
+ source = "registry+https://github.com/rust-lang/crates.io-index"
950
+ checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
951
+ dependencies = [
952
+ "cfg-if",
953
+ "windows-link",
954
+ ]
955
+
956
+ [[package]]
957
+ name = "linux-raw-sys"
958
+ version = "0.11.0"
959
+ source = "registry+https://github.com/rust-lang/crates.io-index"
960
+ checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
961
+
962
+ [[package]]
963
+ name = "log"
964
+ version = "0.4.29"
965
+ source = "registry+https://github.com/rust-lang/crates.io-index"
966
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
967
+
968
+ [[package]]
969
+ name = "memchr"
970
+ version = "2.7.6"
971
+ source = "registry+https://github.com/rust-lang/crates.io-index"
972
+ checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
973
+
974
+ [[package]]
975
+ name = "memmap2"
976
+ version = "0.5.10"
977
+ source = "registry+https://github.com/rust-lang/crates.io-index"
978
+ checksum = "83faa42c0a078c393f6b29d5db232d8be22776a891f8f56e5284faee4a20b327"
979
+ dependencies = [
980
+ "libc",
981
+ ]
982
+
983
+ [[package]]
984
+ name = "memoffset"
985
+ version = "0.9.1"
986
+ source = "registry+https://github.com/rust-lang/crates.io-index"
987
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
988
+ dependencies = [
989
+ "autocfg",
990
+ ]
991
+
992
+ [[package]]
993
+ name = "minimal-lexical"
994
+ version = "0.2.1"
995
+ source = "registry+https://github.com/rust-lang/crates.io-index"
996
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
997
+
998
+ [[package]]
999
+ name = "miniz_oxide"
1000
+ version = "0.8.9"
1001
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1002
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
1003
+ dependencies = [
1004
+ "adler2",
1005
+ "simd-adler32",
1006
+ ]
1007
+
1008
+ [[package]]
1009
+ name = "nom"
1010
+ version = "7.1.3"
1011
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1012
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
1013
+ dependencies = [
1014
+ "memchr",
1015
+ "minimal-lexical",
1016
+ ]
1017
+
1018
+ [[package]]
1019
+ name = "num-traits"
1020
+ version = "0.2.19"
1021
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1022
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1023
+ dependencies = [
1024
+ "autocfg",
1025
+ ]
1026
+
1027
+ [[package]]
1028
+ name = "object"
1029
+ version = "0.36.7"
1030
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1031
+ checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
1032
+ dependencies = [
1033
+ "flate2",
1034
+ "memchr",
1035
+ "ruzstd",
1036
+ ]
1037
+
1038
+ [[package]]
1039
+ name = "object"
1040
+ version = "0.37.3"
1041
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1042
+ checksum = "ff76201f031d8863c38aa7f905eca4f53abbfa15f609db4277d44cd8938f33fe"
1043
+ dependencies = [
1044
+ "memchr",
1045
+ ]
1046
+
1047
+ [[package]]
1048
+ name = "once_cell"
1049
+ version = "1.21.3"
1050
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1051
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
1052
+
1053
+ [[package]]
1054
+ name = "once_cell_polyfill"
1055
+ version = "1.70.2"
1056
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1057
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
1058
+
1059
+ [[package]]
1060
+ name = "oorandom"
1061
+ version = "11.1.5"
1062
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1063
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
1064
+
1065
+ [[package]]
1066
+ name = "os_str_bytes"
1067
+ version = "6.6.1"
1068
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1069
+ checksum = "e2355d85b9a3786f481747ced0e0ff2ba35213a1f9bd406ed906554d7af805a1"
1070
+
1071
+ [[package]]
1072
+ name = "owo-colors"
1073
+ version = "4.2.3"
1074
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1075
+ checksum = "9c6901729fa79e91a0913333229e9ca5dc725089d1c363b2f4b4760709dc4a52"
1076
+
1077
+ [[package]]
1078
+ name = "pin-project-lite"
1079
+ version = "0.2.16"
1080
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1081
+ checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
1082
+
1083
+ [[package]]
1084
+ name = "pkg-config"
1085
+ version = "0.3.32"
1086
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1087
+ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
1088
+
1089
+ [[package]]
1090
+ name = "plain"
1091
+ version = "0.2.3"
1092
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1093
+ checksum = "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6"
1094
+
1095
+ [[package]]
1096
+ name = "plotters"
1097
+ version = "0.3.7"
1098
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1099
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
1100
+ dependencies = [
1101
+ "num-traits",
1102
+ "plotters-backend",
1103
+ "plotters-svg",
1104
+ "wasm-bindgen",
1105
+ "web-sys",
1106
+ ]
1107
+
1108
+ [[package]]
1109
+ name = "plotters-backend"
1110
+ version = "0.3.7"
1111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1112
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
1113
+
1114
+ [[package]]
1115
+ name = "plotters-svg"
1116
+ version = "0.3.7"
1117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1118
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
1119
+ dependencies = [
1120
+ "plotters-backend",
1121
+ ]
1122
+
1123
+ [[package]]
1124
+ name = "portable-atomic"
1125
+ version = "1.13.0"
1126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1127
+ checksum = "f89776e4d69bb58bc6993e99ffa1d11f228b839984854c7daeb5d37f87cbe950"
1128
+
1129
+ [[package]]
1130
+ name = "prettyplease"
1131
+ version = "0.2.37"
1132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1133
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
1134
+ dependencies = [
1135
+ "proc-macro2",
1136
+ "syn 2.0.114",
1137
+ ]
1138
+
1139
+ [[package]]
1140
+ name = "proc-macro-error"
1141
+ version = "1.0.4"
1142
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1143
+ checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
1144
+ dependencies = [
1145
+ "proc-macro-error-attr",
1146
+ "proc-macro2",
1147
+ "quote",
1148
+ "syn 1.0.109",
1149
+ "version_check",
1150
+ ]
1151
+
1152
+ [[package]]
1153
+ name = "proc-macro-error-attr"
1154
+ version = "1.0.4"
1155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1156
+ checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
1157
+ dependencies = [
1158
+ "proc-macro2",
1159
+ "quote",
1160
+ "version_check",
1161
+ ]
1162
+
1163
+ [[package]]
1164
+ name = "proc-macro2"
1165
+ version = "1.0.105"
1166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1167
+ checksum = "535d180e0ecab6268a3e718bb9fd44db66bbbc256257165fc699dadf70d16fe7"
1168
+ dependencies = [
1169
+ "unicode-ident",
1170
+ ]
1171
+
1172
+ [[package]]
1173
+ name = "prost"
1174
+ version = "0.13.5"
1175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1176
+ checksum = "2796faa41db3ec313a31f7624d9286acf277b52de526150b7e69f3debf891ee5"
1177
+ dependencies = [
1178
+ "bytes",
1179
+ "prost-derive",
1180
+ ]
1181
+
1182
+ [[package]]
1183
+ name = "prost-derive"
1184
+ version = "0.13.5"
1185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1186
+ checksum = "8a56d757972c98b346a9b766e3f02746cde6dd1cd1d1d563472929fdd74bec4d"
1187
+ dependencies = [
1188
+ "anyhow",
1189
+ "itertools 0.14.0",
1190
+ "proc-macro2",
1191
+ "quote",
1192
+ "syn 2.0.114",
1193
+ ]
1194
+
1195
+ [[package]]
1196
+ name = "pylancelot"
1197
+ version = "0.9.10"
1198
+ dependencies = [
1199
+ "anyhow",
1200
+ "lancelot",
1201
+ "pyo3",
1202
+ "pyo3-log",
1203
+ "sha256",
1204
+ ]
1205
+
1206
+ [[package]]
1207
+ name = "pyo3"
1208
+ version = "0.27.2"
1209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1210
+ checksum = "ab53c047fcd1a1d2a8820fe84f05d6be69e9526be40cb03b73f86b6b03e6d87d"
1211
+ dependencies = [
1212
+ "indoc",
1213
+ "libc",
1214
+ "memoffset",
1215
+ "once_cell",
1216
+ "portable-atomic",
1217
+ "pyo3-build-config",
1218
+ "pyo3-ffi",
1219
+ "pyo3-macros",
1220
+ "unindent",
1221
+ ]
1222
+
1223
+ [[package]]
1224
+ name = "pyo3-build-config"
1225
+ version = "0.27.2"
1226
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1227
+ checksum = "b455933107de8642b4487ed26d912c2d899dec6114884214a0b3bb3be9261ea6"
1228
+ dependencies = [
1229
+ "python3-dll-a",
1230
+ "target-lexicon",
1231
+ ]
1232
+
1233
+ [[package]]
1234
+ name = "pyo3-ffi"
1235
+ version = "0.27.2"
1236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1237
+ checksum = "1c85c9cbfaddf651b1221594209aed57e9e5cff63c4d11d1feead529b872a089"
1238
+ dependencies = [
1239
+ "libc",
1240
+ "pyo3-build-config",
1241
+ ]
1242
+
1243
+ [[package]]
1244
+ name = "pyo3-log"
1245
+ version = "0.13.2"
1246
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1247
+ checksum = "2f8bae9ad5ba08b0b0ed2bb9c2bdbaeccc69cafca96d78cf0fbcea0d45d122bb"
1248
+ dependencies = [
1249
+ "arc-swap",
1250
+ "log",
1251
+ "pyo3",
1252
+ ]
1253
+
1254
+ [[package]]
1255
+ name = "pyo3-macros"
1256
+ version = "0.27.2"
1257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1258
+ checksum = "0a5b10c9bf9888125d917fb4d2ca2d25c8df94c7ab5a52e13313a07e050a3b02"
1259
+ dependencies = [
1260
+ "proc-macro2",
1261
+ "pyo3-macros-backend",
1262
+ "quote",
1263
+ "syn 2.0.114",
1264
+ ]
1265
+
1266
+ [[package]]
1267
+ name = "pyo3-macros-backend"
1268
+ version = "0.27.2"
1269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1270
+ checksum = "03b51720d314836e53327f5871d4c0cfb4fb37cc2c4a11cc71907a86342c40f9"
1271
+ dependencies = [
1272
+ "heck",
1273
+ "proc-macro2",
1274
+ "pyo3-build-config",
1275
+ "quote",
1276
+ "syn 2.0.114",
1277
+ ]
1278
+
1279
+ [[package]]
1280
+ name = "python-flirt"
1281
+ version = "0.9.10"
1282
+ dependencies = [
1283
+ "anyhow",
1284
+ "lancelot-flirt",
1285
+ "pyo3",
1286
+ ]
1287
+
1288
+ [[package]]
1289
+ name = "python3-dll-a"
1290
+ version = "0.2.14"
1291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1292
+ checksum = "d381ef313ae70b4da5f95f8a4de773c6aa5cd28f73adec4b4a31df70b66780d8"
1293
+ dependencies = [
1294
+ "cc",
1295
+ ]
1296
+
1297
+ [[package]]
1298
+ name = "quote"
1299
+ version = "1.0.43"
1300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1301
+ checksum = "dc74d9a594b72ae6656596548f56f667211f8a97b3d4c3d467150794690dc40a"
1302
+ dependencies = [
1303
+ "proc-macro2",
1304
+ ]
1305
+
1306
+ [[package]]
1307
+ name = "radium"
1308
+ version = "0.7.0"
1309
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1310
+ checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
1311
+
1312
+ [[package]]
1313
+ name = "rayon"
1314
+ version = "1.11.0"
1315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1316
+ checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
1317
+ dependencies = [
1318
+ "either",
1319
+ "rayon-core",
1320
+ ]
1321
+
1322
+ [[package]]
1323
+ name = "rayon-core"
1324
+ version = "1.13.0"
1325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1326
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
1327
+ dependencies = [
1328
+ "crossbeam-deque",
1329
+ "crossbeam-utils",
1330
+ ]
1331
+
1332
+ [[package]]
1333
+ name = "regex"
1334
+ version = "1.12.2"
1335
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1336
+ checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
1337
+ dependencies = [
1338
+ "aho-corasick",
1339
+ "memchr",
1340
+ "regex-automata",
1341
+ "regex-syntax",
1342
+ ]
1343
+
1344
+ [[package]]
1345
+ name = "regex-automata"
1346
+ version = "0.4.13"
1347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1348
+ checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
1349
+ dependencies = [
1350
+ "aho-corasick",
1351
+ "memchr",
1352
+ "regex-syntax",
1353
+ ]
1354
+
1355
+ [[package]]
1356
+ name = "regex-syntax"
1357
+ version = "0.8.8"
1358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1359
+ checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
1360
+
1361
+ [[package]]
1362
+ name = "rustc-demangle"
1363
+ version = "0.1.26"
1364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1365
+ checksum = "56f7d92ca342cea22a06f2121d944b4fd82af56988c270852495420f961d4ace"
1366
+
1367
+ [[package]]
1368
+ name = "rustc-hash"
1369
+ version = "2.1.1"
1370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1371
+ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
1372
+
1373
+ [[package]]
1374
+ name = "rustix"
1375
+ version = "1.1.3"
1376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1377
+ checksum = "146c9e247ccc180c1f61615433868c99f3de3ae256a30a43b49f67c2d9171f34"
1378
+ dependencies = [
1379
+ "bitflags 2.10.0",
1380
+ "errno",
1381
+ "libc",
1382
+ "linux-raw-sys",
1383
+ "windows-sys 0.61.2",
1384
+ ]
1385
+
1386
+ [[package]]
1387
+ name = "rustversion"
1388
+ version = "1.0.22"
1389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1390
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1391
+
1392
+ [[package]]
1393
+ name = "ruzstd"
1394
+ version = "0.7.3"
1395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1396
+ checksum = "fad02996bfc73da3e301efe90b1837be9ed8f4a462b6ed410aa35d00381de89f"
1397
+ dependencies = [
1398
+ "twox-hash",
1399
+ ]
1400
+
1401
+ [[package]]
1402
+ name = "same-file"
1403
+ version = "1.0.6"
1404
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1405
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1406
+ dependencies = [
1407
+ "winapi-util",
1408
+ ]
1409
+
1410
+ [[package]]
1411
+ name = "scroll"
1412
+ version = "0.12.0"
1413
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1414
+ checksum = "6ab8598aa408498679922eff7fa985c25d58a90771bd6be794434c5277eab1a6"
1415
+ dependencies = [
1416
+ "scroll_derive",
1417
+ ]
1418
+
1419
+ [[package]]
1420
+ name = "scroll_derive"
1421
+ version = "0.12.1"
1422
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1423
+ checksum = "1783eabc414609e28a5ba76aee5ddd52199f7107a0b24c2e9746a1ecc34a683d"
1424
+ dependencies = [
1425
+ "proc-macro2",
1426
+ "quote",
1427
+ "syn 2.0.114",
1428
+ ]
1429
+
1430
+ [[package]]
1431
+ name = "serde"
1432
+ version = "1.0.228"
1433
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1434
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1435
+ dependencies = [
1436
+ "serde_core",
1437
+ "serde_derive",
1438
+ ]
1439
+
1440
+ [[package]]
1441
+ name = "serde_core"
1442
+ version = "1.0.228"
1443
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1444
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1445
+ dependencies = [
1446
+ "serde_derive",
1447
+ ]
1448
+
1449
+ [[package]]
1450
+ name = "serde_derive"
1451
+ version = "1.0.228"
1452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1453
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1454
+ dependencies = [
1455
+ "proc-macro2",
1456
+ "quote",
1457
+ "syn 2.0.114",
1458
+ ]
1459
+
1460
+ [[package]]
1461
+ name = "serde_json"
1462
+ version = "1.0.149"
1463
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1464
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
1465
+ dependencies = [
1466
+ "itoa",
1467
+ "memchr",
1468
+ "serde",
1469
+ "serde_core",
1470
+ "zmij",
1471
+ ]
1472
+
1473
+ [[package]]
1474
+ name = "sha2"
1475
+ version = "0.10.9"
1476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1477
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
1478
+ dependencies = [
1479
+ "cfg-if",
1480
+ "cpufeatures",
1481
+ "digest",
1482
+ ]
1483
+
1484
+ [[package]]
1485
+ name = "sha256"
1486
+ version = "1.6.0"
1487
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1488
+ checksum = "f880fc8562bdeb709793f00eb42a2ad0e672c4f883bbe59122b926eca935c8f6"
1489
+ dependencies = [
1490
+ "async-trait",
1491
+ "bytes",
1492
+ "hex",
1493
+ "sha2",
1494
+ "tokio",
1495
+ ]
1496
+
1497
+ [[package]]
1498
+ name = "shlex"
1499
+ version = "1.3.0"
1500
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1501
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1502
+
1503
+ [[package]]
1504
+ name = "simd-adler32"
1505
+ version = "0.3.8"
1506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1507
+ checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2"
1508
+
1509
+ [[package]]
1510
+ name = "smallvec"
1511
+ version = "1.15.1"
1512
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1513
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
1514
+
1515
+ [[package]]
1516
+ name = "smol_str"
1517
+ version = "0.3.4"
1518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1519
+ checksum = "3498b0a27f93ef1402f20eefacfaa1691272ac4eca1cdc8c596cb0a245d6cbf5"
1520
+ dependencies = [
1521
+ "borsh",
1522
+ "serde_core",
1523
+ ]
1524
+
1525
+ [[package]]
1526
+ name = "static_assertions"
1527
+ version = "1.1.0"
1528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1529
+ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
1530
+
1531
+ [[package]]
1532
+ name = "strsim"
1533
+ version = "0.10.0"
1534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1535
+ checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
1536
+
1537
+ [[package]]
1538
+ name = "strsim"
1539
+ version = "0.11.1"
1540
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1541
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1542
+
1543
+ [[package]]
1544
+ name = "supports-color"
1545
+ version = "3.0.2"
1546
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1547
+ checksum = "c64fc7232dd8d2e4ac5ce4ef302b1d81e0b80d055b9d77c7c4f51f6aa4c867d6"
1548
+ dependencies = [
1549
+ "is_ci",
1550
+ ]
1551
+
1552
+ [[package]]
1553
+ name = "syn"
1554
+ version = "1.0.109"
1555
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1556
+ checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
1557
+ dependencies = [
1558
+ "proc-macro2",
1559
+ "quote",
1560
+ "unicode-ident",
1561
+ ]
1562
+
1563
+ [[package]]
1564
+ name = "syn"
1565
+ version = "2.0.114"
1566
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1567
+ checksum = "d4d107df263a3013ef9b1879b0df87d706ff80f65a86ea879bd9c31f9b307c2a"
1568
+ dependencies = [
1569
+ "proc-macro2",
1570
+ "quote",
1571
+ "unicode-ident",
1572
+ ]
1573
+
1574
+ [[package]]
1575
+ name = "tap"
1576
+ version = "1.0.1"
1577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1578
+ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
1579
+
1580
+ [[package]]
1581
+ name = "target-lexicon"
1582
+ version = "0.13.4"
1583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1584
+ checksum = "b1dd07eb858a2067e2f3c7155d54e929265c264e6f37efe3ee7a8d1b5a1dd0ba"
1585
+
1586
+ [[package]]
1587
+ name = "termcolor"
1588
+ version = "1.4.1"
1589
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1590
+ checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
1591
+ dependencies = [
1592
+ "winapi-util",
1593
+ ]
1594
+
1595
+ [[package]]
1596
+ name = "terminal_size"
1597
+ version = "0.4.3"
1598
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1599
+ checksum = "60b8cb979cb11c32ce1603f8137b22262a9d131aaa5c37b5678025f22b8becd0"
1600
+ dependencies = [
1601
+ "rustix",
1602
+ "windows-sys 0.60.2",
1603
+ ]
1604
+
1605
+ [[package]]
1606
+ name = "textwrap"
1607
+ version = "0.16.2"
1608
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1609
+ checksum = "c13547615a44dc9c452a8a534638acdf07120d4b6847c8178705da06306a3057"
1610
+
1611
+ [[package]]
1612
+ name = "thiserror"
1613
+ version = "1.0.69"
1614
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1615
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
1616
+ dependencies = [
1617
+ "thiserror-impl 1.0.69",
1618
+ ]
1619
+
1620
+ [[package]]
1621
+ name = "thiserror"
1622
+ version = "2.0.17"
1623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1624
+ checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8"
1625
+ dependencies = [
1626
+ "thiserror-impl 2.0.17",
1627
+ ]
1628
+
1629
+ [[package]]
1630
+ name = "thiserror-impl"
1631
+ version = "1.0.69"
1632
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1633
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
1634
+ dependencies = [
1635
+ "proc-macro2",
1636
+ "quote",
1637
+ "syn 2.0.114",
1638
+ ]
1639
+
1640
+ [[package]]
1641
+ name = "thiserror-impl"
1642
+ version = "2.0.17"
1643
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1644
+ checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913"
1645
+ dependencies = [
1646
+ "proc-macro2",
1647
+ "quote",
1648
+ "syn 2.0.114",
1649
+ ]
1650
+
1651
+ [[package]]
1652
+ name = "tinytemplate"
1653
+ version = "1.2.1"
1654
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1655
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
1656
+ dependencies = [
1657
+ "serde",
1658
+ "serde_json",
1659
+ ]
1660
+
1661
+ [[package]]
1662
+ name = "tokio"
1663
+ version = "1.49.0"
1664
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1665
+ checksum = "72a2903cd7736441aac9df9d7688bd0ce48edccaadf181c3b90be801e81d3d86"
1666
+ dependencies = [
1667
+ "bytes",
1668
+ "pin-project-lite",
1669
+ ]
1670
+
1671
+ [[package]]
1672
+ name = "twox-hash"
1673
+ version = "1.6.3"
1674
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1675
+ checksum = "97fee6b57c6a41524a810daee9286c02d7752c4253064d0b05472833a438f675"
1676
+ dependencies = [
1677
+ "cfg-if",
1678
+ "static_assertions",
1679
+ ]
1680
+
1681
+ [[package]]
1682
+ name = "typenum"
1683
+ version = "1.19.0"
1684
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1685
+ checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
1686
+
1687
+ [[package]]
1688
+ name = "unicode-ident"
1689
+ version = "1.0.22"
1690
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1691
+ checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
1692
+
1693
+ [[package]]
1694
+ name = "unicode-xid"
1695
+ version = "0.2.6"
1696
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1697
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
1698
+
1699
+ [[package]]
1700
+ name = "unicorn-engine"
1701
+ version = "2.1.5"
1702
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1703
+ checksum = "c16b5d5186d9400cd3bf9f892ed826cb724f69b906bbe66811527df73eaf7a33"
1704
+ dependencies = [
1705
+ "bindgen",
1706
+ "cc",
1707
+ "cmake",
1708
+ "pkg-config",
1709
+ "unicorn-engine-sys",
1710
+ ]
1711
+
1712
+ [[package]]
1713
+ name = "unicorn-engine-sys"
1714
+ version = "2.1.5"
1715
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1716
+ checksum = "685282714d35a6fbfed0ae14d81bb11c91838bc7a165cac778321679a7bb91d8"
1717
+ dependencies = [
1718
+ "bindgen",
1719
+ "cc",
1720
+ "cmake",
1721
+ "heck",
1722
+ "pkg-config",
1723
+ ]
1724
+
1725
+ [[package]]
1726
+ name = "unindent"
1727
+ version = "0.2.4"
1728
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1729
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
1730
+
1731
+ [[package]]
1732
+ name = "utf8parse"
1733
+ version = "0.2.2"
1734
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1735
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
1736
+
1737
+ [[package]]
1738
+ name = "version_check"
1739
+ version = "0.9.5"
1740
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1741
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
1742
+
1743
+ [[package]]
1744
+ name = "walkdir"
1745
+ version = "2.5.0"
1746
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1747
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
1748
+ dependencies = [
1749
+ "same-file",
1750
+ "winapi-util",
1751
+ ]
1752
+
1753
+ [[package]]
1754
+ name = "wasm-bindgen"
1755
+ version = "0.2.106"
1756
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1757
+ checksum = "0d759f433fa64a2d763d1340820e46e111a7a5ab75f993d1852d70b03dbb80fd"
1758
+ dependencies = [
1759
+ "cfg-if",
1760
+ "once_cell",
1761
+ "rustversion",
1762
+ "wasm-bindgen-macro",
1763
+ "wasm-bindgen-shared",
1764
+ ]
1765
+
1766
+ [[package]]
1767
+ name = "wasm-bindgen-macro"
1768
+ version = "0.2.106"
1769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1770
+ checksum = "48cb0d2638f8baedbc542ed444afc0644a29166f1595371af4fecf8ce1e7eeb3"
1771
+ dependencies = [
1772
+ "quote",
1773
+ "wasm-bindgen-macro-support",
1774
+ ]
1775
+
1776
+ [[package]]
1777
+ name = "wasm-bindgen-macro-support"
1778
+ version = "0.2.106"
1779
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1780
+ checksum = "cefb59d5cd5f92d9dcf80e4683949f15ca4b511f4ac0a6e14d4e1ac60c6ecd40"
1781
+ dependencies = [
1782
+ "bumpalo",
1783
+ "proc-macro2",
1784
+ "quote",
1785
+ "syn 2.0.114",
1786
+ "wasm-bindgen-shared",
1787
+ ]
1788
+
1789
+ [[package]]
1790
+ name = "wasm-bindgen-shared"
1791
+ version = "0.2.106"
1792
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1793
+ checksum = "cbc538057e648b67f72a982e708d485b2efa771e1ac05fec311f9f63e5800db4"
1794
+ dependencies = [
1795
+ "unicode-ident",
1796
+ ]
1797
+
1798
+ [[package]]
1799
+ name = "web-sys"
1800
+ version = "0.3.83"
1801
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1802
+ checksum = "9b32828d774c412041098d182a8b38b16ea816958e07cf40eec2bc080ae137ac"
1803
+ dependencies = [
1804
+ "js-sys",
1805
+ "wasm-bindgen",
1806
+ ]
1807
+
1808
+ [[package]]
1809
+ name = "widestring"
1810
+ version = "1.2.1"
1811
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1812
+ checksum = "72069c3113ab32ab29e5584db3c6ec55d416895e60715417b5b883a357c3e471"
1813
+
1814
+ [[package]]
1815
+ name = "winapi"
1816
+ version = "0.3.9"
1817
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1818
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
1819
+ dependencies = [
1820
+ "winapi-i686-pc-windows-gnu",
1821
+ "winapi-x86_64-pc-windows-gnu",
1822
+ ]
1823
+
1824
+ [[package]]
1825
+ name = "winapi-i686-pc-windows-gnu"
1826
+ version = "0.4.0"
1827
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1828
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
1829
+
1830
+ [[package]]
1831
+ name = "winapi-util"
1832
+ version = "0.1.11"
1833
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1834
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
1835
+ dependencies = [
1836
+ "windows-sys 0.61.2",
1837
+ ]
1838
+
1839
+ [[package]]
1840
+ name = "winapi-x86_64-pc-windows-gnu"
1841
+ version = "0.4.0"
1842
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1843
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
1844
+
1845
+ [[package]]
1846
+ name = "windows-core"
1847
+ version = "0.62.2"
1848
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1849
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
1850
+ dependencies = [
1851
+ "windows-implement",
1852
+ "windows-interface",
1853
+ "windows-link",
1854
+ "windows-result",
1855
+ "windows-strings",
1856
+ ]
1857
+
1858
+ [[package]]
1859
+ name = "windows-implement"
1860
+ version = "0.60.2"
1861
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1862
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
1863
+ dependencies = [
1864
+ "proc-macro2",
1865
+ "quote",
1866
+ "syn 2.0.114",
1867
+ ]
1868
+
1869
+ [[package]]
1870
+ name = "windows-interface"
1871
+ version = "0.59.3"
1872
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1873
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
1874
+ dependencies = [
1875
+ "proc-macro2",
1876
+ "quote",
1877
+ "syn 2.0.114",
1878
+ ]
1879
+
1880
+ [[package]]
1881
+ name = "windows-link"
1882
+ version = "0.2.1"
1883
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1884
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1885
+
1886
+ [[package]]
1887
+ name = "windows-result"
1888
+ version = "0.4.1"
1889
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1890
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
1891
+ dependencies = [
1892
+ "windows-link",
1893
+ ]
1894
+
1895
+ [[package]]
1896
+ name = "windows-strings"
1897
+ version = "0.5.1"
1898
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1899
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
1900
+ dependencies = [
1901
+ "windows-link",
1902
+ ]
1903
+
1904
+ [[package]]
1905
+ name = "windows-sys"
1906
+ version = "0.59.0"
1907
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1908
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
1909
+ dependencies = [
1910
+ "windows-targets 0.52.6",
1911
+ ]
1912
+
1913
+ [[package]]
1914
+ name = "windows-sys"
1915
+ version = "0.60.2"
1916
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1917
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
1918
+ dependencies = [
1919
+ "windows-targets 0.53.5",
1920
+ ]
1921
+
1922
+ [[package]]
1923
+ name = "windows-sys"
1924
+ version = "0.61.2"
1925
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1926
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1927
+ dependencies = [
1928
+ "windows-link",
1929
+ ]
1930
+
1931
+ [[package]]
1932
+ name = "windows-targets"
1933
+ version = "0.52.6"
1934
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1935
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
1936
+ dependencies = [
1937
+ "windows_aarch64_gnullvm 0.52.6",
1938
+ "windows_aarch64_msvc 0.52.6",
1939
+ "windows_i686_gnu 0.52.6",
1940
+ "windows_i686_gnullvm 0.52.6",
1941
+ "windows_i686_msvc 0.52.6",
1942
+ "windows_x86_64_gnu 0.52.6",
1943
+ "windows_x86_64_gnullvm 0.52.6",
1944
+ "windows_x86_64_msvc 0.52.6",
1945
+ ]
1946
+
1947
+ [[package]]
1948
+ name = "windows-targets"
1949
+ version = "0.53.5"
1950
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1951
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
1952
+ dependencies = [
1953
+ "windows-link",
1954
+ "windows_aarch64_gnullvm 0.53.1",
1955
+ "windows_aarch64_msvc 0.53.1",
1956
+ "windows_i686_gnu 0.53.1",
1957
+ "windows_i686_gnullvm 0.53.1",
1958
+ "windows_i686_msvc 0.53.1",
1959
+ "windows_x86_64_gnu 0.53.1",
1960
+ "windows_x86_64_gnullvm 0.53.1",
1961
+ "windows_x86_64_msvc 0.53.1",
1962
+ ]
1963
+
1964
+ [[package]]
1965
+ name = "windows_aarch64_gnullvm"
1966
+ version = "0.52.6"
1967
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1968
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
1969
+
1970
+ [[package]]
1971
+ name = "windows_aarch64_gnullvm"
1972
+ version = "0.53.1"
1973
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1974
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
1975
+
1976
+ [[package]]
1977
+ name = "windows_aarch64_msvc"
1978
+ version = "0.52.6"
1979
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1980
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
1981
+
1982
+ [[package]]
1983
+ name = "windows_aarch64_msvc"
1984
+ version = "0.53.1"
1985
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1986
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
1987
+
1988
+ [[package]]
1989
+ name = "windows_i686_gnu"
1990
+ version = "0.52.6"
1991
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1992
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
1993
+
1994
+ [[package]]
1995
+ name = "windows_i686_gnu"
1996
+ version = "0.53.1"
1997
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1998
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
1999
+
2000
+ [[package]]
2001
+ name = "windows_i686_gnullvm"
2002
+ version = "0.52.6"
2003
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2004
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
2005
+
2006
+ [[package]]
2007
+ name = "windows_i686_gnullvm"
2008
+ version = "0.53.1"
2009
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2010
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
2011
+
2012
+ [[package]]
2013
+ name = "windows_i686_msvc"
2014
+ version = "0.52.6"
2015
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2016
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
2017
+
2018
+ [[package]]
2019
+ name = "windows_i686_msvc"
2020
+ version = "0.53.1"
2021
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2022
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
2023
+
2024
+ [[package]]
2025
+ name = "windows_x86_64_gnu"
2026
+ version = "0.52.6"
2027
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2028
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
2029
+
2030
+ [[package]]
2031
+ name = "windows_x86_64_gnu"
2032
+ version = "0.53.1"
2033
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2034
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
2035
+
2036
+ [[package]]
2037
+ name = "windows_x86_64_gnullvm"
2038
+ version = "0.52.6"
2039
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2040
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
2041
+
2042
+ [[package]]
2043
+ name = "windows_x86_64_gnullvm"
2044
+ version = "0.53.1"
2045
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2046
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
2047
+
2048
+ [[package]]
2049
+ name = "windows_x86_64_msvc"
2050
+ version = "0.52.6"
2051
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2052
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
2053
+
2054
+ [[package]]
2055
+ name = "windows_x86_64_msvc"
2056
+ version = "0.53.1"
2057
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2058
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
2059
+
2060
+ [[package]]
2061
+ name = "wyz"
2062
+ version = "0.5.1"
2063
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2064
+ checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
2065
+ dependencies = [
2066
+ "tap",
2067
+ ]
2068
+
2069
+ [[package]]
2070
+ name = "zerocopy"
2071
+ version = "0.8.33"
2072
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2073
+ checksum = "668f5168d10b9ee831de31933dc111a459c97ec93225beb307aed970d1372dfd"
2074
+ dependencies = [
2075
+ "zerocopy-derive",
2076
+ ]
2077
+
2078
+ [[package]]
2079
+ name = "zerocopy-derive"
2080
+ version = "0.8.33"
2081
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2082
+ checksum = "2c7962b26b0a8685668b671ee4b54d007a67d4eaf05fda79ac0ecf41e32270f1"
2083
+ dependencies = [
2084
+ "proc-macro2",
2085
+ "quote",
2086
+ "syn 2.0.114",
2087
+ ]
2088
+
2089
+ [[package]]
2090
+ name = "zmij"
2091
+ version = "1.0.12"
2092
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2093
+ checksum = "2fc5a66a20078bf1251bde995aa2fdcc4b800c70b5d92dd2c62abc5c60f679f8"
2094
+
2095
+ [[package]]
2096
+ name = "zydis"
2097
+ version = "3.1.3"
2098
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2099
+ checksum = "bfc13daee87922e0d6dc6137327be10327ad1cee0515ec775f898206193aaeb8"
2100
+ dependencies = [
2101
+ "bitflags 1.3.2",
2102
+ "cmake",
2103
+ "serde",
2104
+ "serde_derive",
2105
+ ]