wasmtime 12.0.1 → 13.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2318) hide show
  1. checksums.yaml +4 -4
  2. data/Cargo.lock +176 -221
  3. data/ext/Cargo.toml +6 -6
  4. data/ext/cargo-vendor/cap-net-ext-2.0.0/.cargo-checksum.json +1 -0
  5. data/ext/cargo-vendor/cap-net-ext-2.0.0/COPYRIGHT +29 -0
  6. data/ext/cargo-vendor/cap-net-ext-2.0.0/Cargo.toml +38 -0
  7. data/ext/cargo-vendor/cap-net-ext-2.0.0/README.md +24 -0
  8. data/ext/cargo-vendor/cap-net-ext-2.0.0/src/lib.rs +771 -0
  9. data/ext/cargo-vendor/cranelift-bforest-0.100.0/.cargo-checksum.json +1 -0
  10. data/ext/cargo-vendor/cranelift-bforest-0.100.0/Cargo.toml +31 -0
  11. data/ext/cargo-vendor/cranelift-bforest-0.100.0/src/lib.rs +184 -0
  12. data/ext/cargo-vendor/cranelift-bforest-0.100.0/src/map.rs +922 -0
  13. data/ext/cargo-vendor/cranelift-bforest-0.100.0/src/pool.rs +219 -0
  14. data/ext/cargo-vendor/cranelift-bforest-0.100.0/src/set.rs +597 -0
  15. data/ext/cargo-vendor/cranelift-codegen-0.100.0/.cargo-checksum.json +1 -0
  16. data/ext/cargo-vendor/cranelift-codegen-0.100.0/Cargo.toml +164 -0
  17. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/binemit/mod.rs +141 -0
  18. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/binemit/stack_map.rs +155 -0
  19. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/bitset.rs +166 -0
  20. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/context.rs +372 -0
  21. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/incremental_cache.rs +256 -0
  22. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/ir/atomic_rmw_op.rs +104 -0
  23. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/ir/condcodes.rs +404 -0
  24. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/ir/constant.rs +463 -0
  25. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/ir/dfg.rs +1686 -0
  26. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/ir/dynamic_type.rs +55 -0
  27. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/ir/entities.rs +567 -0
  28. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/ir/extfunc.rs +411 -0
  29. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/ir/extname.rs +333 -0
  30. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/ir/function.rs +475 -0
  31. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/ir/globalvalue.rs +155 -0
  32. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/ir/immediates.rs +1615 -0
  33. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/ir/instructions.rs +1000 -0
  34. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/ir/jumptable.rs +168 -0
  35. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/ir/known_symbol.rs +47 -0
  36. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/ir/libcall.rs +232 -0
  37. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/ir/memflags.rs +279 -0
  38. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/ir/mod.rs +106 -0
  39. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/ir/sourceloc.rs +117 -0
  40. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/ir/stackslot.rs +216 -0
  41. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/ir/table.rs +40 -0
  42. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/ir/trapcode.rs +144 -0
  43. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/ir/types.rs +630 -0
  44. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/aarch64/abi.rs +1573 -0
  45. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/aarch64/inst/args.rs +747 -0
  46. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/aarch64/inst/emit.rs +3911 -0
  47. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/aarch64/inst/emit_tests.rs +7951 -0
  48. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/aarch64/inst/mod.rs +3049 -0
  49. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/aarch64/inst.isle +4173 -0
  50. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/aarch64/lower/isle.rs +871 -0
  51. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/aarch64/lower.isle +2889 -0
  52. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/aarch64/lower.rs +132 -0
  53. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/aarch64/lower_dynamic_neon.isle +98 -0
  54. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/call_conv.rs +119 -0
  55. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/riscv64/abi.rs +981 -0
  56. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/riscv64/inst/args.rs +1900 -0
  57. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/riscv64/inst/emit.rs +3203 -0
  58. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/riscv64/inst/encode.rs +326 -0
  59. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/riscv64/inst/imms.rs +236 -0
  60. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/riscv64/inst/mod.rs +2162 -0
  61. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/riscv64/inst/vector.rs +1059 -0
  62. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/riscv64/inst.isle +3092 -0
  63. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/riscv64/inst_vector.isle +1887 -0
  64. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/riscv64/lower/isle.rs +620 -0
  65. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/riscv64/lower.isle +2119 -0
  66. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/s390x/abi.rs +949 -0
  67. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/s390x/inst/mod.rs +3430 -0
  68. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/s390x/inst.isle +5043 -0
  69. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/s390x/lower.isle +3982 -0
  70. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/unwind/systemv.rs +272 -0
  71. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/unwind/winx64.rs +334 -0
  72. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/unwind.rs +182 -0
  73. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/x64/abi.rs +1200 -0
  74. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/x64/encoding/evex.rs +749 -0
  75. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/x64/encoding/rex.rs +589 -0
  76. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/x64/inst/args.rs +2188 -0
  77. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/x64/inst/emit.rs +4300 -0
  78. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/x64/inst/emit_tests.rs +5474 -0
  79. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/x64/inst/mod.rs +2763 -0
  80. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/x64/inst.isle +5110 -0
  81. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/x64/lower/isle.rs +1096 -0
  82. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/x64/lower.isle +4675 -0
  83. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/x64/lower.rs +340 -0
  84. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isle_prelude.rs +899 -0
  85. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/legalizer/mod.rs +356 -0
  86. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/lib.rs +107 -0
  87. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/machinst/abi.rs +2644 -0
  88. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/machinst/buffer.rs +2362 -0
  89. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/machinst/isle.rs +846 -0
  90. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/machinst/mod.rs +553 -0
  91. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/machinst/reg.rs +556 -0
  92. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/machinst/vcode.rs +1646 -0
  93. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/opts/bitops.isle +147 -0
  94. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/opts/cprop.isle +200 -0
  95. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/opts/extends.isle +34 -0
  96. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/opts/icmp.isle +177 -0
  97. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/opts/selects.isle +59 -0
  98. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/opts/vector.isle +88 -0
  99. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/prelude.isle +603 -0
  100. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/prelude_lower.isle +1029 -0
  101. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/value_label.rs +32 -0
  102. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/verifier/mod.rs +1986 -0
  103. data/ext/cargo-vendor/cranelift-codegen-meta-0.100.0/.cargo-checksum.json +1 -0
  104. data/ext/cargo-vendor/cranelift-codegen-meta-0.100.0/Cargo.toml +26 -0
  105. data/ext/cargo-vendor/cranelift-codegen-meta-0.100.0/src/constant_hash.rs +63 -0
  106. data/ext/cargo-vendor/cranelift-codegen-meta-0.100.0/src/gen_inst.rs +1784 -0
  107. data/ext/cargo-vendor/cranelift-codegen-meta-0.100.0/src/shared/instructions.rs +3810 -0
  108. data/ext/cargo-vendor/cranelift-codegen-shared-0.100.0/.cargo-checksum.json +1 -0
  109. data/ext/cargo-vendor/cranelift-codegen-shared-0.100.0/Cargo.toml +22 -0
  110. data/ext/cargo-vendor/cranelift-codegen-shared-0.100.0/src/lib.rs +12 -0
  111. data/ext/cargo-vendor/cranelift-control-0.100.0/.cargo-checksum.json +1 -0
  112. data/ext/cargo-vendor/cranelift-control-0.100.0/Cargo.toml +30 -0
  113. data/ext/cargo-vendor/cranelift-entity-0.100.0/.cargo-checksum.json +1 -0
  114. data/ext/cargo-vendor/cranelift-entity-0.100.0/Cargo.toml +41 -0
  115. data/ext/cargo-vendor/cranelift-entity-0.100.0/src/lib.rs +316 -0
  116. data/ext/cargo-vendor/cranelift-entity-0.100.0/src/list.rs +955 -0
  117. data/ext/cargo-vendor/cranelift-entity-0.100.0/src/packed_option.rs +171 -0
  118. data/ext/cargo-vendor/cranelift-entity-0.100.0/src/primary.rs +456 -0
  119. data/ext/cargo-vendor/cranelift-entity-0.100.0/src/sparse.rs +368 -0
  120. data/ext/cargo-vendor/cranelift-frontend-0.100.0/.cargo-checksum.json +1 -0
  121. data/ext/cargo-vendor/cranelift-frontend-0.100.0/Cargo.toml +54 -0
  122. data/ext/cargo-vendor/cranelift-frontend-0.100.0/src/lib.rs +191 -0
  123. data/ext/cargo-vendor/cranelift-isle-0.100.0/.cargo-checksum.json +1 -0
  124. data/ext/cargo-vendor/cranelift-isle-0.100.0/Cargo.toml +37 -0
  125. data/ext/cargo-vendor/cranelift-native-0.100.0/.cargo-checksum.json +1 -0
  126. data/ext/cargo-vendor/cranelift-native-0.100.0/Cargo.toml +38 -0
  127. data/ext/cargo-vendor/cranelift-native-0.100.0/src/lib.rs +190 -0
  128. data/ext/cargo-vendor/cranelift-wasm-0.100.0/.cargo-checksum.json +1 -0
  129. data/ext/cargo-vendor/cranelift-wasm-0.100.0/Cargo.toml +92 -0
  130. data/ext/cargo-vendor/cranelift-wasm-0.100.0/src/code_translator.rs +3641 -0
  131. data/ext/cargo-vendor/cranelift-wasm-0.100.0/src/environ/dummy.rs +942 -0
  132. data/ext/cargo-vendor/cranelift-wasm-0.100.0/src/environ/spec.rs +949 -0
  133. data/ext/cargo-vendor/cranelift-wasm-0.100.0/src/func_translator.rs +432 -0
  134. data/ext/cargo-vendor/cranelift-wasm-0.100.0/src/heap.rs +108 -0
  135. data/ext/cargo-vendor/cranelift-wasm-0.100.0/src/lib.rs +64 -0
  136. data/ext/cargo-vendor/cranelift-wasm-0.100.0/src/sections_translator.rs +408 -0
  137. data/ext/cargo-vendor/cranelift-wasm-0.100.0/src/translation_utils.rs +97 -0
  138. data/ext/cargo-vendor/fallible-iterator-0.3.0/.cargo-checksum.json +1 -0
  139. data/ext/cargo-vendor/fallible-iterator-0.3.0/CHANGELOG.md +39 -0
  140. data/ext/cargo-vendor/fallible-iterator-0.3.0/Cargo.toml +29 -0
  141. data/ext/cargo-vendor/fallible-iterator-0.3.0/README.md +16 -0
  142. data/ext/cargo-vendor/fallible-iterator-0.3.0/src/lib.rs +2808 -0
  143. data/ext/cargo-vendor/fallible-iterator-0.3.0/src/test.rs +477 -0
  144. data/ext/cargo-vendor/serde-1.0.188/.cargo-checksum.json +1 -0
  145. data/ext/cargo-vendor/serde-1.0.188/Cargo.toml +69 -0
  146. data/ext/cargo-vendor/serde-1.0.188/build.rs +90 -0
  147. data/ext/cargo-vendor/serde-1.0.188/src/de/ignored_any.rs +238 -0
  148. data/ext/cargo-vendor/serde-1.0.188/src/de/impls.rs +2966 -0
  149. data/ext/cargo-vendor/serde-1.0.188/src/de/mod.rs +2290 -0
  150. data/ext/cargo-vendor/serde-1.0.188/src/de/value.rs +1708 -0
  151. data/ext/cargo-vendor/serde-1.0.188/src/integer128.rs +9 -0
  152. data/ext/cargo-vendor/serde-1.0.188/src/lib.rs +327 -0
  153. data/ext/cargo-vendor/serde-1.0.188/src/macros.rs +231 -0
  154. data/ext/cargo-vendor/serde-1.0.188/src/ser/fmt.rs +170 -0
  155. data/ext/cargo-vendor/serde-1.0.188/src/ser/impls.rs +998 -0
  156. data/ext/cargo-vendor/serde-1.0.188/src/ser/mod.rs +1952 -0
  157. data/ext/cargo-vendor/serde_derive-1.0.188/.cargo-checksum.json +1 -0
  158. data/ext/cargo-vendor/serde_derive-1.0.188/Cargo.toml +59 -0
  159. data/ext/cargo-vendor/serde_derive-1.0.188/src/lib.rs +102 -0
  160. data/ext/cargo-vendor/serde_derive-1.0.188/src/ser.rs +1359 -0
  161. data/ext/cargo-vendor/wasi-cap-std-sync-13.0.0/.cargo-checksum.json +1 -0
  162. data/ext/cargo-vendor/wasi-cap-std-sync-13.0.0/Cargo.toml +96 -0
  163. data/ext/cargo-vendor/wasi-cap-std-sync-13.0.0/src/lib.rs +161 -0
  164. data/ext/cargo-vendor/wasi-common-13.0.0/.cargo-checksum.json +1 -0
  165. data/ext/cargo-vendor/wasi-common-13.0.0/Cargo.toml +87 -0
  166. data/ext/cargo-vendor/wasm-encoder-0.32.0/.cargo-checksum.json +1 -0
  167. data/ext/cargo-vendor/wasm-encoder-0.32.0/Cargo.toml +33 -0
  168. data/ext/cargo-vendor/wasm-encoder-0.32.0/src/component/types.rs +769 -0
  169. data/ext/cargo-vendor/wasm-encoder-0.33.1/.cargo-checksum.json +1 -0
  170. data/ext/cargo-vendor/wasm-encoder-0.33.1/Cargo.toml +33 -0
  171. data/ext/cargo-vendor/wasm-encoder-0.33.1/README.md +80 -0
  172. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/component/aliases.rs +160 -0
  173. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/component/builder.rs +449 -0
  174. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/component/canonicals.rs +159 -0
  175. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/component/components.rs +29 -0
  176. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/component/exports.rs +127 -0
  177. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/component/imports.rs +200 -0
  178. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/component/instances.rs +200 -0
  179. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/component/modules.rs +29 -0
  180. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/component/names.rs +149 -0
  181. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/component/start.rs +52 -0
  182. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/component/types.rs +769 -0
  183. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/component.rs +168 -0
  184. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/core/code.rs +2913 -0
  185. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/core/custom.rs +73 -0
  186. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/core/data.rs +185 -0
  187. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/core/dump.rs +627 -0
  188. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/core/elements.rs +220 -0
  189. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/core/exports.rs +85 -0
  190. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/core/functions.rs +63 -0
  191. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/core/globals.rs +90 -0
  192. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/core/imports.rs +142 -0
  193. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/core/linking.rs +263 -0
  194. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/core/memories.rs +99 -0
  195. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/core/names.rs +265 -0
  196. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/core/producers.rs +180 -0
  197. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/core/start.rs +39 -0
  198. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/core/tables.rs +104 -0
  199. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/core/tags.rs +85 -0
  200. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/core/types.rs +372 -0
  201. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/core.rs +168 -0
  202. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/lib.rs +215 -0
  203. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/raw.rs +30 -0
  204. data/ext/cargo-vendor/wasmparser-0.112.0/.cargo-checksum.json +1 -0
  205. data/ext/cargo-vendor/wasmparser-0.112.0/Cargo.lock +644 -0
  206. data/ext/cargo-vendor/wasmparser-0.112.0/Cargo.toml +54 -0
  207. data/ext/cargo-vendor/wasmparser-0.112.0/src/limits.rs +58 -0
  208. data/ext/cargo-vendor/wasmparser-0.112.0/src/readers/component/types.rs +542 -0
  209. data/ext/cargo-vendor/wasmparser-0.112.0/src/readers/core/types.rs +1303 -0
  210. data/ext/cargo-vendor/wasmparser-0.112.0/src/validator/component.rs +3120 -0
  211. data/ext/cargo-vendor/wasmparser-0.112.0/src/validator/core.rs +1352 -0
  212. data/ext/cargo-vendor/wasmparser-0.112.0/src/validator/types.rs +3239 -0
  213. data/ext/cargo-vendor/wasmparser-0.112.0/src/validator.rs +1569 -0
  214. data/ext/cargo-vendor/wasmparser-0.113.1/.cargo-checksum.json +1 -0
  215. data/ext/cargo-vendor/wasmparser-0.113.1/Cargo.lock +644 -0
  216. data/ext/cargo-vendor/wasmparser-0.113.1/Cargo.toml +54 -0
  217. data/ext/cargo-vendor/wasmparser-0.113.1/src/binary_reader.rs +1706 -0
  218. data/ext/cargo-vendor/wasmparser-0.113.1/src/lib.rs +726 -0
  219. data/ext/cargo-vendor/wasmparser-0.113.1/src/limits.rs +58 -0
  220. data/ext/cargo-vendor/wasmparser-0.113.1/src/readers/component/types.rs +542 -0
  221. data/ext/cargo-vendor/wasmparser-0.113.1/src/readers/core/dylink0.rs +132 -0
  222. data/ext/cargo-vendor/wasmparser-0.113.1/src/readers/core/types.rs +1303 -0
  223. data/ext/cargo-vendor/wasmparser-0.113.1/src/readers/core.rs +37 -0
  224. data/ext/cargo-vendor/wasmparser-0.113.1/src/validator/component.rs +3120 -0
  225. data/ext/cargo-vendor/wasmparser-0.113.1/src/validator/core.rs +1352 -0
  226. data/ext/cargo-vendor/wasmparser-0.113.1/src/validator/operators.rs +3466 -0
  227. data/ext/cargo-vendor/wasmparser-0.113.1/src/validator/types.rs +3239 -0
  228. data/ext/cargo-vendor/wasmparser-0.113.1/src/validator.rs +1595 -0
  229. data/ext/cargo-vendor/wasmprinter-0.2.66/.cargo-checksum.json +1 -0
  230. data/ext/cargo-vendor/wasmprinter-0.2.66/Cargo.toml +39 -0
  231. data/ext/cargo-vendor/wasmprinter-0.2.66/src/lib.rs +2965 -0
  232. data/ext/cargo-vendor/wasmprinter-0.2.66/src/operator.rs +873 -0
  233. data/ext/cargo-vendor/wasmtime-13.0.0/.cargo-checksum.json +1 -0
  234. data/ext/cargo-vendor/wasmtime-13.0.0/Cargo.toml +191 -0
  235. data/ext/cargo-vendor/wasmtime-13.0.0/src/component/component.rs +474 -0
  236. data/ext/cargo-vendor/wasmtime-13.0.0/src/component/func/typed.rs +2297 -0
  237. data/ext/cargo-vendor/wasmtime-13.0.0/src/component/instance.rs +793 -0
  238. data/ext/cargo-vendor/wasmtime-13.0.0/src/component/linker.rs +483 -0
  239. data/ext/cargo-vendor/wasmtime-13.0.0/src/component/mod.rs +344 -0
  240. data/ext/cargo-vendor/wasmtime-13.0.0/src/component/types.rs +523 -0
  241. data/ext/cargo-vendor/wasmtime-13.0.0/src/component/values.rs +1272 -0
  242. data/ext/cargo-vendor/wasmtime-13.0.0/src/config.rs +2313 -0
  243. data/ext/cargo-vendor/wasmtime-13.0.0/src/engine/serialization.rs +657 -0
  244. data/ext/cargo-vendor/wasmtime-13.0.0/src/engine.rs +790 -0
  245. data/ext/cargo-vendor/wasmtime-13.0.0/src/instance.rs +884 -0
  246. data/ext/cargo-vendor/wasmtime-13.0.0/src/limits.rs +398 -0
  247. data/ext/cargo-vendor/wasmtime-13.0.0/src/module.rs +1349 -0
  248. data/ext/cargo-vendor/wasmtime-13.0.0/src/store.rs +2246 -0
  249. data/ext/cargo-vendor/wasmtime-13.0.0/src/trampoline/memory.rs +255 -0
  250. data/ext/cargo-vendor/wasmtime-13.0.0/src/trampoline.rs +76 -0
  251. data/ext/cargo-vendor/wasmtime-asm-macros-13.0.0/.cargo-checksum.json +1 -0
  252. data/ext/cargo-vendor/wasmtime-asm-macros-13.0.0/Cargo.toml +22 -0
  253. data/ext/cargo-vendor/wasmtime-cache-13.0.0/.cargo-checksum.json +1 -0
  254. data/ext/cargo-vendor/wasmtime-cache-13.0.0/Cargo.toml +72 -0
  255. data/ext/cargo-vendor/wasmtime-cache-13.0.0/src/config.rs +584 -0
  256. data/ext/cargo-vendor/wasmtime-cache-13.0.0/src/worker/tests.rs +758 -0
  257. data/ext/cargo-vendor/wasmtime-cache-13.0.0/src/worker.rs +894 -0
  258. data/ext/cargo-vendor/wasmtime-component-macro-13.0.0/.cargo-checksum.json +1 -0
  259. data/ext/cargo-vendor/wasmtime-component-macro-13.0.0/Cargo.toml +58 -0
  260. data/ext/cargo-vendor/wasmtime-component-macro-13.0.0/src/bindgen.rs +387 -0
  261. data/ext/cargo-vendor/wasmtime-component-macro-13.0.0/src/component.rs +1295 -0
  262. data/ext/cargo-vendor/wasmtime-component-macro-13.0.0/tests/codegen/resources-import.wit +87 -0
  263. data/ext/cargo-vendor/wasmtime-component-macro-13.0.0/tests/codegen/variants.wit +136 -0
  264. data/ext/cargo-vendor/wasmtime-component-util-13.0.0/.cargo-checksum.json +1 -0
  265. data/ext/cargo-vendor/wasmtime-component-util-13.0.0/Cargo.toml +25 -0
  266. data/ext/cargo-vendor/wasmtime-cranelift-13.0.0/.cargo-checksum.json +1 -0
  267. data/ext/cargo-vendor/wasmtime-cranelift-13.0.0/Cargo.toml +97 -0
  268. data/ext/cargo-vendor/wasmtime-cranelift-13.0.0/src/builder.rs +123 -0
  269. data/ext/cargo-vendor/wasmtime-cranelift-13.0.0/src/compiler.rs +1301 -0
  270. data/ext/cargo-vendor/wasmtime-cranelift-13.0.0/src/debug/transform/attr.rs +340 -0
  271. data/ext/cargo-vendor/wasmtime-cranelift-13.0.0/src/debug.rs +18 -0
  272. data/ext/cargo-vendor/wasmtime-cranelift-13.0.0/src/func_environ.rs +2589 -0
  273. data/ext/cargo-vendor/wasmtime-cranelift-shared-13.0.0/.cargo-checksum.json +1 -0
  274. data/ext/cargo-vendor/wasmtime-cranelift-shared-13.0.0/Cargo.toml +57 -0
  275. data/ext/cargo-vendor/wasmtime-environ-13.0.0/.cargo-checksum.json +1 -0
  276. data/ext/cargo-vendor/wasmtime-environ-13.0.0/Cargo.lock +711 -0
  277. data/ext/cargo-vendor/wasmtime-environ-13.0.0/Cargo.toml +118 -0
  278. data/ext/cargo-vendor/wasmtime-environ-13.0.0/src/address_map.rs +192 -0
  279. data/ext/cargo-vendor/wasmtime-environ-13.0.0/src/builtin.rs +143 -0
  280. data/ext/cargo-vendor/wasmtime-environ-13.0.0/src/compilation.rs +403 -0
  281. data/ext/cargo-vendor/wasmtime-environ-13.0.0/src/component/compiler.rs +47 -0
  282. data/ext/cargo-vendor/wasmtime-environ-13.0.0/src/component/info.rs +583 -0
  283. data/ext/cargo-vendor/wasmtime-environ-13.0.0/src/component/types.rs +1866 -0
  284. data/ext/cargo-vendor/wasmtime-environ-13.0.0/src/fact/trampoline.rs +3229 -0
  285. data/ext/cargo-vendor/wasmtime-environ-13.0.0/src/fact/transcode.rs +168 -0
  286. data/ext/cargo-vendor/wasmtime-environ-13.0.0/src/lib.rs +59 -0
  287. data/ext/cargo-vendor/wasmtime-environ-13.0.0/src/module.rs +1083 -0
  288. data/ext/cargo-vendor/wasmtime-environ-13.0.0/src/module_environ.rs +876 -0
  289. data/ext/cargo-vendor/wasmtime-environ-13.0.0/src/module_types.rs +78 -0
  290. data/ext/cargo-vendor/wasmtime-environ-13.0.0/src/stack_map.rs +36 -0
  291. data/ext/cargo-vendor/wasmtime-environ-13.0.0/src/tunables.rs +115 -0
  292. data/ext/cargo-vendor/wasmtime-environ-13.0.0/src/vmoffsets.rs +919 -0
  293. data/ext/cargo-vendor/wasmtime-fiber-13.0.0/.cargo-checksum.json +1 -0
  294. data/ext/cargo-vendor/wasmtime-fiber-13.0.0/Cargo.toml +51 -0
  295. data/ext/cargo-vendor/wasmtime-jit-13.0.0/.cargo-checksum.json +1 -0
  296. data/ext/cargo-vendor/wasmtime-jit-13.0.0/Cargo.toml +106 -0
  297. data/ext/cargo-vendor/wasmtime-jit-13.0.0/src/instantiate.rs +760 -0
  298. data/ext/cargo-vendor/wasmtime-jit-13.0.0/src/lib.rs +21 -0
  299. data/ext/cargo-vendor/wasmtime-jit-13.0.0/src/unwind/miri.rs +15 -0
  300. data/ext/cargo-vendor/wasmtime-jit-13.0.0/src/unwind/systemv.rs +90 -0
  301. data/ext/cargo-vendor/wasmtime-jit-13.0.0/src/unwind/winx64.rs +44 -0
  302. data/ext/cargo-vendor/wasmtime-jit-debug-13.0.0/.cargo-checksum.json +1 -0
  303. data/ext/cargo-vendor/wasmtime-jit-debug-13.0.0/Cargo.toml +58 -0
  304. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-13.0.0/.cargo-checksum.json +1 -0
  305. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-13.0.0/Cargo.toml +37 -0
  306. data/ext/cargo-vendor/wasmtime-runtime-13.0.0/.cargo-checksum.json +1 -0
  307. data/ext/cargo-vendor/wasmtime-runtime-13.0.0/Cargo.toml +122 -0
  308. data/ext/cargo-vendor/wasmtime-runtime-13.0.0/src/instance/allocator/on_demand.rs +154 -0
  309. data/ext/cargo-vendor/wasmtime-runtime-13.0.0/src/instance/allocator/pooling/index_allocator.rs +684 -0
  310. data/ext/cargo-vendor/wasmtime-runtime-13.0.0/src/instance/allocator/pooling/memory_pool.rs +460 -0
  311. data/ext/cargo-vendor/wasmtime-runtime-13.0.0/src/instance/allocator/pooling/stack_pool.rs +242 -0
  312. data/ext/cargo-vendor/wasmtime-runtime-13.0.0/src/instance/allocator/pooling/table_pool.rs +221 -0
  313. data/ext/cargo-vendor/wasmtime-runtime-13.0.0/src/instance/allocator/pooling.rs +633 -0
  314. data/ext/cargo-vendor/wasmtime-runtime-13.0.0/src/instance/allocator.rs +686 -0
  315. data/ext/cargo-vendor/wasmtime-runtime-13.0.0/src/instance.rs +1382 -0
  316. data/ext/cargo-vendor/wasmtime-runtime-13.0.0/src/lib.rs +276 -0
  317. data/ext/cargo-vendor/wasmtime-runtime-13.0.0/src/libcalls.rs +775 -0
  318. data/ext/cargo-vendor/wasmtime-runtime-13.0.0/src/memory.rs +958 -0
  319. data/ext/cargo-vendor/wasmtime-runtime-13.0.0/src/parking_spot.rs +520 -0
  320. data/ext/cargo-vendor/wasmtime-runtime-13.0.0/src/table.rs +598 -0
  321. data/ext/cargo-vendor/wasmtime-runtime-13.0.0/src/trampolines/s390x.S +70 -0
  322. data/ext/cargo-vendor/wasmtime-runtime-13.0.0/src/traphandlers/macos.rs +486 -0
  323. data/ext/cargo-vendor/wasmtime-runtime-13.0.0/src/traphandlers.rs +815 -0
  324. data/ext/cargo-vendor/wasmtime-runtime-13.0.0/src/vmcontext.rs +1197 -0
  325. data/ext/cargo-vendor/wasmtime-types-13.0.0/.cargo-checksum.json +1 -0
  326. data/ext/cargo-vendor/wasmtime-types-13.0.0/Cargo.toml +36 -0
  327. data/ext/cargo-vendor/wasmtime-types-13.0.0/src/lib.rs +504 -0
  328. data/ext/cargo-vendor/wasmtime-versioned-export-macros-13.0.0/.cargo-checksum.json +1 -0
  329. data/ext/cargo-vendor/wasmtime-versioned-export-macros-13.0.0/Cargo.toml +32 -0
  330. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/.cargo-checksum.json +1 -0
  331. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/Cargo.toml +232 -0
  332. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/src/lib.rs +135 -0
  333. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/src/preview2/command.rs +121 -0
  334. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/src/preview2/ctx.rs +351 -0
  335. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/src/preview2/filesystem.rs +277 -0
  336. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/src/preview2/host/clocks.rs +107 -0
  337. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/src/preview2/host/env.rs +15 -0
  338. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/src/preview2/host/exit.rs +11 -0
  339. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/src/preview2/host/filesystem/sync.rs +645 -0
  340. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/src/preview2/host/filesystem.rs +1167 -0
  341. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/src/preview2/host/instance_network.rs +11 -0
  342. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/src/preview2/host/io.rs +553 -0
  343. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/src/preview2/host/mod.rs +10 -0
  344. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/src/preview2/host/network.rs +186 -0
  345. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/src/preview2/host/tcp.rs +511 -0
  346. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/src/preview2/host/tcp_create_socket.rs +18 -0
  347. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/src/preview2/mod.rs +233 -0
  348. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/src/preview2/network.rs +32 -0
  349. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/src/preview2/pipe.rs +1067 -0
  350. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/src/preview2/preview1.rs +2078 -0
  351. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/src/preview2/stdio/unix.rs +160 -0
  352. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/src/preview2/stdio/worker_thread_stdin.rs +140 -0
  353. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/src/preview2/stdio.rs +354 -0
  354. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/src/preview2/stream.rs +347 -0
  355. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/src/preview2/table.rs +293 -0
  356. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/src/preview2/tcp.rs +280 -0
  357. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/wit/command-extended.wit +39 -0
  358. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/wit/deps/cli/command.wit +33 -0
  359. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/wit/deps/cli/environment.wit +18 -0
  360. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/wit/deps/cli/exit.wit +4 -0
  361. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/wit/deps/cli/run.wit +4 -0
  362. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/wit/deps/cli/terminal.wit +59 -0
  363. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/wit/deps/filesystem/preopens.wit +6 -0
  364. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/wit/deps/filesystem/types.wit +824 -0
  365. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/wit/deps/filesystem/world.wit +6 -0
  366. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/wit/deps/http/proxy.wit +34 -0
  367. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/wit/deps/http/types.wit +155 -0
  368. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/wit/deps/io/streams.wit +300 -0
  369. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/wit/deps/logging/logging.wit +37 -0
  370. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/wit/deps/sockets/ip-name-lookup.wit +69 -0
  371. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/wit/deps/sockets/network.wit +187 -0
  372. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/wit/deps/sockets/tcp-create-socket.wit +27 -0
  373. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/wit/deps/sockets/tcp.wit +268 -0
  374. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/wit/deps/sockets/udp-create-socket.wit +27 -0
  375. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/wit/deps/sockets/udp.wit +220 -0
  376. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/wit/main.wit +33 -0
  377. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/wit/test.wit +41 -0
  378. data/ext/cargo-vendor/wasmtime-winch-13.0.0/.cargo-checksum.json +1 -0
  379. data/ext/cargo-vendor/wasmtime-winch-13.0.0/Cargo.toml +63 -0
  380. data/ext/cargo-vendor/wasmtime-wit-bindgen-13.0.0/.cargo-checksum.json +1 -0
  381. data/ext/cargo-vendor/wasmtime-wit-bindgen-13.0.0/Cargo.toml +32 -0
  382. data/ext/cargo-vendor/wasmtime-wit-bindgen-13.0.0/src/lib.rs +1953 -0
  383. data/ext/cargo-vendor/wasmtime-wit-bindgen-13.0.0/src/rust.rs +490 -0
  384. data/ext/cargo-vendor/wasmtime-wit-bindgen-13.0.0/src/types.rs +194 -0
  385. data/ext/cargo-vendor/wasmtime-wmemcheck-13.0.0/.cargo-checksum.json +1 -0
  386. data/ext/cargo-vendor/wasmtime-wmemcheck-13.0.0/Cargo.toml +22 -0
  387. data/ext/cargo-vendor/wasmtime-wmemcheck-13.0.0/src/lib.rs +404 -0
  388. data/ext/cargo-vendor/wast-65.0.1/.cargo-checksum.json +1 -0
  389. data/ext/cargo-vendor/wast-65.0.1/Cargo.toml +50 -0
  390. data/ext/cargo-vendor/wast-65.0.1/src/component/binary.rs +1021 -0
  391. data/ext/cargo-vendor/wast-65.0.1/src/component/expand.rs +875 -0
  392. data/ext/cargo-vendor/wast-65.0.1/src/component/resolve.rs +1005 -0
  393. data/ext/cargo-vendor/wast-65.0.1/src/component/types.rs +991 -0
  394. data/ext/cargo-vendor/wast-65.0.1/src/component/wast.rs +160 -0
  395. data/ext/cargo-vendor/wast-65.0.1/src/core/binary.rs +1241 -0
  396. data/ext/cargo-vendor/wast-65.0.1/src/core/expr.rs +2021 -0
  397. data/ext/cargo-vendor/wast-65.0.1/src/core/table.rs +288 -0
  398. data/ext/cargo-vendor/wast-65.0.1/src/core/types.rs +847 -0
  399. data/ext/cargo-vendor/wast-65.0.1/src/core/wast.rs +256 -0
  400. data/ext/cargo-vendor/wast-65.0.1/src/lib.rs +536 -0
  401. data/ext/cargo-vendor/wat-1.0.73/.cargo-checksum.json +1 -0
  402. data/ext/cargo-vendor/wat-1.0.73/Cargo.toml +27 -0
  403. data/ext/cargo-vendor/wiggle-13.0.0/.cargo-checksum.json +1 -0
  404. data/ext/cargo-vendor/wiggle-13.0.0/Cargo.toml +106 -0
  405. data/ext/cargo-vendor/wiggle-13.0.0/src/lib.rs +1198 -0
  406. data/ext/cargo-vendor/wiggle-generate-13.0.0/.cargo-checksum.json +1 -0
  407. data/ext/cargo-vendor/wiggle-generate-13.0.0/Cargo.toml +58 -0
  408. data/ext/cargo-vendor/wiggle-generate-13.0.0/LICENSE +220 -0
  409. data/ext/cargo-vendor/wiggle-generate-13.0.0/src/config.rs +663 -0
  410. data/ext/cargo-vendor/wiggle-generate-13.0.0/src/types/record.rs +132 -0
  411. data/ext/cargo-vendor/wiggle-generate-13.0.0/src/wasmtime.rs +170 -0
  412. data/ext/cargo-vendor/wiggle-macro-13.0.0/.cargo-checksum.json +1 -0
  413. data/ext/cargo-vendor/wiggle-macro-13.0.0/Cargo.toml +55 -0
  414. data/ext/cargo-vendor/wiggle-macro-13.0.0/LICENSE +220 -0
  415. data/ext/cargo-vendor/winch-codegen-0.11.0/.cargo-checksum.json +1 -0
  416. data/ext/cargo-vendor/winch-codegen-0.11.0/Cargo.toml +62 -0
  417. data/ext/cargo-vendor/winch-codegen-0.11.0/src/abi/mod.rs +269 -0
  418. data/ext/cargo-vendor/winch-codegen-0.11.0/src/codegen/call.rs +219 -0
  419. data/ext/cargo-vendor/winch-codegen-0.11.0/src/codegen/context.rs +423 -0
  420. data/ext/cargo-vendor/winch-codegen-0.11.0/src/codegen/control.rs +456 -0
  421. data/ext/cargo-vendor/winch-codegen-0.11.0/src/codegen/mod.rs +337 -0
  422. data/ext/cargo-vendor/winch-codegen-0.11.0/src/isa/aarch64/abi.rs +260 -0
  423. data/ext/cargo-vendor/winch-codegen-0.11.0/src/isa/aarch64/address.rs +144 -0
  424. data/ext/cargo-vendor/winch-codegen-0.11.0/src/isa/aarch64/asm.rs +250 -0
  425. data/ext/cargo-vendor/winch-codegen-0.11.0/src/isa/aarch64/masm.rs +357 -0
  426. data/ext/cargo-vendor/winch-codegen-0.11.0/src/isa/aarch64/regs.rs +177 -0
  427. data/ext/cargo-vendor/winch-codegen-0.11.0/src/isa/reg.rs +73 -0
  428. data/ext/cargo-vendor/winch-codegen-0.11.0/src/isa/x64/abi.rs +390 -0
  429. data/ext/cargo-vendor/winch-codegen-0.11.0/src/isa/x64/address.rs +34 -0
  430. data/ext/cargo-vendor/winch-codegen-0.11.0/src/isa/x64/asm.rs +847 -0
  431. data/ext/cargo-vendor/winch-codegen-0.11.0/src/isa/x64/masm.rs +659 -0
  432. data/ext/cargo-vendor/winch-codegen-0.11.0/src/isa/x64/mod.rs +148 -0
  433. data/ext/cargo-vendor/winch-codegen-0.11.0/src/isa/x64/regs.rs +233 -0
  434. data/ext/cargo-vendor/winch-codegen-0.11.0/src/masm.rs +465 -0
  435. data/ext/cargo-vendor/winch-codegen-0.11.0/src/regalloc.rs +73 -0
  436. data/ext/cargo-vendor/winch-codegen-0.11.0/src/regset.rs +118 -0
  437. data/ext/cargo-vendor/winch-codegen-0.11.0/src/stack.rs +338 -0
  438. data/ext/cargo-vendor/winch-codegen-0.11.0/src/trampoline.rs +489 -0
  439. data/ext/cargo-vendor/winch-codegen-0.11.0/src/visitor.rs +736 -0
  440. data/ext/cargo-vendor/wit-parser-0.11.1/.cargo-checksum.json +1 -0
  441. data/ext/cargo-vendor/wit-parser-0.11.1/Cargo.toml +70 -0
  442. data/ext/cargo-vendor/wit-parser-0.11.1/src/abi.rs +241 -0
  443. data/ext/cargo-vendor/wit-parser-0.11.1/src/ast/lex.rs +714 -0
  444. data/ext/cargo-vendor/wit-parser-0.11.1/src/ast/resolve.rs +1418 -0
  445. data/ext/cargo-vendor/wit-parser-0.11.1/src/ast.rs +1361 -0
  446. data/ext/cargo-vendor/wit-parser-0.11.1/src/lib.rs +711 -0
  447. data/ext/cargo-vendor/wit-parser-0.11.1/src/live.rs +111 -0
  448. data/ext/cargo-vendor/wit-parser-0.11.1/src/resolve.rs +1757 -0
  449. data/ext/cargo-vendor/wit-parser-0.11.1/src/serde_.rs +108 -0
  450. data/ext/cargo-vendor/wit-parser-0.11.1/src/sizealign.rs +144 -0
  451. data/ext/cargo-vendor/wit-parser-0.11.1/tests/all.rs +190 -0
  452. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/comments.wit.json +46 -0
  453. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/complex-include.wit.json +168 -0
  454. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/cross-package-resource.wit.json +67 -0
  455. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/diamond1.wit.json +55 -0
  456. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/disambiguate-diamond.wit.json +107 -0
  457. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/embedded.wit.md.json +40 -0
  458. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/empty.wit.json +12 -0
  459. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/foreign-deps-union.wit.json +380 -0
  460. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/foreign-deps.wit.json +344 -0
  461. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/functions.wit.json +166 -0
  462. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/ignore-files-deps.wit.json +39 -0
  463. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/include-reps.wit.json +60 -0
  464. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/kebab-name-include-with.wit.json +70 -0
  465. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/many-names.wit.json +40 -0
  466. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/multi-file.wit.json +298 -0
  467. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/name-both-resource-and-type.wit.json +89 -0
  468. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/package-syntax1.wit.json +12 -0
  469. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/package-syntax3.wit.json +12 -0
  470. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/package-syntax4.wit.json +12 -0
  471. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/parse-fail/multiple-package-docs/a.wit +2 -0
  472. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/parse-fail/multiple-package-docs/b.wit +2 -0
  473. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/parse-fail/multiple-package-docs.wit.result +8 -0
  474. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/random.wit +27 -0
  475. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/random.wit.json +64 -0
  476. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/resources-empty.wit.json +72 -0
  477. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/resources-multiple-returns-borrow.wit.json +74 -0
  478. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/resources-multiple-returns-own.wit.json +83 -0
  479. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/resources-multiple.wit.json +281 -0
  480. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/resources-return-borrow.wit.json +69 -0
  481. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/resources-return-own.wit.json +78 -0
  482. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/resources.wit.json +340 -0
  483. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/resources1.wit.json +96 -0
  484. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/shared-types.wit.json +83 -0
  485. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/stress-export-elaborate.wit.json +1136 -0
  486. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/type-then-eof.wit.json +32 -0
  487. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/types.wit +58 -0
  488. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/types.wit.json +751 -0
  489. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/union-fuzz-1.wit.json +35 -0
  490. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/use-chain.wit.json +53 -0
  491. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/use.wit.json +172 -0
  492. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/versions.wit.json +91 -0
  493. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/wasi.wit.json +296 -0
  494. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/world-diamond.wit +23 -0
  495. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/world-diamond.wit.json +118 -0
  496. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/world-iface-no-collide.wit.json +66 -0
  497. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/world-implicit-import1.wit.json +75 -0
  498. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/world-implicit-import2.wit.json +70 -0
  499. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/world-implicit-import3.wit.json +71 -0
  500. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/world-same-fields4.wit.json +76 -0
  501. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/world-top-level-funcs.wit.json +86 -0
  502. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/world-top-level-resources.wit.json +240 -0
  503. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/worlds-union-dedup.wit.json +100 -0
  504. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/worlds-with-types.wit.json +202 -0
  505. data/ext/src/ruby_api/wasi_ctx_builder.rs +8 -8
  506. data/lib/wasmtime/version.rb +1 -1
  507. metadata +1627 -1813
  508. data/ext/cargo-vendor/addr2line-0.20.0/.cargo-checksum.json +0 -1
  509. data/ext/cargo-vendor/addr2line-0.20.0/CHANGELOG.md +0 -321
  510. data/ext/cargo-vendor/addr2line-0.20.0/Cargo.lock +0 -548
  511. data/ext/cargo-vendor/addr2line-0.20.0/Cargo.toml +0 -145
  512. data/ext/cargo-vendor/addr2line-0.20.0/LICENSE-MIT +0 -25
  513. data/ext/cargo-vendor/addr2line-0.20.0/README.md +0 -48
  514. data/ext/cargo-vendor/addr2line-0.20.0/bench.plot.r +0 -23
  515. data/ext/cargo-vendor/addr2line-0.20.0/benchmark.sh +0 -112
  516. data/ext/cargo-vendor/addr2line-0.20.0/coverage.sh +0 -5
  517. data/ext/cargo-vendor/addr2line-0.20.0/examples/addr2line.rs +0 -306
  518. data/ext/cargo-vendor/addr2line-0.20.0/rustfmt.toml +0 -1
  519. data/ext/cargo-vendor/addr2line-0.20.0/src/builtin_split_dwarf_loader.rs +0 -164
  520. data/ext/cargo-vendor/addr2line-0.20.0/src/function.rs +0 -555
  521. data/ext/cargo-vendor/addr2line-0.20.0/src/lazy.rs +0 -31
  522. data/ext/cargo-vendor/addr2line-0.20.0/src/lib.rs +0 -1729
  523. data/ext/cargo-vendor/addr2line-0.20.0/tests/correctness.rs +0 -126
  524. data/ext/cargo-vendor/addr2line-0.20.0/tests/output_equivalence.rs +0 -135
  525. data/ext/cargo-vendor/addr2line-0.20.0/tests/parse.rs +0 -114
  526. data/ext/cargo-vendor/cranelift-bforest-0.99.1/.cargo-checksum.json +0 -1
  527. data/ext/cargo-vendor/cranelift-bforest-0.99.1/Cargo.toml +0 -31
  528. data/ext/cargo-vendor/cranelift-bforest-0.99.1/src/lib.rs +0 -198
  529. data/ext/cargo-vendor/cranelift-bforest-0.99.1/src/map.rs +0 -923
  530. data/ext/cargo-vendor/cranelift-bforest-0.99.1/src/pool.rs +0 -220
  531. data/ext/cargo-vendor/cranelift-bforest-0.99.1/src/set.rs +0 -598
  532. data/ext/cargo-vendor/cranelift-codegen-0.99.1/.cargo-checksum.json +0 -1
  533. data/ext/cargo-vendor/cranelift-codegen-0.99.1/Cargo.toml +0 -159
  534. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/binemit/mod.rs +0 -141
  535. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/binemit/stack_map.rs +0 -152
  536. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/bitset.rs +0 -163
  537. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/context.rs +0 -368
  538. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/incremental_cache.rs +0 -256
  539. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/ir/atomic_rmw_op.rs +0 -104
  540. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/ir/condcodes.rs +0 -404
  541. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/ir/constant.rs +0 -463
  542. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/ir/dfg.rs +0 -1686
  543. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/ir/dynamic_type.rs +0 -55
  544. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/ir/entities.rs +0 -567
  545. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/ir/extfunc.rs +0 -411
  546. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/ir/extname.rs +0 -333
  547. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/ir/function.rs +0 -469
  548. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/ir/globalvalue.rs +0 -155
  549. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/ir/immediates.rs +0 -1615
  550. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/ir/instructions.rs +0 -1000
  551. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/ir/jumptable.rs +0 -168
  552. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/ir/known_symbol.rs +0 -47
  553. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/ir/libcall.rs +0 -232
  554. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/ir/memflags.rs +0 -279
  555. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/ir/mod.rs +0 -106
  556. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/ir/sourceloc.rs +0 -117
  557. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/ir/stackslot.rs +0 -216
  558. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/ir/table.rs +0 -40
  559. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/ir/trapcode.rs +0 -144
  560. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/ir/types.rs +0 -630
  561. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/aarch64/abi.rs +0 -1543
  562. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/aarch64/inst/args.rs +0 -741
  563. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/aarch64/inst/emit.rs +0 -3919
  564. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/aarch64/inst/emit_tests.rs +0 -7897
  565. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/aarch64/inst/mod.rs +0 -3039
  566. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/aarch64/inst.isle +0 -4048
  567. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/aarch64/lower/isle.rs +0 -873
  568. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/aarch64/lower.isle +0 -2907
  569. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/aarch64/lower.rs +0 -702
  570. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/aarch64/lower_dynamic_neon.isle +0 -110
  571. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/call_conv.rs +0 -119
  572. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/riscv64/abi.rs +0 -985
  573. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/riscv64/inst/args.rs +0 -1812
  574. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/riscv64/inst/emit.rs +0 -3254
  575. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/riscv64/inst/encode.rs +0 -281
  576. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/riscv64/inst/imms.rs +0 -250
  577. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/riscv64/inst/mod.rs +0 -2125
  578. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/riscv64/inst/vector.rs +0 -939
  579. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/riscv64/inst.isle +0 -2972
  580. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/riscv64/inst_vector.isle +0 -1650
  581. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/riscv64/lower/isle.rs +0 -620
  582. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/riscv64/lower.isle +0 -2002
  583. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/s390x/abi.rs +0 -948
  584. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/s390x/inst/mod.rs +0 -3426
  585. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/s390x/inst.isle +0 -5043
  586. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/s390x/lower.isle +0 -3983
  587. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/unwind/systemv.rs +0 -272
  588. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/unwind/winx64.rs +0 -334
  589. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/unwind.rs +0 -182
  590. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/x64/abi.rs +0 -1204
  591. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/x64/encoding/evex.rs +0 -749
  592. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/x64/encoding/rex.rs +0 -588
  593. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/x64/inst/args.rs +0 -2193
  594. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/x64/inst/emit.rs +0 -4298
  595. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/x64/inst/emit_tests.rs +0 -5678
  596. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/x64/inst/mod.rs +0 -2759
  597. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/x64/inst.isle +0 -5079
  598. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/x64/lower/isle.rs +0 -1096
  599. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/x64/lower.isle +0 -4651
  600. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/x64/lower.rs +0 -340
  601. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isle_prelude.rs +0 -894
  602. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/legalizer/mod.rs +0 -346
  603. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/lib.rs +0 -140
  604. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/machinst/abi.rs +0 -2641
  605. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/machinst/buffer.rs +0 -2365
  606. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/machinst/isle.rs +0 -837
  607. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/machinst/mod.rs +0 -551
  608. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/machinst/reg.rs +0 -556
  609. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/machinst/vcode.rs +0 -1591
  610. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/opts/bitops.isle +0 -106
  611. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/opts/cprop.isle +0 -200
  612. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/opts/extends.isle +0 -41
  613. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/opts/icmp.isle +0 -177
  614. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/opts/selects.isle +0 -63
  615. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/opts/vector.isle +0 -8
  616. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/prelude.isle +0 -594
  617. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/prelude_lower.isle +0 -1024
  618. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/value_label.rs +0 -32
  619. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/verifier/mod.rs +0 -1884
  620. data/ext/cargo-vendor/cranelift-codegen-meta-0.99.1/.cargo-checksum.json +0 -1
  621. data/ext/cargo-vendor/cranelift-codegen-meta-0.99.1/Cargo.toml +0 -26
  622. data/ext/cargo-vendor/cranelift-codegen-meta-0.99.1/src/constant_hash.rs +0 -64
  623. data/ext/cargo-vendor/cranelift-codegen-meta-0.99.1/src/gen_inst.rs +0 -1785
  624. data/ext/cargo-vendor/cranelift-codegen-meta-0.99.1/src/shared/instructions.rs +0 -3847
  625. data/ext/cargo-vendor/cranelift-codegen-shared-0.99.1/.cargo-checksum.json +0 -1
  626. data/ext/cargo-vendor/cranelift-codegen-shared-0.99.1/Cargo.toml +0 -22
  627. data/ext/cargo-vendor/cranelift-codegen-shared-0.99.1/src/lib.rs +0 -26
  628. data/ext/cargo-vendor/cranelift-control-0.99.1/.cargo-checksum.json +0 -1
  629. data/ext/cargo-vendor/cranelift-control-0.99.1/Cargo.toml +0 -30
  630. data/ext/cargo-vendor/cranelift-entity-0.99.1/.cargo-checksum.json +0 -1
  631. data/ext/cargo-vendor/cranelift-entity-0.99.1/Cargo.toml +0 -35
  632. data/ext/cargo-vendor/cranelift-entity-0.99.1/src/lib.rs +0 -330
  633. data/ext/cargo-vendor/cranelift-entity-0.99.1/src/list.rs +0 -955
  634. data/ext/cargo-vendor/cranelift-entity-0.99.1/src/packed_option.rs +0 -171
  635. data/ext/cargo-vendor/cranelift-entity-0.99.1/src/primary.rs +0 -456
  636. data/ext/cargo-vendor/cranelift-entity-0.99.1/src/sparse.rs +0 -368
  637. data/ext/cargo-vendor/cranelift-frontend-0.99.1/.cargo-checksum.json +0 -1
  638. data/ext/cargo-vendor/cranelift-frontend-0.99.1/Cargo.toml +0 -53
  639. data/ext/cargo-vendor/cranelift-frontend-0.99.1/src/lib.rs +0 -204
  640. data/ext/cargo-vendor/cranelift-isle-0.99.1/.cargo-checksum.json +0 -1
  641. data/ext/cargo-vendor/cranelift-isle-0.99.1/Cargo.toml +0 -37
  642. data/ext/cargo-vendor/cranelift-native-0.99.1/.cargo-checksum.json +0 -1
  643. data/ext/cargo-vendor/cranelift-native-0.99.1/Cargo.toml +0 -38
  644. data/ext/cargo-vendor/cranelift-native-0.99.1/src/lib.rs +0 -204
  645. data/ext/cargo-vendor/cranelift-wasm-0.99.1/.cargo-checksum.json +0 -1
  646. data/ext/cargo-vendor/cranelift-wasm-0.99.1/Cargo.toml +0 -85
  647. data/ext/cargo-vendor/cranelift-wasm-0.99.1/src/code_translator.rs +0 -3608
  648. data/ext/cargo-vendor/cranelift-wasm-0.99.1/src/environ/dummy.rs +0 -942
  649. data/ext/cargo-vendor/cranelift-wasm-0.99.1/src/environ/spec.rs +0 -913
  650. data/ext/cargo-vendor/cranelift-wasm-0.99.1/src/func_translator.rs +0 -431
  651. data/ext/cargo-vendor/cranelift-wasm-0.99.1/src/heap.rs +0 -99
  652. data/ext/cargo-vendor/cranelift-wasm-0.99.1/src/lib.rs +0 -78
  653. data/ext/cargo-vendor/cranelift-wasm-0.99.1/src/sections_translator.rs +0 -420
  654. data/ext/cargo-vendor/cranelift-wasm-0.99.1/src/translation_utils.rs +0 -99
  655. data/ext/cargo-vendor/env_logger-0.10.0/.cargo-checksum.json +0 -1
  656. data/ext/cargo-vendor/env_logger-0.10.0/Cargo.lock +0 -254
  657. data/ext/cargo-vendor/env_logger-0.10.0/Cargo.toml +0 -129
  658. data/ext/cargo-vendor/env_logger-0.10.0/LICENSE-APACHE +0 -201
  659. data/ext/cargo-vendor/env_logger-0.10.0/README.md +0 -183
  660. data/ext/cargo-vendor/env_logger-0.10.0/examples/custom_default_format.rs +0 -40
  661. data/ext/cargo-vendor/env_logger-0.10.0/examples/custom_format.rs +0 -54
  662. data/ext/cargo-vendor/env_logger-0.10.0/examples/custom_logger.rs +0 -62
  663. data/ext/cargo-vendor/env_logger-0.10.0/examples/default.rs +0 -38
  664. data/ext/cargo-vendor/env_logger-0.10.0/examples/direct_logger.rs +0 -39
  665. data/ext/cargo-vendor/env_logger-0.10.0/examples/filters_from_code.rs +0 -20
  666. data/ext/cargo-vendor/env_logger-0.10.0/examples/in_tests.rs +0 -54
  667. data/ext/cargo-vendor/env_logger-0.10.0/examples/syslog_friendly_format.rs +0 -24
  668. data/ext/cargo-vendor/env_logger-0.10.0/src/filter/mod.rs +0 -868
  669. data/ext/cargo-vendor/env_logger-0.10.0/src/filter/regex.rs +0 -29
  670. data/ext/cargo-vendor/env_logger-0.10.0/src/filter/string.rs +0 -24
  671. data/ext/cargo-vendor/env_logger-0.10.0/src/fmt/humantime/extern_impl.rs +0 -118
  672. data/ext/cargo-vendor/env_logger-0.10.0/src/fmt/humantime/mod.rs +0 -11
  673. data/ext/cargo-vendor/env_logger-0.10.0/src/fmt/humantime/shim_impl.rs +0 -5
  674. data/ext/cargo-vendor/env_logger-0.10.0/src/fmt/mod.rs +0 -652
  675. data/ext/cargo-vendor/env_logger-0.10.0/src/fmt/writer/atty.rs +0 -33
  676. data/ext/cargo-vendor/env_logger-0.10.0/src/fmt/writer/mod.rs +0 -253
  677. data/ext/cargo-vendor/env_logger-0.10.0/src/fmt/writer/termcolor/extern_impl.rs +0 -532
  678. data/ext/cargo-vendor/env_logger-0.10.0/src/fmt/writer/termcolor/mod.rs +0 -12
  679. data/ext/cargo-vendor/env_logger-0.10.0/src/fmt/writer/termcolor/shim_impl.rs +0 -72
  680. data/ext/cargo-vendor/env_logger-0.10.0/src/lib.rs +0 -1311
  681. data/ext/cargo-vendor/env_logger-0.10.0/tests/init-twice-retains-filter.rs +0 -40
  682. data/ext/cargo-vendor/env_logger-0.10.0/tests/log-in-log.rs +0 -39
  683. data/ext/cargo-vendor/env_logger-0.10.0/tests/log_tls_dtors.rs +0 -66
  684. data/ext/cargo-vendor/env_logger-0.10.0/tests/regexp_filter.rs +0 -57
  685. data/ext/cargo-vendor/fallible-iterator-0.2.0/.cargo-checksum.json +0 -1
  686. data/ext/cargo-vendor/fallible-iterator-0.2.0/CHANGELOG.md +0 -26
  687. data/ext/cargo-vendor/fallible-iterator-0.2.0/Cargo.toml +0 -27
  688. data/ext/cargo-vendor/fallible-iterator-0.2.0/README.md +0 -15
  689. data/ext/cargo-vendor/fallible-iterator-0.2.0/src/lib.rs +0 -2606
  690. data/ext/cargo-vendor/fallible-iterator-0.2.0/src/test.rs +0 -455
  691. data/ext/cargo-vendor/file-per-thread-logger-0.2.0/.cargo-checksum.json +0 -1
  692. data/ext/cargo-vendor/file-per-thread-logger-0.2.0/Cargo.toml +0 -36
  693. data/ext/cargo-vendor/file-per-thread-logger-0.2.0/README.md +0 -25
  694. data/ext/cargo-vendor/file-per-thread-logger-0.2.0/run-tests.sh +0 -12
  695. data/ext/cargo-vendor/file-per-thread-logger-0.2.0/src/lib.rs +0 -200
  696. data/ext/cargo-vendor/file-per-thread-logger-0.2.0/tests/test.rs +0 -323
  697. data/ext/cargo-vendor/gimli-0.27.3/.cargo-checksum.json +0 -1
  698. data/ext/cargo-vendor/gimli-0.27.3/CHANGELOG.md +0 -943
  699. data/ext/cargo-vendor/gimli-0.27.3/Cargo.lock +0 -345
  700. data/ext/cargo-vendor/gimli-0.27.3/Cargo.toml +0 -151
  701. data/ext/cargo-vendor/gimli-0.27.3/LICENSE-APACHE +0 -201
  702. data/ext/cargo-vendor/gimli-0.27.3/LICENSE-MIT +0 -25
  703. data/ext/cargo-vendor/gimli-0.27.3/README.md +0 -78
  704. data/ext/cargo-vendor/gimli-0.27.3/examples/dwarf-validate.rs +0 -267
  705. data/ext/cargo-vendor/gimli-0.27.3/examples/dwarfdump.rs +0 -2369
  706. data/ext/cargo-vendor/gimli-0.27.3/examples/simple.rs +0 -67
  707. data/ext/cargo-vendor/gimli-0.27.3/examples/simple_line.rs +0 -106
  708. data/ext/cargo-vendor/gimli-0.27.3/src/arch.rs +0 -751
  709. data/ext/cargo-vendor/gimli-0.27.3/src/common.rs +0 -381
  710. data/ext/cargo-vendor/gimli-0.27.3/src/constants.rs +0 -1426
  711. data/ext/cargo-vendor/gimli-0.27.3/src/endianity.rs +0 -256
  712. data/ext/cargo-vendor/gimli-0.27.3/src/leb128.rs +0 -612
  713. data/ext/cargo-vendor/gimli-0.27.3/src/lib.rs +0 -79
  714. data/ext/cargo-vendor/gimli-0.27.3/src/read/abbrev.rs +0 -1089
  715. data/ext/cargo-vendor/gimli-0.27.3/src/read/addr.rs +0 -128
  716. data/ext/cargo-vendor/gimli-0.27.3/src/read/aranges.rs +0 -660
  717. data/ext/cargo-vendor/gimli-0.27.3/src/read/cfi.rs +0 -7574
  718. data/ext/cargo-vendor/gimli-0.27.3/src/read/dwarf.rs +0 -1184
  719. data/ext/cargo-vendor/gimli-0.27.3/src/read/endian_reader.rs +0 -639
  720. data/ext/cargo-vendor/gimli-0.27.3/src/read/endian_slice.rs +0 -350
  721. data/ext/cargo-vendor/gimli-0.27.3/src/read/index.rs +0 -535
  722. data/ext/cargo-vendor/gimli-0.27.3/src/read/lazy.rs +0 -116
  723. data/ext/cargo-vendor/gimli-0.27.3/src/read/line.rs +0 -3130
  724. data/ext/cargo-vendor/gimli-0.27.3/src/read/lists.rs +0 -68
  725. data/ext/cargo-vendor/gimli-0.27.3/src/read/loclists.rs +0 -1627
  726. data/ext/cargo-vendor/gimli-0.27.3/src/read/lookup.rs +0 -202
  727. data/ext/cargo-vendor/gimli-0.27.3/src/read/mod.rs +0 -830
  728. data/ext/cargo-vendor/gimli-0.27.3/src/read/op.rs +0 -4119
  729. data/ext/cargo-vendor/gimli-0.27.3/src/read/pubnames.rs +0 -141
  730. data/ext/cargo-vendor/gimli-0.27.3/src/read/pubtypes.rs +0 -141
  731. data/ext/cargo-vendor/gimli-0.27.3/src/read/reader.rs +0 -502
  732. data/ext/cargo-vendor/gimli-0.27.3/src/read/rnglists.rs +0 -1458
  733. data/ext/cargo-vendor/gimli-0.27.3/src/read/str.rs +0 -321
  734. data/ext/cargo-vendor/gimli-0.27.3/src/read/unit.rs +0 -6139
  735. data/ext/cargo-vendor/gimli-0.27.3/src/read/util.rs +0 -251
  736. data/ext/cargo-vendor/gimli-0.27.3/src/read/value.rs +0 -1621
  737. data/ext/cargo-vendor/gimli-0.27.3/src/test_util.rs +0 -53
  738. data/ext/cargo-vendor/gimli-0.27.3/src/write/abbrev.rs +0 -188
  739. data/ext/cargo-vendor/gimli-0.27.3/src/write/cfi.rs +0 -1025
  740. data/ext/cargo-vendor/gimli-0.27.3/src/write/dwarf.rs +0 -138
  741. data/ext/cargo-vendor/gimli-0.27.3/src/write/endian_vec.rs +0 -117
  742. data/ext/cargo-vendor/gimli-0.27.3/src/write/line.rs +0 -1957
  743. data/ext/cargo-vendor/gimli-0.27.3/src/write/loc.rs +0 -550
  744. data/ext/cargo-vendor/gimli-0.27.3/src/write/mod.rs +0 -425
  745. data/ext/cargo-vendor/gimli-0.27.3/src/write/op.rs +0 -1618
  746. data/ext/cargo-vendor/gimli-0.27.3/src/write/range.rs +0 -416
  747. data/ext/cargo-vendor/gimli-0.27.3/src/write/section.rs +0 -172
  748. data/ext/cargo-vendor/gimli-0.27.3/src/write/str.rs +0 -172
  749. data/ext/cargo-vendor/gimli-0.27.3/src/write/unit.rs +0 -3152
  750. data/ext/cargo-vendor/gimli-0.27.3/src/write/writer.rs +0 -494
  751. data/ext/cargo-vendor/hashbrown-0.12.3/.cargo-checksum.json +0 -1
  752. data/ext/cargo-vendor/hashbrown-0.12.3/CHANGELOG.md +0 -402
  753. data/ext/cargo-vendor/hashbrown-0.12.3/Cargo.toml +0 -113
  754. data/ext/cargo-vendor/hashbrown-0.12.3/LICENSE-APACHE +0 -201
  755. data/ext/cargo-vendor/hashbrown-0.12.3/LICENSE-MIT +0 -25
  756. data/ext/cargo-vendor/hashbrown-0.12.3/README.md +0 -126
  757. data/ext/cargo-vendor/hashbrown-0.12.3/benches/bench.rs +0 -331
  758. data/ext/cargo-vendor/hashbrown-0.12.3/benches/insert_unique_unchecked.rs +0 -32
  759. data/ext/cargo-vendor/hashbrown-0.12.3/clippy.toml +0 -1
  760. data/ext/cargo-vendor/hashbrown-0.12.3/src/external_trait_impls/mod.rs +0 -4
  761. data/ext/cargo-vendor/hashbrown-0.12.3/src/external_trait_impls/rayon/helpers.rs +0 -27
  762. data/ext/cargo-vendor/hashbrown-0.12.3/src/external_trait_impls/rayon/map.rs +0 -734
  763. data/ext/cargo-vendor/hashbrown-0.12.3/src/external_trait_impls/rayon/mod.rs +0 -4
  764. data/ext/cargo-vendor/hashbrown-0.12.3/src/external_trait_impls/rayon/raw.rs +0 -231
  765. data/ext/cargo-vendor/hashbrown-0.12.3/src/external_trait_impls/rayon/set.rs +0 -659
  766. data/ext/cargo-vendor/hashbrown-0.12.3/src/external_trait_impls/serde.rs +0 -201
  767. data/ext/cargo-vendor/hashbrown-0.12.3/src/lib.rs +0 -150
  768. data/ext/cargo-vendor/hashbrown-0.12.3/src/macros.rs +0 -70
  769. data/ext/cargo-vendor/hashbrown-0.12.3/src/map.rs +0 -8408
  770. data/ext/cargo-vendor/hashbrown-0.12.3/src/raw/alloc.rs +0 -73
  771. data/ext/cargo-vendor/hashbrown-0.12.3/src/raw/bitmask.rs +0 -122
  772. data/ext/cargo-vendor/hashbrown-0.12.3/src/raw/generic.rs +0 -154
  773. data/ext/cargo-vendor/hashbrown-0.12.3/src/raw/mod.rs +0 -2460
  774. data/ext/cargo-vendor/hashbrown-0.12.3/src/raw/sse2.rs +0 -146
  775. data/ext/cargo-vendor/hashbrown-0.12.3/src/rustc_entry.rs +0 -630
  776. data/ext/cargo-vendor/hashbrown-0.12.3/src/scopeguard.rs +0 -74
  777. data/ext/cargo-vendor/hashbrown-0.12.3/src/set.rs +0 -2790
  778. data/ext/cargo-vendor/hashbrown-0.12.3/tests/hasher.rs +0 -65
  779. data/ext/cargo-vendor/hashbrown-0.12.3/tests/rayon.rs +0 -533
  780. data/ext/cargo-vendor/hashbrown-0.12.3/tests/serde.rs +0 -65
  781. data/ext/cargo-vendor/hashbrown-0.12.3/tests/set.rs +0 -34
  782. data/ext/cargo-vendor/humantime-2.1.0/.cargo-checksum.json +0 -1
  783. data/ext/cargo-vendor/humantime-2.1.0/Cargo.toml +0 -37
  784. data/ext/cargo-vendor/humantime-2.1.0/LICENSE-APACHE +0 -202
  785. data/ext/cargo-vendor/humantime-2.1.0/LICENSE-MIT +0 -26
  786. data/ext/cargo-vendor/humantime-2.1.0/README.md +0 -68
  787. data/ext/cargo-vendor/humantime-2.1.0/benches/datetime_format.rs +0 -56
  788. data/ext/cargo-vendor/humantime-2.1.0/benches/datetime_parse.rs +0 -47
  789. data/ext/cargo-vendor/humantime-2.1.0/bulk.yaml +0 -8
  790. data/ext/cargo-vendor/humantime-2.1.0/src/date.rs +0 -623
  791. data/ext/cargo-vendor/humantime-2.1.0/src/duration.rs +0 -456
  792. data/ext/cargo-vendor/humantime-2.1.0/src/lib.rs +0 -34
  793. data/ext/cargo-vendor/humantime-2.1.0/src/wrapper.rs +0 -107
  794. data/ext/cargo-vendor/humantime-2.1.0/vagga.yaml +0 -92
  795. data/ext/cargo-vendor/indexmap-1.9.3/.cargo-checksum.json +0 -1
  796. data/ext/cargo-vendor/indexmap-1.9.3/Cargo.toml +0 -108
  797. data/ext/cargo-vendor/indexmap-1.9.3/LICENSE-APACHE +0 -201
  798. data/ext/cargo-vendor/indexmap-1.9.3/LICENSE-MIT +0 -25
  799. data/ext/cargo-vendor/indexmap-1.9.3/README.md +0 -55
  800. data/ext/cargo-vendor/indexmap-1.9.3/RELEASES.md +0 -388
  801. data/ext/cargo-vendor/indexmap-1.9.3/benches/bench.rs +0 -763
  802. data/ext/cargo-vendor/indexmap-1.9.3/benches/faststring.rs +0 -185
  803. data/ext/cargo-vendor/indexmap-1.9.3/build.rs +0 -8
  804. data/ext/cargo-vendor/indexmap-1.9.3/src/arbitrary.rs +0 -75
  805. data/ext/cargo-vendor/indexmap-1.9.3/src/equivalent.rs +0 -27
  806. data/ext/cargo-vendor/indexmap-1.9.3/src/lib.rs +0 -194
  807. data/ext/cargo-vendor/indexmap-1.9.3/src/macros.rs +0 -178
  808. data/ext/cargo-vendor/indexmap-1.9.3/src/map/core/raw.rs +0 -191
  809. data/ext/cargo-vendor/indexmap-1.9.3/src/map/core.rs +0 -700
  810. data/ext/cargo-vendor/indexmap-1.9.3/src/map.rs +0 -1947
  811. data/ext/cargo-vendor/indexmap-1.9.3/src/mutable_keys.rs +0 -75
  812. data/ext/cargo-vendor/indexmap-1.9.3/src/rayon/map.rs +0 -583
  813. data/ext/cargo-vendor/indexmap-1.9.3/src/rayon/mod.rs +0 -27
  814. data/ext/cargo-vendor/indexmap-1.9.3/src/rayon/set.rs +0 -741
  815. data/ext/cargo-vendor/indexmap-1.9.3/src/rustc.rs +0 -158
  816. data/ext/cargo-vendor/indexmap-1.9.3/src/serde.rs +0 -155
  817. data/ext/cargo-vendor/indexmap-1.9.3/src/serde_seq.rs +0 -112
  818. data/ext/cargo-vendor/indexmap-1.9.3/src/set.rs +0 -1912
  819. data/ext/cargo-vendor/indexmap-1.9.3/src/util.rs +0 -31
  820. data/ext/cargo-vendor/indexmap-1.9.3/tests/equivalent_trait.rs +0 -53
  821. data/ext/cargo-vendor/indexmap-1.9.3/tests/macros_full_path.rs +0 -19
  822. data/ext/cargo-vendor/indexmap-1.9.3/tests/quick.rs +0 -573
  823. data/ext/cargo-vendor/indexmap-1.9.3/tests/tests.rs +0 -28
  824. data/ext/cargo-vendor/object-0.31.1/.cargo-checksum.json +0 -1
  825. data/ext/cargo-vendor/object-0.31.1/CHANGELOG.md +0 -621
  826. data/ext/cargo-vendor/object-0.31.1/Cargo.toml +0 -161
  827. data/ext/cargo-vendor/object-0.31.1/LICENSE-APACHE +0 -201
  828. data/ext/cargo-vendor/object-0.31.1/LICENSE-MIT +0 -25
  829. data/ext/cargo-vendor/object-0.31.1/README.md +0 -58
  830. data/ext/cargo-vendor/object-0.31.1/clippy.toml +0 -1
  831. data/ext/cargo-vendor/object-0.31.1/src/archive.rs +0 -91
  832. data/ext/cargo-vendor/object-0.31.1/src/common.rs +0 -499
  833. data/ext/cargo-vendor/object-0.31.1/src/elf.rs +0 -6146
  834. data/ext/cargo-vendor/object-0.31.1/src/endian.rs +0 -831
  835. data/ext/cargo-vendor/object-0.31.1/src/lib.rs +0 -116
  836. data/ext/cargo-vendor/object-0.31.1/src/macho.rs +0 -3307
  837. data/ext/cargo-vendor/object-0.31.1/src/pe.rs +0 -3050
  838. data/ext/cargo-vendor/object-0.31.1/src/pod.rs +0 -239
  839. data/ext/cargo-vendor/object-0.31.1/src/read/any.rs +0 -1323
  840. data/ext/cargo-vendor/object-0.31.1/src/read/archive.rs +0 -739
  841. data/ext/cargo-vendor/object-0.31.1/src/read/coff/comdat.rs +0 -207
  842. data/ext/cargo-vendor/object-0.31.1/src/read/coff/file.rs +0 -364
  843. data/ext/cargo-vendor/object-0.31.1/src/read/coff/mod.rs +0 -18
  844. data/ext/cargo-vendor/object-0.31.1/src/read/coff/relocation.rs +0 -104
  845. data/ext/cargo-vendor/object-0.31.1/src/read/coff/section.rs +0 -574
  846. data/ext/cargo-vendor/object-0.31.1/src/read/coff/symbol.rs +0 -626
  847. data/ext/cargo-vendor/object-0.31.1/src/read/elf/attributes.rs +0 -303
  848. data/ext/cargo-vendor/object-0.31.1/src/read/elf/comdat.rs +0 -160
  849. data/ext/cargo-vendor/object-0.31.1/src/read/elf/compression.rs +0 -56
  850. data/ext/cargo-vendor/object-0.31.1/src/read/elf/dynamic.rs +0 -117
  851. data/ext/cargo-vendor/object-0.31.1/src/read/elf/file.rs +0 -910
  852. data/ext/cargo-vendor/object-0.31.1/src/read/elf/hash.rs +0 -220
  853. data/ext/cargo-vendor/object-0.31.1/src/read/elf/mod.rs +0 -42
  854. data/ext/cargo-vendor/object-0.31.1/src/read/elf/note.rs +0 -263
  855. data/ext/cargo-vendor/object-0.31.1/src/read/elf/relocation.rs +0 -571
  856. data/ext/cargo-vendor/object-0.31.1/src/read/elf/section.rs +0 -1146
  857. data/ext/cargo-vendor/object-0.31.1/src/read/elf/segment.rs +0 -332
  858. data/ext/cargo-vendor/object-0.31.1/src/read/elf/symbol.rs +0 -577
  859. data/ext/cargo-vendor/object-0.31.1/src/read/elf/version.rs +0 -421
  860. data/ext/cargo-vendor/object-0.31.1/src/read/macho/dyld_cache.rs +0 -343
  861. data/ext/cargo-vendor/object-0.31.1/src/read/macho/fat.rs +0 -122
  862. data/ext/cargo-vendor/object-0.31.1/src/read/macho/file.rs +0 -731
  863. data/ext/cargo-vendor/object-0.31.1/src/read/macho/load_command.rs +0 -373
  864. data/ext/cargo-vendor/object-0.31.1/src/read/macho/mod.rs +0 -30
  865. data/ext/cargo-vendor/object-0.31.1/src/read/macho/relocation.rs +0 -127
  866. data/ext/cargo-vendor/object-0.31.1/src/read/macho/section.rs +0 -387
  867. data/ext/cargo-vendor/object-0.31.1/src/read/macho/segment.rs +0 -301
  868. data/ext/cargo-vendor/object-0.31.1/src/read/macho/symbol.rs +0 -488
  869. data/ext/cargo-vendor/object-0.31.1/src/read/mod.rs +0 -760
  870. data/ext/cargo-vendor/object-0.31.1/src/read/pe/data_directory.rs +0 -211
  871. data/ext/cargo-vendor/object-0.31.1/src/read/pe/export.rs +0 -331
  872. data/ext/cargo-vendor/object-0.31.1/src/read/pe/file.rs +0 -1029
  873. data/ext/cargo-vendor/object-0.31.1/src/read/pe/import.rs +0 -332
  874. data/ext/cargo-vendor/object-0.31.1/src/read/pe/mod.rs +0 -34
  875. data/ext/cargo-vendor/object-0.31.1/src/read/pe/relocation.rs +0 -90
  876. data/ext/cargo-vendor/object-0.31.1/src/read/pe/resource.rs +0 -207
  877. data/ext/cargo-vendor/object-0.31.1/src/read/pe/rich.rs +0 -91
  878. data/ext/cargo-vendor/object-0.31.1/src/read/pe/section.rs +0 -434
  879. data/ext/cargo-vendor/object-0.31.1/src/read/read_cache.rs +0 -182
  880. data/ext/cargo-vendor/object-0.31.1/src/read/read_ref.rs +0 -137
  881. data/ext/cargo-vendor/object-0.31.1/src/read/traits.rs +0 -469
  882. data/ext/cargo-vendor/object-0.31.1/src/read/util.rs +0 -425
  883. data/ext/cargo-vendor/object-0.31.1/src/read/wasm.rs +0 -951
  884. data/ext/cargo-vendor/object-0.31.1/src/read/xcoff/comdat.rs +0 -129
  885. data/ext/cargo-vendor/object-0.31.1/src/read/xcoff/file.rs +0 -629
  886. data/ext/cargo-vendor/object-0.31.1/src/read/xcoff/mod.rs +0 -21
  887. data/ext/cargo-vendor/object-0.31.1/src/read/xcoff/relocation.rs +0 -127
  888. data/ext/cargo-vendor/object-0.31.1/src/read/xcoff/section.rs +0 -427
  889. data/ext/cargo-vendor/object-0.31.1/src/read/xcoff/segment.rs +0 -113
  890. data/ext/cargo-vendor/object-0.31.1/src/read/xcoff/symbol.rs +0 -695
  891. data/ext/cargo-vendor/object-0.31.1/src/write/coff.rs +0 -725
  892. data/ext/cargo-vendor/object-0.31.1/src/write/elf/mod.rs +0 -9
  893. data/ext/cargo-vendor/object-0.31.1/src/write/elf/object.rs +0 -891
  894. data/ext/cargo-vendor/object-0.31.1/src/write/elf/writer.rs +0 -2143
  895. data/ext/cargo-vendor/object-0.31.1/src/write/macho.rs +0 -978
  896. data/ext/cargo-vendor/object-0.31.1/src/write/mod.rs +0 -943
  897. data/ext/cargo-vendor/object-0.31.1/src/write/pe.rs +0 -847
  898. data/ext/cargo-vendor/object-0.31.1/src/write/string.rs +0 -159
  899. data/ext/cargo-vendor/object-0.31.1/src/write/util.rs +0 -260
  900. data/ext/cargo-vendor/object-0.31.1/src/write/xcoff.rs +0 -556
  901. data/ext/cargo-vendor/object-0.31.1/src/xcoff.rs +0 -893
  902. data/ext/cargo-vendor/object-0.31.1/tests/integration.rs +0 -2
  903. data/ext/cargo-vendor/object-0.31.1/tests/parse_self.rs +0 -25
  904. data/ext/cargo-vendor/object-0.31.1/tests/read/coff.rs +0 -23
  905. data/ext/cargo-vendor/object-0.31.1/tests/read/mod.rs +0 -3
  906. data/ext/cargo-vendor/object-0.31.1/tests/round_trip/bss.rs +0 -255
  907. data/ext/cargo-vendor/object-0.31.1/tests/round_trip/coff.rs +0 -56
  908. data/ext/cargo-vendor/object-0.31.1/tests/round_trip/comdat.rs +0 -225
  909. data/ext/cargo-vendor/object-0.31.1/tests/round_trip/common.rs +0 -245
  910. data/ext/cargo-vendor/object-0.31.1/tests/round_trip/elf.rs +0 -289
  911. data/ext/cargo-vendor/object-0.31.1/tests/round_trip/macho.rs +0 -24
  912. data/ext/cargo-vendor/object-0.31.1/tests/round_trip/mod.rs +0 -636
  913. data/ext/cargo-vendor/object-0.31.1/tests/round_trip/section_flags.rs +0 -90
  914. data/ext/cargo-vendor/object-0.31.1/tests/round_trip/tls.rs +0 -316
  915. data/ext/cargo-vendor/serde-1.0.185/.cargo-checksum.json +0 -1
  916. data/ext/cargo-vendor/serde-1.0.185/Cargo.toml +0 -66
  917. data/ext/cargo-vendor/serde-1.0.185/build.rs +0 -97
  918. data/ext/cargo-vendor/serde-1.0.185/src/de/ignored_any.rs +0 -242
  919. data/ext/cargo-vendor/serde-1.0.185/src/de/impls.rs +0 -2968
  920. data/ext/cargo-vendor/serde-1.0.185/src/de/mod.rs +0 -2299
  921. data/ext/cargo-vendor/serde-1.0.185/src/de/utf8.rs +0 -46
  922. data/ext/cargo-vendor/serde-1.0.185/src/de/value.rs +0 -1711
  923. data/ext/cargo-vendor/serde-1.0.185/src/integer128.rs +0 -82
  924. data/ext/cargo-vendor/serde-1.0.185/src/lib.rs +0 -327
  925. data/ext/cargo-vendor/serde-1.0.185/src/macros.rs +0 -235
  926. data/ext/cargo-vendor/serde-1.0.185/src/ser/fmt.rs +0 -175
  927. data/ext/cargo-vendor/serde-1.0.185/src/ser/impls.rs +0 -1012
  928. data/ext/cargo-vendor/serde-1.0.185/src/ser/mod.rs +0 -1958
  929. data/ext/cargo-vendor/serde_derive-1.0.185/.cargo-checksum.json +0 -1
  930. data/ext/cargo-vendor/serde_derive-1.0.185/Cargo.toml +0 -59
  931. data/ext/cargo-vendor/serde_derive-1.0.185/src/lib.rs +0 -102
  932. data/ext/cargo-vendor/serde_derive-1.0.185/src/ser.rs +0 -1359
  933. data/ext/cargo-vendor/termcolor-1.2.0/.cargo-checksum.json +0 -1
  934. data/ext/cargo-vendor/termcolor-1.2.0/COPYING +0 -3
  935. data/ext/cargo-vendor/termcolor-1.2.0/Cargo.toml +0 -40
  936. data/ext/cargo-vendor/termcolor-1.2.0/LICENSE-MIT +0 -21
  937. data/ext/cargo-vendor/termcolor-1.2.0/README.md +0 -115
  938. data/ext/cargo-vendor/termcolor-1.2.0/UNLICENSE +0 -24
  939. data/ext/cargo-vendor/termcolor-1.2.0/rustfmt.toml +0 -2
  940. data/ext/cargo-vendor/termcolor-1.2.0/src/lib.rs +0 -2350
  941. data/ext/cargo-vendor/wasi-cap-std-sync-12.0.1/.cargo-checksum.json +0 -1
  942. data/ext/cargo-vendor/wasi-cap-std-sync-12.0.1/Cargo.toml +0 -96
  943. data/ext/cargo-vendor/wasi-cap-std-sync-12.0.1/src/lib.rs +0 -141
  944. data/ext/cargo-vendor/wasi-common-12.0.1/.cargo-checksum.json +0 -1
  945. data/ext/cargo-vendor/wasi-common-12.0.1/Cargo.toml +0 -87
  946. data/ext/cargo-vendor/wasm-encoder-0.31.1/.cargo-checksum.json +0 -1
  947. data/ext/cargo-vendor/wasm-encoder-0.31.1/Cargo.toml +0 -33
  948. data/ext/cargo-vendor/wasm-encoder-0.31.1/src/component/types.rs +0 -784
  949. data/ext/cargo-vendor/wasmparser-0.110.0/.cargo-checksum.json +0 -1
  950. data/ext/cargo-vendor/wasmparser-0.110.0/Cargo.lock +0 -644
  951. data/ext/cargo-vendor/wasmparser-0.110.0/Cargo.toml +0 -54
  952. data/ext/cargo-vendor/wasmparser-0.110.0/src/limits.rs +0 -59
  953. data/ext/cargo-vendor/wasmparser-0.110.0/src/readers/component/types.rs +0 -548
  954. data/ext/cargo-vendor/wasmparser-0.110.0/src/readers/core/types.rs +0 -1141
  955. data/ext/cargo-vendor/wasmparser-0.110.0/src/readers/core.rs +0 -35
  956. data/ext/cargo-vendor/wasmparser-0.110.0/src/validator/component.rs +0 -3144
  957. data/ext/cargo-vendor/wasmparser-0.110.0/src/validator/core.rs +0 -1314
  958. data/ext/cargo-vendor/wasmparser-0.110.0/src/validator/types.rs +0 -3197
  959. data/ext/cargo-vendor/wasmparser-0.110.0/src/validator.rs +0 -1568
  960. data/ext/cargo-vendor/wasmparser-0.111.0/.cargo-checksum.json +0 -1
  961. data/ext/cargo-vendor/wasmparser-0.111.0/Cargo.lock +0 -644
  962. data/ext/cargo-vendor/wasmparser-0.111.0/Cargo.toml +0 -54
  963. data/ext/cargo-vendor/wasmparser-0.111.0/src/binary_reader.rs +0 -1706
  964. data/ext/cargo-vendor/wasmparser-0.111.0/src/lib.rs +0 -726
  965. data/ext/cargo-vendor/wasmparser-0.111.0/src/limits.rs +0 -59
  966. data/ext/cargo-vendor/wasmparser-0.111.0/src/readers/component/types.rs +0 -548
  967. data/ext/cargo-vendor/wasmparser-0.111.0/src/readers/core/types.rs +0 -1141
  968. data/ext/cargo-vendor/wasmparser-0.111.0/src/validator/component.rs +0 -3148
  969. data/ext/cargo-vendor/wasmparser-0.111.0/src/validator/core.rs +0 -1314
  970. data/ext/cargo-vendor/wasmparser-0.111.0/src/validator/operators.rs +0 -3466
  971. data/ext/cargo-vendor/wasmparser-0.111.0/src/validator/types.rs +0 -3283
  972. data/ext/cargo-vendor/wasmparser-0.111.0/src/validator.rs +0 -1568
  973. data/ext/cargo-vendor/wasmprinter-0.2.63/.cargo-checksum.json +0 -1
  974. data/ext/cargo-vendor/wasmprinter-0.2.63/Cargo.toml +0 -39
  975. data/ext/cargo-vendor/wasmprinter-0.2.63/src/lib.rs +0 -2962
  976. data/ext/cargo-vendor/wasmprinter-0.2.63/src/operator.rs +0 -873
  977. data/ext/cargo-vendor/wasmtime-12.0.1/.cargo-checksum.json +0 -1
  978. data/ext/cargo-vendor/wasmtime-12.0.1/Cargo.toml +0 -186
  979. data/ext/cargo-vendor/wasmtime-12.0.1/src/component/component.rs +0 -466
  980. data/ext/cargo-vendor/wasmtime-12.0.1/src/component/func/typed.rs +0 -2326
  981. data/ext/cargo-vendor/wasmtime-12.0.1/src/component/instance.rs +0 -781
  982. data/ext/cargo-vendor/wasmtime-12.0.1/src/component/linker.rs +0 -479
  983. data/ext/cargo-vendor/wasmtime-12.0.1/src/component/mod.rs +0 -316
  984. data/ext/cargo-vendor/wasmtime-12.0.1/src/component/types.rs +0 -562
  985. data/ext/cargo-vendor/wasmtime-12.0.1/src/component/values.rs +0 -1376
  986. data/ext/cargo-vendor/wasmtime-12.0.1/src/config.rs +0 -2096
  987. data/ext/cargo-vendor/wasmtime-12.0.1/src/engine/serialization.rs +0 -629
  988. data/ext/cargo-vendor/wasmtime-12.0.1/src/engine.rs +0 -756
  989. data/ext/cargo-vendor/wasmtime-12.0.1/src/instance.rs +0 -883
  990. data/ext/cargo-vendor/wasmtime-12.0.1/src/limits.rs +0 -357
  991. data/ext/cargo-vendor/wasmtime-12.0.1/src/module.rs +0 -1346
  992. data/ext/cargo-vendor/wasmtime-12.0.1/src/store.rs +0 -2212
  993. data/ext/cargo-vendor/wasmtime-12.0.1/src/trampoline/memory.rs +0 -202
  994. data/ext/cargo-vendor/wasmtime-12.0.1/src/trampoline.rs +0 -76
  995. data/ext/cargo-vendor/wasmtime-asm-macros-12.0.1/.cargo-checksum.json +0 -1
  996. data/ext/cargo-vendor/wasmtime-asm-macros-12.0.1/Cargo.toml +0 -22
  997. data/ext/cargo-vendor/wasmtime-cache-12.0.1/.cargo-checksum.json +0 -1
  998. data/ext/cargo-vendor/wasmtime-cache-12.0.1/Cargo.toml +0 -73
  999. data/ext/cargo-vendor/wasmtime-cache-12.0.1/src/config.rs +0 -584
  1000. data/ext/cargo-vendor/wasmtime-cache-12.0.1/src/worker/tests.rs +0 -758
  1001. data/ext/cargo-vendor/wasmtime-cache-12.0.1/src/worker.rs +0 -903
  1002. data/ext/cargo-vendor/wasmtime-component-macro-12.0.1/.cargo-checksum.json +0 -1
  1003. data/ext/cargo-vendor/wasmtime-component-macro-12.0.1/Cargo.toml +0 -58
  1004. data/ext/cargo-vendor/wasmtime-component-macro-12.0.1/src/bindgen.rs +0 -343
  1005. data/ext/cargo-vendor/wasmtime-component-macro-12.0.1/src/component.rs +0 -1319
  1006. data/ext/cargo-vendor/wasmtime-component-macro-12.0.1/tests/codegen/unions.wit +0 -66
  1007. data/ext/cargo-vendor/wasmtime-component-macro-12.0.1/tests/codegen/variants.wit +0 -147
  1008. data/ext/cargo-vendor/wasmtime-component-util-12.0.1/.cargo-checksum.json +0 -1
  1009. data/ext/cargo-vendor/wasmtime-component-util-12.0.1/Cargo.toml +0 -25
  1010. data/ext/cargo-vendor/wasmtime-cranelift-12.0.1/.cargo-checksum.json +0 -1
  1011. data/ext/cargo-vendor/wasmtime-cranelift-12.0.1/Cargo.toml +0 -93
  1012. data/ext/cargo-vendor/wasmtime-cranelift-12.0.1/src/builder.rs +0 -116
  1013. data/ext/cargo-vendor/wasmtime-cranelift-12.0.1/src/compiler.rs +0 -1297
  1014. data/ext/cargo-vendor/wasmtime-cranelift-12.0.1/src/debug/transform/attr.rs +0 -339
  1015. data/ext/cargo-vendor/wasmtime-cranelift-12.0.1/src/debug.rs +0 -20
  1016. data/ext/cargo-vendor/wasmtime-cranelift-12.0.1/src/func_environ.rs +0 -2377
  1017. data/ext/cargo-vendor/wasmtime-cranelift-shared-12.0.1/.cargo-checksum.json +0 -1
  1018. data/ext/cargo-vendor/wasmtime-cranelift-shared-12.0.1/Cargo.toml +0 -57
  1019. data/ext/cargo-vendor/wasmtime-environ-12.0.1/.cargo-checksum.json +0 -1
  1020. data/ext/cargo-vendor/wasmtime-environ-12.0.1/Cargo.lock +0 -736
  1021. data/ext/cargo-vendor/wasmtime-environ-12.0.1/Cargo.toml +0 -116
  1022. data/ext/cargo-vendor/wasmtime-environ-12.0.1/src/address_map.rs +0 -192
  1023. data/ext/cargo-vendor/wasmtime-environ-12.0.1/src/builtin.rs +0 -127
  1024. data/ext/cargo-vendor/wasmtime-environ-12.0.1/src/compilation.rs +0 -400
  1025. data/ext/cargo-vendor/wasmtime-environ-12.0.1/src/component/compiler.rs +0 -47
  1026. data/ext/cargo-vendor/wasmtime-environ-12.0.1/src/component/info.rs +0 -583
  1027. data/ext/cargo-vendor/wasmtime-environ-12.0.1/src/component/types.rs +0 -1920
  1028. data/ext/cargo-vendor/wasmtime-environ-12.0.1/src/fact/trampoline.rs +0 -3269
  1029. data/ext/cargo-vendor/wasmtime-environ-12.0.1/src/fact/transcode.rs +0 -168
  1030. data/ext/cargo-vendor/wasmtime-environ-12.0.1/src/lib.rs +0 -76
  1031. data/ext/cargo-vendor/wasmtime-environ-12.0.1/src/module.rs +0 -1083
  1032. data/ext/cargo-vendor/wasmtime-environ-12.0.1/src/module_environ.rs +0 -887
  1033. data/ext/cargo-vendor/wasmtime-environ-12.0.1/src/module_types.rs +0 -78
  1034. data/ext/cargo-vendor/wasmtime-environ-12.0.1/src/stack_map.rs +0 -36
  1035. data/ext/cargo-vendor/wasmtime-environ-12.0.1/src/tunables.rs +0 -115
  1036. data/ext/cargo-vendor/wasmtime-environ-12.0.1/src/vmoffsets.rs +0 -940
  1037. data/ext/cargo-vendor/wasmtime-fiber-12.0.1/.cargo-checksum.json +0 -1
  1038. data/ext/cargo-vendor/wasmtime-fiber-12.0.1/Cargo.toml +0 -51
  1039. data/ext/cargo-vendor/wasmtime-jit-12.0.1/.cargo-checksum.json +0 -1
  1040. data/ext/cargo-vendor/wasmtime-jit-12.0.1/Cargo.toml +0 -104
  1041. data/ext/cargo-vendor/wasmtime-jit-12.0.1/src/instantiate.rs +0 -760
  1042. data/ext/cargo-vendor/wasmtime-jit-12.0.1/src/lib.rs +0 -38
  1043. data/ext/cargo-vendor/wasmtime-jit-12.0.1/src/unwind/miri.rs +0 -15
  1044. data/ext/cargo-vendor/wasmtime-jit-12.0.1/src/unwind/systemv.rs +0 -90
  1045. data/ext/cargo-vendor/wasmtime-jit-12.0.1/src/unwind/winx64.rs +0 -44
  1046. data/ext/cargo-vendor/wasmtime-jit-debug-12.0.1/.cargo-checksum.json +0 -1
  1047. data/ext/cargo-vendor/wasmtime-jit-debug-12.0.1/Cargo.toml +0 -58
  1048. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-12.0.1/.cargo-checksum.json +0 -1
  1049. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-12.0.1/Cargo.toml +0 -37
  1050. data/ext/cargo-vendor/wasmtime-runtime-12.0.1/.cargo-checksum.json +0 -1
  1051. data/ext/cargo-vendor/wasmtime-runtime-12.0.1/Cargo.toml +0 -119
  1052. data/ext/cargo-vendor/wasmtime-runtime-12.0.1/src/instance/allocator/on_demand.rs +0 -127
  1053. data/ext/cargo-vendor/wasmtime-runtime-12.0.1/src/instance/allocator/pooling/index_allocator.rs +0 -599
  1054. data/ext/cargo-vendor/wasmtime-runtime-12.0.1/src/instance/allocator/pooling.rs +0 -1368
  1055. data/ext/cargo-vendor/wasmtime-runtime-12.0.1/src/instance/allocator.rs +0 -414
  1056. data/ext/cargo-vendor/wasmtime-runtime-12.0.1/src/instance.rs +0 -1345
  1057. data/ext/cargo-vendor/wasmtime-runtime-12.0.1/src/lib.rs +0 -289
  1058. data/ext/cargo-vendor/wasmtime-runtime-12.0.1/src/libcalls.rs +0 -627
  1059. data/ext/cargo-vendor/wasmtime-runtime-12.0.1/src/memory.rs +0 -958
  1060. data/ext/cargo-vendor/wasmtime-runtime-12.0.1/src/parking_spot.rs +0 -522
  1061. data/ext/cargo-vendor/wasmtime-runtime-12.0.1/src/table.rs +0 -595
  1062. data/ext/cargo-vendor/wasmtime-runtime-12.0.1/src/trampolines/s390x.S +0 -62
  1063. data/ext/cargo-vendor/wasmtime-runtime-12.0.1/src/traphandlers/macos.rs +0 -476
  1064. data/ext/cargo-vendor/wasmtime-runtime-12.0.1/src/traphandlers.rs +0 -782
  1065. data/ext/cargo-vendor/wasmtime-runtime-12.0.1/src/vmcontext.rs +0 -1221
  1066. data/ext/cargo-vendor/wasmtime-types-12.0.1/.cargo-checksum.json +0 -1
  1067. data/ext/cargo-vendor/wasmtime-types-12.0.1/Cargo.toml +0 -34
  1068. data/ext/cargo-vendor/wasmtime-types-12.0.1/src/lib.rs +0 -504
  1069. data/ext/cargo-vendor/wasmtime-versioned-export-macros-12.0.1/.cargo-checksum.json +0 -1
  1070. data/ext/cargo-vendor/wasmtime-versioned-export-macros-12.0.1/Cargo.toml +0 -32
  1071. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/.cargo-checksum.json +0 -1
  1072. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/Cargo.toml +0 -191
  1073. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/lib.rs +0 -131
  1074. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/command.rs +0 -91
  1075. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/ctx.rs +0 -237
  1076. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/filesystem.rs +0 -216
  1077. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/mod.rs +0 -185
  1078. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/pipe.rs +0 -846
  1079. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/preview1/mod.rs +0 -1870
  1080. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/preview2/clocks.rs +0 -107
  1081. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/preview2/env.rs +0 -37
  1082. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/preview2/exit.rs +0 -11
  1083. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/preview2/filesystem/sync.rs +0 -613
  1084. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/preview2/filesystem.rs +0 -1096
  1085. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/preview2/io.rs +0 -494
  1086. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/preview2/mod.rs +0 -6
  1087. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/stdio/unix.rs +0 -133
  1088. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/stdio/worker_thread_stdin.rs +0 -133
  1089. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/stdio.rs +0 -218
  1090. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/stream.rs +0 -302
  1091. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/table.rs +0 -287
  1092. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/wit/deps/filesystem/filesystem.wit +0 -782
  1093. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/wit/deps/http/types.wit +0 -159
  1094. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/wit/deps/io/streams.wit +0 -254
  1095. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/wit/deps/logging/handler.wit +0 -34
  1096. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/wit/deps/preview/command-extended.wit +0 -36
  1097. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/wit/deps/preview/command.wit +0 -26
  1098. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/wit/deps/preview/proxy.wit +0 -9
  1099. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/wit/deps/preview/reactor.wit +0 -24
  1100. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/wit/deps/sockets/ip-name-lookup.wit +0 -69
  1101. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/wit/deps/sockets/network.wit +0 -187
  1102. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/wit/deps/sockets/tcp-create-socket.wit +0 -27
  1103. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/wit/deps/sockets/tcp.wit +0 -255
  1104. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/wit/deps/sockets/udp-create-socket.wit +0 -27
  1105. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/wit/deps/sockets/udp.wit +0 -211
  1106. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/wit/deps/wasi-cli-base/environment.wit +0 -16
  1107. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/wit/deps/wasi-cli-base/exit.wit +0 -4
  1108. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/wit/deps/wasi-cli-base/preopens.wit +0 -7
  1109. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/wit/main.wit +0 -1
  1110. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/wit/test.wit +0 -28
  1111. data/ext/cargo-vendor/wasmtime-winch-12.0.1/.cargo-checksum.json +0 -1
  1112. data/ext/cargo-vendor/wasmtime-winch-12.0.1/Cargo.toml +0 -63
  1113. data/ext/cargo-vendor/wasmtime-wit-bindgen-12.0.1/.cargo-checksum.json +0 -1
  1114. data/ext/cargo-vendor/wasmtime-wit-bindgen-12.0.1/Cargo.toml +0 -32
  1115. data/ext/cargo-vendor/wasmtime-wit-bindgen-12.0.1/src/lib.rs +0 -1705
  1116. data/ext/cargo-vendor/wasmtime-wit-bindgen-12.0.1/src/rust.rs +0 -498
  1117. data/ext/cargo-vendor/wasmtime-wit-bindgen-12.0.1/src/types.rs +0 -185
  1118. data/ext/cargo-vendor/wast-63.0.0/.cargo-checksum.json +0 -1
  1119. data/ext/cargo-vendor/wast-63.0.0/Cargo.toml +0 -50
  1120. data/ext/cargo-vendor/wast-63.0.0/src/component/binary.rs +0 -1022
  1121. data/ext/cargo-vendor/wast-63.0.0/src/component/expand.rs +0 -880
  1122. data/ext/cargo-vendor/wast-63.0.0/src/component/resolve.rs +0 -1010
  1123. data/ext/cargo-vendor/wast-63.0.0/src/component/types.rs +0 -1013
  1124. data/ext/cargo-vendor/wast-63.0.0/src/component/wast.rs +0 -166
  1125. data/ext/cargo-vendor/wast-63.0.0/src/core/binary.rs +0 -1246
  1126. data/ext/cargo-vendor/wast-63.0.0/src/core/expr.rs +0 -1970
  1127. data/ext/cargo-vendor/wast-63.0.0/src/core/table.rs +0 -305
  1128. data/ext/cargo-vendor/wast-63.0.0/src/core/types.rs +0 -843
  1129. data/ext/cargo-vendor/wast-63.0.0/src/core/wast.rs +0 -236
  1130. data/ext/cargo-vendor/wast-63.0.0/src/lib.rs +0 -537
  1131. data/ext/cargo-vendor/wat-1.0.70/.cargo-checksum.json +0 -1
  1132. data/ext/cargo-vendor/wat-1.0.70/Cargo.toml +0 -27
  1133. data/ext/cargo-vendor/wiggle-12.0.1/.cargo-checksum.json +0 -1
  1134. data/ext/cargo-vendor/wiggle-12.0.1/Cargo.toml +0 -106
  1135. data/ext/cargo-vendor/wiggle-12.0.1/src/lib.rs +0 -1198
  1136. data/ext/cargo-vendor/wiggle-generate-12.0.1/.cargo-checksum.json +0 -1
  1137. data/ext/cargo-vendor/wiggle-generate-12.0.1/Cargo.toml +0 -58
  1138. data/ext/cargo-vendor/wiggle-generate-12.0.1/src/config.rs +0 -697
  1139. data/ext/cargo-vendor/wiggle-generate-12.0.1/src/types/record.rs +0 -117
  1140. data/ext/cargo-vendor/wiggle-generate-12.0.1/src/wasmtime.rs +0 -170
  1141. data/ext/cargo-vendor/wiggle-macro-12.0.1/.cargo-checksum.json +0 -1
  1142. data/ext/cargo-vendor/wiggle-macro-12.0.1/Cargo.toml +0 -55
  1143. data/ext/cargo-vendor/winapi-util-0.1.5/.cargo-checksum.json +0 -1
  1144. data/ext/cargo-vendor/winapi-util-0.1.5/COPYING +0 -3
  1145. data/ext/cargo-vendor/winapi-util-0.1.5/Cargo.toml +0 -30
  1146. data/ext/cargo-vendor/winapi-util-0.1.5/LICENSE-MIT +0 -21
  1147. data/ext/cargo-vendor/winapi-util-0.1.5/README.md +0 -58
  1148. data/ext/cargo-vendor/winapi-util-0.1.5/UNLICENSE +0 -24
  1149. data/ext/cargo-vendor/winapi-util-0.1.5/rustfmt.toml +0 -2
  1150. data/ext/cargo-vendor/winapi-util-0.1.5/src/console.rs +0 -402
  1151. data/ext/cargo-vendor/winapi-util-0.1.5/src/file.rs +0 -168
  1152. data/ext/cargo-vendor/winapi-util-0.1.5/src/lib.rs +0 -32
  1153. data/ext/cargo-vendor/winapi-util-0.1.5/src/win.rs +0 -246
  1154. data/ext/cargo-vendor/winch-codegen-0.10.1/.cargo-checksum.json +0 -1
  1155. data/ext/cargo-vendor/winch-codegen-0.10.1/Cargo.toml +0 -62
  1156. data/ext/cargo-vendor/winch-codegen-0.10.1/LICENSE +0 -219
  1157. data/ext/cargo-vendor/winch-codegen-0.10.1/src/abi/mod.rs +0 -251
  1158. data/ext/cargo-vendor/winch-codegen-0.10.1/src/codegen/call.rs +0 -199
  1159. data/ext/cargo-vendor/winch-codegen-0.10.1/src/codegen/context.rs +0 -368
  1160. data/ext/cargo-vendor/winch-codegen-0.10.1/src/codegen/control.rs +0 -437
  1161. data/ext/cargo-vendor/winch-codegen-0.10.1/src/codegen/mod.rs +0 -330
  1162. data/ext/cargo-vendor/winch-codegen-0.10.1/src/isa/aarch64/abi.rs +0 -250
  1163. data/ext/cargo-vendor/winch-codegen-0.10.1/src/isa/aarch64/address.rs +0 -144
  1164. data/ext/cargo-vendor/winch-codegen-0.10.1/src/isa/aarch64/asm.rs +0 -312
  1165. data/ext/cargo-vendor/winch-codegen-0.10.1/src/isa/aarch64/masm.rs +0 -293
  1166. data/ext/cargo-vendor/winch-codegen-0.10.1/src/isa/aarch64/regs.rs +0 -166
  1167. data/ext/cargo-vendor/winch-codegen-0.10.1/src/isa/reg.rs +0 -51
  1168. data/ext/cargo-vendor/winch-codegen-0.10.1/src/isa/x64/abi.rs +0 -375
  1169. data/ext/cargo-vendor/winch-codegen-0.10.1/src/isa/x64/address.rs +0 -17
  1170. data/ext/cargo-vendor/winch-codegen-0.10.1/src/isa/x64/asm.rs +0 -855
  1171. data/ext/cargo-vendor/winch-codegen-0.10.1/src/isa/x64/masm.rs +0 -516
  1172. data/ext/cargo-vendor/winch-codegen-0.10.1/src/isa/x64/mod.rs +0 -149
  1173. data/ext/cargo-vendor/winch-codegen-0.10.1/src/isa/x64/regs.rs +0 -192
  1174. data/ext/cargo-vendor/winch-codegen-0.10.1/src/masm.rs +0 -352
  1175. data/ext/cargo-vendor/winch-codegen-0.10.1/src/regalloc.rs +0 -70
  1176. data/ext/cargo-vendor/winch-codegen-0.10.1/src/regset.rs +0 -90
  1177. data/ext/cargo-vendor/winch-codegen-0.10.1/src/stack.rs +0 -235
  1178. data/ext/cargo-vendor/winch-codegen-0.10.1/src/trampoline.rs +0 -494
  1179. data/ext/cargo-vendor/winch-codegen-0.10.1/src/visitor.rs +0 -656
  1180. data/ext/cargo-vendor/wit-parser-0.9.2/.cargo-checksum.json +0 -1
  1181. data/ext/cargo-vendor/wit-parser-0.9.2/Cargo.toml +0 -62
  1182. data/ext/cargo-vendor/wit-parser-0.9.2/src/abi.rs +0 -2199
  1183. data/ext/cargo-vendor/wit-parser-0.9.2/src/ast/lex.rs +0 -717
  1184. data/ext/cargo-vendor/wit-parser-0.9.2/src/ast/resolve.rs +0 -1437
  1185. data/ext/cargo-vendor/wit-parser-0.9.2/src/ast.rs +0 -1362
  1186. data/ext/cargo-vendor/wit-parser-0.9.2/src/lib.rs +0 -666
  1187. data/ext/cargo-vendor/wit-parser-0.9.2/src/live.rs +0 -116
  1188. data/ext/cargo-vendor/wit-parser-0.9.2/src/resolve.rs +0 -1749
  1189. data/ext/cargo-vendor/wit-parser-0.9.2/src/sizealign.rs +0 -145
  1190. data/ext/cargo-vendor/wit-parser-0.9.2/tests/all.rs +0 -168
  1191. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/empty-union.wit +0 -6
  1192. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/empty-union.wit.result +0 -5
  1193. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/types.wit +0 -61
  1194. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/world-diamond.wit +0 -22
  1195. /data/ext/cargo-vendor/{addr2line-0.20.0 → cap-net-ext-2.0.0}/LICENSE-APACHE +0 -0
  1196. /data/ext/cargo-vendor/{cranelift-bforest-0.99.1/LICENSE → cap-net-ext-2.0.0/LICENSE-Apache-2.0_WITH_LLVM-exception} +0 -0
  1197. /data/ext/cargo-vendor/{env_logger-0.10.0 → cap-net-ext-2.0.0}/LICENSE-MIT +0 -0
  1198. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-bforest-0.100.0}/LICENSE +0 -0
  1199. /data/ext/cargo-vendor/{cranelift-bforest-0.99.1 → cranelift-bforest-0.100.0}/README.md +0 -0
  1200. /data/ext/cargo-vendor/{cranelift-bforest-0.99.1 → cranelift-bforest-0.100.0}/src/node.rs +0 -0
  1201. /data/ext/cargo-vendor/{cranelift-bforest-0.99.1 → cranelift-bforest-0.100.0}/src/path.rs +0 -0
  1202. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.99.1 → cranelift-codegen-0.100.0}/LICENSE +0 -0
  1203. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/README.md +0 -0
  1204. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/benches/x64-evex-encoding.rs +0 -0
  1205. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/build.rs +0 -0
  1206. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/alias_analysis.rs +0 -0
  1207. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/cfg_printer.rs +0 -0
  1208. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/constant_hash.rs +0 -0
  1209. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/ctxhash.rs +0 -0
  1210. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/cursor.rs +0 -0
  1211. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/data_value.rs +0 -0
  1212. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/dbg.rs +0 -0
  1213. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/dce.rs +0 -0
  1214. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/dominator_tree.rs +0 -0
  1215. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/egraph/cost.rs +0 -0
  1216. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/egraph/domtree.rs +0 -0
  1217. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/egraph/elaborate.rs +0 -0
  1218. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/egraph.rs +0 -0
  1219. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/flowgraph.rs +0 -0
  1220. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/fx.rs +0 -0
  1221. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/inst_predicates.rs +0 -0
  1222. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/ir/builder.rs +0 -0
  1223. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/ir/layout.rs +0 -0
  1224. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/ir/progpoint.rs +0 -0
  1225. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/aarch64/inst/imms.rs +0 -0
  1226. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/aarch64/inst/regs.rs +0 -0
  1227. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/aarch64/inst/unwind/systemv.rs +0 -0
  1228. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/aarch64/inst/unwind.rs +0 -0
  1229. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/aarch64/inst_neon.isle +0 -0
  1230. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/aarch64/lower/isle/generated_code.rs +0 -0
  1231. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/aarch64/mod.rs +0 -0
  1232. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/aarch64/settings.rs +0 -0
  1233. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/mod.rs +0 -0
  1234. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/riscv64/inst/emit_tests.rs +0 -0
  1235. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/riscv64/inst/regs.rs +0 -0
  1236. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/riscv64/inst/unwind/systemv.rs +0 -0
  1237. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/riscv64/inst/unwind.rs +0 -0
  1238. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/riscv64/lower/isle/generated_code.rs +0 -0
  1239. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/riscv64/lower.rs +0 -0
  1240. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/riscv64/mod.rs +0 -0
  1241. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/riscv64/settings.rs +0 -0
  1242. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/s390x/inst/args.rs +0 -0
  1243. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/s390x/inst/emit.rs +0 -0
  1244. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/s390x/inst/emit_tests.rs +0 -0
  1245. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/s390x/inst/imms.rs +0 -0
  1246. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/s390x/inst/regs.rs +0 -0
  1247. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/s390x/inst/unwind/systemv.rs +0 -0
  1248. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/s390x/inst/unwind.rs +0 -0
  1249. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/s390x/lower/isle/generated_code.rs +0 -0
  1250. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/s390x/lower/isle.rs +0 -0
  1251. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/s390x/lower.rs +0 -0
  1252. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/s390x/mod.rs +0 -0
  1253. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/s390x/settings.rs +0 -0
  1254. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/x64/encoding/mod.rs +0 -0
  1255. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/x64/encoding/vex.rs +0 -0
  1256. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/x64/inst/emit_state.rs +0 -0
  1257. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/x64/inst/regs.rs +0 -0
  1258. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/x64/inst/unwind/systemv.rs +0 -0
  1259. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/x64/inst/unwind/winx64.rs +0 -0
  1260. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/x64/inst/unwind.rs +0 -0
  1261. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/x64/lower/isle/generated_code.rs +0 -0
  1262. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/x64/mod.rs +0 -0
  1263. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/x64/settings.rs +0 -0
  1264. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/iterators.rs +0 -0
  1265. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/legalizer/globalvalue.rs +0 -0
  1266. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/legalizer/table.rs +0 -0
  1267. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/loop_analysis.rs +0 -0
  1268. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/machinst/blockorder.rs +0 -0
  1269. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/machinst/compile.rs +0 -0
  1270. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/machinst/helpers.rs +0 -0
  1271. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/machinst/inst_common.rs +0 -0
  1272. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/machinst/lower.rs +0 -0
  1273. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/machinst/valueregs.rs +0 -0
  1274. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/nan_canonicalization.rs +0 -0
  1275. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/opts/README.md +0 -0
  1276. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/opts/arithmetic.isle +0 -0
  1277. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/opts/generated_code.rs +0 -0
  1278. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/opts/remat.isle +0 -0
  1279. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/opts/shifts.isle +0 -0
  1280. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/opts.rs +0 -0
  1281. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/prelude_opt.isle +0 -0
  1282. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/print_errors.rs +0 -0
  1283. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/remove_constant_phis.rs +0 -0
  1284. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/result.rs +0 -0
  1285. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/scoped_hash_map.rs +0 -0
  1286. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/settings.rs +0 -0
  1287. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/souper_harvest.rs +0 -0
  1288. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/timing.rs +0 -0
  1289. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/unionfind.rs +0 -0
  1290. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/unreachable_code.rs +0 -0
  1291. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/write.rs +0 -0
  1292. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.99.1 → cranelift-codegen-meta-0.100.0}/LICENSE +0 -0
  1293. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.99.1 → cranelift-codegen-meta-0.100.0}/README.md +0 -0
  1294. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.99.1 → cranelift-codegen-meta-0.100.0}/src/cdsl/formats.rs +0 -0
  1295. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.99.1 → cranelift-codegen-meta-0.100.0}/src/cdsl/instructions.rs +0 -0
  1296. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.99.1 → cranelift-codegen-meta-0.100.0}/src/cdsl/isa.rs +0 -0
  1297. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.99.1 → cranelift-codegen-meta-0.100.0}/src/cdsl/mod.rs +0 -0
  1298. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.99.1 → cranelift-codegen-meta-0.100.0}/src/cdsl/operands.rs +0 -0
  1299. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.99.1 → cranelift-codegen-meta-0.100.0}/src/cdsl/settings.rs +0 -0
  1300. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.99.1 → cranelift-codegen-meta-0.100.0}/src/cdsl/types.rs +0 -0
  1301. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.99.1 → cranelift-codegen-meta-0.100.0}/src/cdsl/typevar.rs +0 -0
  1302. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.99.1 → cranelift-codegen-meta-0.100.0}/src/error.rs +0 -0
  1303. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.99.1 → cranelift-codegen-meta-0.100.0}/src/gen_settings.rs +0 -0
  1304. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.99.1 → cranelift-codegen-meta-0.100.0}/src/gen_types.rs +0 -0
  1305. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.99.1 → cranelift-codegen-meta-0.100.0}/src/isa/arm64.rs +0 -0
  1306. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.99.1 → cranelift-codegen-meta-0.100.0}/src/isa/mod.rs +0 -0
  1307. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.99.1 → cranelift-codegen-meta-0.100.0}/src/isa/riscv64.rs +0 -0
  1308. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.99.1 → cranelift-codegen-meta-0.100.0}/src/isa/s390x.rs +0 -0
  1309. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.99.1 → cranelift-codegen-meta-0.100.0}/src/isa/x86.rs +0 -0
  1310. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.99.1 → cranelift-codegen-meta-0.100.0}/src/lib.rs +0 -0
  1311. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.99.1 → cranelift-codegen-meta-0.100.0}/src/shared/entities.rs +0 -0
  1312. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.99.1 → cranelift-codegen-meta-0.100.0}/src/shared/formats.rs +0 -0
  1313. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.99.1 → cranelift-codegen-meta-0.100.0}/src/shared/immediates.rs +0 -0
  1314. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.99.1 → cranelift-codegen-meta-0.100.0}/src/shared/mod.rs +0 -0
  1315. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.99.1 → cranelift-codegen-meta-0.100.0}/src/shared/settings.rs +0 -0
  1316. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.99.1 → cranelift-codegen-meta-0.100.0}/src/shared/types.rs +0 -0
  1317. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.99.1 → cranelift-codegen-meta-0.100.0}/src/srcgen.rs +0 -0
  1318. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.99.1 → cranelift-codegen-meta-0.100.0}/src/unique_table.rs +0 -0
  1319. /data/ext/cargo-vendor/{cranelift-control-0.99.1 → cranelift-codegen-shared-0.100.0}/LICENSE +0 -0
  1320. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.99.1 → cranelift-codegen-shared-0.100.0}/README.md +0 -0
  1321. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.99.1 → cranelift-codegen-shared-0.100.0}/src/constant_hash.rs +0 -0
  1322. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.99.1 → cranelift-codegen-shared-0.100.0}/src/constants.rs +0 -0
  1323. /data/ext/cargo-vendor/{cranelift-entity-0.99.1 → cranelift-control-0.100.0}/LICENSE +0 -0
  1324. /data/ext/cargo-vendor/{cranelift-control-0.99.1 → cranelift-control-0.100.0}/README.md +0 -0
  1325. /data/ext/cargo-vendor/{cranelift-control-0.99.1 → cranelift-control-0.100.0}/src/chaos.rs +0 -0
  1326. /data/ext/cargo-vendor/{cranelift-control-0.99.1 → cranelift-control-0.100.0}/src/lib.rs +0 -0
  1327. /data/ext/cargo-vendor/{cranelift-control-0.99.1 → cranelift-control-0.100.0}/src/zero_sized.rs +0 -0
  1328. /data/ext/cargo-vendor/{cranelift-frontend-0.99.1 → cranelift-entity-0.100.0}/LICENSE +0 -0
  1329. /data/ext/cargo-vendor/{cranelift-entity-0.99.1 → cranelift-entity-0.100.0}/README.md +0 -0
  1330. /data/ext/cargo-vendor/{cranelift-entity-0.99.1 → cranelift-entity-0.100.0}/src/boxed_slice.rs +0 -0
  1331. /data/ext/cargo-vendor/{cranelift-entity-0.99.1 → cranelift-entity-0.100.0}/src/iter.rs +0 -0
  1332. /data/ext/cargo-vendor/{cranelift-entity-0.99.1 → cranelift-entity-0.100.0}/src/keys.rs +0 -0
  1333. /data/ext/cargo-vendor/{cranelift-entity-0.99.1 → cranelift-entity-0.100.0}/src/map.rs +0 -0
  1334. /data/ext/cargo-vendor/{cranelift-entity-0.99.1 → cranelift-entity-0.100.0}/src/set.rs +0 -0
  1335. /data/ext/cargo-vendor/{cranelift-native-0.99.1 → cranelift-frontend-0.100.0}/LICENSE +0 -0
  1336. /data/ext/cargo-vendor/{cranelift-frontend-0.99.1 → cranelift-frontend-0.100.0}/README.md +0 -0
  1337. /data/ext/cargo-vendor/{cranelift-frontend-0.99.1 → cranelift-frontend-0.100.0}/src/frontend.rs +0 -0
  1338. /data/ext/cargo-vendor/{cranelift-frontend-0.99.1 → cranelift-frontend-0.100.0}/src/ssa.rs +0 -0
  1339. /data/ext/cargo-vendor/{cranelift-frontend-0.99.1 → cranelift-frontend-0.100.0}/src/switch.rs +0 -0
  1340. /data/ext/cargo-vendor/{cranelift-frontend-0.99.1 → cranelift-frontend-0.100.0}/src/variable.rs +0 -0
  1341. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/README.md +0 -0
  1342. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/build.rs +0 -0
  1343. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/fail/bad_converters.isle +0 -0
  1344. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/fail/bound_var_type_mismatch.isle +0 -0
  1345. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/fail/converter_extractor_constructor.isle +0 -0
  1346. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/fail/error1.isle +0 -0
  1347. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/fail/extra_parens.isle +0 -0
  1348. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/fail/impure_expression.isle +0 -0
  1349. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/fail/impure_rhs.isle +0 -0
  1350. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/fail/multi_internal_etor.isle +0 -0
  1351. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/fail/multi_prio.isle +0 -0
  1352. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/link/borrows.isle +0 -0
  1353. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/link/borrows_main.rs +0 -0
  1354. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/link/iflets.isle +0 -0
  1355. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/link/iflets_main.rs +0 -0
  1356. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/link/multi_constructor.isle +0 -0
  1357. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/link/multi_constructor_main.rs +0 -0
  1358. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/link/multi_extractor.isle +0 -0
  1359. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/link/multi_extractor_main.rs +0 -0
  1360. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/link/test.isle +0 -0
  1361. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/link/test_main.rs +0 -0
  1362. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/pass/bound_var.isle +0 -0
  1363. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/pass/construct_and_extract.isle +0 -0
  1364. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/pass/conversions.isle +0 -0
  1365. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/pass/conversions_extern.isle +0 -0
  1366. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/pass/let.isle +0 -0
  1367. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/pass/nodebug.isle +0 -0
  1368. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/pass/prio_trie_bug.isle +0 -0
  1369. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/pass/test2.isle +0 -0
  1370. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/pass/test3.isle +0 -0
  1371. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/pass/test4.isle +0 -0
  1372. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/pass/tutorial.isle +0 -0
  1373. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/run/iconst.isle +0 -0
  1374. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/run/iconst_main.rs +0 -0
  1375. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/run/let_shadowing.isle +0 -0
  1376. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/run/let_shadowing_main.rs +0 -0
  1377. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/src/ast.rs +0 -0
  1378. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/src/codegen.rs +0 -0
  1379. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/src/compile.rs +0 -0
  1380. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/src/error.rs +0 -0
  1381. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/src/lexer.rs +0 -0
  1382. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/src/lib.rs +0 -0
  1383. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/src/log.rs +0 -0
  1384. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/src/overlap.rs +0 -0
  1385. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/src/parser.rs +0 -0
  1386. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/src/sema.rs +0 -0
  1387. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/src/serialize.rs +0 -0
  1388. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/src/trie_again.rs +0 -0
  1389. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/tests/run_tests.rs +0 -0
  1390. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-native-0.100.0}/LICENSE +0 -0
  1391. /data/ext/cargo-vendor/{cranelift-native-0.99.1 → cranelift-native-0.100.0}/README.md +0 -0
  1392. /data/ext/cargo-vendor/{cranelift-native-0.99.1 → cranelift-native-0.100.0}/src/riscv.rs +0 -0
  1393. /data/ext/cargo-vendor/{wasi-cap-std-sync-12.0.1 → cranelift-wasm-0.100.0}/LICENSE +0 -0
  1394. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/README.md +0 -0
  1395. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/src/code_translator/bounds_checks.rs +0 -0
  1396. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/src/environ/mod.rs +0 -0
  1397. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/src/module_translator.rs +0 -0
  1398. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/src/state.rs +0 -0
  1399. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/tests/wasm_testsuite.rs +0 -0
  1400. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/arith.wat +0 -0
  1401. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/br_table.wat +0 -0
  1402. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/call-simd.wat +0 -0
  1403. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/call.wat +0 -0
  1404. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/embenchen_fannkuch.wat +0 -0
  1405. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/embenchen_fasta.wat +0 -0
  1406. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/embenchen_ifs.wat +0 -0
  1407. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/embenchen_primes.wat +0 -0
  1408. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/fac-multi-value.wat +0 -0
  1409. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/fibonacci.wat +0 -0
  1410. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/globals.wat +0 -0
  1411. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/icall-simd.wat +0 -0
  1412. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/icall.wat +0 -0
  1413. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/if-reachability-translation-0.wat +0 -0
  1414. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/if-reachability-translation-1.wat +0 -0
  1415. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/if-reachability-translation-2.wat +0 -0
  1416. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/if-reachability-translation-3.wat +0 -0
  1417. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/if-reachability-translation-4.wat +0 -0
  1418. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/if-reachability-translation-5.wat +0 -0
  1419. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/if-reachability-translation-6.wat +0 -0
  1420. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/if-unreachable-else-params-2.wat +0 -0
  1421. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/if-unreachable-else-params.wat +0 -0
  1422. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/issue-1306-name-section-with-u32-max-function-index.wasm +0 -0
  1423. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/memory.wat +0 -0
  1424. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/multi-0.wat +0 -0
  1425. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/multi-1.wat +0 -0
  1426. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/multi-10.wat +0 -0
  1427. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/multi-11.wat +0 -0
  1428. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/multi-12.wat +0 -0
  1429. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/multi-13.wat +0 -0
  1430. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/multi-14.wat +0 -0
  1431. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/multi-15.wat +0 -0
  1432. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/multi-16.wat +0 -0
  1433. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/multi-17.wat +0 -0
  1434. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/multi-2.wat +0 -0
  1435. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/multi-3.wat +0 -0
  1436. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/multi-4.wat +0 -0
  1437. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/multi-5.wat +0 -0
  1438. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/multi-6.wat +0 -0
  1439. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/multi-7.wat +0 -0
  1440. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/multi-8.wat +0 -0
  1441. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/multi-9.wat +0 -0
  1442. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/nullref.wat +0 -0
  1443. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/passive-data.wat +0 -0
  1444. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/pr2303.wat +0 -0
  1445. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/pr2559.wat +0 -0
  1446. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/ref-func-0.wat +0 -0
  1447. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/rust_fannkuch.wat +0 -0
  1448. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/select.wat +0 -0
  1449. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/simd-store.wat +0 -0
  1450. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/simd.wat +0 -0
  1451. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/table-copy.wat +0 -0
  1452. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/unreachable_code.wat +0 -0
  1453. /data/ext/cargo-vendor/{fallible-iterator-0.2.0 → fallible-iterator-0.3.0}/LICENSE-APACHE +0 -0
  1454. /data/ext/cargo-vendor/{fallible-iterator-0.2.0 → fallible-iterator-0.3.0}/LICENSE-MIT +0 -0
  1455. /data/ext/cargo-vendor/{serde-1.0.185 → serde-1.0.188}/LICENSE-APACHE +0 -0
  1456. /data/ext/cargo-vendor/{serde-1.0.185 → serde-1.0.188}/LICENSE-MIT +0 -0
  1457. /data/ext/cargo-vendor/{serde-1.0.185 → serde-1.0.188}/README.md +0 -0
  1458. /data/ext/cargo-vendor/{serde-1.0.185 → serde-1.0.188}/crates-io.md +0 -0
  1459. /data/ext/cargo-vendor/{serde-1.0.185 → serde-1.0.188}/src/de/format.rs +0 -0
  1460. /data/ext/cargo-vendor/{serde-1.0.185 → serde-1.0.188}/src/de/seed.rs +0 -0
  1461. /data/ext/cargo-vendor/{serde-1.0.185 → serde-1.0.188}/src/de/size_hint.rs +0 -0
  1462. /data/ext/cargo-vendor/{serde-1.0.185 → serde-1.0.188}/src/private/de.rs +0 -0
  1463. /data/ext/cargo-vendor/{serde-1.0.185 → serde-1.0.188}/src/private/doc.rs +0 -0
  1464. /data/ext/cargo-vendor/{serde-1.0.185 → serde-1.0.188}/src/private/mod.rs +0 -0
  1465. /data/ext/cargo-vendor/{serde-1.0.185 → serde-1.0.188}/src/private/ser.rs +0 -0
  1466. /data/ext/cargo-vendor/{serde-1.0.185 → serde-1.0.188}/src/ser/impossible.rs +0 -0
  1467. /data/ext/cargo-vendor/{serde-1.0.185 → serde-1.0.188}/src/std_error.rs +0 -0
  1468. /data/ext/cargo-vendor/{serde_derive-1.0.185 → serde_derive-1.0.188}/LICENSE-APACHE +0 -0
  1469. /data/ext/cargo-vendor/{serde_derive-1.0.185 → serde_derive-1.0.188}/LICENSE-MIT +0 -0
  1470. /data/ext/cargo-vendor/{serde_derive-1.0.185 → serde_derive-1.0.188}/README.md +0 -0
  1471. /data/ext/cargo-vendor/{serde_derive-1.0.185 → serde_derive-1.0.188}/crates-io.md +0 -0
  1472. /data/ext/cargo-vendor/{serde_derive-1.0.185 → serde_derive-1.0.188}/src/bound.rs +0 -0
  1473. /data/ext/cargo-vendor/{serde_derive-1.0.185 → serde_derive-1.0.188}/src/de.rs +0 -0
  1474. /data/ext/cargo-vendor/{serde_derive-1.0.185 → serde_derive-1.0.188}/src/dummy.rs +0 -0
  1475. /data/ext/cargo-vendor/{serde_derive-1.0.185 → serde_derive-1.0.188}/src/fragment.rs +0 -0
  1476. /data/ext/cargo-vendor/{serde_derive-1.0.185 → serde_derive-1.0.188}/src/internals/ast.rs +0 -0
  1477. /data/ext/cargo-vendor/{serde_derive-1.0.185 → serde_derive-1.0.188}/src/internals/attr.rs +0 -0
  1478. /data/ext/cargo-vendor/{serde_derive-1.0.185 → serde_derive-1.0.188}/src/internals/case.rs +0 -0
  1479. /data/ext/cargo-vendor/{serde_derive-1.0.185 → serde_derive-1.0.188}/src/internals/check.rs +0 -0
  1480. /data/ext/cargo-vendor/{serde_derive-1.0.185 → serde_derive-1.0.188}/src/internals/ctxt.rs +0 -0
  1481. /data/ext/cargo-vendor/{serde_derive-1.0.185 → serde_derive-1.0.188}/src/internals/mod.rs +0 -0
  1482. /data/ext/cargo-vendor/{serde_derive-1.0.185 → serde_derive-1.0.188}/src/internals/receiver.rs +0 -0
  1483. /data/ext/cargo-vendor/{serde_derive-1.0.185 → serde_derive-1.0.188}/src/internals/respan.rs +0 -0
  1484. /data/ext/cargo-vendor/{serde_derive-1.0.185 → serde_derive-1.0.188}/src/internals/symbol.rs +0 -0
  1485. /data/ext/cargo-vendor/{serde_derive-1.0.185 → serde_derive-1.0.188}/src/pretend.rs +0 -0
  1486. /data/ext/cargo-vendor/{serde_derive-1.0.185 → serde_derive-1.0.188}/src/this.rs +0 -0
  1487. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-cap-std-sync-13.0.0}/LICENSE +0 -0
  1488. /data/ext/cargo-vendor/{wasi-cap-std-sync-12.0.1 → wasi-cap-std-sync-13.0.0}/README.md +0 -0
  1489. /data/ext/cargo-vendor/{wasi-cap-std-sync-12.0.1 → wasi-cap-std-sync-13.0.0}/src/clocks.rs +0 -0
  1490. /data/ext/cargo-vendor/{wasi-cap-std-sync-12.0.1 → wasi-cap-std-sync-13.0.0}/src/dir.rs +0 -0
  1491. /data/ext/cargo-vendor/{wasi-cap-std-sync-12.0.1 → wasi-cap-std-sync-13.0.0}/src/file.rs +0 -0
  1492. /data/ext/cargo-vendor/{wasi-cap-std-sync-12.0.1 → wasi-cap-std-sync-13.0.0}/src/net.rs +0 -0
  1493. /data/ext/cargo-vendor/{wasi-cap-std-sync-12.0.1 → wasi-cap-std-sync-13.0.0}/src/sched/unix.rs +0 -0
  1494. /data/ext/cargo-vendor/{wasi-cap-std-sync-12.0.1 → wasi-cap-std-sync-13.0.0}/src/sched/windows.rs +0 -0
  1495. /data/ext/cargo-vendor/{wasi-cap-std-sync-12.0.1 → wasi-cap-std-sync-13.0.0}/src/sched.rs +0 -0
  1496. /data/ext/cargo-vendor/{wasi-cap-std-sync-12.0.1 → wasi-cap-std-sync-13.0.0}/src/stdio.rs +0 -0
  1497. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasi-common-13.0.0}/LICENSE +0 -0
  1498. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/README.md +0 -0
  1499. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/WASI/README.md +0 -0
  1500. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/WASI/docs/README.md +0 -0
  1501. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/WASI/phases/README.md +0 -0
  1502. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/WASI/phases/ephemeral/docs.md +0 -0
  1503. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/WASI/phases/ephemeral/witx/typenames.witx +0 -0
  1504. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_args.witx +0 -0
  1505. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_clock.witx +0 -0
  1506. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_environ.witx +0 -0
  1507. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_fd.witx +0 -0
  1508. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_path.witx +0 -0
  1509. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_poll.witx +0 -0
  1510. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_proc.witx +0 -0
  1511. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_random.witx +0 -0
  1512. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_sched.witx +0 -0
  1513. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_sock.witx +0 -0
  1514. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/WASI/phases/old/snapshot_0/docs.md +0 -0
  1515. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/WASI/phases/old/snapshot_0/witx/typenames.witx +0 -0
  1516. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/WASI/phases/old/snapshot_0/witx/wasi_unstable.witx +0 -0
  1517. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/WASI/phases/snapshot/docs.html +0 -0
  1518. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/WASI/phases/snapshot/docs.md +0 -0
  1519. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/WASI/phases/snapshot/witx/typenames.witx +0 -0
  1520. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/WASI/phases/snapshot/witx/wasi_snapshot_preview1.witx +0 -0
  1521. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/WASI/proposal-template/README.md +0 -0
  1522. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/WASI/proposals/README.md +0 -0
  1523. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/WASI/snapshots/README.md +0 -0
  1524. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/WASI/standard/README.md +0 -0
  1525. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/build.rs +0 -0
  1526. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/src/clocks.rs +0 -0
  1527. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/src/ctx.rs +0 -0
  1528. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/src/dir.rs +0 -0
  1529. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/src/error.rs +0 -0
  1530. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/src/file.rs +0 -0
  1531. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/src/lib.rs +0 -0
  1532. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/src/pipe.rs +0 -0
  1533. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/src/random.rs +0 -0
  1534. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/src/sched/subscription.rs +0 -0
  1535. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/src/sched.rs +0 -0
  1536. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/src/snapshots/mod.rs +0 -0
  1537. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/src/snapshots/preview_0.rs +0 -0
  1538. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/src/snapshots/preview_1/error.rs +0 -0
  1539. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/src/snapshots/preview_1.rs +0 -0
  1540. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/src/string_array.rs +0 -0
  1541. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/src/table.rs +0 -0
  1542. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasm-encoder-0.32.0}/LICENSE +0 -0
  1543. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/README.md +0 -0
  1544. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/component/aliases.rs +0 -0
  1545. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/component/builder.rs +0 -0
  1546. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/component/canonicals.rs +0 -0
  1547. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/component/components.rs +0 -0
  1548. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/component/exports.rs +0 -0
  1549. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/component/imports.rs +0 -0
  1550. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/component/instances.rs +0 -0
  1551. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/component/modules.rs +0 -0
  1552. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/component/names.rs +0 -0
  1553. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/component/start.rs +0 -0
  1554. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/component.rs +0 -0
  1555. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/core/code.rs +0 -0
  1556. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/core/custom.rs +0 -0
  1557. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/core/data.rs +0 -0
  1558. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/core/dump.rs +0 -0
  1559. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/core/elements.rs +0 -0
  1560. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/core/exports.rs +0 -0
  1561. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/core/functions.rs +0 -0
  1562. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/core/globals.rs +0 -0
  1563. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/core/imports.rs +0 -0
  1564. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/core/linking.rs +0 -0
  1565. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/core/memories.rs +0 -0
  1566. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/core/names.rs +0 -0
  1567. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/core/producers.rs +0 -0
  1568. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/core/start.rs +0 -0
  1569. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/core/tables.rs +0 -0
  1570. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/core/tags.rs +0 -0
  1571. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/core/types.rs +0 -0
  1572. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/core.rs +0 -0
  1573. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/lib.rs +0 -0
  1574. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/raw.rs +0 -0
  1575. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasm-encoder-0.33.1}/LICENSE +0 -0
  1576. /data/ext/cargo-vendor/{wasmprinter-0.2.63 → wasmparser-0.112.0}/LICENSE +0 -0
  1577. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/README.md +0 -0
  1578. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/benches/benchmark.rs +0 -0
  1579. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/examples/simple.rs +0 -0
  1580. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/binary_reader.rs +0 -0
  1581. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/lib.rs +0 -0
  1582. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/parser.rs +0 -0
  1583. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/readers/component/aliases.rs +0 -0
  1584. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/readers/component/canonicals.rs +0 -0
  1585. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/readers/component/exports.rs +0 -0
  1586. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/readers/component/imports.rs +0 -0
  1587. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/readers/component/instances.rs +0 -0
  1588. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/readers/component/names.rs +0 -0
  1589. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/readers/component/start.rs +0 -0
  1590. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/readers/component.rs +0 -0
  1591. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/readers/core/code.rs +0 -0
  1592. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/readers/core/coredumps.rs +0 -0
  1593. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/readers/core/custom.rs +0 -0
  1594. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/readers/core/data.rs +0 -0
  1595. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.112.0}/src/readers/core/dylink0.rs +0 -0
  1596. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/readers/core/elements.rs +0 -0
  1597. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/readers/core/exports.rs +0 -0
  1598. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/readers/core/functions.rs +0 -0
  1599. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/readers/core/globals.rs +0 -0
  1600. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/readers/core/imports.rs +0 -0
  1601. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/readers/core/init.rs +0 -0
  1602. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/readers/core/memories.rs +0 -0
  1603. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/readers/core/names.rs +0 -0
  1604. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/readers/core/operators.rs +0 -0
  1605. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/readers/core/producers.rs +0 -0
  1606. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/readers/core/tables.rs +0 -0
  1607. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/readers/core/tags.rs +0 -0
  1608. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.112.0}/src/readers/core.rs +0 -0
  1609. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/readers.rs +0 -0
  1610. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/resources.rs +0 -0
  1611. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/validator/func.rs +0 -0
  1612. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/validator/names.rs +0 -0
  1613. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/validator/operators.rs +0 -0
  1614. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/tests/big-module.rs +0 -0
  1615. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmparser-0.113.1}/LICENSE +0 -0
  1616. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/README.md +0 -0
  1617. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/benches/benchmark.rs +0 -0
  1618. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/examples/simple.rs +0 -0
  1619. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/parser.rs +0 -0
  1620. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/readers/component/aliases.rs +0 -0
  1621. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/readers/component/canonicals.rs +0 -0
  1622. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/readers/component/exports.rs +0 -0
  1623. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/readers/component/imports.rs +0 -0
  1624. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/readers/component/instances.rs +0 -0
  1625. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/readers/component/names.rs +0 -0
  1626. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/readers/component/start.rs +0 -0
  1627. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/readers/component.rs +0 -0
  1628. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/readers/core/code.rs +0 -0
  1629. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/readers/core/coredumps.rs +0 -0
  1630. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/readers/core/custom.rs +0 -0
  1631. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/readers/core/data.rs +0 -0
  1632. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/readers/core/elements.rs +0 -0
  1633. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/readers/core/exports.rs +0 -0
  1634. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/readers/core/functions.rs +0 -0
  1635. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/readers/core/globals.rs +0 -0
  1636. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/readers/core/imports.rs +0 -0
  1637. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/readers/core/init.rs +0 -0
  1638. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/readers/core/memories.rs +0 -0
  1639. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/readers/core/names.rs +0 -0
  1640. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/readers/core/operators.rs +0 -0
  1641. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/readers/core/producers.rs +0 -0
  1642. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/readers/core/tables.rs +0 -0
  1643. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/readers/core/tags.rs +0 -0
  1644. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/readers.rs +0 -0
  1645. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/resources.rs +0 -0
  1646. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/validator/func.rs +0 -0
  1647. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/validator/names.rs +0 -0
  1648. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/tests/big-module.rs +0 -0
  1649. /data/ext/cargo-vendor/{wasmtime-cache-12.0.1 → wasmprinter-0.2.66}/LICENSE +0 -0
  1650. /data/ext/cargo-vendor/{wasmprinter-0.2.63 → wasmprinter-0.2.66}/README.md +0 -0
  1651. /data/ext/cargo-vendor/{wasmprinter-0.2.63 → wasmprinter-0.2.66}/tests/all.rs +0 -0
  1652. /data/ext/cargo-vendor/{wasmtime-cranelift-12.0.1 → wasmtime-13.0.0}/LICENSE +0 -0
  1653. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/README.md +0 -0
  1654. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/code.rs +0 -0
  1655. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/compiler.rs +0 -0
  1656. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/component/func/host.rs +0 -0
  1657. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/component/func/options.rs +0 -0
  1658. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/component/func.rs +0 -0
  1659. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/component/matching.rs +0 -0
  1660. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/component/resources.rs +0 -0
  1661. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/component/storage.rs +0 -0
  1662. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/component/store.rs +0 -0
  1663. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/coredump.rs +0 -0
  1664. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/externals.rs +0 -0
  1665. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/func/typed.rs +0 -0
  1666. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/func.rs +0 -0
  1667. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/lib.rs +0 -0
  1668. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/linker.rs +0 -0
  1669. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/memory.rs +0 -0
  1670. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/module/registry.rs +0 -0
  1671. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/profiling.rs +0 -0
  1672. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/ref.rs +0 -0
  1673. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/resources.rs +0 -0
  1674. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/signatures.rs +0 -0
  1675. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/store/context.rs +0 -0
  1676. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/store/data.rs +0 -0
  1677. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/store/func_refs.rs +0 -0
  1678. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/trampoline/func.rs +0 -0
  1679. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/trampoline/global.rs +0 -0
  1680. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/trampoline/table.rs +0 -0
  1681. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/trap.rs +0 -0
  1682. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/types/matching.rs +0 -0
  1683. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/types.rs +0 -0
  1684. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/unix.rs +0 -0
  1685. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/values.rs +0 -0
  1686. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/windows.rs +0 -0
  1687. /data/ext/cargo-vendor/{wasmtime-asm-macros-12.0.1 → wasmtime-asm-macros-13.0.0}/src/lib.rs +0 -0
  1688. /data/ext/cargo-vendor/{wasmtime-environ-12.0.1 → wasmtime-cache-13.0.0}/LICENSE +0 -0
  1689. /data/ext/cargo-vendor/{wasmtime-cache-12.0.1 → wasmtime-cache-13.0.0}/build.rs +0 -0
  1690. /data/ext/cargo-vendor/{wasmtime-cache-12.0.1 → wasmtime-cache-13.0.0}/src/config/tests.rs +0 -0
  1691. /data/ext/cargo-vendor/{wasmtime-cache-12.0.1 → wasmtime-cache-13.0.0}/src/lib.rs +0 -0
  1692. /data/ext/cargo-vendor/{wasmtime-cache-12.0.1 → wasmtime-cache-13.0.0}/src/tests.rs +0 -0
  1693. /data/ext/cargo-vendor/{wasmtime-cache-12.0.1 → wasmtime-cache-13.0.0}/src/worker/tests/system_time_stub.rs +0 -0
  1694. /data/ext/cargo-vendor/{wasmtime-cache-12.0.1 → wasmtime-cache-13.0.0}/tests/cache_write_default_config.rs +0 -0
  1695. /data/ext/cargo-vendor/{wasmtime-component-macro-12.0.1 → wasmtime-component-macro-13.0.0}/src/lib.rs +0 -0
  1696. /data/ext/cargo-vendor/{wasmtime-component-macro-12.0.1 → wasmtime-component-macro-13.0.0}/tests/codegen/char.wit +0 -0
  1697. /data/ext/cargo-vendor/{wasmtime-component-macro-12.0.1 → wasmtime-component-macro-13.0.0}/tests/codegen/conventions.wit +0 -0
  1698. /data/ext/cargo-vendor/{wasmtime-component-macro-12.0.1 → wasmtime-component-macro-13.0.0}/tests/codegen/direct-import.wit +0 -0
  1699. /data/ext/cargo-vendor/{wasmtime-component-macro-12.0.1 → wasmtime-component-macro-13.0.0}/tests/codegen/empty.wit +0 -0
  1700. /data/ext/cargo-vendor/{wasmtime-component-macro-12.0.1 → wasmtime-component-macro-13.0.0}/tests/codegen/flags.wit +0 -0
  1701. /data/ext/cargo-vendor/{wasmtime-component-macro-12.0.1 → wasmtime-component-macro-13.0.0}/tests/codegen/floats.wit +0 -0
  1702. /data/ext/cargo-vendor/{wasmtime-component-macro-12.0.1 → wasmtime-component-macro-13.0.0}/tests/codegen/function-new.wit +0 -0
  1703. /data/ext/cargo-vendor/{wasmtime-component-macro-12.0.1 → wasmtime-component-macro-13.0.0}/tests/codegen/integers.wit +0 -0
  1704. /data/ext/cargo-vendor/{wasmtime-component-macro-12.0.1 → wasmtime-component-macro-13.0.0}/tests/codegen/lists.wit +0 -0
  1705. /data/ext/cargo-vendor/{wasmtime-component-macro-12.0.1 → wasmtime-component-macro-13.0.0}/tests/codegen/many-arguments.wit +0 -0
  1706. /data/ext/cargo-vendor/{wasmtime-component-macro-12.0.1 → wasmtime-component-macro-13.0.0}/tests/codegen/multi-return.wit +0 -0
  1707. /data/ext/cargo-vendor/{wasmtime-component-macro-12.0.1 → wasmtime-component-macro-13.0.0}/tests/codegen/records.wit +0 -0
  1708. /data/ext/cargo-vendor/{wasmtime-component-macro-12.0.1 → wasmtime-component-macro-13.0.0}/tests/codegen/rename.wit +0 -0
  1709. /data/ext/cargo-vendor/{wasmtime-component-macro-12.0.1 → wasmtime-component-macro-13.0.0}/tests/codegen/share-types.wit +0 -0
  1710. /data/ext/cargo-vendor/{wasmtime-component-macro-12.0.1 → wasmtime-component-macro-13.0.0}/tests/codegen/simple-functions.wit +0 -0
  1711. /data/ext/cargo-vendor/{wasmtime-component-macro-12.0.1 → wasmtime-component-macro-13.0.0}/tests/codegen/simple-lists.wit +0 -0
  1712. /data/ext/cargo-vendor/{wasmtime-component-macro-12.0.1 → wasmtime-component-macro-13.0.0}/tests/codegen/simple-wasi.wit +0 -0
  1713. /data/ext/cargo-vendor/{wasmtime-component-macro-12.0.1 → wasmtime-component-macro-13.0.0}/tests/codegen/small-anonymous.wit +0 -0
  1714. /data/ext/cargo-vendor/{wasmtime-component-macro-12.0.1 → wasmtime-component-macro-13.0.0}/tests/codegen/smoke-default.wit +0 -0
  1715. /data/ext/cargo-vendor/{wasmtime-component-macro-12.0.1 → wasmtime-component-macro-13.0.0}/tests/codegen/smoke-export.wit +0 -0
  1716. /data/ext/cargo-vendor/{wasmtime-component-macro-12.0.1 → wasmtime-component-macro-13.0.0}/tests/codegen/smoke.wit +0 -0
  1717. /data/ext/cargo-vendor/{wasmtime-component-macro-12.0.1 → wasmtime-component-macro-13.0.0}/tests/codegen/strings.wit +0 -0
  1718. /data/ext/cargo-vendor/{wasmtime-component-macro-12.0.1 → wasmtime-component-macro-13.0.0}/tests/codegen/use-paths.wit +0 -0
  1719. /data/ext/cargo-vendor/{wasmtime-component-macro-12.0.1 → wasmtime-component-macro-13.0.0}/tests/codegen/worlds-with-types.wit +0 -0
  1720. /data/ext/cargo-vendor/{wasmtime-component-macro-12.0.1 → wasmtime-component-macro-13.0.0}/tests/codegen.rs +0 -0
  1721. /data/ext/cargo-vendor/{wasmtime-component-util-12.0.1 → wasmtime-component-util-13.0.0}/src/lib.rs +0 -0
  1722. /data/ext/cargo-vendor/{wasmtime-fiber-12.0.1 → wasmtime-cranelift-13.0.0}/LICENSE +0 -0
  1723. /data/ext/cargo-vendor/{wasmtime-cranelift-12.0.1 → wasmtime-cranelift-13.0.0}/SECURITY.md +0 -0
  1724. /data/ext/cargo-vendor/{wasmtime-cranelift-12.0.1 → wasmtime-cranelift-13.0.0}/src/compiler/component.rs +0 -0
  1725. /data/ext/cargo-vendor/{wasmtime-cranelift-12.0.1 → wasmtime-cranelift-13.0.0}/src/debug/gc.rs +0 -0
  1726. /data/ext/cargo-vendor/{wasmtime-cranelift-12.0.1 → wasmtime-cranelift-13.0.0}/src/debug/transform/address_transform.rs +0 -0
  1727. /data/ext/cargo-vendor/{wasmtime-cranelift-12.0.1 → wasmtime-cranelift-13.0.0}/src/debug/transform/expression.rs +0 -0
  1728. /data/ext/cargo-vendor/{wasmtime-cranelift-12.0.1 → wasmtime-cranelift-13.0.0}/src/debug/transform/line_program.rs +0 -0
  1729. /data/ext/cargo-vendor/{wasmtime-cranelift-12.0.1 → wasmtime-cranelift-13.0.0}/src/debug/transform/mod.rs +0 -0
  1730. /data/ext/cargo-vendor/{wasmtime-cranelift-12.0.1 → wasmtime-cranelift-13.0.0}/src/debug/transform/range_info_builder.rs +0 -0
  1731. /data/ext/cargo-vendor/{wasmtime-cranelift-12.0.1 → wasmtime-cranelift-13.0.0}/src/debug/transform/refs.rs +0 -0
  1732. /data/ext/cargo-vendor/{wasmtime-cranelift-12.0.1 → wasmtime-cranelift-13.0.0}/src/debug/transform/simulate.rs +0 -0
  1733. /data/ext/cargo-vendor/{wasmtime-cranelift-12.0.1 → wasmtime-cranelift-13.0.0}/src/debug/transform/unit.rs +0 -0
  1734. /data/ext/cargo-vendor/{wasmtime-cranelift-12.0.1 → wasmtime-cranelift-13.0.0}/src/debug/transform/utils.rs +0 -0
  1735. /data/ext/cargo-vendor/{wasmtime-cranelift-12.0.1 → wasmtime-cranelift-13.0.0}/src/debug/write_debuginfo.rs +0 -0
  1736. /data/ext/cargo-vendor/{wasmtime-cranelift-12.0.1 → wasmtime-cranelift-13.0.0}/src/lib.rs +0 -0
  1737. /data/ext/cargo-vendor/{wasmtime-cranelift-shared-12.0.1 → wasmtime-cranelift-shared-13.0.0}/src/compiled_function.rs +0 -0
  1738. /data/ext/cargo-vendor/{wasmtime-cranelift-shared-12.0.1 → wasmtime-cranelift-shared-13.0.0}/src/isa_builder.rs +0 -0
  1739. /data/ext/cargo-vendor/{wasmtime-cranelift-shared-12.0.1 → wasmtime-cranelift-shared-13.0.0}/src/lib.rs +0 -0
  1740. /data/ext/cargo-vendor/{wasmtime-cranelift-shared-12.0.1 → wasmtime-cranelift-shared-13.0.0}/src/obj.rs +0 -0
  1741. /data/ext/cargo-vendor/{wasmtime-jit-12.0.1 → wasmtime-environ-13.0.0}/LICENSE +0 -0
  1742. /data/ext/cargo-vendor/{wasmtime-environ-12.0.1 → wasmtime-environ-13.0.0}/examples/factc.rs +0 -0
  1743. /data/ext/cargo-vendor/{wasmtime-environ-12.0.1 → wasmtime-environ-13.0.0}/src/component/dfg.rs +0 -0
  1744. /data/ext/cargo-vendor/{wasmtime-environ-12.0.1 → wasmtime-environ-13.0.0}/src/component/translate/adapt.rs +0 -0
  1745. /data/ext/cargo-vendor/{wasmtime-environ-12.0.1 → wasmtime-environ-13.0.0}/src/component/translate/inline.rs +0 -0
  1746. /data/ext/cargo-vendor/{wasmtime-environ-12.0.1 → wasmtime-environ-13.0.0}/src/component/translate.rs +0 -0
  1747. /data/ext/cargo-vendor/{wasmtime-environ-12.0.1 → wasmtime-environ-13.0.0}/src/component/types/resources.rs +0 -0
  1748. /data/ext/cargo-vendor/{wasmtime-environ-12.0.1 → wasmtime-environ-13.0.0}/src/component/vmcomponent_offsets.rs +0 -0
  1749. /data/ext/cargo-vendor/{wasmtime-environ-12.0.1 → wasmtime-environ-13.0.0}/src/component.rs +0 -0
  1750. /data/ext/cargo-vendor/{wasmtime-environ-12.0.1 → wasmtime-environ-13.0.0}/src/fact/core_types.rs +0 -0
  1751. /data/ext/cargo-vendor/{wasmtime-environ-12.0.1 → wasmtime-environ-13.0.0}/src/fact/signature.rs +0 -0
  1752. /data/ext/cargo-vendor/{wasmtime-environ-12.0.1 → wasmtime-environ-13.0.0}/src/fact/traps.rs +0 -0
  1753. /data/ext/cargo-vendor/{wasmtime-environ-12.0.1 → wasmtime-environ-13.0.0}/src/fact.rs +0 -0
  1754. /data/ext/cargo-vendor/{wasmtime-environ-12.0.1 → wasmtime-environ-13.0.0}/src/obj.rs +0 -0
  1755. /data/ext/cargo-vendor/{wasmtime-environ-12.0.1 → wasmtime-environ-13.0.0}/src/ref_bits.rs +0 -0
  1756. /data/ext/cargo-vendor/{wasmtime-environ-12.0.1 → wasmtime-environ-13.0.0}/src/scopevec.rs +0 -0
  1757. /data/ext/cargo-vendor/{wasmtime-environ-12.0.1 → wasmtime-environ-13.0.0}/src/trap_encoding.rs +0 -0
  1758. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-fiber-13.0.0}/LICENSE +0 -0
  1759. /data/ext/cargo-vendor/{wasmtime-fiber-12.0.1 → wasmtime-fiber-13.0.0}/build.rs +0 -0
  1760. /data/ext/cargo-vendor/{wasmtime-fiber-12.0.1 → wasmtime-fiber-13.0.0}/src/lib.rs +0 -0
  1761. /data/ext/cargo-vendor/{wasmtime-fiber-12.0.1 → wasmtime-fiber-13.0.0}/src/unix/aarch64.rs +0 -0
  1762. /data/ext/cargo-vendor/{wasmtime-fiber-12.0.1 → wasmtime-fiber-13.0.0}/src/unix/arm.rs +0 -0
  1763. /data/ext/cargo-vendor/{wasmtime-fiber-12.0.1 → wasmtime-fiber-13.0.0}/src/unix/riscv64.rs +0 -0
  1764. /data/ext/cargo-vendor/{wasmtime-fiber-12.0.1 → wasmtime-fiber-13.0.0}/src/unix/s390x.S +0 -0
  1765. /data/ext/cargo-vendor/{wasmtime-fiber-12.0.1 → wasmtime-fiber-13.0.0}/src/unix/x86.rs +0 -0
  1766. /data/ext/cargo-vendor/{wasmtime-fiber-12.0.1 → wasmtime-fiber-13.0.0}/src/unix/x86_64.rs +0 -0
  1767. /data/ext/cargo-vendor/{wasmtime-fiber-12.0.1 → wasmtime-fiber-13.0.0}/src/unix.rs +0 -0
  1768. /data/ext/cargo-vendor/{wasmtime-fiber-12.0.1 → wasmtime-fiber-13.0.0}/src/windows.c +0 -0
  1769. /data/ext/cargo-vendor/{wasmtime-fiber-12.0.1 → wasmtime-fiber-13.0.0}/src/windows.rs +0 -0
  1770. /data/ext/cargo-vendor/{wasmtime-types-12.0.1 → wasmtime-jit-13.0.0}/LICENSE +0 -0
  1771. /data/ext/cargo-vendor/{wasmtime-jit-12.0.1 → wasmtime-jit-13.0.0}/src/code_memory.rs +0 -0
  1772. /data/ext/cargo-vendor/{wasmtime-jit-12.0.1 → wasmtime-jit-13.0.0}/src/debug.rs +0 -0
  1773. /data/ext/cargo-vendor/{wasmtime-jit-12.0.1 → wasmtime-jit-13.0.0}/src/demangling.rs +0 -0
  1774. /data/ext/cargo-vendor/{wasmtime-jit-12.0.1 → wasmtime-jit-13.0.0}/src/profiling/jitdump.rs +0 -0
  1775. /data/ext/cargo-vendor/{wasmtime-jit-12.0.1 → wasmtime-jit-13.0.0}/src/profiling/perfmap.rs +0 -0
  1776. /data/ext/cargo-vendor/{wasmtime-jit-12.0.1 → wasmtime-jit-13.0.0}/src/profiling/vtune.rs +0 -0
  1777. /data/ext/cargo-vendor/{wasmtime-jit-12.0.1 → wasmtime-jit-13.0.0}/src/profiling.rs +0 -0
  1778. /data/ext/cargo-vendor/{wasmtime-jit-12.0.1 → wasmtime-jit-13.0.0}/src/unwind.rs +0 -0
  1779. /data/ext/cargo-vendor/{wasmtime-jit-debug-12.0.1 → wasmtime-jit-debug-13.0.0}/README.md +0 -0
  1780. /data/ext/cargo-vendor/{wasmtime-jit-debug-12.0.1 → wasmtime-jit-debug-13.0.0}/src/gdb_jit_int.rs +0 -0
  1781. /data/ext/cargo-vendor/{wasmtime-jit-debug-12.0.1 → wasmtime-jit-debug-13.0.0}/src/lib.rs +0 -0
  1782. /data/ext/cargo-vendor/{wasmtime-jit-debug-12.0.1 → wasmtime-jit-debug-13.0.0}/src/perf_jitdump.rs +0 -0
  1783. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-12.0.1 → wasmtime-jit-icache-coherence-13.0.0}/src/lib.rs +0 -0
  1784. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-12.0.1 → wasmtime-jit-icache-coherence-13.0.0}/src/libc.rs +0 -0
  1785. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-12.0.1 → wasmtime-jit-icache-coherence-13.0.0}/src/miri.rs +0 -0
  1786. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-12.0.1 → wasmtime-jit-icache-coherence-13.0.0}/src/win.rs +0 -0
  1787. /data/ext/cargo-vendor/{wasmtime-wasi-12.0.1 → wasmtime-runtime-13.0.0}/LICENSE +0 -0
  1788. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/build.rs +0 -0
  1789. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/component/libcalls.rs +0 -0
  1790. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/component/resources.rs +0 -0
  1791. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/component.rs +0 -0
  1792. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/cow.rs +0 -0
  1793. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/debug_builtins.rs +0 -0
  1794. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/export.rs +0 -0
  1795. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/externref.rs +0 -0
  1796. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/helpers.c +0 -0
  1797. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/imports.rs +0 -0
  1798. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/instance/allocator/pooling/unix.rs +0 -0
  1799. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/instance/allocator/pooling/windows.rs +0 -0
  1800. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/mmap/miri.rs +0 -0
  1801. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/mmap/unix.rs +0 -0
  1802. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/mmap/windows.rs +0 -0
  1803. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/mmap.rs +0 -0
  1804. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/mmap_vec.rs +0 -0
  1805. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/module_id.rs +0 -0
  1806. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/send_sync_ptr.rs +0 -0
  1807. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/store_box.rs +0 -0
  1808. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/trampolines/aarch64.rs +0 -0
  1809. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/trampolines/riscv64.rs +0 -0
  1810. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/trampolines/s390x.rs +0 -0
  1811. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/trampolines/x86_64.rs +0 -0
  1812. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/trampolines.rs +0 -0
  1813. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/traphandlers/backtrace/aarch64.rs +0 -0
  1814. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/traphandlers/backtrace/riscv64.rs +0 -0
  1815. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/traphandlers/backtrace/s390x.rs +0 -0
  1816. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/traphandlers/backtrace/x86_64.rs +0 -0
  1817. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/traphandlers/backtrace.rs +0 -0
  1818. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/traphandlers/coredump.rs +0 -0
  1819. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/traphandlers/unix.rs +0 -0
  1820. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/traphandlers/windows.rs +0 -0
  1821. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/vmcontext/vm_host_func_context.rs +0 -0
  1822. /data/ext/cargo-vendor/{wast-63.0.0 → wasmtime-types-13.0.0}/LICENSE +0 -0
  1823. /data/ext/cargo-vendor/{wasmtime-types-12.0.1 → wasmtime-types-13.0.0}/src/error.rs +0 -0
  1824. /data/ext/cargo-vendor/{wasmtime-versioned-export-macros-12.0.1 → wasmtime-versioned-export-macros-13.0.0}/src/lib.rs +0 -0
  1825. /data/ext/cargo-vendor/{wat-1.0.70 → wasmtime-wasi-13.0.0}/LICENSE +0 -0
  1826. /data/ext/cargo-vendor/{wasmtime-wasi-12.0.1 → wasmtime-wasi-13.0.0}/README.md +0 -0
  1827. /data/ext/cargo-vendor/{wasmtime-wasi-12.0.1 → wasmtime-wasi-13.0.0}/build.rs +0 -0
  1828. /data/ext/cargo-vendor/{wasmtime-wasi-12.0.1 → wasmtime-wasi-13.0.0}/src/preview2/clocks/host.rs +0 -0
  1829. /data/ext/cargo-vendor/{wasmtime-wasi-12.0.1 → wasmtime-wasi-13.0.0}/src/preview2/clocks.rs +0 -0
  1830. /data/ext/cargo-vendor/{wasmtime-wasi-12.0.1 → wasmtime-wasi-13.0.0}/src/preview2/error.rs +0 -0
  1831. /data/ext/cargo-vendor/{wasmtime-wasi-12.0.1/src/preview2/preview2 → wasmtime-wasi-13.0.0/src/preview2/host}/random.rs +0 -0
  1832. /data/ext/cargo-vendor/{wasmtime-wasi-12.0.1 → wasmtime-wasi-13.0.0}/src/preview2/poll.rs +0 -0
  1833. /data/ext/cargo-vendor/{wasmtime-wasi-12.0.1 → wasmtime-wasi-13.0.0}/src/preview2/random.rs +0 -0
  1834. /data/ext/cargo-vendor/{wasmtime-wasi-12.0.1/wit/deps/wasi-cli-base → wasmtime-wasi-13.0.0/wit/deps/cli}/stdio.wit +0 -0
  1835. /data/ext/cargo-vendor/{wasmtime-wasi-12.0.1 → wasmtime-wasi-13.0.0}/wit/deps/clocks/monotonic-clock.wit +0 -0
  1836. /data/ext/cargo-vendor/{wasmtime-wasi-12.0.1 → wasmtime-wasi-13.0.0}/wit/deps/clocks/timezone.wit +0 -0
  1837. /data/ext/cargo-vendor/{wasmtime-wasi-12.0.1 → wasmtime-wasi-13.0.0}/wit/deps/clocks/wall-clock.wit +0 -0
  1838. /data/ext/cargo-vendor/{wasmtime-wasi-12.0.1 → wasmtime-wasi-13.0.0}/wit/deps/http/incoming-handler.wit +0 -0
  1839. /data/ext/cargo-vendor/{wasmtime-wasi-12.0.1 → wasmtime-wasi-13.0.0}/wit/deps/http/outgoing-handler.wit +0 -0
  1840. /data/ext/cargo-vendor/{wasmtime-wasi-12.0.1 → wasmtime-wasi-13.0.0}/wit/deps/poll/poll.wit +0 -0
  1841. /data/ext/cargo-vendor/{wasmtime-wasi-12.0.1 → wasmtime-wasi-13.0.0}/wit/deps/random/insecure-seed.wit +0 -0
  1842. /data/ext/cargo-vendor/{wasmtime-wasi-12.0.1 → wasmtime-wasi-13.0.0}/wit/deps/random/insecure.wit +0 -0
  1843. /data/ext/cargo-vendor/{wasmtime-wasi-12.0.1 → wasmtime-wasi-13.0.0}/wit/deps/random/random.wit +0 -0
  1844. /data/ext/cargo-vendor/{wasmtime-wasi-12.0.1 → wasmtime-wasi-13.0.0}/wit/deps/sockets/instance-network.wit +0 -0
  1845. /data/ext/cargo-vendor/{wasmtime-wasi-12.0.1 → wasmtime-wasi-13.0.0}/witx/typenames.witx +0 -0
  1846. /data/ext/cargo-vendor/{wasmtime-wasi-12.0.1 → wasmtime-wasi-13.0.0}/witx/wasi_snapshot_preview1.witx +0 -0
  1847. /data/ext/cargo-vendor/{file-per-thread-logger-0.2.0 → wasmtime-winch-13.0.0}/LICENSE +0 -0
  1848. /data/ext/cargo-vendor/{wasmtime-winch-12.0.1 → wasmtime-winch-13.0.0}/src/builder.rs +0 -0
  1849. /data/ext/cargo-vendor/{wasmtime-winch-12.0.1 → wasmtime-winch-13.0.0}/src/compiler.rs +0 -0
  1850. /data/ext/cargo-vendor/{wasmtime-winch-12.0.1 → wasmtime-winch-13.0.0}/src/lib.rs +0 -0
  1851. /data/ext/cargo-vendor/{wasmtime-wit-bindgen-12.0.1 → wasmtime-wit-bindgen-13.0.0}/src/source.rs +0 -0
  1852. /data/ext/cargo-vendor/{wiggle-12.0.1 → wast-65.0.1}/LICENSE +0 -0
  1853. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/README.md +0 -0
  1854. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/component/alias.rs +0 -0
  1855. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/component/component.rs +0 -0
  1856. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/component/custom.rs +0 -0
  1857. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/component/export.rs +0 -0
  1858. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/component/func.rs +0 -0
  1859. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/component/import.rs +0 -0
  1860. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/component/instance.rs +0 -0
  1861. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/component/item_ref.rs +0 -0
  1862. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/component/module.rs +0 -0
  1863. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/component.rs +0 -0
  1864. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/core/custom.rs +0 -0
  1865. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/core/export.rs +0 -0
  1866. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/core/func.rs +0 -0
  1867. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/core/global.rs +0 -0
  1868. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/core/import.rs +0 -0
  1869. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/core/memory.rs +0 -0
  1870. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/core/module.rs +0 -0
  1871. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/core/resolve/deinline_import_export.rs +0 -0
  1872. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/core/resolve/mod.rs +0 -0
  1873. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/core/resolve/names.rs +0 -0
  1874. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/core/resolve/types.rs +0 -0
  1875. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/core/tag.rs +0 -0
  1876. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/core.rs +0 -0
  1877. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/encode.rs +0 -0
  1878. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/error.rs +0 -0
  1879. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/gensym.rs +0 -0
  1880. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/lexer.rs +0 -0
  1881. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/names.rs +0 -0
  1882. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/parser.rs +0 -0
  1883. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/token.rs +0 -0
  1884. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/wast.rs +0 -0
  1885. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/wat.rs +0 -0
  1886. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/annotations.rs +0 -0
  1887. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/comments.rs +0 -0
  1888. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/bad-core-func-alias.wat +0 -0
  1889. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/bad-core-func-alias.wat.err +0 -0
  1890. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/bad-func-alias.wat +0 -0
  1891. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/bad-func-alias.wat.err +0 -0
  1892. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/bad-index.wat +0 -0
  1893. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/bad-index.wat.err +0 -0
  1894. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/bad-name.wat +0 -0
  1895. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/bad-name.wat.err +0 -0
  1896. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/bad-name2.wat +0 -0
  1897. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/bad-name2.wat.err +0 -0
  1898. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/bad-name3.wat +0 -0
  1899. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/bad-name3.wat.err +0 -0
  1900. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/block1.wat +0 -0
  1901. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/block1.wat.err +0 -0
  1902. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/block2.wat +0 -0
  1903. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/block2.wat.err +0 -0
  1904. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/block3.wat +0 -0
  1905. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/block3.wat.err +0 -0
  1906. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-block-comment0.wat +0 -0
  1907. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-block-comment0.wat.err +0 -0
  1908. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-block-comment1.wat +0 -0
  1909. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-block-comment1.wat.err +0 -0
  1910. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-block-comment2.wat +0 -0
  1911. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-block-comment2.wat.err +0 -0
  1912. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-block-comment3.wat +0 -0
  1913. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-block-comment3.wat.err +0 -0
  1914. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-block-comment4.wat +0 -0
  1915. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-block-comment4.wat.err +0 -0
  1916. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-block-comment5.wat +0 -0
  1917. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-block-comment5.wat.err +0 -0
  1918. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-block-comment6.wat +0 -0
  1919. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-block-comment6.wat.err +0 -0
  1920. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-block-comment7.wat +0 -0
  1921. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-block-comment7.wat.err +0 -0
  1922. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-block-comment8.wat +0 -0
  1923. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-block-comment8.wat.err +0 -0
  1924. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-line-comment0.wat +0 -0
  1925. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-line-comment0.wat.err +0 -0
  1926. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-line-comment1.wat +0 -0
  1927. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-line-comment1.wat.err +0 -0
  1928. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-line-comment2.wat +0 -0
  1929. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-line-comment2.wat.err +0 -0
  1930. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-line-comment3.wat +0 -0
  1931. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-line-comment3.wat.err +0 -0
  1932. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-line-comment4.wat +0 -0
  1933. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-line-comment4.wat.err +0 -0
  1934. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-line-comment5.wat +0 -0
  1935. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-line-comment5.wat.err +0 -0
  1936. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-line-comment6.wat +0 -0
  1937. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-line-comment6.wat.err +0 -0
  1938. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-line-comment7.wat +0 -0
  1939. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-line-comment7.wat.err +0 -0
  1940. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-line-comment8.wat +0 -0
  1941. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-line-comment8.wat.err +0 -0
  1942. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-string0.wat +0 -0
  1943. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-string0.wat.err +0 -0
  1944. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-string1.wat +0 -0
  1945. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-string1.wat.err +0 -0
  1946. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-string2.wat +0 -0
  1947. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-string2.wat.err +0 -0
  1948. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-string3.wat +0 -0
  1949. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-string3.wat.err +0 -0
  1950. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-string4.wat +0 -0
  1951. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-string4.wat.err +0 -0
  1952. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-string5.wat +0 -0
  1953. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-string5.wat.err +0 -0
  1954. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-string6.wat +0 -0
  1955. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-string6.wat.err +0 -0
  1956. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-string7.wat +0 -0
  1957. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-string7.wat.err +0 -0
  1958. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-string8.wat +0 -0
  1959. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-string8.wat.err +0 -0
  1960. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/inline1.wat +0 -0
  1961. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/inline1.wat.err +0 -0
  1962. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/newline-in-string.wat +0 -0
  1963. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/newline-in-string.wat.err +0 -0
  1964. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string1.wat +0 -0
  1965. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string1.wat.err +0 -0
  1966. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string10.wat +0 -0
  1967. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string10.wat.err +0 -0
  1968. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string11.wat +0 -0
  1969. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string11.wat.err +0 -0
  1970. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string12.wat +0 -0
  1971. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string12.wat.err +0 -0
  1972. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string13.wat +0 -0
  1973. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string13.wat.err +0 -0
  1974. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string14.wat +0 -0
  1975. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string14.wat.err +0 -0
  1976. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string15.wat +0 -0
  1977. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string15.wat.err +0 -0
  1978. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string16.wat +0 -0
  1979. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string16.wat.err +0 -0
  1980. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string2.wat +0 -0
  1981. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string2.wat.err +0 -0
  1982. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string3.wat +0 -0
  1983. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string3.wat.err +0 -0
  1984. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string4.wat +0 -0
  1985. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string4.wat.err +0 -0
  1986. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string5.wat +0 -0
  1987. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string5.wat.err +0 -0
  1988. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string6.wat +0 -0
  1989. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string6.wat.err +0 -0
  1990. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string7.wat +0 -0
  1991. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string7.wat.err +0 -0
  1992. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string8.wat +0 -0
  1993. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string8.wat.err +0 -0
  1994. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string9.wat +0 -0
  1995. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string9.wat.err +0 -0
  1996. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/unbalanced.wat +0 -0
  1997. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/unbalanced.wat.err +0 -0
  1998. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail.rs +0 -0
  1999. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/recursive.rs +0 -0
  2000. /data/ext/cargo-vendor/{wiggle-generate-12.0.1 → wat-1.0.73}/LICENSE +0 -0
  2001. /data/ext/cargo-vendor/{wat-1.0.70 → wat-1.0.73}/README.md +0 -0
  2002. /data/ext/cargo-vendor/{wat-1.0.70 → wat-1.0.73}/src/lib.rs +0 -0
  2003. /data/ext/cargo-vendor/{wiggle-macro-12.0.1 → wiggle-13.0.0}/LICENSE +0 -0
  2004. /data/ext/cargo-vendor/{wiggle-12.0.1 → wiggle-13.0.0}/README.md +0 -0
  2005. /data/ext/cargo-vendor/{wiggle-12.0.1 → wiggle-13.0.0}/src/borrow.rs +0 -0
  2006. /data/ext/cargo-vendor/{wiggle-12.0.1 → wiggle-13.0.0}/src/error.rs +0 -0
  2007. /data/ext/cargo-vendor/{wiggle-12.0.1 → wiggle-13.0.0}/src/guest_type.rs +0 -0
  2008. /data/ext/cargo-vendor/{wiggle-12.0.1 → wiggle-13.0.0}/src/region.rs +0 -0
  2009. /data/ext/cargo-vendor/{wiggle-12.0.1 → wiggle-13.0.0}/src/wasmtime.rs +0 -0
  2010. /data/ext/cargo-vendor/{wiggle-generate-12.0.1 → wiggle-generate-13.0.0}/README.md +0 -0
  2011. /data/ext/cargo-vendor/{wiggle-generate-12.0.1 → wiggle-generate-13.0.0}/src/codegen_settings.rs +0 -0
  2012. /data/ext/cargo-vendor/{wiggle-generate-12.0.1 → wiggle-generate-13.0.0}/src/funcs.rs +0 -0
  2013. /data/ext/cargo-vendor/{wiggle-generate-12.0.1 → wiggle-generate-13.0.0}/src/lib.rs +0 -0
  2014. /data/ext/cargo-vendor/{wiggle-generate-12.0.1 → wiggle-generate-13.0.0}/src/lifetimes.rs +0 -0
  2015. /data/ext/cargo-vendor/{wiggle-generate-12.0.1 → wiggle-generate-13.0.0}/src/module_trait.rs +0 -0
  2016. /data/ext/cargo-vendor/{wiggle-generate-12.0.1 → wiggle-generate-13.0.0}/src/names.rs +0 -0
  2017. /data/ext/cargo-vendor/{wiggle-generate-12.0.1 → wiggle-generate-13.0.0}/src/types/error.rs +0 -0
  2018. /data/ext/cargo-vendor/{wiggle-generate-12.0.1 → wiggle-generate-13.0.0}/src/types/flags.rs +0 -0
  2019. /data/ext/cargo-vendor/{wiggle-generate-12.0.1 → wiggle-generate-13.0.0}/src/types/handle.rs +0 -0
  2020. /data/ext/cargo-vendor/{wiggle-generate-12.0.1 → wiggle-generate-13.0.0}/src/types/mod.rs +0 -0
  2021. /data/ext/cargo-vendor/{wiggle-generate-12.0.1 → wiggle-generate-13.0.0}/src/types/variant.rs +0 -0
  2022. /data/ext/cargo-vendor/{wiggle-macro-12.0.1 → wiggle-macro-13.0.0}/src/lib.rs +0 -0
  2023. /data/ext/cargo-vendor/{wasmtime-winch-12.0.1 → winch-codegen-0.11.0}/LICENSE +0 -0
  2024. /data/ext/cargo-vendor/{winch-codegen-0.10.1 → winch-codegen-0.11.0}/build.rs +0 -0
  2025. /data/ext/cargo-vendor/{winch-codegen-0.10.1 → winch-codegen-0.11.0}/src/abi/local.rs +0 -0
  2026. /data/ext/cargo-vendor/{winch-codegen-0.10.1 → winch-codegen-0.11.0}/src/codegen/env.rs +0 -0
  2027. /data/ext/cargo-vendor/{winch-codegen-0.10.1 → winch-codegen-0.11.0}/src/frame/mod.rs +0 -0
  2028. /data/ext/cargo-vendor/{winch-codegen-0.10.1 → winch-codegen-0.11.0}/src/isa/aarch64/mod.rs +0 -0
  2029. /data/ext/cargo-vendor/{winch-codegen-0.10.1 → winch-codegen-0.11.0}/src/isa/mod.rs +0 -0
  2030. /data/ext/cargo-vendor/{winch-codegen-0.10.1 → winch-codegen-0.11.0}/src/lib.rs +0 -0
  2031. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/README.md +0 -0
  2032. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/src/ast/toposort.rs +0 -0
  2033. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/comments.wit +0 -0
  2034. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/complex-include/deps/bar/root.wit +0 -0
  2035. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/complex-include/deps/baz/root.wit +0 -0
  2036. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/complex-include/root.wit +0 -0
  2037. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/cross-package-resource/deps/foo/foo.wit +0 -0
  2038. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/cross-package-resource/foo.wit +0 -0
  2039. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/diamond1/deps/dep1/types.wit +0 -0
  2040. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/diamond1/deps/dep2/types.wit +0 -0
  2041. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/diamond1/join.wit +0 -0
  2042. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/disambiguate-diamond/shared1.wit +0 -0
  2043. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/disambiguate-diamond/shared2.wit +0 -0
  2044. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/disambiguate-diamond/world.wit +0 -0
  2045. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/embedded.wit.md +0 -0
  2046. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/empty.wit +0 -0
  2047. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/foreign-deps/deps/another-pkg/other-doc.wit +0 -0
  2048. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/foreign-deps/deps/corp/saas.wit +0 -0
  2049. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/foreign-deps/deps/different-pkg/the-doc.wit +0 -0
  2050. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/foreign-deps/deps/foreign-pkg/the-doc.wit +0 -0
  2051. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/foreign-deps/deps/some-pkg/some-doc.wit +0 -0
  2052. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/foreign-deps/deps/wasi/clocks.wit +0 -0
  2053. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/foreign-deps/deps/wasi/filesystem.wit +0 -0
  2054. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/foreign-deps/root.wit +0 -0
  2055. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/foreign-deps-union/deps/another-pkg/other-doc.wit +0 -0
  2056. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/foreign-deps-union/deps/corp/saas.wit +0 -0
  2057. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/foreign-deps-union/deps/different-pkg/the-doc.wit +0 -0
  2058. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/foreign-deps-union/deps/foreign-pkg/the-doc.wit +0 -0
  2059. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/foreign-deps-union/deps/some-pkg/some-doc.wit +0 -0
  2060. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/foreign-deps-union/deps/wasi/clocks.wit +0 -0
  2061. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/foreign-deps-union/deps/wasi/filesystem.wit +0 -0
  2062. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/foreign-deps-union/deps/wasi/wasi.wit +0 -0
  2063. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/foreign-deps-union/root.wit +0 -0
  2064. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/functions.wit +0 -0
  2065. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/ignore-files-deps/deps/bar/types.wit +0 -0
  2066. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/ignore-files-deps/deps/ignore-me.txt +0 -0
  2067. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/ignore-files-deps/world.wit +0 -0
  2068. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/include-reps.wit +0 -0
  2069. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/kebab-name-include-with.wit +0 -0
  2070. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/many-names/a.wit +0 -0
  2071. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/many-names/b.wit +0 -0
  2072. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/multi-file/bar.wit +0 -0
  2073. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/multi-file/cycle-a.wit +0 -0
  2074. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/multi-file/cycle-b.wit +0 -0
  2075. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/multi-file/foo.wit +0 -0
  2076. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/name-both-resource-and-type/deps/dep/foo.wit +0 -0
  2077. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/name-both-resource-and-type/foo.wit +0 -0
  2078. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/package-syntax1.wit +0 -0
  2079. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/package-syntax3.wit +0 -0
  2080. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/package-syntax4.wit +0 -0
  2081. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/alias-no-type.wit +0 -0
  2082. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/alias-no-type.wit.result +0 -0
  2083. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/async.wit.result +0 -0
  2084. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/async1.wit.result +0 -0
  2085. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-function.wit +0 -0
  2086. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-function.wit.result +0 -0
  2087. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-function2.wit +0 -0
  2088. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-function2.wit.result +0 -0
  2089. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-include1.wit +0 -0
  2090. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-include1.wit.result +0 -0
  2091. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-include2.wit +0 -0
  2092. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-include2.wit.result +0 -0
  2093. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-include3.wit +0 -0
  2094. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-include3.wit.result +0 -0
  2095. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-list.wit +0 -0
  2096. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-list.wit.result +0 -0
  2097. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-pkg1/root.wit +0 -0
  2098. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-pkg1.wit.result +0 -0
  2099. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-pkg2/deps/bar/empty.wit +0 -0
  2100. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-pkg2/root.wit +0 -0
  2101. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-pkg2.wit.result +0 -0
  2102. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-pkg3/deps/bar/baz.wit +0 -0
  2103. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-pkg3/root.wit +0 -0
  2104. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-pkg3.wit.result +0 -0
  2105. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-pkg4/deps/bar/baz.wit +0 -0
  2106. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-pkg4/root.wit +0 -0
  2107. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-pkg4.wit.result +0 -0
  2108. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-pkg5/deps/bar/baz.wit +0 -0
  2109. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-pkg5/root.wit +0 -0
  2110. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-pkg5.wit.result +0 -0
  2111. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-pkg6/deps/bar/baz.wit +0 -0
  2112. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-pkg6/root.wit +0 -0
  2113. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-pkg6.wit.result +0 -0
  2114. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource1.wit +0 -0
  2115. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource1.wit.result +0 -0
  2116. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource10.wit +0 -0
  2117. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource10.wit.result +0 -0
  2118. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource11.wit +0 -0
  2119. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource11.wit.result +0 -0
  2120. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource12.wit +0 -0
  2121. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource12.wit.result +0 -0
  2122. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource13.wit +0 -0
  2123. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource13.wit.result +0 -0
  2124. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource14.wit +0 -0
  2125. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource14.wit.result +0 -0
  2126. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource15/deps/foo/foo.wit +0 -0
  2127. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource15/foo.wit +0 -0
  2128. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource15.wit.result +0 -0
  2129. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource2.wit +0 -0
  2130. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource2.wit.result +0 -0
  2131. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource3.wit +0 -0
  2132. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource3.wit.result +0 -0
  2133. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource4.wit +0 -0
  2134. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource4.wit.result +0 -0
  2135. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource5.wit +0 -0
  2136. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource5.wit.result +0 -0
  2137. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource6.wit +0 -0
  2138. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource6.wit.result +0 -0
  2139. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource7.wit +0 -0
  2140. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource7.wit.result +0 -0
  2141. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource8.wit +0 -0
  2142. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource8.wit.result +0 -0
  2143. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource9.wit +0 -0
  2144. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource9.wit.result +0 -0
  2145. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-world-type1.wit +0 -0
  2146. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-world-type1.wit.result +0 -0
  2147. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/conflicting-package/a.wit +0 -0
  2148. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/conflicting-package/b.wit +0 -0
  2149. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/conflicting-package.wit.result +0 -0
  2150. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/cycle.wit +0 -0
  2151. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/cycle.wit.result +0 -0
  2152. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/cycle2.wit +0 -0
  2153. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/cycle2.wit.result +0 -0
  2154. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/cycle3.wit +0 -0
  2155. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/cycle3.wit.result +0 -0
  2156. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/cycle4.wit +0 -0
  2157. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/cycle4.wit.result +0 -0
  2158. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/cycle5.wit +0 -0
  2159. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/cycle5.wit.result +0 -0
  2160. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/dangling-type.wit +0 -0
  2161. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/dangling-type.wit.result +0 -0
  2162. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/duplicate-functions.wit +0 -0
  2163. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/duplicate-functions.wit.result +0 -0
  2164. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/duplicate-interface.wit +0 -0
  2165. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/duplicate-interface.wit.result +0 -0
  2166. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/duplicate-interface2/foo.wit +0 -0
  2167. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/duplicate-interface2/foo2.wit +0 -0
  2168. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/duplicate-interface2.wit.result +0 -0
  2169. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/duplicate-type.wit +0 -0
  2170. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/duplicate-type.wit.result +0 -0
  2171. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/empty-enum.wit +0 -0
  2172. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/empty-enum.wit.result +0 -0
  2173. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/empty-variant1.wit +0 -0
  2174. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/empty-variant1.wit.result +0 -0
  2175. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/export-twice.wit +0 -0
  2176. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/export-twice.wit.result +0 -0
  2177. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/import-and-export1.wit +0 -0
  2178. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/import-and-export1.wit.result +0 -0
  2179. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/import-and-export2.wit +0 -0
  2180. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/import-and-export2.wit.result +0 -0
  2181. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/import-and-export3.wit +0 -0
  2182. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/import-and-export3.wit.result +0 -0
  2183. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/import-and-export4.wit +0 -0
  2184. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/import-and-export4.wit.result +0 -0
  2185. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/import-and-export5.wit +0 -0
  2186. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/import-and-export5.wit.result +0 -0
  2187. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/import-export-overlap1.wit +0 -0
  2188. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/import-export-overlap1.wit.result +0 -0
  2189. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/import-export-overlap2.wit +0 -0
  2190. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/import-export-overlap2.wit.result +0 -0
  2191. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/import-twice.wit +0 -0
  2192. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/import-twice.wit.result +0 -0
  2193. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/include-cycle.wit +0 -0
  2194. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/include-cycle.wit.result +0 -0
  2195. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/include-foreign/deps/bar/empty.wit +0 -0
  2196. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/include-foreign/root.wit +0 -0
  2197. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/include-foreign.wit.result +0 -0
  2198. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/include-with-id.wit +0 -0
  2199. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/include-with-id.wit.result +0 -0
  2200. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/include-with-on-id.wit +0 -0
  2201. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/include-with-on-id.wit.result +0 -0
  2202. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/invalid-md.md +0 -0
  2203. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/invalid-md.wit.result +0 -0
  2204. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/invalid-toplevel.wit +0 -0
  2205. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/invalid-toplevel.wit.result +0 -0
  2206. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/invalid-type-reference.wit +0 -0
  2207. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/invalid-type-reference.wit.result +0 -0
  2208. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/invalid-type-reference2.wit +0 -0
  2209. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/invalid-type-reference2.wit.result +0 -0
  2210. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/kebab-name-include-not-found.wit +0 -0
  2211. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/kebab-name-include-not-found.wit.result +0 -0
  2212. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/kebab-name-include.wit +0 -0
  2213. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/kebab-name-include.wit.result +0 -0
  2214. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/keyword.wit +0 -0
  2215. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/keyword.wit.result +0 -0
  2216. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/missing-package.wit +0 -0
  2217. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/missing-package.wit.result +0 -0
  2218. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/no-access-to-sibling-use/bar.wit +0 -0
  2219. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/no-access-to-sibling-use/foo.wit +0 -0
  2220. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/no-access-to-sibling-use.wit.result +0 -0
  2221. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/non-existance-world-include/deps/bar/baz.wit +0 -0
  2222. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/non-existance-world-include/root.wit +0 -0
  2223. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/non-existance-world-include.wit.result +0 -0
  2224. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/pkg-cycle/deps/a1/root.wit +0 -0
  2225. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/pkg-cycle/root.wit +0 -0
  2226. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/pkg-cycle.wit.result +0 -0
  2227. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/pkg-cycle2/deps/a1/root.wit +0 -0
  2228. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/pkg-cycle2/deps/a2/root.wit +0 -0
  2229. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/pkg-cycle2/root.wit +0 -0
  2230. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/pkg-cycle2.wit.result +0 -0
  2231. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/type-and-resource-same-name/deps/dep/foo.wit +0 -0
  2232. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/type-and-resource-same-name/foo.wit +0 -0
  2233. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/type-and-resource-same-name.wit.result +0 -0
  2234. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/undefined-typed.wit +0 -0
  2235. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/undefined-typed.wit.result +0 -0
  2236. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/union-fuzz-2.wit +0 -0
  2237. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/union-fuzz-2.wit.result +0 -0
  2238. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/unknown-interface.wit +0 -0
  2239. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/unknown-interface.wit.result +0 -0
  2240. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/unresolved-interface1.wit +0 -0
  2241. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/unresolved-interface1.wit.result +0 -0
  2242. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/unresolved-interface2.wit +0 -0
  2243. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/unresolved-interface2.wit.result +0 -0
  2244. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/unresolved-interface3.wit +0 -0
  2245. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/unresolved-interface3.wit.result +0 -0
  2246. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/unresolved-interface4.wit +0 -0
  2247. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/unresolved-interface4.wit.result +0 -0
  2248. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/unresolved-use1.wit +0 -0
  2249. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/unresolved-use1.wit.result +0 -0
  2250. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/unresolved-use10/bar.wit +0 -0
  2251. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/unresolved-use10/foo.wit +0 -0
  2252. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/unresolved-use10.wit.result +0 -0
  2253. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/unresolved-use2.wit +0 -0
  2254. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/unresolved-use2.wit.result +0 -0
  2255. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/unresolved-use3.wit +0 -0
  2256. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/unresolved-use3.wit.result +0 -0
  2257. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/unresolved-use7.wit +0 -0
  2258. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/unresolved-use7.wit.result +0 -0
  2259. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/unresolved-use8.wit +0 -0
  2260. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/unresolved-use8.wit.result +0 -0
  2261. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/unresolved-use9.wit +0 -0
  2262. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/unresolved-use9.wit.result +0 -0
  2263. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/unterminated-string.wit.result +0 -0
  2264. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/use-and-include-world/deps/bar/baz.wit +0 -0
  2265. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/use-and-include-world/root.wit +0 -0
  2266. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/use-and-include-world.wit.result +0 -0
  2267. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/use-conflict.wit +0 -0
  2268. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/use-conflict.wit.result +0 -0
  2269. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/use-conflict2.wit +0 -0
  2270. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/use-conflict2.wit.result +0 -0
  2271. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/use-conflict3.wit +0 -0
  2272. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/use-conflict3.wit.result +0 -0
  2273. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/use-cycle1.wit +0 -0
  2274. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/use-cycle1.wit.result +0 -0
  2275. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/use-cycle4.wit +0 -0
  2276. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/use-cycle4.wit.result +0 -0
  2277. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/use-shadow1.wit +0 -0
  2278. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/use-shadow1.wit.result +0 -0
  2279. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/use-world/deps/bar/baz.wit +0 -0
  2280. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/use-world/root.wit +0 -0
  2281. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/use-world.wit.result +0 -0
  2282. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/world-interface-clash.wit +0 -0
  2283. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/world-interface-clash.wit.result +0 -0
  2284. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/world-same-fields2.wit +0 -0
  2285. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/world-same-fields2.wit.result +0 -0
  2286. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/world-same-fields3.wit +0 -0
  2287. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/world-same-fields3.wit.result +0 -0
  2288. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/world-top-level-func.wit +0 -0
  2289. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/world-top-level-func.wit.result +0 -0
  2290. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/world-top-level-func2.wit +0 -0
  2291. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/world-top-level-func2.wit.result +0 -0
  2292. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/resources-empty.wit +0 -0
  2293. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/resources-multiple-returns-borrow.wit +0 -0
  2294. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/resources-multiple-returns-own.wit +0 -0
  2295. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/resources-multiple.wit +0 -0
  2296. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/resources-return-borrow.wit +0 -0
  2297. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/resources-return-own.wit +0 -0
  2298. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/resources.wit +0 -0
  2299. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/resources1.wit +0 -0
  2300. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/shared-types.wit +0 -0
  2301. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/stress-export-elaborate.wit +0 -0
  2302. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/type-then-eof.wit +0 -0
  2303. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/union-fuzz-1.wit +0 -0
  2304. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/use-chain.wit +0 -0
  2305. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/use.wit +0 -0
  2306. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/versions/deps/a1/foo.wit +0 -0
  2307. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/versions/deps/a2/foo.wit +0 -0
  2308. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/versions/foo.wit +0 -0
  2309. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/wasi.wit +0 -0
  2310. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/world-iface-no-collide.wit +0 -0
  2311. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/world-implicit-import1.wit +0 -0
  2312. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/world-implicit-import2.wit +0 -0
  2313. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/world-implicit-import3.wit +0 -0
  2314. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/world-same-fields4.wit +0 -0
  2315. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/world-top-level-funcs.wit +0 -0
  2316. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/world-top-level-resources.wit +0 -0
  2317. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/worlds-union-dedup.wit +0 -0
  2318. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/worlds-with-types.wit +0 -0
@@ -1,3050 +0,0 @@
1
- //! PE/COFF definitions.
2
- //!
3
- //! These definitions are independent of read/write support, although we do implement
4
- //! some traits useful for those.
5
- //!
6
- //! This module is based heavily on "winnt.h" (10.0.17763.0).
7
-
8
- #![allow(missing_docs)]
9
-
10
- use core::convert::TryInto;
11
-
12
- use crate::endian::{I32Bytes, LittleEndian as LE, U16Bytes, U32Bytes, I32, U16, U32, U64};
13
- use crate::pod::Pod;
14
-
15
- /// MZ
16
- pub const IMAGE_DOS_SIGNATURE: u16 = 0x5A4D;
17
- /// NE
18
- pub const IMAGE_OS2_SIGNATURE: u16 = 0x454E;
19
- /// LE
20
- pub const IMAGE_OS2_SIGNATURE_LE: u16 = 0x454C;
21
- /// LE
22
- pub const IMAGE_VXD_SIGNATURE: u16 = 0x454C;
23
- /// PE00
24
- pub const IMAGE_NT_SIGNATURE: u32 = 0x0000_4550;
25
-
26
- /// DOS .EXE header
27
- #[derive(Debug, Clone, Copy)]
28
- #[repr(C)]
29
- pub struct ImageDosHeader {
30
- /// Magic number
31
- pub e_magic: U16<LE>,
32
- /// Bytes on last page of file
33
- pub e_cblp: U16<LE>,
34
- /// Pages in file
35
- pub e_cp: U16<LE>,
36
- /// Relocations
37
- pub e_crlc: U16<LE>,
38
- /// Size of header in paragraphs
39
- pub e_cparhdr: U16<LE>,
40
- /// Minimum extra paragraphs needed
41
- pub e_minalloc: U16<LE>,
42
- /// Maximum extra paragraphs needed
43
- pub e_maxalloc: U16<LE>,
44
- /// Initial (relative) SS value
45
- pub e_ss: U16<LE>,
46
- /// Initial SP value
47
- pub e_sp: U16<LE>,
48
- /// Checksum
49
- pub e_csum: U16<LE>,
50
- /// Initial IP value
51
- pub e_ip: U16<LE>,
52
- /// Initial (relative) CS value
53
- pub e_cs: U16<LE>,
54
- /// File address of relocation table
55
- pub e_lfarlc: U16<LE>,
56
- /// Overlay number
57
- pub e_ovno: U16<LE>,
58
- /// Reserved words
59
- pub e_res: [U16<LE>; 4],
60
- /// OEM identifier (for e_oeminfo)
61
- pub e_oemid: U16<LE>,
62
- /// OEM information; e_oemid specific
63
- pub e_oeminfo: U16<LE>,
64
- /// Reserved words
65
- pub e_res2: [U16<LE>; 10],
66
- /// File address of new exe header
67
- pub e_lfanew: U32<LE>,
68
- }
69
-
70
- /// OS/2 .EXE header
71
- #[derive(Debug, Clone, Copy)]
72
- #[repr(C)]
73
- pub struct ImageOs2Header {
74
- /// Magic number
75
- pub ne_magic: U16<LE>,
76
- /// Version number
77
- pub ne_ver: i8,
78
- /// Revision number
79
- pub ne_rev: i8,
80
- /// Offset of Entry Table
81
- pub ne_enttab: U16<LE>,
82
- /// Number of bytes in Entry Table
83
- pub ne_cbenttab: U16<LE>,
84
- /// Checksum of whole file
85
- pub ne_crc: I32<LE>,
86
- /// Flag word
87
- pub ne_flags: U16<LE>,
88
- /// Automatic data segment number
89
- pub ne_autodata: U16<LE>,
90
- /// Initial heap allocation
91
- pub ne_heap: U16<LE>,
92
- /// Initial stack allocation
93
- pub ne_stack: U16<LE>,
94
- /// Initial CS:IP setting
95
- pub ne_csip: I32<LE>,
96
- /// Initial SS:SP setting
97
- pub ne_sssp: I32<LE>,
98
- /// Count of file segments
99
- pub ne_cseg: U16<LE>,
100
- /// Entries in Module Reference Table
101
- pub ne_cmod: U16<LE>,
102
- /// Size of non-resident name table
103
- pub ne_cbnrestab: U16<LE>,
104
- /// Offset of Segment Table
105
- pub ne_segtab: U16<LE>,
106
- /// Offset of Resource Table
107
- pub ne_rsrctab: U16<LE>,
108
- /// Offset of resident name table
109
- pub ne_restab: U16<LE>,
110
- /// Offset of Module Reference Table
111
- pub ne_modtab: U16<LE>,
112
- /// Offset of Imported Names Table
113
- pub ne_imptab: U16<LE>,
114
- /// Offset of Non-resident Names Table
115
- pub ne_nrestab: I32<LE>,
116
- /// Count of movable entries
117
- pub ne_cmovent: U16<LE>,
118
- /// Segment alignment shift count
119
- pub ne_align: U16<LE>,
120
- /// Count of resource segments
121
- pub ne_cres: U16<LE>,
122
- /// Target Operating system
123
- pub ne_exetyp: u8,
124
- /// Other .EXE flags
125
- pub ne_flagsothers: u8,
126
- /// offset to return thunks
127
- pub ne_pretthunks: U16<LE>,
128
- /// offset to segment ref. bytes
129
- pub ne_psegrefbytes: U16<LE>,
130
- /// Minimum code swap area size
131
- pub ne_swaparea: U16<LE>,
132
- /// Expected Windows version number
133
- pub ne_expver: U16<LE>,
134
- }
135
-
136
- /// Windows VXD header
137
- #[derive(Debug, Clone, Copy)]
138
- #[repr(C)]
139
- pub struct ImageVxdHeader {
140
- /// Magic number
141
- pub e32_magic: U16<LE>,
142
- /// The byte ordering for the VXD
143
- pub e32_border: u8,
144
- /// The word ordering for the VXD
145
- pub e32_worder: u8,
146
- /// The EXE format level for now = 0
147
- pub e32_level: U32<LE>,
148
- /// The CPU type
149
- pub e32_cpu: U16<LE>,
150
- /// The OS type
151
- pub e32_os: U16<LE>,
152
- /// Module version
153
- pub e32_ver: U32<LE>,
154
- /// Module flags
155
- pub e32_mflags: U32<LE>,
156
- /// Module # pages
157
- pub e32_mpages: U32<LE>,
158
- /// Object # for instruction pointer
159
- pub e32_startobj: U32<LE>,
160
- /// Extended instruction pointer
161
- pub e32_eip: U32<LE>,
162
- /// Object # for stack pointer
163
- pub e32_stackobj: U32<LE>,
164
- /// Extended stack pointer
165
- pub e32_esp: U32<LE>,
166
- /// VXD page size
167
- pub e32_pagesize: U32<LE>,
168
- /// Last page size in VXD
169
- pub e32_lastpagesize: U32<LE>,
170
- /// Fixup section size
171
- pub e32_fixupsize: U32<LE>,
172
- /// Fixup section checksum
173
- pub e32_fixupsum: U32<LE>,
174
- /// Loader section size
175
- pub e32_ldrsize: U32<LE>,
176
- /// Loader section checksum
177
- pub e32_ldrsum: U32<LE>,
178
- /// Object table offset
179
- pub e32_objtab: U32<LE>,
180
- /// Number of objects in module
181
- pub e32_objcnt: U32<LE>,
182
- /// Object page map offset
183
- pub e32_objmap: U32<LE>,
184
- /// Object iterated data map offset
185
- pub e32_itermap: U32<LE>,
186
- /// Offset of Resource Table
187
- pub e32_rsrctab: U32<LE>,
188
- /// Number of resource entries
189
- pub e32_rsrccnt: U32<LE>,
190
- /// Offset of resident name table
191
- pub e32_restab: U32<LE>,
192
- /// Offset of Entry Table
193
- pub e32_enttab: U32<LE>,
194
- /// Offset of Module Directive Table
195
- pub e32_dirtab: U32<LE>,
196
- /// Number of module directives
197
- pub e32_dircnt: U32<LE>,
198
- /// Offset of Fixup Page Table
199
- pub e32_fpagetab: U32<LE>,
200
- /// Offset of Fixup Record Table
201
- pub e32_frectab: U32<LE>,
202
- /// Offset of Import Module Name Table
203
- pub e32_impmod: U32<LE>,
204
- /// Number of entries in Import Module Name Table
205
- pub e32_impmodcnt: U32<LE>,
206
- /// Offset of Import Procedure Name Table
207
- pub e32_impproc: U32<LE>,
208
- /// Offset of Per-Page Checksum Table
209
- pub e32_pagesum: U32<LE>,
210
- /// Offset of Enumerated Data Pages
211
- pub e32_datapage: U32<LE>,
212
- /// Number of preload pages
213
- pub e32_preload: U32<LE>,
214
- /// Offset of Non-resident Names Table
215
- pub e32_nrestab: U32<LE>,
216
- /// Size of Non-resident Name Table
217
- pub e32_cbnrestab: U32<LE>,
218
- /// Non-resident Name Table Checksum
219
- pub e32_nressum: U32<LE>,
220
- /// Object # for automatic data object
221
- pub e32_autodata: U32<LE>,
222
- /// Offset of the debugging information
223
- pub e32_debuginfo: U32<LE>,
224
- /// The length of the debugging info. in bytes
225
- pub e32_debuglen: U32<LE>,
226
- /// Number of instance pages in preload section of VXD file
227
- pub e32_instpreload: U32<LE>,
228
- /// Number of instance pages in demand load section of VXD file
229
- pub e32_instdemand: U32<LE>,
230
- /// Size of heap - for 16-bit apps
231
- pub e32_heapsize: U32<LE>,
232
- /// Reserved words
233
- pub e32_res3: [u8; 12],
234
- pub e32_winresoff: U32<LE>,
235
- pub e32_winreslen: U32<LE>,
236
- /// Device ID for VxD
237
- pub e32_devid: U16<LE>,
238
- /// DDK version for VxD
239
- pub e32_ddkver: U16<LE>,
240
- }
241
-
242
- /// A PE rich header entry.
243
- ///
244
- /// Rich headers have no official documentation, but have been heavily
245
- /// reversed-engineered and documented in the wild, e.g.:
246
- /// * `http://www.ntcore.com/files/richsign.htm`
247
- /// * `https://www.researchgate.net/figure/Structure-of-the-Rich-Header_fig1_318145388`
248
- ///
249
- /// This data is "masked", i.e. XORed with a checksum derived from the file data.
250
- #[derive(Debug, Clone, Copy)]
251
- #[repr(C)]
252
- pub struct MaskedRichHeaderEntry {
253
- pub masked_comp_id: U32<LE>,
254
- pub masked_count: U32<LE>,
255
- }
256
-
257
- //
258
- // File header format.
259
- //
260
-
261
- #[derive(Debug, Clone, Copy)]
262
- #[repr(C)]
263
- pub struct ImageFileHeader {
264
- pub machine: U16<LE>,
265
- pub number_of_sections: U16<LE>,
266
- pub time_date_stamp: U32<LE>,
267
- pub pointer_to_symbol_table: U32<LE>,
268
- pub number_of_symbols: U32<LE>,
269
- pub size_of_optional_header: U16<LE>,
270
- pub characteristics: U16<LE>,
271
- }
272
-
273
- pub const IMAGE_SIZEOF_FILE_HEADER: usize = 20;
274
-
275
- /// Relocation info stripped from file.
276
- pub const IMAGE_FILE_RELOCS_STRIPPED: u16 = 0x0001;
277
- /// File is executable (i.e. no unresolved external references).
278
- pub const IMAGE_FILE_EXECUTABLE_IMAGE: u16 = 0x0002;
279
- /// Line numbers stripped from file.
280
- pub const IMAGE_FILE_LINE_NUMS_STRIPPED: u16 = 0x0004;
281
- /// Local symbols stripped from file.
282
- pub const IMAGE_FILE_LOCAL_SYMS_STRIPPED: u16 = 0x0008;
283
- /// Aggressively trim working set
284
- pub const IMAGE_FILE_AGGRESIVE_WS_TRIM: u16 = 0x0010;
285
- /// App can handle >2gb addresses
286
- pub const IMAGE_FILE_LARGE_ADDRESS_AWARE: u16 = 0x0020;
287
- /// Bytes of machine word are reversed.
288
- pub const IMAGE_FILE_BYTES_REVERSED_LO: u16 = 0x0080;
289
- /// 32 bit word machine.
290
- pub const IMAGE_FILE_32BIT_MACHINE: u16 = 0x0100;
291
- /// Debugging info stripped from file in .DBG file
292
- pub const IMAGE_FILE_DEBUG_STRIPPED: u16 = 0x0200;
293
- /// If Image is on removable media, copy and run from the swap file.
294
- pub const IMAGE_FILE_REMOVABLE_RUN_FROM_SWAP: u16 = 0x0400;
295
- /// If Image is on Net, copy and run from the swap file.
296
- pub const IMAGE_FILE_NET_RUN_FROM_SWAP: u16 = 0x0800;
297
- /// System File.
298
- pub const IMAGE_FILE_SYSTEM: u16 = 0x1000;
299
- /// File is a DLL.
300
- pub const IMAGE_FILE_DLL: u16 = 0x2000;
301
- /// File should only be run on a UP machine
302
- pub const IMAGE_FILE_UP_SYSTEM_ONLY: u16 = 0x4000;
303
- /// Bytes of machine word are reversed.
304
- pub const IMAGE_FILE_BYTES_REVERSED_HI: u16 = 0x8000;
305
-
306
- pub const IMAGE_FILE_MACHINE_UNKNOWN: u16 = 0;
307
- /// Useful for indicating we want to interact with the host and not a WoW guest.
308
- pub const IMAGE_FILE_MACHINE_TARGET_HOST: u16 = 0x0001;
309
- /// Intel 386.
310
- pub const IMAGE_FILE_MACHINE_I386: u16 = 0x014c;
311
- /// MIPS little-endian, 0x160 big-endian
312
- pub const IMAGE_FILE_MACHINE_R3000: u16 = 0x0162;
313
- /// MIPS little-endian
314
- pub const IMAGE_FILE_MACHINE_R4000: u16 = 0x0166;
315
- /// MIPS little-endian
316
- pub const IMAGE_FILE_MACHINE_R10000: u16 = 0x0168;
317
- /// MIPS little-endian WCE v2
318
- pub const IMAGE_FILE_MACHINE_WCEMIPSV2: u16 = 0x0169;
319
- /// Alpha_AXP
320
- pub const IMAGE_FILE_MACHINE_ALPHA: u16 = 0x0184;
321
- /// SH3 little-endian
322
- pub const IMAGE_FILE_MACHINE_SH3: u16 = 0x01a2;
323
- pub const IMAGE_FILE_MACHINE_SH3DSP: u16 = 0x01a3;
324
- /// SH3E little-endian
325
- pub const IMAGE_FILE_MACHINE_SH3E: u16 = 0x01a4;
326
- /// SH4 little-endian
327
- pub const IMAGE_FILE_MACHINE_SH4: u16 = 0x01a6;
328
- /// SH5
329
- pub const IMAGE_FILE_MACHINE_SH5: u16 = 0x01a8;
330
- /// ARM Little-Endian
331
- pub const IMAGE_FILE_MACHINE_ARM: u16 = 0x01c0;
332
- /// ARM Thumb/Thumb-2 Little-Endian
333
- pub const IMAGE_FILE_MACHINE_THUMB: u16 = 0x01c2;
334
- /// ARM Thumb-2 Little-Endian
335
- pub const IMAGE_FILE_MACHINE_ARMNT: u16 = 0x01c4;
336
- pub const IMAGE_FILE_MACHINE_AM33: u16 = 0x01d3;
337
- /// IBM PowerPC Little-Endian
338
- pub const IMAGE_FILE_MACHINE_POWERPC: u16 = 0x01F0;
339
- pub const IMAGE_FILE_MACHINE_POWERPCFP: u16 = 0x01f1;
340
- /// Intel 64
341
- pub const IMAGE_FILE_MACHINE_IA64: u16 = 0x0200;
342
- /// MIPS
343
- pub const IMAGE_FILE_MACHINE_MIPS16: u16 = 0x0266;
344
- /// ALPHA64
345
- pub const IMAGE_FILE_MACHINE_ALPHA64: u16 = 0x0284;
346
- /// MIPS
347
- pub const IMAGE_FILE_MACHINE_MIPSFPU: u16 = 0x0366;
348
- /// MIPS
349
- pub const IMAGE_FILE_MACHINE_MIPSFPU16: u16 = 0x0466;
350
- pub const IMAGE_FILE_MACHINE_AXP64: u16 = IMAGE_FILE_MACHINE_ALPHA64;
351
- /// Infineon
352
- pub const IMAGE_FILE_MACHINE_TRICORE: u16 = 0x0520;
353
- pub const IMAGE_FILE_MACHINE_CEF: u16 = 0x0CEF;
354
- /// EFI Byte Code
355
- pub const IMAGE_FILE_MACHINE_EBC: u16 = 0x0EBC;
356
- /// AMD64 (K8)
357
- pub const IMAGE_FILE_MACHINE_AMD64: u16 = 0x8664;
358
- /// M32R little-endian
359
- pub const IMAGE_FILE_MACHINE_M32R: u16 = 0x9041;
360
- /// ARM64 Little-Endian
361
- pub const IMAGE_FILE_MACHINE_ARM64: u16 = 0xAA64;
362
- pub const IMAGE_FILE_MACHINE_CEE: u16 = 0xC0EE;
363
- /// RISCV32
364
- pub const IMAGE_FILE_MACHINE_RISCV32: u16 = 0x5032;
365
- /// RISCV64
366
- pub const IMAGE_FILE_MACHINE_RISCV64: u16 = 0x5064;
367
- /// RISCV128
368
- pub const IMAGE_FILE_MACHINE_RISCV128: u16 = 0x5128;
369
-
370
- //
371
- // Directory format.
372
- //
373
-
374
- #[derive(Debug, Clone, Copy)]
375
- #[repr(C)]
376
- pub struct ImageDataDirectory {
377
- pub virtual_address: U32<LE>,
378
- pub size: U32<LE>,
379
- }
380
-
381
- pub const IMAGE_NUMBEROF_DIRECTORY_ENTRIES: usize = 16;
382
-
383
- //
384
- // Optional header format.
385
- //
386
-
387
- #[derive(Debug, Clone, Copy)]
388
- #[repr(C)]
389
- pub struct ImageOptionalHeader32 {
390
- // Standard fields.
391
- pub magic: U16<LE>,
392
- pub major_linker_version: u8,
393
- pub minor_linker_version: u8,
394
- pub size_of_code: U32<LE>,
395
- pub size_of_initialized_data: U32<LE>,
396
- pub size_of_uninitialized_data: U32<LE>,
397
- pub address_of_entry_point: U32<LE>,
398
- pub base_of_code: U32<LE>,
399
- pub base_of_data: U32<LE>,
400
-
401
- // NT additional fields.
402
- pub image_base: U32<LE>,
403
- pub section_alignment: U32<LE>,
404
- pub file_alignment: U32<LE>,
405
- pub major_operating_system_version: U16<LE>,
406
- pub minor_operating_system_version: U16<LE>,
407
- pub major_image_version: U16<LE>,
408
- pub minor_image_version: U16<LE>,
409
- pub major_subsystem_version: U16<LE>,
410
- pub minor_subsystem_version: U16<LE>,
411
- pub win32_version_value: U32<LE>,
412
- pub size_of_image: U32<LE>,
413
- pub size_of_headers: U32<LE>,
414
- pub check_sum: U32<LE>,
415
- pub subsystem: U16<LE>,
416
- pub dll_characteristics: U16<LE>,
417
- pub size_of_stack_reserve: U32<LE>,
418
- pub size_of_stack_commit: U32<LE>,
419
- pub size_of_heap_reserve: U32<LE>,
420
- pub size_of_heap_commit: U32<LE>,
421
- pub loader_flags: U32<LE>,
422
- pub number_of_rva_and_sizes: U32<LE>,
423
- //pub data_directory: [ImageDataDirectory; IMAGE_NUMBEROF_DIRECTORY_ENTRIES],
424
- }
425
-
426
- #[derive(Debug, Clone, Copy)]
427
- #[repr(C)]
428
- pub struct ImageRomOptionalHeader {
429
- pub magic: U16<LE>,
430
- pub major_linker_version: u8,
431
- pub minor_linker_version: u8,
432
- pub size_of_code: U32<LE>,
433
- pub size_of_initialized_data: U32<LE>,
434
- pub size_of_uninitialized_data: U32<LE>,
435
- pub address_of_entry_point: U32<LE>,
436
- pub base_of_code: U32<LE>,
437
- pub base_of_data: U32<LE>,
438
- pub base_of_bss: U32<LE>,
439
- pub gpr_mask: U32<LE>,
440
- pub cpr_mask: [U32<LE>; 4],
441
- pub gp_value: U32<LE>,
442
- }
443
-
444
- #[derive(Debug, Clone, Copy)]
445
- #[repr(C)]
446
- pub struct ImageOptionalHeader64 {
447
- pub magic: U16<LE>,
448
- pub major_linker_version: u8,
449
- pub minor_linker_version: u8,
450
- pub size_of_code: U32<LE>,
451
- pub size_of_initialized_data: U32<LE>,
452
- pub size_of_uninitialized_data: U32<LE>,
453
- pub address_of_entry_point: U32<LE>,
454
- pub base_of_code: U32<LE>,
455
- pub image_base: U64<LE>,
456
- pub section_alignment: U32<LE>,
457
- pub file_alignment: U32<LE>,
458
- pub major_operating_system_version: U16<LE>,
459
- pub minor_operating_system_version: U16<LE>,
460
- pub major_image_version: U16<LE>,
461
- pub minor_image_version: U16<LE>,
462
- pub major_subsystem_version: U16<LE>,
463
- pub minor_subsystem_version: U16<LE>,
464
- pub win32_version_value: U32<LE>,
465
- pub size_of_image: U32<LE>,
466
- pub size_of_headers: U32<LE>,
467
- pub check_sum: U32<LE>,
468
- pub subsystem: U16<LE>,
469
- pub dll_characteristics: U16<LE>,
470
- pub size_of_stack_reserve: U64<LE>,
471
- pub size_of_stack_commit: U64<LE>,
472
- pub size_of_heap_reserve: U64<LE>,
473
- pub size_of_heap_commit: U64<LE>,
474
- pub loader_flags: U32<LE>,
475
- pub number_of_rva_and_sizes: U32<LE>,
476
- //pub data_directory: [ImageDataDirectory; IMAGE_NUMBEROF_DIRECTORY_ENTRIES],
477
- }
478
-
479
- pub const IMAGE_NT_OPTIONAL_HDR32_MAGIC: u16 = 0x10b;
480
- pub const IMAGE_NT_OPTIONAL_HDR64_MAGIC: u16 = 0x20b;
481
- pub const IMAGE_ROM_OPTIONAL_HDR_MAGIC: u16 = 0x107;
482
-
483
- #[derive(Debug, Clone, Copy)]
484
- #[repr(C)]
485
- pub struct ImageNtHeaders64 {
486
- pub signature: U32<LE>,
487
- pub file_header: ImageFileHeader,
488
- pub optional_header: ImageOptionalHeader64,
489
- }
490
-
491
- #[derive(Debug, Clone, Copy)]
492
- #[repr(C)]
493
- pub struct ImageNtHeaders32 {
494
- pub signature: U32<LE>,
495
- pub file_header: ImageFileHeader,
496
- pub optional_header: ImageOptionalHeader32,
497
- }
498
-
499
- #[derive(Debug, Clone, Copy)]
500
- #[repr(C)]
501
- pub struct ImageRomHeaders {
502
- pub file_header: ImageFileHeader,
503
- pub optional_header: ImageRomOptionalHeader,
504
- }
505
-
506
- // Values for `ImageOptionalHeader*::subsystem`.
507
-
508
- /// Unknown subsystem.
509
- pub const IMAGE_SUBSYSTEM_UNKNOWN: u16 = 0;
510
- /// Image doesn't require a subsystem.
511
- pub const IMAGE_SUBSYSTEM_NATIVE: u16 = 1;
512
- /// Image runs in the Windows GUI subsystem.
513
- pub const IMAGE_SUBSYSTEM_WINDOWS_GUI: u16 = 2;
514
- /// Image runs in the Windows character subsystem.
515
- pub const IMAGE_SUBSYSTEM_WINDOWS_CUI: u16 = 3;
516
- /// image runs in the OS/2 character subsystem.
517
- pub const IMAGE_SUBSYSTEM_OS2_CUI: u16 = 5;
518
- /// image runs in the Posix character subsystem.
519
- pub const IMAGE_SUBSYSTEM_POSIX_CUI: u16 = 7;
520
- /// image is a native Win9x driver.
521
- pub const IMAGE_SUBSYSTEM_NATIVE_WINDOWS: u16 = 8;
522
- /// Image runs in the Windows CE subsystem.
523
- pub const IMAGE_SUBSYSTEM_WINDOWS_CE_GUI: u16 = 9;
524
- pub const IMAGE_SUBSYSTEM_EFI_APPLICATION: u16 = 10;
525
- pub const IMAGE_SUBSYSTEM_EFI_BOOT_SERVICE_DRIVER: u16 = 11;
526
- pub const IMAGE_SUBSYSTEM_EFI_RUNTIME_DRIVER: u16 = 12;
527
- pub const IMAGE_SUBSYSTEM_EFI_ROM: u16 = 13;
528
- pub const IMAGE_SUBSYSTEM_XBOX: u16 = 14;
529
- pub const IMAGE_SUBSYSTEM_WINDOWS_BOOT_APPLICATION: u16 = 16;
530
- pub const IMAGE_SUBSYSTEM_XBOX_CODE_CATALOG: u16 = 17;
531
-
532
- // Values for `ImageOptionalHeader*::dll_characteristics`.
533
-
534
- // IMAGE_LIBRARY_PROCESS_INIT 0x0001 // Reserved.
535
- // IMAGE_LIBRARY_PROCESS_TERM 0x0002 // Reserved.
536
- // IMAGE_LIBRARY_THREAD_INIT 0x0004 // Reserved.
537
- // IMAGE_LIBRARY_THREAD_TERM 0x0008 // Reserved.
538
- /// Image can handle a high entropy 64-bit virtual address space.
539
- pub const IMAGE_DLLCHARACTERISTICS_HIGH_ENTROPY_VA: u16 = 0x0020;
540
- /// DLL can move.
541
- pub const IMAGE_DLLCHARACTERISTICS_DYNAMIC_BASE: u16 = 0x0040;
542
- /// Code Integrity Image
543
- pub const IMAGE_DLLCHARACTERISTICS_FORCE_INTEGRITY: u16 = 0x0080;
544
- /// Image is NX compatible
545
- pub const IMAGE_DLLCHARACTERISTICS_NX_COMPAT: u16 = 0x0100;
546
- /// Image understands isolation and doesn't want it
547
- pub const IMAGE_DLLCHARACTERISTICS_NO_ISOLATION: u16 = 0x0200;
548
- /// Image does not use SEH. No SE handler may reside in this image
549
- pub const IMAGE_DLLCHARACTERISTICS_NO_SEH: u16 = 0x0400;
550
- /// Do not bind this image.
551
- pub const IMAGE_DLLCHARACTERISTICS_NO_BIND: u16 = 0x0800;
552
- /// Image should execute in an AppContainer
553
- pub const IMAGE_DLLCHARACTERISTICS_APPCONTAINER: u16 = 0x1000;
554
- /// Driver uses WDM model
555
- pub const IMAGE_DLLCHARACTERISTICS_WDM_DRIVER: u16 = 0x2000;
556
- /// Image supports Control Flow Guard.
557
- pub const IMAGE_DLLCHARACTERISTICS_GUARD_CF: u16 = 0x4000;
558
- pub const IMAGE_DLLCHARACTERISTICS_TERMINAL_SERVER_AWARE: u16 = 0x8000;
559
-
560
- // Indices for `ImageOptionalHeader*::data_directory`.
561
-
562
- /// Export Directory
563
- pub const IMAGE_DIRECTORY_ENTRY_EXPORT: usize = 0;
564
- /// Import Directory
565
- pub const IMAGE_DIRECTORY_ENTRY_IMPORT: usize = 1;
566
- /// Resource Directory
567
- pub const IMAGE_DIRECTORY_ENTRY_RESOURCE: usize = 2;
568
- /// Exception Directory
569
- pub const IMAGE_DIRECTORY_ENTRY_EXCEPTION: usize = 3;
570
- /// Security Directory
571
- pub const IMAGE_DIRECTORY_ENTRY_SECURITY: usize = 4;
572
- /// Base Relocation Table
573
- pub const IMAGE_DIRECTORY_ENTRY_BASERELOC: usize = 5;
574
- /// Debug Directory
575
- pub const IMAGE_DIRECTORY_ENTRY_DEBUG: usize = 6;
576
- // IMAGE_DIRECTORY_ENTRY_COPYRIGHT 7 // (X86 usage)
577
- /// Architecture Specific Data
578
- pub const IMAGE_DIRECTORY_ENTRY_ARCHITECTURE: usize = 7;
579
- /// RVA of GP
580
- pub const IMAGE_DIRECTORY_ENTRY_GLOBALPTR: usize = 8;
581
- /// TLS Directory
582
- pub const IMAGE_DIRECTORY_ENTRY_TLS: usize = 9;
583
- /// Load Configuration Directory
584
- pub const IMAGE_DIRECTORY_ENTRY_LOAD_CONFIG: usize = 10;
585
- /// Bound Import Directory in headers
586
- pub const IMAGE_DIRECTORY_ENTRY_BOUND_IMPORT: usize = 11;
587
- /// Import Address Table
588
- pub const IMAGE_DIRECTORY_ENTRY_IAT: usize = 12;
589
- /// Delay Load Import Descriptors
590
- pub const IMAGE_DIRECTORY_ENTRY_DELAY_IMPORT: usize = 13;
591
- /// COM Runtime descriptor
592
- pub const IMAGE_DIRECTORY_ENTRY_COM_DESCRIPTOR: usize = 14;
593
-
594
- #[derive(Debug, Clone, Copy, PartialEq, Eq)]
595
- #[repr(C)]
596
- pub struct Guid(pub [u8; 16]);
597
-
598
- impl Guid {
599
- #[inline]
600
- pub fn data1(self) -> U32<LE> {
601
- U32::from_bytes(self.0[0..4].try_into().unwrap())
602
- }
603
-
604
- #[inline]
605
- pub fn data2(self) -> U16<LE> {
606
- U16::from_bytes(self.0[4..6].try_into().unwrap())
607
- }
608
-
609
- #[inline]
610
- pub fn data3(self) -> U16<LE> {
611
- U16::from_bytes(self.0[6..8].try_into().unwrap())
612
- }
613
-
614
- #[inline]
615
- pub fn data4(self) -> [u8; 8] {
616
- self.0[8..16].try_into().unwrap()
617
- }
618
- }
619
-
620
- pub use Guid as ClsId;
621
-
622
- /// Non-COFF Object file header
623
- #[derive(Debug, Clone, Copy)]
624
- #[repr(C)]
625
- pub struct AnonObjectHeader {
626
- /// Must be IMAGE_FILE_MACHINE_UNKNOWN
627
- pub sig1: U16<LE>,
628
- /// Must be 0xffff
629
- pub sig2: U16<LE>,
630
- /// >= 1 (implies the ClsId field is present)
631
- pub version: U16<LE>,
632
- pub machine: U16<LE>,
633
- pub time_date_stamp: U32<LE>,
634
- /// Used to invoke CoCreateInstance
635
- pub class_id: ClsId,
636
- /// Size of data that follows the header
637
- pub size_of_data: U32<LE>,
638
- }
639
-
640
- #[derive(Debug, Clone, Copy)]
641
- #[repr(C)]
642
- pub struct AnonObjectHeaderV2 {
643
- /// Must be IMAGE_FILE_MACHINE_UNKNOWN
644
- pub sig1: U16<LE>,
645
- /// Must be 0xffff
646
- pub sig2: U16<LE>,
647
- /// >= 2 (implies the Flags field is present - otherwise V1)
648
- pub version: U16<LE>,
649
- pub machine: U16<LE>,
650
- pub time_date_stamp: U32<LE>,
651
- /// Used to invoke CoCreateInstance
652
- pub class_id: ClsId,
653
- /// Size of data that follows the header
654
- pub size_of_data: U32<LE>,
655
- /// 0x1 -> contains metadata
656
- pub flags: U32<LE>,
657
- /// Size of CLR metadata
658
- pub meta_data_size: U32<LE>,
659
- /// Offset of CLR metadata
660
- pub meta_data_offset: U32<LE>,
661
- }
662
-
663
- /// The required value of `AnonObjectHeaderBigobj::class_id`.
664
- pub const ANON_OBJECT_HEADER_BIGOBJ_CLASS_ID: ClsId = ClsId([
665
- 0xC7, 0xA1, 0xBA, 0xD1, 0xEE, 0xBA, 0xA9, 0x4B, 0xAF, 0x20, 0xFA, 0xF6, 0x6A, 0xA4, 0xDC, 0xB8,
666
- ]);
667
-
668
- #[derive(Debug, Clone, Copy)]
669
- #[repr(C)]
670
- pub struct AnonObjectHeaderBigobj {
671
- /* same as ANON_OBJECT_HEADER_V2 */
672
- /// Must be IMAGE_FILE_MACHINE_UNKNOWN
673
- pub sig1: U16<LE>,
674
- /// Must be 0xffff
675
- pub sig2: U16<LE>,
676
- /// >= 2 (implies the Flags field is present)
677
- pub version: U16<LE>,
678
- /// Actual machine - IMAGE_FILE_MACHINE_xxx
679
- pub machine: U16<LE>,
680
- pub time_date_stamp: U32<LE>,
681
- /// Must be `ANON_OBJECT_HEADER_BIGOBJ_CLASS_ID`.
682
- pub class_id: ClsId,
683
- /// Size of data that follows the header
684
- pub size_of_data: U32<LE>,
685
- /// 0x1 -> contains metadata
686
- pub flags: U32<LE>,
687
- /// Size of CLR metadata
688
- pub meta_data_size: U32<LE>,
689
- /// Offset of CLR metadata
690
- pub meta_data_offset: U32<LE>,
691
-
692
- /* bigobj specifics */
693
- /// extended from WORD
694
- pub number_of_sections: U32<LE>,
695
- pub pointer_to_symbol_table: U32<LE>,
696
- pub number_of_symbols: U32<LE>,
697
- }
698
-
699
- pub const IMAGE_SIZEOF_SHORT_NAME: usize = 8;
700
-
701
- //
702
- // Section header format.
703
- //
704
-
705
- #[derive(Debug, Default, Clone, Copy)]
706
- #[repr(C)]
707
- pub struct ImageSectionHeader {
708
- pub name: [u8; IMAGE_SIZEOF_SHORT_NAME],
709
- pub virtual_size: U32<LE>,
710
- pub virtual_address: U32<LE>,
711
- pub size_of_raw_data: U32<LE>,
712
- pub pointer_to_raw_data: U32<LE>,
713
- pub pointer_to_relocations: U32<LE>,
714
- pub pointer_to_linenumbers: U32<LE>,
715
- pub number_of_relocations: U16<LE>,
716
- pub number_of_linenumbers: U16<LE>,
717
- pub characteristics: U32<LE>,
718
- }
719
-
720
- pub const IMAGE_SIZEOF_SECTION_HEADER: usize = 40;
721
-
722
- // Values for `ImageSectionHeader::characteristics`.
723
-
724
- // IMAGE_SCN_TYPE_REG 0x00000000 // Reserved.
725
- // IMAGE_SCN_TYPE_DSECT 0x00000001 // Reserved.
726
- // IMAGE_SCN_TYPE_NOLOAD 0x00000002 // Reserved.
727
- // IMAGE_SCN_TYPE_GROUP 0x00000004 // Reserved.
728
- /// Reserved.
729
- pub const IMAGE_SCN_TYPE_NO_PAD: u32 = 0x0000_0008;
730
- // IMAGE_SCN_TYPE_COPY 0x00000010 // Reserved.
731
-
732
- /// Section contains code.
733
- pub const IMAGE_SCN_CNT_CODE: u32 = 0x0000_0020;
734
- /// Section contains initialized data.
735
- pub const IMAGE_SCN_CNT_INITIALIZED_DATA: u32 = 0x0000_0040;
736
- /// Section contains uninitialized data.
737
- pub const IMAGE_SCN_CNT_UNINITIALIZED_DATA: u32 = 0x0000_0080;
738
-
739
- /// Reserved.
740
- pub const IMAGE_SCN_LNK_OTHER: u32 = 0x0000_0100;
741
- /// Section contains comments or some other type of information.
742
- pub const IMAGE_SCN_LNK_INFO: u32 = 0x0000_0200;
743
- // IMAGE_SCN_TYPE_OVER 0x00000400 // Reserved.
744
- /// Section contents will not become part of image.
745
- pub const IMAGE_SCN_LNK_REMOVE: u32 = 0x0000_0800;
746
- /// Section contents comdat.
747
- pub const IMAGE_SCN_LNK_COMDAT: u32 = 0x0000_1000;
748
- // 0x00002000 // Reserved.
749
- // IMAGE_SCN_MEM_PROTECTED - Obsolete 0x00004000
750
- /// Reset speculative exceptions handling bits in the TLB entries for this section.
751
- pub const IMAGE_SCN_NO_DEFER_SPEC_EXC: u32 = 0x0000_4000;
752
- /// Section content can be accessed relative to GP
753
- pub const IMAGE_SCN_GPREL: u32 = 0x0000_8000;
754
- pub const IMAGE_SCN_MEM_FARDATA: u32 = 0x0000_8000;
755
- // IMAGE_SCN_MEM_SYSHEAP - Obsolete 0x00010000
756
- pub const IMAGE_SCN_MEM_PURGEABLE: u32 = 0x0002_0000;
757
- pub const IMAGE_SCN_MEM_16BIT: u32 = 0x0002_0000;
758
- pub const IMAGE_SCN_MEM_LOCKED: u32 = 0x0004_0000;
759
- pub const IMAGE_SCN_MEM_PRELOAD: u32 = 0x0008_0000;
760
-
761
- pub const IMAGE_SCN_ALIGN_1BYTES: u32 = 0x0010_0000;
762
- pub const IMAGE_SCN_ALIGN_2BYTES: u32 = 0x0020_0000;
763
- pub const IMAGE_SCN_ALIGN_4BYTES: u32 = 0x0030_0000;
764
- pub const IMAGE_SCN_ALIGN_8BYTES: u32 = 0x0040_0000;
765
- /// Default alignment if no others are specified.
766
- pub const IMAGE_SCN_ALIGN_16BYTES: u32 = 0x0050_0000;
767
- pub const IMAGE_SCN_ALIGN_32BYTES: u32 = 0x0060_0000;
768
- pub const IMAGE_SCN_ALIGN_64BYTES: u32 = 0x0070_0000;
769
- pub const IMAGE_SCN_ALIGN_128BYTES: u32 = 0x0080_0000;
770
- pub const IMAGE_SCN_ALIGN_256BYTES: u32 = 0x0090_0000;
771
- pub const IMAGE_SCN_ALIGN_512BYTES: u32 = 0x00A0_0000;
772
- pub const IMAGE_SCN_ALIGN_1024BYTES: u32 = 0x00B0_0000;
773
- pub const IMAGE_SCN_ALIGN_2048BYTES: u32 = 0x00C0_0000;
774
- pub const IMAGE_SCN_ALIGN_4096BYTES: u32 = 0x00D0_0000;
775
- pub const IMAGE_SCN_ALIGN_8192BYTES: u32 = 0x00E0_0000;
776
- // Unused 0x00F0_0000
777
- pub const IMAGE_SCN_ALIGN_MASK: u32 = 0x00F0_0000;
778
-
779
- /// Section contains extended relocations.
780
- pub const IMAGE_SCN_LNK_NRELOC_OVFL: u32 = 0x0100_0000;
781
- /// Section can be discarded.
782
- pub const IMAGE_SCN_MEM_DISCARDABLE: u32 = 0x0200_0000;
783
- /// Section is not cacheable.
784
- pub const IMAGE_SCN_MEM_NOT_CACHED: u32 = 0x0400_0000;
785
- /// Section is not pageable.
786
- pub const IMAGE_SCN_MEM_NOT_PAGED: u32 = 0x0800_0000;
787
- /// Section is shareable.
788
- pub const IMAGE_SCN_MEM_SHARED: u32 = 0x1000_0000;
789
- /// Section is executable.
790
- pub const IMAGE_SCN_MEM_EXECUTE: u32 = 0x2000_0000;
791
- /// Section is readable.
792
- pub const IMAGE_SCN_MEM_READ: u32 = 0x4000_0000;
793
- /// Section is writeable.
794
- pub const IMAGE_SCN_MEM_WRITE: u32 = 0x8000_0000;
795
-
796
- //
797
- // TLS Characteristic Flags
798
- //
799
- /// Tls index is scaled
800
- pub const IMAGE_SCN_SCALE_INDEX: u32 = 0x0000_0001;
801
-
802
- //
803
- // Symbol format.
804
- //
805
-
806
- // This struct has alignment 1.
807
- #[derive(Debug, Clone, Copy)]
808
- #[repr(C)]
809
- pub struct ImageSymbol {
810
- /// If first 4 bytes are 0, then second 4 bytes are offset into string table.
811
- pub name: [u8; 8],
812
- pub value: U32Bytes<LE>,
813
- pub section_number: U16Bytes<LE>,
814
- pub typ: U16Bytes<LE>,
815
- pub storage_class: u8,
816
- pub number_of_aux_symbols: u8,
817
- }
818
-
819
- pub const IMAGE_SIZEOF_SYMBOL: usize = 18;
820
-
821
- #[derive(Debug, Clone, Copy)]
822
- #[repr(C)]
823
- pub struct ImageSymbolBytes(pub [u8; IMAGE_SIZEOF_SYMBOL]);
824
-
825
- // This struct has alignment 1.
826
- #[derive(Debug, Clone, Copy)]
827
- #[repr(C)]
828
- pub struct ImageSymbolEx {
829
- /// If first 4 bytes are 0, then second 4 bytes are offset into string table.
830
- pub name: [u8; 8],
831
- pub value: U32Bytes<LE>,
832
- pub section_number: I32Bytes<LE>,
833
- pub typ: U16Bytes<LE>,
834
- pub storage_class: u8,
835
- pub number_of_aux_symbols: u8,
836
- }
837
-
838
- pub const IMAGE_SIZEOF_SYMBOL_EX: usize = 20;
839
-
840
- #[derive(Debug, Clone, Copy)]
841
- #[repr(C)]
842
- pub struct ImageSymbolExBytes(pub [u8; IMAGE_SIZEOF_SYMBOL_EX]);
843
-
844
- // Values for `ImageSymbol::section_number`.
845
- //
846
- // Symbols have a section number of the section in which they are
847
- // defined. Otherwise, section numbers have the following meanings:
848
-
849
- /// Symbol is undefined or is common.
850
- pub const IMAGE_SYM_UNDEFINED: i32 = 0;
851
- /// Symbol is an absolute value.
852
- pub const IMAGE_SYM_ABSOLUTE: i32 = -1;
853
- /// Symbol is a special debug item.
854
- pub const IMAGE_SYM_DEBUG: i32 = -2;
855
- /// Values 0xFF00-0xFFFF are special
856
- pub const IMAGE_SYM_SECTION_MAX: u16 = 0xFEFF;
857
- pub const IMAGE_SYM_SECTION_MAX_EX: u32 = 0x7fff_ffff;
858
-
859
- // Values for `ImageSymbol::typ` (basic component).
860
-
861
- /// no type.
862
- pub const IMAGE_SYM_TYPE_NULL: u16 = 0x0000;
863
- pub const IMAGE_SYM_TYPE_VOID: u16 = 0x0001;
864
- /// type character.
865
- pub const IMAGE_SYM_TYPE_CHAR: u16 = 0x0002;
866
- /// type short integer.
867
- pub const IMAGE_SYM_TYPE_SHORT: u16 = 0x0003;
868
- pub const IMAGE_SYM_TYPE_INT: u16 = 0x0004;
869
- pub const IMAGE_SYM_TYPE_LONG: u16 = 0x0005;
870
- pub const IMAGE_SYM_TYPE_FLOAT: u16 = 0x0006;
871
- pub const IMAGE_SYM_TYPE_DOUBLE: u16 = 0x0007;
872
- pub const IMAGE_SYM_TYPE_STRUCT: u16 = 0x0008;
873
- pub const IMAGE_SYM_TYPE_UNION: u16 = 0x0009;
874
- /// enumeration.
875
- pub const IMAGE_SYM_TYPE_ENUM: u16 = 0x000A;
876
- /// member of enumeration.
877
- pub const IMAGE_SYM_TYPE_MOE: u16 = 0x000B;
878
- pub const IMAGE_SYM_TYPE_BYTE: u16 = 0x000C;
879
- pub const IMAGE_SYM_TYPE_WORD: u16 = 0x000D;
880
- pub const IMAGE_SYM_TYPE_UINT: u16 = 0x000E;
881
- pub const IMAGE_SYM_TYPE_DWORD: u16 = 0x000F;
882
- pub const IMAGE_SYM_TYPE_PCODE: u16 = 0x8000;
883
-
884
- // Values for `ImageSymbol::typ` (derived component).
885
-
886
- /// no derived type.
887
- pub const IMAGE_SYM_DTYPE_NULL: u16 = 0;
888
- /// pointer.
889
- pub const IMAGE_SYM_DTYPE_POINTER: u16 = 1;
890
- /// function.
891
- pub const IMAGE_SYM_DTYPE_FUNCTION: u16 = 2;
892
- /// array.
893
- pub const IMAGE_SYM_DTYPE_ARRAY: u16 = 3;
894
-
895
- // Values for `ImageSymbol::storage_class`.
896
- pub const IMAGE_SYM_CLASS_END_OF_FUNCTION: u8 = 0xff;
897
- pub const IMAGE_SYM_CLASS_NULL: u8 = 0x00;
898
- pub const IMAGE_SYM_CLASS_AUTOMATIC: u8 = 0x01;
899
- pub const IMAGE_SYM_CLASS_EXTERNAL: u8 = 0x02;
900
- pub const IMAGE_SYM_CLASS_STATIC: u8 = 0x03;
901
- pub const IMAGE_SYM_CLASS_REGISTER: u8 = 0x04;
902
- pub const IMAGE_SYM_CLASS_EXTERNAL_DEF: u8 = 0x05;
903
- pub const IMAGE_SYM_CLASS_LABEL: u8 = 0x06;
904
- pub const IMAGE_SYM_CLASS_UNDEFINED_LABEL: u8 = 0x07;
905
- pub const IMAGE_SYM_CLASS_MEMBER_OF_STRUCT: u8 = 0x08;
906
- pub const IMAGE_SYM_CLASS_ARGUMENT: u8 = 0x09;
907
- pub const IMAGE_SYM_CLASS_STRUCT_TAG: u8 = 0x0A;
908
- pub const IMAGE_SYM_CLASS_MEMBER_OF_UNION: u8 = 0x0B;
909
- pub const IMAGE_SYM_CLASS_UNION_TAG: u8 = 0x0C;
910
- pub const IMAGE_SYM_CLASS_TYPE_DEFINITION: u8 = 0x0D;
911
- pub const IMAGE_SYM_CLASS_UNDEFINED_STATIC: u8 = 0x0E;
912
- pub const IMAGE_SYM_CLASS_ENUM_TAG: u8 = 0x0F;
913
- pub const IMAGE_SYM_CLASS_MEMBER_OF_ENUM: u8 = 0x10;
914
- pub const IMAGE_SYM_CLASS_REGISTER_PARAM: u8 = 0x11;
915
- pub const IMAGE_SYM_CLASS_BIT_FIELD: u8 = 0x12;
916
-
917
- pub const IMAGE_SYM_CLASS_FAR_EXTERNAL: u8 = 0x44;
918
-
919
- pub const IMAGE_SYM_CLASS_BLOCK: u8 = 0x64;
920
- pub const IMAGE_SYM_CLASS_FUNCTION: u8 = 0x65;
921
- pub const IMAGE_SYM_CLASS_END_OF_STRUCT: u8 = 0x66;
922
- pub const IMAGE_SYM_CLASS_FILE: u8 = 0x67;
923
- // new
924
- pub const IMAGE_SYM_CLASS_SECTION: u8 = 0x68;
925
- pub const IMAGE_SYM_CLASS_WEAK_EXTERNAL: u8 = 0x69;
926
-
927
- pub const IMAGE_SYM_CLASS_CLR_TOKEN: u8 = 0x6B;
928
-
929
- // type packing constants
930
-
931
- pub const N_BTMASK: u16 = 0x000F;
932
- pub const N_TMASK: u16 = 0x0030;
933
- pub const N_TMASK1: u16 = 0x00C0;
934
- pub const N_TMASK2: u16 = 0x00F0;
935
- pub const N_BTSHFT: usize = 4;
936
- pub const N_TSHIFT: usize = 2;
937
-
938
- pub const IMAGE_SYM_DTYPE_SHIFT: usize = N_BTSHFT;
939
-
940
- //
941
- // Auxiliary entry format.
942
- //
943
-
944
- // Used for both ImageSymbol and ImageSymbolEx (with padding).
945
- // This struct has alignment 1.
946
- #[derive(Debug, Clone, Copy)]
947
- #[repr(C)]
948
- pub struct ImageAuxSymbolTokenDef {
949
- /// IMAGE_AUX_SYMBOL_TYPE
950
- pub aux_type: u8,
951
- /// Must be 0
952
- pub reserved1: u8,
953
- pub symbol_table_index: U32Bytes<LE>,
954
- /// Must be 0
955
- pub reserved2: [u8; 12],
956
- }
957
-
958
- pub const IMAGE_AUX_SYMBOL_TYPE_TOKEN_DEF: u16 = 1;
959
-
960
- /// Auxiliary symbol format 1: function definitions.
961
- // This struct has alignment 1.
962
- #[derive(Debug, Clone, Copy)]
963
- #[repr(C)]
964
- pub struct ImageAuxSymbolFunction {
965
- pub tag_index: U32Bytes<LE>,
966
- pub total_size: U32Bytes<LE>,
967
- pub pointer_to_linenumber: U32Bytes<LE>,
968
- pub pointer_to_next_function: U32Bytes<LE>,
969
- pub unused: [u8; 2],
970
- }
971
-
972
- /// Auxiliary symbol format 2: .bf and .ef symbols.
973
- // This struct has alignment 1.
974
- #[derive(Debug, Clone, Copy)]
975
- #[repr(C)]
976
- pub struct ImageAuxSymbolFunctionBeginEnd {
977
- pub unused1: [u8; 4],
978
- /// declaration line number
979
- pub linenumber: U16Bytes<LE>,
980
- pub unused2: [u8; 6],
981
- pub pointer_to_next_function: U32Bytes<LE>,
982
- pub unused3: [u8; 2],
983
- }
984
-
985
- /// Auxiliary symbol format 3: weak externals.
986
- ///
987
- /// Used for both `ImageSymbol` and `ImageSymbolEx` (both with padding).
988
- // This struct has alignment 1.
989
- #[derive(Debug, Clone, Copy)]
990
- #[repr(C)]
991
- pub struct ImageAuxSymbolWeak {
992
- /// the weak extern default symbol index
993
- pub weak_default_sym_index: U32Bytes<LE>,
994
- pub weak_search_type: U32Bytes<LE>,
995
- }
996
-
997
- /// Auxiliary symbol format 5: sections.
998
- ///
999
- /// Used for both `ImageSymbol` and `ImageSymbolEx` (with padding).
1000
- // This struct has alignment 1.
1001
- #[derive(Debug, Clone, Copy)]
1002
- #[repr(C)]
1003
- pub struct ImageAuxSymbolSection {
1004
- /// section length
1005
- pub length: U32Bytes<LE>,
1006
- /// number of relocation entries
1007
- pub number_of_relocations: U16Bytes<LE>,
1008
- /// number of line numbers
1009
- pub number_of_linenumbers: U16Bytes<LE>,
1010
- /// checksum for communal
1011
- pub check_sum: U32Bytes<LE>,
1012
- /// section number to associate with
1013
- pub number: U16Bytes<LE>,
1014
- /// communal selection type
1015
- pub selection: u8,
1016
- pub reserved: u8,
1017
- /// high bits of the section number
1018
- pub high_number: U16Bytes<LE>,
1019
- }
1020
-
1021
- // Used for both ImageSymbol and ImageSymbolEx (both with padding).
1022
- // This struct has alignment 1.
1023
- #[derive(Debug, Clone, Copy)]
1024
- #[repr(C)]
1025
- pub struct ImageAuxSymbolCrc {
1026
- pub crc: U32Bytes<LE>,
1027
- }
1028
-
1029
- //
1030
- // Communal selection types.
1031
- //
1032
-
1033
- pub const IMAGE_COMDAT_SELECT_NODUPLICATES: u8 = 1;
1034
- pub const IMAGE_COMDAT_SELECT_ANY: u8 = 2;
1035
- pub const IMAGE_COMDAT_SELECT_SAME_SIZE: u8 = 3;
1036
- pub const IMAGE_COMDAT_SELECT_EXACT_MATCH: u8 = 4;
1037
- pub const IMAGE_COMDAT_SELECT_ASSOCIATIVE: u8 = 5;
1038
- pub const IMAGE_COMDAT_SELECT_LARGEST: u8 = 6;
1039
- pub const IMAGE_COMDAT_SELECT_NEWEST: u8 = 7;
1040
-
1041
- pub const IMAGE_WEAK_EXTERN_SEARCH_NOLIBRARY: u16 = 1;
1042
- pub const IMAGE_WEAK_EXTERN_SEARCH_LIBRARY: u16 = 2;
1043
- pub const IMAGE_WEAK_EXTERN_SEARCH_ALIAS: u16 = 3;
1044
- pub const IMAGE_WEAK_EXTERN_ANTI_DEPENDENCY: u16 = 4;
1045
-
1046
- //
1047
- // Relocation format.
1048
- //
1049
-
1050
- // This struct has alignment 1.
1051
- #[derive(Debug, Clone, Copy)]
1052
- #[repr(C)]
1053
- pub struct ImageRelocation {
1054
- /// Also `RelocCount` when IMAGE_SCN_LNK_NRELOC_OVFL is set
1055
- pub virtual_address: U32Bytes<LE>,
1056
- pub symbol_table_index: U32Bytes<LE>,
1057
- pub typ: U16Bytes<LE>,
1058
- }
1059
-
1060
- //
1061
- // I386 relocation types.
1062
- //
1063
- /// Reference is absolute, no relocation is necessary
1064
- pub const IMAGE_REL_I386_ABSOLUTE: u16 = 0x0000;
1065
- /// Direct 16-bit reference to the symbols virtual address
1066
- pub const IMAGE_REL_I386_DIR16: u16 = 0x0001;
1067
- /// PC-relative 16-bit reference to the symbols virtual address
1068
- pub const IMAGE_REL_I386_REL16: u16 = 0x0002;
1069
- /// Direct 32-bit reference to the symbols virtual address
1070
- pub const IMAGE_REL_I386_DIR32: u16 = 0x0006;
1071
- /// Direct 32-bit reference to the symbols virtual address, base not included
1072
- pub const IMAGE_REL_I386_DIR32NB: u16 = 0x0007;
1073
- /// Direct 16-bit reference to the segment-selector bits of a 32-bit virtual address
1074
- pub const IMAGE_REL_I386_SEG12: u16 = 0x0009;
1075
- pub const IMAGE_REL_I386_SECTION: u16 = 0x000A;
1076
- pub const IMAGE_REL_I386_SECREL: u16 = 0x000B;
1077
- /// clr token
1078
- pub const IMAGE_REL_I386_TOKEN: u16 = 0x000C;
1079
- /// 7 bit offset from base of section containing target
1080
- pub const IMAGE_REL_I386_SECREL7: u16 = 0x000D;
1081
- /// PC-relative 32-bit reference to the symbols virtual address
1082
- pub const IMAGE_REL_I386_REL32: u16 = 0x0014;
1083
-
1084
- //
1085
- // MIPS relocation types.
1086
- //
1087
- /// Reference is absolute, no relocation is necessary
1088
- pub const IMAGE_REL_MIPS_ABSOLUTE: u16 = 0x0000;
1089
- pub const IMAGE_REL_MIPS_REFHALF: u16 = 0x0001;
1090
- pub const IMAGE_REL_MIPS_REFWORD: u16 = 0x0002;
1091
- pub const IMAGE_REL_MIPS_JMPADDR: u16 = 0x0003;
1092
- pub const IMAGE_REL_MIPS_REFHI: u16 = 0x0004;
1093
- pub const IMAGE_REL_MIPS_REFLO: u16 = 0x0005;
1094
- pub const IMAGE_REL_MIPS_GPREL: u16 = 0x0006;
1095
- pub const IMAGE_REL_MIPS_LITERAL: u16 = 0x0007;
1096
- pub const IMAGE_REL_MIPS_SECTION: u16 = 0x000A;
1097
- pub const IMAGE_REL_MIPS_SECREL: u16 = 0x000B;
1098
- /// Low 16-bit section relative reference (used for >32k TLS)
1099
- pub const IMAGE_REL_MIPS_SECRELLO: u16 = 0x000C;
1100
- /// High 16-bit section relative reference (used for >32k TLS)
1101
- pub const IMAGE_REL_MIPS_SECRELHI: u16 = 0x000D;
1102
- /// clr token
1103
- pub const IMAGE_REL_MIPS_TOKEN: u16 = 0x000E;
1104
- pub const IMAGE_REL_MIPS_JMPADDR16: u16 = 0x0010;
1105
- pub const IMAGE_REL_MIPS_REFWORDNB: u16 = 0x0022;
1106
- pub const IMAGE_REL_MIPS_PAIR: u16 = 0x0025;
1107
-
1108
- //
1109
- // Alpha Relocation types.
1110
- //
1111
- pub const IMAGE_REL_ALPHA_ABSOLUTE: u16 = 0x0000;
1112
- pub const IMAGE_REL_ALPHA_REFLONG: u16 = 0x0001;
1113
- pub const IMAGE_REL_ALPHA_REFQUAD: u16 = 0x0002;
1114
- pub const IMAGE_REL_ALPHA_GPREL32: u16 = 0x0003;
1115
- pub const IMAGE_REL_ALPHA_LITERAL: u16 = 0x0004;
1116
- pub const IMAGE_REL_ALPHA_LITUSE: u16 = 0x0005;
1117
- pub const IMAGE_REL_ALPHA_GPDISP: u16 = 0x0006;
1118
- pub const IMAGE_REL_ALPHA_BRADDR: u16 = 0x0007;
1119
- pub const IMAGE_REL_ALPHA_HINT: u16 = 0x0008;
1120
- pub const IMAGE_REL_ALPHA_INLINE_REFLONG: u16 = 0x0009;
1121
- pub const IMAGE_REL_ALPHA_REFHI: u16 = 0x000A;
1122
- pub const IMAGE_REL_ALPHA_REFLO: u16 = 0x000B;
1123
- pub const IMAGE_REL_ALPHA_PAIR: u16 = 0x000C;
1124
- pub const IMAGE_REL_ALPHA_MATCH: u16 = 0x000D;
1125
- pub const IMAGE_REL_ALPHA_SECTION: u16 = 0x000E;
1126
- pub const IMAGE_REL_ALPHA_SECREL: u16 = 0x000F;
1127
- pub const IMAGE_REL_ALPHA_REFLONGNB: u16 = 0x0010;
1128
- /// Low 16-bit section relative reference
1129
- pub const IMAGE_REL_ALPHA_SECRELLO: u16 = 0x0011;
1130
- /// High 16-bit section relative reference
1131
- pub const IMAGE_REL_ALPHA_SECRELHI: u16 = 0x0012;
1132
- /// High 16 bits of 48 bit reference
1133
- pub const IMAGE_REL_ALPHA_REFQ3: u16 = 0x0013;
1134
- /// Middle 16 bits of 48 bit reference
1135
- pub const IMAGE_REL_ALPHA_REFQ2: u16 = 0x0014;
1136
- /// Low 16 bits of 48 bit reference
1137
- pub const IMAGE_REL_ALPHA_REFQ1: u16 = 0x0015;
1138
- /// Low 16-bit GP relative reference
1139
- pub const IMAGE_REL_ALPHA_GPRELLO: u16 = 0x0016;
1140
- /// High 16-bit GP relative reference
1141
- pub const IMAGE_REL_ALPHA_GPRELHI: u16 = 0x0017;
1142
-
1143
- //
1144
- // IBM PowerPC relocation types.
1145
- //
1146
- /// NOP
1147
- pub const IMAGE_REL_PPC_ABSOLUTE: u16 = 0x0000;
1148
- /// 64-bit address
1149
- pub const IMAGE_REL_PPC_ADDR64: u16 = 0x0001;
1150
- /// 32-bit address
1151
- pub const IMAGE_REL_PPC_ADDR32: u16 = 0x0002;
1152
- /// 26-bit address, shifted left 2 (branch absolute)
1153
- pub const IMAGE_REL_PPC_ADDR24: u16 = 0x0003;
1154
- /// 16-bit address
1155
- pub const IMAGE_REL_PPC_ADDR16: u16 = 0x0004;
1156
- /// 16-bit address, shifted left 2 (load doubleword)
1157
- pub const IMAGE_REL_PPC_ADDR14: u16 = 0x0005;
1158
- /// 26-bit PC-relative offset, shifted left 2 (branch relative)
1159
- pub const IMAGE_REL_PPC_REL24: u16 = 0x0006;
1160
- /// 16-bit PC-relative offset, shifted left 2 (br cond relative)
1161
- pub const IMAGE_REL_PPC_REL14: u16 = 0x0007;
1162
- /// 16-bit offset from TOC base
1163
- pub const IMAGE_REL_PPC_TOCREL16: u16 = 0x0008;
1164
- /// 16-bit offset from TOC base, shifted left 2 (load doubleword)
1165
- pub const IMAGE_REL_PPC_TOCREL14: u16 = 0x0009;
1166
-
1167
- /// 32-bit addr w/o image base
1168
- pub const IMAGE_REL_PPC_ADDR32NB: u16 = 0x000A;
1169
- /// va of containing section (as in an image sectionhdr)
1170
- pub const IMAGE_REL_PPC_SECREL: u16 = 0x000B;
1171
- /// sectionheader number
1172
- pub const IMAGE_REL_PPC_SECTION: u16 = 0x000C;
1173
- /// substitute TOC restore instruction iff symbol is glue code
1174
- pub const IMAGE_REL_PPC_IFGLUE: u16 = 0x000D;
1175
- /// symbol is glue code; virtual address is TOC restore instruction
1176
- pub const IMAGE_REL_PPC_IMGLUE: u16 = 0x000E;
1177
- /// va of containing section (limited to 16 bits)
1178
- pub const IMAGE_REL_PPC_SECREL16: u16 = 0x000F;
1179
- pub const IMAGE_REL_PPC_REFHI: u16 = 0x0010;
1180
- pub const IMAGE_REL_PPC_REFLO: u16 = 0x0011;
1181
- pub const IMAGE_REL_PPC_PAIR: u16 = 0x0012;
1182
- /// Low 16-bit section relative reference (used for >32k TLS)
1183
- pub const IMAGE_REL_PPC_SECRELLO: u16 = 0x0013;
1184
- /// High 16-bit section relative reference (used for >32k TLS)
1185
- pub const IMAGE_REL_PPC_SECRELHI: u16 = 0x0014;
1186
- pub const IMAGE_REL_PPC_GPREL: u16 = 0x0015;
1187
- /// clr token
1188
- pub const IMAGE_REL_PPC_TOKEN: u16 = 0x0016;
1189
-
1190
- /// mask to isolate above values in IMAGE_RELOCATION.Type
1191
- pub const IMAGE_REL_PPC_TYPEMASK: u16 = 0x00FF;
1192
-
1193
- // Flag bits in `ImageRelocation::typ`.
1194
-
1195
- /// subtract reloc value rather than adding it
1196
- pub const IMAGE_REL_PPC_NEG: u16 = 0x0100;
1197
- /// fix branch prediction bit to predict branch taken
1198
- pub const IMAGE_REL_PPC_BRTAKEN: u16 = 0x0200;
1199
- /// fix branch prediction bit to predict branch not taken
1200
- pub const IMAGE_REL_PPC_BRNTAKEN: u16 = 0x0400;
1201
- /// toc slot defined in file (or, data in toc)
1202
- pub const IMAGE_REL_PPC_TOCDEFN: u16 = 0x0800;
1203
-
1204
- //
1205
- // Hitachi SH3 relocation types.
1206
- //
1207
- /// No relocation
1208
- pub const IMAGE_REL_SH3_ABSOLUTE: u16 = 0x0000;
1209
- /// 16 bit direct
1210
- pub const IMAGE_REL_SH3_DIRECT16: u16 = 0x0001;
1211
- /// 32 bit direct
1212
- pub const IMAGE_REL_SH3_DIRECT32: u16 = 0x0002;
1213
- /// 8 bit direct, -128..255
1214
- pub const IMAGE_REL_SH3_DIRECT8: u16 = 0x0003;
1215
- /// 8 bit direct .W (0 ext.)
1216
- pub const IMAGE_REL_SH3_DIRECT8_WORD: u16 = 0x0004;
1217
- /// 8 bit direct .L (0 ext.)
1218
- pub const IMAGE_REL_SH3_DIRECT8_LONG: u16 = 0x0005;
1219
- /// 4 bit direct (0 ext.)
1220
- pub const IMAGE_REL_SH3_DIRECT4: u16 = 0x0006;
1221
- /// 4 bit direct .W (0 ext.)
1222
- pub const IMAGE_REL_SH3_DIRECT4_WORD: u16 = 0x0007;
1223
- /// 4 bit direct .L (0 ext.)
1224
- pub const IMAGE_REL_SH3_DIRECT4_LONG: u16 = 0x0008;
1225
- /// 8 bit PC relative .W
1226
- pub const IMAGE_REL_SH3_PCREL8_WORD: u16 = 0x0009;
1227
- /// 8 bit PC relative .L
1228
- pub const IMAGE_REL_SH3_PCREL8_LONG: u16 = 0x000A;
1229
- /// 12 LSB PC relative .W
1230
- pub const IMAGE_REL_SH3_PCREL12_WORD: u16 = 0x000B;
1231
- /// Start of EXE section
1232
- pub const IMAGE_REL_SH3_STARTOF_SECTION: u16 = 0x000C;
1233
- /// Size of EXE section
1234
- pub const IMAGE_REL_SH3_SIZEOF_SECTION: u16 = 0x000D;
1235
- /// Section table index
1236
- pub const IMAGE_REL_SH3_SECTION: u16 = 0x000E;
1237
- /// Offset within section
1238
- pub const IMAGE_REL_SH3_SECREL: u16 = 0x000F;
1239
- /// 32 bit direct not based
1240
- pub const IMAGE_REL_SH3_DIRECT32_NB: u16 = 0x0010;
1241
- /// GP-relative addressing
1242
- pub const IMAGE_REL_SH3_GPREL4_LONG: u16 = 0x0011;
1243
- /// clr token
1244
- pub const IMAGE_REL_SH3_TOKEN: u16 = 0x0012;
1245
- /// Offset from current instruction in longwords
1246
- /// if not NOMODE, insert the inverse of the low bit at bit 32 to select PTA/PTB
1247
- pub const IMAGE_REL_SHM_PCRELPT: u16 = 0x0013;
1248
- /// Low bits of 32-bit address
1249
- pub const IMAGE_REL_SHM_REFLO: u16 = 0x0014;
1250
- /// High bits of 32-bit address
1251
- pub const IMAGE_REL_SHM_REFHALF: u16 = 0x0015;
1252
- /// Low bits of relative reference
1253
- pub const IMAGE_REL_SHM_RELLO: u16 = 0x0016;
1254
- /// High bits of relative reference
1255
- pub const IMAGE_REL_SHM_RELHALF: u16 = 0x0017;
1256
- /// offset operand for relocation
1257
- pub const IMAGE_REL_SHM_PAIR: u16 = 0x0018;
1258
-
1259
- /// relocation ignores section mode
1260
- pub const IMAGE_REL_SH_NOMODE: u16 = 0x8000;
1261
-
1262
- /// No relocation required
1263
- pub const IMAGE_REL_ARM_ABSOLUTE: u16 = 0x0000;
1264
- /// 32 bit address
1265
- pub const IMAGE_REL_ARM_ADDR32: u16 = 0x0001;
1266
- /// 32 bit address w/o image base
1267
- pub const IMAGE_REL_ARM_ADDR32NB: u16 = 0x0002;
1268
- /// 24 bit offset << 2 & sign ext.
1269
- pub const IMAGE_REL_ARM_BRANCH24: u16 = 0x0003;
1270
- /// Thumb: 2 11 bit offsets
1271
- pub const IMAGE_REL_ARM_BRANCH11: u16 = 0x0004;
1272
- /// clr token
1273
- pub const IMAGE_REL_ARM_TOKEN: u16 = 0x0005;
1274
- /// GP-relative addressing (ARM)
1275
- pub const IMAGE_REL_ARM_GPREL12: u16 = 0x0006;
1276
- /// GP-relative addressing (Thumb)
1277
- pub const IMAGE_REL_ARM_GPREL7: u16 = 0x0007;
1278
- pub const IMAGE_REL_ARM_BLX24: u16 = 0x0008;
1279
- pub const IMAGE_REL_ARM_BLX11: u16 = 0x0009;
1280
- /// 32-bit relative address from byte following reloc
1281
- pub const IMAGE_REL_ARM_REL32: u16 = 0x000A;
1282
- /// Section table index
1283
- pub const IMAGE_REL_ARM_SECTION: u16 = 0x000E;
1284
- /// Offset within section
1285
- pub const IMAGE_REL_ARM_SECREL: u16 = 0x000F;
1286
- /// ARM: MOVW/MOVT
1287
- pub const IMAGE_REL_ARM_MOV32A: u16 = 0x0010;
1288
- /// ARM: MOVW/MOVT (deprecated)
1289
- pub const IMAGE_REL_ARM_MOV32: u16 = 0x0010;
1290
- /// Thumb: MOVW/MOVT
1291
- pub const IMAGE_REL_ARM_MOV32T: u16 = 0x0011;
1292
- /// Thumb: MOVW/MOVT (deprecated)
1293
- pub const IMAGE_REL_THUMB_MOV32: u16 = 0x0011;
1294
- /// Thumb: 32-bit conditional B
1295
- pub const IMAGE_REL_ARM_BRANCH20T: u16 = 0x0012;
1296
- /// Thumb: 32-bit conditional B (deprecated)
1297
- pub const IMAGE_REL_THUMB_BRANCH20: u16 = 0x0012;
1298
- /// Thumb: 32-bit B or BL
1299
- pub const IMAGE_REL_ARM_BRANCH24T: u16 = 0x0014;
1300
- /// Thumb: 32-bit B or BL (deprecated)
1301
- pub const IMAGE_REL_THUMB_BRANCH24: u16 = 0x0014;
1302
- /// Thumb: BLX immediate
1303
- pub const IMAGE_REL_ARM_BLX23T: u16 = 0x0015;
1304
- /// Thumb: BLX immediate (deprecated)
1305
- pub const IMAGE_REL_THUMB_BLX23: u16 = 0x0015;
1306
-
1307
- pub const IMAGE_REL_AM_ABSOLUTE: u16 = 0x0000;
1308
- pub const IMAGE_REL_AM_ADDR32: u16 = 0x0001;
1309
- pub const IMAGE_REL_AM_ADDR32NB: u16 = 0x0002;
1310
- pub const IMAGE_REL_AM_CALL32: u16 = 0x0003;
1311
- pub const IMAGE_REL_AM_FUNCINFO: u16 = 0x0004;
1312
- pub const IMAGE_REL_AM_REL32_1: u16 = 0x0005;
1313
- pub const IMAGE_REL_AM_REL32_2: u16 = 0x0006;
1314
- pub const IMAGE_REL_AM_SECREL: u16 = 0x0007;
1315
- pub const IMAGE_REL_AM_SECTION: u16 = 0x0008;
1316
- pub const IMAGE_REL_AM_TOKEN: u16 = 0x0009;
1317
-
1318
- //
1319
- // ARM64 relocations types.
1320
- //
1321
-
1322
- /// No relocation required
1323
- pub const IMAGE_REL_ARM64_ABSOLUTE: u16 = 0x0000;
1324
- /// 32 bit address. Review! do we need it?
1325
- pub const IMAGE_REL_ARM64_ADDR32: u16 = 0x0001;
1326
- /// 32 bit address w/o image base (RVA: for Data/PData/XData)
1327
- pub const IMAGE_REL_ARM64_ADDR32NB: u16 = 0x0002;
1328
- /// 26 bit offset << 2 & sign ext. for B & BL
1329
- pub const IMAGE_REL_ARM64_BRANCH26: u16 = 0x0003;
1330
- /// ADRP
1331
- pub const IMAGE_REL_ARM64_PAGEBASE_REL21: u16 = 0x0004;
1332
- /// ADR
1333
- pub const IMAGE_REL_ARM64_REL21: u16 = 0x0005;
1334
- /// ADD/ADDS (immediate) with zero shift, for page offset
1335
- pub const IMAGE_REL_ARM64_PAGEOFFSET_12A: u16 = 0x0006;
1336
- /// LDR (indexed, unsigned immediate), for page offset
1337
- pub const IMAGE_REL_ARM64_PAGEOFFSET_12L: u16 = 0x0007;
1338
- /// Offset within section
1339
- pub const IMAGE_REL_ARM64_SECREL: u16 = 0x0008;
1340
- /// ADD/ADDS (immediate) with zero shift, for bit 0:11 of section offset
1341
- pub const IMAGE_REL_ARM64_SECREL_LOW12A: u16 = 0x0009;
1342
- /// ADD/ADDS (immediate) with zero shift, for bit 12:23 of section offset
1343
- pub const IMAGE_REL_ARM64_SECREL_HIGH12A: u16 = 0x000A;
1344
- /// LDR (indexed, unsigned immediate), for bit 0:11 of section offset
1345
- pub const IMAGE_REL_ARM64_SECREL_LOW12L: u16 = 0x000B;
1346
- pub const IMAGE_REL_ARM64_TOKEN: u16 = 0x000C;
1347
- /// Section table index
1348
- pub const IMAGE_REL_ARM64_SECTION: u16 = 0x000D;
1349
- /// 64 bit address
1350
- pub const IMAGE_REL_ARM64_ADDR64: u16 = 0x000E;
1351
- /// 19 bit offset << 2 & sign ext. for conditional B
1352
- pub const IMAGE_REL_ARM64_BRANCH19: u16 = 0x000F;
1353
- /// TBZ/TBNZ
1354
- pub const IMAGE_REL_ARM64_BRANCH14: u16 = 0x0010;
1355
- /// 32-bit relative address from byte following reloc
1356
- pub const IMAGE_REL_ARM64_REL32: u16 = 0x0011;
1357
-
1358
- //
1359
- // x64 relocations
1360
- //
1361
- /// Reference is absolute, no relocation is necessary
1362
- pub const IMAGE_REL_AMD64_ABSOLUTE: u16 = 0x0000;
1363
- /// 64-bit address (VA).
1364
- pub const IMAGE_REL_AMD64_ADDR64: u16 = 0x0001;
1365
- /// 32-bit address (VA).
1366
- pub const IMAGE_REL_AMD64_ADDR32: u16 = 0x0002;
1367
- /// 32-bit address w/o image base (RVA).
1368
- pub const IMAGE_REL_AMD64_ADDR32NB: u16 = 0x0003;
1369
- /// 32-bit relative address from byte following reloc
1370
- pub const IMAGE_REL_AMD64_REL32: u16 = 0x0004;
1371
- /// 32-bit relative address from byte distance 1 from reloc
1372
- pub const IMAGE_REL_AMD64_REL32_1: u16 = 0x0005;
1373
- /// 32-bit relative address from byte distance 2 from reloc
1374
- pub const IMAGE_REL_AMD64_REL32_2: u16 = 0x0006;
1375
- /// 32-bit relative address from byte distance 3 from reloc
1376
- pub const IMAGE_REL_AMD64_REL32_3: u16 = 0x0007;
1377
- /// 32-bit relative address from byte distance 4 from reloc
1378
- pub const IMAGE_REL_AMD64_REL32_4: u16 = 0x0008;
1379
- /// 32-bit relative address from byte distance 5 from reloc
1380
- pub const IMAGE_REL_AMD64_REL32_5: u16 = 0x0009;
1381
- /// Section index
1382
- pub const IMAGE_REL_AMD64_SECTION: u16 = 0x000A;
1383
- /// 32 bit offset from base of section containing target
1384
- pub const IMAGE_REL_AMD64_SECREL: u16 = 0x000B;
1385
- /// 7 bit unsigned offset from base of section containing target
1386
- pub const IMAGE_REL_AMD64_SECREL7: u16 = 0x000C;
1387
- /// 32 bit metadata token
1388
- pub const IMAGE_REL_AMD64_TOKEN: u16 = 0x000D;
1389
- /// 32 bit signed span-dependent value emitted into object
1390
- pub const IMAGE_REL_AMD64_SREL32: u16 = 0x000E;
1391
- pub const IMAGE_REL_AMD64_PAIR: u16 = 0x000F;
1392
- /// 32 bit signed span-dependent value applied at link time
1393
- pub const IMAGE_REL_AMD64_SSPAN32: u16 = 0x0010;
1394
- pub const IMAGE_REL_AMD64_EHANDLER: u16 = 0x0011;
1395
- /// Indirect branch to an import
1396
- pub const IMAGE_REL_AMD64_IMPORT_BR: u16 = 0x0012;
1397
- /// Indirect call to an import
1398
- pub const IMAGE_REL_AMD64_IMPORT_CALL: u16 = 0x0013;
1399
- /// Indirect branch to a CFG check
1400
- pub const IMAGE_REL_AMD64_CFG_BR: u16 = 0x0014;
1401
- /// Indirect branch to a CFG check, with REX.W prefix
1402
- pub const IMAGE_REL_AMD64_CFG_BR_REX: u16 = 0x0015;
1403
- /// Indirect call to a CFG check
1404
- pub const IMAGE_REL_AMD64_CFG_CALL: u16 = 0x0016;
1405
- /// Indirect branch to a target in RAX (no CFG)
1406
- pub const IMAGE_REL_AMD64_INDIR_BR: u16 = 0x0017;
1407
- /// Indirect branch to a target in RAX, with REX.W prefix (no CFG)
1408
- pub const IMAGE_REL_AMD64_INDIR_BR_REX: u16 = 0x0018;
1409
- /// Indirect call to a target in RAX (no CFG)
1410
- pub const IMAGE_REL_AMD64_INDIR_CALL: u16 = 0x0019;
1411
- /// Indirect branch for a switch table using Reg 0 (RAX)
1412
- pub const IMAGE_REL_AMD64_INDIR_BR_SWITCHTABLE_FIRST: u16 = 0x0020;
1413
- /// Indirect branch for a switch table using Reg 15 (R15)
1414
- pub const IMAGE_REL_AMD64_INDIR_BR_SWITCHTABLE_LAST: u16 = 0x002F;
1415
-
1416
- //
1417
- // IA64 relocation types.
1418
- //
1419
- pub const IMAGE_REL_IA64_ABSOLUTE: u16 = 0x0000;
1420
- pub const IMAGE_REL_IA64_IMM14: u16 = 0x0001;
1421
- pub const IMAGE_REL_IA64_IMM22: u16 = 0x0002;
1422
- pub const IMAGE_REL_IA64_IMM64: u16 = 0x0003;
1423
- pub const IMAGE_REL_IA64_DIR32: u16 = 0x0004;
1424
- pub const IMAGE_REL_IA64_DIR64: u16 = 0x0005;
1425
- pub const IMAGE_REL_IA64_PCREL21B: u16 = 0x0006;
1426
- pub const IMAGE_REL_IA64_PCREL21M: u16 = 0x0007;
1427
- pub const IMAGE_REL_IA64_PCREL21F: u16 = 0x0008;
1428
- pub const IMAGE_REL_IA64_GPREL22: u16 = 0x0009;
1429
- pub const IMAGE_REL_IA64_LTOFF22: u16 = 0x000A;
1430
- pub const IMAGE_REL_IA64_SECTION: u16 = 0x000B;
1431
- pub const IMAGE_REL_IA64_SECREL22: u16 = 0x000C;
1432
- pub const IMAGE_REL_IA64_SECREL64I: u16 = 0x000D;
1433
- pub const IMAGE_REL_IA64_SECREL32: u16 = 0x000E;
1434
- //
1435
- pub const IMAGE_REL_IA64_DIR32NB: u16 = 0x0010;
1436
- pub const IMAGE_REL_IA64_SREL14: u16 = 0x0011;
1437
- pub const IMAGE_REL_IA64_SREL22: u16 = 0x0012;
1438
- pub const IMAGE_REL_IA64_SREL32: u16 = 0x0013;
1439
- pub const IMAGE_REL_IA64_UREL32: u16 = 0x0014;
1440
- /// This is always a BRL and never converted
1441
- pub const IMAGE_REL_IA64_PCREL60X: u16 = 0x0015;
1442
- /// If possible, convert to MBB bundle with NOP.B in slot 1
1443
- pub const IMAGE_REL_IA64_PCREL60B: u16 = 0x0016;
1444
- /// If possible, convert to MFB bundle with NOP.F in slot 1
1445
- pub const IMAGE_REL_IA64_PCREL60F: u16 = 0x0017;
1446
- /// If possible, convert to MIB bundle with NOP.I in slot 1
1447
- pub const IMAGE_REL_IA64_PCREL60I: u16 = 0x0018;
1448
- /// If possible, convert to MMB bundle with NOP.M in slot 1
1449
- pub const IMAGE_REL_IA64_PCREL60M: u16 = 0x0019;
1450
- pub const IMAGE_REL_IA64_IMMGPREL64: u16 = 0x001A;
1451
- /// clr token
1452
- pub const IMAGE_REL_IA64_TOKEN: u16 = 0x001B;
1453
- pub const IMAGE_REL_IA64_GPREL32: u16 = 0x001C;
1454
- pub const IMAGE_REL_IA64_ADDEND: u16 = 0x001F;
1455
-
1456
- //
1457
- // CEF relocation types.
1458
- //
1459
- /// Reference is absolute, no relocation is necessary
1460
- pub const IMAGE_REL_CEF_ABSOLUTE: u16 = 0x0000;
1461
- /// 32-bit address (VA).
1462
- pub const IMAGE_REL_CEF_ADDR32: u16 = 0x0001;
1463
- /// 64-bit address (VA).
1464
- pub const IMAGE_REL_CEF_ADDR64: u16 = 0x0002;
1465
- /// 32-bit address w/o image base (RVA).
1466
- pub const IMAGE_REL_CEF_ADDR32NB: u16 = 0x0003;
1467
- /// Section index
1468
- pub const IMAGE_REL_CEF_SECTION: u16 = 0x0004;
1469
- /// 32 bit offset from base of section containing target
1470
- pub const IMAGE_REL_CEF_SECREL: u16 = 0x0005;
1471
- /// 32 bit metadata token
1472
- pub const IMAGE_REL_CEF_TOKEN: u16 = 0x0006;
1473
-
1474
- //
1475
- // clr relocation types.
1476
- //
1477
- /// Reference is absolute, no relocation is necessary
1478
- pub const IMAGE_REL_CEE_ABSOLUTE: u16 = 0x0000;
1479
- /// 32-bit address (VA).
1480
- pub const IMAGE_REL_CEE_ADDR32: u16 = 0x0001;
1481
- /// 64-bit address (VA).
1482
- pub const IMAGE_REL_CEE_ADDR64: u16 = 0x0002;
1483
- /// 32-bit address w/o image base (RVA).
1484
- pub const IMAGE_REL_CEE_ADDR32NB: u16 = 0x0003;
1485
- /// Section index
1486
- pub const IMAGE_REL_CEE_SECTION: u16 = 0x0004;
1487
- /// 32 bit offset from base of section containing target
1488
- pub const IMAGE_REL_CEE_SECREL: u16 = 0x0005;
1489
- /// 32 bit metadata token
1490
- pub const IMAGE_REL_CEE_TOKEN: u16 = 0x0006;
1491
-
1492
- /// No relocation required
1493
- pub const IMAGE_REL_M32R_ABSOLUTE: u16 = 0x0000;
1494
- /// 32 bit address
1495
- pub const IMAGE_REL_M32R_ADDR32: u16 = 0x0001;
1496
- /// 32 bit address w/o image base
1497
- pub const IMAGE_REL_M32R_ADDR32NB: u16 = 0x0002;
1498
- /// 24 bit address
1499
- pub const IMAGE_REL_M32R_ADDR24: u16 = 0x0003;
1500
- /// GP relative addressing
1501
- pub const IMAGE_REL_M32R_GPREL16: u16 = 0x0004;
1502
- /// 24 bit offset << 2 & sign ext.
1503
- pub const IMAGE_REL_M32R_PCREL24: u16 = 0x0005;
1504
- /// 16 bit offset << 2 & sign ext.
1505
- pub const IMAGE_REL_M32R_PCREL16: u16 = 0x0006;
1506
- /// 8 bit offset << 2 & sign ext.
1507
- pub const IMAGE_REL_M32R_PCREL8: u16 = 0x0007;
1508
- /// 16 MSBs
1509
- pub const IMAGE_REL_M32R_REFHALF: u16 = 0x0008;
1510
- /// 16 MSBs; adj for LSB sign ext.
1511
- pub const IMAGE_REL_M32R_REFHI: u16 = 0x0009;
1512
- /// 16 LSBs
1513
- pub const IMAGE_REL_M32R_REFLO: u16 = 0x000A;
1514
- /// Link HI and LO
1515
- pub const IMAGE_REL_M32R_PAIR: u16 = 0x000B;
1516
- /// Section table index
1517
- pub const IMAGE_REL_M32R_SECTION: u16 = 0x000C;
1518
- /// 32 bit section relative reference
1519
- pub const IMAGE_REL_M32R_SECREL32: u16 = 0x000D;
1520
- /// clr token
1521
- pub const IMAGE_REL_M32R_TOKEN: u16 = 0x000E;
1522
-
1523
- /// No relocation required
1524
- pub const IMAGE_REL_EBC_ABSOLUTE: u16 = 0x0000;
1525
- /// 32 bit address w/o image base
1526
- pub const IMAGE_REL_EBC_ADDR32NB: u16 = 0x0001;
1527
- /// 32-bit relative address from byte following reloc
1528
- pub const IMAGE_REL_EBC_REL32: u16 = 0x0002;
1529
- /// Section table index
1530
- pub const IMAGE_REL_EBC_SECTION: u16 = 0x0003;
1531
- /// Offset within section
1532
- pub const IMAGE_REL_EBC_SECREL: u16 = 0x0004;
1533
-
1534
- /*
1535
- // TODO?
1536
- #define EXT_IMM64(Value, Address, Size, InstPos, ValPos) /* Intel-IA64-Filler */ \
1537
- Value |= (((ULONGLONG)((*(Address) >> InstPos) & (((ULONGLONG)1 << Size) - 1))) << ValPos) // Intel-IA64-Filler
1538
-
1539
- #define INS_IMM64(Value, Address, Size, InstPos, ValPos) /* Intel-IA64-Filler */\
1540
- *(PDWORD)Address = (*(PDWORD)Address & ~(((1 << Size) - 1) << InstPos)) | /* Intel-IA64-Filler */\
1541
- ((DWORD)((((ULONGLONG)Value >> ValPos) & (((ULONGLONG)1 << Size) - 1))) << InstPos) // Intel-IA64-Filler
1542
- */
1543
-
1544
- /// Intel-IA64-Filler
1545
- pub const EMARCH_ENC_I17_IMM7B_INST_WORD_X: u16 = 3;
1546
- /// Intel-IA64-Filler
1547
- pub const EMARCH_ENC_I17_IMM7B_SIZE_X: u16 = 7;
1548
- /// Intel-IA64-Filler
1549
- pub const EMARCH_ENC_I17_IMM7B_INST_WORD_POS_X: u16 = 4;
1550
- /// Intel-IA64-Filler
1551
- pub const EMARCH_ENC_I17_IMM7B_VAL_POS_X: u16 = 0;
1552
-
1553
- /// Intel-IA64-Filler
1554
- pub const EMARCH_ENC_I17_IMM9D_INST_WORD_X: u16 = 3;
1555
- /// Intel-IA64-Filler
1556
- pub const EMARCH_ENC_I17_IMM9D_SIZE_X: u16 = 9;
1557
- /// Intel-IA64-Filler
1558
- pub const EMARCH_ENC_I17_IMM9D_INST_WORD_POS_X: u16 = 18;
1559
- /// Intel-IA64-Filler
1560
- pub const EMARCH_ENC_I17_IMM9D_VAL_POS_X: u16 = 7;
1561
-
1562
- /// Intel-IA64-Filler
1563
- pub const EMARCH_ENC_I17_IMM5C_INST_WORD_X: u16 = 3;
1564
- /// Intel-IA64-Filler
1565
- pub const EMARCH_ENC_I17_IMM5C_SIZE_X: u16 = 5;
1566
- /// Intel-IA64-Filler
1567
- pub const EMARCH_ENC_I17_IMM5C_INST_WORD_POS_X: u16 = 13;
1568
- /// Intel-IA64-Filler
1569
- pub const EMARCH_ENC_I17_IMM5C_VAL_POS_X: u16 = 16;
1570
-
1571
- /// Intel-IA64-Filler
1572
- pub const EMARCH_ENC_I17_IC_INST_WORD_X: u16 = 3;
1573
- /// Intel-IA64-Filler
1574
- pub const EMARCH_ENC_I17_IC_SIZE_X: u16 = 1;
1575
- /// Intel-IA64-Filler
1576
- pub const EMARCH_ENC_I17_IC_INST_WORD_POS_X: u16 = 12;
1577
- /// Intel-IA64-Filler
1578
- pub const EMARCH_ENC_I17_IC_VAL_POS_X: u16 = 21;
1579
-
1580
- /// Intel-IA64-Filler
1581
- pub const EMARCH_ENC_I17_IMM41A_INST_WORD_X: u16 = 1;
1582
- /// Intel-IA64-Filler
1583
- pub const EMARCH_ENC_I17_IMM41A_SIZE_X: u16 = 10;
1584
- /// Intel-IA64-Filler
1585
- pub const EMARCH_ENC_I17_IMM41A_INST_WORD_POS_X: u16 = 14;
1586
- /// Intel-IA64-Filler
1587
- pub const EMARCH_ENC_I17_IMM41A_VAL_POS_X: u16 = 22;
1588
-
1589
- /// Intel-IA64-Filler
1590
- pub const EMARCH_ENC_I17_IMM41B_INST_WORD_X: u16 = 1;
1591
- /// Intel-IA64-Filler
1592
- pub const EMARCH_ENC_I17_IMM41B_SIZE_X: u16 = 8;
1593
- /// Intel-IA64-Filler
1594
- pub const EMARCH_ENC_I17_IMM41B_INST_WORD_POS_X: u16 = 24;
1595
- /// Intel-IA64-Filler
1596
- pub const EMARCH_ENC_I17_IMM41B_VAL_POS_X: u16 = 32;
1597
-
1598
- /// Intel-IA64-Filler
1599
- pub const EMARCH_ENC_I17_IMM41C_INST_WORD_X: u16 = 2;
1600
- /// Intel-IA64-Filler
1601
- pub const EMARCH_ENC_I17_IMM41C_SIZE_X: u16 = 23;
1602
- /// Intel-IA64-Filler
1603
- pub const EMARCH_ENC_I17_IMM41C_INST_WORD_POS_X: u16 = 0;
1604
- /// Intel-IA64-Filler
1605
- pub const EMARCH_ENC_I17_IMM41C_VAL_POS_X: u16 = 40;
1606
-
1607
- /// Intel-IA64-Filler
1608
- pub const EMARCH_ENC_I17_SIGN_INST_WORD_X: u16 = 3;
1609
- /// Intel-IA64-Filler
1610
- pub const EMARCH_ENC_I17_SIGN_SIZE_X: u16 = 1;
1611
- /// Intel-IA64-Filler
1612
- pub const EMARCH_ENC_I17_SIGN_INST_WORD_POS_X: u16 = 27;
1613
- /// Intel-IA64-Filler
1614
- pub const EMARCH_ENC_I17_SIGN_VAL_POS_X: u16 = 63;
1615
-
1616
- /// Intel-IA64-Filler
1617
- pub const X3_OPCODE_INST_WORD_X: u16 = 3;
1618
- /// Intel-IA64-Filler
1619
- pub const X3_OPCODE_SIZE_X: u16 = 4;
1620
- /// Intel-IA64-Filler
1621
- pub const X3_OPCODE_INST_WORD_POS_X: u16 = 28;
1622
- /// Intel-IA64-Filler
1623
- pub const X3_OPCODE_SIGN_VAL_POS_X: u16 = 0;
1624
-
1625
- /// Intel-IA64-Filler
1626
- pub const X3_I_INST_WORD_X: u16 = 3;
1627
- /// Intel-IA64-Filler
1628
- pub const X3_I_SIZE_X: u16 = 1;
1629
- /// Intel-IA64-Filler
1630
- pub const X3_I_INST_WORD_POS_X: u16 = 27;
1631
- /// Intel-IA64-Filler
1632
- pub const X3_I_SIGN_VAL_POS_X: u16 = 59;
1633
-
1634
- /// Intel-IA64-Filler
1635
- pub const X3_D_WH_INST_WORD_X: u16 = 3;
1636
- /// Intel-IA64-Filler
1637
- pub const X3_D_WH_SIZE_X: u16 = 3;
1638
- /// Intel-IA64-Filler
1639
- pub const X3_D_WH_INST_WORD_POS_X: u16 = 24;
1640
- /// Intel-IA64-Filler
1641
- pub const X3_D_WH_SIGN_VAL_POS_X: u16 = 0;
1642
-
1643
- /// Intel-IA64-Filler
1644
- pub const X3_IMM20_INST_WORD_X: u16 = 3;
1645
- /// Intel-IA64-Filler
1646
- pub const X3_IMM20_SIZE_X: u16 = 20;
1647
- /// Intel-IA64-Filler
1648
- pub const X3_IMM20_INST_WORD_POS_X: u16 = 4;
1649
- /// Intel-IA64-Filler
1650
- pub const X3_IMM20_SIGN_VAL_POS_X: u16 = 0;
1651
-
1652
- /// Intel-IA64-Filler
1653
- pub const X3_IMM39_1_INST_WORD_X: u16 = 2;
1654
- /// Intel-IA64-Filler
1655
- pub const X3_IMM39_1_SIZE_X: u16 = 23;
1656
- /// Intel-IA64-Filler
1657
- pub const X3_IMM39_1_INST_WORD_POS_X: u16 = 0;
1658
- /// Intel-IA64-Filler
1659
- pub const X3_IMM39_1_SIGN_VAL_POS_X: u16 = 36;
1660
-
1661
- /// Intel-IA64-Filler
1662
- pub const X3_IMM39_2_INST_WORD_X: u16 = 1;
1663
- /// Intel-IA64-Filler
1664
- pub const X3_IMM39_2_SIZE_X: u16 = 16;
1665
- /// Intel-IA64-Filler
1666
- pub const X3_IMM39_2_INST_WORD_POS_X: u16 = 16;
1667
- /// Intel-IA64-Filler
1668
- pub const X3_IMM39_2_SIGN_VAL_POS_X: u16 = 20;
1669
-
1670
- /// Intel-IA64-Filler
1671
- pub const X3_P_INST_WORD_X: u16 = 3;
1672
- /// Intel-IA64-Filler
1673
- pub const X3_P_SIZE_X: u16 = 4;
1674
- /// Intel-IA64-Filler
1675
- pub const X3_P_INST_WORD_POS_X: u16 = 0;
1676
- /// Intel-IA64-Filler
1677
- pub const X3_P_SIGN_VAL_POS_X: u16 = 0;
1678
-
1679
- /// Intel-IA64-Filler
1680
- pub const X3_TMPLT_INST_WORD_X: u16 = 0;
1681
- /// Intel-IA64-Filler
1682
- pub const X3_TMPLT_SIZE_X: u16 = 4;
1683
- /// Intel-IA64-Filler
1684
- pub const X3_TMPLT_INST_WORD_POS_X: u16 = 0;
1685
- /// Intel-IA64-Filler
1686
- pub const X3_TMPLT_SIGN_VAL_POS_X: u16 = 0;
1687
-
1688
- /// Intel-IA64-Filler
1689
- pub const X3_BTYPE_QP_INST_WORD_X: u16 = 2;
1690
- /// Intel-IA64-Filler
1691
- pub const X3_BTYPE_QP_SIZE_X: u16 = 9;
1692
- /// Intel-IA64-Filler
1693
- pub const X3_BTYPE_QP_INST_WORD_POS_X: u16 = 23;
1694
- /// Intel-IA64-Filler
1695
- pub const X3_BTYPE_QP_INST_VAL_POS_X: u16 = 0;
1696
-
1697
- /// Intel-IA64-Filler
1698
- pub const X3_EMPTY_INST_WORD_X: u16 = 1;
1699
- /// Intel-IA64-Filler
1700
- pub const X3_EMPTY_SIZE_X: u16 = 2;
1701
- /// Intel-IA64-Filler
1702
- pub const X3_EMPTY_INST_WORD_POS_X: u16 = 14;
1703
- /// Intel-IA64-Filler
1704
- pub const X3_EMPTY_INST_VAL_POS_X: u16 = 0;
1705
-
1706
- //
1707
- // Line number format.
1708
- //
1709
-
1710
- // This struct has alignment 1.
1711
- #[derive(Debug, Clone, Copy)]
1712
- #[repr(C)]
1713
- pub struct ImageLinenumber {
1714
- /// Symbol table index of function name if Linenumber is 0.
1715
- /// Otherwise virtual address of line number.
1716
- pub symbol_table_index_or_virtual_address: U32Bytes<LE>,
1717
- /// Line number.
1718
- pub linenumber: U16Bytes<LE>,
1719
- }
1720
-
1721
- //
1722
- // Based relocation format.
1723
- //
1724
-
1725
- #[derive(Debug, Clone, Copy)]
1726
- #[repr(C)]
1727
- pub struct ImageBaseRelocation {
1728
- pub virtual_address: U32<LE>,
1729
- pub size_of_block: U32<LE>,
1730
- // pub type_offset[1]: U16<LE>,
1731
- }
1732
-
1733
- //
1734
- // Based relocation types.
1735
- //
1736
-
1737
- pub const IMAGE_REL_BASED_ABSOLUTE: u16 = 0;
1738
- pub const IMAGE_REL_BASED_HIGH: u16 = 1;
1739
- pub const IMAGE_REL_BASED_LOW: u16 = 2;
1740
- pub const IMAGE_REL_BASED_HIGHLOW: u16 = 3;
1741
- pub const IMAGE_REL_BASED_HIGHADJ: u16 = 4;
1742
- pub const IMAGE_REL_BASED_MACHINE_SPECIFIC_5: u16 = 5;
1743
- pub const IMAGE_REL_BASED_RESERVED: u16 = 6;
1744
- pub const IMAGE_REL_BASED_MACHINE_SPECIFIC_7: u16 = 7;
1745
- pub const IMAGE_REL_BASED_MACHINE_SPECIFIC_8: u16 = 8;
1746
- pub const IMAGE_REL_BASED_MACHINE_SPECIFIC_9: u16 = 9;
1747
- pub const IMAGE_REL_BASED_DIR64: u16 = 10;
1748
-
1749
- //
1750
- // Platform-specific based relocation types.
1751
- //
1752
-
1753
- pub const IMAGE_REL_BASED_IA64_IMM64: u16 = 9;
1754
-
1755
- pub const IMAGE_REL_BASED_MIPS_JMPADDR: u16 = 5;
1756
- pub const IMAGE_REL_BASED_MIPS_JMPADDR16: u16 = 9;
1757
-
1758
- pub const IMAGE_REL_BASED_ARM_MOV32: u16 = 5;
1759
- pub const IMAGE_REL_BASED_THUMB_MOV32: u16 = 7;
1760
-
1761
- pub const IMAGE_REL_BASED_RISCV_HIGH20: u16 = 5;
1762
- pub const IMAGE_REL_BASED_RISCV_LOW12I: u16 = 7;
1763
- pub const IMAGE_REL_BASED_RISCV_LOW12S: u16 = 8;
1764
-
1765
- //
1766
- // Archive format.
1767
- //
1768
-
1769
- pub const IMAGE_ARCHIVE_START_SIZE: usize = 8;
1770
- pub const IMAGE_ARCHIVE_START: &[u8; 8] = b"!<arch>\n";
1771
- pub const IMAGE_ARCHIVE_END: &[u8] = b"`\n";
1772
- pub const IMAGE_ARCHIVE_PAD: &[u8] = b"\n";
1773
- pub const IMAGE_ARCHIVE_LINKER_MEMBER: &[u8; 16] = b"/ ";
1774
- pub const IMAGE_ARCHIVE_LONGNAMES_MEMBER: &[u8; 16] = b"// ";
1775
- pub const IMAGE_ARCHIVE_HYBRIDMAP_MEMBER: &[u8; 16] = b"/<HYBRIDMAP>/ ";
1776
-
1777
- #[derive(Debug, Clone, Copy)]
1778
- #[repr(C)]
1779
- pub struct ImageArchiveMemberHeader {
1780
- /// File member name - `/' terminated.
1781
- pub name: [u8; 16],
1782
- /// File member date - decimal.
1783
- pub date: [u8; 12],
1784
- /// File member user id - decimal.
1785
- pub user_id: [u8; 6],
1786
- /// File member group id - decimal.
1787
- pub group_id: [u8; 6],
1788
- /// File member mode - octal.
1789
- pub mode: [u8; 8],
1790
- /// File member size - decimal.
1791
- pub size: [u8; 10],
1792
- /// String to end header.
1793
- pub end_header: [u8; 2],
1794
- }
1795
-
1796
- pub const IMAGE_SIZEOF_ARCHIVE_MEMBER_HDR: u16 = 60;
1797
-
1798
- //
1799
- // DLL support.
1800
- //
1801
-
1802
- //
1803
- // Export Format
1804
- //
1805
-
1806
- #[derive(Debug, Clone, Copy)]
1807
- #[repr(C)]
1808
- pub struct ImageExportDirectory {
1809
- pub characteristics: U32<LE>,
1810
- pub time_date_stamp: U32<LE>,
1811
- pub major_version: U16<LE>,
1812
- pub minor_version: U16<LE>,
1813
- pub name: U32<LE>,
1814
- pub base: U32<LE>,
1815
- pub number_of_functions: U32<LE>,
1816
- pub number_of_names: U32<LE>,
1817
- /// RVA from base of image
1818
- pub address_of_functions: U32<LE>,
1819
- /// RVA from base of image
1820
- pub address_of_names: U32<LE>,
1821
- /// RVA from base of image
1822
- pub address_of_name_ordinals: U32<LE>,
1823
- }
1824
-
1825
- //
1826
- // Import Format
1827
- //
1828
-
1829
- #[derive(Debug, Clone, Copy)]
1830
- #[repr(C)]
1831
- pub struct ImageImportByName {
1832
- pub hint: U16<LE>,
1833
- //pub name: [i8; 1],
1834
- }
1835
-
1836
- #[derive(Debug, Clone, Copy)]
1837
- #[repr(C)]
1838
- pub struct ImageThunkData64(pub U64<LE>);
1839
- /*
1840
- union {
1841
- /// PBYTE
1842
- pub forwarder_string: U64<LE>,
1843
- /// PDWORD
1844
- pub function: U64<LE>,
1845
- pub ordinal: U64<LE>,
1846
- /// PIMAGE_IMPORT_BY_NAME
1847
- pub address_of_data: U64<LE>,
1848
- } u1;
1849
- */
1850
-
1851
- #[derive(Debug, Clone, Copy)]
1852
- #[repr(C)]
1853
- pub struct ImageThunkData32(pub U32<LE>);
1854
- /*
1855
- union {
1856
- /// PBYTE
1857
- pub forwarder_string: U32<LE>,
1858
- /// PDWORD
1859
- pub function: U32<LE>,
1860
- pub ordinal: U32<LE>,
1861
- /// PIMAGE_IMPORT_BY_NAME
1862
- pub address_of_data: U32<LE>,
1863
- } u1;
1864
- }
1865
- */
1866
-
1867
- pub const IMAGE_ORDINAL_FLAG64: u64 = 0x8000000000000000;
1868
- pub const IMAGE_ORDINAL_FLAG32: u32 = 0x80000000;
1869
-
1870
- /*
1871
- #define IMAGE_ORDINAL64(Ordinal) (Ordinal & 0xffff)
1872
- #define IMAGE_ORDINAL32(Ordinal) (Ordinal & 0xffff)
1873
- #define IMAGE_SNAP_BY_ORDINAL64(Ordinal) ((Ordinal & IMAGE_ORDINAL_FLAG64) != 0)
1874
- #define IMAGE_SNAP_BY_ORDINAL32(Ordinal) ((Ordinal & IMAGE_ORDINAL_FLAG32) != 0)
1875
-
1876
- */
1877
-
1878
- //
1879
- // Thread Local Storage
1880
- //
1881
-
1882
- #[derive(Debug, Clone, Copy)]
1883
- #[repr(C)]
1884
- pub struct ImageTlsDirectory64 {
1885
- pub start_address_of_raw_data: U64<LE>,
1886
- pub end_address_of_raw_data: U64<LE>,
1887
- /// PDWORD
1888
- pub address_of_index: U64<LE>,
1889
- /// PIMAGE_TLS_CALLBACK *;
1890
- pub address_of_call_backs: U64<LE>,
1891
- pub size_of_zero_fill: U32<LE>,
1892
- pub characteristics: U32<LE>,
1893
- }
1894
-
1895
- #[derive(Debug, Clone, Copy)]
1896
- #[repr(C)]
1897
- pub struct ImageTlsDirectory32 {
1898
- pub start_address_of_raw_data: U32<LE>,
1899
- pub end_address_of_raw_data: U32<LE>,
1900
- /// PDWORD
1901
- pub address_of_index: U32<LE>,
1902
- /// PIMAGE_TLS_CALLBACK *
1903
- pub address_of_call_backs: U32<LE>,
1904
- pub size_of_zero_fill: U32<LE>,
1905
- pub characteristics: U32<LE>,
1906
- }
1907
-
1908
- #[derive(Debug, Clone, Copy)]
1909
- #[repr(C)]
1910
- pub struct ImageImportDescriptor {
1911
- /// RVA to original unbound IAT (`ImageThunkData32`/`ImageThunkData64`)
1912
- /// 0 for terminating null import descriptor
1913
- pub original_first_thunk: U32Bytes<LE>,
1914
- /// 0 if not bound,
1915
- /// -1 if bound, and real date\time stamp
1916
- /// in IMAGE_DIRECTORY_ENTRY_BOUND_IMPORT (new BIND)
1917
- /// O.W. date/time stamp of DLL bound to (Old BIND)
1918
- pub time_date_stamp: U32Bytes<LE>,
1919
- /// -1 if no forwarders
1920
- pub forwarder_chain: U32Bytes<LE>,
1921
- pub name: U32Bytes<LE>,
1922
- /// RVA to IAT (if bound this IAT has actual addresses)
1923
- pub first_thunk: U32Bytes<LE>,
1924
- }
1925
-
1926
- impl ImageImportDescriptor {
1927
- /// Tell whether this import descriptor is the null descriptor
1928
- /// (used to mark the end of the iterator array in a PE)
1929
- pub fn is_null(&self) -> bool {
1930
- self.original_first_thunk.get(LE) == 0
1931
- && self.time_date_stamp.get(LE) == 0
1932
- && self.forwarder_chain.get(LE) == 0
1933
- && self.name.get(LE) == 0
1934
- && self.first_thunk.get(LE) == 0
1935
- }
1936
- }
1937
-
1938
- //
1939
- // New format import descriptors pointed to by DataDirectory[ IMAGE_DIRECTORY_ENTRY_BOUND_IMPORT ]
1940
- //
1941
-
1942
- #[derive(Debug, Clone, Copy)]
1943
- #[repr(C)]
1944
- pub struct ImageBoundImportDescriptor {
1945
- pub time_date_stamp: U32<LE>,
1946
- pub offset_module_name: U16<LE>,
1947
- pub number_of_module_forwarder_refs: U16<LE>,
1948
- // Array of zero or more IMAGE_BOUND_FORWARDER_REF follows
1949
- }
1950
-
1951
- #[derive(Debug, Clone, Copy)]
1952
- #[repr(C)]
1953
- pub struct ImageBoundForwarderRef {
1954
- pub time_date_stamp: U32<LE>,
1955
- pub offset_module_name: U16<LE>,
1956
- pub reserved: U16<LE>,
1957
- }
1958
-
1959
- #[derive(Debug, Clone, Copy)]
1960
- #[repr(C)]
1961
- pub struct ImageDelayloadDescriptor {
1962
- pub attributes: U32<LE>,
1963
-
1964
- /// RVA to the name of the target library (NULL-terminate ASCII string)
1965
- pub dll_name_rva: U32<LE>,
1966
- /// RVA to the HMODULE caching location (PHMODULE)
1967
- pub module_handle_rva: U32<LE>,
1968
- /// RVA to the start of the IAT (PIMAGE_THUNK_DATA)
1969
- pub import_address_table_rva: U32<LE>,
1970
- /// RVA to the start of the name table (PIMAGE_THUNK_DATA::AddressOfData)
1971
- pub import_name_table_rva: U32<LE>,
1972
- /// RVA to an optional bound IAT
1973
- pub bound_import_address_table_rva: U32<LE>,
1974
- /// RVA to an optional unload info table
1975
- pub unload_information_table_rva: U32<LE>,
1976
- /// 0 if not bound, otherwise, date/time of the target DLL
1977
- pub time_date_stamp: U32<LE>,
1978
- }
1979
-
1980
- impl ImageDelayloadDescriptor {
1981
- /// Tell whether this delay-load import descriptor is the null descriptor
1982
- /// (used to mark the end of the iterator array in a PE)
1983
- pub fn is_null(&self) -> bool {
1984
- self.attributes.get(LE) == 0
1985
- && self.dll_name_rva.get(LE) == 0
1986
- && self.module_handle_rva.get(LE) == 0
1987
- && self.import_address_table_rva.get(LE) == 0
1988
- && self.import_name_table_rva.get(LE) == 0
1989
- && self.bound_import_address_table_rva.get(LE) == 0
1990
- && self.unload_information_table_rva.get(LE) == 0
1991
- && self.time_date_stamp.get(LE) == 0
1992
- }
1993
- }
1994
-
1995
- /// Delay load version 2 flag for `ImageDelayloadDescriptor::attributes`.
1996
- pub const IMAGE_DELAYLOAD_RVA_BASED: u32 = 0x8000_0000;
1997
-
1998
- //
1999
- // Resource Format.
2000
- //
2001
-
2002
- //
2003
- // Resource directory consists of two counts, following by a variable length
2004
- // array of directory entries. The first count is the number of entries at
2005
- // beginning of the array that have actual names associated with each entry.
2006
- // The entries are in ascending order, case insensitive strings. The second
2007
- // count is the number of entries that immediately follow the named entries.
2008
- // This second count identifies the number of entries that have 16-bit integer
2009
- // Ids as their name. These entries are also sorted in ascending order.
2010
- //
2011
- // This structure allows fast lookup by either name or number, but for any
2012
- // given resource entry only one form of lookup is supported, not both.
2013
- // This is consistent with the syntax of the .RC file and the .RES file.
2014
- //
2015
-
2016
- #[derive(Debug, Clone, Copy)]
2017
- #[repr(C)]
2018
- pub struct ImageResourceDirectory {
2019
- pub characteristics: U32<LE>,
2020
- pub time_date_stamp: U32<LE>,
2021
- pub major_version: U16<LE>,
2022
- pub minor_version: U16<LE>,
2023
- pub number_of_named_entries: U16<LE>,
2024
- pub number_of_id_entries: U16<LE>,
2025
- }
2026
-
2027
- pub const IMAGE_RESOURCE_NAME_IS_STRING: u32 = 0x8000_0000;
2028
- pub const IMAGE_RESOURCE_DATA_IS_DIRECTORY: u32 = 0x8000_0000;
2029
- //
2030
- // Each directory contains the 32-bit Name of the entry and an offset,
2031
- // relative to the beginning of the resource directory of the data associated
2032
- // with this directory entry. If the name of the entry is an actual text
2033
- // string instead of an integer Id, then the high order bit of the name field
2034
- // is set to one and the low order 31-bits are an offset, relative to the
2035
- // beginning of the resource directory of the string, which is of type
2036
- // IMAGE_RESOURCE_DIRECTORY_STRING. Otherwise the high bit is clear and the
2037
- // low-order 16-bits are the integer Id that identify this resource directory
2038
- // entry. If the directory entry is yet another resource directory (i.e. a
2039
- // subdirectory), then the high order bit of the offset field will be
2040
- // set to indicate this. Otherwise the high bit is clear and the offset
2041
- // field points to a resource data entry.
2042
- //
2043
-
2044
- #[derive(Debug, Clone, Copy)]
2045
- #[repr(C)]
2046
- pub struct ImageResourceDirectoryEntry {
2047
- pub name_or_id: U32<LE>,
2048
- pub offset_to_data_or_directory: U32<LE>,
2049
- }
2050
-
2051
- //
2052
- // For resource directory entries that have actual string names, the Name
2053
- // field of the directory entry points to an object of the following type.
2054
- // All of these string objects are stored together after the last resource
2055
- // directory entry and before the first resource data object. This minimizes
2056
- // the impact of these variable length objects on the alignment of the fixed
2057
- // size directory entry objects.
2058
- //
2059
-
2060
- #[derive(Debug, Clone, Copy)]
2061
- #[repr(C)]
2062
- pub struct ImageResourceDirectoryString {
2063
- pub length: U16<LE>,
2064
- //pub name_string: [i8; 1],
2065
- }
2066
-
2067
- #[derive(Debug, Clone, Copy)]
2068
- #[repr(C)]
2069
- pub struct ImageResourceDirStringU {
2070
- pub length: U16<LE>,
2071
- //pub name_string: [U16<LE>; 1],
2072
- }
2073
-
2074
- //
2075
- // Each resource data entry describes a leaf node in the resource directory
2076
- // tree. It contains an offset, relative to the beginning of the resource
2077
- // directory of the data for the resource, a size field that gives the number
2078
- // of bytes of data at that offset, a CodePage that should be used when
2079
- // decoding code point values within the resource data. Typically for new
2080
- // applications the code page would be the unicode code page.
2081
- //
2082
-
2083
- #[derive(Debug, Clone, Copy)]
2084
- #[repr(C)]
2085
- pub struct ImageResourceDataEntry {
2086
- /// RVA of the data.
2087
- pub offset_to_data: U32<LE>,
2088
- pub size: U32<LE>,
2089
- pub code_page: U32<LE>,
2090
- pub reserved: U32<LE>,
2091
- }
2092
-
2093
- // Resource type: https://docs.microsoft.com/en-us/windows/win32/menurc/resource-types
2094
-
2095
- /// ID for: Hardware-dependent cursor resource.
2096
- pub const RT_CURSOR: u16 = 1;
2097
- /// ID for: Bitmap resource.
2098
- pub const RT_BITMAP: u16 = 2;
2099
- /// ID for: Hardware-dependent icon resource.
2100
- pub const RT_ICON: u16 = 3;
2101
- /// ID for: Menu resource.
2102
- pub const RT_MENU: u16 = 4;
2103
- /// ID for: Dialog box.
2104
- pub const RT_DIALOG: u16 = 5;
2105
- /// ID for: String-table entry.
2106
- pub const RT_STRING: u16 = 6;
2107
- /// ID for: Font directory resource.
2108
- pub const RT_FONTDIR: u16 = 7;
2109
- /// ID for: Font resource.
2110
- pub const RT_FONT: u16 = 8;
2111
- /// ID for: Accelerator table.
2112
- pub const RT_ACCELERATOR: u16 = 9;
2113
- /// ID for: Application-defined resource (raw data).
2114
- pub const RT_RCDATA: u16 = 10;
2115
- /// ID for: Message-table entry.
2116
- pub const RT_MESSAGETABLE: u16 = 11;
2117
- /// ID for: Hardware-independent cursor resource.
2118
- pub const RT_GROUP_CURSOR: u16 = 12;
2119
- /// ID for: Hardware-independent icon resource.
2120
- pub const RT_GROUP_ICON: u16 = 14;
2121
- /// ID for: Version resource.
2122
- pub const RT_VERSION: u16 = 16;
2123
- /// ID for: Allows a resource editing tool to associate a string with an .rc file.
2124
- pub const RT_DLGINCLUDE: u16 = 17;
2125
- /// ID for: Plug and Play resource.
2126
- pub const RT_PLUGPLAY: u16 = 19;
2127
- /// ID for: VXD.
2128
- pub const RT_VXD: u16 = 20;
2129
- /// ID for: Animated cursor.
2130
- pub const RT_ANICURSOR: u16 = 21;
2131
- /// ID for: Animated icon.
2132
- pub const RT_ANIICON: u16 = 22;
2133
- /// ID for: HTML resource.
2134
- pub const RT_HTML: u16 = 23;
2135
- /// ID for: Side-by-Side Assembly Manifest.
2136
- pub const RT_MANIFEST: u16 = 24;
2137
-
2138
- //
2139
- // Code Integrity in loadconfig (CI)
2140
- //
2141
-
2142
- #[derive(Debug, Clone, Copy)]
2143
- #[repr(C)]
2144
- pub struct ImageLoadConfigCodeIntegrity {
2145
- /// Flags to indicate if CI information is available, etc.
2146
- pub flags: U16<LE>,
2147
- /// 0xFFFF means not available
2148
- pub catalog: U16<LE>,
2149
- pub catalog_offset: U32<LE>,
2150
- /// Additional bitmask to be defined later
2151
- pub reserved: U32<LE>,
2152
- }
2153
-
2154
- //
2155
- // Dynamic value relocation table in loadconfig
2156
- //
2157
-
2158
- #[derive(Debug, Clone, Copy)]
2159
- #[repr(C)]
2160
- pub struct ImageDynamicRelocationTable {
2161
- pub version: U32<LE>,
2162
- pub size: U32<LE>,
2163
- // DynamicRelocations: [ImageDynamicRelocation; 0],
2164
- }
2165
-
2166
- //
2167
- // Dynamic value relocation entries following IMAGE_DYNAMIC_RELOCATION_TABLE
2168
- //
2169
-
2170
- #[derive(Debug, Clone, Copy)]
2171
- #[repr(C)]
2172
- pub struct ImageDynamicRelocation32 {
2173
- pub symbol: U32<LE>,
2174
- pub base_reloc_size: U32<LE>,
2175
- // BaseRelocations: [ImageBaseRelocation; 0],
2176
- }
2177
-
2178
- #[derive(Debug, Clone, Copy)]
2179
- #[repr(C)]
2180
- pub struct ImageDynamicRelocation64 {
2181
- pub symbol: U64<LE>,
2182
- pub base_reloc_size: U32<LE>,
2183
- // BaseRelocations: [ImageBaseRelocation; 0],
2184
- }
2185
-
2186
- #[derive(Debug, Clone, Copy)]
2187
- #[repr(C)]
2188
- pub struct ImageDynamicRelocation32V2 {
2189
- pub header_size: U32<LE>,
2190
- pub fixup_info_size: U32<LE>,
2191
- pub symbol: U32<LE>,
2192
- pub symbol_group: U32<LE>,
2193
- pub flags: U32<LE>,
2194
- // ... variable length header fields
2195
- // pub fixup_info: [u8; fixup_info_size]
2196
- }
2197
-
2198
- #[derive(Debug, Clone, Copy)]
2199
- #[repr(C)]
2200
- pub struct ImageDynamicRelocation64V2 {
2201
- pub header_size: U32<LE>,
2202
- pub fixup_info_size: U32<LE>,
2203
- pub symbol: U64<LE>,
2204
- pub symbol_group: U32<LE>,
2205
- pub flags: U32<LE>,
2206
- // ... variable length header fields
2207
- // pub fixup_info[u8; fixup_info_size]
2208
- }
2209
-
2210
- //
2211
- // Defined symbolic dynamic relocation entries.
2212
- //
2213
-
2214
- pub const IMAGE_DYNAMIC_RELOCATION_GUARD_RF_PROLOGUE: u32 = 0x0000_0001;
2215
- pub const IMAGE_DYNAMIC_RELOCATION_GUARD_RF_EPILOGUE: u32 = 0x0000_0002;
2216
- pub const IMAGE_DYNAMIC_RELOCATION_GUARD_IMPORT_CONTROL_TRANSFER: u32 = 0x0000_0003;
2217
- pub const IMAGE_DYNAMIC_RELOCATION_GUARD_INDIR_CONTROL_TRANSFER: u32 = 0x0000_0004;
2218
- pub const IMAGE_DYNAMIC_RELOCATION_GUARD_SWITCHTABLE_BRANCH: u32 = 0x0000_0005;
2219
-
2220
- // This struct has alignment 1.
2221
- #[derive(Debug, Clone, Copy)]
2222
- #[repr(C)]
2223
- pub struct ImagePrologueDynamicRelocationHeader {
2224
- pub prologue_byte_count: u8,
2225
- // pub prologue_bytes: [u8; prologue_byte_count],
2226
- }
2227
-
2228
- // This struct has alignment 1.
2229
- #[derive(Debug, Clone, Copy)]
2230
- #[repr(C)]
2231
- pub struct ImageEpilogueDynamicRelocationHeader {
2232
- pub epilogue_count: U32Bytes<LE>,
2233
- pub epilogue_byte_count: u8,
2234
- pub branch_descriptor_element_size: u8,
2235
- pub branch_descriptor_count: U16Bytes<LE>,
2236
- // pub branch_descriptors[...],
2237
- // pub branch_descriptor_bit_map[...],
2238
- }
2239
-
2240
- /*
2241
- // TODO? bitfields
2242
- // TODO: unaligned?
2243
- #[derive(Debug, Clone, Copy)]
2244
- #[repr(C)]
2245
- pub struct ImageImportControlTransferDynamicRelocation {
2246
- DWORD PageRelativeOffset : 12;
2247
- DWORD IndirectCall : 1;
2248
- DWORD IATIndex : 19;
2249
- }
2250
-
2251
- // TODO: unaligned?
2252
- #[derive(Debug, Clone, Copy)]
2253
- #[repr(C)]
2254
- pub struct ImageIndirControlTransferDynamicRelocation {
2255
- WORD PageRelativeOffset : 12;
2256
- WORD IndirectCall : 1;
2257
- WORD RexWPrefix : 1;
2258
- WORD CfgCheck : 1;
2259
- WORD Reserved : 1;
2260
- }
2261
-
2262
- // TODO: unaligned?
2263
- #[derive(Debug, Clone, Copy)]
2264
- #[repr(C)]
2265
- pub struct ImageSwitchtableBranchDynamicRelocation {
2266
- WORD PageRelativeOffset : 12;
2267
- WORD RegisterNumber : 4;
2268
- }
2269
- */
2270
-
2271
- //
2272
- // Load Configuration Directory Entry
2273
- //
2274
-
2275
- #[derive(Debug, Clone, Copy)]
2276
- #[repr(C)]
2277
- pub struct ImageLoadConfigDirectory32 {
2278
- pub size: U32<LE>,
2279
- pub time_date_stamp: U32<LE>,
2280
- pub major_version: U16<LE>,
2281
- pub minor_version: U16<LE>,
2282
- pub global_flags_clear: U32<LE>,
2283
- pub global_flags_set: U32<LE>,
2284
- pub critical_section_default_timeout: U32<LE>,
2285
- pub de_commit_free_block_threshold: U32<LE>,
2286
- pub de_commit_total_free_threshold: U32<LE>,
2287
- /// VA
2288
- pub lock_prefix_table: U32<LE>,
2289
- pub maximum_allocation_size: U32<LE>,
2290
- pub virtual_memory_threshold: U32<LE>,
2291
- pub process_heap_flags: U32<LE>,
2292
- pub process_affinity_mask: U32<LE>,
2293
- pub csd_version: U16<LE>,
2294
- pub dependent_load_flags: U16<LE>,
2295
- /// VA
2296
- pub edit_list: U32<LE>,
2297
- /// VA
2298
- pub security_cookie: U32<LE>,
2299
- /// VA
2300
- pub sehandler_table: U32<LE>,
2301
- pub sehandler_count: U32<LE>,
2302
- /// VA
2303
- pub guard_cf_check_function_pointer: U32<LE>,
2304
- /// VA
2305
- pub guard_cf_dispatch_function_pointer: U32<LE>,
2306
- /// VA
2307
- pub guard_cf_function_table: U32<LE>,
2308
- pub guard_cf_function_count: U32<LE>,
2309
- pub guard_flags: U32<LE>,
2310
- pub code_integrity: ImageLoadConfigCodeIntegrity,
2311
- /// VA
2312
- pub guard_address_taken_iat_entry_table: U32<LE>,
2313
- pub guard_address_taken_iat_entry_count: U32<LE>,
2314
- /// VA
2315
- pub guard_long_jump_target_table: U32<LE>,
2316
- pub guard_long_jump_target_count: U32<LE>,
2317
- /// VA
2318
- pub dynamic_value_reloc_table: U32<LE>,
2319
- pub chpe_metadata_pointer: U32<LE>,
2320
- /// VA
2321
- pub guard_rf_failure_routine: U32<LE>,
2322
- /// VA
2323
- pub guard_rf_failure_routine_function_pointer: U32<LE>,
2324
- pub dynamic_value_reloc_table_offset: U32<LE>,
2325
- pub dynamic_value_reloc_table_section: U16<LE>,
2326
- pub reserved2: U16<LE>,
2327
- /// VA
2328
- pub guard_rf_verify_stack_pointer_function_pointer: U32<LE>,
2329
- pub hot_patch_table_offset: U32<LE>,
2330
- pub reserved3: U32<LE>,
2331
- /// VA
2332
- pub enclave_configuration_pointer: U32<LE>,
2333
- /// VA
2334
- pub volatile_metadata_pointer: U32<LE>,
2335
- }
2336
-
2337
- #[derive(Debug, Clone, Copy)]
2338
- #[repr(C)]
2339
- pub struct ImageLoadConfigDirectory64 {
2340
- pub size: U32<LE>,
2341
- pub time_date_stamp: U32<LE>,
2342
- pub major_version: U16<LE>,
2343
- pub minor_version: U16<LE>,
2344
- pub global_flags_clear: U32<LE>,
2345
- pub global_flags_set: U32<LE>,
2346
- pub critical_section_default_timeout: U32<LE>,
2347
- pub de_commit_free_block_threshold: U64<LE>,
2348
- pub de_commit_total_free_threshold: U64<LE>,
2349
- /// VA
2350
- pub lock_prefix_table: U64<LE>,
2351
- pub maximum_allocation_size: U64<LE>,
2352
- pub virtual_memory_threshold: U64<LE>,
2353
- pub process_affinity_mask: U64<LE>,
2354
- pub process_heap_flags: U32<LE>,
2355
- pub csd_version: U16<LE>,
2356
- pub dependent_load_flags: U16<LE>,
2357
- /// VA
2358
- pub edit_list: U64<LE>,
2359
- /// VA
2360
- pub security_cookie: U64<LE>,
2361
- /// VA
2362
- pub sehandler_table: U64<LE>,
2363
- pub sehandler_count: U64<LE>,
2364
- /// VA
2365
- pub guard_cf_check_function_pointer: U64<LE>,
2366
- /// VA
2367
- pub guard_cf_dispatch_function_pointer: U64<LE>,
2368
- /// VA
2369
- pub guard_cf_function_table: U64<LE>,
2370
- pub guard_cf_function_count: U64<LE>,
2371
- pub guard_flags: U32<LE>,
2372
- pub code_integrity: ImageLoadConfigCodeIntegrity,
2373
- /// VA
2374
- pub guard_address_taken_iat_entry_table: U64<LE>,
2375
- pub guard_address_taken_iat_entry_count: U64<LE>,
2376
- /// VA
2377
- pub guard_long_jump_target_table: U64<LE>,
2378
- pub guard_long_jump_target_count: U64<LE>,
2379
- /// VA
2380
- pub dynamic_value_reloc_table: U64<LE>,
2381
- /// VA
2382
- pub chpe_metadata_pointer: U64<LE>,
2383
- /// VA
2384
- pub guard_rf_failure_routine: U64<LE>,
2385
- /// VA
2386
- pub guard_rf_failure_routine_function_pointer: U64<LE>,
2387
- pub dynamic_value_reloc_table_offset: U32<LE>,
2388
- pub dynamic_value_reloc_table_section: U16<LE>,
2389
- pub reserved2: U16<LE>,
2390
- /// VA
2391
- pub guard_rf_verify_stack_pointer_function_pointer: U64<LE>,
2392
- pub hot_patch_table_offset: U32<LE>,
2393
- pub reserved3: U32<LE>,
2394
- /// VA
2395
- pub enclave_configuration_pointer: U64<LE>,
2396
- /// VA
2397
- pub volatile_metadata_pointer: U64<LE>,
2398
- }
2399
-
2400
- #[derive(Debug, Clone, Copy)]
2401
- #[repr(C)]
2402
- pub struct ImageHotPatchInfo {
2403
- pub version: U32<LE>,
2404
- pub size: U32<LE>,
2405
- pub sequence_number: U32<LE>,
2406
- pub base_image_list: U32<LE>,
2407
- pub base_image_count: U32<LE>,
2408
- /// Version 2 and later
2409
- pub buffer_offset: U32<LE>,
2410
- /// Version 3 and later
2411
- pub extra_patch_size: U32<LE>,
2412
- }
2413
-
2414
- #[derive(Debug, Clone, Copy)]
2415
- #[repr(C)]
2416
- pub struct ImageHotPatchBase {
2417
- pub sequence_number: U32<LE>,
2418
- pub flags: U32<LE>,
2419
- pub original_time_date_stamp: U32<LE>,
2420
- pub original_check_sum: U32<LE>,
2421
- pub code_integrity_info: U32<LE>,
2422
- pub code_integrity_size: U32<LE>,
2423
- pub patch_table: U32<LE>,
2424
- /// Version 2 and later
2425
- pub buffer_offset: U32<LE>,
2426
- }
2427
-
2428
- #[derive(Debug, Clone, Copy)]
2429
- #[repr(C)]
2430
- pub struct ImageHotPatchHashes {
2431
- pub sha256: [u8; 32],
2432
- pub sha1: [u8; 20],
2433
- }
2434
-
2435
- pub const IMAGE_HOT_PATCH_BASE_OBLIGATORY: u32 = 0x0000_0001;
2436
- pub const IMAGE_HOT_PATCH_BASE_CAN_ROLL_BACK: u32 = 0x0000_0002;
2437
-
2438
- pub const IMAGE_HOT_PATCH_CHUNK_INVERSE: u32 = 0x8000_0000;
2439
- pub const IMAGE_HOT_PATCH_CHUNK_OBLIGATORY: u32 = 0x4000_0000;
2440
- pub const IMAGE_HOT_PATCH_CHUNK_RESERVED: u32 = 0x3FF0_3000;
2441
- pub const IMAGE_HOT_PATCH_CHUNK_TYPE: u32 = 0x000F_C000;
2442
- pub const IMAGE_HOT_PATCH_CHUNK_SOURCE_RVA: u32 = 0x0000_8000;
2443
- pub const IMAGE_HOT_PATCH_CHUNK_TARGET_RVA: u32 = 0x0000_4000;
2444
- pub const IMAGE_HOT_PATCH_CHUNK_SIZE: u32 = 0x0000_0FFF;
2445
-
2446
- pub const IMAGE_HOT_PATCH_NONE: u32 = 0x0000_0000;
2447
- pub const IMAGE_HOT_PATCH_FUNCTION: u32 = 0x0001_C000;
2448
- pub const IMAGE_HOT_PATCH_ABSOLUTE: u32 = 0x0002_C000;
2449
- pub const IMAGE_HOT_PATCH_REL32: u32 = 0x0003_C000;
2450
- pub const IMAGE_HOT_PATCH_CALL_TARGET: u32 = 0x0004_4000;
2451
- pub const IMAGE_HOT_PATCH_INDIRECT: u32 = 0x0005_C000;
2452
- pub const IMAGE_HOT_PATCH_NO_CALL_TARGET: u32 = 0x0006_4000;
2453
- pub const IMAGE_HOT_PATCH_DYNAMIC_VALUE: u32 = 0x0007_8000;
2454
-
2455
- /// Module performs control flow integrity checks using system-supplied support
2456
- pub const IMAGE_GUARD_CF_INSTRUMENTED: u32 = 0x0000_0100;
2457
- /// Module performs control flow and write integrity checks
2458
- pub const IMAGE_GUARD_CFW_INSTRUMENTED: u32 = 0x0000_0200;
2459
- /// Module contains valid control flow target metadata
2460
- pub const IMAGE_GUARD_CF_FUNCTION_TABLE_PRESENT: u32 = 0x0000_0400;
2461
- /// Module does not make use of the /GS security cookie
2462
- pub const IMAGE_GUARD_SECURITY_COOKIE_UNUSED: u32 = 0x0000_0800;
2463
- /// Module supports read only delay load IAT
2464
- pub const IMAGE_GUARD_PROTECT_DELAYLOAD_IAT: u32 = 0x0000_1000;
2465
- /// Delayload import table in its own .didat section (with nothing else in it) that can be freely reprotected
2466
- pub const IMAGE_GUARD_DELAYLOAD_IAT_IN_ITS_OWN_SECTION: u32 = 0x0000_2000;
2467
- /// Module contains suppressed export information.
2468
- ///
2469
- /// This also infers that the address taken taken IAT table is also present in the load config.
2470
- pub const IMAGE_GUARD_CF_EXPORT_SUPPRESSION_INFO_PRESENT: u32 = 0x0000_4000;
2471
- /// Module enables suppression of exports
2472
- pub const IMAGE_GUARD_CF_ENABLE_EXPORT_SUPPRESSION: u32 = 0x0000_8000;
2473
- /// Module contains longjmp target information
2474
- pub const IMAGE_GUARD_CF_LONGJUMP_TABLE_PRESENT: u32 = 0x0001_0000;
2475
- /// Module contains return flow instrumentation and metadata
2476
- pub const IMAGE_GUARD_RF_INSTRUMENTED: u32 = 0x0002_0000;
2477
- /// Module requests that the OS enable return flow protection
2478
- pub const IMAGE_GUARD_RF_ENABLE: u32 = 0x0004_0000;
2479
- /// Module requests that the OS enable return flow protection in strict mode
2480
- pub const IMAGE_GUARD_RF_STRICT: u32 = 0x0008_0000;
2481
- /// Module was built with retpoline support
2482
- pub const IMAGE_GUARD_RETPOLINE_PRESENT: u32 = 0x0010_0000;
2483
-
2484
- /// Stride of Guard CF function table encoded in these bits (additional count of bytes per element)
2485
- pub const IMAGE_GUARD_CF_FUNCTION_TABLE_SIZE_MASK: u32 = 0xF000_0000;
2486
- /// Shift to right-justify Guard CF function table stride
2487
- pub const IMAGE_GUARD_CF_FUNCTION_TABLE_SIZE_SHIFT: u32 = 28;
2488
-
2489
- //
2490
- // GFIDS table entry flags.
2491
- //
2492
-
2493
- /// The containing GFID entry is suppressed
2494
- pub const IMAGE_GUARD_FLAG_FID_SUPPRESSED: u16 = 0x01;
2495
- /// The containing GFID entry is export suppressed
2496
- pub const IMAGE_GUARD_FLAG_EXPORT_SUPPRESSED: u16 = 0x02;
2497
-
2498
- //
2499
- // WIN CE Exception table format
2500
- //
2501
-
2502
- //
2503
- // Function table entry format. Function table is pointed to by the
2504
- // IMAGE_DIRECTORY_ENTRY_EXCEPTION directory entry.
2505
- //
2506
-
2507
- /*
2508
- // TODO? bitfields
2509
- #[derive(Debug, Clone, Copy)]
2510
- #[repr(C)]
2511
- pub struct ImageCeRuntimeFunctionEntry {
2512
- pub func_start: U32<LE>,
2513
- DWORD PrologLen : 8;
2514
- DWORD FuncLen : 22;
2515
- DWORD ThirtyTwoBit : 1;
2516
- DWORD ExceptionFlag : 1;
2517
- }
2518
- */
2519
-
2520
- #[derive(Debug, Clone, Copy)]
2521
- #[repr(C)]
2522
- pub struct ImageArmRuntimeFunctionEntry {
2523
- pub begin_address: U32<LE>,
2524
- pub unwind_data: U32<LE>,
2525
- }
2526
-
2527
- #[derive(Debug, Clone, Copy)]
2528
- #[repr(C)]
2529
- pub struct ImageArm64RuntimeFunctionEntry {
2530
- pub begin_address: U32<LE>,
2531
- pub unwind_data: U32<LE>,
2532
- }
2533
-
2534
- #[derive(Debug, Clone, Copy)]
2535
- #[repr(C)]
2536
- pub struct ImageAlpha64RuntimeFunctionEntry {
2537
- pub begin_address: U64<LE>,
2538
- pub end_address: U64<LE>,
2539
- pub exception_handler: U64<LE>,
2540
- pub handler_data: U64<LE>,
2541
- pub prolog_end_address: U64<LE>,
2542
- }
2543
-
2544
- #[derive(Debug, Clone, Copy)]
2545
- #[repr(C)]
2546
- pub struct ImageAlphaRuntimeFunctionEntry {
2547
- pub begin_address: U32<LE>,
2548
- pub end_address: U32<LE>,
2549
- pub exception_handler: U32<LE>,
2550
- pub handler_data: U32<LE>,
2551
- pub prolog_end_address: U32<LE>,
2552
- }
2553
-
2554
- #[derive(Debug, Clone, Copy)]
2555
- #[repr(C)]
2556
- pub struct ImageRuntimeFunctionEntry {
2557
- pub begin_address: U32<LE>,
2558
- pub end_address: U32<LE>,
2559
- pub unwind_info_address_or_data: U32<LE>,
2560
- }
2561
-
2562
- //
2563
- // Software enclave information
2564
- //
2565
-
2566
- pub const IMAGE_ENCLAVE_LONG_ID_LENGTH: usize = 32;
2567
- pub const IMAGE_ENCLAVE_SHORT_ID_LENGTH: usize = 16;
2568
-
2569
- #[derive(Debug, Clone, Copy)]
2570
- #[repr(C)]
2571
- pub struct ImageEnclaveConfig32 {
2572
- pub size: U32<LE>,
2573
- pub minimum_required_config_size: U32<LE>,
2574
- pub policy_flags: U32<LE>,
2575
- pub number_of_imports: U32<LE>,
2576
- pub import_list: U32<LE>,
2577
- pub import_entry_size: U32<LE>,
2578
- pub family_id: [u8; IMAGE_ENCLAVE_SHORT_ID_LENGTH],
2579
- pub image_id: [u8; IMAGE_ENCLAVE_SHORT_ID_LENGTH],
2580
- pub image_version: U32<LE>,
2581
- pub security_version: U32<LE>,
2582
- pub enclave_size: U32<LE>,
2583
- pub number_of_threads: U32<LE>,
2584
- pub enclave_flags: U32<LE>,
2585
- }
2586
-
2587
- #[derive(Debug, Clone, Copy)]
2588
- #[repr(C)]
2589
- pub struct ImageEnclaveConfig64 {
2590
- pub size: U32<LE>,
2591
- pub minimum_required_config_size: U32<LE>,
2592
- pub policy_flags: U32<LE>,
2593
- pub number_of_imports: U32<LE>,
2594
- pub import_list: U32<LE>,
2595
- pub import_entry_size: U32<LE>,
2596
- pub family_id: [u8; IMAGE_ENCLAVE_SHORT_ID_LENGTH],
2597
- pub image_id: [u8; IMAGE_ENCLAVE_SHORT_ID_LENGTH],
2598
- pub image_version: U32<LE>,
2599
- pub security_version: U32<LE>,
2600
- pub enclave_size: U64<LE>,
2601
- pub number_of_threads: U32<LE>,
2602
- pub enclave_flags: U32<LE>,
2603
- }
2604
-
2605
- //pub const IMAGE_ENCLAVE_MINIMUM_CONFIG_SIZE: usize = FIELD_OFFSET(IMAGE_ENCLAVE_CONFIG, EnclaveFlags);
2606
-
2607
- pub const IMAGE_ENCLAVE_POLICY_DEBUGGABLE: u32 = 0x0000_0001;
2608
-
2609
- pub const IMAGE_ENCLAVE_FLAG_PRIMARY_IMAGE: u32 = 0x0000_0001;
2610
-
2611
- #[derive(Debug, Clone, Copy)]
2612
- #[repr(C)]
2613
- pub struct ImageEnclaveImport {
2614
- pub match_type: U32<LE>,
2615
- pub minimum_security_version: U32<LE>,
2616
- pub unique_or_author_id: [u8; IMAGE_ENCLAVE_LONG_ID_LENGTH],
2617
- pub family_id: [u8; IMAGE_ENCLAVE_SHORT_ID_LENGTH],
2618
- pub image_id: [u8; IMAGE_ENCLAVE_SHORT_ID_LENGTH],
2619
- pub import_name: U32<LE>,
2620
- pub reserved: U32<LE>,
2621
- }
2622
-
2623
- pub const IMAGE_ENCLAVE_IMPORT_MATCH_NONE: u32 = 0x0000_0000;
2624
- pub const IMAGE_ENCLAVE_IMPORT_MATCH_UNIQUE_ID: u32 = 0x0000_0001;
2625
- pub const IMAGE_ENCLAVE_IMPORT_MATCH_AUTHOR_ID: u32 = 0x0000_0002;
2626
- pub const IMAGE_ENCLAVE_IMPORT_MATCH_FAMILY_ID: u32 = 0x0000_0003;
2627
- pub const IMAGE_ENCLAVE_IMPORT_MATCH_IMAGE_ID: u32 = 0x0000_0004;
2628
-
2629
- //
2630
- // Debug Format
2631
- //
2632
-
2633
- #[derive(Debug, Clone, Copy)]
2634
- #[repr(C)]
2635
- pub struct ImageDebugDirectory {
2636
- pub characteristics: U32<LE>,
2637
- pub time_date_stamp: U32<LE>,
2638
- pub major_version: U16<LE>,
2639
- pub minor_version: U16<LE>,
2640
- pub typ: U32<LE>,
2641
- pub size_of_data: U32<LE>,
2642
- pub address_of_raw_data: U32<LE>,
2643
- pub pointer_to_raw_data: U32<LE>,
2644
- }
2645
-
2646
- pub const IMAGE_DEBUG_TYPE_UNKNOWN: u32 = 0;
2647
- pub const IMAGE_DEBUG_TYPE_COFF: u32 = 1;
2648
- pub const IMAGE_DEBUG_TYPE_CODEVIEW: u32 = 2;
2649
- pub const IMAGE_DEBUG_TYPE_FPO: u32 = 3;
2650
- pub const IMAGE_DEBUG_TYPE_MISC: u32 = 4;
2651
- pub const IMAGE_DEBUG_TYPE_EXCEPTION: u32 = 5;
2652
- pub const IMAGE_DEBUG_TYPE_FIXUP: u32 = 6;
2653
- pub const IMAGE_DEBUG_TYPE_OMAP_TO_SRC: u32 = 7;
2654
- pub const IMAGE_DEBUG_TYPE_OMAP_FROM_SRC: u32 = 8;
2655
- pub const IMAGE_DEBUG_TYPE_BORLAND: u32 = 9;
2656
- pub const IMAGE_DEBUG_TYPE_RESERVED10: u32 = 10;
2657
- pub const IMAGE_DEBUG_TYPE_CLSID: u32 = 11;
2658
- pub const IMAGE_DEBUG_TYPE_VC_FEATURE: u32 = 12;
2659
- pub const IMAGE_DEBUG_TYPE_POGO: u32 = 13;
2660
- pub const IMAGE_DEBUG_TYPE_ILTCG: u32 = 14;
2661
- pub const IMAGE_DEBUG_TYPE_MPX: u32 = 15;
2662
- pub const IMAGE_DEBUG_TYPE_REPRO: u32 = 16;
2663
-
2664
- #[derive(Debug, Clone, Copy)]
2665
- #[repr(C)]
2666
- pub struct ImageCoffSymbolsHeader {
2667
- pub number_of_symbols: U32<LE>,
2668
- pub lva_to_first_symbol: U32<LE>,
2669
- pub number_of_linenumbers: U32<LE>,
2670
- pub lva_to_first_linenumber: U32<LE>,
2671
- pub rva_to_first_byte_of_code: U32<LE>,
2672
- pub rva_to_last_byte_of_code: U32<LE>,
2673
- pub rva_to_first_byte_of_data: U32<LE>,
2674
- pub rva_to_last_byte_of_data: U32<LE>,
2675
- }
2676
-
2677
- pub const FRAME_FPO: u16 = 0;
2678
- pub const FRAME_TRAP: u16 = 1;
2679
- pub const FRAME_TSS: u16 = 2;
2680
- pub const FRAME_NONFPO: u16 = 3;
2681
-
2682
- /*
2683
- // TODO? bitfields
2684
- #[derive(Debug, Clone, Copy)]
2685
- #[repr(C)]
2686
- pub struct FpoData {
2687
- /// offset 1st byte of function code
2688
- pub ul_off_start: U32<LE>,
2689
- /// # bytes in function
2690
- pub cb_proc_size: U32<LE>,
2691
- /// # bytes in locals/4
2692
- pub cdw_locals: U32<LE>,
2693
- /// # bytes in params/4
2694
- pub cdw_params: U16<LE>,
2695
- /// # bytes in prolog
2696
- WORD cbProlog : 8;
2697
- /// # regs saved
2698
- WORD cbRegs : 3;
2699
- /// TRUE if SEH in func
2700
- WORD fHasSEH : 1;
2701
- /// TRUE if EBP has been allocated
2702
- WORD fUseBP : 1;
2703
- /// reserved for future use
2704
- WORD reserved : 1;
2705
- /// frame type
2706
- WORD cbFrame : 2;
2707
- }
2708
- pub const SIZEOF_RFPO_DATA: usize = 16;
2709
- */
2710
-
2711
- pub const IMAGE_DEBUG_MISC_EXENAME: u16 = 1;
2712
-
2713
- #[derive(Debug, Clone, Copy)]
2714
- #[repr(C)]
2715
- pub struct ImageDebugMisc {
2716
- /// type of misc data, see defines
2717
- pub data_type: U32<LE>,
2718
- /// total length of record, rounded to four byte multiple.
2719
- pub length: U32<LE>,
2720
- /// TRUE if data is unicode string
2721
- pub unicode: u8,
2722
- pub reserved: [u8; 3],
2723
- // Actual data
2724
- //pub data: [u8; 1],
2725
- }
2726
-
2727
- //
2728
- // Function table extracted from MIPS/ALPHA/IA64 images. Does not contain
2729
- // information needed only for runtime support. Just those fields for
2730
- // each entry needed by a debugger.
2731
- //
2732
-
2733
- #[derive(Debug, Clone, Copy)]
2734
- #[repr(C)]
2735
- pub struct ImageFunctionEntry {
2736
- pub starting_address: U32<LE>,
2737
- pub ending_address: U32<LE>,
2738
- pub end_of_prologue: U32<LE>,
2739
- }
2740
-
2741
- #[derive(Debug, Clone, Copy)]
2742
- #[repr(C)]
2743
- pub struct ImageFunctionEntry64 {
2744
- pub starting_address: U64<LE>,
2745
- pub ending_address: U64<LE>,
2746
- pub end_of_prologue_or_unwind_info_address: U64<LE>,
2747
- }
2748
-
2749
- //
2750
- // Debugging information can be stripped from an image file and placed
2751
- // in a separate .DBG file, whose file name part is the same as the
2752
- // image file name part (e.g. symbols for CMD.EXE could be stripped
2753
- // and placed in CMD.DBG). This is indicated by the IMAGE_FILE_DEBUG_STRIPPED
2754
- // flag in the Characteristics field of the file header. The beginning of
2755
- // the .DBG file contains the following structure which captures certain
2756
- // information from the image file. This allows a debug to proceed even if
2757
- // the original image file is not accessible. This header is followed by
2758
- // zero of more IMAGE_SECTION_HEADER structures, followed by zero or more
2759
- // IMAGE_DEBUG_DIRECTORY structures. The latter structures and those in
2760
- // the image file contain file offsets relative to the beginning of the
2761
- // .DBG file.
2762
- //
2763
- // If symbols have been stripped from an image, the IMAGE_DEBUG_MISC structure
2764
- // is left in the image file, but not mapped. This allows a debugger to
2765
- // compute the name of the .DBG file, from the name of the image in the
2766
- // IMAGE_DEBUG_MISC structure.
2767
- //
2768
-
2769
- #[derive(Debug, Clone, Copy)]
2770
- #[repr(C)]
2771
- pub struct ImageSeparateDebugHeader {
2772
- pub signature: U16<LE>,
2773
- pub flags: U16<LE>,
2774
- pub machine: U16<LE>,
2775
- pub characteristics: U16<LE>,
2776
- pub time_date_stamp: U32<LE>,
2777
- pub check_sum: U32<LE>,
2778
- pub image_base: U32<LE>,
2779
- pub size_of_image: U32<LE>,
2780
- pub number_of_sections: U32<LE>,
2781
- pub exported_names_size: U32<LE>,
2782
- pub debug_directory_size: U32<LE>,
2783
- pub section_alignment: U32<LE>,
2784
- pub reserved: [U32<LE>; 2],
2785
- }
2786
-
2787
- #[derive(Debug, Clone, Copy)]
2788
- #[repr(C)]
2789
- pub struct NonPagedDebugInfo {
2790
- pub signature: U16<LE>,
2791
- pub flags: U16<LE>,
2792
- pub size: U32<LE>,
2793
- pub machine: U16<LE>,
2794
- pub characteristics: U16<LE>,
2795
- pub time_date_stamp: U32<LE>,
2796
- pub check_sum: U32<LE>,
2797
- pub size_of_image: U32<LE>,
2798
- pub image_base: U64<LE>,
2799
- //debug_directory_size
2800
- //ImageDebugDirectory
2801
- }
2802
-
2803
- pub const IMAGE_SEPARATE_DEBUG_SIGNATURE: u16 = 0x4944;
2804
- pub const NON_PAGED_DEBUG_SIGNATURE: u16 = 0x494E;
2805
-
2806
- pub const IMAGE_SEPARATE_DEBUG_FLAGS_MASK: u16 = 0x8000;
2807
- /// when DBG was updated, the old checksum didn't match.
2808
- pub const IMAGE_SEPARATE_DEBUG_MISMATCH: u16 = 0x8000;
2809
-
2810
- //
2811
- // The .arch section is made up of headers, each describing an amask position/value
2812
- // pointing to an array of IMAGE_ARCHITECTURE_ENTRY's. Each "array" (both the header
2813
- // and entry arrays) are terminiated by a quadword of 0xffffffffL.
2814
- //
2815
- // NOTE: There may be quadwords of 0 sprinkled around and must be skipped.
2816
- //
2817
-
2818
- /*
2819
- // TODO? bitfields
2820
- #[derive(Debug, Clone, Copy)]
2821
- #[repr(C)]
2822
- pub struct ImageArchitectureHeader {
2823
- /// 1 -> code section depends on mask bit
2824
- /// 0 -> new instruction depends on mask bit
2825
- unsigned int AmaskValue: 1;
2826
- /// MBZ
2827
- int :7;
2828
- /// Amask bit in question for this fixup
2829
- unsigned int AmaskShift: 8;
2830
- /// MBZ
2831
- int :16;
2832
- /// RVA into .arch section to array of ARCHITECTURE_ENTRY's
2833
- pub first_entry_rva: U32<LE>,
2834
- }
2835
- */
2836
-
2837
- #[derive(Debug, Clone, Copy)]
2838
- #[repr(C)]
2839
- pub struct ImageArchitectureEntry {
2840
- /// RVA of instruction to fixup
2841
- pub fixup_inst_rva: U32<LE>,
2842
- /// fixup instruction (see alphaops.h)
2843
- pub new_inst: U32<LE>,
2844
- }
2845
-
2846
- // The following structure defines the new import object. Note the values of the first two fields,
2847
- // which must be set as stated in order to differentiate old and new import members.
2848
- // Following this structure, the linker emits two null-terminated strings used to recreate the
2849
- // import at the time of use. The first string is the import's name, the second is the dll's name.
2850
-
2851
- pub const IMPORT_OBJECT_HDR_SIG2: u16 = 0xffff;
2852
-
2853
- #[derive(Debug, Clone, Copy)]
2854
- #[repr(C)]
2855
- pub struct ImportObjectHeader {
2856
- /// Must be IMAGE_FILE_MACHINE_UNKNOWN
2857
- pub sig1: U16<LE>,
2858
- /// Must be IMPORT_OBJECT_HDR_SIG2.
2859
- pub sig2: U16<LE>,
2860
- pub version: U16<LE>,
2861
- pub machine: U16<LE>,
2862
- /// Time/date stamp
2863
- pub time_date_stamp: U32<LE>,
2864
- /// particularly useful for incremental links
2865
- pub size_of_data: U32<LE>,
2866
-
2867
- /// if grf & IMPORT_OBJECT_ORDINAL
2868
- pub ordinal_or_hint: U16<LE>,
2869
-
2870
- // WORD Type : 2;
2871
- // WORD NameType : 3;
2872
- // WORD Reserved : 11;
2873
- pub name_type: U16<LE>,
2874
- }
2875
-
2876
- pub const IMPORT_OBJECT_CODE: u16 = 0;
2877
- pub const IMPORT_OBJECT_DATA: u16 = 1;
2878
- pub const IMPORT_OBJECT_CONST: u16 = 2;
2879
-
2880
- /// Import by ordinal
2881
- pub const IMPORT_OBJECT_ORDINAL: u16 = 0;
2882
- /// Import name == public symbol name.
2883
- pub const IMPORT_OBJECT_NAME: u16 = 1;
2884
- /// Import name == public symbol name skipping leading ?, @, or optionally _.
2885
- pub const IMPORT_OBJECT_NAME_NO_PREFIX: u16 = 2;
2886
- /// Import name == public symbol name skipping leading ?, @, or optionally _ and truncating at first @.
2887
- pub const IMPORT_OBJECT_NAME_UNDECORATE: u16 = 3;
2888
- /// Import name == a name is explicitly provided after the DLL name.
2889
- pub const IMPORT_OBJECT_NAME_EXPORTAS: u16 = 4;
2890
-
2891
- // COM+ Header entry point flags.
2892
- pub const COMIMAGE_FLAGS_ILONLY: u32 = 0x0000_0001;
2893
- pub const COMIMAGE_FLAGS_32BITREQUIRED: u32 = 0x0000_0002;
2894
- pub const COMIMAGE_FLAGS_IL_LIBRARY: u32 = 0x0000_0004;
2895
- pub const COMIMAGE_FLAGS_STRONGNAMESIGNED: u32 = 0x0000_0008;
2896
- pub const COMIMAGE_FLAGS_NATIVE_ENTRYPOINT: u32 = 0x0000_0010;
2897
- pub const COMIMAGE_FLAGS_TRACKDEBUGDATA: u32 = 0x0001_0000;
2898
- pub const COMIMAGE_FLAGS_32BITPREFERRED: u32 = 0x0002_0000;
2899
-
2900
- // Version flags for image.
2901
- pub const COR_VERSION_MAJOR_V2: u16 = 2;
2902
- pub const COR_VERSION_MAJOR: u16 = COR_VERSION_MAJOR_V2;
2903
- pub const COR_VERSION_MINOR: u16 = 5;
2904
- pub const COR_DELETED_NAME_LENGTH: usize = 8;
2905
- pub const COR_VTABLEGAP_NAME_LENGTH: usize = 8;
2906
-
2907
- // Maximum size of a NativeType descriptor.
2908
- pub const NATIVE_TYPE_MAX_CB: u16 = 1;
2909
- pub const COR_ILMETHOD_SECT_SMALL_MAX_DATASIZE: u16 = 0xFF;
2910
-
2911
- // Consts for the MIH FLAGS
2912
- pub const IMAGE_COR_MIH_METHODRVA: u16 = 0x01;
2913
- pub const IMAGE_COR_MIH_EHRVA: u16 = 0x02;
2914
- pub const IMAGE_COR_MIH_BASICBLOCK: u16 = 0x08;
2915
-
2916
- // V-table constants
2917
- /// V-table slots are 32-bits in size.
2918
- pub const COR_VTABLE_32BIT: u16 = 0x01;
2919
- /// V-table slots are 64-bits in size.
2920
- pub const COR_VTABLE_64BIT: u16 = 0x02;
2921
- /// If set, transition from unmanaged.
2922
- pub const COR_VTABLE_FROM_UNMANAGED: u16 = 0x04;
2923
- /// If set, transition from unmanaged with keeping the current appdomain.
2924
- pub const COR_VTABLE_FROM_UNMANAGED_RETAIN_APPDOMAIN: u16 = 0x08;
2925
- /// Call most derived method described by
2926
- pub const COR_VTABLE_CALL_MOST_DERIVED: u16 = 0x10;
2927
-
2928
- // EATJ constants
2929
- /// Size of a jump thunk reserved range.
2930
- pub const IMAGE_COR_EATJ_THUNK_SIZE: usize = 32;
2931
-
2932
- // Max name lengths
2933
- pub const MAX_CLASS_NAME: usize = 1024;
2934
- pub const MAX_PACKAGE_NAME: usize = 1024;
2935
-
2936
- // CLR 2.0 header structure.
2937
- #[derive(Debug, Clone, Copy)]
2938
- #[repr(C)]
2939
- pub struct ImageCor20Header {
2940
- // Header versioning
2941
- pub cb: U32<LE>,
2942
- pub major_runtime_version: U16<LE>,
2943
- pub minor_runtime_version: U16<LE>,
2944
-
2945
- // Symbol table and startup information
2946
- pub meta_data: ImageDataDirectory,
2947
- pub flags: U32<LE>,
2948
-
2949
- // If COMIMAGE_FLAGS_NATIVE_ENTRYPOINT is not set, EntryPointToken represents a managed entrypoint.
2950
- // If COMIMAGE_FLAGS_NATIVE_ENTRYPOINT is set, EntryPointRVA represents an RVA to a native entrypoint.
2951
- pub entry_point_token_or_rva: U32<LE>,
2952
-
2953
- // Binding information
2954
- pub resources: ImageDataDirectory,
2955
- pub strong_name_signature: ImageDataDirectory,
2956
-
2957
- // Regular fixup and binding information
2958
- pub code_manager_table: ImageDataDirectory,
2959
- pub vtable_fixups: ImageDataDirectory,
2960
- pub export_address_table_jumps: ImageDataDirectory,
2961
-
2962
- // Precompiled image info (internal use only - set to zero)
2963
- pub managed_native_header: ImageDataDirectory,
2964
- }
2965
-
2966
- unsafe_impl_pod!(
2967
- ImageDosHeader,
2968
- ImageOs2Header,
2969
- ImageVxdHeader,
2970
- ImageFileHeader,
2971
- ImageDataDirectory,
2972
- ImageOptionalHeader32,
2973
- ImageRomOptionalHeader,
2974
- ImageOptionalHeader64,
2975
- ImageNtHeaders64,
2976
- ImageNtHeaders32,
2977
- ImageRomHeaders,
2978
- Guid,
2979
- AnonObjectHeader,
2980
- AnonObjectHeaderV2,
2981
- AnonObjectHeaderBigobj,
2982
- ImageSectionHeader,
2983
- ImageSymbol,
2984
- ImageSymbolBytes,
2985
- ImageSymbolEx,
2986
- ImageSymbolExBytes,
2987
- ImageAuxSymbolTokenDef,
2988
- ImageAuxSymbolFunction,
2989
- ImageAuxSymbolFunctionBeginEnd,
2990
- ImageAuxSymbolWeak,
2991
- ImageAuxSymbolSection,
2992
- ImageAuxSymbolCrc,
2993
- ImageRelocation,
2994
- ImageLinenumber,
2995
- ImageBaseRelocation,
2996
- ImageArchiveMemberHeader,
2997
- ImageExportDirectory,
2998
- ImageImportByName,
2999
- ImageThunkData64,
3000
- ImageThunkData32,
3001
- ImageTlsDirectory64,
3002
- ImageTlsDirectory32,
3003
- ImageImportDescriptor,
3004
- ImageBoundImportDescriptor,
3005
- ImageBoundForwarderRef,
3006
- ImageDelayloadDescriptor,
3007
- ImageResourceDirectory,
3008
- ImageResourceDirectoryEntry,
3009
- ImageResourceDirectoryString,
3010
- ImageResourceDirStringU,
3011
- ImageResourceDataEntry,
3012
- ImageLoadConfigCodeIntegrity,
3013
- ImageDynamicRelocationTable,
3014
- ImageDynamicRelocation32,
3015
- ImageDynamicRelocation64,
3016
- ImageDynamicRelocation32V2,
3017
- ImageDynamicRelocation64V2,
3018
- ImagePrologueDynamicRelocationHeader,
3019
- ImageEpilogueDynamicRelocationHeader,
3020
- //ImageImportControlTransferDynamicRelocation,
3021
- //ImageIndirControlTransferDynamicRelocation,
3022
- //ImageSwitchtableBranchDynamicRelocation,
3023
- ImageLoadConfigDirectory32,
3024
- ImageLoadConfigDirectory64,
3025
- ImageHotPatchInfo,
3026
- ImageHotPatchBase,
3027
- ImageHotPatchHashes,
3028
- //ImageCeRuntimeFunctionEntry,
3029
- ImageArmRuntimeFunctionEntry,
3030
- ImageArm64RuntimeFunctionEntry,
3031
- ImageAlpha64RuntimeFunctionEntry,
3032
- ImageAlphaRuntimeFunctionEntry,
3033
- ImageRuntimeFunctionEntry,
3034
- ImageEnclaveConfig32,
3035
- ImageEnclaveConfig64,
3036
- ImageEnclaveImport,
3037
- ImageDebugDirectory,
3038
- ImageCoffSymbolsHeader,
3039
- //FpoData,
3040
- ImageDebugMisc,
3041
- ImageFunctionEntry,
3042
- ImageFunctionEntry64,
3043
- ImageSeparateDebugHeader,
3044
- NonPagedDebugInfo,
3045
- //ImageArchitectureHeader,
3046
- ImageArchitectureEntry,
3047
- ImportObjectHeader,
3048
- ImageCor20Header,
3049
- MaskedRichHeaderEntry,
3050
- );