wasmtime 21.0.1 → 23.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2477) hide show
  1. checksums.yaml +4 -4
  2. data/Cargo.lock +129 -99
  3. data/ext/Cargo.toml +5 -5
  4. data/ext/cargo-vendor/cranelift-bforest-0.110.2/.cargo-checksum.json +1 -0
  5. data/ext/cargo-vendor/cranelift-bforest-0.110.2/Cargo.toml +50 -0
  6. data/ext/cargo-vendor/cranelift-bitset-0.110.2/.cargo-checksum.json +1 -0
  7. data/ext/cargo-vendor/cranelift-bitset-0.110.2/Cargo.toml +60 -0
  8. data/ext/cargo-vendor/cranelift-bitset-0.110.2/src/compound.rs +508 -0
  9. data/ext/cargo-vendor/cranelift-bitset-0.110.2/src/lib.rs +19 -0
  10. data/ext/cargo-vendor/cranelift-bitset-0.110.2/src/scalar.rs +575 -0
  11. data/ext/cargo-vendor/cranelift-bitset-0.110.2/tests/bitset.rs +78 -0
  12. data/ext/cargo-vendor/cranelift-codegen-0.110.2/.cargo-checksum.json +1 -0
  13. data/ext/cargo-vendor/cranelift-codegen-0.110.2/Cargo.toml +206 -0
  14. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/binemit/stack_map.rs +141 -0
  15. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/context.rs +390 -0
  16. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/data_value.rs +410 -0
  17. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/dominator_tree.rs +727 -0
  18. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/egraph.rs +835 -0
  19. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/inst_predicates.rs +230 -0
  20. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/ir/dfg.rs +1806 -0
  21. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/ir/extfunc.rs +402 -0
  22. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/ir/globalvalue.rs +147 -0
  23. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/ir/immediates.rs +2109 -0
  24. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/ir/instructions.rs +1015 -0
  25. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/ir/jumptable.rs +168 -0
  26. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/ir/mod.rs +110 -0
  27. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/ir/stackslot.rs +208 -0
  28. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/ir/trapcode.rs +148 -0
  29. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/ir/types.rs +643 -0
  30. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/ir/user_stack_maps.rs +101 -0
  31. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/aarch64/abi.rs +1556 -0
  32. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/aarch64/inst/args.rs +711 -0
  33. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/aarch64/inst/emit.rs +3605 -0
  34. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/aarch64/inst/emit_tests.rs +7927 -0
  35. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/aarch64/inst/imms.rs +1213 -0
  36. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/aarch64/inst/mod.rs +3058 -0
  37. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/aarch64/inst/regs.rs +269 -0
  38. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/aarch64/inst/unwind/systemv.rs +174 -0
  39. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/aarch64/inst.isle +4221 -0
  40. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/aarch64/lower.isle +2969 -0
  41. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/aarch64/mod.rs +259 -0
  42. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/aarch64/pcc.rs +568 -0
  43. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/mod.rs +462 -0
  44. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/riscv64/abi.rs +1029 -0
  45. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/riscv64/inst/args.rs +2054 -0
  46. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/riscv64/inst/emit.rs +2741 -0
  47. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/riscv64/inst/emit_tests.rs +2219 -0
  48. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/riscv64/inst/encode.rs +675 -0
  49. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/riscv64/inst/imms.rs +374 -0
  50. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/riscv64/inst/mod.rs +1935 -0
  51. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/riscv64/inst/unwind/systemv.rs +170 -0
  52. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/riscv64/inst/vector.rs +1150 -0
  53. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/riscv64/inst.isle +3153 -0
  54. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/riscv64/inst_vector.isle +1907 -0
  55. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/riscv64/lower/isle.rs +654 -0
  56. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/riscv64/lower.isle +2953 -0
  57. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/riscv64/mod.rs +265 -0
  58. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/s390x/abi.rs +1016 -0
  59. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/s390x/inst/args.rs +298 -0
  60. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/s390x/inst/emit.rs +3421 -0
  61. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/s390x/inst/emit_tests.rs +13388 -0
  62. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/s390x/inst/imms.rs +202 -0
  63. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/s390x/inst/mod.rs +3395 -0
  64. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/s390x/inst/regs.rs +169 -0
  65. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/s390x/inst/unwind/systemv.rs +212 -0
  66. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/s390x/inst.isle +5028 -0
  67. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/s390x/lower.isle +3983 -0
  68. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/s390x/mod.rs +220 -0
  69. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/x64/abi.rs +1390 -0
  70. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/x64/inst/args.rs +2240 -0
  71. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/x64/inst/emit.rs +4297 -0
  72. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/x64/inst/emit_state.rs +65 -0
  73. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/x64/inst/emit_tests.rs +5171 -0
  74. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/x64/inst/mod.rs +2818 -0
  75. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/x64/inst/regs.rs +275 -0
  76. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/x64/inst/unwind/systemv.rs +198 -0
  77. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/x64/inst.isle +5299 -0
  78. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/x64/lower.isle +4819 -0
  79. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/x64/mod.rs +239 -0
  80. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/x64/pcc.rs +1014 -0
  81. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isle_prelude.rs +965 -0
  82. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/legalizer/mod.rs +343 -0
  83. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/lib.rs +106 -0
  84. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/machinst/abi.rs +2427 -0
  85. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/machinst/blockorder.rs +465 -0
  86. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/machinst/buffer.rs +2544 -0
  87. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/machinst/helpers.rs +23 -0
  88. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/machinst/isle.rs +908 -0
  89. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/machinst/lower.rs +1462 -0
  90. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/machinst/mod.rs +564 -0
  91. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/machinst/reg.rs +479 -0
  92. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/machinst/valueregs.rs +138 -0
  93. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/machinst/vcode.rs +1840 -0
  94. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/opts/cprop.isle +297 -0
  95. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/opts/shifts.isle +307 -0
  96. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/prelude.isle +654 -0
  97. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/prelude_lower.isle +1070 -0
  98. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/timing.rs +296 -0
  99. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/traversals.rs +216 -0
  100. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/verifier/mod.rs +1957 -0
  101. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/write.rs +660 -0
  102. data/ext/cargo-vendor/cranelift-codegen-meta-0.110.2/.cargo-checksum.json +1 -0
  103. data/ext/cargo-vendor/cranelift-codegen-meta-0.110.2/Cargo.toml +45 -0
  104. data/ext/cargo-vendor/cranelift-codegen-meta-0.110.2/src/cdsl/types.rs +512 -0
  105. data/ext/cargo-vendor/cranelift-codegen-meta-0.110.2/src/cdsl/typevar.rs +980 -0
  106. data/ext/cargo-vendor/cranelift-codegen-meta-0.110.2/src/gen_inst.rs +1278 -0
  107. data/ext/cargo-vendor/cranelift-codegen-meta-0.110.2/src/isa/riscv64.rs +174 -0
  108. data/ext/cargo-vendor/cranelift-codegen-meta-0.110.2/src/shared/instructions.rs +3760 -0
  109. data/ext/cargo-vendor/cranelift-codegen-meta-0.110.2/src/shared/types.rs +143 -0
  110. data/ext/cargo-vendor/cranelift-codegen-shared-0.110.2/.cargo-checksum.json +1 -0
  111. data/ext/cargo-vendor/cranelift-codegen-shared-0.110.2/Cargo.toml +31 -0
  112. data/ext/cargo-vendor/cranelift-codegen-shared-0.110.2/src/constants.rs +28 -0
  113. data/ext/cargo-vendor/cranelift-control-0.110.2/.cargo-checksum.json +1 -0
  114. data/ext/cargo-vendor/cranelift-control-0.110.2/Cargo.toml +39 -0
  115. data/ext/cargo-vendor/cranelift-entity-0.110.2/.cargo-checksum.json +1 -0
  116. data/ext/cargo-vendor/cranelift-entity-0.110.2/Cargo.toml +66 -0
  117. data/ext/cargo-vendor/cranelift-entity-0.110.2/src/set.rs +193 -0
  118. data/ext/cargo-vendor/cranelift-frontend-0.110.2/.cargo-checksum.json +1 -0
  119. data/ext/cargo-vendor/cranelift-frontend-0.110.2/Cargo.toml +87 -0
  120. data/ext/cargo-vendor/cranelift-frontend-0.110.2/src/frontend.rs +2867 -0
  121. data/ext/cargo-vendor/cranelift-frontend-0.110.2/src/lib.rs +187 -0
  122. data/ext/cargo-vendor/cranelift-frontend-0.110.2/src/ssa.rs +1328 -0
  123. data/ext/cargo-vendor/cranelift-isle-0.110.2/.cargo-checksum.json +1 -0
  124. data/ext/cargo-vendor/cranelift-isle-0.110.2/Cargo.toml +60 -0
  125. data/ext/cargo-vendor/cranelift-isle-0.110.2/src/codegen.rs +920 -0
  126. data/ext/cargo-vendor/cranelift-isle-0.110.2/src/parser.rs +562 -0
  127. data/ext/cargo-vendor/cranelift-isle-0.110.2/src/sema.rs +2503 -0
  128. data/ext/cargo-vendor/cranelift-isle-0.110.2/src/trie_again.rs +695 -0
  129. data/ext/cargo-vendor/cranelift-native-0.110.2/.cargo-checksum.json +1 -0
  130. data/ext/cargo-vendor/cranelift-native-0.110.2/Cargo.toml +52 -0
  131. data/ext/cargo-vendor/cranelift-native-0.110.2/src/lib.rs +188 -0
  132. data/ext/cargo-vendor/cranelift-native-0.110.2/src/riscv.rs +128 -0
  133. data/ext/cargo-vendor/cranelift-wasm-0.110.2/.cargo-checksum.json +1 -0
  134. data/ext/cargo-vendor/cranelift-wasm-0.110.2/Cargo.toml +119 -0
  135. data/ext/cargo-vendor/cranelift-wasm-0.110.2/src/code_translator/bounds_checks.rs +731 -0
  136. data/ext/cargo-vendor/cranelift-wasm-0.110.2/src/code_translator.rs +3694 -0
  137. data/ext/cargo-vendor/cranelift-wasm-0.110.2/src/func_translator.rs +296 -0
  138. data/ext/cargo-vendor/cranelift-wasm-0.110.2/src/heap.rs +119 -0
  139. data/ext/cargo-vendor/cranelift-wasm-0.110.2/src/module_translator.rs +120 -0
  140. data/ext/cargo-vendor/cranelift-wasm-0.110.2/src/sections_translator.rs +333 -0
  141. data/ext/cargo-vendor/cranelift-wasm-0.110.2/src/state.rs +522 -0
  142. data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.23/.cargo-checksum.json +1 -0
  143. data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.23/Cargo.toml +69 -0
  144. data/ext/cargo-vendor/object-0.36.3/.cargo-checksum.json +1 -0
  145. data/ext/cargo-vendor/object-0.36.3/CHANGELOG.md +1028 -0
  146. data/ext/cargo-vendor/object-0.36.3/Cargo.toml +180 -0
  147. data/ext/cargo-vendor/object-0.36.3/README.md +60 -0
  148. data/ext/cargo-vendor/object-0.36.3/src/build/bytes.rs +146 -0
  149. data/ext/cargo-vendor/object-0.36.3/src/build/elf.rs +3113 -0
  150. data/ext/cargo-vendor/object-0.36.3/src/common.rs +590 -0
  151. data/ext/cargo-vendor/object-0.36.3/src/elf.rs +6303 -0
  152. data/ext/cargo-vendor/object-0.36.3/src/endian.rs +831 -0
  153. data/ext/cargo-vendor/object-0.36.3/src/macho.rs +3303 -0
  154. data/ext/cargo-vendor/object-0.36.3/src/pod.rs +281 -0
  155. data/ext/cargo-vendor/object-0.36.3/src/read/any.rs +1334 -0
  156. data/ext/cargo-vendor/object-0.36.3/src/read/archive.rs +1133 -0
  157. data/ext/cargo-vendor/object-0.36.3/src/read/coff/comdat.rs +220 -0
  158. data/ext/cargo-vendor/object-0.36.3/src/read/coff/file.rs +381 -0
  159. data/ext/cargo-vendor/object-0.36.3/src/read/coff/relocation.rs +113 -0
  160. data/ext/cargo-vendor/object-0.36.3/src/read/coff/section.rs +619 -0
  161. data/ext/cargo-vendor/object-0.36.3/src/read/coff/symbol.rs +669 -0
  162. data/ext/cargo-vendor/object-0.36.3/src/read/elf/attributes.rs +340 -0
  163. data/ext/cargo-vendor/object-0.36.3/src/read/elf/comdat.rs +186 -0
  164. data/ext/cargo-vendor/object-0.36.3/src/read/elf/file.rs +959 -0
  165. data/ext/cargo-vendor/object-0.36.3/src/read/elf/hash.rs +236 -0
  166. data/ext/cargo-vendor/object-0.36.3/src/read/elf/note.rs +302 -0
  167. data/ext/cargo-vendor/object-0.36.3/src/read/elf/relocation.rs +661 -0
  168. data/ext/cargo-vendor/object-0.36.3/src/read/elf/section.rs +1241 -0
  169. data/ext/cargo-vendor/object-0.36.3/src/read/elf/segment.rs +365 -0
  170. data/ext/cargo-vendor/object-0.36.3/src/read/elf/symbol.rs +654 -0
  171. data/ext/cargo-vendor/object-0.36.3/src/read/elf/version.rs +513 -0
  172. data/ext/cargo-vendor/object-0.36.3/src/read/gnu_compression.rs +36 -0
  173. data/ext/cargo-vendor/object-0.36.3/src/read/macho/dyld_cache.rs +384 -0
  174. data/ext/cargo-vendor/object-0.36.3/src/read/macho/file.rs +779 -0
  175. data/ext/cargo-vendor/object-0.36.3/src/read/macho/load_command.rs +404 -0
  176. data/ext/cargo-vendor/object-0.36.3/src/read/macho/section.rs +420 -0
  177. data/ext/cargo-vendor/object-0.36.3/src/read/macho/segment.rs +317 -0
  178. data/ext/cargo-vendor/object-0.36.3/src/read/macho/symbol.rs +532 -0
  179. data/ext/cargo-vendor/object-0.36.3/src/read/mod.rs +1018 -0
  180. data/ext/cargo-vendor/object-0.36.3/src/read/pe/file.rs +1033 -0
  181. data/ext/cargo-vendor/object-0.36.3/src/read/pe/import.rs +381 -0
  182. data/ext/cargo-vendor/object-0.36.3/src/read/pe/relocation.rs +109 -0
  183. data/ext/cargo-vendor/object-0.36.3/src/read/pe/section.rs +476 -0
  184. data/ext/cargo-vendor/object-0.36.3/src/read/read_cache.rs +261 -0
  185. data/ext/cargo-vendor/object-0.36.3/src/read/traits.rs +589 -0
  186. data/ext/cargo-vendor/object-0.36.3/src/read/wasm.rs +983 -0
  187. data/ext/cargo-vendor/object-0.36.3/src/read/xcoff/file.rs +716 -0
  188. data/ext/cargo-vendor/object-0.36.3/src/read/xcoff/relocation.rs +138 -0
  189. data/ext/cargo-vendor/object-0.36.3/src/read/xcoff/section.rs +452 -0
  190. data/ext/cargo-vendor/object-0.36.3/src/read/xcoff/symbol.rs +836 -0
  191. data/ext/cargo-vendor/object-0.36.3/src/write/coff/object.rs +681 -0
  192. data/ext/cargo-vendor/object-0.36.3/src/write/coff/writer.rs +520 -0
  193. data/ext/cargo-vendor/object-0.36.3/src/write/elf/object.rs +897 -0
  194. data/ext/cargo-vendor/object-0.36.3/src/write/elf/writer.rs +2361 -0
  195. data/ext/cargo-vendor/object-0.36.3/src/write/macho.rs +1124 -0
  196. data/ext/cargo-vendor/object-0.36.3/src/write/mod.rs +1023 -0
  197. data/ext/cargo-vendor/object-0.36.3/src/write/pe.rs +849 -0
  198. data/ext/cargo-vendor/object-0.36.3/src/write/xcoff.rs +588 -0
  199. data/ext/cargo-vendor/object-0.36.3/tests/build/elf.rs +254 -0
  200. data/ext/cargo-vendor/object-0.36.3/tests/build/mod.rs +3 -0
  201. data/ext/cargo-vendor/object-0.36.3/tests/integration.rs +3 -0
  202. data/ext/cargo-vendor/object-0.36.3/tests/read/macho.rs +49 -0
  203. data/ext/cargo-vendor/object-0.36.3/tests/read/mod.rs +5 -0
  204. data/ext/cargo-vendor/object-0.36.3/tests/round_trip/bss.rs +244 -0
  205. data/ext/cargo-vendor/object-0.36.3/tests/round_trip/comdat.rs +217 -0
  206. data/ext/cargo-vendor/object-0.36.3/tests/round_trip/common.rs +241 -0
  207. data/ext/cargo-vendor/object-0.36.3/tests/round_trip/elf.rs +302 -0
  208. data/ext/cargo-vendor/object-0.36.3/tests/round_trip/mod.rs +682 -0
  209. data/ext/cargo-vendor/object-0.36.3/tests/round_trip/section_flags.rs +89 -0
  210. data/ext/cargo-vendor/object-0.36.3/tests/round_trip/tls.rs +308 -0
  211. data/ext/cargo-vendor/termcolor-1.4.1/.cargo-checksum.json +1 -0
  212. data/ext/cargo-vendor/termcolor-1.4.1/COPYING +3 -0
  213. data/ext/cargo-vendor/termcolor-1.4.1/Cargo.toml +40 -0
  214. data/ext/cargo-vendor/termcolor-1.4.1/LICENSE-MIT +21 -0
  215. data/ext/cargo-vendor/termcolor-1.4.1/README.md +110 -0
  216. data/ext/cargo-vendor/termcolor-1.4.1/UNLICENSE +24 -0
  217. data/ext/cargo-vendor/termcolor-1.4.1/rustfmt.toml +2 -0
  218. data/ext/cargo-vendor/termcolor-1.4.1/src/lib.rs +2572 -0
  219. data/ext/cargo-vendor/wasi-common-23.0.2/.cargo-checksum.json +1 -0
  220. data/ext/cargo-vendor/wasi-common-23.0.2/Cargo.toml +234 -0
  221. data/ext/cargo-vendor/wasi-common-23.0.2/src/snapshots/preview_0.rs +1080 -0
  222. data/ext/cargo-vendor/wasi-common-23.0.2/src/snapshots/preview_1.rs +1562 -0
  223. data/ext/cargo-vendor/wasi-common-23.0.2/src/string_array.rs +75 -0
  224. data/ext/cargo-vendor/wasi-common-23.0.2/src/sync/sched/windows.rs +221 -0
  225. data/ext/cargo-vendor/wasi-common-23.0.2/src/tokio/file.rs +247 -0
  226. data/ext/cargo-vendor/wasi-common-23.0.2/src/tokio/mod.rs +135 -0
  227. data/ext/cargo-vendor/wasi-common-23.0.2/tests/all/async_.rs +295 -0
  228. data/ext/cargo-vendor/wasi-common-23.0.2/tests/all/sync.rs +284 -0
  229. data/ext/cargo-vendor/wasm-encoder-0.212.0/.cargo-checksum.json +1 -0
  230. data/ext/cargo-vendor/wasm-encoder-0.212.0/Cargo.toml +49 -0
  231. data/ext/cargo-vendor/wasm-encoder-0.212.0/src/component/types.rs +771 -0
  232. data/ext/cargo-vendor/wasm-encoder-0.212.0/src/core/code.rs +3571 -0
  233. data/ext/cargo-vendor/wasm-encoder-0.212.0/src/core/exports.rs +85 -0
  234. data/ext/cargo-vendor/wasm-encoder-0.212.0/src/core/globals.rs +100 -0
  235. data/ext/cargo-vendor/wasm-encoder-0.212.0/src/core/imports.rs +143 -0
  236. data/ext/cargo-vendor/wasm-encoder-0.212.0/src/core/memories.rs +115 -0
  237. data/ext/cargo-vendor/wasm-encoder-0.212.0/src/core/tables.rs +121 -0
  238. data/ext/cargo-vendor/wasm-encoder-0.212.0/src/core/tags.rs +85 -0
  239. data/ext/cargo-vendor/wasm-encoder-0.212.0/src/core/types.rs +663 -0
  240. data/ext/cargo-vendor/wasm-encoder-0.212.0/src/lib.rs +218 -0
  241. data/ext/cargo-vendor/wasm-encoder-0.212.0/src/reencode.rs +1804 -0
  242. data/ext/cargo-vendor/wasm-encoder-0.215.0/.cargo-checksum.json +1 -0
  243. data/ext/cargo-vendor/wasm-encoder-0.215.0/Cargo.toml +65 -0
  244. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/component/types.rs +802 -0
  245. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/core/code.rs +3947 -0
  246. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/core/dump.rs +627 -0
  247. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/core/elements.rs +222 -0
  248. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/core/exports.rs +85 -0
  249. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/core/globals.rs +100 -0
  250. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/core/imports.rs +143 -0
  251. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/core/memories.rs +115 -0
  252. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/core/producers.rs +181 -0
  253. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/core/tables.rs +129 -0
  254. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/core/tags.rs +85 -0
  255. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/core/types.rs +678 -0
  256. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/lib.rs +218 -0
  257. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/reencode.rs +2002 -0
  258. data/ext/cargo-vendor/wasmparser-0.212.0/.cargo-checksum.json +1 -0
  259. data/ext/cargo-vendor/wasmparser-0.212.0/Cargo.lock +669 -0
  260. data/ext/cargo-vendor/wasmparser-0.212.0/Cargo.toml +112 -0
  261. data/ext/cargo-vendor/wasmparser-0.212.0/src/binary_reader.rs +1968 -0
  262. data/ext/cargo-vendor/wasmparser-0.212.0/src/collections/hash.rs +120 -0
  263. data/ext/cargo-vendor/wasmparser-0.212.0/src/collections/index_map/detail.rs +1094 -0
  264. data/ext/cargo-vendor/wasmparser-0.212.0/src/collections/index_map/tests.rs +183 -0
  265. data/ext/cargo-vendor/wasmparser-0.212.0/src/collections/index_map.rs +656 -0
  266. data/ext/cargo-vendor/wasmparser-0.212.0/src/collections/index_set.rs +316 -0
  267. data/ext/cargo-vendor/wasmparser-0.212.0/src/collections/map.rs +840 -0
  268. data/ext/cargo-vendor/wasmparser-0.212.0/src/collections/mod.rs +24 -0
  269. data/ext/cargo-vendor/wasmparser-0.212.0/src/collections/set.rs +660 -0
  270. data/ext/cargo-vendor/wasmparser-0.212.0/src/features.rs +166 -0
  271. data/ext/cargo-vendor/wasmparser-0.212.0/src/lib.rs +814 -0
  272. data/ext/cargo-vendor/wasmparser-0.212.0/src/limits.rs +79 -0
  273. data/ext/cargo-vendor/wasmparser-0.212.0/src/parser.rs +1682 -0
  274. data/ext/cargo-vendor/wasmparser-0.212.0/src/readers/component/imports.rs +130 -0
  275. data/ext/cargo-vendor/wasmparser-0.212.0/src/readers/component/instances.rs +166 -0
  276. data/ext/cargo-vendor/wasmparser-0.212.0/src/readers/component/names.rs +99 -0
  277. data/ext/cargo-vendor/wasmparser-0.212.0/src/readers/component/types.rs +553 -0
  278. data/ext/cargo-vendor/wasmparser-0.212.0/src/readers/core/branch_hinting.rs +59 -0
  279. data/ext/cargo-vendor/wasmparser-0.212.0/src/readers/core/code.rs +142 -0
  280. data/ext/cargo-vendor/wasmparser-0.212.0/src/readers/core/coredumps.rs +278 -0
  281. data/ext/cargo-vendor/wasmparser-0.212.0/src/readers/core/custom.rs +128 -0
  282. data/ext/cargo-vendor/wasmparser-0.212.0/src/readers/core/data.rs +96 -0
  283. data/ext/cargo-vendor/wasmparser-0.212.0/src/readers/core/elements.rs +146 -0
  284. data/ext/cargo-vendor/wasmparser-0.212.0/src/readers/core/globals.rs +61 -0
  285. data/ext/cargo-vendor/wasmparser-0.212.0/src/readers/core/init.rs +57 -0
  286. data/ext/cargo-vendor/wasmparser-0.212.0/src/readers/core/linking.rs +457 -0
  287. data/ext/cargo-vendor/wasmparser-0.212.0/src/readers/core/names.rs +159 -0
  288. data/ext/cargo-vendor/wasmparser-0.212.0/src/readers/core/operators.rs +453 -0
  289. data/ext/cargo-vendor/wasmparser-0.212.0/src/readers/core/producers.rs +84 -0
  290. data/ext/cargo-vendor/wasmparser-0.212.0/src/readers/core/reloc.rs +300 -0
  291. data/ext/cargo-vendor/wasmparser-0.212.0/src/readers/core/tables.rs +93 -0
  292. data/ext/cargo-vendor/wasmparser-0.212.0/src/readers/core/types.rs +1941 -0
  293. data/ext/cargo-vendor/wasmparser-0.212.0/src/readers.rs +315 -0
  294. data/ext/cargo-vendor/wasmparser-0.212.0/src/resources.rs +234 -0
  295. data/ext/cargo-vendor/wasmparser-0.212.0/src/validator/component.rs +3252 -0
  296. data/ext/cargo-vendor/wasmparser-0.212.0/src/validator/core/canonical.rs +233 -0
  297. data/ext/cargo-vendor/wasmparser-0.212.0/src/validator/core.rs +1454 -0
  298. data/ext/cargo-vendor/wasmparser-0.212.0/src/validator/func.rs +331 -0
  299. data/ext/cargo-vendor/wasmparser-0.212.0/src/validator/names.rs +1016 -0
  300. data/ext/cargo-vendor/wasmparser-0.212.0/src/validator/operators.rs +4230 -0
  301. data/ext/cargo-vendor/wasmparser-0.212.0/src/validator/types.rs +4598 -0
  302. data/ext/cargo-vendor/wasmparser-0.212.0/src/validator.rs +1632 -0
  303. data/ext/cargo-vendor/wasmprinter-0.212.0/.cargo-checksum.json +1 -0
  304. data/ext/cargo-vendor/wasmprinter-0.212.0/Cargo.toml +54 -0
  305. data/ext/cargo-vendor/wasmprinter-0.212.0/src/lib.rs +3221 -0
  306. data/ext/cargo-vendor/wasmprinter-0.212.0/src/operator.rs +1189 -0
  307. data/ext/cargo-vendor/wasmprinter-0.212.0/src/print.rs +190 -0
  308. data/ext/cargo-vendor/wasmprinter-0.212.0/tests/all.rs +48 -0
  309. data/ext/cargo-vendor/wasmtime-23.0.2/.cargo-checksum.json +1 -0
  310. data/ext/cargo-vendor/wasmtime-23.0.2/Cargo.toml +399 -0
  311. data/ext/cargo-vendor/wasmtime-23.0.2/build.rs +38 -0
  312. data/ext/cargo-vendor/wasmtime-23.0.2/src/compile/code_builder.rs +274 -0
  313. data/ext/cargo-vendor/wasmtime-23.0.2/src/compile/runtime.rs +167 -0
  314. data/ext/cargo-vendor/wasmtime-23.0.2/src/compile.rs +881 -0
  315. data/ext/cargo-vendor/wasmtime-23.0.2/src/config.rs +2902 -0
  316. data/ext/cargo-vendor/wasmtime-23.0.2/src/engine/serialization.rs +893 -0
  317. data/ext/cargo-vendor/wasmtime-23.0.2/src/engine.rs +719 -0
  318. data/ext/cargo-vendor/wasmtime-23.0.2/src/lib.rs +406 -0
  319. data/ext/cargo-vendor/wasmtime-23.0.2/src/profiling_agent/jitdump.rs +65 -0
  320. data/ext/cargo-vendor/wasmtime-23.0.2/src/profiling_agent/perfmap.rs +47 -0
  321. data/ext/cargo-vendor/wasmtime-23.0.2/src/profiling_agent/vtune.rs +80 -0
  322. data/ext/cargo-vendor/wasmtime-23.0.2/src/profiling_agent.rs +104 -0
  323. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/code.rs +102 -0
  324. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/code_memory.rs +337 -0
  325. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/component/bindgen_examples/_0_hello_world.rs +9 -0
  326. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/component/bindgen_examples/_1_world_imports.rs +17 -0
  327. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/component/bindgen_examples/_2_world_exports.rs +18 -0
  328. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/component/bindgen_examples/_3_interface_imports.rs +20 -0
  329. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/component/bindgen_examples/_4_imported_resources.rs +45 -0
  330. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/component/bindgen_examples/_5_all_world_export_kinds.rs +29 -0
  331. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/component/bindgen_examples/_6_exported_resources.rs +26 -0
  332. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/component/bindgen_examples/mod.rs +488 -0
  333. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/component/component.rs +811 -0
  334. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/component/func/host.rs +439 -0
  335. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/component/func/options.rs +552 -0
  336. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/component/func/typed.rs +2497 -0
  337. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/component/func.rs +688 -0
  338. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/component/instance.rs +846 -0
  339. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/component/linker.rs +673 -0
  340. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/component/matching.rs +216 -0
  341. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/component/mod.rs +663 -0
  342. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/component/resource_table.rs +355 -0
  343. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/component/resources.rs +1132 -0
  344. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/component/types.rs +897 -0
  345. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/component/values.rs +979 -0
  346. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/coredump.rs +339 -0
  347. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/debug.rs +165 -0
  348. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/externals/global.rs +310 -0
  349. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/externals/table.rs +480 -0
  350. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/func/typed.rs +788 -0
  351. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/func.rs +2593 -0
  352. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/gc/disabled/rooting.rs +224 -0
  353. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/gc/enabled/anyref.rs +410 -0
  354. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/gc/enabled/externref.rs +591 -0
  355. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/gc/enabled/i31.rs +299 -0
  356. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/gc/enabled/rooting.rs +1590 -0
  357. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/gc/noextern.rs +154 -0
  358. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/gc.rs +92 -0
  359. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/instance.rs +989 -0
  360. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/instantiate.rs +332 -0
  361. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/limits.rs +398 -0
  362. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/linker.rs +1498 -0
  363. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/memory.rs +1101 -0
  364. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/module/registry.rs +353 -0
  365. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/module.rs +1179 -0
  366. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/profiling.rs +280 -0
  367. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/stack.rs +72 -0
  368. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/store/data.rs +301 -0
  369. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/store/func_refs.rs +90 -0
  370. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/store.rs +2873 -0
  371. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/trampoline/func.rs +93 -0
  372. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/trampoline/memory.rs +295 -0
  373. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/trampoline/table.rs +28 -0
  374. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/trampoline.rs +75 -0
  375. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/trap.rs +642 -0
  376. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/type_registry.rs +1015 -0
  377. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/types/matching.rs +428 -0
  378. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/types.rs +2771 -0
  379. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/v128.rs +116 -0
  380. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/values.rs +966 -0
  381. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/arch/riscv64.rs +41 -0
  382. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/component/libcalls.rs +571 -0
  383. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/component/resources.rs +351 -0
  384. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/component.rs +857 -0
  385. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/const_expr.rs +102 -0
  386. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/cow.rs +988 -0
  387. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/export.rs +108 -0
  388. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/gc/disabled.rs +23 -0
  389. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/gc/enabled/drc.rs +964 -0
  390. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/gc/enabled/free_list.rs +770 -0
  391. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/gc/gc_ref.rs +490 -0
  392. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/gc/gc_runtime.rs +505 -0
  393. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/gc.rs +244 -0
  394. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/instance/allocator/on_demand.rs +219 -0
  395. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/instance/allocator/pooling/decommit_queue.rs +199 -0
  396. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/instance/allocator/pooling/gc_heap_pool.rs +93 -0
  397. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/instance/allocator/pooling/generic_stack_pool.rs +78 -0
  398. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/instance/allocator/pooling/index_allocator.rs +703 -0
  399. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/instance/allocator/pooling/memory_pool.rs +990 -0
  400. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/instance/allocator/pooling/table_pool.rs +245 -0
  401. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/instance/allocator/pooling/unix_stack_pool.rs +279 -0
  402. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/instance/allocator/pooling.rs +793 -0
  403. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/instance/allocator.rs +808 -0
  404. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/instance.rs +1518 -0
  405. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/libcalls.rs +832 -0
  406. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/memory.rs +815 -0
  407. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/mmap.rs +217 -0
  408. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/mmap_vec.rs +159 -0
  409. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/module_id.rs +19 -0
  410. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/mpk/disabled.rs +43 -0
  411. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/mpk/enabled.rs +213 -0
  412. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/mpk/mod.rs +59 -0
  413. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/mpk/sys.rs +113 -0
  414. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/sys/custom/capi.rs +200 -0
  415. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/sys/custom/mmap.rs +112 -0
  416. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/sys/custom/mod.rs +34 -0
  417. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/sys/custom/unwind.rs +17 -0
  418. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/sys/custom/vm.rs +105 -0
  419. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/sys/miri/mmap.rs +98 -0
  420. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/sys/miri/unwind.rs +17 -0
  421. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/sys/miri/vm.rs +59 -0
  422. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/sys/mod.rs +36 -0
  423. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/sys/unix/mmap.rs +159 -0
  424. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/sys/unix/signals.rs +407 -0
  425. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/sys/unix/unwind.rs +149 -0
  426. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/sys/unix/vm.rs +190 -0
  427. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/sys/windows/mmap.rs +220 -0
  428. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/sys/windows/unwind.rs +46 -0
  429. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/sys/windows/vm.rs +75 -0
  430. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/table.rs +898 -0
  431. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/threads/shared_memory.rs +235 -0
  432. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/threads/shared_memory_disabled.rs +104 -0
  433. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/traphandlers.rs +767 -0
  434. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/vmcontext/vm_host_func_context.rs +79 -0
  435. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/vmcontext.rs +1246 -0
  436. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm.rs +403 -0
  437. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime.rs +113 -0
  438. data/ext/cargo-vendor/wasmtime-asm-macros-23.0.2/.cargo-checksum.json +1 -0
  439. data/ext/cargo-vendor/wasmtime-asm-macros-23.0.2/Cargo.toml +32 -0
  440. data/ext/cargo-vendor/wasmtime-cache-23.0.2/.cargo-checksum.json +1 -0
  441. data/ext/cargo-vendor/wasmtime-cache-23.0.2/Cargo.toml +103 -0
  442. data/ext/cargo-vendor/wasmtime-cache-23.0.2/src/config.rs +584 -0
  443. data/ext/cargo-vendor/wasmtime-cache-23.0.2/src/lib.rs +235 -0
  444. data/ext/cargo-vendor/wasmtime-cache-23.0.2/src/tests.rs +91 -0
  445. data/ext/cargo-vendor/wasmtime-cache-23.0.2/src/worker/tests.rs +758 -0
  446. data/ext/cargo-vendor/wasmtime-cache-23.0.2/src/worker.rs +890 -0
  447. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/.cargo-checksum.json +1 -0
  448. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/Cargo.toml +106 -0
  449. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/src/bindgen.rs +500 -0
  450. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/src/component.rs +1330 -0
  451. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/codegen.rs +698 -0
  452. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/char.rs +268 -0
  453. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/char_async.rs +291 -0
  454. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/conventions.rs +706 -0
  455. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/conventions_async.rs +757 -0
  456. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/dead-code.rs +194 -0
  457. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/dead-code_async.rs +213 -0
  458. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/direct-import.rs +120 -0
  459. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/direct-import_async.rs +132 -0
  460. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/empty.rs +74 -0
  461. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/empty_async.rs +80 -0
  462. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/flags.rs +743 -0
  463. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/flags_async.rs +791 -0
  464. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/floats.rs +343 -0
  465. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/floats_async.rs +376 -0
  466. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/function-new.rs +94 -0
  467. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/function-new_async.rs +103 -0
  468. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/integers.rs +873 -0
  469. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/integers_async.rs +976 -0
  470. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/lists.rs +1924 -0
  471. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/lists_async.rs +2114 -0
  472. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/many-arguments.rs +614 -0
  473. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/many-arguments_async.rs +638 -0
  474. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/multi-return.rs +357 -0
  475. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/multi-return_async.rs +391 -0
  476. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/multiversion.rs +354 -0
  477. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/multiversion_async.rs +379 -0
  478. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/records.rs +940 -0
  479. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/records_async.rs +1008 -0
  480. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/rename.rs +183 -0
  481. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/rename_async.rs +202 -0
  482. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/resources-export.rs +657 -0
  483. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/resources-export_async.rs +712 -0
  484. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/resources-import.rs +1088 -0
  485. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/resources-import_async.rs +1166 -0
  486. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/share-types.rs +315 -0
  487. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/share-types_async.rs +337 -0
  488. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/simple-functions.rs +399 -0
  489. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/simple-functions_async.rs +439 -0
  490. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/simple-lists.rs +427 -0
  491. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/simple-lists_async.rs +464 -0
  492. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/simple-wasi.rs +245 -0
  493. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/simple-wasi_async.rs +264 -0
  494. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/small-anonymous.rs +338 -0
  495. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/small-anonymous_async.rs +356 -0
  496. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/smoke-default.rs +94 -0
  497. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/smoke-default_async.rs +103 -0
  498. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/smoke-export.rs +149 -0
  499. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/smoke-export_async.rs +158 -0
  500. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/smoke.rs +133 -0
  501. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/smoke_async.rs +146 -0
  502. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/strings.rs +316 -0
  503. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/strings_async.rs +344 -0
  504. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/unversioned-foo.rs +165 -0
  505. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/unversioned-foo_async.rs +178 -0
  506. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/use-paths.rs +317 -0
  507. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/use-paths_async.rs +349 -0
  508. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/variants.rs +1896 -0
  509. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/variants_async.rs +2019 -0
  510. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/wat.rs +145 -0
  511. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/wat_async.rs +151 -0
  512. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/worlds-with-types.rs +175 -0
  513. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/worlds-with-types_async.rs +191 -0
  514. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded.rs +65 -0
  515. data/ext/cargo-vendor/wasmtime-component-util-23.0.2/.cargo-checksum.json +1 -0
  516. data/ext/cargo-vendor/wasmtime-component-util-23.0.2/Cargo.toml +35 -0
  517. data/ext/cargo-vendor/wasmtime-cranelift-23.0.2/.cargo-checksum.json +1 -0
  518. data/ext/cargo-vendor/wasmtime-cranelift-23.0.2/Cargo.toml +125 -0
  519. data/ext/cargo-vendor/wasmtime-cranelift-23.0.2/src/compiler/component.rs +957 -0
  520. data/ext/cargo-vendor/wasmtime-cranelift-23.0.2/src/compiler.rs +1029 -0
  521. data/ext/cargo-vendor/wasmtime-cranelift-23.0.2/src/debug/gc.rs +257 -0
  522. data/ext/cargo-vendor/wasmtime-cranelift-23.0.2/src/debug/transform/address_transform.rs +841 -0
  523. data/ext/cargo-vendor/wasmtime-cranelift-23.0.2/src/debug/transform/attr.rs +328 -0
  524. data/ext/cargo-vendor/wasmtime-cranelift-23.0.2/src/debug/transform/expression.rs +1264 -0
  525. data/ext/cargo-vendor/wasmtime-cranelift-23.0.2/src/debug/transform/line_program.rs +287 -0
  526. data/ext/cargo-vendor/wasmtime-cranelift-23.0.2/src/debug/transform/mod.rs +273 -0
  527. data/ext/cargo-vendor/wasmtime-cranelift-23.0.2/src/debug/transform/range_info_builder.rs +234 -0
  528. data/ext/cargo-vendor/wasmtime-cranelift-23.0.2/src/debug/transform/simulate.rs +423 -0
  529. data/ext/cargo-vendor/wasmtime-cranelift-23.0.2/src/debug/transform/unit.rs +520 -0
  530. data/ext/cargo-vendor/wasmtime-cranelift-23.0.2/src/debug/transform/utils.rs +165 -0
  531. data/ext/cargo-vendor/wasmtime-cranelift-23.0.2/src/debug/write_debuginfo.rs +176 -0
  532. data/ext/cargo-vendor/wasmtime-cranelift-23.0.2/src/debug.rs +178 -0
  533. data/ext/cargo-vendor/wasmtime-cranelift-23.0.2/src/func_environ.rs +2721 -0
  534. data/ext/cargo-vendor/wasmtime-cranelift-23.0.2/src/gc/enabled.rs +648 -0
  535. data/ext/cargo-vendor/wasmtime-cranelift-23.0.2/src/lib.rs +458 -0
  536. data/ext/cargo-vendor/wasmtime-cranelift-23.0.2/src/obj.rs +545 -0
  537. data/ext/cargo-vendor/wasmtime-environ-23.0.2/.cargo-checksum.json +1 -0
  538. data/ext/cargo-vendor/wasmtime-environ-23.0.2/Cargo.lock +792 -0
  539. data/ext/cargo-vendor/wasmtime-environ-23.0.2/Cargo.toml +185 -0
  540. data/ext/cargo-vendor/wasmtime-environ-23.0.2/src/compile/address_map.rs +73 -0
  541. data/ext/cargo-vendor/wasmtime-environ-23.0.2/src/compile/mod.rs +379 -0
  542. data/ext/cargo-vendor/wasmtime-environ-23.0.2/src/compile/module_artifacts.rs +315 -0
  543. data/ext/cargo-vendor/wasmtime-environ-23.0.2/src/compile/module_environ.rs +1264 -0
  544. data/ext/cargo-vendor/wasmtime-environ-23.0.2/src/compile/module_types.rs +455 -0
  545. data/ext/cargo-vendor/wasmtime-environ-23.0.2/src/component/artifacts.rs +68 -0
  546. data/ext/cargo-vendor/wasmtime-environ-23.0.2/src/component/dfg.rs +718 -0
  547. data/ext/cargo-vendor/wasmtime-environ-23.0.2/src/component/info.rs +683 -0
  548. data/ext/cargo-vendor/wasmtime-environ-23.0.2/src/component/names.rs +275 -0
  549. data/ext/cargo-vendor/wasmtime-environ-23.0.2/src/component/translate/adapt.rs +455 -0
  550. data/ext/cargo-vendor/wasmtime-environ-23.0.2/src/component/translate/inline.rs +1333 -0
  551. data/ext/cargo-vendor/wasmtime-environ-23.0.2/src/component/translate.rs +993 -0
  552. data/ext/cargo-vendor/wasmtime-environ-23.0.2/src/component/types.rs +1041 -0
  553. data/ext/cargo-vendor/wasmtime-environ-23.0.2/src/component/types_builder/resources.rs +233 -0
  554. data/ext/cargo-vendor/wasmtime-environ-23.0.2/src/component/types_builder.rs +976 -0
  555. data/ext/cargo-vendor/wasmtime-environ-23.0.2/src/component.rs +109 -0
  556. data/ext/cargo-vendor/wasmtime-environ-23.0.2/src/fact/trampoline.rs +3234 -0
  557. data/ext/cargo-vendor/wasmtime-environ-23.0.2/src/fact/transcode.rs +90 -0
  558. data/ext/cargo-vendor/wasmtime-environ-23.0.2/src/fact.rs +714 -0
  559. data/ext/cargo-vendor/wasmtime-environ-23.0.2/src/lib.rs +64 -0
  560. data/ext/cargo-vendor/wasmtime-environ-23.0.2/src/module.rs +702 -0
  561. data/ext/cargo-vendor/wasmtime-environ-23.0.2/src/module_artifacts.rs +144 -0
  562. data/ext/cargo-vendor/wasmtime-environ-23.0.2/src/module_types.rs +139 -0
  563. data/ext/cargo-vendor/wasmtime-environ-23.0.2/src/ref_bits.rs +36 -0
  564. data/ext/cargo-vendor/wasmtime-environ-23.0.2/src/stack_map.rs +31 -0
  565. data/ext/cargo-vendor/wasmtime-environ-23.0.2/src/tunables.rs +165 -0
  566. data/ext/cargo-vendor/wasmtime-environ-23.0.2/src/vmoffsets.rs +897 -0
  567. data/ext/cargo-vendor/wasmtime-fiber-23.0.2/.cargo-checksum.json +1 -0
  568. data/ext/cargo-vendor/wasmtime-fiber-23.0.2/Cargo.toml +75 -0
  569. data/ext/cargo-vendor/wasmtime-fiber-23.0.2/build.rs +39 -0
  570. data/ext/cargo-vendor/wasmtime-fiber-23.0.2/src/lib.rs +340 -0
  571. data/ext/cargo-vendor/wasmtime-fiber-23.0.2/src/unix.rs +494 -0
  572. data/ext/cargo-vendor/wasmtime-fiber-23.0.2/src/windows.rs +170 -0
  573. data/ext/cargo-vendor/wasmtime-jit-debug-23.0.2/.cargo-checksum.json +1 -0
  574. data/ext/cargo-vendor/wasmtime-jit-debug-23.0.2/Cargo.toml +77 -0
  575. data/ext/cargo-vendor/wasmtime-jit-debug-23.0.2/src/gdb_jit_int.rs +130 -0
  576. data/ext/cargo-vendor/wasmtime-jit-debug-23.0.2/src/perf_jitdump.rs +293 -0
  577. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-23.0.2/.cargo-checksum.json +1 -0
  578. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-23.0.2/Cargo.toml +62 -0
  579. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-23.0.2/src/libc.rs +164 -0
  580. data/ext/cargo-vendor/wasmtime-slab-23.0.2/.cargo-checksum.json +1 -0
  581. data/ext/cargo-vendor/wasmtime-slab-23.0.2/Cargo.toml +31 -0
  582. data/ext/cargo-vendor/wasmtime-slab-23.0.2/src/lib.rs +498 -0
  583. data/ext/cargo-vendor/wasmtime-types-23.0.2/.cargo-checksum.json +1 -0
  584. data/ext/cargo-vendor/wasmtime-types-23.0.2/Cargo.toml +71 -0
  585. data/ext/cargo-vendor/wasmtime-types-23.0.2/src/lib.rs +1760 -0
  586. data/ext/cargo-vendor/wasmtime-types-23.0.2/src/prelude.rs +86 -0
  587. data/ext/cargo-vendor/wasmtime-versioned-export-macros-23.0.2/.cargo-checksum.json +1 -0
  588. data/ext/cargo-vendor/wasmtime-versioned-export-macros-23.0.2/Cargo.toml +40 -0
  589. data/ext/cargo-vendor/wasmtime-wasi-23.0.2/.cargo-checksum.json +1 -0
  590. data/ext/cargo-vendor/wasmtime-wasi-23.0.2/Cargo.toml +215 -0
  591. data/ext/cargo-vendor/wasmtime-wasi-23.0.2/src/bindings.rs +561 -0
  592. data/ext/cargo-vendor/wasmtime-wasi-23.0.2/src/ctx.rs +704 -0
  593. data/ext/cargo-vendor/wasmtime-wasi-23.0.2/src/filesystem.rs +448 -0
  594. data/ext/cargo-vendor/wasmtime-wasi-23.0.2/src/host/clocks.rs +109 -0
  595. data/ext/cargo-vendor/wasmtime-wasi-23.0.2/src/host/env.rs +18 -0
  596. data/ext/cargo-vendor/wasmtime-wasi-23.0.2/src/host/exit.rs +14 -0
  597. data/ext/cargo-vendor/wasmtime-wasi-23.0.2/src/host/filesystem/sync.rs +525 -0
  598. data/ext/cargo-vendor/wasmtime-wasi-23.0.2/src/host/filesystem.rs +1091 -0
  599. data/ext/cargo-vendor/wasmtime-wasi-23.0.2/src/host/instance_network.rs +18 -0
  600. data/ext/cargo-vendor/wasmtime-wasi-23.0.2/src/host/io.rs +391 -0
  601. data/ext/cargo-vendor/wasmtime-wasi-23.0.2/src/host/network.rs +545 -0
  602. data/ext/cargo-vendor/wasmtime-wasi-23.0.2/src/host/random.rs +45 -0
  603. data/ext/cargo-vendor/wasmtime-wasi-23.0.2/src/host/tcp.rs +547 -0
  604. data/ext/cargo-vendor/wasmtime-wasi-23.0.2/src/host/tcp_create_socket.rs +18 -0
  605. data/ext/cargo-vendor/wasmtime-wasi-23.0.2/src/host/udp.rs +762 -0
  606. data/ext/cargo-vendor/wasmtime-wasi-23.0.2/src/host/udp_create_socket.rs +18 -0
  607. data/ext/cargo-vendor/wasmtime-wasi-23.0.2/src/ip_name_lookup.rs +132 -0
  608. data/ext/cargo-vendor/wasmtime-wasi-23.0.2/src/lib.rs +419 -0
  609. data/ext/cargo-vendor/wasmtime-wasi-23.0.2/src/network.rs +113 -0
  610. data/ext/cargo-vendor/wasmtime-wasi-23.0.2/src/pipe.rs +826 -0
  611. data/ext/cargo-vendor/wasmtime-wasi-23.0.2/src/poll.rs +245 -0
  612. data/ext/cargo-vendor/wasmtime-wasi-23.0.2/src/preview0.rs +983 -0
  613. data/ext/cargo-vendor/wasmtime-wasi-23.0.2/src/preview1.rs +2801 -0
  614. data/ext/cargo-vendor/wasmtime-wasi-23.0.2/src/stdio.rs +596 -0
  615. data/ext/cargo-vendor/wasmtime-wasi-23.0.2/tests/all/api.rs +197 -0
  616. data/ext/cargo-vendor/wasmtime-wasi-23.0.2/tests/all/async_.rs +397 -0
  617. data/ext/cargo-vendor/wasmtime-wasi-23.0.2/tests/all/sync.rs +331 -0
  618. data/ext/cargo-vendor/wasmtime-winch-23.0.2/.cargo-checksum.json +1 -0
  619. data/ext/cargo-vendor/wasmtime-winch-23.0.2/Cargo.toml +92 -0
  620. data/ext/cargo-vendor/wasmtime-winch-23.0.2/src/compiler.rs +242 -0
  621. data/ext/cargo-vendor/wasmtime-wit-bindgen-23.0.2/.cargo-checksum.json +1 -0
  622. data/ext/cargo-vendor/wasmtime-wit-bindgen-23.0.2/Cargo.toml +57 -0
  623. data/ext/cargo-vendor/wasmtime-wit-bindgen-23.0.2/src/lib.rs +2777 -0
  624. data/ext/cargo-vendor/wasmtime-wit-bindgen-23.0.2/src/rust.rs +427 -0
  625. data/ext/cargo-vendor/wasmtime-wit-bindgen-23.0.2/src/types.rs +202 -0
  626. data/ext/cargo-vendor/wast-215.0.0/.cargo-checksum.json +1 -0
  627. data/ext/cargo-vendor/wast-215.0.0/Cargo.toml +101 -0
  628. data/ext/cargo-vendor/wast-215.0.0/src/component/binary.rs +1014 -0
  629. data/ext/cargo-vendor/wast-215.0.0/src/component/component.rs +320 -0
  630. data/ext/cargo-vendor/wast-215.0.0/src/component/expand.rs +875 -0
  631. data/ext/cargo-vendor/wast-215.0.0/src/component/resolve.rs +988 -0
  632. data/ext/cargo-vendor/wast-215.0.0/src/component.rs +28 -0
  633. data/ext/cargo-vendor/wast-215.0.0/src/core/binary/dwarf.rs +610 -0
  634. data/ext/cargo-vendor/wast-215.0.0/src/core/binary/dwarf_disabled.rs +41 -0
  635. data/ext/cargo-vendor/wast-215.0.0/src/core/binary.rs +1542 -0
  636. data/ext/cargo-vendor/wast-215.0.0/src/core/expr.rs +2110 -0
  637. data/ext/cargo-vendor/wast-215.0.0/src/core/memory.rs +279 -0
  638. data/ext/cargo-vendor/wast-215.0.0/src/core/module.rs +215 -0
  639. data/ext/cargo-vendor/wast-215.0.0/src/core/resolve/deinline_import_export.rs +232 -0
  640. data/ext/cargo-vendor/wast-215.0.0/src/core/resolve/names.rs +791 -0
  641. data/ext/cargo-vendor/wast-215.0.0/src/core/resolve/types.rs +270 -0
  642. data/ext/cargo-vendor/wast-215.0.0/src/core/table.rs +308 -0
  643. data/ext/cargo-vendor/wast-215.0.0/src/core/types.rs +1057 -0
  644. data/ext/cargo-vendor/wast-215.0.0/src/core.rs +30 -0
  645. data/ext/cargo-vendor/wast-215.0.0/src/lib.rs +556 -0
  646. data/ext/cargo-vendor/wast-215.0.0/src/parser.rs +1434 -0
  647. data/ext/cargo-vendor/wast-215.0.0/src/wat.rs +68 -0
  648. data/ext/cargo-vendor/wat-1.215.0/.cargo-checksum.json +1 -0
  649. data/ext/cargo-vendor/wat-1.215.0/Cargo.toml +56 -0
  650. data/ext/cargo-vendor/wat-1.215.0/src/lib.rs +469 -0
  651. data/ext/cargo-vendor/wiggle-23.0.2/.cargo-checksum.json +1 -0
  652. data/ext/cargo-vendor/wiggle-23.0.2/Cargo.toml +110 -0
  653. data/ext/cargo-vendor/wiggle-23.0.2/src/guest_type.rs +200 -0
  654. data/ext/cargo-vendor/wiggle-23.0.2/src/lib.rs +605 -0
  655. data/ext/cargo-vendor/wiggle-generate-23.0.2/.cargo-checksum.json +1 -0
  656. data/ext/cargo-vendor/wiggle-generate-23.0.2/Cargo.toml +76 -0
  657. data/ext/cargo-vendor/wiggle-generate-23.0.2/src/funcs.rs +434 -0
  658. data/ext/cargo-vendor/wiggle-generate-23.0.2/src/module_trait.rs +89 -0
  659. data/ext/cargo-vendor/wiggle-generate-23.0.2/src/names.rs +299 -0
  660. data/ext/cargo-vendor/wiggle-generate-23.0.2/src/types/flags.rs +92 -0
  661. data/ext/cargo-vendor/wiggle-generate-23.0.2/src/types/handle.rs +84 -0
  662. data/ext/cargo-vendor/wiggle-generate-23.0.2/src/types/mod.rs +129 -0
  663. data/ext/cargo-vendor/wiggle-generate-23.0.2/src/types/record.rs +129 -0
  664. data/ext/cargo-vendor/wiggle-generate-23.0.2/src/types/variant.rs +186 -0
  665. data/ext/cargo-vendor/wiggle-generate-23.0.2/src/wasmtime.rs +172 -0
  666. data/ext/cargo-vendor/wiggle-macro-23.0.2/.cargo-checksum.json +1 -0
  667. data/ext/cargo-vendor/wiggle-macro-23.0.2/Cargo.toml +59 -0
  668. data/ext/cargo-vendor/wiggle-macro-23.0.2/build.rs +5 -0
  669. data/ext/cargo-vendor/wiggle-macro-23.0.2/src/lib.rs +233 -0
  670. data/ext/cargo-vendor/winapi-util-0.1.9/.cargo-checksum.json +1 -0
  671. data/ext/cargo-vendor/winapi-util-0.1.9/COPYING +3 -0
  672. data/ext/cargo-vendor/winapi-util-0.1.9/Cargo.toml +53 -0
  673. data/ext/cargo-vendor/winapi-util-0.1.9/LICENSE-MIT +21 -0
  674. data/ext/cargo-vendor/winapi-util-0.1.9/README.md +64 -0
  675. data/ext/cargo-vendor/winapi-util-0.1.9/UNLICENSE +24 -0
  676. data/ext/cargo-vendor/winapi-util-0.1.9/rustfmt.toml +2 -0
  677. data/ext/cargo-vendor/winapi-util-0.1.9/src/console.rs +407 -0
  678. data/ext/cargo-vendor/winapi-util-0.1.9/src/file.rs +166 -0
  679. data/ext/cargo-vendor/winapi-util-0.1.9/src/lib.rs +35 -0
  680. data/ext/cargo-vendor/winapi-util-0.1.9/src/sysinfo.rs +161 -0
  681. data/ext/cargo-vendor/winapi-util-0.1.9/src/win.rs +246 -0
  682. data/ext/cargo-vendor/winch-codegen-0.21.2/.cargo-checksum.json +1 -0
  683. data/ext/cargo-vendor/winch-codegen-0.21.2/Cargo.toml +87 -0
  684. data/ext/cargo-vendor/winch-codegen-0.21.2/src/abi/mod.rs +671 -0
  685. data/ext/cargo-vendor/winch-codegen-0.21.2/src/codegen/context.rs +536 -0
  686. data/ext/cargo-vendor/winch-codegen-0.21.2/src/codegen/control.rs +972 -0
  687. data/ext/cargo-vendor/winch-codegen-0.21.2/src/codegen/env.rs +449 -0
  688. data/ext/cargo-vendor/winch-codegen-0.21.2/src/codegen/mod.rs +878 -0
  689. data/ext/cargo-vendor/winch-codegen-0.21.2/src/frame/mod.rs +258 -0
  690. data/ext/cargo-vendor/winch-codegen-0.21.2/src/isa/aarch64/asm.rs +430 -0
  691. data/ext/cargo-vendor/winch-codegen-0.21.2/src/isa/aarch64/masm.rs +572 -0
  692. data/ext/cargo-vendor/winch-codegen-0.21.2/src/isa/aarch64/regs.rs +161 -0
  693. data/ext/cargo-vendor/winch-codegen-0.21.2/src/isa/x64/asm.rs +1423 -0
  694. data/ext/cargo-vendor/winch-codegen-0.21.2/src/isa/x64/masm.rs +1120 -0
  695. data/ext/cargo-vendor/winch-codegen-0.21.2/src/masm.rs +941 -0
  696. data/ext/cargo-vendor/winch-codegen-0.21.2/src/regalloc.rs +65 -0
  697. data/ext/cargo-vendor/winch-codegen-0.21.2/src/stack.rs +439 -0
  698. data/ext/cargo-vendor/winch-codegen-0.21.2/src/visitor.rs +2154 -0
  699. data/ext/cargo-vendor/wit-parser-0.212.0/.cargo-checksum.json +1 -0
  700. data/ext/cargo-vendor/wit-parser-0.212.0/Cargo.toml +112 -0
  701. data/ext/cargo-vendor/wit-parser-0.212.0/src/ast/lex.rs +751 -0
  702. data/ext/cargo-vendor/wit-parser-0.212.0/src/ast/resolve.rs +1539 -0
  703. data/ext/cargo-vendor/wit-parser-0.212.0/src/ast.rs +1851 -0
  704. data/ext/cargo-vendor/wit-parser-0.212.0/src/decoding.rs +1798 -0
  705. data/ext/cargo-vendor/wit-parser-0.212.0/src/lib.rs +888 -0
  706. data/ext/cargo-vendor/wit-parser-0.212.0/src/live.rs +126 -0
  707. data/ext/cargo-vendor/wit-parser-0.212.0/src/metadata.rs +772 -0
  708. data/ext/cargo-vendor/wit-parser-0.212.0/src/resolve.rs +2740 -0
  709. data/ext/cargo-vendor/wit-parser-0.212.0/src/serde_.rs +124 -0
  710. data/ext/cargo-vendor/wit-parser-0.212.0/tests/all.rs +154 -0
  711. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/complex-include.wit.json +200 -0
  712. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/diamond1.wit.json +59 -0
  713. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/disambiguate-diamond.wit.json +115 -0
  714. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/feature-gates.wit +118 -0
  715. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/feature-gates.wit.json +308 -0
  716. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/foreign-deps-union.wit.json +410 -0
  717. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/foreign-deps.wit.json +362 -0
  718. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/ignore-files-deps.wit.json +41 -0
  719. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/import-export-overlap2.wit.json +43 -0
  720. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/include-reps.wit.json +68 -0
  721. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/kinds-of-deps.wit.json +95 -0
  722. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/many-names.wit.json +42 -0
  723. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/multi-file-multi-package/a.wit +23 -0
  724. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/multi-file-multi-package/b.wit +23 -0
  725. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/multi-file-multi-package.wit.json +250 -0
  726. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/multi-file.wit.json +304 -0
  727. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/multi-package-shared-deps/deps/dep1/types.wit +2 -0
  728. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/multi-package-shared-deps/deps/dep2/types.wit +2 -0
  729. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/multi-package-shared-deps/packages.wit +13 -0
  730. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/multi-package-shared-deps.wit.json +83 -0
  731. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/multi-package-transitive-deps/deps/dep1/types.wit +9 -0
  732. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/multi-package-transitive-deps/deps/dep2/types.wit +5 -0
  733. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/multi-package-transitive-deps/packages.wit +11 -0
  734. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/multi-package-transitive-deps.wit.json +116 -0
  735. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/packages-explicit-colliding-decl-names.wit +23 -0
  736. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/packages-explicit-colliding-decl-names.wit.json +130 -0
  737. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/packages-explicit-internal-references.wit +15 -0
  738. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/packages-explicit-internal-references.wit.json +87 -0
  739. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/packages-explicit-with-semver.wit +23 -0
  740. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/packages-explicit-with-semver.wit.json +130 -0
  741. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/packages-multiple-explicit.wit +23 -0
  742. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/packages-multiple-explicit.wit.json +130 -0
  743. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/packages-single-explicit.wit +11 -0
  744. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/packages-single-explicit.wit.json +70 -0
  745. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/parse-fail/bad-gate1.wit +8 -0
  746. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/parse-fail/bad-gate1.wit.result +5 -0
  747. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/parse-fail/bad-gate2.wit +8 -0
  748. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/parse-fail/bad-gate2.wit.result +5 -0
  749. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/parse-fail/bad-gate3.wit +6 -0
  750. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/parse-fail/bad-gate3.wit.result +8 -0
  751. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/parse-fail/bad-gate4.wit +8 -0
  752. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/parse-fail/bad-gate4.wit.result +8 -0
  753. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/parse-fail/bad-gate5.wit +11 -0
  754. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/parse-fail/bad-gate5.wit.result +8 -0
  755. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/parse-fail/bad-since1.wit +4 -0
  756. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/parse-fail/bad-since1.wit.result +5 -0
  757. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/parse-fail/bad-since3.wit +5 -0
  758. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/parse-fail/bad-since3.wit.result +5 -0
  759. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/parse-fail/conflicting-package.wit.result +10 -0
  760. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/parse-fail/explicit-packages-colliding-names.wit +3 -0
  761. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/parse-fail/explicit-packages-colliding-names.wit.result +1 -0
  762. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/parse-fail/explicit-packages-with-error.wit +13 -0
  763. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/parse-fail/explicit-packages-with-error.wit.result +8 -0
  764. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/parse-fail/mix-explicit-then-implicit-package.wit +23 -0
  765. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/parse-fail/mix-explicit-then-implicit-package.wit.result +1 -0
  766. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/parse-fail/mix-implicit-then-explicit-package.wit +23 -0
  767. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/parse-fail/mix-implicit-then-explicit-package.wit.result +5 -0
  768. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/parse-fail/multi-file-missing-delimiter/observe.wit +5 -0
  769. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/parse-fail/multi-file-missing-delimiter/world.wit +5 -0
  770. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/parse-fail/multi-file-missing-delimiter.wit.result +9 -0
  771. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/parse-fail/multiple-package-docs.wit.result +10 -0
  772. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/parse-fail/multiple-package-inline-cycle.wit +11 -0
  773. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/parse-fail/multiple-package-inline-cycle.wit.result +5 -0
  774. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/parse-fail/multiple-packages-no-scope-blocks.wit +15 -0
  775. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/parse-fail/multiple-packages-no-scope-blocks.wit.result +5 -0
  776. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/parse-fail/resources-multiple-returns-borrow.wit.result +8 -0
  777. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/parse-fail/resources-return-borrow.wit.result +8 -0
  778. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/parse-fail/return-borrow1.wit.result +8 -0
  779. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/parse-fail/return-borrow2.wit.result +8 -0
  780. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/parse-fail/return-borrow6.wit.result +8 -0
  781. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/parse-fail/return-borrow7.wit.result +8 -0
  782. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/parse-fail/return-borrow8.wit.result +9 -0
  783. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/shared-types.wit.json +87 -0
  784. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/since-and-unstable.wit +89 -0
  785. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/since-and-unstable.wit.json +583 -0
  786. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/stress-export-elaborate.wit.json +1156 -0
  787. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/world-diamond.wit.json +124 -0
  788. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/world-iface-no-collide.wit.json +68 -0
  789. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/world-implicit-import1.wit.json +81 -0
  790. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/world-implicit-import2.wit.json +72 -0
  791. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/world-implicit-import3.wit.json +73 -0
  792. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/world-same-fields4.wit.json +82 -0
  793. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/world-top-level-resources.wit.json +237 -0
  794. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/worlds-union-dedup.wit.json +112 -0
  795. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/worlds-with-types.wit.json +204 -0
  796. data/ext/src/ruby_api/memory.rs +2 -1
  797. data/ext/src/ruby_api/pooling_allocation_config.rs +6 -6
  798. data/lib/wasmtime/version.rb +1 -1
  799. metadata +1839 -1680
  800. data/ext/cargo-vendor/cranelift-bforest-0.108.1/.cargo-checksum.json +0 -1
  801. data/ext/cargo-vendor/cranelift-bforest-0.108.1/Cargo.toml +0 -40
  802. data/ext/cargo-vendor/cranelift-codegen-0.108.1/.cargo-checksum.json +0 -1
  803. data/ext/cargo-vendor/cranelift-codegen-0.108.1/Cargo.toml +0 -189
  804. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/binemit/stack_map.rs +0 -155
  805. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/bitset.rs +0 -187
  806. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/context.rs +0 -395
  807. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/data_value.rs +0 -385
  808. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/dce.rs +0 -37
  809. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/dominator_tree.rs +0 -803
  810. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/egraph.rs +0 -839
  811. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/inst_predicates.rs +0 -236
  812. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/ir/dfg.rs +0 -1777
  813. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/ir/extfunc.rs +0 -411
  814. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/ir/globalvalue.rs +0 -147
  815. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/ir/immediates.rs +0 -1612
  816. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/ir/instructions.rs +0 -1020
  817. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/ir/jumptable.rs +0 -168
  818. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/ir/mod.rs +0 -108
  819. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/ir/stackslot.rs +0 -216
  820. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/ir/trapcode.rs +0 -149
  821. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/ir/types.rs +0 -629
  822. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/aarch64/abi.rs +0 -1580
  823. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/aarch64/inst/args.rs +0 -721
  824. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/aarch64/inst/emit.rs +0 -3846
  825. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/aarch64/inst/emit_tests.rs +0 -7902
  826. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/aarch64/inst/imms.rs +0 -1213
  827. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/aarch64/inst/mod.rs +0 -3094
  828. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/aarch64/inst/regs.rs +0 -288
  829. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/aarch64/inst/unwind/systemv.rs +0 -174
  830. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/aarch64/inst.isle +0 -4225
  831. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/aarch64/lower.isle +0 -2933
  832. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/aarch64/mod.rs +0 -242
  833. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/aarch64/pcc.rs +0 -568
  834. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/mod.rs +0 -449
  835. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/riscv64/abi.rs +0 -1051
  836. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/riscv64/inst/args.rs +0 -1938
  837. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/riscv64/inst/emit.rs +0 -2681
  838. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/riscv64/inst/emit_tests.rs +0 -2197
  839. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/riscv64/inst/encode.rs +0 -654
  840. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/riscv64/inst/imms.rs +0 -374
  841. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/riscv64/inst/mod.rs +0 -1975
  842. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/riscv64/inst/unwind/systemv.rs +0 -170
  843. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/riscv64/inst/vector.rs +0 -1144
  844. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/riscv64/inst.isle +0 -2969
  845. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/riscv64/inst_vector.isle +0 -1899
  846. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/riscv64/lower/isle.rs +0 -625
  847. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/riscv64/lower.isle +0 -2883
  848. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/riscv64/mod.rs +0 -260
  849. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/s390x/abi.rs +0 -1037
  850. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/s390x/inst/args.rs +0 -314
  851. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/s390x/inst/emit.rs +0 -3646
  852. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/s390x/inst/emit_tests.rs +0 -13389
  853. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/s390x/inst/imms.rs +0 -202
  854. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/s390x/inst/mod.rs +0 -3421
  855. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/s390x/inst/regs.rs +0 -180
  856. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/s390x/inst/unwind/systemv.rs +0 -212
  857. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/s390x/inst.isle +0 -5033
  858. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/s390x/lower.isle +0 -3995
  859. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/s390x/mod.rs +0 -215
  860. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/x64/abi.rs +0 -1410
  861. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/x64/inst/args.rs +0 -2256
  862. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/x64/inst/emit.rs +0 -4311
  863. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/x64/inst/emit_state.rs +0 -74
  864. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/x64/inst/emit_tests.rs +0 -5171
  865. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/x64/inst/mod.rs +0 -2838
  866. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/x64/inst/regs.rs +0 -276
  867. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/x64/inst/unwind/systemv.rs +0 -198
  868. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/x64/inst.isle +0 -5294
  869. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/x64/lower.isle +0 -4808
  870. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/x64/mod.rs +0 -234
  871. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/x64/pcc.rs +0 -1014
  872. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isle_prelude.rs +0 -957
  873. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/legalizer/mod.rs +0 -348
  874. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/lib.rs +0 -106
  875. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/machinst/abi.rs +0 -2506
  876. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/machinst/blockorder.rs +0 -465
  877. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/machinst/buffer.rs +0 -2512
  878. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/machinst/helpers.rs +0 -33
  879. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/machinst/isle.rs +0 -903
  880. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/machinst/lower.rs +0 -1432
  881. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/machinst/mod.rs +0 -555
  882. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/machinst/reg.rs +0 -522
  883. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/machinst/valueregs.rs +0 -138
  884. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/machinst/vcode.rs +0 -1741
  885. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/opts/cprop.isle +0 -281
  886. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/opts/shifts.isle +0 -307
  887. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/prelude.isle +0 -646
  888. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/prelude_lower.isle +0 -1073
  889. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/timing.rs +0 -297
  890. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/verifier/mod.rs +0 -1957
  891. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/write.rs +0 -631
  892. data/ext/cargo-vendor/cranelift-codegen-meta-0.108.1/.cargo-checksum.json +0 -1
  893. data/ext/cargo-vendor/cranelift-codegen-meta-0.108.1/Cargo.toml +0 -35
  894. data/ext/cargo-vendor/cranelift-codegen-meta-0.108.1/src/cdsl/types.rs +0 -496
  895. data/ext/cargo-vendor/cranelift-codegen-meta-0.108.1/src/cdsl/typevar.rs +0 -980
  896. data/ext/cargo-vendor/cranelift-codegen-meta-0.108.1/src/gen_inst.rs +0 -1278
  897. data/ext/cargo-vendor/cranelift-codegen-meta-0.108.1/src/isa/riscv64.rs +0 -168
  898. data/ext/cargo-vendor/cranelift-codegen-meta-0.108.1/src/shared/instructions.rs +0 -3791
  899. data/ext/cargo-vendor/cranelift-codegen-meta-0.108.1/src/shared/types.rs +0 -137
  900. data/ext/cargo-vendor/cranelift-codegen-shared-0.108.1/.cargo-checksum.json +0 -1
  901. data/ext/cargo-vendor/cranelift-codegen-shared-0.108.1/Cargo.toml +0 -22
  902. data/ext/cargo-vendor/cranelift-codegen-shared-0.108.1/src/constants.rs +0 -28
  903. data/ext/cargo-vendor/cranelift-control-0.108.1/.cargo-checksum.json +0 -1
  904. data/ext/cargo-vendor/cranelift-control-0.108.1/Cargo.toml +0 -30
  905. data/ext/cargo-vendor/cranelift-entity-0.108.1/.cargo-checksum.json +0 -1
  906. data/ext/cargo-vendor/cranelift-entity-0.108.1/Cargo.toml +0 -52
  907. data/ext/cargo-vendor/cranelift-entity-0.108.1/src/set.rs +0 -290
  908. data/ext/cargo-vendor/cranelift-frontend-0.108.1/.cargo-checksum.json +0 -1
  909. data/ext/cargo-vendor/cranelift-frontend-0.108.1/Cargo.toml +0 -67
  910. data/ext/cargo-vendor/cranelift-frontend-0.108.1/src/frontend.rs +0 -1854
  911. data/ext/cargo-vendor/cranelift-frontend-0.108.1/src/lib.rs +0 -189
  912. data/ext/cargo-vendor/cranelift-frontend-0.108.1/src/ssa.rs +0 -1328
  913. data/ext/cargo-vendor/cranelift-isle-0.108.1/.cargo-checksum.json +0 -1
  914. data/ext/cargo-vendor/cranelift-isle-0.108.1/Cargo.toml +0 -46
  915. data/ext/cargo-vendor/cranelift-isle-0.108.1/src/codegen.rs +0 -886
  916. data/ext/cargo-vendor/cranelift-isle-0.108.1/src/parser.rs +0 -562
  917. data/ext/cargo-vendor/cranelift-isle-0.108.1/src/sema.rs +0 -2492
  918. data/ext/cargo-vendor/cranelift-isle-0.108.1/src/trie_again.rs +0 -684
  919. data/ext/cargo-vendor/cranelift-native-0.108.1/.cargo-checksum.json +0 -1
  920. data/ext/cargo-vendor/cranelift-native-0.108.1/Cargo.toml +0 -43
  921. data/ext/cargo-vendor/cranelift-native-0.108.1/src/lib.rs +0 -188
  922. data/ext/cargo-vendor/cranelift-native-0.108.1/src/riscv.rs +0 -128
  923. data/ext/cargo-vendor/cranelift-wasm-0.108.1/.cargo-checksum.json +0 -1
  924. data/ext/cargo-vendor/cranelift-wasm-0.108.1/Cargo.toml +0 -109
  925. data/ext/cargo-vendor/cranelift-wasm-0.108.1/src/code_translator/bounds_checks.rs +0 -713
  926. data/ext/cargo-vendor/cranelift-wasm-0.108.1/src/code_translator.rs +0 -3687
  927. data/ext/cargo-vendor/cranelift-wasm-0.108.1/src/func_translator.rs +0 -296
  928. data/ext/cargo-vendor/cranelift-wasm-0.108.1/src/heap.rs +0 -116
  929. data/ext/cargo-vendor/cranelift-wasm-0.108.1/src/module_translator.rs +0 -128
  930. data/ext/cargo-vendor/cranelift-wasm-0.108.1/src/sections_translator.rs +0 -389
  931. data/ext/cargo-vendor/cranelift-wasm-0.108.1/src/state.rs +0 -522
  932. data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.22/.cargo-checksum.json +0 -1
  933. data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.22/Cargo.toml +0 -48
  934. data/ext/cargo-vendor/memoffset-0.9.0/.cargo-checksum.json +0 -1
  935. data/ext/cargo-vendor/memoffset-0.9.0/Cargo.toml +0 -37
  936. data/ext/cargo-vendor/memoffset-0.9.0/LICENSE +0 -19
  937. data/ext/cargo-vendor/memoffset-0.9.0/README.md +0 -85
  938. data/ext/cargo-vendor/memoffset-0.9.0/build.rs +0 -25
  939. data/ext/cargo-vendor/memoffset-0.9.0/src/lib.rs +0 -94
  940. data/ext/cargo-vendor/memoffset-0.9.0/src/offset_of.rs +0 -400
  941. data/ext/cargo-vendor/memoffset-0.9.0/src/raw_field.rs +0 -226
  942. data/ext/cargo-vendor/memoffset-0.9.0/src/span_of.rs +0 -263
  943. data/ext/cargo-vendor/object-0.33.0/.cargo-checksum.json +0 -1
  944. data/ext/cargo-vendor/object-0.33.0/CHANGELOG.md +0 -797
  945. data/ext/cargo-vendor/object-0.33.0/Cargo.toml +0 -179
  946. data/ext/cargo-vendor/object-0.33.0/README.md +0 -56
  947. data/ext/cargo-vendor/object-0.33.0/src/build/bytes.rs +0 -141
  948. data/ext/cargo-vendor/object-0.33.0/src/build/elf.rs +0 -3033
  949. data/ext/cargo-vendor/object-0.33.0/src/common.rs +0 -568
  950. data/ext/cargo-vendor/object-0.33.0/src/elf.rs +0 -6291
  951. data/ext/cargo-vendor/object-0.33.0/src/endian.rs +0 -831
  952. data/ext/cargo-vendor/object-0.33.0/src/macho.rs +0 -3309
  953. data/ext/cargo-vendor/object-0.33.0/src/pod.rs +0 -239
  954. data/ext/cargo-vendor/object-0.33.0/src/read/any.rs +0 -1328
  955. data/ext/cargo-vendor/object-0.33.0/src/read/archive.rs +0 -759
  956. data/ext/cargo-vendor/object-0.33.0/src/read/coff/comdat.rs +0 -211
  957. data/ext/cargo-vendor/object-0.33.0/src/read/coff/file.rs +0 -383
  958. data/ext/cargo-vendor/object-0.33.0/src/read/coff/relocation.rs +0 -108
  959. data/ext/cargo-vendor/object-0.33.0/src/read/coff/section.rs +0 -585
  960. data/ext/cargo-vendor/object-0.33.0/src/read/coff/symbol.rs +0 -635
  961. data/ext/cargo-vendor/object-0.33.0/src/read/elf/attributes.rs +0 -306
  962. data/ext/cargo-vendor/object-0.33.0/src/read/elf/comdat.rs +0 -162
  963. data/ext/cargo-vendor/object-0.33.0/src/read/elf/file.rs +0 -918
  964. data/ext/cargo-vendor/object-0.33.0/src/read/elf/hash.rs +0 -224
  965. data/ext/cargo-vendor/object-0.33.0/src/read/elf/note.rs +0 -271
  966. data/ext/cargo-vendor/object-0.33.0/src/read/elf/relocation.rs +0 -629
  967. data/ext/cargo-vendor/object-0.33.0/src/read/elf/section.rs +0 -1150
  968. data/ext/cargo-vendor/object-0.33.0/src/read/elf/segment.rs +0 -356
  969. data/ext/cargo-vendor/object-0.33.0/src/read/elf/symbol.rs +0 -595
  970. data/ext/cargo-vendor/object-0.33.0/src/read/elf/version.rs +0 -424
  971. data/ext/cargo-vendor/object-0.33.0/src/read/macho/dyld_cache.rs +0 -345
  972. data/ext/cargo-vendor/object-0.33.0/src/read/macho/file.rs +0 -783
  973. data/ext/cargo-vendor/object-0.33.0/src/read/macho/load_command.rs +0 -386
  974. data/ext/cargo-vendor/object-0.33.0/src/read/macho/section.rs +0 -389
  975. data/ext/cargo-vendor/object-0.33.0/src/read/macho/segment.rs +0 -303
  976. data/ext/cargo-vendor/object-0.33.0/src/read/macho/symbol.rs +0 -492
  977. data/ext/cargo-vendor/object-0.33.0/src/read/mod.rs +0 -880
  978. data/ext/cargo-vendor/object-0.33.0/src/read/pe/file.rs +0 -1053
  979. data/ext/cargo-vendor/object-0.33.0/src/read/pe/import.rs +0 -339
  980. data/ext/cargo-vendor/object-0.33.0/src/read/pe/relocation.rs +0 -92
  981. data/ext/cargo-vendor/object-0.33.0/src/read/pe/section.rs +0 -440
  982. data/ext/cargo-vendor/object-0.33.0/src/read/read_cache.rs +0 -213
  983. data/ext/cargo-vendor/object-0.33.0/src/read/traits.rs +0 -551
  984. data/ext/cargo-vendor/object-0.33.0/src/read/wasm.rs +0 -966
  985. data/ext/cargo-vendor/object-0.33.0/src/read/xcoff/file.rs +0 -697
  986. data/ext/cargo-vendor/object-0.33.0/src/read/xcoff/relocation.rs +0 -134
  987. data/ext/cargo-vendor/object-0.33.0/src/read/xcoff/section.rs +0 -433
  988. data/ext/cargo-vendor/object-0.33.0/src/read/xcoff/symbol.rs +0 -784
  989. data/ext/cargo-vendor/object-0.33.0/src/write/coff/object.rs +0 -678
  990. data/ext/cargo-vendor/object-0.33.0/src/write/coff/writer.rs +0 -518
  991. data/ext/cargo-vendor/object-0.33.0/src/write/elf/object.rs +0 -885
  992. data/ext/cargo-vendor/object-0.33.0/src/write/elf/writer.rs +0 -2309
  993. data/ext/cargo-vendor/object-0.33.0/src/write/macho.rs +0 -1107
  994. data/ext/cargo-vendor/object-0.33.0/src/write/mod.rs +0 -990
  995. data/ext/cargo-vendor/object-0.33.0/src/write/pe.rs +0 -847
  996. data/ext/cargo-vendor/object-0.33.0/src/write/xcoff.rs +0 -589
  997. data/ext/cargo-vendor/object-0.33.0/tests/integration.rs +0 -2
  998. data/ext/cargo-vendor/object-0.33.0/tests/read/mod.rs +0 -4
  999. data/ext/cargo-vendor/object-0.33.0/tests/round_trip/bss.rs +0 -255
  1000. data/ext/cargo-vendor/object-0.33.0/tests/round_trip/comdat.rs +0 -225
  1001. data/ext/cargo-vendor/object-0.33.0/tests/round_trip/common.rs +0 -245
  1002. data/ext/cargo-vendor/object-0.33.0/tests/round_trip/elf.rs +0 -289
  1003. data/ext/cargo-vendor/object-0.33.0/tests/round_trip/mod.rs +0 -704
  1004. data/ext/cargo-vendor/object-0.33.0/tests/round_trip/section_flags.rs +0 -90
  1005. data/ext/cargo-vendor/object-0.33.0/tests/round_trip/tls.rs +0 -316
  1006. data/ext/cargo-vendor/wasi-common-21.0.1/.cargo-checksum.json +0 -1
  1007. data/ext/cargo-vendor/wasi-common-21.0.1/Cargo.toml +0 -223
  1008. data/ext/cargo-vendor/wasi-common-21.0.1/src/snapshots/preview_0.rs +0 -1145
  1009. data/ext/cargo-vendor/wasi-common-21.0.1/src/snapshots/preview_1.rs +0 -1497
  1010. data/ext/cargo-vendor/wasi-common-21.0.1/src/string_array.rs +0 -74
  1011. data/ext/cargo-vendor/wasi-common-21.0.1/src/sync/sched/windows.rs +0 -221
  1012. data/ext/cargo-vendor/wasi-common-21.0.1/src/tokio/file.rs +0 -247
  1013. data/ext/cargo-vendor/wasi-common-21.0.1/src/tokio/mod.rs +0 -137
  1014. data/ext/cargo-vendor/wasi-common-21.0.1/tests/all/async_.rs +0 -293
  1015. data/ext/cargo-vendor/wasi-common-21.0.1/tests/all/sync.rs +0 -279
  1016. data/ext/cargo-vendor/wasm-encoder-0.207.0/.cargo-checksum.json +0 -1
  1017. data/ext/cargo-vendor/wasm-encoder-0.207.0/Cargo.toml +0 -45
  1018. data/ext/cargo-vendor/wasm-encoder-0.207.0/src/component/types.rs +0 -792
  1019. data/ext/cargo-vendor/wasm-encoder-0.207.0/src/core/code.rs +0 -3502
  1020. data/ext/cargo-vendor/wasm-encoder-0.207.0/src/core/dump.rs +0 -627
  1021. data/ext/cargo-vendor/wasm-encoder-0.207.0/src/core/exports.rs +0 -98
  1022. data/ext/cargo-vendor/wasm-encoder-0.207.0/src/core/globals.rs +0 -112
  1023. data/ext/cargo-vendor/wasm-encoder-0.207.0/src/core/imports.rs +0 -157
  1024. data/ext/cargo-vendor/wasm-encoder-0.207.0/src/core/memories.rs +0 -128
  1025. data/ext/cargo-vendor/wasm-encoder-0.207.0/src/core/producers.rs +0 -180
  1026. data/ext/cargo-vendor/wasm-encoder-0.207.0/src/core/tables.rs +0 -134
  1027. data/ext/cargo-vendor/wasm-encoder-0.207.0/src/core/tags.rs +0 -104
  1028. data/ext/cargo-vendor/wasm-encoder-0.207.0/src/core/types.rs +0 -678
  1029. data/ext/cargo-vendor/wasm-encoder-0.207.0/src/lib.rs +0 -215
  1030. data/ext/cargo-vendor/wasm-encoder-0.209.1/.cargo-checksum.json +0 -1
  1031. data/ext/cargo-vendor/wasm-encoder-0.209.1/Cargo.toml +0 -46
  1032. data/ext/cargo-vendor/wasm-encoder-0.209.1/src/component/types.rs +0 -792
  1033. data/ext/cargo-vendor/wasm-encoder-0.209.1/src/core/code.rs +0 -3595
  1034. data/ext/cargo-vendor/wasm-encoder-0.209.1/src/core/elements.rs +0 -221
  1035. data/ext/cargo-vendor/wasm-encoder-0.209.1/src/core/exports.rs +0 -98
  1036. data/ext/cargo-vendor/wasm-encoder-0.209.1/src/core/globals.rs +0 -112
  1037. data/ext/cargo-vendor/wasm-encoder-0.209.1/src/core/imports.rs +0 -157
  1038. data/ext/cargo-vendor/wasm-encoder-0.209.1/src/core/memories.rs +0 -128
  1039. data/ext/cargo-vendor/wasm-encoder-0.209.1/src/core/tables.rs +0 -134
  1040. data/ext/cargo-vendor/wasm-encoder-0.209.1/src/core/tags.rs +0 -104
  1041. data/ext/cargo-vendor/wasm-encoder-0.209.1/src/core/types.rs +0 -678
  1042. data/ext/cargo-vendor/wasm-encoder-0.209.1/src/lib.rs +0 -215
  1043. data/ext/cargo-vendor/wasmparser-0.207.0/.cargo-checksum.json +0 -1
  1044. data/ext/cargo-vendor/wasmparser-0.207.0/Cargo.lock +0 -659
  1045. data/ext/cargo-vendor/wasmparser-0.207.0/Cargo.toml +0 -95
  1046. data/ext/cargo-vendor/wasmparser-0.207.0/src/binary_reader.rs +0 -1867
  1047. data/ext/cargo-vendor/wasmparser-0.207.0/src/lib.rs +0 -805
  1048. data/ext/cargo-vendor/wasmparser-0.207.0/src/limits.rs +0 -78
  1049. data/ext/cargo-vendor/wasmparser-0.207.0/src/map.rs +0 -137
  1050. data/ext/cargo-vendor/wasmparser-0.207.0/src/parser.rs +0 -1636
  1051. data/ext/cargo-vendor/wasmparser-0.207.0/src/readers/component/imports.rs +0 -129
  1052. data/ext/cargo-vendor/wasmparser-0.207.0/src/readers/component/instances.rs +0 -164
  1053. data/ext/cargo-vendor/wasmparser-0.207.0/src/readers/component/names.rs +0 -102
  1054. data/ext/cargo-vendor/wasmparser-0.207.0/src/readers/component/types.rs +0 -551
  1055. data/ext/cargo-vendor/wasmparser-0.207.0/src/readers/core/branch_hinting.rs +0 -59
  1056. data/ext/cargo-vendor/wasmparser-0.207.0/src/readers/core/code.rs +0 -146
  1057. data/ext/cargo-vendor/wasmparser-0.207.0/src/readers/core/coredumps.rs +0 -244
  1058. data/ext/cargo-vendor/wasmparser-0.207.0/src/readers/core/custom.rs +0 -64
  1059. data/ext/cargo-vendor/wasmparser-0.207.0/src/readers/core/data.rs +0 -96
  1060. data/ext/cargo-vendor/wasmparser-0.207.0/src/readers/core/elements.rs +0 -152
  1061. data/ext/cargo-vendor/wasmparser-0.207.0/src/readers/core/globals.rs +0 -51
  1062. data/ext/cargo-vendor/wasmparser-0.207.0/src/readers/core/init.rs +0 -51
  1063. data/ext/cargo-vendor/wasmparser-0.207.0/src/readers/core/linking.rs +0 -450
  1064. data/ext/cargo-vendor/wasmparser-0.207.0/src/readers/core/names.rs +0 -159
  1065. data/ext/cargo-vendor/wasmparser-0.207.0/src/readers/core/operators.rs +0 -430
  1066. data/ext/cargo-vendor/wasmparser-0.207.0/src/readers/core/producers.rs +0 -83
  1067. data/ext/cargo-vendor/wasmparser-0.207.0/src/readers/core/reloc.rs +0 -301
  1068. data/ext/cargo-vendor/wasmparser-0.207.0/src/readers/core/tables.rs +0 -93
  1069. data/ext/cargo-vendor/wasmparser-0.207.0/src/readers/core/types.rs +0 -1773
  1070. data/ext/cargo-vendor/wasmparser-0.207.0/src/readers.rs +0 -316
  1071. data/ext/cargo-vendor/wasmparser-0.207.0/src/resources.rs +0 -235
  1072. data/ext/cargo-vendor/wasmparser-0.207.0/src/validator/component.rs +0 -3242
  1073. data/ext/cargo-vendor/wasmparser-0.207.0/src/validator/core/canonical.rs +0 -233
  1074. data/ext/cargo-vendor/wasmparser-0.207.0/src/validator/core.rs +0 -1450
  1075. data/ext/cargo-vendor/wasmparser-0.207.0/src/validator/func.rs +0 -331
  1076. data/ext/cargo-vendor/wasmparser-0.207.0/src/validator/names.rs +0 -947
  1077. data/ext/cargo-vendor/wasmparser-0.207.0/src/validator/operators.rs +0 -4117
  1078. data/ext/cargo-vendor/wasmparser-0.207.0/src/validator/types.rs +0 -4492
  1079. data/ext/cargo-vendor/wasmparser-0.207.0/src/validator.rs +0 -1786
  1080. data/ext/cargo-vendor/wasmprinter-0.207.0/.cargo-checksum.json +0 -1
  1081. data/ext/cargo-vendor/wasmprinter-0.207.0/Cargo.toml +0 -50
  1082. data/ext/cargo-vendor/wasmprinter-0.207.0/src/lib.rs +0 -3226
  1083. data/ext/cargo-vendor/wasmprinter-0.207.0/src/operator.rs +0 -1164
  1084. data/ext/cargo-vendor/wasmprinter-0.207.0/tests/all.rs +0 -293
  1085. data/ext/cargo-vendor/wasmtime-21.0.1/.cargo-checksum.json +0 -1
  1086. data/ext/cargo-vendor/wasmtime-21.0.1/Cargo.toml +0 -386
  1087. data/ext/cargo-vendor/wasmtime-21.0.1/build.rs +0 -37
  1088. data/ext/cargo-vendor/wasmtime-21.0.1/src/compile/code_builder.rs +0 -275
  1089. data/ext/cargo-vendor/wasmtime-21.0.1/src/compile/runtime.rs +0 -176
  1090. data/ext/cargo-vendor/wasmtime-21.0.1/src/compile.rs +0 -910
  1091. data/ext/cargo-vendor/wasmtime-21.0.1/src/config.rs +0 -2904
  1092. data/ext/cargo-vendor/wasmtime-21.0.1/src/engine/serialization.rs +0 -887
  1093. data/ext/cargo-vendor/wasmtime-21.0.1/src/engine.rs +0 -728
  1094. data/ext/cargo-vendor/wasmtime-21.0.1/src/lib.rs +0 -328
  1095. data/ext/cargo-vendor/wasmtime-21.0.1/src/profiling_agent/jitdump.rs +0 -67
  1096. data/ext/cargo-vendor/wasmtime-21.0.1/src/profiling_agent/perfmap.rs +0 -48
  1097. data/ext/cargo-vendor/wasmtime-21.0.1/src/profiling_agent/vtune.rs +0 -81
  1098. data/ext/cargo-vendor/wasmtime-21.0.1/src/profiling_agent.rs +0 -106
  1099. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/code.rs +0 -102
  1100. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/code_memory.rs +0 -337
  1101. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/component/component.rs +0 -661
  1102. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/component/func/host.rs +0 -440
  1103. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/component/func/options.rs +0 -555
  1104. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/component/func/typed.rs +0 -2498
  1105. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/component/func.rs +0 -746
  1106. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/component/instance.rs +0 -814
  1107. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/component/linker.rs +0 -783
  1108. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/component/matching.rs +0 -217
  1109. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/component/mod.rs +0 -783
  1110. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/component/resource_table.rs +0 -355
  1111. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/component/resources.rs +0 -1133
  1112. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/component/types.rs +0 -892
  1113. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/component/values.rs +0 -980
  1114. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/coredump.rs +0 -342
  1115. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/debug.rs +0 -166
  1116. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/externals/global.rs +0 -310
  1117. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/externals/table.rs +0 -477
  1118. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/func/typed.rs +0 -899
  1119. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/func.rs +0 -2627
  1120. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/gc/disabled/rooting.rs +0 -224
  1121. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/gc/enabled/anyref.rs +0 -473
  1122. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/gc/enabled/externref.rs +0 -650
  1123. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/gc/enabled/i31.rs +0 -346
  1124. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/gc/enabled/rooting.rs +0 -1588
  1125. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/gc.rs +0 -89
  1126. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/instance.rs +0 -992
  1127. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/instantiate.rs +0 -346
  1128. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/limits.rs +0 -399
  1129. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/linker.rs +0 -1506
  1130. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/memory.rs +0 -998
  1131. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/module/registry.rs +0 -353
  1132. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/module.rs +0 -1295
  1133. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/profiling.rs +0 -221
  1134. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/stack.rs +0 -73
  1135. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/store/data.rs +0 -301
  1136. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/store/func_refs.rs +0 -90
  1137. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/store.rs +0 -2820
  1138. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/trampoline/func.rs +0 -139
  1139. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/trampoline/memory.rs +0 -287
  1140. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/trampoline/table.rs +0 -29
  1141. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/trampoline.rs +0 -78
  1142. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/trap.rs +0 -642
  1143. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/type_registry.rs +0 -807
  1144. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/types/matching.rs +0 -421
  1145. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/types.rs +0 -2239
  1146. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/v128.rs +0 -131
  1147. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/values.rs +0 -966
  1148. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/arch/riscv64.rs +0 -41
  1149. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/component/libcalls.rs +0 -571
  1150. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/component/resources.rs +0 -352
  1151. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/component.rs +0 -860
  1152. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/const_expr.rs +0 -102
  1153. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/cow.rs +0 -893
  1154. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/export.rs +0 -108
  1155. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/gc/disabled.rs +0 -24
  1156. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/gc/enabled/drc.rs +0 -968
  1157. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/gc/enabled/free_list.rs +0 -771
  1158. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/gc/gc_ref.rs +0 -491
  1159. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/gc/gc_runtime.rs +0 -506
  1160. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/gc.rs +0 -245
  1161. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/instance/allocator/on_demand.rs +0 -218
  1162. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/instance/allocator/pooling/gc_heap_pool.rs +0 -93
  1163. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/instance/allocator/pooling/generic_stack_pool.rs +0 -66
  1164. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/instance/allocator/pooling/index_allocator.rs +0 -705
  1165. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/instance/allocator/pooling/memory_pool.rs +0 -1000
  1166. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/instance/allocator/pooling/table_pool.rs +0 -233
  1167. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/instance/allocator/pooling/unix_stack_pool.rs +0 -245
  1168. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/instance/allocator/pooling.rs +0 -656
  1169. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/instance/allocator.rs +0 -798
  1170. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/instance.rs +0 -1519
  1171. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/libcalls.rs +0 -834
  1172. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/memory.rs +0 -744
  1173. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/mmap.rs +0 -220
  1174. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/mmap_vec.rs +0 -162
  1175. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/module_id.rs +0 -43
  1176. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/mpk/disabled.rs +0 -43
  1177. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/mpk/enabled.rs +0 -214
  1178. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/mpk/mod.rs +0 -54
  1179. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/mpk/sys.rs +0 -114
  1180. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/sys/custom/capi.rs +0 -200
  1181. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/sys/custom/mmap.rs +0 -112
  1182. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/sys/custom/mod.rs +0 -34
  1183. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/sys/custom/unwind.rs +0 -17
  1184. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/sys/custom/vm.rs +0 -109
  1185. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/sys/miri/mmap.rs +0 -95
  1186. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/sys/miri/unwind.rs +0 -17
  1187. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/sys/miri/vm.rs +0 -63
  1188. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/sys/mod.rs +0 -25
  1189. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/sys/unix/mmap.rs +0 -162
  1190. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/sys/unix/signals.rs +0 -401
  1191. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/sys/unix/unwind.rs +0 -150
  1192. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/sys/unix/vm.rs +0 -215
  1193. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/sys/windows/mmap.rs +0 -221
  1194. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/sys/windows/unwind.rs +0 -46
  1195. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/sys/windows/vm.rs +0 -79
  1196. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/table.rs +0 -847
  1197. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/threads/shared_memory.rs +0 -233
  1198. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/threads/shared_memory_disabled.rs +0 -101
  1199. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/traphandlers.rs +0 -768
  1200. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/vmcontext/vm_host_func_context.rs +0 -138
  1201. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/vmcontext.rs +0 -1337
  1202. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm.rs +0 -287
  1203. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime.rs +0 -110
  1204. data/ext/cargo-vendor/wasmtime-asm-macros-21.0.1/.cargo-checksum.json +0 -1
  1205. data/ext/cargo-vendor/wasmtime-asm-macros-21.0.1/Cargo.toml +0 -22
  1206. data/ext/cargo-vendor/wasmtime-cache-21.0.1/.cargo-checksum.json +0 -1
  1207. data/ext/cargo-vendor/wasmtime-cache-21.0.1/Cargo.toml +0 -88
  1208. data/ext/cargo-vendor/wasmtime-cache-21.0.1/src/config.rs +0 -584
  1209. data/ext/cargo-vendor/wasmtime-cache-21.0.1/src/lib.rs +0 -235
  1210. data/ext/cargo-vendor/wasmtime-cache-21.0.1/src/tests.rs +0 -91
  1211. data/ext/cargo-vendor/wasmtime-cache-21.0.1/src/worker/tests.rs +0 -758
  1212. data/ext/cargo-vendor/wasmtime-cache-21.0.1/src/worker.rs +0 -890
  1213. data/ext/cargo-vendor/wasmtime-component-macro-21.0.1/.cargo-checksum.json +0 -1
  1214. data/ext/cargo-vendor/wasmtime-component-macro-21.0.1/Cargo.toml +0 -79
  1215. data/ext/cargo-vendor/wasmtime-component-macro-21.0.1/src/bindgen.rs +0 -436
  1216. data/ext/cargo-vendor/wasmtime-component-macro-21.0.1/src/component.rs +0 -1295
  1217. data/ext/cargo-vendor/wasmtime-component-macro-21.0.1/tests/codegen.rs +0 -576
  1218. data/ext/cargo-vendor/wasmtime-component-util-21.0.1/.cargo-checksum.json +0 -1
  1219. data/ext/cargo-vendor/wasmtime-component-util-21.0.1/Cargo.toml +0 -25
  1220. data/ext/cargo-vendor/wasmtime-cranelift-21.0.1/.cargo-checksum.json +0 -1
  1221. data/ext/cargo-vendor/wasmtime-cranelift-21.0.1/Cargo.toml +0 -114
  1222. data/ext/cargo-vendor/wasmtime-cranelift-21.0.1/src/compiler/component.rs +0 -968
  1223. data/ext/cargo-vendor/wasmtime-cranelift-21.0.1/src/compiler.rs +0 -1383
  1224. data/ext/cargo-vendor/wasmtime-cranelift-21.0.1/src/debug/gc.rs +0 -252
  1225. data/ext/cargo-vendor/wasmtime-cranelift-21.0.1/src/debug/transform/address_transform.rs +0 -783
  1226. data/ext/cargo-vendor/wasmtime-cranelift-21.0.1/src/debug/transform/attr.rs +0 -320
  1227. data/ext/cargo-vendor/wasmtime-cranelift-21.0.1/src/debug/transform/expression.rs +0 -1248
  1228. data/ext/cargo-vendor/wasmtime-cranelift-21.0.1/src/debug/transform/line_program.rs +0 -287
  1229. data/ext/cargo-vendor/wasmtime-cranelift-21.0.1/src/debug/transform/mod.rs +0 -256
  1230. data/ext/cargo-vendor/wasmtime-cranelift-21.0.1/src/debug/transform/range_info_builder.rs +0 -221
  1231. data/ext/cargo-vendor/wasmtime-cranelift-21.0.1/src/debug/transform/simulate.rs +0 -411
  1232. data/ext/cargo-vendor/wasmtime-cranelift-21.0.1/src/debug/transform/unit.rs +0 -529
  1233. data/ext/cargo-vendor/wasmtime-cranelift-21.0.1/src/debug/transform/utils.rs +0 -186
  1234. data/ext/cargo-vendor/wasmtime-cranelift-21.0.1/src/debug/write_debuginfo.rs +0 -196
  1235. data/ext/cargo-vendor/wasmtime-cranelift-21.0.1/src/debug.rs +0 -18
  1236. data/ext/cargo-vendor/wasmtime-cranelift-21.0.1/src/func_environ.rs +0 -2888
  1237. data/ext/cargo-vendor/wasmtime-cranelift-21.0.1/src/gc/enabled.rs +0 -648
  1238. data/ext/cargo-vendor/wasmtime-cranelift-21.0.1/src/lib.rs +0 -511
  1239. data/ext/cargo-vendor/wasmtime-cranelift-21.0.1/src/obj.rs +0 -545
  1240. data/ext/cargo-vendor/wasmtime-environ-21.0.1/.cargo-checksum.json +0 -1
  1241. data/ext/cargo-vendor/wasmtime-environ-21.0.1/Cargo.lock +0 -772
  1242. data/ext/cargo-vendor/wasmtime-environ-21.0.1/Cargo.toml +0 -154
  1243. data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/compile/address_map.rs +0 -73
  1244. data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/compile/mod.rs +0 -419
  1245. data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/compile/module_artifacts.rs +0 -315
  1246. data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/compile/module_environ.rs +0 -1337
  1247. data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/compile/module_types.rs +0 -362
  1248. data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/component/artifacts.rs +0 -72
  1249. data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/component/dfg.rs +0 -691
  1250. data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/component/info.rs +0 -672
  1251. data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/component/translate/adapt.rs +0 -455
  1252. data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/component/translate/inline.rs +0 -1332
  1253. data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/component/translate.rs +0 -978
  1254. data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/component/types.rs +0 -1029
  1255. data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/component/types_builder/resources.rs +0 -233
  1256. data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/component/types_builder.rs +0 -997
  1257. data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/component.rs +0 -107
  1258. data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/fact/trampoline.rs +0 -3234
  1259. data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/fact/transcode.rs +0 -90
  1260. data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/fact.rs +0 -714
  1261. data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/lib.rs +0 -161
  1262. data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/module.rs +0 -697
  1263. data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/module_artifacts.rs +0 -146
  1264. data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/module_types.rs +0 -91
  1265. data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/ref_bits.rs +0 -36
  1266. data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/stack_map.rs +0 -37
  1267. data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/tunables.rs +0 -168
  1268. data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/vmoffsets.rs +0 -1015
  1269. data/ext/cargo-vendor/wasmtime-fiber-21.0.1/.cargo-checksum.json +0 -1
  1270. data/ext/cargo-vendor/wasmtime-fiber-21.0.1/Cargo.toml +0 -64
  1271. data/ext/cargo-vendor/wasmtime-fiber-21.0.1/build.rs +0 -38
  1272. data/ext/cargo-vendor/wasmtime-fiber-21.0.1/src/lib.rs +0 -328
  1273. data/ext/cargo-vendor/wasmtime-fiber-21.0.1/src/unix.rs +0 -490
  1274. data/ext/cargo-vendor/wasmtime-fiber-21.0.1/src/windows.rs +0 -166
  1275. data/ext/cargo-vendor/wasmtime-jit-debug-21.0.1/.cargo-checksum.json +0 -1
  1276. data/ext/cargo-vendor/wasmtime-jit-debug-21.0.1/Cargo.toml +0 -67
  1277. data/ext/cargo-vendor/wasmtime-jit-debug-21.0.1/src/gdb_jit_int.rs +0 -130
  1278. data/ext/cargo-vendor/wasmtime-jit-debug-21.0.1/src/perf_jitdump.rs +0 -293
  1279. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-21.0.1/.cargo-checksum.json +0 -1
  1280. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-21.0.1/Cargo.toml +0 -51
  1281. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-21.0.1/src/libc.rs +0 -163
  1282. data/ext/cargo-vendor/wasmtime-slab-21.0.1/.cargo-checksum.json +0 -1
  1283. data/ext/cargo-vendor/wasmtime-slab-21.0.1/Cargo.toml +0 -21
  1284. data/ext/cargo-vendor/wasmtime-slab-21.0.1/src/lib.rs +0 -498
  1285. data/ext/cargo-vendor/wasmtime-types-21.0.1/.cargo-checksum.json +0 -1
  1286. data/ext/cargo-vendor/wasmtime-types-21.0.1/Cargo.toml +0 -55
  1287. data/ext/cargo-vendor/wasmtime-types-21.0.1/src/lib.rs +0 -1572
  1288. data/ext/cargo-vendor/wasmtime-versioned-export-macros-21.0.1/.cargo-checksum.json +0 -1
  1289. data/ext/cargo-vendor/wasmtime-versioned-export-macros-21.0.1/Cargo.toml +0 -32
  1290. data/ext/cargo-vendor/wasmtime-wasi-21.0.1/.cargo-checksum.json +0 -1
  1291. data/ext/cargo-vendor/wasmtime-wasi-21.0.1/Cargo.toml +0 -200
  1292. data/ext/cargo-vendor/wasmtime-wasi-21.0.1/src/bindings.rs +0 -280
  1293. data/ext/cargo-vendor/wasmtime-wasi-21.0.1/src/ctx.rs +0 -667
  1294. data/ext/cargo-vendor/wasmtime-wasi-21.0.1/src/filesystem.rs +0 -446
  1295. data/ext/cargo-vendor/wasmtime-wasi-21.0.1/src/host/clocks.rs +0 -103
  1296. data/ext/cargo-vendor/wasmtime-wasi-21.0.1/src/host/env.rs +0 -15
  1297. data/ext/cargo-vendor/wasmtime-wasi-21.0.1/src/host/exit.rs +0 -11
  1298. data/ext/cargo-vendor/wasmtime-wasi-21.0.1/src/host/filesystem/sync.rs +0 -518
  1299. data/ext/cargo-vendor/wasmtime-wasi-21.0.1/src/host/filesystem.rs +0 -1079
  1300. data/ext/cargo-vendor/wasmtime-wasi-21.0.1/src/host/instance_network.rs +0 -15
  1301. data/ext/cargo-vendor/wasmtime-wasi-21.0.1/src/host/io.rs +0 -367
  1302. data/ext/cargo-vendor/wasmtime-wasi-21.0.1/src/host/network.rs +0 -539
  1303. data/ext/cargo-vendor/wasmtime-wasi-21.0.1/src/host/random.rs +0 -36
  1304. data/ext/cargo-vendor/wasmtime-wasi-21.0.1/src/host/tcp.rs +0 -306
  1305. data/ext/cargo-vendor/wasmtime-wasi-21.0.1/src/host/tcp_create_socket.rs +0 -15
  1306. data/ext/cargo-vendor/wasmtime-wasi-21.0.1/src/host/udp.rs +0 -532
  1307. data/ext/cargo-vendor/wasmtime-wasi-21.0.1/src/host/udp_create_socket.rs +0 -15
  1308. data/ext/cargo-vendor/wasmtime-wasi-21.0.1/src/ip_name_lookup.rs +0 -126
  1309. data/ext/cargo-vendor/wasmtime-wasi-21.0.1/src/lib.rs +0 -426
  1310. data/ext/cargo-vendor/wasmtime-wasi-21.0.1/src/network.rs +0 -107
  1311. data/ext/cargo-vendor/wasmtime-wasi-21.0.1/src/pipe.rs +0 -826
  1312. data/ext/cargo-vendor/wasmtime-wasi-21.0.1/src/poll.rs +0 -233
  1313. data/ext/cargo-vendor/wasmtime-wasi-21.0.1/src/preview0.rs +0 -877
  1314. data/ext/cargo-vendor/wasmtime-wasi-21.0.1/src/preview1.rs +0 -2660
  1315. data/ext/cargo-vendor/wasmtime-wasi-21.0.1/src/stdio.rs +0 -507
  1316. data/ext/cargo-vendor/wasmtime-wasi-21.0.1/tests/all/api.rs +0 -198
  1317. data/ext/cargo-vendor/wasmtime-wasi-21.0.1/tests/all/async_.rs +0 -397
  1318. data/ext/cargo-vendor/wasmtime-wasi-21.0.1/tests/all/sync.rs +0 -331
  1319. data/ext/cargo-vendor/wasmtime-winch-21.0.1/.cargo-checksum.json +0 -1
  1320. data/ext/cargo-vendor/wasmtime-winch-21.0.1/Cargo.toml +0 -81
  1321. data/ext/cargo-vendor/wasmtime-winch-21.0.1/src/compiler.rs +0 -261
  1322. data/ext/cargo-vendor/wasmtime-wit-bindgen-21.0.1/.cargo-checksum.json +0 -1
  1323. data/ext/cargo-vendor/wasmtime-wit-bindgen-21.0.1/Cargo.toml +0 -46
  1324. data/ext/cargo-vendor/wasmtime-wit-bindgen-21.0.1/src/lib.rs +0 -2541
  1325. data/ext/cargo-vendor/wasmtime-wit-bindgen-21.0.1/src/rust.rs +0 -421
  1326. data/ext/cargo-vendor/wasmtime-wit-bindgen-21.0.1/src/types.rs +0 -202
  1327. data/ext/cargo-vendor/wast-209.0.1/.cargo-checksum.json +0 -1
  1328. data/ext/cargo-vendor/wast-209.0.1/Cargo.toml +0 -60
  1329. data/ext/cargo-vendor/wast-209.0.1/src/component/binary.rs +0 -1000
  1330. data/ext/cargo-vendor/wast-209.0.1/src/component/component.rs +0 -321
  1331. data/ext/cargo-vendor/wast-209.0.1/src/component/expand.rs +0 -875
  1332. data/ext/cargo-vendor/wast-209.0.1/src/component/resolve.rs +0 -999
  1333. data/ext/cargo-vendor/wast-209.0.1/src/component.rs +0 -28
  1334. data/ext/cargo-vendor/wast-209.0.1/src/core/binary.rs +0 -1396
  1335. data/ext/cargo-vendor/wast-209.0.1/src/core/expr.rs +0 -2016
  1336. data/ext/cargo-vendor/wast-209.0.1/src/core/memory.rs +0 -284
  1337. data/ext/cargo-vendor/wast-209.0.1/src/core/module.rs +0 -218
  1338. data/ext/cargo-vendor/wast-209.0.1/src/core/resolve/deinline_import_export.rs +0 -235
  1339. data/ext/cargo-vendor/wast-209.0.1/src/core/resolve/names.rs +0 -751
  1340. data/ext/cargo-vendor/wast-209.0.1/src/core/resolve/types.rs +0 -267
  1341. data/ext/cargo-vendor/wast-209.0.1/src/core/table.rs +0 -302
  1342. data/ext/cargo-vendor/wast-209.0.1/src/core/types.rs +0 -901
  1343. data/ext/cargo-vendor/wast-209.0.1/src/core.rs +0 -29
  1344. data/ext/cargo-vendor/wast-209.0.1/src/lib.rs +0 -551
  1345. data/ext/cargo-vendor/wast-209.0.1/src/parser.rs +0 -1414
  1346. data/ext/cargo-vendor/wast-209.0.1/src/wat.rs +0 -71
  1347. data/ext/cargo-vendor/wat-1.209.1/.cargo-checksum.json +0 -1
  1348. data/ext/cargo-vendor/wat-1.209.1/Cargo.toml +0 -34
  1349. data/ext/cargo-vendor/wat-1.209.1/src/lib.rs +0 -401
  1350. data/ext/cargo-vendor/wiggle-21.0.1/.cargo-checksum.json +0 -1
  1351. data/ext/cargo-vendor/wiggle-21.0.1/Cargo.toml +0 -123
  1352. data/ext/cargo-vendor/wiggle-21.0.1/LICENSE +0 -220
  1353. data/ext/cargo-vendor/wiggle-21.0.1/src/borrow.rs +0 -113
  1354. data/ext/cargo-vendor/wiggle-21.0.1/src/guest_type.rs +0 -237
  1355. data/ext/cargo-vendor/wiggle-21.0.1/src/lib.rs +0 -1184
  1356. data/ext/cargo-vendor/wiggle-21.0.1/src/wasmtime.rs +0 -97
  1357. data/ext/cargo-vendor/wiggle-generate-21.0.1/.cargo-checksum.json +0 -1
  1358. data/ext/cargo-vendor/wiggle-generate-21.0.1/Cargo.toml +0 -66
  1359. data/ext/cargo-vendor/wiggle-generate-21.0.1/LICENSE +0 -220
  1360. data/ext/cargo-vendor/wiggle-generate-21.0.1/src/funcs.rs +0 -435
  1361. data/ext/cargo-vendor/wiggle-generate-21.0.1/src/module_trait.rs +0 -102
  1362. data/ext/cargo-vendor/wiggle-generate-21.0.1/src/names.rs +0 -303
  1363. data/ext/cargo-vendor/wiggle-generate-21.0.1/src/types/flags.rs +0 -92
  1364. data/ext/cargo-vendor/wiggle-generate-21.0.1/src/types/handle.rs +0 -84
  1365. data/ext/cargo-vendor/wiggle-generate-21.0.1/src/types/mod.rs +0 -129
  1366. data/ext/cargo-vendor/wiggle-generate-21.0.1/src/types/record.rs +0 -132
  1367. data/ext/cargo-vendor/wiggle-generate-21.0.1/src/types/variant.rs +0 -191
  1368. data/ext/cargo-vendor/wiggle-generate-21.0.1/src/wasmtime.rs +0 -170
  1369. data/ext/cargo-vendor/wiggle-macro-21.0.1/.cargo-checksum.json +0 -1
  1370. data/ext/cargo-vendor/wiggle-macro-21.0.1/Cargo.toml +0 -55
  1371. data/ext/cargo-vendor/wiggle-macro-21.0.1/LICENSE +0 -220
  1372. data/ext/cargo-vendor/wiggle-macro-21.0.1/src/lib.rs +0 -210
  1373. data/ext/cargo-vendor/winch-codegen-0.19.1/.cargo-checksum.json +0 -1
  1374. data/ext/cargo-vendor/winch-codegen-0.19.1/Cargo.toml +0 -76
  1375. data/ext/cargo-vendor/winch-codegen-0.19.1/src/abi/mod.rs +0 -671
  1376. data/ext/cargo-vendor/winch-codegen-0.19.1/src/codegen/context.rs +0 -534
  1377. data/ext/cargo-vendor/winch-codegen-0.19.1/src/codegen/control.rs +0 -972
  1378. data/ext/cargo-vendor/winch-codegen-0.19.1/src/codegen/env.rs +0 -440
  1379. data/ext/cargo-vendor/winch-codegen-0.19.1/src/codegen/mod.rs +0 -882
  1380. data/ext/cargo-vendor/winch-codegen-0.19.1/src/frame/mod.rs +0 -258
  1381. data/ext/cargo-vendor/winch-codegen-0.19.1/src/isa/aarch64/asm.rs +0 -380
  1382. data/ext/cargo-vendor/winch-codegen-0.19.1/src/isa/aarch64/masm.rs +0 -566
  1383. data/ext/cargo-vendor/winch-codegen-0.19.1/src/isa/aarch64/regs.rs +0 -161
  1384. data/ext/cargo-vendor/winch-codegen-0.19.1/src/isa/x64/asm.rs +0 -1423
  1385. data/ext/cargo-vendor/winch-codegen-0.19.1/src/isa/x64/masm.rs +0 -1120
  1386. data/ext/cargo-vendor/winch-codegen-0.19.1/src/masm.rs +0 -941
  1387. data/ext/cargo-vendor/winch-codegen-0.19.1/src/regalloc.rs +0 -65
  1388. data/ext/cargo-vendor/winch-codegen-0.19.1/src/stack.rs +0 -439
  1389. data/ext/cargo-vendor/winch-codegen-0.19.1/src/visitor.rs +0 -2144
  1390. data/ext/cargo-vendor/wit-parser-0.207.0/.cargo-checksum.json +0 -1
  1391. data/ext/cargo-vendor/wit-parser-0.207.0/Cargo.toml +0 -109
  1392. data/ext/cargo-vendor/wit-parser-0.207.0/src/ast/lex.rs +0 -747
  1393. data/ext/cargo-vendor/wit-parser-0.207.0/src/ast/resolve.rs +0 -1442
  1394. data/ext/cargo-vendor/wit-parser-0.207.0/src/ast.rs +0 -1348
  1395. data/ext/cargo-vendor/wit-parser-0.207.0/src/decoding.rs +0 -1764
  1396. data/ext/cargo-vendor/wit-parser-0.207.0/src/docs.rs +0 -389
  1397. data/ext/cargo-vendor/wit-parser-0.207.0/src/lib.rs +0 -777
  1398. data/ext/cargo-vendor/wit-parser-0.207.0/src/live.rs +0 -126
  1399. data/ext/cargo-vendor/wit-parser-0.207.0/src/resolve.rs +0 -2337
  1400. data/ext/cargo-vendor/wit-parser-0.207.0/src/serde_.rs +0 -108
  1401. data/ext/cargo-vendor/wit-parser-0.207.0/tests/all.rs +0 -153
  1402. data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/complex-include.wit.json +0 -168
  1403. data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/diamond1.wit.json +0 -55
  1404. data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/disambiguate-diamond.wit.json +0 -107
  1405. data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/foreign-deps-union.wit.json +0 -380
  1406. data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/foreign-deps.wit.json +0 -344
  1407. data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/ignore-files-deps.wit.json +0 -39
  1408. data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/import-export-overlap2.wit.json +0 -41
  1409. data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/include-reps.wit.json +0 -60
  1410. data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/kinds-of-deps.wit.json +0 -87
  1411. data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/many-names.wit.json +0 -40
  1412. data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/multi-file.wit.json +0 -298
  1413. data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/parse-fail/conflicting-package.wit.result +0 -9
  1414. data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/parse-fail/multiple-package-docs.wit.result +0 -9
  1415. data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/parse-fail/resources-multiple-returns-borrow.wit.result +0 -5
  1416. data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/parse-fail/resources-return-borrow.wit.result +0 -5
  1417. data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/parse-fail/return-borrow1.wit.result +0 -5
  1418. data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/parse-fail/return-borrow2.wit.result +0 -5
  1419. data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/parse-fail/return-borrow6.wit.result +0 -5
  1420. data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/parse-fail/return-borrow7.wit.result +0 -5
  1421. data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/parse-fail/return-borrow8.wit.result +0 -8
  1422. data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/shared-types.wit.json +0 -83
  1423. data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/stress-export-elaborate.wit.json +0 -1136
  1424. data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/world-diamond.wit.json +0 -118
  1425. data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/world-iface-no-collide.wit.json +0 -66
  1426. data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/world-implicit-import1.wit.json +0 -75
  1427. data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/world-implicit-import2.wit.json +0 -70
  1428. data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/world-implicit-import3.wit.json +0 -71
  1429. data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/world-same-fields4.wit.json +0 -76
  1430. data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/world-top-level-resources.wit.json +0 -231
  1431. data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/worlds-union-dedup.wit.json +0 -100
  1432. data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/worlds-with-types.wit.json +0 -202
  1433. /data/ext/cargo-vendor/{cranelift-bforest-0.108.1 → cranelift-bforest-0.110.2}/LICENSE +0 -0
  1434. /data/ext/cargo-vendor/{cranelift-bforest-0.108.1 → cranelift-bforest-0.110.2}/README.md +0 -0
  1435. /data/ext/cargo-vendor/{cranelift-bforest-0.108.1 → cranelift-bforest-0.110.2}/src/lib.rs +0 -0
  1436. /data/ext/cargo-vendor/{cranelift-bforest-0.108.1 → cranelift-bforest-0.110.2}/src/map.rs +0 -0
  1437. /data/ext/cargo-vendor/{cranelift-bforest-0.108.1 → cranelift-bforest-0.110.2}/src/node.rs +0 -0
  1438. /data/ext/cargo-vendor/{cranelift-bforest-0.108.1 → cranelift-bforest-0.110.2}/src/path.rs +0 -0
  1439. /data/ext/cargo-vendor/{cranelift-bforest-0.108.1 → cranelift-bforest-0.110.2}/src/pool.rs +0 -0
  1440. /data/ext/cargo-vendor/{cranelift-bforest-0.108.1 → cranelift-bforest-0.110.2}/src/set.rs +0 -0
  1441. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/LICENSE +0 -0
  1442. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/README.md +0 -0
  1443. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/benches/x64-evex-encoding.rs +0 -0
  1444. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/build.rs +0 -0
  1445. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/alias_analysis.rs +0 -0
  1446. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/binemit/mod.rs +0 -0
  1447. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/cfg_printer.rs +0 -0
  1448. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/constant_hash.rs +0 -0
  1449. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/ctxhash.rs +0 -0
  1450. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/cursor.rs +0 -0
  1451. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/dbg.rs +0 -0
  1452. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/egraph/cost.rs +0 -0
  1453. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/egraph/elaborate.rs +0 -0
  1454. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/flowgraph.rs +0 -0
  1455. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/incremental_cache.rs +0 -0
  1456. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/ir/atomic_rmw_op.rs +0 -0
  1457. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/ir/builder.rs +0 -0
  1458. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/ir/condcodes.rs +0 -0
  1459. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/ir/constant.rs +0 -0
  1460. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/ir/dynamic_type.rs +0 -0
  1461. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/ir/entities.rs +0 -0
  1462. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/ir/extname.rs +0 -0
  1463. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/ir/function.rs +0 -0
  1464. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/ir/known_symbol.rs +0 -0
  1465. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/ir/layout.rs +0 -0
  1466. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/ir/libcall.rs +0 -0
  1467. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/ir/memflags.rs +0 -0
  1468. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/ir/memtype.rs +0 -0
  1469. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/ir/pcc.rs +0 -0
  1470. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/ir/progpoint.rs +0 -0
  1471. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/ir/sourceloc.rs +0 -0
  1472. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/isa/aarch64/inst/unwind.rs +0 -0
  1473. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/isa/aarch64/inst_neon.isle +0 -0
  1474. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/isa/aarch64/lower/isle/generated_code.rs +0 -0
  1475. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/isa/aarch64/lower/isle.rs +0 -0
  1476. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/isa/aarch64/lower.rs +0 -0
  1477. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/isa/aarch64/lower_dynamic_neon.isle +0 -0
  1478. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/isa/aarch64/settings.rs +0 -0
  1479. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/isa/call_conv.rs +0 -0
  1480. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/isa/riscv64/inst/regs.rs +0 -0
  1481. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/isa/riscv64/inst/unwind.rs +0 -0
  1482. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/isa/riscv64/lower/isle/generated_code.rs +0 -0
  1483. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/isa/riscv64/lower.rs +0 -0
  1484. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/isa/riscv64/settings.rs +0 -0
  1485. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/isa/s390x/inst/unwind.rs +0 -0
  1486. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/isa/s390x/lower/isle/generated_code.rs +0 -0
  1487. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/isa/s390x/lower/isle.rs +0 -0
  1488. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/isa/s390x/lower.rs +0 -0
  1489. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/isa/s390x/settings.rs +0 -0
  1490. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/isa/unwind/systemv.rs +0 -0
  1491. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/isa/unwind/winx64.rs +0 -0
  1492. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/isa/unwind.rs +0 -0
  1493. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/isa/x64/encoding/evex.rs +0 -0
  1494. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/isa/x64/encoding/mod.rs +0 -0
  1495. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/isa/x64/encoding/rex.rs +0 -0
  1496. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/isa/x64/encoding/vex.rs +0 -0
  1497. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/isa/x64/inst/unwind/winx64.rs +0 -0
  1498. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/isa/x64/inst/unwind.rs +0 -0
  1499. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/isa/x64/lower/isle/generated_code.rs +0 -0
  1500. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/isa/x64/lower/isle.rs +0 -0
  1501. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/isa/x64/lower.rs +0 -0
  1502. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/isa/x64/settings.rs +0 -0
  1503. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/iterators.rs +0 -0
  1504. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/legalizer/globalvalue.rs +0 -0
  1505. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/loop_analysis.rs +0 -0
  1506. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/machinst/compile.rs +0 -0
  1507. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/machinst/inst_common.rs +0 -0
  1508. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/machinst/pcc.rs +0 -0
  1509. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/nan_canonicalization.rs +0 -0
  1510. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/opts/README.md +0 -0
  1511. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/opts/arithmetic.isle +0 -0
  1512. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/opts/bitops.isle +0 -0
  1513. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/opts/extends.isle +0 -0
  1514. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/opts/generated_code.rs +0 -0
  1515. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/opts/icmp.isle +0 -0
  1516. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/opts/remat.isle +0 -0
  1517. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/opts/selects.isle +0 -0
  1518. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/opts/spaceship.isle +0 -0
  1519. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/opts/spectre.isle +0 -0
  1520. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/opts/vector.isle +0 -0
  1521. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/opts.rs +0 -0
  1522. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/prelude_opt.isle +0 -0
  1523. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/print_errors.rs +0 -0
  1524. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/ranges.rs +0 -0
  1525. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/remove_constant_phis.rs +0 -0
  1526. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/result.rs +0 -0
  1527. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/scoped_hash_map.rs +0 -0
  1528. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/settings.rs +0 -0
  1529. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/souper_harvest.rs +0 -0
  1530. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/unionfind.rs +0 -0
  1531. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/unreachable_code.rs +0 -0
  1532. /data/ext/cargo-vendor/{cranelift-codegen-0.108.1 → cranelift-codegen-0.110.2}/src/value_label.rs +0 -0
  1533. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.108.1 → cranelift-codegen-meta-0.110.2}/LICENSE +0 -0
  1534. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.108.1 → cranelift-codegen-meta-0.110.2}/README.md +0 -0
  1535. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.108.1 → cranelift-codegen-meta-0.110.2}/src/cdsl/formats.rs +0 -0
  1536. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.108.1 → cranelift-codegen-meta-0.110.2}/src/cdsl/instructions.rs +0 -0
  1537. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.108.1 → cranelift-codegen-meta-0.110.2}/src/cdsl/isa.rs +0 -0
  1538. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.108.1 → cranelift-codegen-meta-0.110.2}/src/cdsl/mod.rs +0 -0
  1539. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.108.1 → cranelift-codegen-meta-0.110.2}/src/cdsl/operands.rs +0 -0
  1540. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.108.1 → cranelift-codegen-meta-0.110.2}/src/cdsl/settings.rs +0 -0
  1541. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.108.1 → cranelift-codegen-meta-0.110.2}/src/constant_hash.rs +0 -0
  1542. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.108.1 → cranelift-codegen-meta-0.110.2}/src/error.rs +0 -0
  1543. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.108.1 → cranelift-codegen-meta-0.110.2}/src/gen_isle.rs +0 -0
  1544. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.108.1 → cranelift-codegen-meta-0.110.2}/src/gen_settings.rs +0 -0
  1545. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.108.1 → cranelift-codegen-meta-0.110.2}/src/gen_types.rs +0 -0
  1546. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.108.1 → cranelift-codegen-meta-0.110.2}/src/isa/arm64.rs +0 -0
  1547. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.108.1 → cranelift-codegen-meta-0.110.2}/src/isa/mod.rs +0 -0
  1548. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.108.1 → cranelift-codegen-meta-0.110.2}/src/isa/s390x.rs +0 -0
  1549. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.108.1 → cranelift-codegen-meta-0.110.2}/src/isa/x86.rs +0 -0
  1550. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.108.1 → cranelift-codegen-meta-0.110.2}/src/isle.rs +0 -0
  1551. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.108.1 → cranelift-codegen-meta-0.110.2}/src/lib.rs +0 -0
  1552. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.108.1 → cranelift-codegen-meta-0.110.2}/src/shared/entities.rs +0 -0
  1553. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.108.1 → cranelift-codegen-meta-0.110.2}/src/shared/formats.rs +0 -0
  1554. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.108.1 → cranelift-codegen-meta-0.110.2}/src/shared/immediates.rs +0 -0
  1555. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.108.1 → cranelift-codegen-meta-0.110.2}/src/shared/mod.rs +0 -0
  1556. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.108.1 → cranelift-codegen-meta-0.110.2}/src/shared/settings.rs +0 -0
  1557. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.108.1 → cranelift-codegen-meta-0.110.2}/src/srcgen.rs +0 -0
  1558. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.108.1 → cranelift-codegen-meta-0.110.2}/src/unique_table.rs +0 -0
  1559. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.108.1 → cranelift-codegen-shared-0.110.2}/LICENSE +0 -0
  1560. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.108.1 → cranelift-codegen-shared-0.110.2}/README.md +0 -0
  1561. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.108.1 → cranelift-codegen-shared-0.110.2}/src/constant_hash.rs +0 -0
  1562. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.108.1 → cranelift-codegen-shared-0.110.2}/src/lib.rs +0 -0
  1563. /data/ext/cargo-vendor/{cranelift-control-0.108.1 → cranelift-control-0.110.2}/LICENSE +0 -0
  1564. /data/ext/cargo-vendor/{cranelift-control-0.108.1 → cranelift-control-0.110.2}/README.md +0 -0
  1565. /data/ext/cargo-vendor/{cranelift-control-0.108.1 → cranelift-control-0.110.2}/src/chaos.rs +0 -0
  1566. /data/ext/cargo-vendor/{cranelift-control-0.108.1 → cranelift-control-0.110.2}/src/lib.rs +0 -0
  1567. /data/ext/cargo-vendor/{cranelift-control-0.108.1 → cranelift-control-0.110.2}/src/zero_sized.rs +0 -0
  1568. /data/ext/cargo-vendor/{cranelift-entity-0.108.1 → cranelift-entity-0.110.2}/LICENSE +0 -0
  1569. /data/ext/cargo-vendor/{cranelift-entity-0.108.1 → cranelift-entity-0.110.2}/README.md +0 -0
  1570. /data/ext/cargo-vendor/{cranelift-entity-0.108.1 → cranelift-entity-0.110.2}/src/boxed_slice.rs +0 -0
  1571. /data/ext/cargo-vendor/{cranelift-entity-0.108.1 → cranelift-entity-0.110.2}/src/iter.rs +0 -0
  1572. /data/ext/cargo-vendor/{cranelift-entity-0.108.1 → cranelift-entity-0.110.2}/src/keys.rs +0 -0
  1573. /data/ext/cargo-vendor/{cranelift-entity-0.108.1 → cranelift-entity-0.110.2}/src/lib.rs +0 -0
  1574. /data/ext/cargo-vendor/{cranelift-entity-0.108.1 → cranelift-entity-0.110.2}/src/list.rs +0 -0
  1575. /data/ext/cargo-vendor/{cranelift-entity-0.108.1 → cranelift-entity-0.110.2}/src/map.rs +0 -0
  1576. /data/ext/cargo-vendor/{cranelift-entity-0.108.1 → cranelift-entity-0.110.2}/src/packed_option.rs +0 -0
  1577. /data/ext/cargo-vendor/{cranelift-entity-0.108.1 → cranelift-entity-0.110.2}/src/primary.rs +0 -0
  1578. /data/ext/cargo-vendor/{cranelift-entity-0.108.1 → cranelift-entity-0.110.2}/src/sparse.rs +0 -0
  1579. /data/ext/cargo-vendor/{cranelift-entity-0.108.1 → cranelift-entity-0.110.2}/src/unsigned.rs +0 -0
  1580. /data/ext/cargo-vendor/{cranelift-frontend-0.108.1 → cranelift-frontend-0.110.2}/LICENSE +0 -0
  1581. /data/ext/cargo-vendor/{cranelift-frontend-0.108.1 → cranelift-frontend-0.110.2}/README.md +0 -0
  1582. /data/ext/cargo-vendor/{cranelift-frontend-0.108.1 → cranelift-frontend-0.110.2}/src/switch.rs +0 -0
  1583. /data/ext/cargo-vendor/{cranelift-frontend-0.108.1 → cranelift-frontend-0.110.2}/src/variable.rs +0 -0
  1584. /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.110.2}/README.md +0 -0
  1585. /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.110.2}/build.rs +0 -0
  1586. /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.110.2}/isle_examples/fail/bad_converters.isle +0 -0
  1587. /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.110.2}/isle_examples/fail/bound_var_type_mismatch.isle +0 -0
  1588. /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.110.2}/isle_examples/fail/converter_extractor_constructor.isle +0 -0
  1589. /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.110.2}/isle_examples/fail/error1.isle +0 -0
  1590. /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.110.2}/isle_examples/fail/extra_parens.isle +0 -0
  1591. /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.110.2}/isle_examples/fail/impure_expression.isle +0 -0
  1592. /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.110.2}/isle_examples/fail/impure_rhs.isle +0 -0
  1593. /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.110.2}/isle_examples/fail/multi_internal_etor.isle +0 -0
  1594. /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.110.2}/isle_examples/fail/multi_prio.isle +0 -0
  1595. /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.110.2}/isle_examples/link/borrows.isle +0 -0
  1596. /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.110.2}/isle_examples/link/borrows_main.rs +0 -0
  1597. /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.110.2}/isle_examples/link/iflets.isle +0 -0
  1598. /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.110.2}/isle_examples/link/iflets_main.rs +0 -0
  1599. /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.110.2}/isle_examples/link/multi_constructor.isle +0 -0
  1600. /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.110.2}/isle_examples/link/multi_constructor_main.rs +0 -0
  1601. /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.110.2}/isle_examples/link/multi_extractor.isle +0 -0
  1602. /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.110.2}/isle_examples/link/multi_extractor_main.rs +0 -0
  1603. /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.110.2}/isle_examples/link/test.isle +0 -0
  1604. /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.110.2}/isle_examples/link/test_main.rs +0 -0
  1605. /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.110.2}/isle_examples/pass/bound_var.isle +0 -0
  1606. /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.110.2}/isle_examples/pass/construct_and_extract.isle +0 -0
  1607. /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.110.2}/isle_examples/pass/conversions.isle +0 -0
  1608. /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.110.2}/isle_examples/pass/conversions_extern.isle +0 -0
  1609. /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.110.2}/isle_examples/pass/let.isle +0 -0
  1610. /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.110.2}/isle_examples/pass/nodebug.isle +0 -0
  1611. /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.110.2}/isle_examples/pass/prio_trie_bug.isle +0 -0
  1612. /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.110.2}/isle_examples/pass/test2.isle +0 -0
  1613. /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.110.2}/isle_examples/pass/test3.isle +0 -0
  1614. /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.110.2}/isle_examples/pass/test4.isle +0 -0
  1615. /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.110.2}/isle_examples/pass/tutorial.isle +0 -0
  1616. /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.110.2}/isle_examples/run/iconst.isle +0 -0
  1617. /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.110.2}/isle_examples/run/iconst_main.rs +0 -0
  1618. /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.110.2}/isle_examples/run/let_shadowing.isle +0 -0
  1619. /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.110.2}/isle_examples/run/let_shadowing_main.rs +0 -0
  1620. /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.110.2}/src/ast.rs +0 -0
  1621. /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.110.2}/src/compile.rs +0 -0
  1622. /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.110.2}/src/disjointsets.rs +0 -0
  1623. /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.110.2}/src/error.rs +0 -0
  1624. /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.110.2}/src/lexer.rs +0 -0
  1625. /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.110.2}/src/lib.rs +0 -0
  1626. /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.110.2}/src/log.rs +0 -0
  1627. /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.110.2}/src/overlap.rs +0 -0
  1628. /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.110.2}/src/serialize.rs +0 -0
  1629. /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.110.2}/src/stablemapset.rs +0 -0
  1630. /data/ext/cargo-vendor/{cranelift-isle-0.108.1 → cranelift-isle-0.110.2}/tests/run_tests.rs +0 -0
  1631. /data/ext/cargo-vendor/{cranelift-native-0.108.1 → cranelift-native-0.110.2}/LICENSE +0 -0
  1632. /data/ext/cargo-vendor/{cranelift-native-0.108.1 → cranelift-native-0.110.2}/README.md +0 -0
  1633. /data/ext/cargo-vendor/{cranelift-wasm-0.108.1 → cranelift-wasm-0.110.2}/LICENSE +0 -0
  1634. /data/ext/cargo-vendor/{cranelift-wasm-0.108.1 → cranelift-wasm-0.110.2}/README.md +0 -0
  1635. /data/ext/cargo-vendor/{cranelift-wasm-0.108.1 → cranelift-wasm-0.110.2}/src/environ/dummy.rs +0 -0
  1636. /data/ext/cargo-vendor/{cranelift-wasm-0.108.1 → cranelift-wasm-0.110.2}/src/environ/mod.rs +0 -0
  1637. /data/ext/cargo-vendor/{cranelift-wasm-0.108.1 → cranelift-wasm-0.110.2}/src/environ/spec.rs +0 -0
  1638. /data/ext/cargo-vendor/{cranelift-wasm-0.108.1 → cranelift-wasm-0.110.2}/src/lib.rs +0 -0
  1639. /data/ext/cargo-vendor/{cranelift-wasm-0.108.1 → cranelift-wasm-0.110.2}/src/table.rs +0 -0
  1640. /data/ext/cargo-vendor/{cranelift-wasm-0.108.1 → cranelift-wasm-0.110.2}/src/translation_utils.rs +0 -0
  1641. /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.22 → deterministic-wasi-ctx-0.1.23}/README.md +0 -0
  1642. /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.22 → deterministic-wasi-ctx-0.1.23}/src/clocks.rs +0 -0
  1643. /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.22 → deterministic-wasi-ctx-0.1.23}/src/lib.rs +0 -0
  1644. /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.22 → deterministic-wasi-ctx-0.1.23}/src/noop_scheduler.rs +0 -0
  1645. /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.22 → deterministic-wasi-ctx-0.1.23}/tests/clocks.rs +0 -0
  1646. /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.22 → deterministic-wasi-ctx-0.1.23}/tests/common/mod.rs +0 -0
  1647. /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.22 → deterministic-wasi-ctx-0.1.23}/tests/random.rs +0 -0
  1648. /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.22 → deterministic-wasi-ctx-0.1.23}/tests/scheduler.rs +0 -0
  1649. /data/ext/cargo-vendor/{object-0.33.0 → object-0.36.3}/LICENSE-APACHE +0 -0
  1650. /data/ext/cargo-vendor/{object-0.33.0 → object-0.36.3}/LICENSE-MIT +0 -0
  1651. /data/ext/cargo-vendor/{object-0.33.0 → object-0.36.3}/src/archive.rs +0 -0
  1652. /data/ext/cargo-vendor/{object-0.33.0 → object-0.36.3}/src/build/error.rs +0 -0
  1653. /data/ext/cargo-vendor/{object-0.33.0 → object-0.36.3}/src/build/mod.rs +0 -0
  1654. /data/ext/cargo-vendor/{object-0.33.0 → object-0.36.3}/src/build/table.rs +0 -0
  1655. /data/ext/cargo-vendor/{object-0.33.0 → object-0.36.3}/src/lib.rs +0 -0
  1656. /data/ext/cargo-vendor/{object-0.33.0 → object-0.36.3}/src/pe.rs +0 -0
  1657. /data/ext/cargo-vendor/{object-0.33.0 → object-0.36.3}/src/read/coff/import.rs +0 -0
  1658. /data/ext/cargo-vendor/{object-0.33.0 → object-0.36.3}/src/read/coff/mod.rs +0 -0
  1659. /data/ext/cargo-vendor/{object-0.33.0 → object-0.36.3}/src/read/elf/compression.rs +0 -0
  1660. /data/ext/cargo-vendor/{object-0.33.0 → object-0.36.3}/src/read/elf/dynamic.rs +0 -0
  1661. /data/ext/cargo-vendor/{object-0.33.0 → object-0.36.3}/src/read/elf/mod.rs +0 -0
  1662. /data/ext/cargo-vendor/{object-0.33.0 → object-0.36.3}/src/read/macho/fat.rs +0 -0
  1663. /data/ext/cargo-vendor/{object-0.33.0 → object-0.36.3}/src/read/macho/mod.rs +0 -0
  1664. /data/ext/cargo-vendor/{object-0.33.0 → object-0.36.3}/src/read/macho/relocation.rs +0 -0
  1665. /data/ext/cargo-vendor/{object-0.33.0 → object-0.36.3}/src/read/pe/data_directory.rs +0 -0
  1666. /data/ext/cargo-vendor/{object-0.33.0 → object-0.36.3}/src/read/pe/export.rs +0 -0
  1667. /data/ext/cargo-vendor/{object-0.33.0 → object-0.36.3}/src/read/pe/mod.rs +0 -0
  1668. /data/ext/cargo-vendor/{object-0.33.0 → object-0.36.3}/src/read/pe/resource.rs +0 -0
  1669. /data/ext/cargo-vendor/{object-0.33.0 → object-0.36.3}/src/read/pe/rich.rs +0 -0
  1670. /data/ext/cargo-vendor/{object-0.33.0 → object-0.36.3}/src/read/read_ref.rs +0 -0
  1671. /data/ext/cargo-vendor/{object-0.33.0 → object-0.36.3}/src/read/util.rs +0 -0
  1672. /data/ext/cargo-vendor/{object-0.33.0 → object-0.36.3}/src/read/xcoff/comdat.rs +0 -0
  1673. /data/ext/cargo-vendor/{object-0.33.0 → object-0.36.3}/src/read/xcoff/mod.rs +0 -0
  1674. /data/ext/cargo-vendor/{object-0.33.0 → object-0.36.3}/src/read/xcoff/segment.rs +0 -0
  1675. /data/ext/cargo-vendor/{object-0.33.0 → object-0.36.3}/src/write/coff/mod.rs +0 -0
  1676. /data/ext/cargo-vendor/{object-0.33.0 → object-0.36.3}/src/write/elf/mod.rs +0 -0
  1677. /data/ext/cargo-vendor/{object-0.33.0 → object-0.36.3}/src/write/string.rs +0 -0
  1678. /data/ext/cargo-vendor/{object-0.33.0 → object-0.36.3}/src/write/util.rs +0 -0
  1679. /data/ext/cargo-vendor/{object-0.33.0 → object-0.36.3}/src/xcoff.rs +0 -0
  1680. /data/ext/cargo-vendor/{object-0.33.0 → object-0.36.3}/tests/parse_self.rs +0 -0
  1681. /data/ext/cargo-vendor/{object-0.33.0 → object-0.36.3}/tests/read/coff.rs +0 -0
  1682. /data/ext/cargo-vendor/{object-0.33.0 → object-0.36.3}/tests/read/elf.rs +0 -0
  1683. /data/ext/cargo-vendor/{object-0.33.0 → object-0.36.3}/tests/round_trip/coff.rs +0 -0
  1684. /data/ext/cargo-vendor/{object-0.33.0 → object-0.36.3}/tests/round_trip/macho.rs +0 -0
  1685. /data/ext/cargo-vendor/{wasi-common-21.0.1 → wasi-common-23.0.2}/LICENSE +0 -0
  1686. /data/ext/cargo-vendor/{wasi-common-21.0.1 → wasi-common-23.0.2}/README.md +0 -0
  1687. /data/ext/cargo-vendor/{wasi-common-21.0.1 → wasi-common-23.0.2}/src/clocks.rs +0 -0
  1688. /data/ext/cargo-vendor/{wasi-common-21.0.1 → wasi-common-23.0.2}/src/ctx.rs +0 -0
  1689. /data/ext/cargo-vendor/{wasi-common-21.0.1 → wasi-common-23.0.2}/src/dir.rs +0 -0
  1690. /data/ext/cargo-vendor/{wasi-common-21.0.1 → wasi-common-23.0.2}/src/error.rs +0 -0
  1691. /data/ext/cargo-vendor/{wasi-common-21.0.1 → wasi-common-23.0.2}/src/file.rs +0 -0
  1692. /data/ext/cargo-vendor/{wasi-common-21.0.1 → wasi-common-23.0.2}/src/lib.rs +0 -0
  1693. /data/ext/cargo-vendor/{wasi-common-21.0.1 → wasi-common-23.0.2}/src/pipe.rs +0 -0
  1694. /data/ext/cargo-vendor/{wasi-common-21.0.1 → wasi-common-23.0.2}/src/random.rs +0 -0
  1695. /data/ext/cargo-vendor/{wasi-common-21.0.1 → wasi-common-23.0.2}/src/sched/subscription.rs +0 -0
  1696. /data/ext/cargo-vendor/{wasi-common-21.0.1 → wasi-common-23.0.2}/src/sched.rs +0 -0
  1697. /data/ext/cargo-vendor/{wasi-common-21.0.1 → wasi-common-23.0.2}/src/snapshots/mod.rs +0 -0
  1698. /data/ext/cargo-vendor/{wasi-common-21.0.1 → wasi-common-23.0.2}/src/snapshots/preview_1/error.rs +0 -0
  1699. /data/ext/cargo-vendor/{wasi-common-21.0.1 → wasi-common-23.0.2}/src/sync/clocks.rs +0 -0
  1700. /data/ext/cargo-vendor/{wasi-common-21.0.1 → wasi-common-23.0.2}/src/sync/dir.rs +0 -0
  1701. /data/ext/cargo-vendor/{wasi-common-21.0.1 → wasi-common-23.0.2}/src/sync/file.rs +0 -0
  1702. /data/ext/cargo-vendor/{wasi-common-21.0.1 → wasi-common-23.0.2}/src/sync/mod.rs +0 -0
  1703. /data/ext/cargo-vendor/{wasi-common-21.0.1 → wasi-common-23.0.2}/src/sync/net.rs +0 -0
  1704. /data/ext/cargo-vendor/{wasi-common-21.0.1 → wasi-common-23.0.2}/src/sync/sched/unix.rs +0 -0
  1705. /data/ext/cargo-vendor/{wasi-common-21.0.1 → wasi-common-23.0.2}/src/sync/sched.rs +0 -0
  1706. /data/ext/cargo-vendor/{wasi-common-21.0.1 → wasi-common-23.0.2}/src/sync/stdio.rs +0 -0
  1707. /data/ext/cargo-vendor/{wasi-common-21.0.1 → wasi-common-23.0.2}/src/table.rs +0 -0
  1708. /data/ext/cargo-vendor/{wasi-common-21.0.1 → wasi-common-23.0.2}/src/tokio/dir.rs +0 -0
  1709. /data/ext/cargo-vendor/{wasi-common-21.0.1 → wasi-common-23.0.2}/src/tokio/net.rs +0 -0
  1710. /data/ext/cargo-vendor/{wasi-common-21.0.1 → wasi-common-23.0.2}/src/tokio/sched/unix.rs +0 -0
  1711. /data/ext/cargo-vendor/{wasi-common-21.0.1 → wasi-common-23.0.2}/src/tokio/sched/windows.rs +0 -0
  1712. /data/ext/cargo-vendor/{wasi-common-21.0.1 → wasi-common-23.0.2}/src/tokio/sched.rs +0 -0
  1713. /data/ext/cargo-vendor/{wasi-common-21.0.1 → wasi-common-23.0.2}/src/tokio/stdio.rs +0 -0
  1714. /data/ext/cargo-vendor/{wasi-common-21.0.1 → wasi-common-23.0.2}/tests/all/main.rs +0 -0
  1715. /data/ext/cargo-vendor/{wasi-common-21.0.1 → wasi-common-23.0.2}/witx/preview0/typenames.witx +0 -0
  1716. /data/ext/cargo-vendor/{wasi-common-21.0.1 → wasi-common-23.0.2}/witx/preview0/wasi_unstable.witx +0 -0
  1717. /data/ext/cargo-vendor/{wasi-common-21.0.1 → wasi-common-23.0.2}/witx/preview1/typenames.witx +0 -0
  1718. /data/ext/cargo-vendor/{wasi-common-21.0.1 → wasi-common-23.0.2}/witx/preview1/wasi_snapshot_preview1.witx +0 -0
  1719. /data/ext/cargo-vendor/{wasm-encoder-0.207.0 → wasm-encoder-0.212.0}/LICENSE +0 -0
  1720. /data/ext/cargo-vendor/{wasm-encoder-0.207.0 → wasm-encoder-0.212.0}/README.md +0 -0
  1721. /data/ext/cargo-vendor/{wasm-encoder-0.207.0 → wasm-encoder-0.212.0}/src/component/aliases.rs +0 -0
  1722. /data/ext/cargo-vendor/{wasm-encoder-0.207.0 → wasm-encoder-0.212.0}/src/component/builder.rs +0 -0
  1723. /data/ext/cargo-vendor/{wasm-encoder-0.207.0 → wasm-encoder-0.212.0}/src/component/canonicals.rs +0 -0
  1724. /data/ext/cargo-vendor/{wasm-encoder-0.207.0 → wasm-encoder-0.212.0}/src/component/components.rs +0 -0
  1725. /data/ext/cargo-vendor/{wasm-encoder-0.207.0 → wasm-encoder-0.212.0}/src/component/exports.rs +0 -0
  1726. /data/ext/cargo-vendor/{wasm-encoder-0.207.0 → wasm-encoder-0.212.0}/src/component/imports.rs +0 -0
  1727. /data/ext/cargo-vendor/{wasm-encoder-0.207.0 → wasm-encoder-0.212.0}/src/component/instances.rs +0 -0
  1728. /data/ext/cargo-vendor/{wasm-encoder-0.207.0 → wasm-encoder-0.212.0}/src/component/modules.rs +0 -0
  1729. /data/ext/cargo-vendor/{wasm-encoder-0.207.0 → wasm-encoder-0.212.0}/src/component/names.rs +0 -0
  1730. /data/ext/cargo-vendor/{wasm-encoder-0.207.0 → wasm-encoder-0.212.0}/src/component/start.rs +0 -0
  1731. /data/ext/cargo-vendor/{wasm-encoder-0.207.0 → wasm-encoder-0.212.0}/src/component.rs +0 -0
  1732. /data/ext/cargo-vendor/{wasm-encoder-0.207.0 → wasm-encoder-0.212.0}/src/core/custom.rs +0 -0
  1733. /data/ext/cargo-vendor/{wasm-encoder-0.207.0 → wasm-encoder-0.212.0}/src/core/data.rs +0 -0
  1734. /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.212.0}/src/core/dump.rs +0 -0
  1735. /data/ext/cargo-vendor/{wasm-encoder-0.207.0 → wasm-encoder-0.212.0}/src/core/elements.rs +0 -0
  1736. /data/ext/cargo-vendor/{wasm-encoder-0.207.0 → wasm-encoder-0.212.0}/src/core/functions.rs +0 -0
  1737. /data/ext/cargo-vendor/{wasm-encoder-0.207.0 → wasm-encoder-0.212.0}/src/core/linking.rs +0 -0
  1738. /data/ext/cargo-vendor/{wasm-encoder-0.207.0 → wasm-encoder-0.212.0}/src/core/names.rs +0 -0
  1739. /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.212.0}/src/core/producers.rs +0 -0
  1740. /data/ext/cargo-vendor/{wasm-encoder-0.207.0 → wasm-encoder-0.212.0}/src/core/start.rs +0 -0
  1741. /data/ext/cargo-vendor/{wasm-encoder-0.207.0 → wasm-encoder-0.212.0}/src/core.rs +0 -0
  1742. /data/ext/cargo-vendor/{wasm-encoder-0.207.0 → wasm-encoder-0.212.0}/src/raw.rs +0 -0
  1743. /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.215.0}/README.md +0 -0
  1744. /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.215.0}/src/component/aliases.rs +0 -0
  1745. /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.215.0}/src/component/builder.rs +0 -0
  1746. /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.215.0}/src/component/canonicals.rs +0 -0
  1747. /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.215.0}/src/component/components.rs +0 -0
  1748. /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.215.0}/src/component/exports.rs +0 -0
  1749. /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.215.0}/src/component/imports.rs +0 -0
  1750. /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.215.0}/src/component/instances.rs +0 -0
  1751. /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.215.0}/src/component/modules.rs +0 -0
  1752. /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.215.0}/src/component/names.rs +0 -0
  1753. /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.215.0}/src/component/start.rs +0 -0
  1754. /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.215.0}/src/component.rs +0 -0
  1755. /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.215.0}/src/core/custom.rs +0 -0
  1756. /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.215.0}/src/core/data.rs +0 -0
  1757. /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.215.0}/src/core/functions.rs +0 -0
  1758. /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.215.0}/src/core/linking.rs +0 -0
  1759. /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.215.0}/src/core/names.rs +0 -0
  1760. /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.215.0}/src/core/start.rs +0 -0
  1761. /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.215.0}/src/core.rs +0 -0
  1762. /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.215.0}/src/raw.rs +0 -0
  1763. /data/ext/cargo-vendor/{wasmparser-0.207.0 → wasmparser-0.212.0}/README.md +0 -0
  1764. /data/ext/cargo-vendor/{wasmparser-0.207.0 → wasmparser-0.212.0}/benches/benchmark.rs +0 -0
  1765. /data/ext/cargo-vendor/{wasmparser-0.207.0 → wasmparser-0.212.0}/examples/simple.rs +0 -0
  1766. /data/ext/cargo-vendor/{wasmparser-0.207.0 → wasmparser-0.212.0}/src/readers/component/aliases.rs +0 -0
  1767. /data/ext/cargo-vendor/{wasmparser-0.207.0 → wasmparser-0.212.0}/src/readers/component/canonicals.rs +0 -0
  1768. /data/ext/cargo-vendor/{wasmparser-0.207.0 → wasmparser-0.212.0}/src/readers/component/exports.rs +0 -0
  1769. /data/ext/cargo-vendor/{wasmparser-0.207.0 → wasmparser-0.212.0}/src/readers/component/start.rs +0 -0
  1770. /data/ext/cargo-vendor/{wasmparser-0.207.0 → wasmparser-0.212.0}/src/readers/component.rs +0 -0
  1771. /data/ext/cargo-vendor/{wasmparser-0.207.0 → wasmparser-0.212.0}/src/readers/core/dylink0.rs +0 -0
  1772. /data/ext/cargo-vendor/{wasmparser-0.207.0 → wasmparser-0.212.0}/src/readers/core/exports.rs +0 -0
  1773. /data/ext/cargo-vendor/{wasmparser-0.207.0 → wasmparser-0.212.0}/src/readers/core/functions.rs +0 -0
  1774. /data/ext/cargo-vendor/{wasmparser-0.207.0 → wasmparser-0.212.0}/src/readers/core/imports.rs +0 -0
  1775. /data/ext/cargo-vendor/{wasmparser-0.207.0 → wasmparser-0.212.0}/src/readers/core/memories.rs +0 -0
  1776. /data/ext/cargo-vendor/{wasmparser-0.207.0 → wasmparser-0.212.0}/src/readers/core/tags.rs +0 -0
  1777. /data/ext/cargo-vendor/{wasmparser-0.207.0 → wasmparser-0.212.0}/src/readers/core/types/matches.rs +0 -0
  1778. /data/ext/cargo-vendor/{wasmparser-0.207.0 → wasmparser-0.212.0}/src/readers/core.rs +0 -0
  1779. /data/ext/cargo-vendor/{wasmparser-0.207.0 → wasmparser-0.212.0}/tests/big-module.rs +0 -0
  1780. /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasmprinter-0.212.0}/LICENSE +0 -0
  1781. /data/ext/cargo-vendor/{wasmprinter-0.207.0 → wasmprinter-0.212.0}/README.md +0 -0
  1782. /data/ext/cargo-vendor/{wasmprinter-0.207.0 → wasmtime-23.0.2}/LICENSE +0 -0
  1783. /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-23.0.2}/README.md +0 -0
  1784. /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-23.0.2}/proptest-regressions/runtime/vm/instance/allocator/pooling/memory_pool.txt +0 -0
  1785. /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-23.0.2}/src/runtime/component/storage.rs +0 -0
  1786. /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-23.0.2}/src/runtime/component/store.rs +0 -0
  1787. /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-23.0.2}/src/runtime/externals.rs +0 -0
  1788. /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-23.0.2}/src/runtime/gc/disabled/anyref.rs +0 -0
  1789. /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-23.0.2}/src/runtime/gc/disabled/externref.rs +0 -0
  1790. /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-23.0.2}/src/runtime/gc/disabled/i31.rs +0 -0
  1791. /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-23.0.2}/src/runtime/gc/disabled.rs +0 -0
  1792. /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-23.0.2}/src/runtime/gc/enabled.rs +0 -0
  1793. /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-23.0.2}/src/runtime/resources.rs +0 -0
  1794. /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-23.0.2}/src/runtime/signatures.rs +0 -0
  1795. /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-23.0.2}/src/runtime/store/context.rs +0 -0
  1796. /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-23.0.2}/src/runtime/trampoline/global.rs +0 -0
  1797. /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-23.0.2}/src/runtime/uninhabited.rs +0 -0
  1798. /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-23.0.2}/src/runtime/unix.rs +0 -0
  1799. /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-23.0.2}/src/runtime/vm/arch/aarch64.rs +0 -0
  1800. /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-23.0.2}/src/runtime/vm/arch/mod.rs +0 -0
  1801. /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-23.0.2}/src/runtime/vm/arch/s390x.S +0 -0
  1802. /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-23.0.2}/src/runtime/vm/arch/s390x.rs +0 -0
  1803. /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-23.0.2}/src/runtime/vm/arch/x86_64.rs +0 -0
  1804. /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-23.0.2}/src/runtime/vm/async_yield.rs +0 -0
  1805. /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-23.0.2}/src/runtime/vm/debug_builtins.rs +0 -0
  1806. /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-23.0.2}/src/runtime/vm/gc/enabled/externref.rs +0 -0
  1807. /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-23.0.2}/src/runtime/vm/gc/enabled.rs +0 -0
  1808. /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-23.0.2}/src/runtime/vm/gc/host_data.rs +0 -0
  1809. /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-23.0.2}/src/runtime/vm/gc/i31.rs +0 -0
  1810. /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-23.0.2}/src/runtime/vm/helpers.c +0 -0
  1811. /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-23.0.2}/src/runtime/vm/imports.rs +0 -0
  1812. /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-23.0.2}/src/runtime/vm/mpk/pkru.rs +0 -0
  1813. /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-23.0.2}/src/runtime/vm/send_sync_ptr.rs +0 -0
  1814. /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-23.0.2}/src/runtime/vm/store_box.rs +0 -0
  1815. /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-23.0.2}/src/runtime/vm/sys/custom/traphandlers.rs +0 -0
  1816. /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-23.0.2}/src/runtime/vm/sys/miri/mod.rs +0 -0
  1817. /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-23.0.2}/src/runtime/vm/sys/miri/traphandlers.rs +0 -0
  1818. /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-23.0.2}/src/runtime/vm/sys/unix/machports.rs +0 -0
  1819. /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-23.0.2}/src/runtime/vm/sys/unix/macos_traphandlers.rs +0 -0
  1820. /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-23.0.2}/src/runtime/vm/sys/unix/mod.rs +0 -0
  1821. /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-23.0.2}/src/runtime/vm/sys/windows/mod.rs +0 -0
  1822. /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-23.0.2}/src/runtime/vm/sys/windows/traphandlers.rs +0 -0
  1823. /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-23.0.2}/src/runtime/vm/threads/mod.rs +0 -0
  1824. /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-23.0.2}/src/runtime/vm/threads/parking_spot.rs +0 -0
  1825. /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-23.0.2}/src/runtime/vm/traphandlers/backtrace.rs +0 -0
  1826. /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-23.0.2}/src/runtime/vm/traphandlers/coredump_disabled.rs +0 -0
  1827. /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-23.0.2}/src/runtime/vm/traphandlers/coredump_enabled.rs +0 -0
  1828. /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-23.0.2}/src/runtime/windows.rs +0 -0
  1829. /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-23.0.2}/src/sync_nostd.rs +0 -0
  1830. /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-23.0.2}/src/sync_std.rs +0 -0
  1831. /data/ext/cargo-vendor/{wasmtime-asm-macros-21.0.1 → wasmtime-asm-macros-23.0.2}/src/lib.rs +0 -0
  1832. /data/ext/cargo-vendor/{wasmtime-21.0.1 → wasmtime-cache-23.0.2}/LICENSE +0 -0
  1833. /data/ext/cargo-vendor/{wasmtime-cache-21.0.1 → wasmtime-cache-23.0.2}/build.rs +0 -0
  1834. /data/ext/cargo-vendor/{wasmtime-cache-21.0.1 → wasmtime-cache-23.0.2}/src/config/tests.rs +0 -0
  1835. /data/ext/cargo-vendor/{wasmtime-cache-21.0.1 → wasmtime-cache-23.0.2}/src/worker/tests/system_time_stub.rs +0 -0
  1836. /data/ext/cargo-vendor/{wasmtime-cache-21.0.1 → wasmtime-cache-23.0.2}/tests/cache_write_default_config.rs +0 -0
  1837. /data/ext/cargo-vendor/{wasmtime-component-macro-21.0.1 → wasmtime-component-macro-23.0.2}/build.rs +0 -0
  1838. /data/ext/cargo-vendor/{wasmtime-component-macro-21.0.1 → wasmtime-component-macro-23.0.2}/src/lib.rs +0 -0
  1839. /data/ext/cargo-vendor/{wasmtime-component-macro-21.0.1 → wasmtime-component-macro-23.0.2}/tests/codegen/char.wit +0 -0
  1840. /data/ext/cargo-vendor/{wasmtime-component-macro-21.0.1 → wasmtime-component-macro-23.0.2}/tests/codegen/conventions.wit +0 -0
  1841. /data/ext/cargo-vendor/{wasmtime-component-macro-21.0.1 → wasmtime-component-macro-23.0.2}/tests/codegen/dead-code.wit +0 -0
  1842. /data/ext/cargo-vendor/{wasmtime-component-macro-21.0.1 → wasmtime-component-macro-23.0.2}/tests/codegen/direct-import.wit +0 -0
  1843. /data/ext/cargo-vendor/{wasmtime-component-macro-21.0.1 → wasmtime-component-macro-23.0.2}/tests/codegen/empty.wit +0 -0
  1844. /data/ext/cargo-vendor/{wasmtime-component-macro-21.0.1 → wasmtime-component-macro-23.0.2}/tests/codegen/flags.wit +0 -0
  1845. /data/ext/cargo-vendor/{wasmtime-component-macro-21.0.1 → wasmtime-component-macro-23.0.2}/tests/codegen/floats.wit +0 -0
  1846. /data/ext/cargo-vendor/{wasmtime-component-macro-21.0.1 → wasmtime-component-macro-23.0.2}/tests/codegen/function-new.wit +0 -0
  1847. /data/ext/cargo-vendor/{wasmtime-component-macro-21.0.1 → wasmtime-component-macro-23.0.2}/tests/codegen/integers.wit +0 -0
  1848. /data/ext/cargo-vendor/{wasmtime-component-macro-21.0.1 → wasmtime-component-macro-23.0.2}/tests/codegen/lists.wit +0 -0
  1849. /data/ext/cargo-vendor/{wasmtime-component-macro-21.0.1 → wasmtime-component-macro-23.0.2}/tests/codegen/many-arguments.wit +0 -0
  1850. /data/ext/cargo-vendor/{wasmtime-component-macro-21.0.1 → wasmtime-component-macro-23.0.2}/tests/codegen/multi-return.wit +0 -0
  1851. /data/ext/cargo-vendor/{wasmtime-component-macro-21.0.1 → wasmtime-component-macro-23.0.2}/tests/codegen/multiversion/deps/v1/root.wit +0 -0
  1852. /data/ext/cargo-vendor/{wasmtime-component-macro-21.0.1 → wasmtime-component-macro-23.0.2}/tests/codegen/multiversion/deps/v2/root.wit +0 -0
  1853. /data/ext/cargo-vendor/{wasmtime-component-macro-21.0.1 → wasmtime-component-macro-23.0.2}/tests/codegen/multiversion/root.wit +0 -0
  1854. /data/ext/cargo-vendor/{wasmtime-component-macro-21.0.1 → wasmtime-component-macro-23.0.2}/tests/codegen/records.wit +0 -0
  1855. /data/ext/cargo-vendor/{wasmtime-component-macro-21.0.1 → wasmtime-component-macro-23.0.2}/tests/codegen/rename.wit +0 -0
  1856. /data/ext/cargo-vendor/{wasmtime-component-macro-21.0.1 → wasmtime-component-macro-23.0.2}/tests/codegen/resources-export.wit +0 -0
  1857. /data/ext/cargo-vendor/{wasmtime-component-macro-21.0.1 → wasmtime-component-macro-23.0.2}/tests/codegen/resources-import.wit +0 -0
  1858. /data/ext/cargo-vendor/{wasmtime-component-macro-21.0.1 → wasmtime-component-macro-23.0.2}/tests/codegen/share-types.wit +0 -0
  1859. /data/ext/cargo-vendor/{wasmtime-component-macro-21.0.1 → wasmtime-component-macro-23.0.2}/tests/codegen/simple-functions.wit +0 -0
  1860. /data/ext/cargo-vendor/{wasmtime-component-macro-21.0.1 → wasmtime-component-macro-23.0.2}/tests/codegen/simple-lists.wit +0 -0
  1861. /data/ext/cargo-vendor/{wasmtime-component-macro-21.0.1 → wasmtime-component-macro-23.0.2}/tests/codegen/simple-wasi.wit +0 -0
  1862. /data/ext/cargo-vendor/{wasmtime-component-macro-21.0.1 → wasmtime-component-macro-23.0.2}/tests/codegen/small-anonymous.wit +0 -0
  1863. /data/ext/cargo-vendor/{wasmtime-component-macro-21.0.1 → wasmtime-component-macro-23.0.2}/tests/codegen/smoke-default.wit +0 -0
  1864. /data/ext/cargo-vendor/{wasmtime-component-macro-21.0.1 → wasmtime-component-macro-23.0.2}/tests/codegen/smoke-export.wit +0 -0
  1865. /data/ext/cargo-vendor/{wasmtime-component-macro-21.0.1 → wasmtime-component-macro-23.0.2}/tests/codegen/smoke.wit +0 -0
  1866. /data/ext/cargo-vendor/{wasmtime-component-macro-21.0.1 → wasmtime-component-macro-23.0.2}/tests/codegen/strings.wit +0 -0
  1867. /data/ext/cargo-vendor/{wasmtime-component-macro-21.0.1 → wasmtime-component-macro-23.0.2}/tests/codegen/unversioned-foo.wit +0 -0
  1868. /data/ext/cargo-vendor/{wasmtime-component-macro-21.0.1 → wasmtime-component-macro-23.0.2}/tests/codegen/use-paths.wit +0 -0
  1869. /data/ext/cargo-vendor/{wasmtime-component-macro-21.0.1 → wasmtime-component-macro-23.0.2}/tests/codegen/variants.wit +0 -0
  1870. /data/ext/cargo-vendor/{wasmtime-component-macro-21.0.1 → wasmtime-component-macro-23.0.2}/tests/codegen/wat.wit +0 -0
  1871. /data/ext/cargo-vendor/{wasmtime-component-macro-21.0.1 → wasmtime-component-macro-23.0.2}/tests/codegen/worlds-with-types.wit +0 -0
  1872. /data/ext/cargo-vendor/{wasmtime-component-macro-21.0.1 → wasmtime-component-macro-23.0.2}/tests/codegen_no_std.rs +0 -0
  1873. /data/ext/cargo-vendor/{wasmtime-component-util-21.0.1 → wasmtime-component-util-23.0.2}/src/lib.rs +0 -0
  1874. /data/ext/cargo-vendor/{wasmtime-cache-21.0.1 → wasmtime-cranelift-23.0.2}/LICENSE +0 -0
  1875. /data/ext/cargo-vendor/{wasmtime-cranelift-21.0.1 → wasmtime-cranelift-23.0.2}/SECURITY.md +0 -0
  1876. /data/ext/cargo-vendor/{wasmtime-cranelift-21.0.1 → wasmtime-cranelift-23.0.2}/src/builder.rs +0 -0
  1877. /data/ext/cargo-vendor/{wasmtime-cranelift-21.0.1 → wasmtime-cranelift-23.0.2}/src/compiled_function.rs +0 -0
  1878. /data/ext/cargo-vendor/{wasmtime-cranelift-21.0.1 → wasmtime-cranelift-23.0.2}/src/debug/transform/refs.rs +0 -0
  1879. /data/ext/cargo-vendor/{wasmtime-cranelift-21.0.1 → wasmtime-cranelift-23.0.2}/src/gc/disabled.rs +0 -0
  1880. /data/ext/cargo-vendor/{wasmtime-cranelift-21.0.1 → wasmtime-cranelift-23.0.2}/src/gc.rs +0 -0
  1881. /data/ext/cargo-vendor/{wasmtime-cranelift-21.0.1 → wasmtime-cranelift-23.0.2}/src/isa_builder.rs +0 -0
  1882. /data/ext/cargo-vendor/{wasmtime-cranelift-21.0.1 → wasmtime-environ-23.0.2}/LICENSE +0 -0
  1883. /data/ext/cargo-vendor/{wasmtime-environ-21.0.1 → wasmtime-environ-23.0.2}/examples/factc.rs +0 -0
  1884. /data/ext/cargo-vendor/{wasmtime-environ-21.0.1 → wasmtime-environ-23.0.2}/src/address_map.rs +0 -0
  1885. /data/ext/cargo-vendor/{wasmtime-environ-21.0.1 → wasmtime-environ-23.0.2}/src/builtin.rs +0 -0
  1886. /data/ext/cargo-vendor/{wasmtime-environ-21.0.1 → wasmtime-environ-23.0.2}/src/compile/trap_encoding.rs +0 -0
  1887. /data/ext/cargo-vendor/{wasmtime-environ-21.0.1 → wasmtime-environ-23.0.2}/src/component/compiler.rs +0 -0
  1888. /data/ext/cargo-vendor/{wasmtime-environ-21.0.1 → wasmtime-environ-23.0.2}/src/component/vmcomponent_offsets.rs +0 -0
  1889. /data/ext/cargo-vendor/{wasmtime-environ-21.0.1 → wasmtime-environ-23.0.2}/src/demangling.rs +0 -0
  1890. /data/ext/cargo-vendor/{wasmtime-environ-21.0.1 → wasmtime-environ-23.0.2}/src/fact/core_types.rs +0 -0
  1891. /data/ext/cargo-vendor/{wasmtime-environ-21.0.1 → wasmtime-environ-23.0.2}/src/fact/signature.rs +0 -0
  1892. /data/ext/cargo-vendor/{wasmtime-environ-21.0.1 → wasmtime-environ-23.0.2}/src/fact/traps.rs +0 -0
  1893. /data/ext/cargo-vendor/{wasmtime-environ-21.0.1 → wasmtime-environ-23.0.2}/src/gc.rs +0 -0
  1894. /data/ext/cargo-vendor/{wasmtime-environ-21.0.1 → wasmtime-environ-23.0.2}/src/obj.rs +0 -0
  1895. /data/ext/cargo-vendor/{wasmtime-environ-21.0.1 → wasmtime-environ-23.0.2}/src/scopevec.rs +0 -0
  1896. /data/ext/cargo-vendor/{wasmtime-environ-21.0.1 → wasmtime-environ-23.0.2}/src/trap_encoding.rs +0 -0
  1897. /data/ext/cargo-vendor/{wasmtime-environ-21.0.1 → wasmtime-fiber-23.0.2}/LICENSE +0 -0
  1898. /data/ext/cargo-vendor/{wasmtime-fiber-21.0.1 → wasmtime-fiber-23.0.2}/src/unix/aarch64.rs +0 -0
  1899. /data/ext/cargo-vendor/{wasmtime-fiber-21.0.1 → wasmtime-fiber-23.0.2}/src/unix/arm.rs +0 -0
  1900. /data/ext/cargo-vendor/{wasmtime-fiber-21.0.1 → wasmtime-fiber-23.0.2}/src/unix/riscv64.rs +0 -0
  1901. /data/ext/cargo-vendor/{wasmtime-fiber-21.0.1 → wasmtime-fiber-23.0.2}/src/unix/s390x.S +0 -0
  1902. /data/ext/cargo-vendor/{wasmtime-fiber-21.0.1 → wasmtime-fiber-23.0.2}/src/unix/x86.rs +0 -0
  1903. /data/ext/cargo-vendor/{wasmtime-fiber-21.0.1 → wasmtime-fiber-23.0.2}/src/unix/x86_64.rs +0 -0
  1904. /data/ext/cargo-vendor/{wasmtime-fiber-21.0.1 → wasmtime-fiber-23.0.2}/src/windows.c +0 -0
  1905. /data/ext/cargo-vendor/{wasmtime-jit-debug-21.0.1 → wasmtime-jit-debug-23.0.2}/README.md +0 -0
  1906. /data/ext/cargo-vendor/{wasmtime-jit-debug-21.0.1 → wasmtime-jit-debug-23.0.2}/src/lib.rs +0 -0
  1907. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-21.0.1 → wasmtime-jit-icache-coherence-23.0.2}/src/lib.rs +0 -0
  1908. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-21.0.1 → wasmtime-jit-icache-coherence-23.0.2}/src/miri.rs +0 -0
  1909. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-21.0.1 → wasmtime-jit-icache-coherence-23.0.2}/src/win.rs +0 -0
  1910. /data/ext/cargo-vendor/{wasmtime-fiber-21.0.1 → wasmtime-types-23.0.2}/LICENSE +0 -0
  1911. /data/ext/cargo-vendor/{wasmtime-types-21.0.1 → wasmtime-types-23.0.2}/src/error.rs +0 -0
  1912. /data/ext/cargo-vendor/{wasmtime-versioned-export-macros-21.0.1 → wasmtime-versioned-export-macros-23.0.2}/src/lib.rs +0 -0
  1913. /data/ext/cargo-vendor/{wasmtime-types-21.0.1 → wasmtime-wasi-23.0.2}/LICENSE +0 -0
  1914. /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-23.0.2}/README.md +0 -0
  1915. /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-23.0.2}/src/clocks/host.rs +0 -0
  1916. /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-23.0.2}/src/clocks.rs +0 -0
  1917. /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-23.0.2}/src/error.rs +0 -0
  1918. /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-23.0.2}/src/host/mod.rs +0 -0
  1919. /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-23.0.2}/src/random.rs +0 -0
  1920. /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-23.0.2}/src/runtime.rs +0 -0
  1921. /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-23.0.2}/src/stdio/worker_thread_stdin.rs +0 -0
  1922. /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-23.0.2}/src/stream.rs +0 -0
  1923. /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-23.0.2}/src/tcp.rs +0 -0
  1924. /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-23.0.2}/src/udp.rs +0 -0
  1925. /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-23.0.2}/src/write_stream.rs +0 -0
  1926. /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-23.0.2}/tests/all/main.rs +0 -0
  1927. /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-23.0.2}/tests/all/preview1.rs +0 -0
  1928. /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-23.0.2}/tests/process_stdin.rs +0 -0
  1929. /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-23.0.2}/wit/command-extended.wit +0 -0
  1930. /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-23.0.2}/wit/deps/cli/command.wit +0 -0
  1931. /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-23.0.2}/wit/deps/cli/environment.wit +0 -0
  1932. /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-23.0.2}/wit/deps/cli/exit.wit +0 -0
  1933. /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-23.0.2}/wit/deps/cli/imports.wit +0 -0
  1934. /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-23.0.2}/wit/deps/cli/run.wit +0 -0
  1935. /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-23.0.2}/wit/deps/cli/stdio.wit +0 -0
  1936. /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-23.0.2}/wit/deps/cli/terminal.wit +0 -0
  1937. /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-23.0.2}/wit/deps/clocks/monotonic-clock.wit +0 -0
  1938. /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-23.0.2}/wit/deps/clocks/wall-clock.wit +0 -0
  1939. /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-23.0.2}/wit/deps/clocks/world.wit +0 -0
  1940. /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-23.0.2}/wit/deps/filesystem/preopens.wit +0 -0
  1941. /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-23.0.2}/wit/deps/filesystem/types.wit +0 -0
  1942. /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-23.0.2}/wit/deps/filesystem/world.wit +0 -0
  1943. /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-23.0.2}/wit/deps/http/handler.wit +0 -0
  1944. /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-23.0.2}/wit/deps/http/proxy.wit +0 -0
  1945. /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-23.0.2}/wit/deps/http/types.wit +0 -0
  1946. /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-23.0.2}/wit/deps/io/error.wit +0 -0
  1947. /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-23.0.2}/wit/deps/io/poll.wit +0 -0
  1948. /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-23.0.2}/wit/deps/io/streams.wit +0 -0
  1949. /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-23.0.2}/wit/deps/io/world.wit +0 -0
  1950. /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-23.0.2}/wit/deps/random/insecure-seed.wit +0 -0
  1951. /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-23.0.2}/wit/deps/random/insecure.wit +0 -0
  1952. /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-23.0.2}/wit/deps/random/random.wit +0 -0
  1953. /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-23.0.2}/wit/deps/random/world.wit +0 -0
  1954. /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-23.0.2}/wit/deps/sockets/instance-network.wit +0 -0
  1955. /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-23.0.2}/wit/deps/sockets/ip-name-lookup.wit +0 -0
  1956. /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-23.0.2}/wit/deps/sockets/network.wit +0 -0
  1957. /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-23.0.2}/wit/deps/sockets/tcp-create-socket.wit +0 -0
  1958. /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-23.0.2}/wit/deps/sockets/tcp.wit +0 -0
  1959. /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-23.0.2}/wit/deps/sockets/udp-create-socket.wit +0 -0
  1960. /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-23.0.2}/wit/deps/sockets/udp.wit +0 -0
  1961. /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-23.0.2}/wit/deps/sockets/world.wit +0 -0
  1962. /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-23.0.2}/wit/test.wit +0 -0
  1963. /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-23.0.2}/witx/preview0/typenames.witx +0 -0
  1964. /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-23.0.2}/witx/preview0/wasi_unstable.witx +0 -0
  1965. /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-23.0.2}/witx/preview1/typenames.witx +0 -0
  1966. /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wasmtime-wasi-23.0.2}/witx/preview1/wasi_snapshot_preview1.witx +0 -0
  1967. /data/ext/cargo-vendor/{wasmtime-winch-21.0.1 → wasmtime-winch-23.0.2}/LICENSE +0 -0
  1968. /data/ext/cargo-vendor/{wasmtime-winch-21.0.1 → wasmtime-winch-23.0.2}/src/builder.rs +0 -0
  1969. /data/ext/cargo-vendor/{wasmtime-winch-21.0.1 → wasmtime-winch-23.0.2}/src/lib.rs +0 -0
  1970. /data/ext/cargo-vendor/{wasmtime-wit-bindgen-21.0.1 → wasmtime-wit-bindgen-23.0.2}/src/source.rs +0 -0
  1971. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/README.md +0 -0
  1972. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/component/alias.rs +0 -0
  1973. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/component/custom.rs +0 -0
  1974. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/component/export.rs +0 -0
  1975. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/component/func.rs +0 -0
  1976. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/component/import.rs +0 -0
  1977. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/component/instance.rs +0 -0
  1978. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/component/item_ref.rs +0 -0
  1979. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/component/module.rs +0 -0
  1980. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/component/types.rs +0 -0
  1981. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/component/wast.rs +0 -0
  1982. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/core/custom.rs +0 -0
  1983. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/core/export.rs +0 -0
  1984. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/core/func.rs +0 -0
  1985. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/core/global.rs +0 -0
  1986. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/core/import.rs +0 -0
  1987. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/core/resolve/mod.rs +0 -0
  1988. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/core/tag.rs +0 -0
  1989. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/core/wast.rs +0 -0
  1990. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/encode.rs +0 -0
  1991. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/error.rs +0 -0
  1992. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/gensym.rs +0 -0
  1993. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/lexer.rs +0 -0
  1994. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/names.rs +0 -0
  1995. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/token.rs +0 -0
  1996. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/wast.rs +0 -0
  1997. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/annotations.rs +0 -0
  1998. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/comments.rs +0 -0
  1999. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/bad-core-func-alias.wat +0 -0
  2000. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/bad-core-func-alias.wat.err +0 -0
  2001. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/bad-func-alias.wat +0 -0
  2002. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/bad-func-alias.wat.err +0 -0
  2003. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/bad-index.wat +0 -0
  2004. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/bad-index.wat.err +0 -0
  2005. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/bad-name.wat +0 -0
  2006. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/bad-name.wat.err +0 -0
  2007. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/bad-name2.wat +0 -0
  2008. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/bad-name2.wat.err +0 -0
  2009. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/bad-name3.wat +0 -0
  2010. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/bad-name3.wat.err +0 -0
  2011. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/block1.wat +0 -0
  2012. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/block1.wat.err +0 -0
  2013. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/block2.wat +0 -0
  2014. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/block2.wat.err +0 -0
  2015. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/block3.wat +0 -0
  2016. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/block3.wat.err +0 -0
  2017. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-block-comment0.wat +0 -0
  2018. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-block-comment0.wat.err +0 -0
  2019. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-block-comment1.wat +0 -0
  2020. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-block-comment1.wat.err +0 -0
  2021. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-block-comment2.wat +0 -0
  2022. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-block-comment2.wat.err +0 -0
  2023. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-block-comment3.wat +0 -0
  2024. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-block-comment3.wat.err +0 -0
  2025. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-block-comment4.wat +0 -0
  2026. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-block-comment4.wat.err +0 -0
  2027. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-block-comment5.wat +0 -0
  2028. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-block-comment5.wat.err +0 -0
  2029. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-block-comment6.wat +0 -0
  2030. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-block-comment6.wat.err +0 -0
  2031. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-block-comment7.wat +0 -0
  2032. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-block-comment7.wat.err +0 -0
  2033. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-block-comment8.wat +0 -0
  2034. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-block-comment8.wat.err +0 -0
  2035. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-line-comment0.wat +0 -0
  2036. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-line-comment0.wat.err +0 -0
  2037. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-line-comment1.wat +0 -0
  2038. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-line-comment1.wat.err +0 -0
  2039. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-line-comment2.wat +0 -0
  2040. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-line-comment2.wat.err +0 -0
  2041. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-line-comment3.wat +0 -0
  2042. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-line-comment3.wat.err +0 -0
  2043. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-line-comment4.wat +0 -0
  2044. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-line-comment4.wat.err +0 -0
  2045. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-line-comment5.wat +0 -0
  2046. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-line-comment5.wat.err +0 -0
  2047. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-line-comment6.wat +0 -0
  2048. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-line-comment6.wat.err +0 -0
  2049. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-line-comment7.wat +0 -0
  2050. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-line-comment7.wat.err +0 -0
  2051. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-line-comment8.wat +0 -0
  2052. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-line-comment8.wat.err +0 -0
  2053. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-string0.wat +0 -0
  2054. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-string0.wat.err +0 -0
  2055. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-string1.wat +0 -0
  2056. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-string1.wat.err +0 -0
  2057. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-string2.wat +0 -0
  2058. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-string2.wat.err +0 -0
  2059. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-string3.wat +0 -0
  2060. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-string3.wat.err +0 -0
  2061. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-string4.wat +0 -0
  2062. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-string4.wat.err +0 -0
  2063. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-string5.wat +0 -0
  2064. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-string5.wat.err +0 -0
  2065. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-string6.wat +0 -0
  2066. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-string6.wat.err +0 -0
  2067. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-string7.wat +0 -0
  2068. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-string7.wat.err +0 -0
  2069. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-string8.wat +0 -0
  2070. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-string8.wat.err +0 -0
  2071. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/inline1.wat +0 -0
  2072. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/inline1.wat.err +0 -0
  2073. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/newline-in-string.wat +0 -0
  2074. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/newline-in-string.wat.err +0 -0
  2075. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string1.wat +0 -0
  2076. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string1.wat.err +0 -0
  2077. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string10.wat +0 -0
  2078. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string10.wat.err +0 -0
  2079. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string11.wat +0 -0
  2080. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string11.wat.err +0 -0
  2081. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string12.wat +0 -0
  2082. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string12.wat.err +0 -0
  2083. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string13.wat +0 -0
  2084. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string13.wat.err +0 -0
  2085. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string14.wat +0 -0
  2086. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string14.wat.err +0 -0
  2087. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string15.wat +0 -0
  2088. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string15.wat.err +0 -0
  2089. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string16.wat +0 -0
  2090. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string16.wat.err +0 -0
  2091. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string2.wat +0 -0
  2092. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string2.wat.err +0 -0
  2093. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string3.wat +0 -0
  2094. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string3.wat.err +0 -0
  2095. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string4.wat +0 -0
  2096. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string4.wat.err +0 -0
  2097. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string5.wat +0 -0
  2098. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string5.wat.err +0 -0
  2099. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string6.wat +0 -0
  2100. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string6.wat.err +0 -0
  2101. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string7.wat +0 -0
  2102. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string7.wat.err +0 -0
  2103. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string8.wat +0 -0
  2104. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string8.wat.err +0 -0
  2105. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string9.wat +0 -0
  2106. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string9.wat.err +0 -0
  2107. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/unbalanced.wat +0 -0
  2108. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/unbalanced.wat.err +0 -0
  2109. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail.rs +0 -0
  2110. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/recursive.rs +0 -0
  2111. /data/ext/cargo-vendor/{wat-1.209.1 → wat-1.215.0}/README.md +0 -0
  2112. /data/ext/cargo-vendor/{wasmtime-wasi-21.0.1 → wiggle-23.0.2}/LICENSE +0 -0
  2113. /data/ext/cargo-vendor/{wiggle-21.0.1 → wiggle-23.0.2}/README.md +0 -0
  2114. /data/ext/cargo-vendor/{wiggle-21.0.1 → wiggle-23.0.2}/src/error.rs +0 -0
  2115. /data/ext/cargo-vendor/{wiggle-21.0.1 → wiggle-23.0.2}/src/region.rs +0 -0
  2116. /data/ext/cargo-vendor/{wast-209.0.1 → wiggle-generate-23.0.2}/LICENSE +0 -0
  2117. /data/ext/cargo-vendor/{wiggle-generate-21.0.1 → wiggle-generate-23.0.2}/README.md +0 -0
  2118. /data/ext/cargo-vendor/{wiggle-generate-21.0.1 → wiggle-generate-23.0.2}/src/codegen_settings.rs +0 -0
  2119. /data/ext/cargo-vendor/{wiggle-generate-21.0.1 → wiggle-generate-23.0.2}/src/config.rs +0 -0
  2120. /data/ext/cargo-vendor/{wiggle-generate-21.0.1 → wiggle-generate-23.0.2}/src/lib.rs +0 -0
  2121. /data/ext/cargo-vendor/{wiggle-generate-21.0.1 → wiggle-generate-23.0.2}/src/lifetimes.rs +0 -0
  2122. /data/ext/cargo-vendor/{wiggle-generate-21.0.1 → wiggle-generate-23.0.2}/src/types/error.rs +0 -0
  2123. /data/ext/cargo-vendor/{wat-1.209.1 → wiggle-macro-23.0.2}/LICENSE +0 -0
  2124. /data/ext/cargo-vendor/{winch-codegen-0.19.1 → winch-codegen-0.21.2}/LICENSE +0 -0
  2125. /data/ext/cargo-vendor/{winch-codegen-0.19.1 → winch-codegen-0.21.2}/build.rs +0 -0
  2126. /data/ext/cargo-vendor/{winch-codegen-0.19.1 → winch-codegen-0.21.2}/src/abi/local.rs +0 -0
  2127. /data/ext/cargo-vendor/{winch-codegen-0.19.1 → winch-codegen-0.21.2}/src/codegen/bounds.rs +0 -0
  2128. /data/ext/cargo-vendor/{winch-codegen-0.19.1 → winch-codegen-0.21.2}/src/codegen/builtin.rs +0 -0
  2129. /data/ext/cargo-vendor/{winch-codegen-0.19.1 → winch-codegen-0.21.2}/src/codegen/call.rs +0 -0
  2130. /data/ext/cargo-vendor/{winch-codegen-0.19.1 → winch-codegen-0.21.2}/src/isa/aarch64/abi.rs +0 -0
  2131. /data/ext/cargo-vendor/{winch-codegen-0.19.1 → winch-codegen-0.21.2}/src/isa/aarch64/address.rs +0 -0
  2132. /data/ext/cargo-vendor/{winch-codegen-0.19.1 → winch-codegen-0.21.2}/src/isa/aarch64/mod.rs +0 -0
  2133. /data/ext/cargo-vendor/{winch-codegen-0.19.1 → winch-codegen-0.21.2}/src/isa/mod.rs +0 -0
  2134. /data/ext/cargo-vendor/{winch-codegen-0.19.1 → winch-codegen-0.21.2}/src/isa/reg.rs +0 -0
  2135. /data/ext/cargo-vendor/{winch-codegen-0.19.1 → winch-codegen-0.21.2}/src/isa/x64/abi.rs +0 -0
  2136. /data/ext/cargo-vendor/{winch-codegen-0.19.1 → winch-codegen-0.21.2}/src/isa/x64/address.rs +0 -0
  2137. /data/ext/cargo-vendor/{winch-codegen-0.19.1 → winch-codegen-0.21.2}/src/isa/x64/mod.rs +0 -0
  2138. /data/ext/cargo-vendor/{winch-codegen-0.19.1 → winch-codegen-0.21.2}/src/isa/x64/regs.rs +0 -0
  2139. /data/ext/cargo-vendor/{winch-codegen-0.19.1 → winch-codegen-0.21.2}/src/lib.rs +0 -0
  2140. /data/ext/cargo-vendor/{winch-codegen-0.19.1 → winch-codegen-0.21.2}/src/regset.rs +0 -0
  2141. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/README.md +0 -0
  2142. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/src/abi.rs +0 -0
  2143. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/src/ast/toposort.rs +0 -0
  2144. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/src/sizealign.rs +0 -0
  2145. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/comments.wit +0 -0
  2146. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/comments.wit.json +0 -0
  2147. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/complex-include/deps/bar/root.wit +0 -0
  2148. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/complex-include/deps/baz/root.wit +0 -0
  2149. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/complex-include/root.wit +0 -0
  2150. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/cross-package-resource/deps/foo/foo.wit +0 -0
  2151. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/cross-package-resource/foo.wit +0 -0
  2152. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/cross-package-resource.wit.json +0 -0
  2153. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/diamond1/deps/dep1/types.wit +0 -0
  2154. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/diamond1/deps/dep2/types.wit +0 -0
  2155. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/diamond1/join.wit +0 -0
  2156. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/disambiguate-diamond/shared1.wit +0 -0
  2157. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/disambiguate-diamond/shared2.wit +0 -0
  2158. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/disambiguate-diamond/world.wit +0 -0
  2159. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/empty.wit +0 -0
  2160. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/empty.wit.json +0 -0
  2161. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/foreign-deps/deps/another-pkg/other-doc.wit +0 -0
  2162. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/foreign-deps/deps/corp/saas.wit +0 -0
  2163. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/foreign-deps/deps/different-pkg/the-doc.wit +0 -0
  2164. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/foreign-deps/deps/foreign-pkg/the-doc.wit +0 -0
  2165. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/foreign-deps/deps/some-pkg/some-doc.wit +0 -0
  2166. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/foreign-deps/deps/wasi/clocks.wit +0 -0
  2167. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/foreign-deps/deps/wasi/filesystem.wit +0 -0
  2168. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/foreign-deps/root.wit +0 -0
  2169. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/foreign-deps-union/deps/another-pkg/other-doc.wit +0 -0
  2170. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/foreign-deps-union/deps/corp/saas.wit +0 -0
  2171. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/foreign-deps-union/deps/different-pkg/the-doc.wit +0 -0
  2172. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/foreign-deps-union/deps/foreign-pkg/the-doc.wit +0 -0
  2173. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/foreign-deps-union/deps/some-pkg/some-doc.wit +0 -0
  2174. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/foreign-deps-union/deps/wasi/clocks.wit +0 -0
  2175. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/foreign-deps-union/deps/wasi/filesystem.wit +0 -0
  2176. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/foreign-deps-union/deps/wasi/wasi.wit +0 -0
  2177. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/foreign-deps-union/root.wit +0 -0
  2178. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/functions.wit +0 -0
  2179. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/functions.wit.json +0 -0
  2180. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/ignore-files-deps/deps/bar/types.wit +0 -0
  2181. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/ignore-files-deps/deps/ignore-me.txt +0 -0
  2182. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/ignore-files-deps/world.wit +0 -0
  2183. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/import-export-overlap1.wit +0 -0
  2184. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/import-export-overlap1.wit.json +0 -0
  2185. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/import-export-overlap2.wit +0 -0
  2186. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/include-reps.wit +0 -0
  2187. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/kebab-name-include-with.wit +0 -0
  2188. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/kebab-name-include-with.wit.json +0 -0
  2189. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/kinds-of-deps/a.wit +0 -0
  2190. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/kinds-of-deps/deps/b/root.wit +0 -0
  2191. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/kinds-of-deps/deps/c.wit +0 -0
  2192. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/kinds-of-deps/deps/d.wat +0 -0
  2193. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/kinds-of-deps/deps/e.wasm +0 -0
  2194. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/many-names/a.wit +0 -0
  2195. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/many-names/b.wit +0 -0
  2196. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/multi-file/bar.wit +0 -0
  2197. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/multi-file/cycle-a.wit +0 -0
  2198. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/multi-file/cycle-b.wit +0 -0
  2199. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/multi-file/foo.wit +0 -0
  2200. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/name-both-resource-and-type/deps/dep/foo.wit +0 -0
  2201. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/name-both-resource-and-type/foo.wit +0 -0
  2202. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/name-both-resource-and-type.wit.json +0 -0
  2203. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/package-syntax1.wit +0 -0
  2204. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/package-syntax1.wit.json +0 -0
  2205. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/package-syntax3.wit +0 -0
  2206. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/package-syntax3.wit.json +0 -0
  2207. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/package-syntax4.wit +0 -0
  2208. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/package-syntax4.wit.json +0 -0
  2209. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/alias-no-type.wit +0 -0
  2210. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/alias-no-type.wit.result +0 -0
  2211. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/async.wit.result +0 -0
  2212. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/async1.wit.result +0 -0
  2213. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-function.wit +0 -0
  2214. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-function.wit.result +0 -0
  2215. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-function2.wit +0 -0
  2216. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-function2.wit.result +0 -0
  2217. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-include1.wit +0 -0
  2218. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-include1.wit.result +0 -0
  2219. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-include2.wit +0 -0
  2220. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-include2.wit.result +0 -0
  2221. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-include3.wit +0 -0
  2222. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-include3.wit.result +0 -0
  2223. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-list.wit +0 -0
  2224. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-list.wit.result +0 -0
  2225. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-pkg1/root.wit +0 -0
  2226. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-pkg1.wit.result +0 -0
  2227. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-pkg2/deps/bar/empty.wit +0 -0
  2228. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-pkg2/root.wit +0 -0
  2229. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-pkg2.wit.result +0 -0
  2230. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-pkg3/deps/bar/baz.wit +0 -0
  2231. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-pkg3/root.wit +0 -0
  2232. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-pkg3.wit.result +0 -0
  2233. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-pkg4/deps/bar/baz.wit +0 -0
  2234. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-pkg4/root.wit +0 -0
  2235. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-pkg4.wit.result +0 -0
  2236. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-pkg5/deps/bar/baz.wit +0 -0
  2237. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-pkg5/root.wit +0 -0
  2238. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-pkg5.wit.result +0 -0
  2239. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-pkg6/deps/bar/baz.wit +0 -0
  2240. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-pkg6/root.wit +0 -0
  2241. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-pkg6.wit.result +0 -0
  2242. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource1.wit +0 -0
  2243. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource1.wit.result +0 -0
  2244. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource10.wit +0 -0
  2245. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource10.wit.result +0 -0
  2246. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource11.wit +0 -0
  2247. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource11.wit.result +0 -0
  2248. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource12.wit +0 -0
  2249. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource12.wit.result +0 -0
  2250. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource13.wit +0 -0
  2251. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource13.wit.result +0 -0
  2252. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource14.wit +0 -0
  2253. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource14.wit.result +0 -0
  2254. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource15/deps/foo/foo.wit +0 -0
  2255. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource15/foo.wit +0 -0
  2256. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource15.wit.result +0 -0
  2257. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource2.wit +0 -0
  2258. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource2.wit.result +0 -0
  2259. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource3.wit +0 -0
  2260. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource3.wit.result +0 -0
  2261. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource4.wit +0 -0
  2262. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource4.wit.result +0 -0
  2263. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource5.wit +0 -0
  2264. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource5.wit.result +0 -0
  2265. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource6.wit +0 -0
  2266. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource6.wit.result +0 -0
  2267. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource7.wit +0 -0
  2268. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource7.wit.result +0 -0
  2269. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource8.wit +0 -0
  2270. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource8.wit.result +0 -0
  2271. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource9.wit +0 -0
  2272. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource9.wit.result +0 -0
  2273. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-world-type1.wit +0 -0
  2274. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-world-type1.wit.result +0 -0
  2275. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/conflicting-package/a.wit +0 -0
  2276. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/conflicting-package/b.wit +0 -0
  2277. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/cycle.wit +0 -0
  2278. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/cycle.wit.result +0 -0
  2279. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/cycle2.wit +0 -0
  2280. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/cycle2.wit.result +0 -0
  2281. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/cycle3.wit +0 -0
  2282. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/cycle3.wit.result +0 -0
  2283. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/cycle4.wit +0 -0
  2284. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/cycle4.wit.result +0 -0
  2285. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/cycle5.wit +0 -0
  2286. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/cycle5.wit.result +0 -0
  2287. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/dangling-type.wit +0 -0
  2288. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/dangling-type.wit.result +0 -0
  2289. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/duplicate-function-params.wit +0 -0
  2290. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/duplicate-function-params.wit.result +0 -0
  2291. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/duplicate-functions.wit +0 -0
  2292. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/duplicate-functions.wit.result +0 -0
  2293. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/duplicate-interface.wit +0 -0
  2294. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/duplicate-interface.wit.result +0 -0
  2295. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/duplicate-interface2/foo.wit +0 -0
  2296. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/duplicate-interface2/foo2.wit +0 -0
  2297. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/duplicate-interface2.wit.result +0 -0
  2298. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/duplicate-type.wit +0 -0
  2299. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/duplicate-type.wit.result +0 -0
  2300. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/empty-enum.wit +0 -0
  2301. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/empty-enum.wit.result +0 -0
  2302. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/empty-variant1.wit +0 -0
  2303. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/empty-variant1.wit.result +0 -0
  2304. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/export-twice.wit +0 -0
  2305. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/export-twice.wit.result +0 -0
  2306. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/import-and-export1.wit +0 -0
  2307. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/import-and-export1.wit.result +0 -0
  2308. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/import-and-export2.wit +0 -0
  2309. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/import-and-export2.wit.result +0 -0
  2310. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/import-and-export3.wit +0 -0
  2311. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/import-and-export3.wit.result +0 -0
  2312. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/import-and-export4.wit +0 -0
  2313. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/import-and-export4.wit.result +0 -0
  2314. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/import-and-export5.wit +0 -0
  2315. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/import-and-export5.wit.result +0 -0
  2316. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/import-twice.wit +0 -0
  2317. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/import-twice.wit.result +0 -0
  2318. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/include-cycle.wit +0 -0
  2319. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/include-cycle.wit.result +0 -0
  2320. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/include-foreign/deps/bar/empty.wit +0 -0
  2321. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/include-foreign/root.wit +0 -0
  2322. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/include-foreign.wit.result +0 -0
  2323. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/include-with-id.wit +0 -0
  2324. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/include-with-id.wit.result +0 -0
  2325. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/include-with-on-id.wit +0 -0
  2326. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/include-with-on-id.wit.result +0 -0
  2327. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/invalid-toplevel.wit +0 -0
  2328. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/invalid-toplevel.wit.result +0 -0
  2329. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/invalid-type-reference.wit +0 -0
  2330. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/invalid-type-reference.wit.result +0 -0
  2331. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/invalid-type-reference2.wit +0 -0
  2332. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/invalid-type-reference2.wit.result +0 -0
  2333. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/kebab-name-include-not-found.wit +0 -0
  2334. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/kebab-name-include-not-found.wit.result +0 -0
  2335. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/kebab-name-include.wit +0 -0
  2336. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/kebab-name-include.wit.result +0 -0
  2337. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/keyword.wit +0 -0
  2338. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/keyword.wit.result +0 -0
  2339. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/missing-package.wit +0 -0
  2340. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/missing-package.wit.result +0 -0
  2341. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/multiple-package-docs/a.wit +0 -0
  2342. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/multiple-package-docs/b.wit +0 -0
  2343. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/no-access-to-sibling-use/bar.wit +0 -0
  2344. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/no-access-to-sibling-use/foo.wit +0 -0
  2345. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/no-access-to-sibling-use.wit.result +0 -0
  2346. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/non-existance-world-include/deps/bar/baz.wit +0 -0
  2347. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/non-existance-world-include/root.wit +0 -0
  2348. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/non-existance-world-include.wit.result +0 -0
  2349. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/pkg-cycle/deps/a1/root.wit +0 -0
  2350. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/pkg-cycle/root.wit +0 -0
  2351. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/pkg-cycle.wit.result +0 -0
  2352. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/pkg-cycle2/deps/a1/root.wit +0 -0
  2353. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/pkg-cycle2/deps/a2/root.wit +0 -0
  2354. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/pkg-cycle2/root.wit +0 -0
  2355. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/pkg-cycle2.wit.result +0 -0
  2356. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/resources-multiple-returns-borrow.wit +0 -0
  2357. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/resources-return-borrow.wit +0 -0
  2358. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/return-borrow1.wit +0 -0
  2359. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/return-borrow2.wit +0 -0
  2360. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/return-borrow3.wit +0 -0
  2361. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/return-borrow3.wit.result +0 -0
  2362. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/return-borrow4.wit +0 -0
  2363. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/return-borrow4.wit.result +0 -0
  2364. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/return-borrow5.wit +0 -0
  2365. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/return-borrow5.wit.result +0 -0
  2366. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/return-borrow6.wit +0 -0
  2367. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/return-borrow7.wit +0 -0
  2368. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/return-borrow8/deps/baz.wit +0 -0
  2369. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/return-borrow8/foo.wit +0 -0
  2370. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/type-and-resource-same-name/deps/dep/foo.wit +0 -0
  2371. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/type-and-resource-same-name/foo.wit +0 -0
  2372. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/type-and-resource-same-name.wit.result +0 -0
  2373. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/undefined-typed.wit +0 -0
  2374. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/undefined-typed.wit.result +0 -0
  2375. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/unknown-interface.wit +0 -0
  2376. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/unknown-interface.wit.result +0 -0
  2377. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-interface1.wit +0 -0
  2378. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-interface1.wit.result +0 -0
  2379. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-interface2.wit +0 -0
  2380. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-interface2.wit.result +0 -0
  2381. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-interface3.wit +0 -0
  2382. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-interface3.wit.result +0 -0
  2383. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-interface4.wit +0 -0
  2384. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-interface4.wit.result +0 -0
  2385. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-use1.wit +0 -0
  2386. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-use1.wit.result +0 -0
  2387. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-use10/bar.wit +0 -0
  2388. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-use10/foo.wit +0 -0
  2389. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-use10.wit.result +0 -0
  2390. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-use2.wit +0 -0
  2391. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-use2.wit.result +0 -0
  2392. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-use3.wit +0 -0
  2393. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-use3.wit.result +0 -0
  2394. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-use7.wit +0 -0
  2395. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-use7.wit.result +0 -0
  2396. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-use8.wit +0 -0
  2397. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-use8.wit.result +0 -0
  2398. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-use9.wit +0 -0
  2399. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-use9.wit.result +0 -0
  2400. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/unterminated-string.wit.result +0 -0
  2401. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/use-and-include-world/deps/bar/baz.wit +0 -0
  2402. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/use-and-include-world/root.wit +0 -0
  2403. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/use-and-include-world.wit.result +0 -0
  2404. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/use-conflict.wit +0 -0
  2405. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/use-conflict.wit.result +0 -0
  2406. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/use-conflict2.wit +0 -0
  2407. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/use-conflict2.wit.result +0 -0
  2408. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/use-conflict3.wit +0 -0
  2409. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/use-conflict3.wit.result +0 -0
  2410. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/use-cycle1.wit +0 -0
  2411. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/use-cycle1.wit.result +0 -0
  2412. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/use-cycle4.wit +0 -0
  2413. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/use-cycle4.wit.result +0 -0
  2414. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/use-shadow1.wit +0 -0
  2415. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/use-shadow1.wit.result +0 -0
  2416. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/use-world/deps/bar/baz.wit +0 -0
  2417. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/use-world/root.wit +0 -0
  2418. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/use-world.wit.result +0 -0
  2419. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/world-interface-clash.wit +0 -0
  2420. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/world-interface-clash.wit.result +0 -0
  2421. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/world-same-fields2.wit +0 -0
  2422. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/world-same-fields2.wit.result +0 -0
  2423. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/world-same-fields3.wit +0 -0
  2424. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/world-same-fields3.wit.result +0 -0
  2425. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/world-top-level-func.wit +0 -0
  2426. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/world-top-level-func.wit.result +0 -0
  2427. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/world-top-level-func2.wit +0 -0
  2428. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/parse-fail/world-top-level-func2.wit.result +0 -0
  2429. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/random.wit +0 -0
  2430. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/random.wit.json +0 -0
  2431. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/resources-empty.wit +0 -0
  2432. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/resources-empty.wit.json +0 -0
  2433. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/resources-multiple-returns-own.wit +0 -0
  2434. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/resources-multiple-returns-own.wit.json +0 -0
  2435. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/resources-multiple.wit +0 -0
  2436. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/resources-multiple.wit.json +0 -0
  2437. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/resources-return-own.wit +0 -0
  2438. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/resources-return-own.wit.json +0 -0
  2439. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/resources.wit +0 -0
  2440. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/resources.wit.json +0 -0
  2441. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/resources1.wit +0 -0
  2442. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/resources1.wit.json +0 -0
  2443. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/same-name-import-export.wit +0 -0
  2444. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/same-name-import-export.wit.json +0 -0
  2445. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/shared-types.wit +0 -0
  2446. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/simple-wasm-text.wat +0 -0
  2447. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/simple-wasm-text.wit.json +0 -0
  2448. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/stress-export-elaborate.wit +0 -0
  2449. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/type-then-eof.wit +0 -0
  2450. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/type-then-eof.wit.json +0 -0
  2451. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/types.wit +0 -0
  2452. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/types.wit.json +0 -0
  2453. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/union-fuzz-1.wit +0 -0
  2454. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/union-fuzz-1.wit.json +0 -0
  2455. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/union-fuzz-2.wit +0 -0
  2456. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/union-fuzz-2.wit.json +0 -0
  2457. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/use-chain.wit +0 -0
  2458. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/use-chain.wit.json +0 -0
  2459. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/use.wit +0 -0
  2460. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/use.wit.json +0 -0
  2461. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/versions/deps/a1/foo.wit +0 -0
  2462. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/versions/deps/a2/foo.wit +0 -0
  2463. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/versions/foo.wit +0 -0
  2464. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/versions.wit.json +0 -0
  2465. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/wasi.wit +0 -0
  2466. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/wasi.wit.json +0 -0
  2467. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/world-diamond.wit +0 -0
  2468. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/world-iface-no-collide.wit +0 -0
  2469. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/world-implicit-import1.wit +0 -0
  2470. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/world-implicit-import2.wit +0 -0
  2471. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/world-implicit-import3.wit +0 -0
  2472. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/world-same-fields4.wit +0 -0
  2473. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/world-top-level-funcs.wit +0 -0
  2474. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/world-top-level-funcs.wit.json +0 -0
  2475. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/world-top-level-resources.wit +0 -0
  2476. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/worlds-union-dedup.wit +0 -0
  2477. /data/ext/cargo-vendor/{wit-parser-0.207.0 → wit-parser-0.212.0}/tests/ui/worlds-with-types.wit +0 -0
@@ -1,2627 +0,0 @@
1
- use crate::prelude::*;
2
- use crate::runtime::vm::{
3
- ExportFunction, SendSyncPtr, StoreBox, VMArrayCallHostFuncContext, VMContext, VMFuncRef,
4
- VMFunctionImport, VMNativeCallHostFuncContext, VMOpaqueContext,
5
- };
6
- use crate::runtime::Uninhabited;
7
- use crate::store::{AutoAssertNoGc, StoreData, StoreOpaque, Stored};
8
- use crate::type_registry::RegisteredType;
9
- use crate::{
10
- AsContext, AsContextMut, CallHook, Engine, Extern, FuncType, Instance, Module, Ref,
11
- StoreContext, StoreContextMut, Val, ValRaw, ValType,
12
- };
13
- use alloc::sync::Arc;
14
- use anyhow::{bail, Context as _, Error, Result};
15
- use core::ffi::c_void;
16
- use core::future::Future;
17
- use core::mem;
18
- use core::num::NonZeroUsize;
19
- use core::pin::Pin;
20
- use core::ptr::{self, NonNull};
21
- use wasmtime_environ::VMSharedTypeIndex;
22
-
23
- /// A reference to the abstract `nofunc` heap value.
24
- ///
25
- /// The are no instances of `(ref nofunc)`: it is an uninhabited type.
26
- ///
27
- /// There is precisely one instance of `(ref null nofunc)`, aka `nullfuncref`:
28
- /// the null reference.
29
- ///
30
- /// This `NoFunc` Rust type's sole purpose is for use with [`Func::wrap`]- and
31
- /// [`Func::typed`]-style APIs for statically typing a function as taking or
32
- /// returning a `(ref null nofunc)` (aka `Option<NoFunc>`) which is always
33
- /// `None`.
34
- ///
35
- /// # Example
36
- ///
37
- /// ```
38
- /// # use wasmtime::*;
39
- /// # fn _foo() -> Result<()> {
40
- /// let mut config = Config::new();
41
- /// config.wasm_function_references(true);
42
- /// let engine = Engine::new(&config)?;
43
- ///
44
- /// let module = Module::new(
45
- /// &engine,
46
- /// r#"
47
- /// (module
48
- /// (func (export "f") (param (ref null nofunc))
49
- /// ;; If the reference is null, return.
50
- /// local.get 0
51
- /// ref.is_null nofunc
52
- /// br_if 0
53
- ///
54
- /// ;; If the reference was not null (which is impossible)
55
- /// ;; then raise a trap.
56
- /// unreachable
57
- /// )
58
- /// )
59
- /// "#,
60
- /// )?;
61
- ///
62
- /// let mut store = Store::new(&engine, ());
63
- /// let instance = Instance::new(&mut store, &module, &[])?;
64
- /// let f = instance.get_func(&mut store, "f").unwrap();
65
- ///
66
- /// // We can cast a `(ref null nofunc)`-taking function into a typed function that
67
- /// // takes an `Option<NoFunc>` via the `Func::typed` method.
68
- /// let f = f.typed::<Option<NoFunc>, ()>(&store)?;
69
- ///
70
- /// // We can call the typed function, passing the null `nofunc` reference.
71
- /// let result = f.call(&mut store, NoFunc::null());
72
- ///
73
- /// // The function should not have trapped, because the reference we gave it was
74
- /// // null (as it had to be, since `NoFunc` is uninhabited).
75
- /// assert!(result.is_ok());
76
- /// # Ok(())
77
- /// # }
78
- /// ```
79
- #[derive(Copy, Clone, Debug, PartialEq, Eq)]
80
- pub struct NoFunc {
81
- _inner: Uninhabited,
82
- }
83
-
84
- impl NoFunc {
85
- /// Get the null `(ref null nofunc)` (aka `nullfuncref`) reference.
86
- #[inline]
87
- pub fn null() -> Option<NoFunc> {
88
- None
89
- }
90
-
91
- /// Get the null `(ref null nofunc)` (aka `nullfuncref`) reference as a
92
- /// [`Ref`].
93
- pub fn null_ref() -> Ref {
94
- Ref::Func(None)
95
- }
96
-
97
- /// Get the null `(ref null nofunc)` (aka `nullfuncref`) reference as a
98
- /// [`Val`].
99
- pub fn null_val() -> Val {
100
- Val::FuncRef(None)
101
- }
102
- }
103
-
104
- /// A WebAssembly function which can be called.
105
- ///
106
- /// This type typically represents an exported function from a WebAssembly
107
- /// module instance. In this case a [`Func`] belongs to an [`Instance`] and is
108
- /// loaded from there. A [`Func`] may also represent a host function as well in
109
- /// some cases, too.
110
- ///
111
- /// Functions can be called in a few different ways, either synchronous or async
112
- /// and either typed or untyped (more on this below). Note that host functions
113
- /// are normally inserted directly into a [`Linker`](crate::Linker) rather than
114
- /// using this directly, but both options are available.
115
- ///
116
- /// # `Func` and `async`
117
- ///
118
- /// Functions from the perspective of WebAssembly are always synchronous. You
119
- /// might have an `async` function in Rust, however, which you'd like to make
120
- /// available from WebAssembly. Wasmtime supports asynchronously calling
121
- /// WebAssembly through native stack switching. You can get some more
122
- /// information about [asynchronous configs](crate::Config::async_support), but
123
- /// from the perspective of `Func` it's important to know that whether or not
124
- /// your [`Store`](crate::Store) is asynchronous will dictate whether you call
125
- /// functions through [`Func::call`] or [`Func::call_async`] (or the typed
126
- /// wrappers such as [`TypedFunc::call`] vs [`TypedFunc::call_async`]).
127
- ///
128
- /// # To `Func::call` or to `Func::typed().call()`
129
- ///
130
- /// There's a 2x2 matrix of methods to call [`Func`]. Invocations can either be
131
- /// asynchronous or synchronous. They can also be statically typed or not.
132
- /// Whether or not an invocation is asynchronous is indicated via the method
133
- /// being `async` and [`call_async`](Func::call_async) being the entry point.
134
- /// Otherwise for statically typed or not your options are:
135
- ///
136
- /// * Dynamically typed - if you don't statically know the signature of the
137
- /// function that you're calling you'll be using [`Func::call`] or
138
- /// [`Func::call_async`]. These functions take a variable-length slice of
139
- /// "boxed" arguments in their [`Val`] representation. Additionally the
140
- /// results are returned as an owned slice of [`Val`]. These methods are not
141
- /// optimized due to the dynamic type checks that must occur, in addition to
142
- /// some dynamic allocations for where to put all the arguments. While this
143
- /// allows you to call all possible wasm function signatures, if you're
144
- /// looking for a speedier alternative you can also use...
145
- ///
146
- /// * Statically typed - if you statically know the type signature of the wasm
147
- /// function you're calling, then you'll want to use the [`Func::typed`]
148
- /// method to acquire an instance of [`TypedFunc`]. This structure is static proof
149
- /// that the underlying wasm function has the ascripted type, and type
150
- /// validation is only done once up-front. The [`TypedFunc::call`] and
151
- /// [`TypedFunc::call_async`] methods are much more efficient than [`Func::call`]
152
- /// and [`Func::call_async`] because the type signature is statically known.
153
- /// This eschews runtime checks as much as possible to get into wasm as fast
154
- /// as possible.
155
- ///
156
- /// # Examples
157
- ///
158
- /// One way to get a `Func` is from an [`Instance`] after you've instantiated
159
- /// it:
160
- ///
161
- /// ```
162
- /// # use wasmtime::*;
163
- /// # fn main() -> anyhow::Result<()> {
164
- /// let engine = Engine::default();
165
- /// let module = Module::new(&engine, r#"(module (func (export "foo")))"#)?;
166
- /// let mut store = Store::new(&engine, ());
167
- /// let instance = Instance::new(&mut store, &module, &[])?;
168
- /// let foo = instance.get_func(&mut store, "foo").expect("export wasn't a function");
169
- ///
170
- /// // Work with `foo` as a `Func` at this point, such as calling it
171
- /// // dynamically...
172
- /// match foo.call(&mut store, &[], &mut []) {
173
- /// Ok(()) => { /* ... */ }
174
- /// Err(trap) => {
175
- /// panic!("execution of `foo` resulted in a wasm trap: {}", trap);
176
- /// }
177
- /// }
178
- /// foo.call(&mut store, &[], &mut [])?;
179
- ///
180
- /// // ... or we can make a static assertion about its signature and call it.
181
- /// // Our first call here can fail if the signatures don't match, and then the
182
- /// // second call can fail if the function traps (like the `match` above).
183
- /// let foo = foo.typed::<(), ()>(&store)?;
184
- /// foo.call(&mut store, ())?;
185
- /// # Ok(())
186
- /// # }
187
- /// ```
188
- ///
189
- /// You can also use the [`wrap` function](Func::wrap) to create a
190
- /// `Func`
191
- ///
192
- /// ```
193
- /// # use wasmtime::*;
194
- /// # fn main() -> anyhow::Result<()> {
195
- /// let mut store = Store::<()>::default();
196
- ///
197
- /// // Create a custom `Func` which can execute arbitrary code inside of the
198
- /// // closure.
199
- /// let add = Func::wrap(&mut store, |a: i32, b: i32| -> i32 { a + b });
200
- ///
201
- /// // Next we can hook that up to a wasm module which uses it.
202
- /// let module = Module::new(
203
- /// store.engine(),
204
- /// r#"
205
- /// (module
206
- /// (import "" "" (func $add (param i32 i32) (result i32)))
207
- /// (func (export "call_add_twice") (result i32)
208
- /// i32.const 1
209
- /// i32.const 2
210
- /// call $add
211
- /// i32.const 3
212
- /// i32.const 4
213
- /// call $add
214
- /// i32.add))
215
- /// "#,
216
- /// )?;
217
- /// let instance = Instance::new(&mut store, &module, &[add.into()])?;
218
- /// let call_add_twice = instance.get_typed_func::<(), i32>(&mut store, "call_add_twice")?;
219
- ///
220
- /// assert_eq!(call_add_twice.call(&mut store, ())?, 10);
221
- /// # Ok(())
222
- /// # }
223
- /// ```
224
- ///
225
- /// Or you could also create an entirely dynamic `Func`!
226
- ///
227
- /// ```
228
- /// # use wasmtime::*;
229
- /// # fn main() -> anyhow::Result<()> {
230
- /// let mut store = Store::<()>::default();
231
- ///
232
- /// // Here we need to define the type signature of our `Double` function and
233
- /// // then wrap it up in a `Func`
234
- /// let double_type = wasmtime::FuncType::new(
235
- /// store.engine(),
236
- /// [wasmtime::ValType::I32].iter().cloned(),
237
- /// [wasmtime::ValType::I32].iter().cloned(),
238
- /// );
239
- /// let double = Func::new(&mut store, double_type, |_, params, results| {
240
- /// let mut value = params[0].unwrap_i32();
241
- /// value *= 2;
242
- /// results[0] = value.into();
243
- /// Ok(())
244
- /// });
245
- ///
246
- /// let module = Module::new(
247
- /// store.engine(),
248
- /// r#"
249
- /// (module
250
- /// (import "" "" (func $double (param i32) (result i32)))
251
- /// (func $start
252
- /// i32.const 1
253
- /// call $double
254
- /// drop)
255
- /// (start $start))
256
- /// "#,
257
- /// )?;
258
- /// let instance = Instance::new(&mut store, &module, &[double.into()])?;
259
- /// // .. work with `instance` if necessary
260
- /// # Ok(())
261
- /// # }
262
- /// ```
263
- #[derive(Copy, Clone, Debug)]
264
- #[repr(transparent)] // here for the C API
265
- pub struct Func(Stored<FuncData>);
266
-
267
- pub(crate) struct FuncData {
268
- kind: FuncKind,
269
-
270
- // A pointer to the in-store `VMFuncRef` for this function, if
271
- // any.
272
- //
273
- // When a function is passed to Wasm but doesn't have a Wasm-to-native
274
- // trampoline, we have to patch it in. But that requires mutating the
275
- // `VMFuncRef`, and this function could be shared across
276
- // threads. So we instead copy and pin the `VMFuncRef` into
277
- // `StoreOpaque::func_refs`, where we can safely patch the field without
278
- // worrying about synchronization and we hold a pointer to it here so we can
279
- // reuse it rather than re-copy if it is passed to Wasm again.
280
- in_store_func_ref: Option<SendSyncPtr<VMFuncRef>>,
281
-
282
- // This is somewhat expensive to load from the `Engine` and in most
283
- // optimized use cases (e.g. `TypedFunc`) it's not actually needed or it's
284
- // only needed rarely. To handle that this is an optionally-contained field
285
- // which is lazily loaded into as part of `Func::call`.
286
- //
287
- // Also note that this is intentionally placed behind a pointer to keep it
288
- // small as `FuncData` instances are often inserted into a `Store`.
289
- ty: Option<Box<FuncType>>,
290
- }
291
-
292
- /// The three ways that a function can be created and referenced from within a
293
- /// store.
294
- enum FuncKind {
295
- /// A function already owned by the store via some other means. This is
296
- /// used, for example, when creating a `Func` from an instance's exported
297
- /// function. The instance's `InstanceHandle` is already owned by the store
298
- /// and we just have some pointers into that which represent how to call the
299
- /// function.
300
- StoreOwned { export: ExportFunction },
301
-
302
- /// A function is shared across possibly other stores, hence the `Arc`. This
303
- /// variant happens when a `Linker`-defined function is instantiated within
304
- /// a `Store` (e.g. via `Linker::get` or similar APIs). The `Arc` here
305
- /// indicates that there's some number of other stores holding this function
306
- /// too, so dropping this may not deallocate the underlying
307
- /// `InstanceHandle`.
308
- SharedHost(Arc<HostFunc>),
309
-
310
- /// A uniquely-owned host function within a `Store`. This comes about with
311
- /// `Func::new` or similar APIs. The `HostFunc` internally owns the
312
- /// `InstanceHandle` and that will get dropped when this `HostFunc` itself
313
- /// is dropped.
314
- ///
315
- /// Note that this is intentionally placed behind a `Box` to minimize the
316
- /// size of this enum since the most common variant for high-peformance
317
- /// situations is `SharedHost` and `StoreOwned`, so this ideally isn't
318
- /// larger than those two.
319
- Host(Box<HostFunc>),
320
-
321
- /// A reference to a `HostFunc`, but one that's "rooted" in the `Store`
322
- /// itself.
323
- ///
324
- /// This variant is created when an `InstancePre<T>` is instantiated in to a
325
- /// `Store<T>`. In that situation the `InstancePre<T>` already has a list of
326
- /// host functions that are packaged up in an `Arc`, so the `Arc<[T]>` is
327
- /// cloned once into the `Store` to avoid each individual function requiring
328
- /// an `Arc::clone`.
329
- ///
330
- /// The lifetime management of this type is `unsafe` because
331
- /// `RootedHostFunc` is a small wrapper around `NonNull<HostFunc>`. To be
332
- /// safe this is required that the memory of the host function is pinned
333
- /// elsewhere (e.g. the `Arc` in the `Store`).
334
- RootedHost(RootedHostFunc),
335
- }
336
-
337
- macro_rules! for_each_function_signature {
338
- ($mac:ident) => {
339
- $mac!(0);
340
- $mac!(1 A1);
341
- $mac!(2 A1 A2);
342
- $mac!(3 A1 A2 A3);
343
- $mac!(4 A1 A2 A3 A4);
344
- $mac!(5 A1 A2 A3 A4 A5);
345
- $mac!(6 A1 A2 A3 A4 A5 A6);
346
- $mac!(7 A1 A2 A3 A4 A5 A6 A7);
347
- $mac!(8 A1 A2 A3 A4 A5 A6 A7 A8);
348
- $mac!(9 A1 A2 A3 A4 A5 A6 A7 A8 A9);
349
- $mac!(10 A1 A2 A3 A4 A5 A6 A7 A8 A9 A10);
350
- $mac!(11 A1 A2 A3 A4 A5 A6 A7 A8 A9 A10 A11);
351
- $mac!(12 A1 A2 A3 A4 A5 A6 A7 A8 A9 A10 A11 A12);
352
- $mac!(13 A1 A2 A3 A4 A5 A6 A7 A8 A9 A10 A11 A12 A13);
353
- $mac!(14 A1 A2 A3 A4 A5 A6 A7 A8 A9 A10 A11 A12 A13 A14);
354
- $mac!(15 A1 A2 A3 A4 A5 A6 A7 A8 A9 A10 A11 A12 A13 A14 A15);
355
- $mac!(16 A1 A2 A3 A4 A5 A6 A7 A8 A9 A10 A11 A12 A13 A14 A15 A16);
356
- };
357
- }
358
-
359
- mod typed;
360
- pub use typed::*;
361
-
362
- macro_rules! generate_wrap_async_func {
363
- ($num:tt $($args:ident)*) => (paste::paste!{
364
- /// Same as [`Func::wrap`], except the closure asynchronously produces
365
- /// its result. For more information see the [`Func`] documentation.
366
- ///
367
- /// # Panics
368
- ///
369
- /// This function will panic if called with a non-asynchronous store.
370
- #[allow(non_snake_case)]
371
- #[cfg(feature = "async")]
372
- pub fn [<wrap $num _async>]<T, $($args,)* R>(
373
- store: impl AsContextMut<Data = T>,
374
- func: impl for<'a> Fn(Caller<'a, T>, $($args),*) -> Box<dyn Future<Output = R> + Send + 'a> + Send + Sync + 'static,
375
- ) -> Func
376
- where
377
- $($args: WasmTy,)*
378
- R: WasmRet,
379
- {
380
- assert!(store.as_context().async_support(), concat!("cannot use `wrap", $num, "_async` without enabling async support on the config"));
381
- Func::wrap(store, move |mut caller: Caller<'_, T>, $($args: $args),*| {
382
- let async_cx = caller.store.as_context_mut().0.async_cx().expect("Attempt to start async function on dying fiber");
383
- let mut future = Pin::from(func(caller, $($args),*));
384
-
385
- match unsafe { async_cx.block_on(future.as_mut()) } {
386
- Ok(ret) => ret.into_fallible(),
387
- Err(e) => R::fallible_from_error(e),
388
- }
389
- })
390
- }
391
- })
392
- }
393
-
394
- impl Func {
395
- /// Creates a new `Func` with the given arguments, typically to create a
396
- /// host-defined function to pass as an import to a module.
397
- ///
398
- /// * `store` - the store in which to create this [`Func`], which will own
399
- /// the return value.
400
- ///
401
- /// * `ty` - the signature of this function, used to indicate what the
402
- /// inputs and outputs are.
403
- ///
404
- /// * `func` - the native code invoked whenever this `Func` will be called.
405
- /// This closure is provided a [`Caller`] as its first argument to learn
406
- /// information about the caller, and then it's passed a list of
407
- /// parameters as a slice along with a mutable slice of where to write
408
- /// results.
409
- ///
410
- /// Note that the implementation of `func` must adhere to the `ty` signature
411
- /// given, error or traps may occur if it does not respect the `ty`
412
- /// signature. For example if the function type declares that it returns one
413
- /// i32 but the `func` closures does not write anything into the results
414
- /// slice then a trap may be generated.
415
- ///
416
- /// Additionally note that this is quite a dynamic function since signatures
417
- /// are not statically known. For a more performant and ergonomic `Func`
418
- /// it's recommended to use [`Func::wrap`] if you can because with
419
- /// statically known signatures Wasmtime can optimize the implementation
420
- /// much more.
421
- ///
422
- /// For more information about `Send + Sync + 'static` requirements on the
423
- /// `func`, see [`Func::wrap`](#why-send--sync--static).
424
- ///
425
- /// # Errors
426
- ///
427
- /// The host-provided function here returns a
428
- /// [`Result<()>`](anyhow::Result). If the function returns `Ok(())` then
429
- /// that indicates that the host function completed successfully and wrote
430
- /// the result into the `&mut [Val]` argument.
431
- ///
432
- /// If the function returns `Err(e)`, however, then this is equivalent to
433
- /// the host function triggering a trap for wasm. WebAssembly execution is
434
- /// immediately halted and the original caller of [`Func::call`], for
435
- /// example, will receive the error returned here (possibly with
436
- /// [`WasmBacktrace`](crate::WasmBacktrace) context information attached).
437
- ///
438
- /// For more information about errors in Wasmtime see the [`Trap`]
439
- /// documentation.
440
- ///
441
- /// [`Trap`]: crate::Trap
442
- ///
443
- /// # Panics
444
- ///
445
- /// Panics if the given function type is not associated with this store's
446
- /// engine.
447
- #[cfg(any(feature = "cranelift", feature = "winch"))]
448
- pub fn new<T>(
449
- store: impl AsContextMut<Data = T>,
450
- ty: FuncType,
451
- func: impl Fn(Caller<'_, T>, &[Val], &mut [Val]) -> Result<()> + Send + Sync + 'static,
452
- ) -> Self {
453
- assert!(ty.comes_from_same_engine(store.as_context().engine()));
454
- let ty_clone = ty.clone();
455
- unsafe {
456
- Func::new_unchecked(store, ty, move |caller, values| {
457
- Func::invoke_host_func_for_wasm(caller, &ty_clone, values, &func)
458
- })
459
- }
460
- }
461
-
462
- /// Creates a new [`Func`] with the given arguments, although has fewer
463
- /// runtime checks than [`Func::new`].
464
- ///
465
- /// This function takes a callback of a different signature than
466
- /// [`Func::new`], instead receiving a raw pointer with a list of [`ValRaw`]
467
- /// structures. These values have no type information associated with them
468
- /// so it's up to the caller to provide a function that will correctly
469
- /// interpret the list of values as those coming from the `ty` specified.
470
- ///
471
- /// If you're calling this from Rust it's recommended to either instead use
472
- /// [`Func::new`] or [`Func::wrap`]. The [`Func::wrap`] API, in particular,
473
- /// is both safer and faster than this API.
474
- ///
475
- /// # Errors
476
- ///
477
- /// See [`Func::new`] for the behavior of returning an error from the host
478
- /// function provided here.
479
- ///
480
- /// # Unsafety
481
- ///
482
- /// This function is not safe because it's not known at compile time that
483
- /// the `func` provided correctly interprets the argument types provided to
484
- /// it, or that the results it produces will be of the correct type.
485
- ///
486
- /// # Panics
487
- ///
488
- /// Panics if the given function type is not associated with this store's
489
- /// engine.
490
- #[cfg(any(feature = "cranelift", feature = "winch"))]
491
- pub unsafe fn new_unchecked<T>(
492
- mut store: impl AsContextMut<Data = T>,
493
- ty: FuncType,
494
- func: impl Fn(Caller<'_, T>, &mut [ValRaw]) -> Result<()> + Send + Sync + 'static,
495
- ) -> Self {
496
- assert!(ty.comes_from_same_engine(store.as_context().engine()));
497
- let store = store.as_context_mut().0;
498
- let host = HostFunc::new_unchecked(store.engine(), ty, func);
499
- host.into_func(store)
500
- }
501
-
502
- /// Creates a new host-defined WebAssembly function which, when called,
503
- /// will run the asynchronous computation defined by `func` to completion
504
- /// and then return the result to WebAssembly.
505
- ///
506
- /// This function is the asynchronous analogue of [`Func::new`] and much of
507
- /// that documentation applies to this as well. The key difference is that
508
- /// `func` returns a future instead of simply a `Result`. Note that the
509
- /// returned future can close over any of the arguments, but it cannot close
510
- /// over the state of the closure itself. It's recommended to store any
511
- /// necessary async state in the `T` of the [`Store<T>`](crate::Store) which
512
- /// can be accessed through [`Caller::data`] or [`Caller::data_mut`].
513
- ///
514
- /// For more information on `Send + Sync + 'static`, see
515
- /// [`Func::wrap`](#why-send--sync--static).
516
- ///
517
- /// # Panics
518
- ///
519
- /// This function will panic if `store` is not associated with an [async
520
- /// config](crate::Config::async_support).
521
- ///
522
- /// Panics if the given function type is not associated with this store's
523
- /// engine.
524
- ///
525
- /// # Errors
526
- ///
527
- /// See [`Func::new`] for the behavior of returning an error from the host
528
- /// function provided here.
529
- ///
530
- /// # Examples
531
- ///
532
- /// ```
533
- /// # use wasmtime::*;
534
- /// # fn main() -> anyhow::Result<()> {
535
- /// // Simulate some application-specific state as well as asynchronous
536
- /// // functions to query that state.
537
- /// struct MyDatabase {
538
- /// // ...
539
- /// }
540
- ///
541
- /// impl MyDatabase {
542
- /// async fn get_row_count(&self) -> u32 {
543
- /// // ...
544
- /// # 100
545
- /// }
546
- /// }
547
- ///
548
- /// let my_database = MyDatabase {
549
- /// // ...
550
- /// };
551
- ///
552
- /// // Using `new_async` we can hook up into calling our async
553
- /// // `get_row_count` function.
554
- /// let engine = Engine::new(Config::new().async_support(true))?;
555
- /// let mut store = Store::new(&engine, MyDatabase {
556
- /// // ...
557
- /// });
558
- /// let get_row_count_type = wasmtime::FuncType::new(
559
- /// &engine,
560
- /// None,
561
- /// Some(wasmtime::ValType::I32),
562
- /// );
563
- /// let get = Func::new_async(&mut store, get_row_count_type, |caller, _params, results| {
564
- /// Box::new(async move {
565
- /// let count = caller.data().get_row_count().await;
566
- /// results[0] = Val::I32(count as i32);
567
- /// Ok(())
568
- /// })
569
- /// });
570
- /// // ...
571
- /// # Ok(())
572
- /// # }
573
- /// ```
574
- #[cfg(all(feature = "async", feature = "cranelift"))]
575
- pub fn new_async<T, F>(store: impl AsContextMut<Data = T>, ty: FuncType, func: F) -> Func
576
- where
577
- F: for<'a> Fn(
578
- Caller<'a, T>,
579
- &'a [Val],
580
- &'a mut [Val],
581
- ) -> Box<dyn Future<Output = Result<()>> + Send + 'a>
582
- + Send
583
- + Sync
584
- + 'static,
585
- {
586
- assert!(
587
- store.as_context().async_support(),
588
- "cannot use `new_async` without enabling async support in the config"
589
- );
590
- assert!(ty.comes_from_same_engine(store.as_context().engine()));
591
- Func::new(store, ty, move |mut caller, params, results| {
592
- let async_cx = caller
593
- .store
594
- .as_context_mut()
595
- .0
596
- .async_cx()
597
- .expect("Attempt to spawn new action on dying fiber");
598
- let mut future = Pin::from(func(caller, params, results));
599
- match unsafe { async_cx.block_on(future.as_mut()) } {
600
- Ok(Ok(())) => Ok(()),
601
- Ok(Err(trap)) | Err(trap) => Err(trap),
602
- }
603
- })
604
- }
605
-
606
- pub(crate) unsafe fn from_vm_func_ref(
607
- store: &mut StoreOpaque,
608
- raw: *mut VMFuncRef,
609
- ) -> Option<Func> {
610
- let func_ref = NonNull::new(raw)?;
611
- debug_assert!(func_ref.as_ref().type_index != VMSharedTypeIndex::default());
612
- let export = ExportFunction { func_ref };
613
- Some(Func::from_wasmtime_function(export, store))
614
- }
615
-
616
- /// Creates a new `Func` from the given Rust closure.
617
- ///
618
- /// This function will create a new `Func` which, when called, will
619
- /// execute the given Rust closure. Unlike [`Func::new`] the target
620
- /// function being called is known statically so the type signature can
621
- /// be inferred. Rust types will map to WebAssembly types as follows:
622
- ///
623
- /// | Rust Argument Type | WebAssembly Type |
624
- /// |-----------------------------------|---------------------------------------|
625
- /// | `i32` | `i32` |
626
- /// | `u32` | `i32` |
627
- /// | `i64` | `i64` |
628
- /// | `u64` | `i64` |
629
- /// | `f32` | `f32` |
630
- /// | `f64` | `f64` |
631
- /// | `V128` on x86-64 and aarch64 only | `v128` |
632
- /// | `Option<Func>` | `funcref` aka `(ref null func)` |
633
- /// | `Func` | `(ref func)` |
634
- /// | `Option<Nofunc>` | `nullfuncref` aka `(ref null nofunc)` |
635
- /// | `NoFunc` | `(ref nofunc)` |
636
- /// | `Option<ExternRef>` | `externref` aka `(ref null extern)` |
637
- /// | `ExternRef` | `(ref extern)` |
638
- /// | `Option<AnyRef>` | `anyref` aka `(ref null any)` |
639
- /// | `AnyRef` | `(ref any)` |
640
- /// | `Option<I31>` | `i31ref` aka `(ref null i31)` |
641
- /// | `I31` | `(ref i31)` |
642
- ///
643
- /// Any of the Rust types can be returned from the closure as well, in
644
- /// addition to some extra types
645
- ///
646
- /// | Rust Return Type | WebAssembly Return Type | Meaning |
647
- /// |-------------------|-------------------------|-----------------------|
648
- /// | `()` | nothing | no return value |
649
- /// | `T` | `T` | a single return value |
650
- /// | `(T1, T2, ...)` | `T1 T2 ...` | multiple returns |
651
- ///
652
- /// Note that all return types can also be wrapped in `Result<_>` to
653
- /// indicate that the host function can generate a trap as well as possibly
654
- /// returning a value.
655
- ///
656
- /// Finally you can also optionally take [`Caller`] as the first argument of
657
- /// your closure. If inserted then you're able to inspect the caller's
658
- /// state, for example the [`Memory`](crate::Memory) it has exported so you
659
- /// can read what pointers point to.
660
- ///
661
- /// Note that when using this API, the intention is to create as thin of a
662
- /// layer as possible for when WebAssembly calls the function provided. With
663
- /// sufficient inlining and optimization the WebAssembly will call straight
664
- /// into `func` provided, with no extra fluff entailed.
665
- ///
666
- /// # Why `Send + Sync + 'static`?
667
- ///
668
- /// All host functions defined in a [`Store`](crate::Store) (including
669
- /// those from [`Func::new`] and other constructors) require that the
670
- /// `func` provided is `Send + Sync + 'static`. Additionally host functions
671
- /// always are `Fn` as opposed to `FnMut` or `FnOnce`. This can at-a-glance
672
- /// feel restrictive since the closure cannot close over as many types as
673
- /// before. The reason for this, though, is to ensure that
674
- /// [`Store<T>`](crate::Store) can implement both the `Send` and `Sync`
675
- /// traits.
676
- ///
677
- /// Fear not, however, because this isn't as restrictive as it seems! Host
678
- /// functions are provided a [`Caller<'_, T>`](crate::Caller) argument which
679
- /// allows access to the host-defined data within the
680
- /// [`Store`](crate::Store). The `T` type is not required to be any of
681
- /// `Send`, `Sync`, or `'static`! This means that you can store whatever
682
- /// you'd like in `T` and have it accessible by all host functions.
683
- /// Additionally mutable access to `T` is allowed through
684
- /// [`Caller::data_mut`].
685
- ///
686
- /// Most host-defined [`Func`] values provide closures that end up not
687
- /// actually closing over any values. These zero-sized types will use the
688
- /// context from [`Caller`] for host-defined information.
689
- ///
690
- /// # Errors
691
- ///
692
- /// The closure provided here to `wrap` can optionally return a
693
- /// [`Result<T>`](anyhow::Result). Returning `Ok(t)` represents the host
694
- /// function successfully completing with the `t` result. Returning
695
- /// `Err(e)`, however, is equivalent to raising a custom wasm trap.
696
- /// Execution of WebAssembly does not resume and the stack is unwound to the
697
- /// original caller of the function where the error is returned.
698
- ///
699
- /// For more information about errors in Wasmtime see the [`Trap`]
700
- /// documentation.
701
- ///
702
- /// [`Trap`]: crate::Trap
703
- ///
704
- /// # Examples
705
- ///
706
- /// First up we can see how simple wasm imports can be implemented, such
707
- /// as a function that adds its two arguments and returns the result.
708
- ///
709
- /// ```
710
- /// # use wasmtime::*;
711
- /// # fn main() -> anyhow::Result<()> {
712
- /// # let mut store = Store::<()>::default();
713
- /// let add = Func::wrap(&mut store, |a: i32, b: i32| a + b);
714
- /// let module = Module::new(
715
- /// store.engine(),
716
- /// r#"
717
- /// (module
718
- /// (import "" "" (func $add (param i32 i32) (result i32)))
719
- /// (func (export "foo") (param i32 i32) (result i32)
720
- /// local.get 0
721
- /// local.get 1
722
- /// call $add))
723
- /// "#,
724
- /// )?;
725
- /// let instance = Instance::new(&mut store, &module, &[add.into()])?;
726
- /// let foo = instance.get_typed_func::<(i32, i32), i32>(&mut store, "foo")?;
727
- /// assert_eq!(foo.call(&mut store, (1, 2))?, 3);
728
- /// # Ok(())
729
- /// # }
730
- /// ```
731
- ///
732
- /// We can also do the same thing, but generate a trap if the addition
733
- /// overflows:
734
- ///
735
- /// ```
736
- /// # use wasmtime::*;
737
- /// # fn main() -> anyhow::Result<()> {
738
- /// # let mut store = Store::<()>::default();
739
- /// let add = Func::wrap(&mut store, |a: i32, b: i32| {
740
- /// match a.checked_add(b) {
741
- /// Some(i) => Ok(i),
742
- /// None => anyhow::bail!("overflow"),
743
- /// }
744
- /// });
745
- /// let module = Module::new(
746
- /// store.engine(),
747
- /// r#"
748
- /// (module
749
- /// (import "" "" (func $add (param i32 i32) (result i32)))
750
- /// (func (export "foo") (param i32 i32) (result i32)
751
- /// local.get 0
752
- /// local.get 1
753
- /// call $add))
754
- /// "#,
755
- /// )?;
756
- /// let instance = Instance::new(&mut store, &module, &[add.into()])?;
757
- /// let foo = instance.get_typed_func::<(i32, i32), i32>(&mut store, "foo")?;
758
- /// assert_eq!(foo.call(&mut store, (1, 2))?, 3);
759
- /// assert!(foo.call(&mut store, (i32::max_value(), 1)).is_err());
760
- /// # Ok(())
761
- /// # }
762
- /// ```
763
- ///
764
- /// And don't forget all the wasm types are supported!
765
- ///
766
- /// ```
767
- /// # use wasmtime::*;
768
- /// # fn main() -> anyhow::Result<()> {
769
- /// # let mut store = Store::<()>::default();
770
- /// let debug = Func::wrap(&mut store, |a: i32, b: u32, c: f32, d: i64, e: u64, f: f64| {
771
- ///
772
- /// println!("a={}", a);
773
- /// println!("b={}", b);
774
- /// println!("c={}", c);
775
- /// println!("d={}", d);
776
- /// println!("e={}", e);
777
- /// println!("f={}", f);
778
- /// });
779
- /// let module = Module::new(
780
- /// store.engine(),
781
- /// r#"
782
- /// (module
783
- /// (import "" "" (func $debug (param i32 i32 f32 i64 i64 f64)))
784
- /// (func (export "foo")
785
- /// i32.const -1
786
- /// i32.const 1
787
- /// f32.const 2
788
- /// i64.const -3
789
- /// i64.const 3
790
- /// f64.const 4
791
- /// call $debug))
792
- /// "#,
793
- /// )?;
794
- /// let instance = Instance::new(&mut store, &module, &[debug.into()])?;
795
- /// let foo = instance.get_typed_func::<(), ()>(&mut store, "foo")?;
796
- /// foo.call(&mut store, ())?;
797
- /// # Ok(())
798
- /// # }
799
- /// ```
800
- ///
801
- /// Finally if you want to get really fancy you can also implement
802
- /// imports that read/write wasm module's memory
803
- ///
804
- /// ```
805
- /// use std::str;
806
- ///
807
- /// # use wasmtime::*;
808
- /// # fn main() -> anyhow::Result<()> {
809
- /// # let mut store = Store::default();
810
- /// let log_str = Func::wrap(&mut store, |mut caller: Caller<'_, ()>, ptr: i32, len: i32| {
811
- /// let mem = match caller.get_export("memory") {
812
- /// Some(Extern::Memory(mem)) => mem,
813
- /// _ => anyhow::bail!("failed to find host memory"),
814
- /// };
815
- /// let data = mem.data(&caller)
816
- /// .get(ptr as u32 as usize..)
817
- /// .and_then(|arr| arr.get(..len as u32 as usize));
818
- /// let string = match data {
819
- /// Some(data) => match str::from_utf8(data) {
820
- /// Ok(s) => s,
821
- /// Err(_) => anyhow::bail!("invalid utf-8"),
822
- /// },
823
- /// None => anyhow::bail!("pointer/length out of bounds"),
824
- /// };
825
- /// assert_eq!(string, "Hello, world!");
826
- /// println!("{}", string);
827
- /// Ok(())
828
- /// });
829
- /// let module = Module::new(
830
- /// store.engine(),
831
- /// r#"
832
- /// (module
833
- /// (import "" "" (func $log_str (param i32 i32)))
834
- /// (func (export "foo")
835
- /// i32.const 4 ;; ptr
836
- /// i32.const 13 ;; len
837
- /// call $log_str)
838
- /// (memory (export "memory") 1)
839
- /// (data (i32.const 4) "Hello, world!"))
840
- /// "#,
841
- /// )?;
842
- /// let instance = Instance::new(&mut store, &module, &[log_str.into()])?;
843
- /// let foo = instance.get_typed_func::<(), ()>(&mut store, "foo")?;
844
- /// foo.call(&mut store, ())?;
845
- /// # Ok(())
846
- /// # }
847
- /// ```
848
- pub fn wrap<T, Params, Results>(
849
- mut store: impl AsContextMut<Data = T>,
850
- func: impl IntoFunc<T, Params, Results>,
851
- ) -> Func {
852
- let store = store.as_context_mut().0;
853
- // part of this unsafety is about matching the `T` to a `Store<T>`,
854
- // which is done through the `AsContextMut` bound above.
855
- unsafe {
856
- let host = HostFunc::wrap(store.engine(), func);
857
- host.into_func(store)
858
- }
859
- }
860
-
861
- for_each_function_signature!(generate_wrap_async_func);
862
-
863
- /// Returns the underlying wasm type that this `Func` has.
864
- ///
865
- /// # Panics
866
- ///
867
- /// Panics if `store` does not own this function.
868
- pub fn ty(&self, store: impl AsContext) -> FuncType {
869
- self.load_ty(&store.as_context().0)
870
- }
871
-
872
- /// Forcibly loads the type of this function from the `Engine`.
873
- ///
874
- /// Note that this is a somewhat expensive method since it requires taking a
875
- /// lock as well as cloning a type.
876
- pub(crate) fn load_ty(&self, store: &StoreOpaque) -> FuncType {
877
- assert!(self.comes_from_same_store(store));
878
- FuncType::from_shared_type_index(store.engine(), self.type_index(store.store_data()))
879
- }
880
-
881
- /// Does this function match the given type?
882
- ///
883
- /// That is, is this function's type a subtype of the given type?
884
- pub fn matches_ty(&self, store: impl AsContext, func_ty: &FuncType) -> bool {
885
- self._matches_ty(store.as_context().0, func_ty)
886
- }
887
-
888
- pub(crate) fn _matches_ty(&self, store: &StoreOpaque, func_ty: &FuncType) -> bool {
889
- let actual_ty = self.load_ty(store);
890
- actual_ty.matches(func_ty)
891
- }
892
-
893
- pub(crate) fn ensure_matches_ty(&self, store: &StoreOpaque, func_ty: &FuncType) -> Result<()> {
894
- if !self.comes_from_same_store(store) {
895
- bail!("function used with wrong store");
896
- }
897
- if self._matches_ty(store, func_ty) {
898
- Ok(())
899
- } else {
900
- let actual_ty = self.load_ty(store);
901
- bail!("type mismatch: expected {func_ty}, found {actual_ty}")
902
- }
903
- }
904
-
905
- /// Gets a reference to the `FuncType` for this function.
906
- ///
907
- /// Note that this returns both a reference to the type of this function as
908
- /// well as a reference back to the store itself. This enables using the
909
- /// `StoreOpaque` while the `FuncType` is also being used (from the
910
- /// perspective of the borrow-checker) because otherwise the signature would
911
- /// consider `StoreOpaque` borrowed mutable while `FuncType` is in use.
912
- fn ty_ref<'a>(&self, store: &'a mut StoreOpaque) -> (&'a FuncType, &'a StoreOpaque) {
913
- // If we haven't loaded our type into the store yet then do so lazily at
914
- // this time.
915
- if store.store_data()[self.0].ty.is_none() {
916
- let ty = self.load_ty(store);
917
- store.store_data_mut()[self.0].ty = Some(Box::new(ty));
918
- }
919
-
920
- (store.store_data()[self.0].ty.as_ref().unwrap(), store)
921
- }
922
-
923
- pub(crate) fn type_index(&self, data: &StoreData) -> VMSharedTypeIndex {
924
- data[self.0].sig_index()
925
- }
926
-
927
- /// Invokes this function with the `params` given and writes returned values
928
- /// to `results`.
929
- ///
930
- /// The `params` here must match the type signature of this `Func`, or an
931
- /// error will occur. Additionally `results` must have the same
932
- /// length as the number of results for this function. Calling this function
933
- /// will synchronously execute the WebAssembly function referenced to get
934
- /// the results.
935
- ///
936
- /// This function will return `Ok(())` if execution completed without a trap
937
- /// or error of any kind. In this situation the results will be written to
938
- /// the provided `results` array.
939
- ///
940
- /// # Errors
941
- ///
942
- /// Any error which occurs throughout the execution of the function will be
943
- /// returned as `Err(e)`. The [`Error`](anyhow::Error) type can be inspected
944
- /// for the precise error cause such as:
945
- ///
946
- /// * [`Trap`] - indicates that a wasm trap happened and execution was
947
- /// halted.
948
- /// * [`WasmBacktrace`] - optionally included on errors for backtrace
949
- /// information of the trap/error.
950
- /// * Other string-based errors to indicate issues such as type errors with
951
- /// `params`.
952
- /// * Any host-originating error originally returned from a function defined
953
- /// via [`Func::new`], for example.
954
- ///
955
- /// Errors typically indicate that execution of WebAssembly was halted
956
- /// mid-way and did not complete after the error condition happened.
957
- ///
958
- /// [`Trap`]: crate::Trap
959
- ///
960
- /// # Panics
961
- ///
962
- /// This function will panic if called on a function belonging to an async
963
- /// store. Asynchronous stores must always use `call_async`.
964
- /// initiates a panic. Also panics if `store` does not own this function.
965
- ///
966
- /// [`WasmBacktrace`]: crate::WasmBacktrace
967
- pub fn call(
968
- &self,
969
- mut store: impl AsContextMut,
970
- params: &[Val],
971
- results: &mut [Val],
972
- ) -> Result<()> {
973
- assert!(
974
- !store.as_context().async_support(),
975
- "must use `call_async` when async support is enabled on the config",
976
- );
977
- let mut store = store.as_context_mut();
978
- let need_gc = self.call_impl_check_args(&mut store, params, results)?;
979
- if need_gc {
980
- store.0.gc();
981
- }
982
- unsafe { self.call_impl_do_call(&mut store, params, results) }
983
- }
984
-
985
- /// Invokes this function in an "unchecked" fashion, reading parameters and
986
- /// writing results to `params_and_returns`.
987
- ///
988
- /// This function is the same as [`Func::call`] except that the arguments
989
- /// and results both use a different representation. If possible it's
990
- /// recommended to use [`Func::call`] if safety isn't necessary or to use
991
- /// [`Func::typed`] in conjunction with [`TypedFunc::call`] since that's
992
- /// both safer and faster than this method of invoking a function.
993
- ///
994
- /// Note that if this function takes `externref` arguments then it will
995
- /// **not** automatically GC unlike the [`Func::call`] and
996
- /// [`TypedFunc::call`] functions. This means that if this function is
997
- /// invoked many times with new `ExternRef` values and no other GC happens
998
- /// via any other means then no values will get collected.
999
- ///
1000
- /// # Errors
1001
- ///
1002
- /// For more information about errors see the [`Func::call`] documentation.
1003
- ///
1004
- /// # Unsafety
1005
- ///
1006
- /// This function is unsafe because the `params_and_returns` argument is not
1007
- /// validated at all. It must uphold invariants such as:
1008
- ///
1009
- /// * It's a valid pointer to an array
1010
- /// * It has enough space to store all parameters
1011
- /// * It has enough space to store all results (not at the same time as
1012
- /// parameters)
1013
- /// * Parameters are initially written to the array and have the correct
1014
- /// types and such.
1015
- /// * Reference types like `externref` and `funcref` are valid at the
1016
- /// time of this call and for the `store` specified.
1017
- ///
1018
- /// These invariants are all upheld for you with [`Func::call`] and
1019
- /// [`TypedFunc::call`].
1020
- pub unsafe fn call_unchecked(
1021
- &self,
1022
- mut store: impl AsContextMut,
1023
- params_and_returns: *mut ValRaw,
1024
- params_and_returns_capacity: usize,
1025
- ) -> Result<()> {
1026
- let mut store = store.as_context_mut();
1027
- let data = &store.0.store_data()[self.0];
1028
- let func_ref = data.export().func_ref;
1029
- Self::call_unchecked_raw(
1030
- &mut store,
1031
- func_ref,
1032
- params_and_returns,
1033
- params_and_returns_capacity,
1034
- )
1035
- }
1036
-
1037
- pub(crate) unsafe fn call_unchecked_raw<T>(
1038
- store: &mut StoreContextMut<'_, T>,
1039
- func_ref: NonNull<VMFuncRef>,
1040
- params_and_returns: *mut ValRaw,
1041
- params_and_returns_capacity: usize,
1042
- ) -> Result<()> {
1043
- invoke_wasm_and_catch_traps(store, |caller| {
1044
- let func_ref = func_ref.as_ref();
1045
- (func_ref.array_call)(
1046
- func_ref.vmctx,
1047
- caller.cast::<VMOpaqueContext>(),
1048
- params_and_returns,
1049
- params_and_returns_capacity,
1050
- )
1051
- })
1052
- }
1053
-
1054
- /// Converts the raw representation of a `funcref` into an `Option<Func>`
1055
- ///
1056
- /// This is intended to be used in conjunction with [`Func::new_unchecked`],
1057
- /// [`Func::call_unchecked`], and [`ValRaw`] with its `funcref` field.
1058
- ///
1059
- /// # Unsafety
1060
- ///
1061
- /// This function is not safe because `raw` is not validated at all. The
1062
- /// caller must guarantee that `raw` is owned by the `store` provided and is
1063
- /// valid within the `store`.
1064
- pub unsafe fn from_raw(mut store: impl AsContextMut, raw: *mut c_void) -> Option<Func> {
1065
- Self::_from_raw(store.as_context_mut().0, raw)
1066
- }
1067
-
1068
- pub(crate) unsafe fn _from_raw(store: &mut StoreOpaque, raw: *mut c_void) -> Option<Func> {
1069
- Func::from_vm_func_ref(store, raw.cast())
1070
- }
1071
-
1072
- /// Extracts the raw value of this `Func`, which is owned by `store`.
1073
- ///
1074
- /// This function returns a value that's suitable for writing into the
1075
- /// `funcref` field of the [`ValRaw`] structure.
1076
- ///
1077
- /// # Unsafety
1078
- ///
1079
- /// The returned value is only valid for as long as the store is alive and
1080
- /// this function is properly rooted within it. Additionally this function
1081
- /// should not be liberally used since it's a very low-level knob.
1082
- pub unsafe fn to_raw(&self, mut store: impl AsContextMut) -> *mut c_void {
1083
- self.vm_func_ref(store.as_context_mut().0).as_ptr().cast()
1084
- }
1085
-
1086
- /// Invokes this function with the `params` given, returning the results
1087
- /// asynchronously.
1088
- ///
1089
- /// This function is the same as [`Func::call`] except that it is
1090
- /// asynchronous. This is only compatible with stores associated with an
1091
- /// [asynchronous config](crate::Config::async_support).
1092
- ///
1093
- /// It's important to note that the execution of WebAssembly will happen
1094
- /// synchronously in the `poll` method of the future returned from this
1095
- /// function. Wasmtime does not manage its own thread pool or similar to
1096
- /// execute WebAssembly in. Future `poll` methods are generally expected to
1097
- /// resolve quickly, so it's recommended that you run or poll this future
1098
- /// in a "blocking context".
1099
- ///
1100
- /// For more information see the documentation on [asynchronous
1101
- /// configs](crate::Config::async_support).
1102
- ///
1103
- /// # Errors
1104
- ///
1105
- /// For more information on errors see the [`Func::call`] documentation.
1106
- ///
1107
- /// # Panics
1108
- ///
1109
- /// Panics if this is called on a function in a synchronous store. This
1110
- /// only works with functions defined within an asynchronous store. Also
1111
- /// panics if `store` does not own this function.
1112
- #[cfg(feature = "async")]
1113
- pub async fn call_async<T>(
1114
- &self,
1115
- mut store: impl AsContextMut<Data = T>,
1116
- params: &[Val],
1117
- results: &mut [Val],
1118
- ) -> Result<()>
1119
- where
1120
- T: Send,
1121
- {
1122
- let mut store = store.as_context_mut();
1123
- assert!(
1124
- store.0.async_support(),
1125
- "cannot use `call_async` without enabling async support in the config",
1126
- );
1127
- let need_gc = self.call_impl_check_args(&mut store, params, results)?;
1128
- if need_gc {
1129
- store.0.gc_async().await;
1130
- }
1131
- let result = store
1132
- .on_fiber(|store| unsafe { self.call_impl_do_call(store, params, results) })
1133
- .await??;
1134
- Ok(result)
1135
- }
1136
-
1137
- /// Perform dynamic checks that the arguments given to us match
1138
- /// the signature of this function and are appropriate to pass to this
1139
- /// function.
1140
- ///
1141
- /// This involves checking to make sure we have the right number and types
1142
- /// of arguments as well as making sure everything is from the same `Store`.
1143
- ///
1144
- /// This must be called just before `call_impl_do_call`.
1145
- ///
1146
- /// Returns whether we need to GC before calling `call_impl_do_call`.
1147
- fn call_impl_check_args<T>(
1148
- &self,
1149
- store: &mut StoreContextMut<'_, T>,
1150
- params: &[Val],
1151
- results: &mut [Val],
1152
- ) -> Result<bool> {
1153
- let (ty, opaque) = self.ty_ref(store.0);
1154
- if ty.params().len() != params.len() {
1155
- bail!(
1156
- "expected {} arguments, got {}",
1157
- ty.params().len(),
1158
- params.len()
1159
- );
1160
- }
1161
- if ty.results().len() != results.len() {
1162
- bail!(
1163
- "expected {} results, got {}",
1164
- ty.results().len(),
1165
- results.len()
1166
- );
1167
- }
1168
- for (ty, arg) in ty.params().zip(params) {
1169
- arg.ensure_matches_ty(opaque, &ty)
1170
- .context("argument type mismatch")?;
1171
- if !arg.comes_from_same_store(opaque) {
1172
- bail!("cross-`Store` values are not currently supported");
1173
- }
1174
- }
1175
-
1176
- #[cfg(feature = "gc")]
1177
- {
1178
- // Check whether we need to GC before calling into Wasm.
1179
- //
1180
- // For example, with the DRC collector, whenever we pass GC refs
1181
- // from host code to Wasm code, they go into the
1182
- // `VMGcRefActivationsTable`. But the table might be at capacity
1183
- // already. If it is at capacity (unlikely) then we need to do a GC
1184
- // to free up space.
1185
- let num_gc_refs = ty.as_wasm_func_type().non_i31_gc_ref_params_count();
1186
- if let Some(num_gc_refs) = NonZeroUsize::new(num_gc_refs) {
1187
- return Ok(opaque
1188
- .gc_store()?
1189
- .gc_heap
1190
- .need_gc_before_entering_wasm(num_gc_refs));
1191
- }
1192
- }
1193
-
1194
- Ok(false)
1195
- }
1196
-
1197
- /// Do the actual call into Wasm.
1198
- ///
1199
- /// # Safety
1200
- ///
1201
- /// You must have type checked the arguments by calling
1202
- /// `call_impl_check_args` immediately before calling this function. It is
1203
- /// only safe to call this function if that one did not return an error.
1204
- unsafe fn call_impl_do_call<T>(
1205
- &self,
1206
- store: &mut StoreContextMut<'_, T>,
1207
- params: &[Val],
1208
- results: &mut [Val],
1209
- ) -> Result<()> {
1210
- // Store the argument values into `values_vec`.
1211
- let (ty, _) = self.ty_ref(store.0);
1212
- let values_vec_size = params.len().max(ty.results().len());
1213
- let mut values_vec = store.0.take_wasm_val_raw_storage();
1214
- debug_assert!(values_vec.is_empty());
1215
- values_vec.resize_with(values_vec_size, || ValRaw::v128(0));
1216
- for (arg, slot) in params.iter().cloned().zip(&mut values_vec) {
1217
- unsafe {
1218
- *slot = arg.to_raw(&mut *store)?;
1219
- }
1220
- }
1221
-
1222
- unsafe {
1223
- self.call_unchecked(&mut *store, values_vec.as_mut_ptr(), values_vec_size)?;
1224
- }
1225
-
1226
- for ((i, slot), val) in results.iter_mut().enumerate().zip(&values_vec) {
1227
- let ty = self.ty_ref(store.0).0.results().nth(i).unwrap();
1228
- *slot = unsafe { Val::from_raw(&mut *store, *val, ty) };
1229
- }
1230
- values_vec.truncate(0);
1231
- store.0.save_wasm_val_raw_storage(values_vec);
1232
- Ok(())
1233
- }
1234
-
1235
- #[inline]
1236
- pub(crate) fn vm_func_ref(&self, store: &mut StoreOpaque) -> NonNull<VMFuncRef> {
1237
- let func_data = &mut store.store_data_mut()[self.0];
1238
- let func_ref = func_data.export().func_ref;
1239
- if unsafe { func_ref.as_ref().wasm_call.is_some() } {
1240
- return func_ref;
1241
- }
1242
-
1243
- if let Some(in_store) = func_data.in_store_func_ref {
1244
- in_store.as_non_null()
1245
- } else {
1246
- unsafe {
1247
- // Move this uncommon/slow path out of line.
1248
- self.copy_func_ref_into_store_and_fill(store, func_ref)
1249
- }
1250
- }
1251
- }
1252
-
1253
- unsafe fn copy_func_ref_into_store_and_fill(
1254
- &self,
1255
- store: &mut StoreOpaque,
1256
- func_ref: NonNull<VMFuncRef>,
1257
- ) -> NonNull<VMFuncRef> {
1258
- let func_ref = store.func_refs().push(func_ref.as_ref().clone());
1259
- store.store_data_mut()[self.0].in_store_func_ref = Some(SendSyncPtr::new(func_ref));
1260
- store.fill_func_refs();
1261
- func_ref
1262
- }
1263
-
1264
- pub(crate) unsafe fn from_wasmtime_function(
1265
- export: ExportFunction,
1266
- store: &mut StoreOpaque,
1267
- ) -> Self {
1268
- Func::from_func_kind(FuncKind::StoreOwned { export }, store)
1269
- }
1270
-
1271
- fn from_func_kind(kind: FuncKind, store: &mut StoreOpaque) -> Self {
1272
- Func(store.store_data_mut().insert(FuncData {
1273
- kind,
1274
- in_store_func_ref: None,
1275
- ty: None,
1276
- }))
1277
- }
1278
-
1279
- pub(crate) fn vmimport(&self, store: &mut StoreOpaque, module: &Module) -> VMFunctionImport {
1280
- unsafe {
1281
- let f = {
1282
- let func_data = &mut store.store_data_mut()[self.0];
1283
- // If we already patched this `funcref.wasm_call` and saved a
1284
- // copy in the store, use the patched version. Otherwise, use
1285
- // the potentially un-patched version.
1286
- if let Some(func_ref) = func_data.in_store_func_ref {
1287
- func_ref.as_non_null()
1288
- } else {
1289
- func_data.export().func_ref
1290
- }
1291
- };
1292
- VMFunctionImport {
1293
- wasm_call: if let Some(wasm_call) = f.as_ref().wasm_call {
1294
- wasm_call
1295
- } else {
1296
- // Assert that this is a native-call function, since those
1297
- // are the only ones that could be missing a `wasm_call`
1298
- // trampoline.
1299
- let _ = VMNativeCallHostFuncContext::from_opaque(f.as_ref().vmctx);
1300
-
1301
- let sig = self.type_index(store.store_data());
1302
- module.runtime_info().wasm_to_native_trampoline(sig).expect(
1303
- "must have a wasm-to-native trampoline for this signature if the Wasm \
1304
- module is importing a function of this signature",
1305
- )
1306
- },
1307
- native_call: f.as_ref().native_call,
1308
- array_call: f.as_ref().array_call,
1309
- vmctx: f.as_ref().vmctx,
1310
- }
1311
- }
1312
- }
1313
-
1314
- pub(crate) fn comes_from_same_store(&self, store: &StoreOpaque) -> bool {
1315
- store.store_data().contains(self.0)
1316
- }
1317
-
1318
- fn invoke_host_func_for_wasm<T>(
1319
- mut caller: Caller<'_, T>,
1320
- ty: &FuncType,
1321
- values_vec: &mut [ValRaw],
1322
- func: &dyn Fn(Caller<'_, T>, &[Val], &mut [Val]) -> Result<()>,
1323
- ) -> Result<()> {
1324
- // Translate the raw JIT arguments in `values_vec` into a `Val` which
1325
- // we'll be passing as a slice. The storage for our slice-of-`Val` we'll
1326
- // be taking from the `Store`. We preserve our slice back into the
1327
- // `Store` after the hostcall, ideally amortizing the cost of allocating
1328
- // the storage across wasm->host calls.
1329
- //
1330
- // Note that we have a dynamic guarantee that `values_vec` is the
1331
- // appropriate length to both read all arguments from as well as store
1332
- // all results into.
1333
- let mut val_vec = caller.store.0.take_hostcall_val_storage();
1334
- debug_assert!(val_vec.is_empty());
1335
- let nparams = ty.params().len();
1336
- val_vec.reserve(nparams + ty.results().len());
1337
- for (i, ty) in ty.params().enumerate() {
1338
- val_vec.push(unsafe { Val::from_raw(&mut caller.store, values_vec[i], ty) })
1339
- }
1340
-
1341
- val_vec.extend((0..ty.results().len()).map(|_| Val::null_func_ref()));
1342
- let (params, results) = val_vec.split_at_mut(nparams);
1343
- func(caller.sub_caller(), params, results)?;
1344
-
1345
- // Unlike our arguments we need to dynamically check that the return
1346
- // values produced are correct. There could be a bug in `func` that
1347
- // produces the wrong number, wrong types, or wrong stores of
1348
- // values, and we need to catch that here.
1349
- for (i, (ret, ty)) in results.iter().zip(ty.results()).enumerate() {
1350
- ret.ensure_matches_ty(caller.store.0, &ty)
1351
- .context("function attempted to return an incompatible value")?;
1352
- unsafe {
1353
- values_vec[i] = ret.to_raw(&mut caller.store)?;
1354
- }
1355
- }
1356
-
1357
- // Restore our `val_vec` back into the store so it's usable for the next
1358
- // hostcall to reuse our own storage.
1359
- val_vec.truncate(0);
1360
- caller.store.0.save_hostcall_val_storage(val_vec);
1361
- Ok(())
1362
- }
1363
-
1364
- /// Attempts to extract a typed object from this `Func` through which the
1365
- /// function can be called.
1366
- ///
1367
- /// This function serves as an alternative to [`Func::call`] and
1368
- /// [`Func::call_async`]. This method performs a static type check (using
1369
- /// the `Params` and `Results` type parameters on the underlying wasm
1370
- /// function. If the type check passes then a `TypedFunc` object is returned,
1371
- /// otherwise an error is returned describing the typecheck failure.
1372
- ///
1373
- /// The purpose of this relative to [`Func::call`] is that it's much more
1374
- /// efficient when used to invoke WebAssembly functions. With the types
1375
- /// statically known far less setup/teardown is required when invoking
1376
- /// WebAssembly. If speed is desired then this function is recommended to be
1377
- /// used instead of [`Func::call`] (which is more general, hence its
1378
- /// slowdown).
1379
- ///
1380
- /// The `Params` type parameter is used to describe the parameters of the
1381
- /// WebAssembly function. This can either be a single type (like `i32`), or
1382
- /// a tuple of types representing the list of parameters (like `(i32, f32,
1383
- /// f64)`). Additionally you can use `()` to represent that the function has
1384
- /// no parameters.
1385
- ///
1386
- /// The `Results` type parameter is used to describe the results of the
1387
- /// function. This behaves the same way as `Params`, but just for the
1388
- /// results of the function.
1389
- ///
1390
- /// # Translating Between WebAssembly and Rust Types
1391
- ///
1392
- /// Translation between Rust types and WebAssembly types looks like:
1393
- ///
1394
- /// | WebAssembly | Rust |
1395
- /// |---------------------------------------|---------------------------------------|
1396
- /// | `i32` | `i32` or `u32` |
1397
- /// | `i64` | `i64` or `u64` |
1398
- /// | `f32` | `f32` |
1399
- /// | `f64` | `f64` |
1400
- /// | `externref` aka `(ref null extern)` | `Option<ExternRef>` |
1401
- /// | `(ref extern)` | `ExternRef` |
1402
- /// | `anyref` aka `(ref null any)` | `Option<AnyRef>` |
1403
- /// | `(ref any)` | `AnyRef` |
1404
- /// | `i31ref` aka `(ref null i31)` | `Option<I31>` |
1405
- /// | `(ref i31)` | `I31` |
1406
- /// | `funcref` aka `(ref null func)` | `Option<Func>` |
1407
- /// | `(ref func)` | `Func` |
1408
- /// | `(ref null <func type index>)` | `Option<Func>` |
1409
- /// | `(ref <func type index>)` | `Func` |
1410
- /// | `nullfuncref` aka `(ref null nofunc)` | `Option<NoFunc>` |
1411
- /// | `(ref nofunc)` | `NoFunc` |
1412
- /// | `v128` | `V128` on `x86-64` and `aarch64` only |
1413
- ///
1414
- /// (Note that this mapping is the same as that of [`Func::wrap`]).
1415
- ///
1416
- /// Note that once the [`TypedFunc`] return value is acquired you'll use either
1417
- /// [`TypedFunc::call`] or [`TypedFunc::call_async`] as necessary to actually invoke
1418
- /// the function. This method does not invoke any WebAssembly code, it
1419
- /// simply performs a typecheck before returning the [`TypedFunc`] value.
1420
- ///
1421
- /// This method also has a convenience wrapper as
1422
- /// [`Instance::get_typed_func`](crate::Instance::get_typed_func) to
1423
- /// directly get a typed function value from an
1424
- /// [`Instance`](crate::Instance).
1425
- ///
1426
- /// ## Subtyping
1427
- ///
1428
- /// For result types, you can always use a supertype of the WebAssembly
1429
- /// function's actual declared result type. For example, if the WebAssembly
1430
- /// function was declared with type `(func (result nullfuncref))` you could
1431
- /// successfully call `f.typed::<(), Option<Func>>()` because `Option<Func>`
1432
- /// corresponds to `funcref`, which is a supertype of `nullfuncref`.
1433
- ///
1434
- /// For parameter types, you can always use a subtype of the WebAssembly
1435
- /// function's actual declared parameter type. For example, if the
1436
- /// WebAssembly function was declared with type `(func (param (ref null
1437
- /// func)))` you could successfully call `f.typed::<Func, ()>()` because
1438
- /// `Func` corresponds to `(ref func)`, which is a subtype of `(ref null
1439
- /// func)`.
1440
- ///
1441
- /// Additionally, for functions which take a reference to a concrete type as
1442
- /// a parameter, you can also use the concrete type's supertype. Consider a
1443
- /// WebAssembly function that takes a reference to a function with a
1444
- /// concrete type: `(ref null <func type index>)`. In this scenario, there
1445
- /// is no static `wasmtime::Foo` Rust type that corresponds to that
1446
- /// particular Wasm-defined concrete reference type because Wasm modules are
1447
- /// loaded dynamically at runtime. You *could* do `f.typed::<Option<NoFunc>,
1448
- /// ()>()`, and while that is correctly typed and valid, it is often overly
1449
- /// restrictive. The only value you could call the resulting typed function
1450
- /// with is the null function reference, but we'd like to call it with
1451
- /// non-null function references that happen to be of the correct
1452
- /// type. Therefore, `f.typed<Option<Func>, ()>()` is also allowed in this
1453
- /// case, even though `Option<Func>` represents `(ref null func)` which is
1454
- /// the supertype, not subtype, of `(ref null <func type index>)`. This does
1455
- /// imply some minimal dynamic type checks in this case, but it is supported
1456
- /// for better ergonomics, to enable passing non-null references into the
1457
- /// function.
1458
- ///
1459
- /// # Errors
1460
- ///
1461
- /// This function will return an error if `Params` or `Results` does not
1462
- /// match the native type of this WebAssembly function.
1463
- ///
1464
- /// # Panics
1465
- ///
1466
- /// This method will panic if `store` does not own this function.
1467
- ///
1468
- /// # Examples
1469
- ///
1470
- /// An end-to-end example of calling a function which takes no parameters
1471
- /// and has no results:
1472
- ///
1473
- /// ```
1474
- /// # use wasmtime::*;
1475
- /// # fn main() -> anyhow::Result<()> {
1476
- /// let engine = Engine::default();
1477
- /// let mut store = Store::new(&engine, ());
1478
- /// let module = Module::new(&engine, r#"(module (func (export "foo")))"#)?;
1479
- /// let instance = Instance::new(&mut store, &module, &[])?;
1480
- /// let foo = instance.get_func(&mut store, "foo").expect("export wasn't a function");
1481
- ///
1482
- /// // Note that this call can fail due to the typecheck not passing, but
1483
- /// // in our case we statically know the module so we know this should
1484
- /// // pass.
1485
- /// let typed = foo.typed::<(), ()>(&store)?;
1486
- ///
1487
- /// // Note that this can fail if the wasm traps at runtime.
1488
- /// typed.call(&mut store, ())?;
1489
- /// # Ok(())
1490
- /// # }
1491
- /// ```
1492
- ///
1493
- /// You can also pass in multiple parameters and get a result back
1494
- ///
1495
- /// ```
1496
- /// # use wasmtime::*;
1497
- /// # fn foo(add: &Func, mut store: Store<()>) -> anyhow::Result<()> {
1498
- /// let typed = add.typed::<(i32, i64), f32>(&store)?;
1499
- /// assert_eq!(typed.call(&mut store, (1, 2))?, 3.0);
1500
- /// # Ok(())
1501
- /// # }
1502
- /// ```
1503
- ///
1504
- /// and similarly if a function has multiple results you can bind that too
1505
- ///
1506
- /// ```
1507
- /// # use wasmtime::*;
1508
- /// # fn foo(add_with_overflow: &Func, mut store: Store<()>) -> anyhow::Result<()> {
1509
- /// let typed = add_with_overflow.typed::<(u32, u32), (u32, i32)>(&store)?;
1510
- /// let (result, overflow) = typed.call(&mut store, (u32::max_value(), 2))?;
1511
- /// assert_eq!(result, 1);
1512
- /// assert_eq!(overflow, 1);
1513
- /// # Ok(())
1514
- /// # }
1515
- /// ```
1516
- pub fn typed<Params, Results>(
1517
- &self,
1518
- store: impl AsContext,
1519
- ) -> Result<TypedFunc<Params, Results>>
1520
- where
1521
- Params: WasmParams,
1522
- Results: WasmResults,
1523
- {
1524
- // Type-check that the params/results are all valid
1525
- let store = store.as_context().0;
1526
- let ty = self.load_ty(store);
1527
- Params::typecheck(store.engine(), ty.params(), TypeCheckPosition::Param)
1528
- .context("type mismatch with parameters")?;
1529
- Results::typecheck(store.engine(), ty.results(), TypeCheckPosition::Result)
1530
- .context("type mismatch with results")?;
1531
-
1532
- // and then we can construct the typed version of this function
1533
- // (unsafely), which should be safe since we just did the type check above.
1534
- unsafe { Ok(TypedFunc::_new_unchecked(store, *self)) }
1535
- }
1536
-
1537
- /// Get a stable hash key for this function.
1538
- ///
1539
- /// Even if the same underlying function is added to the `StoreData`
1540
- /// multiple times and becomes multiple `wasmtime::Func`s, this hash key
1541
- /// will be consistent across all of these functions.
1542
- #[allow(dead_code)] // Not used yet, but added for consistency.
1543
- pub(crate) fn hash_key(&self, store: &mut StoreOpaque) -> impl core::hash::Hash + Eq {
1544
- self.vm_func_ref(store).as_ptr() as usize
1545
- }
1546
- }
1547
-
1548
- /// Prepares for entrance into WebAssembly.
1549
- ///
1550
- /// This function will set up context such that `closure` is allowed to call a
1551
- /// raw trampoline or a raw WebAssembly function. This *must* be called to do
1552
- /// things like catch traps and set up GC properly.
1553
- ///
1554
- /// The `closure` provided receives a default "caller" `VMContext` parameter it
1555
- /// can pass to the called wasm function, if desired.
1556
- pub(crate) fn invoke_wasm_and_catch_traps<T>(
1557
- store: &mut StoreContextMut<'_, T>,
1558
- closure: impl FnMut(*mut VMContext),
1559
- ) -> Result<()> {
1560
- unsafe {
1561
- let exit = enter_wasm(store);
1562
-
1563
- if let Err(trap) = store.0.call_hook(CallHook::CallingWasm) {
1564
- exit_wasm(store, exit);
1565
- return Err(trap);
1566
- }
1567
- let result = crate::runtime::vm::catch_traps(
1568
- store.0.signal_handler(),
1569
- store.0.engine().config().wasm_backtrace,
1570
- store.0.engine().config().coredump_on_trap,
1571
- store.0.default_caller(),
1572
- closure,
1573
- );
1574
- exit_wasm(store, exit);
1575
- store.0.call_hook(CallHook::ReturningFromWasm)?;
1576
- result.map_err(|t| crate::trap::from_runtime_box(store.0, t))
1577
- }
1578
- }
1579
-
1580
- /// This function is called to register state within `Store` whenever
1581
- /// WebAssembly is entered within the `Store`.
1582
- ///
1583
- /// This function sets up various limits such as:
1584
- ///
1585
- /// * The stack limit. This is what ensures that we limit the stack space
1586
- /// allocated by WebAssembly code and it's relative to the initial stack
1587
- /// pointer that called into wasm.
1588
- ///
1589
- /// This function may fail if the the stack limit can't be set because an
1590
- /// interrupt already happened.
1591
- fn enter_wasm<T>(store: &mut StoreContextMut<'_, T>) -> Option<usize> {
1592
- // If this is a recursive call, e.g. our stack limit is already set, then
1593
- // we may be able to skip this function.
1594
- //
1595
- // For synchronous stores there's nothing else to do because all wasm calls
1596
- // happen synchronously and on the same stack. This means that the previous
1597
- // stack limit will suffice for the next recursive call.
1598
- //
1599
- // For asynchronous stores then each call happens on a separate native
1600
- // stack. This means that the previous stack limit is no longer relevant
1601
- // because we're on a separate stack.
1602
- if unsafe { *store.0.runtime_limits().stack_limit.get() } != usize::MAX
1603
- && !store.0.async_support()
1604
- {
1605
- return None;
1606
- }
1607
-
1608
- // Ignore this stack pointer business on miri since we can't execute wasm
1609
- // anyway and the concept of a stack pointer on miri is a bit nebulous
1610
- // regardless.
1611
- if cfg!(miri) {
1612
- return None;
1613
- }
1614
-
1615
- let stack_pointer = crate::runtime::vm::get_stack_pointer();
1616
-
1617
- // Determine the stack pointer where, after which, any wasm code will
1618
- // immediately trap. This is checked on the entry to all wasm functions.
1619
- //
1620
- // Note that this isn't 100% precise. We are requested to give wasm
1621
- // `max_wasm_stack` bytes, but what we're actually doing is giving wasm
1622
- // probably a little less than `max_wasm_stack` because we're
1623
- // calculating the limit relative to this function's approximate stack
1624
- // pointer. Wasm will be executed on a frame beneath this one (or next
1625
- // to it). In any case it's expected to be at most a few hundred bytes
1626
- // of slop one way or another. When wasm is typically given a MB or so
1627
- // (a million bytes) the slop shouldn't matter too much.
1628
- //
1629
- // After we've got the stack limit then we store it into the `stack_limit`
1630
- // variable.
1631
- let wasm_stack_limit = stack_pointer - store.engine().config().max_wasm_stack;
1632
- let prev_stack = unsafe {
1633
- mem::replace(
1634
- &mut *store.0.runtime_limits().stack_limit.get(),
1635
- wasm_stack_limit,
1636
- )
1637
- };
1638
-
1639
- Some(prev_stack)
1640
- }
1641
-
1642
- fn exit_wasm<T>(store: &mut StoreContextMut<'_, T>, prev_stack: Option<usize>) {
1643
- // If we don't have a previous stack pointer to restore, then there's no
1644
- // cleanup we need to perform here.
1645
- let prev_stack = match prev_stack {
1646
- Some(stack) => stack,
1647
- None => return,
1648
- };
1649
-
1650
- unsafe {
1651
- *store.0.runtime_limits().stack_limit.get() = prev_stack;
1652
- }
1653
- }
1654
-
1655
- /// A trait implemented for types which can be returned from closures passed to
1656
- /// [`Func::wrap`] and friends.
1657
- ///
1658
- /// This trait should not be implemented by user types. This trait may change at
1659
- /// any time internally. The types which implement this trait, however, are
1660
- /// stable over time.
1661
- ///
1662
- /// For more information see [`Func::wrap`]
1663
- pub unsafe trait WasmRet {
1664
- // Same as `WasmTy::Abi`.
1665
- #[doc(hidden)]
1666
- type Abi: 'static + Copy;
1667
- #[doc(hidden)]
1668
- type Retptr: Copy;
1669
-
1670
- // Same as `WasmTy::compatible_with_store`.
1671
- #[doc(hidden)]
1672
- fn compatible_with_store(&self, store: &StoreOpaque) -> bool;
1673
-
1674
- // Similar to `WasmTy::into_abi_for_arg` but used when host code is
1675
- // returning a value into Wasm, rather than host code passing an argument to
1676
- // a Wasm call. Unlike `into_abi_for_arg`, implementors of this method can
1677
- // raise traps, which means that callers must ensure that
1678
- // `invoke_wasm_and_catch_traps` is on the stack, and therefore this method
1679
- // is unsafe.
1680
- #[doc(hidden)]
1681
- unsafe fn into_abi_for_ret(
1682
- self,
1683
- store: &mut AutoAssertNoGc<'_>,
1684
- ptr: Self::Retptr,
1685
- ) -> Result<Self::Abi>;
1686
-
1687
- #[doc(hidden)]
1688
- fn func_type(engine: &Engine, params: impl Iterator<Item = ValType>) -> FuncType;
1689
-
1690
- #[doc(hidden)]
1691
- unsafe fn wrap_trampoline(ptr: *mut ValRaw, f: impl FnOnce(Self::Retptr) -> Self::Abi);
1692
-
1693
- // Utilities used to convert an instance of this type to a `Result`
1694
- // explicitly, used when wrapping async functions which always bottom-out
1695
- // in a function that returns a trap because futures can be cancelled.
1696
- #[doc(hidden)]
1697
- type Fallible: WasmRet<Abi = Self::Abi, Retptr = Self::Retptr>;
1698
- #[doc(hidden)]
1699
- fn into_fallible(self) -> Self::Fallible;
1700
- #[doc(hidden)]
1701
- fn fallible_from_error(error: Error) -> Self::Fallible;
1702
- }
1703
-
1704
- unsafe impl<T> WasmRet for T
1705
- where
1706
- T: WasmTy,
1707
- {
1708
- type Abi = <T as WasmTy>::Abi;
1709
- type Retptr = ();
1710
- type Fallible = Result<T>;
1711
-
1712
- fn compatible_with_store(&self, store: &StoreOpaque) -> bool {
1713
- <Self as WasmTy>::compatible_with_store(self, store)
1714
- }
1715
-
1716
- unsafe fn into_abi_for_ret(
1717
- self,
1718
- store: &mut AutoAssertNoGc<'_>,
1719
- _retptr: (),
1720
- ) -> Result<Self::Abi> {
1721
- <Self as WasmTy>::into_abi(self, store)
1722
- }
1723
-
1724
- fn func_type(engine: &Engine, params: impl Iterator<Item = ValType>) -> FuncType {
1725
- FuncType::new(engine, params, Some(<Self as WasmTy>::valtype()))
1726
- }
1727
-
1728
- unsafe fn wrap_trampoline(ptr: *mut ValRaw, f: impl FnOnce(Self::Retptr) -> Self::Abi) {
1729
- T::abi_into_raw(f(()), ptr);
1730
- }
1731
-
1732
- fn into_fallible(self) -> Result<T> {
1733
- Ok(self)
1734
- }
1735
-
1736
- fn fallible_from_error(error: Error) -> Result<T> {
1737
- Err(error)
1738
- }
1739
- }
1740
-
1741
- unsafe impl<T> WasmRet for Result<T>
1742
- where
1743
- T: WasmRet,
1744
- {
1745
- type Abi = <T as WasmRet>::Abi;
1746
- type Retptr = <T as WasmRet>::Retptr;
1747
- type Fallible = Self;
1748
-
1749
- fn compatible_with_store(&self, store: &StoreOpaque) -> bool {
1750
- match self {
1751
- Ok(x) => <T as WasmRet>::compatible_with_store(x, store),
1752
- Err(_) => true,
1753
- }
1754
- }
1755
-
1756
- unsafe fn into_abi_for_ret(
1757
- self,
1758
- store: &mut AutoAssertNoGc<'_>,
1759
- retptr: Self::Retptr,
1760
- ) -> Result<Self::Abi> {
1761
- self.and_then(|val| val.into_abi_for_ret(store, retptr))
1762
- }
1763
-
1764
- fn func_type(engine: &Engine, params: impl Iterator<Item = ValType>) -> FuncType {
1765
- T::func_type(engine, params)
1766
- }
1767
-
1768
- unsafe fn wrap_trampoline(ptr: *mut ValRaw, f: impl FnOnce(Self::Retptr) -> Self::Abi) {
1769
- T::wrap_trampoline(ptr, f)
1770
- }
1771
-
1772
- fn into_fallible(self) -> Result<T> {
1773
- self
1774
- }
1775
-
1776
- fn fallible_from_error(error: Error) -> Result<T> {
1777
- Err(error)
1778
- }
1779
- }
1780
-
1781
- macro_rules! impl_wasm_host_results {
1782
- ($n:tt $($t:ident)*) => (
1783
- #[allow(non_snake_case)]
1784
- unsafe impl<$($t),*> WasmRet for ($($t,)*)
1785
- where
1786
- $($t: WasmTy,)*
1787
- ($($t::Abi,)*): HostAbi,
1788
- {
1789
- type Abi = <($($t::Abi,)*) as HostAbi>::Abi;
1790
- type Retptr = <($($t::Abi,)*) as HostAbi>::Retptr;
1791
- type Fallible = Result<Self>;
1792
-
1793
- #[inline]
1794
- fn compatible_with_store(&self, _store: &StoreOpaque) -> bool {
1795
- let ($($t,)*) = self;
1796
- $( $t.compatible_with_store(_store) && )* true
1797
- }
1798
-
1799
- #[inline]
1800
- unsafe fn into_abi_for_ret(
1801
- self,
1802
- _store: &mut AutoAssertNoGc<'_>,
1803
- ptr: Self::Retptr,
1804
- ) -> Result<Self::Abi> {
1805
- let ($($t,)*) = self;
1806
- let abi = ($($t.into_abi(_store)?,)*);
1807
- Ok(<($($t::Abi,)*) as HostAbi>::into_abi(abi, ptr))
1808
- }
1809
-
1810
- fn func_type(engine: &Engine, params: impl Iterator<Item = ValType>) -> FuncType {
1811
- FuncType::new(
1812
- engine,
1813
- params,
1814
- IntoIterator::into_iter([$($t::valtype(),)*]),
1815
- )
1816
- }
1817
-
1818
- #[allow(unused_assignments)]
1819
- unsafe fn wrap_trampoline(mut _ptr: *mut ValRaw, f: impl FnOnce(Self::Retptr) -> Self::Abi) {
1820
- let ($($t,)*) = <($($t::Abi,)*) as HostAbi>::call(f);
1821
- $(
1822
- $t::abi_into_raw($t, _ptr);
1823
- _ptr = _ptr.add(1);
1824
- )*
1825
- }
1826
-
1827
- #[inline]
1828
- fn into_fallible(self) -> Result<Self> {
1829
- Ok(self)
1830
- }
1831
-
1832
- #[inline]
1833
- fn fallible_from_error(error: Error) -> Result<Self> {
1834
- Err(error)
1835
- }
1836
- }
1837
- )
1838
- }
1839
-
1840
- for_each_function_signature!(impl_wasm_host_results);
1841
-
1842
- // Internal trait representing how to communicate tuples of return values across
1843
- // an ABI boundary. This internally corresponds to the "wasmtime" ABI inside of
1844
- // cranelift itself. Notably the first element of each tuple is returned via the
1845
- // typical system ABI (e.g. systemv or fastcall depending on platform) and all
1846
- // other values are returned packed via the stack.
1847
- //
1848
- // This trait helps to encapsulate all the details of that.
1849
- #[doc(hidden)]
1850
- pub trait HostAbi {
1851
- // A value returned from native functions which return `Self`
1852
- type Abi: Copy;
1853
- // A return pointer, added to the end of the argument list, for native
1854
- // functions that return `Self`. Note that a 0-sized type here should get
1855
- // elided at the ABI level.
1856
- type Retptr: Copy;
1857
-
1858
- // Converts a value of `self` into its components. Stores necessary values
1859
- // into `ptr` and then returns whatever needs to be returned from the
1860
- // function.
1861
- unsafe fn into_abi(self, ptr: Self::Retptr) -> Self::Abi;
1862
-
1863
- // Calls `f` with a suitably sized return area and requires `f` to return
1864
- // the raw abi value of the first element of our tuple. This will then
1865
- // unpack the `Retptr` and assemble it with `Self::Abi` to return an
1866
- // instance of the whole tuple.
1867
- unsafe fn call(f: impl FnOnce(Self::Retptr) -> Self::Abi) -> Self;
1868
- }
1869
-
1870
- macro_rules! impl_host_abi {
1871
- // Base case, everything is `()`
1872
- (0) => {
1873
- impl HostAbi for () {
1874
- type Abi = ();
1875
- type Retptr = ();
1876
-
1877
- #[inline]
1878
- unsafe fn into_abi(self, _ptr: Self::Retptr) -> Self::Abi {}
1879
-
1880
- #[inline]
1881
- unsafe fn call(f: impl FnOnce(Self::Retptr) -> Self::Abi) -> Self {
1882
- f(())
1883
- }
1884
- }
1885
- };
1886
-
1887
- // In the 1-case the retptr is not present, so it's a 0-sized value.
1888
- (1 $a:ident) => {
1889
- impl<$a: Copy> HostAbi for ($a,) {
1890
- type Abi = $a;
1891
- type Retptr = ();
1892
-
1893
- unsafe fn into_abi(self, _ptr: Self::Retptr) -> Self::Abi {
1894
- self.0
1895
- }
1896
-
1897
- unsafe fn call(f: impl FnOnce(Self::Retptr) -> Self::Abi) -> Self {
1898
- (f(()),)
1899
- }
1900
- }
1901
- };
1902
-
1903
- // This is where the more interesting case happens. The first element of the
1904
- // tuple is returned via `Abi` and all other elements are returned via
1905
- // `Retptr`. We create a `TupleRetNN` structure to represent all of the
1906
- // return values here.
1907
- //
1908
- // Also note that this isn't implemented for the old backend right now due
1909
- // to the original author not really being sure how to implement this in the
1910
- // old backend.
1911
- ($n:tt $t:ident $($u:ident)*) => {paste::paste!{
1912
- #[doc(hidden)]
1913
- #[allow(non_snake_case)]
1914
- #[repr(C)]
1915
- pub struct [<TupleRet $n>]<$($u,)*> {
1916
- $($u: $u,)*
1917
- }
1918
-
1919
- #[allow(non_snake_case, unused_assignments)]
1920
- impl<$t: Copy, $($u: Copy,)*> HostAbi for ($t, $($u,)*) {
1921
- type Abi = $t;
1922
- type Retptr = *mut [<TupleRet $n>]<$($u,)*>;
1923
-
1924
- unsafe fn into_abi(self, ptr: Self::Retptr) -> Self::Abi {
1925
- let ($t, $($u,)*) = self;
1926
- // Store the tail of our tuple into the return pointer...
1927
- $((*ptr).$u = $u;)*
1928
- // ... and return the head raw.
1929
- $t
1930
- }
1931
-
1932
- unsafe fn call(f: impl FnOnce(Self::Retptr) -> Self::Abi) -> Self {
1933
- // Create space to store all the return values and then invoke
1934
- // the function.
1935
- let mut space = core::mem::MaybeUninit::uninit();
1936
- let t = f(space.as_mut_ptr());
1937
- let space = space.assume_init();
1938
-
1939
- // Use the return value as the head of the tuple and unpack our
1940
- // return area to get the rest of the tuple.
1941
- (t, $(space.$u,)*)
1942
- }
1943
- }
1944
- }};
1945
- }
1946
-
1947
- for_each_function_signature!(impl_host_abi);
1948
-
1949
- /// Internal trait implemented for all arguments that can be passed to
1950
- /// [`Func::wrap`] and [`Linker::func_wrap`](crate::Linker::func_wrap).
1951
- ///
1952
- /// This trait should not be implemented by external users, it's only intended
1953
- /// as an implementation detail of this crate.
1954
- pub trait IntoFunc<T, Params, Results>: Send + Sync + 'static {
1955
- /// Convert this function into a `VM{Array,Native}CallHostFuncContext` and
1956
- /// internal `VMFuncRef`.
1957
- #[doc(hidden)]
1958
- fn into_func(self, engine: &Engine) -> HostContext;
1959
- }
1960
-
1961
- /// A structure representing the caller's context when creating a function
1962
- /// via [`Func::wrap`].
1963
- ///
1964
- /// This structure can be taken as the first parameter of a closure passed to
1965
- /// [`Func::wrap`] or other constructors, and serves two purposes:
1966
- ///
1967
- /// * First consumers can use [`Caller<'_, T>`](crate::Caller) to get access to
1968
- /// [`StoreContextMut<'_, T>`](crate::StoreContextMut) and/or get access to
1969
- /// `T` itself. This means that the [`Caller`] type can serve as a proxy to
1970
- /// the original [`Store`](crate::Store) itself and is used to satisfy
1971
- /// [`AsContext`] and [`AsContextMut`] bounds.
1972
- ///
1973
- /// * Second a [`Caller`] can be used as the name implies, learning about the
1974
- /// caller's context, namely it's exported memory and exported functions. This
1975
- /// allows functions which take pointers as arguments to easily read the
1976
- /// memory the pointers point into, or if a function is expected to call
1977
- /// malloc in the wasm module to reserve space for the output you can do that.
1978
- ///
1979
- /// Host functions which want access to [`Store`](crate::Store)-level state are
1980
- /// recommended to use this type.
1981
- pub struct Caller<'a, T> {
1982
- pub(crate) store: StoreContextMut<'a, T>,
1983
- caller: &'a crate::runtime::vm::Instance,
1984
- }
1985
-
1986
- impl<T> Caller<'_, T> {
1987
- unsafe fn with<F, R>(caller: *mut VMContext, f: F) -> R
1988
- where
1989
- // The closure must be valid for any `Caller` it is given; it doesn't
1990
- // get to choose the `Caller`'s lifetime.
1991
- F: for<'a> FnOnce(Caller<'a, T>) -> R,
1992
- // And the return value must not borrow from the caller/store.
1993
- R: 'static,
1994
- {
1995
- assert!(!caller.is_null());
1996
- crate::runtime::vm::Instance::from_vmctx(caller, |instance| {
1997
- let store = StoreContextMut::from_raw(instance.store());
1998
- let gc_lifo_scope = store.0.gc_roots().enter_lifo_scope();
1999
-
2000
- let ret = f(Caller {
2001
- store,
2002
- caller: &instance,
2003
- });
2004
-
2005
- // Safe to recreate a mutable borrow of the store because `ret`
2006
- // cannot be borrowing from the store.
2007
- let store = StoreContextMut::<T>::from_raw(instance.store());
2008
- store.0.exit_gc_lifo_scope(gc_lifo_scope);
2009
-
2010
- ret
2011
- })
2012
- }
2013
-
2014
- fn sub_caller(&mut self) -> Caller<'_, T> {
2015
- Caller {
2016
- store: self.store.as_context_mut(),
2017
- caller: self.caller,
2018
- }
2019
- }
2020
-
2021
- /// Looks up an export from the caller's module by the `name` given.
2022
- ///
2023
- /// This is a low-level function that's typically used to implement passing
2024
- /// of pointers or indices between core Wasm instances, where the callee
2025
- /// needs to consult the caller's exports to perform memory management and
2026
- /// resolve the references.
2027
- ///
2028
- /// For comparison, in components, the component model handles translating
2029
- /// arguments from one component instance to another and managing memory, so
2030
- /// that callees don't need to be aware of their callers, which promotes
2031
- /// virtualizability of APIs.
2032
- ///
2033
- /// # Return
2034
- ///
2035
- /// If an export with the `name` provided was found, then it is returned as an
2036
- /// `Extern`. There are a number of situations, however, where the export may not
2037
- /// be available:
2038
- ///
2039
- /// * The caller instance may not have an export named `name`
2040
- /// * There may not be a caller available, for example if `Func` was called
2041
- /// directly from host code.
2042
- ///
2043
- /// It's recommended to take care when calling this API and gracefully
2044
- /// handling a `None` return value.
2045
- pub fn get_export(&mut self, name: &str) -> Option<Extern> {
2046
- // All instances created have a `host_state` with a pointer pointing
2047
- // back to themselves. If this caller doesn't have that `host_state`
2048
- // then it probably means it was a host-created object like `Func::new`
2049
- // which doesn't have any exports we want to return anyway.
2050
- self.caller
2051
- .host_state()
2052
- .downcast_ref::<Instance>()?
2053
- .get_export(&mut self.store, name)
2054
- }
2055
-
2056
- /// Access the underlying data owned by this `Store`.
2057
- ///
2058
- /// Same as [`Store::data`](crate::Store::data)
2059
- pub fn data(&self) -> &T {
2060
- self.store.data()
2061
- }
2062
-
2063
- /// Access the underlying data owned by this `Store`.
2064
- ///
2065
- /// Same as [`Store::data_mut`](crate::Store::data_mut)
2066
- pub fn data_mut(&mut self) -> &mut T {
2067
- self.store.data_mut()
2068
- }
2069
-
2070
- /// Returns the underlying [`Engine`] this store is connected to.
2071
- pub fn engine(&self) -> &Engine {
2072
- self.store.engine()
2073
- }
2074
-
2075
- /// Perform garbage collection.
2076
- ///
2077
- /// Same as [`Store::gc`](crate::Store::gc).
2078
- #[cfg(feature = "gc")]
2079
- pub fn gc(&mut self) {
2080
- self.store.gc()
2081
- }
2082
-
2083
- /// Perform garbage collection asynchronously.
2084
- ///
2085
- /// Same as [`Store::gc_async`](crate::Store::gc_async).
2086
- #[cfg(all(feature = "async", feature = "gc"))]
2087
- pub async fn gc_async(&mut self)
2088
- where
2089
- T: Send,
2090
- {
2091
- self.store.gc_async().await;
2092
- }
2093
-
2094
- /// Returns the remaining fuel in the store.
2095
- ///
2096
- /// For more information see [`Store::get_fuel`](crate::Store::get_fuel)
2097
- pub fn get_fuel(&self) -> Result<u64> {
2098
- self.store.get_fuel()
2099
- }
2100
-
2101
- /// Set the amount of fuel in this store to be consumed when executing wasm code.
2102
- ///
2103
- /// For more information see [`Store::set_fuel`](crate::Store::set_fuel)
2104
- pub fn set_fuel(&mut self, fuel: u64) -> Result<()> {
2105
- self.store.set_fuel(fuel)
2106
- }
2107
-
2108
- /// Configures this `Store` to yield while executing futures every N units of fuel.
2109
- ///
2110
- /// For more information see
2111
- /// [`Store::fuel_async_yield_interval`](crate::Store::fuel_async_yield_interval)
2112
- pub fn fuel_async_yield_interval(&mut self, interval: Option<u64>) -> Result<()> {
2113
- self.store.fuel_async_yield_interval(interval)
2114
- }
2115
- }
2116
-
2117
- impl<T> AsContext for Caller<'_, T> {
2118
- type Data = T;
2119
- fn as_context(&self) -> StoreContext<'_, T> {
2120
- self.store.as_context()
2121
- }
2122
- }
2123
-
2124
- impl<T> AsContextMut for Caller<'_, T> {
2125
- fn as_context_mut(&mut self) -> StoreContextMut<'_, T> {
2126
- self.store.as_context_mut()
2127
- }
2128
- }
2129
-
2130
- // State stored inside a `VMNativeCallHostFuncContext`.
2131
- struct HostFuncState<F> {
2132
- // The actual host function.
2133
- func: F,
2134
-
2135
- // NB: We have to keep our `VMSharedTypeIndex` registered in the engine for
2136
- // as long as this function exists.
2137
- #[allow(dead_code)]
2138
- ty: RegisteredType,
2139
- }
2140
-
2141
- macro_rules! impl_into_func {
2142
- ($num:tt $($args:ident)*) => {
2143
- // Implement for functions without a leading `&Caller` parameter,
2144
- // delegating to the implementation below which does have the leading
2145
- // `Caller` parameter.
2146
- #[allow(non_snake_case)]
2147
- impl<T, F, $($args,)* R> IntoFunc<T, ($($args,)*), R> for F
2148
- where
2149
- F: Fn($($args),*) -> R + Send + Sync + 'static,
2150
- $($args: WasmTy,)*
2151
- R: WasmRet,
2152
- {
2153
- fn into_func(self, engine: &Engine) -> HostContext {
2154
- let f = move |_: Caller<'_, T>, $($args:$args),*| {
2155
- self($($args),*)
2156
- };
2157
-
2158
- f.into_func(engine)
2159
- }
2160
- }
2161
-
2162
- #[allow(non_snake_case)]
2163
- impl<T, F, $($args,)* R> IntoFunc<T, (Caller<'_, T>, $($args,)*), R> for F
2164
- where
2165
- F: Fn(Caller<'_, T>, $($args),*) -> R + Send + Sync + 'static,
2166
- $($args: WasmTy,)*
2167
- R: WasmRet,
2168
- {
2169
- fn into_func(self, engine: &Engine) -> HostContext {
2170
- /// This shim is a regular, non-closure function we can stuff
2171
- /// inside `VMFuncRef::native_call`.
2172
- ///
2173
- /// It reads the actual callee closure out of
2174
- /// `VMNativeCallHostFuncContext::host_state`, forwards
2175
- /// arguments to that function, and finally forwards the results
2176
- /// back out to the caller. It also handles traps and panics
2177
- /// along the way.
2178
- unsafe extern "C" fn native_call_shim<T, F, $($args,)* R>(
2179
- vmctx: *mut VMOpaqueContext,
2180
- caller_vmctx: *mut VMOpaqueContext,
2181
- $( $args: $args::Abi, )*
2182
- retptr: R::Retptr,
2183
- ) -> R::Abi
2184
- where
2185
- F: Fn(Caller<'_, T>, $( $args ),*) -> R + 'static,
2186
- $( $args: WasmTy, )*
2187
- R: WasmRet,
2188
- {
2189
- // Note that this function is intentionally scoped into a
2190
- // separate closure. Handling traps and panics will involve
2191
- // longjmp-ing from this function which means we won't run
2192
- // destructors. As a result anything requiring a destructor
2193
- // should be part of this closure, and the long-jmp-ing
2194
- // happens after the closure in handling the result.
2195
- let run = move |mut caller: Caller<'_, T>| {
2196
- let vmctx = VMNativeCallHostFuncContext::from_opaque(vmctx);
2197
- let state = (*vmctx).host_state();
2198
-
2199
- // Double-check ourselves in debug mode, but we control
2200
- // the `Any` here so an unsafe downcast should also
2201
- // work.
2202
- debug_assert!(state.is::<HostFuncState<F>>());
2203
- let state = &*(state as *const _ as *const HostFuncState<F>);
2204
- let func = &state.func;
2205
-
2206
- let ret = 'ret: {
2207
- if let Err(trap) = caller.store.0.call_hook(CallHook::CallingHost) {
2208
- break 'ret R::fallible_from_error(trap);
2209
- }
2210
-
2211
- let mut store = AutoAssertNoGc::new(caller.store.0);
2212
- $(let $args = $args::from_abi($args, &mut store);)*
2213
- let _ = &mut store;
2214
- drop(store);
2215
-
2216
- let r = func(
2217
- caller.sub_caller(),
2218
- $( $args, )*
2219
- );
2220
- if let Err(trap) = caller.store.0.call_hook(CallHook::ReturningFromHost) {
2221
- break 'ret R::fallible_from_error(trap);
2222
- }
2223
- r.into_fallible()
2224
- };
2225
-
2226
- if !ret.compatible_with_store(caller.store.0) {
2227
- bail!("host function attempted to return cross-`Store` value to Wasm")
2228
- } else {
2229
- let mut store = AutoAssertNoGc::new(&mut **caller.store.0);
2230
- let ret = ret.into_abi_for_ret(&mut store, retptr)?;
2231
- Ok(ret)
2232
- }
2233
- };
2234
-
2235
- // With nothing else on the stack move `run` into this
2236
- // closure and then run it as part of `Caller::with`.
2237
- let result = crate::runtime::vm::catch_unwind_and_longjmp(move || {
2238
- let caller_vmctx = VMContext::from_opaque(caller_vmctx);
2239
- Caller::with(caller_vmctx, run)
2240
- });
2241
-
2242
- match result {
2243
- Ok(val) => val,
2244
- Err(err) => crate::trap::raise(err),
2245
- }
2246
- }
2247
-
2248
- /// This trampoline allows host code to indirectly call the
2249
- /// wrapped function (e.g. via `Func::call` on a `funcref` that
2250
- /// happens to reference our wrapped function).
2251
- ///
2252
- /// It reads the arguments out of the incoming `args` array,
2253
- /// calls the given function pointer, and then stores the result
2254
- /// back into the `args` array.
2255
- unsafe extern "C" fn array_call_trampoline<T, F, $($args,)* R>(
2256
- callee_vmctx: *mut VMOpaqueContext,
2257
- caller_vmctx: *mut VMOpaqueContext,
2258
- args: *mut ValRaw,
2259
- _args_len: usize
2260
- )
2261
- where
2262
- F: Fn(Caller<'_, T>, $( $args ),*) -> R + 'static,
2263
- $($args: WasmTy,)*
2264
- R: WasmRet,
2265
- {
2266
- let mut _n = 0;
2267
- $(
2268
- debug_assert!(_n < _args_len);
2269
- let $args = $args::abi_from_raw(args.add(_n));
2270
- _n += 1;
2271
- )*
2272
-
2273
- R::wrap_trampoline(args, |retptr| {
2274
- native_call_shim::<T, F, $( $args, )* R>(callee_vmctx, caller_vmctx, $( $args, )* retptr)
2275
- });
2276
- }
2277
-
2278
- let ty = R::func_type(
2279
- engine,
2280
- None::<ValType>.into_iter()
2281
- $(.chain(Some($args::valtype())))*
2282
- );
2283
- let type_index = ty.type_index();
2284
-
2285
- let array_call = array_call_trampoline::<T, F, $($args,)* R>;
2286
- let native_call = NonNull::new(native_call_shim::<T, F, $($args,)* R> as *mut _).unwrap();
2287
-
2288
- let ctx = unsafe {
2289
- VMNativeCallHostFuncContext::new(
2290
- VMFuncRef {
2291
- native_call,
2292
- array_call,
2293
- wasm_call: None,
2294
- type_index,
2295
- vmctx: ptr::null_mut(),
2296
- },
2297
- Box::new(HostFuncState {
2298
- func: self,
2299
- ty: ty.into_registered_type(),
2300
- }),
2301
- )
2302
- };
2303
-
2304
- ctx.into()
2305
- }
2306
- }
2307
- }
2308
- }
2309
-
2310
- for_each_function_signature!(impl_into_func);
2311
-
2312
- #[doc(hidden)]
2313
- pub enum HostContext {
2314
- Native(StoreBox<VMNativeCallHostFuncContext>),
2315
- Array(StoreBox<VMArrayCallHostFuncContext>),
2316
- }
2317
-
2318
- impl From<StoreBox<VMNativeCallHostFuncContext>> for HostContext {
2319
- fn from(ctx: StoreBox<VMNativeCallHostFuncContext>) -> Self {
2320
- HostContext::Native(ctx)
2321
- }
2322
- }
2323
-
2324
- impl From<StoreBox<VMArrayCallHostFuncContext>> for HostContext {
2325
- fn from(ctx: StoreBox<VMArrayCallHostFuncContext>) -> Self {
2326
- HostContext::Array(ctx)
2327
- }
2328
- }
2329
-
2330
- /// Representation of a host-defined function.
2331
- ///
2332
- /// This is used for `Func::new` but also for `Linker`-defined functions. For
2333
- /// `Func::new` this is stored within a `Store`, and for `Linker`-defined
2334
- /// functions they wrap this up in `Arc` to enable shared ownership of this
2335
- /// across many stores.
2336
- ///
2337
- /// Technically this structure needs a `<T>` type parameter to connect to the
2338
- /// `Store<T>` itself, but that's an unsafe contract of using this for now
2339
- /// rather than part of the struct type (to avoid `Func<T>` in the API).
2340
- pub(crate) struct HostFunc {
2341
- ctx: HostContext,
2342
-
2343
- // Stored to unregister this function's signature with the engine when this
2344
- // is dropped.
2345
- engine: Engine,
2346
- }
2347
-
2348
- impl HostFunc {
2349
- /// Analog of [`Func::new`]
2350
- ///
2351
- /// # Panics
2352
- ///
2353
- /// Panics if the given function type is not associated with the given
2354
- /// engine.
2355
- #[cfg(any(feature = "cranelift", feature = "winch"))]
2356
- pub fn new<T>(
2357
- engine: &Engine,
2358
- ty: FuncType,
2359
- func: impl Fn(Caller<'_, T>, &[Val], &mut [Val]) -> Result<()> + Send + Sync + 'static,
2360
- ) -> Self {
2361
- assert!(ty.comes_from_same_engine(engine));
2362
- let ty_clone = ty.clone();
2363
- unsafe {
2364
- HostFunc::new_unchecked(engine, ty, move |caller, values| {
2365
- Func::invoke_host_func_for_wasm(caller, &ty_clone, values, &func)
2366
- })
2367
- }
2368
- }
2369
-
2370
- /// Analog of [`Func::new_unchecked`]
2371
- ///
2372
- /// # Panics
2373
- ///
2374
- /// Panics if the given function type is not associated with the given
2375
- /// engine.
2376
- #[cfg(any(feature = "cranelift", feature = "winch"))]
2377
- pub unsafe fn new_unchecked<T>(
2378
- engine: &Engine,
2379
- ty: FuncType,
2380
- func: impl Fn(Caller<'_, T>, &mut [ValRaw]) -> Result<()> + Send + Sync + 'static,
2381
- ) -> Self {
2382
- assert!(ty.comes_from_same_engine(engine));
2383
- let func = move |caller_vmctx, values: &mut [ValRaw]| {
2384
- Caller::<T>::with(caller_vmctx, |mut caller| {
2385
- caller.store.0.call_hook(CallHook::CallingHost)?;
2386
- let result = func(caller.sub_caller(), values)?;
2387
- caller.store.0.call_hook(CallHook::ReturningFromHost)?;
2388
- Ok(result)
2389
- })
2390
- };
2391
- let ctx = crate::trampoline::create_array_call_function(&ty, func, engine)
2392
- .expect("failed to create function");
2393
- HostFunc::_new(engine, ctx.into())
2394
- }
2395
-
2396
- /// Analog of [`Func::wrap`]
2397
- pub fn wrap<T, Params, Results>(
2398
- engine: &Engine,
2399
- func: impl IntoFunc<T, Params, Results>,
2400
- ) -> Self {
2401
- let ctx = func.into_func(engine);
2402
- HostFunc::_new(engine, ctx)
2403
- }
2404
-
2405
- /// Requires that this function's signature is already registered within
2406
- /// `Engine`. This happens automatically during the above two constructors.
2407
- fn _new(engine: &Engine, ctx: HostContext) -> Self {
2408
- HostFunc {
2409
- ctx,
2410
- engine: engine.clone(),
2411
- }
2412
- }
2413
-
2414
- /// Inserts this `HostFunc` into a `Store`, returning the `Func` pointing to
2415
- /// it.
2416
- ///
2417
- /// # Unsafety
2418
- ///
2419
- /// Can only be inserted into stores with a matching `T` relative to when
2420
- /// this `HostFunc` was first created.
2421
- pub unsafe fn to_func(self: &Arc<Self>, store: &mut StoreOpaque) -> Func {
2422
- self.validate_store(store);
2423
- let me = self.clone();
2424
- Func::from_func_kind(FuncKind::SharedHost(me), store)
2425
- }
2426
-
2427
- /// Inserts this `HostFunc` into a `Store`, returning the `Func` pointing to
2428
- /// it.
2429
- ///
2430
- /// This function is similar to, but not equivalent, to `HostFunc::to_func`.
2431
- /// Notably this function requires that the `Arc<Self>` pointer is otherwise
2432
- /// rooted within the `StoreOpaque` via another means. When in doubt use
2433
- /// `to_func` above as it's safer.
2434
- ///
2435
- /// # Unsafety
2436
- ///
2437
- /// Can only be inserted into stores with a matching `T` relative to when
2438
- /// this `HostFunc` was first created.
2439
- ///
2440
- /// Additionally the `&Arc<Self>` is not cloned in this function. Instead a
2441
- /// raw pointer to `Self` is stored within the `Store` for this function.
2442
- /// The caller must arrange for the `Arc<Self>` to be "rooted" in the store
2443
- /// provided via another means, probably by pushing to
2444
- /// `StoreOpaque::rooted_host_funcs`.
2445
- ///
2446
- /// Similarly, the caller must arrange for `rooted_func_ref` to be rooted in
2447
- /// the same store.
2448
- pub unsafe fn to_func_store_rooted(
2449
- self: &Arc<Self>,
2450
- store: &mut StoreOpaque,
2451
- rooted_func_ref: Option<NonNull<VMFuncRef>>,
2452
- ) -> Func {
2453
- self.validate_store(store);
2454
-
2455
- if rooted_func_ref.is_some() {
2456
- debug_assert!(self.func_ref().wasm_call.is_none());
2457
- debug_assert!(matches!(self.ctx, HostContext::Native(_)));
2458
- }
2459
-
2460
- Func::from_func_kind(
2461
- FuncKind::RootedHost(RootedHostFunc::new(self, rooted_func_ref)),
2462
- store,
2463
- )
2464
- }
2465
-
2466
- /// Same as [`HostFunc::to_func`], different ownership.
2467
- unsafe fn into_func(self, store: &mut StoreOpaque) -> Func {
2468
- self.validate_store(store);
2469
- Func::from_func_kind(FuncKind::Host(Box::new(self)), store)
2470
- }
2471
-
2472
- fn validate_store(&self, store: &mut StoreOpaque) {
2473
- // This assert is required to ensure that we can indeed safely insert
2474
- // `self` into the `store` provided, otherwise the type information we
2475
- // have listed won't be correct. This is possible to hit with the public
2476
- // API of Wasmtime, and should be documented in relevant functions.
2477
- assert!(
2478
- Engine::same(&self.engine, store.engine()),
2479
- "cannot use a store with a different engine than a linker was created with",
2480
- );
2481
- }
2482
-
2483
- pub(crate) fn sig_index(&self) -> VMSharedTypeIndex {
2484
- self.func_ref().type_index
2485
- }
2486
-
2487
- pub(crate) fn func_ref(&self) -> &VMFuncRef {
2488
- match &self.ctx {
2489
- HostContext::Native(ctx) => unsafe { (*ctx.get()).func_ref() },
2490
- HostContext::Array(ctx) => unsafe { (*ctx.get()).func_ref() },
2491
- }
2492
- }
2493
-
2494
- pub(crate) fn host_ctx(&self) -> &HostContext {
2495
- &self.ctx
2496
- }
2497
-
2498
- fn export_func(&self) -> ExportFunction {
2499
- ExportFunction {
2500
- func_ref: NonNull::from(self.func_ref()),
2501
- }
2502
- }
2503
- }
2504
-
2505
- impl FuncData {
2506
- #[inline]
2507
- fn export(&self) -> ExportFunction {
2508
- self.kind.export()
2509
- }
2510
-
2511
- pub(crate) fn sig_index(&self) -> VMSharedTypeIndex {
2512
- unsafe { self.export().func_ref.as_ref().type_index }
2513
- }
2514
- }
2515
-
2516
- impl FuncKind {
2517
- #[inline]
2518
- fn export(&self) -> ExportFunction {
2519
- match self {
2520
- FuncKind::StoreOwned { export, .. } => *export,
2521
- FuncKind::SharedHost(host) => host.export_func(),
2522
- FuncKind::RootedHost(rooted) => ExportFunction {
2523
- func_ref: NonNull::from(rooted.func_ref()),
2524
- },
2525
- FuncKind::Host(host) => host.export_func(),
2526
- }
2527
- }
2528
- }
2529
-
2530
- use self::rooted::*;
2531
-
2532
- /// An inner module is used here to force unsafe construction of
2533
- /// `RootedHostFunc` instead of accidentally safely allowing access to its
2534
- /// constructor.
2535
- mod rooted {
2536
- use super::HostFunc;
2537
- use crate::runtime::vm::{SendSyncPtr, VMFuncRef};
2538
- use alloc::sync::Arc;
2539
- use core::ptr::NonNull;
2540
-
2541
- /// A variant of a pointer-to-a-host-function used in `FuncKind::RootedHost`
2542
- /// above.
2543
- ///
2544
- /// For more documentation see `FuncKind::RootedHost`, `InstancePre`, and
2545
- /// `HostFunc::to_func_store_rooted`.
2546
- pub(crate) struct RootedHostFunc {
2547
- func: SendSyncPtr<HostFunc>,
2548
- func_ref: Option<SendSyncPtr<VMFuncRef>>,
2549
- }
2550
-
2551
- impl RootedHostFunc {
2552
- /// Note that this is `unsafe` because this wrapper type allows safe
2553
- /// access to the pointer given at any time, including outside the
2554
- /// window of validity of `func`, so callers must not use the return
2555
- /// value past the lifetime of the provided `func`.
2556
- ///
2557
- /// Similarly, callers must ensure that the given `func_ref` is valid
2558
- /// for the liftime of the return value.
2559
- pub(crate) unsafe fn new(
2560
- func: &Arc<HostFunc>,
2561
- func_ref: Option<NonNull<VMFuncRef>>,
2562
- ) -> RootedHostFunc {
2563
- RootedHostFunc {
2564
- func: NonNull::from(&**func).into(),
2565
- func_ref: func_ref.map(|p| p.into()),
2566
- }
2567
- }
2568
-
2569
- pub(crate) fn func(&self) -> &HostFunc {
2570
- // Safety invariants are upheld by the `RootedHostFunc::new` caller.
2571
- unsafe { self.func.as_ref() }
2572
- }
2573
-
2574
- pub(crate) fn func_ref(&self) -> &VMFuncRef {
2575
- if let Some(f) = self.func_ref {
2576
- // Safety invariants are upheld by the `RootedHostFunc::new` caller.
2577
- unsafe { f.as_ref() }
2578
- } else {
2579
- self.func().func_ref()
2580
- }
2581
- }
2582
- }
2583
- }
2584
-
2585
- #[cfg(test)]
2586
- mod tests {
2587
- use super::*;
2588
- use crate::Store;
2589
-
2590
- #[test]
2591
- fn hash_key_is_stable_across_duplicate_store_data_entries() -> Result<()> {
2592
- let mut store = Store::<()>::default();
2593
- let module = Module::new(
2594
- store.engine(),
2595
- r#"
2596
- (module
2597
- (func (export "f")
2598
- nop
2599
- )
2600
- )
2601
- "#,
2602
- )?;
2603
- let instance = Instance::new(&mut store, &module, &[])?;
2604
-
2605
- // Each time we `get_func`, we call `Func::from_wasmtime` which adds a
2606
- // new entry to `StoreData`, so `f1` and `f2` will have different
2607
- // indices into `StoreData`.
2608
- let f1 = instance.get_func(&mut store, "f").unwrap();
2609
- let f2 = instance.get_func(&mut store, "f").unwrap();
2610
-
2611
- // But their hash keys are the same.
2612
- assert!(
2613
- f1.hash_key(&mut store.as_context_mut().0)
2614
- == f2.hash_key(&mut store.as_context_mut().0)
2615
- );
2616
-
2617
- // But the hash keys are different from different funcs.
2618
- let instance2 = Instance::new(&mut store, &module, &[])?;
2619
- let f3 = instance2.get_func(&mut store, "f").unwrap();
2620
- assert!(
2621
- f1.hash_key(&mut store.as_context_mut().0)
2622
- != f3.hash_key(&mut store.as_context_mut().0)
2623
- );
2624
-
2625
- Ok(())
2626
- }
2627
- }