wasmtime 19.0.2 → 20.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 (2539) hide show
  1. checksums.yaml +4 -4
  2. data/Cargo.lock +137 -130
  3. data/ext/Cargo.toml +10 -10
  4. data/ext/cargo-vendor/ahash-0.8.11/.cargo-checksum.json +1 -0
  5. data/ext/cargo-vendor/ahash-0.8.11/Cargo.toml +167 -0
  6. data/ext/cargo-vendor/ahash-0.8.11/src/aes_hash.rs +433 -0
  7. data/ext/cargo-vendor/ahash-0.8.11/src/fallback_hash.rs +367 -0
  8. data/ext/cargo-vendor/ahash-0.8.11/src/hash_quality_test.rs +534 -0
  9. data/ext/cargo-vendor/ahash-0.8.11/src/lib.rs +396 -0
  10. data/ext/cargo-vendor/ahash-0.8.11/src/operations.rs +372 -0
  11. data/ext/cargo-vendor/ahash-0.8.11/src/random_state.rs +528 -0
  12. data/ext/cargo-vendor/ahash-0.8.11/tests/bench.rs +199 -0
  13. data/ext/cargo-vendor/ahash-0.8.11/tests/map_tests.rs +310 -0
  14. data/ext/cargo-vendor/anyhow-1.0.83/.cargo-checksum.json +1 -0
  15. data/ext/cargo-vendor/anyhow-1.0.83/Cargo.toml +130 -0
  16. data/ext/cargo-vendor/anyhow-1.0.83/README.md +181 -0
  17. data/ext/cargo-vendor/anyhow-1.0.83/build.rs +179 -0
  18. data/ext/cargo-vendor/anyhow-1.0.83/src/backtrace.rs +406 -0
  19. data/ext/cargo-vendor/anyhow-1.0.83/src/chain.rs +102 -0
  20. data/ext/cargo-vendor/anyhow-1.0.83/src/fmt.rs +158 -0
  21. data/ext/cargo-vendor/anyhow-1.0.83/src/kind.rs +121 -0
  22. data/ext/cargo-vendor/anyhow-1.0.83/src/lib.rs +702 -0
  23. data/ext/cargo-vendor/anyhow-1.0.83/src/macros.rs +241 -0
  24. data/ext/cargo-vendor/anyhow-1.0.83/src/wrapper.rs +84 -0
  25. data/ext/cargo-vendor/anyhow-1.0.83/tests/test_ensure.rs +724 -0
  26. data/ext/cargo-vendor/anyhow-1.0.83/tests/test_macros.rs +81 -0
  27. data/ext/cargo-vendor/anyhow-1.0.83/tests/test_repr.rs +30 -0
  28. data/ext/cargo-vendor/anyhow-1.0.83/tests/ui/no-impl.stderr +32 -0
  29. data/ext/cargo-vendor/async-timer-1.0.0-beta.14/.cargo-checksum.json +1 -0
  30. data/ext/cargo-vendor/async-timer-1.0.0-beta.14/Cargo.toml +78 -0
  31. data/ext/cargo-vendor/async-timer-1.0.0-beta.14/README.md +60 -0
  32. data/ext/cargo-vendor/async-timer-1.0.0-beta.14/src/interval.rs +98 -0
  33. data/ext/cargo-vendor/async-timer-1.0.0-beta.14/src/lib.rs +59 -0
  34. data/ext/cargo-vendor/async-timer-1.0.0-beta.14/src/state.rs +280 -0
  35. data/ext/cargo-vendor/async-timer-1.0.0-beta.14/src/timer/web.rs +177 -0
  36. data/ext/cargo-vendor/async-timer-1.0.0-beta.14/src/timer/win.rs +201 -0
  37. data/ext/cargo-vendor/async-timer-1.0.0-beta.14/tests/interval.rs +73 -0
  38. data/ext/cargo-vendor/cap-primitives-3.1.0/.cargo-checksum.json +1 -0
  39. data/ext/cargo-vendor/cap-primitives-3.1.0/Cargo.toml +84 -0
  40. data/ext/cargo-vendor/cap-primitives-3.1.0/src/rustix/fs/metadata_ext.rs +420 -0
  41. data/ext/cargo-vendor/cap-std-3.1.0/.cargo-checksum.json +1 -0
  42. data/ext/cargo-vendor/cap-std-3.1.0/Cargo.toml +67 -0
  43. data/ext/cargo-vendor/cap-std-3.1.0/src/fs/dir.rs +888 -0
  44. data/ext/cargo-vendor/cap-std-3.1.0/src/fs_utf8/dir.rs +832 -0
  45. data/ext/cargo-vendor/cranelift-bforest-0.107.2/.cargo-checksum.json +1 -0
  46. data/ext/cargo-vendor/cranelift-bforest-0.107.2/Cargo.toml +40 -0
  47. data/ext/cargo-vendor/cranelift-codegen-0.107.2/.cargo-checksum.json +1 -0
  48. data/ext/cargo-vendor/cranelift-codegen-0.107.2/Cargo.toml +178 -0
  49. data/ext/cargo-vendor/cranelift-codegen-0.107.2/build.rs +396 -0
  50. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/alias_analysis.rs +403 -0
  51. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/binemit/mod.rs +171 -0
  52. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/bitset.rs +187 -0
  53. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/context.rs +386 -0
  54. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/egraph/elaborate.rs +835 -0
  55. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/egraph.rs +838 -0
  56. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/inst_predicates.rs +236 -0
  57. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/ir/constant.rs +462 -0
  58. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/ir/dfg.rs +1777 -0
  59. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/ir/entities.rs +562 -0
  60. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/ir/function.rs +490 -0
  61. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/ir/instructions.rs +1019 -0
  62. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/ir/memflags.rs +452 -0
  63. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/ir/mod.rs +108 -0
  64. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/ir/trapcode.rs +149 -0
  65. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/ir/types.rs +629 -0
  66. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/aarch64/abi.rs +1707 -0
  67. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/aarch64/inst/emit.rs +3932 -0
  68. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/aarch64/inst/mod.rs +3083 -0
  69. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/aarch64/inst.isle +4218 -0
  70. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/aarch64/lower/isle.rs +884 -0
  71. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/aarch64/lower.isle +2933 -0
  72. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/aarch64/mod.rs +242 -0
  73. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/aarch64/pcc.rs +565 -0
  74. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/call_conv.rs +127 -0
  75. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/riscv64/abi.rs +1109 -0
  76. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/riscv64/inst/args.rs +1968 -0
  77. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/riscv64/inst/emit.rs +3466 -0
  78. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/riscv64/inst/encode.rs +654 -0
  79. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/riscv64/inst.isle +2944 -0
  80. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/riscv64/lower/isle.rs +625 -0
  81. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/riscv64/lower.isle +2872 -0
  82. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/s390x/abi.rs +1047 -0
  83. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/s390x/inst/args.rs +347 -0
  84. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/s390x/inst/emit.rs +3646 -0
  85. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/s390x/inst.isle +5033 -0
  86. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/s390x/lower.isle +3995 -0
  87. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/x64/abi.rs +1369 -0
  88. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/x64/encoding/evex.rs +748 -0
  89. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/x64/encoding/rex.rs +596 -0
  90. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/x64/encoding/vex.rs +491 -0
  91. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/x64/inst/args.rs +2289 -0
  92. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/x64/inst/emit.rs +4383 -0
  93. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/x64/inst/emit_state.rs +74 -0
  94. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/x64/inst/mod.rs +2798 -0
  95. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/x64/inst.isle +5304 -0
  96. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/x64/lower/isle.rs +1066 -0
  97. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/x64/lower.isle +4809 -0
  98. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/x64/lower.rs +339 -0
  99. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/x64/mod.rs +234 -0
  100. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/x64/pcc.rs +1003 -0
  101. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/legalizer/mod.rs +348 -0
  102. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/machinst/abi.rs +2594 -0
  103. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/machinst/buffer.rs +2512 -0
  104. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/machinst/inst_common.rs +75 -0
  105. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/machinst/isle.rs +914 -0
  106. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/machinst/lower.rs +1452 -0
  107. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/machinst/mod.rs +555 -0
  108. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/machinst/pcc.rs +169 -0
  109. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/machinst/vcode.rs +1807 -0
  110. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/nan_canonicalization.rs +110 -0
  111. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/opts/cprop.isle +281 -0
  112. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/opts/spectre.isle +14 -0
  113. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/opts.rs +295 -0
  114. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/prelude.isle +646 -0
  115. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/result.rs +111 -0
  116. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/settings.rs +591 -0
  117. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/verifier/mod.rs +1957 -0
  118. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/write.rs +631 -0
  119. data/ext/cargo-vendor/cranelift-codegen-meta-0.107.2/.cargo-checksum.json +1 -0
  120. data/ext/cargo-vendor/cranelift-codegen-meta-0.107.2/Cargo.toml +35 -0
  121. data/ext/cargo-vendor/cranelift-codegen-meta-0.107.2/src/shared/entities.rs +101 -0
  122. data/ext/cargo-vendor/cranelift-codegen-meta-0.107.2/src/shared/formats.rs +205 -0
  123. data/ext/cargo-vendor/cranelift-codegen-meta-0.107.2/src/shared/instructions.rs +3791 -0
  124. data/ext/cargo-vendor/cranelift-codegen-shared-0.107.2/.cargo-checksum.json +1 -0
  125. data/ext/cargo-vendor/cranelift-codegen-shared-0.107.2/Cargo.toml +22 -0
  126. data/ext/cargo-vendor/cranelift-control-0.107.2/.cargo-checksum.json +1 -0
  127. data/ext/cargo-vendor/cranelift-control-0.107.2/Cargo.toml +30 -0
  128. data/ext/cargo-vendor/cranelift-entity-0.107.2/.cargo-checksum.json +1 -0
  129. data/ext/cargo-vendor/cranelift-entity-0.107.2/Cargo.toml +50 -0
  130. data/ext/cargo-vendor/cranelift-frontend-0.107.2/.cargo-checksum.json +1 -0
  131. data/ext/cargo-vendor/cranelift-frontend-0.107.2/Cargo.toml +69 -0
  132. data/ext/cargo-vendor/cranelift-isle-0.107.2/.cargo-checksum.json +1 -0
  133. data/ext/cargo-vendor/cranelift-isle-0.107.2/Cargo.toml +46 -0
  134. data/ext/cargo-vendor/cranelift-native-0.107.2/.cargo-checksum.json +1 -0
  135. data/ext/cargo-vendor/cranelift-native-0.107.2/Cargo.toml +45 -0
  136. data/ext/cargo-vendor/cranelift-wasm-0.107.2/.cargo-checksum.json +1 -0
  137. data/ext/cargo-vendor/cranelift-wasm-0.107.2/Cargo.toml +107 -0
  138. data/ext/cargo-vendor/cranelift-wasm-0.107.2/src/code_translator.rs +3683 -0
  139. data/ext/cargo-vendor/cranelift-wasm-0.107.2/src/environ/dummy.rs +912 -0
  140. data/ext/cargo-vendor/cranelift-wasm-0.107.2/src/environ/mod.rs +8 -0
  141. data/ext/cargo-vendor/cranelift-wasm-0.107.2/src/environ/spec.rs +945 -0
  142. data/ext/cargo-vendor/cranelift-wasm-0.107.2/src/func_translator.rs +296 -0
  143. data/ext/cargo-vendor/cranelift-wasm-0.107.2/src/lib.rs +58 -0
  144. data/ext/cargo-vendor/cranelift-wasm-0.107.2/src/state.rs +522 -0
  145. data/ext/cargo-vendor/cranelift-wasm-0.107.2/src/table.rs +104 -0
  146. data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.21/.cargo-checksum.json +1 -0
  147. data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.21/Cargo.toml +48 -0
  148. data/ext/cargo-vendor/lazy_static-1.5.0/.cargo-checksum.json +1 -0
  149. data/ext/cargo-vendor/lazy_static-1.5.0/Cargo.lock +293 -0
  150. data/ext/cargo-vendor/lazy_static-1.5.0/Cargo.toml +46 -0
  151. data/ext/cargo-vendor/lazy_static-1.5.0/README.md +105 -0
  152. data/ext/cargo-vendor/lazy_static-1.5.0/examples/mutex_map.rs +23 -0
  153. data/ext/cargo-vendor/lazy_static-1.5.0/src/core_lazy.rs +32 -0
  154. data/ext/cargo-vendor/lazy_static-1.5.0/src/inline_lazy.rs +48 -0
  155. data/ext/cargo-vendor/lazy_static-1.5.0/src/lib.rs +208 -0
  156. data/ext/cargo-vendor/lazy_static-1.5.0/tests/compile_fail/incorrect_visibility_restriction.rs +8 -0
  157. data/ext/cargo-vendor/lazy_static-1.5.0/tests/compile_fail/incorrect_visibility_restriction.stderr +10 -0
  158. data/ext/cargo-vendor/lazy_static-1.5.0/tests/compile_fail/static_is_private.rs +14 -0
  159. data/ext/cargo-vendor/lazy_static-1.5.0/tests/compile_fail/static_is_private.stderr +14 -0
  160. data/ext/cargo-vendor/lazy_static-1.5.0/tests/compile_fail/static_is_sized.rs +9 -0
  161. data/ext/cargo-vendor/lazy_static-1.5.0/tests/compile_fail/static_is_sized.stderr +64 -0
  162. data/ext/cargo-vendor/lazy_static-1.5.0/tests/no_std.rs +19 -0
  163. data/ext/cargo-vendor/lazy_static-1.5.0/tests/test.rs +185 -0
  164. data/ext/cargo-vendor/lazy_static-1.5.0/tests/ui.rs +6 -0
  165. data/ext/cargo-vendor/mach2-0.4.2/.cargo-checksum.json +1 -0
  166. data/ext/cargo-vendor/mach2-0.4.2/Cargo.toml +49 -0
  167. data/ext/cargo-vendor/mach2-0.4.2/LICENSE-APACHE +176 -0
  168. data/ext/cargo-vendor/mach2-0.4.2/LICENSE-BSD +23 -0
  169. data/ext/cargo-vendor/mach2-0.4.2/LICENSE-MIT +25 -0
  170. data/ext/cargo-vendor/mach2-0.4.2/README.md +116 -0
  171. data/ext/cargo-vendor/mach2-0.4.2/src/exc.rs +73 -0
  172. data/ext/cargo-vendor/mach2-0.4.2/src/kern_return.rs +59 -0
  173. data/ext/cargo-vendor/mach2-0.4.2/src/lib.rs +59 -0
  174. data/ext/cargo-vendor/mach2-0.4.2/src/mach_port.rs +50 -0
  175. data/ext/cargo-vendor/mach2-0.4.2/src/message.rs +345 -0
  176. data/ext/cargo-vendor/mach2-0.4.2/src/ndr.rs +19 -0
  177. data/ext/cargo-vendor/mach2-0.4.2/src/port.rs +67 -0
  178. data/ext/cargo-vendor/mach2-0.4.2/src/semaphore.rs +22 -0
  179. data/ext/cargo-vendor/mach2-0.4.2/src/structs.rs +66 -0
  180. data/ext/cargo-vendor/mach2-0.4.2/src/sync_policy.rs +9 -0
  181. data/ext/cargo-vendor/mach2-0.4.2/src/task.rs +46 -0
  182. data/ext/cargo-vendor/mach2-0.4.2/src/task_info.rs +49 -0
  183. data/ext/cargo-vendor/mach2-0.4.2/src/thread_act.rs +36 -0
  184. data/ext/cargo-vendor/mach2-0.4.2/src/thread_policy.rs +121 -0
  185. data/ext/cargo-vendor/mach2-0.4.2/src/thread_status.rs +53 -0
  186. data/ext/cargo-vendor/mach2-0.4.2/src/traps.rs +37 -0
  187. data/ext/cargo-vendor/mach2-0.4.2/src/vm.rs +248 -0
  188. data/ext/cargo-vendor/mach2-0.4.2/src/vm_attributes.rs +18 -0
  189. data/ext/cargo-vendor/mach2-0.4.2/src/vm_page_size.rs +40 -0
  190. data/ext/cargo-vendor/mach2-0.4.2/src/vm_prot.rs +13 -0
  191. data/ext/cargo-vendor/mach2-0.4.2/src/vm_purgable.rs +42 -0
  192. data/ext/cargo-vendor/mach2-0.4.2/src/vm_region.rs +238 -0
  193. data/ext/cargo-vendor/mach2-0.4.2/src/vm_statistics.rs +58 -0
  194. data/ext/cargo-vendor/mach2-0.4.2/src/vm_sync.rs +11 -0
  195. data/ext/cargo-vendor/mach2-0.4.2/src/vm_types.rs +19 -0
  196. data/ext/cargo-vendor/object-0.33.0/.cargo-checksum.json +1 -0
  197. data/ext/cargo-vendor/object-0.33.0/CHANGELOG.md +797 -0
  198. data/ext/cargo-vendor/object-0.33.0/Cargo.toml +179 -0
  199. data/ext/cargo-vendor/object-0.33.0/LICENSE-APACHE +201 -0
  200. data/ext/cargo-vendor/object-0.33.0/LICENSE-MIT +25 -0
  201. data/ext/cargo-vendor/object-0.33.0/README.md +56 -0
  202. data/ext/cargo-vendor/object-0.33.0/src/archive.rs +91 -0
  203. data/ext/cargo-vendor/object-0.33.0/src/build/bytes.rs +141 -0
  204. data/ext/cargo-vendor/object-0.33.0/src/build/elf.rs +3033 -0
  205. data/ext/cargo-vendor/object-0.33.0/src/build/error.rs +41 -0
  206. data/ext/cargo-vendor/object-0.33.0/src/build/mod.rs +18 -0
  207. data/ext/cargo-vendor/object-0.33.0/src/build/table.rs +128 -0
  208. data/ext/cargo-vendor/object-0.33.0/src/common.rs +568 -0
  209. data/ext/cargo-vendor/object-0.33.0/src/elf.rs +6291 -0
  210. data/ext/cargo-vendor/object-0.33.0/src/endian.rs +831 -0
  211. data/ext/cargo-vendor/object-0.33.0/src/lib.rs +107 -0
  212. data/ext/cargo-vendor/object-0.33.0/src/macho.rs +3309 -0
  213. data/ext/cargo-vendor/object-0.33.0/src/pe.rs +3056 -0
  214. data/ext/cargo-vendor/object-0.33.0/src/pod.rs +239 -0
  215. data/ext/cargo-vendor/object-0.33.0/src/read/any.rs +1328 -0
  216. data/ext/cargo-vendor/object-0.33.0/src/read/archive.rs +759 -0
  217. data/ext/cargo-vendor/object-0.33.0/src/read/coff/comdat.rs +211 -0
  218. data/ext/cargo-vendor/object-0.33.0/src/read/coff/file.rs +383 -0
  219. data/ext/cargo-vendor/object-0.33.0/src/read/coff/import.rs +223 -0
  220. data/ext/cargo-vendor/object-0.33.0/src/read/coff/mod.rs +66 -0
  221. data/ext/cargo-vendor/object-0.33.0/src/read/coff/relocation.rs +108 -0
  222. data/ext/cargo-vendor/object-0.33.0/src/read/coff/section.rs +585 -0
  223. data/ext/cargo-vendor/object-0.33.0/src/read/coff/symbol.rs +635 -0
  224. data/ext/cargo-vendor/object-0.33.0/src/read/elf/attributes.rs +306 -0
  225. data/ext/cargo-vendor/object-0.33.0/src/read/elf/comdat.rs +162 -0
  226. data/ext/cargo-vendor/object-0.33.0/src/read/elf/compression.rs +56 -0
  227. data/ext/cargo-vendor/object-0.33.0/src/read/elf/dynamic.rs +117 -0
  228. data/ext/cargo-vendor/object-0.33.0/src/read/elf/file.rs +918 -0
  229. data/ext/cargo-vendor/object-0.33.0/src/read/elf/hash.rs +224 -0
  230. data/ext/cargo-vendor/object-0.33.0/src/read/elf/mod.rs +78 -0
  231. data/ext/cargo-vendor/object-0.33.0/src/read/elf/note.rs +271 -0
  232. data/ext/cargo-vendor/object-0.33.0/src/read/elf/relocation.rs +629 -0
  233. data/ext/cargo-vendor/object-0.33.0/src/read/elf/section.rs +1150 -0
  234. data/ext/cargo-vendor/object-0.33.0/src/read/elf/segment.rs +356 -0
  235. data/ext/cargo-vendor/object-0.33.0/src/read/elf/symbol.rs +595 -0
  236. data/ext/cargo-vendor/object-0.33.0/src/read/elf/version.rs +424 -0
  237. data/ext/cargo-vendor/object-0.33.0/src/read/macho/dyld_cache.rs +345 -0
  238. data/ext/cargo-vendor/object-0.33.0/src/read/macho/fat.rs +140 -0
  239. data/ext/cargo-vendor/object-0.33.0/src/read/macho/file.rs +783 -0
  240. data/ext/cargo-vendor/object-0.33.0/src/read/macho/load_command.rs +386 -0
  241. data/ext/cargo-vendor/object-0.33.0/src/read/macho/mod.rs +72 -0
  242. data/ext/cargo-vendor/object-0.33.0/src/read/macho/relocation.rs +149 -0
  243. data/ext/cargo-vendor/object-0.33.0/src/read/macho/section.rs +389 -0
  244. data/ext/cargo-vendor/object-0.33.0/src/read/macho/segment.rs +303 -0
  245. data/ext/cargo-vendor/object-0.33.0/src/read/macho/symbol.rs +492 -0
  246. data/ext/cargo-vendor/object-0.33.0/src/read/mod.rs +880 -0
  247. data/ext/cargo-vendor/object-0.33.0/src/read/pe/data_directory.rs +214 -0
  248. data/ext/cargo-vendor/object-0.33.0/src/read/pe/export.rs +334 -0
  249. data/ext/cargo-vendor/object-0.33.0/src/read/pe/file.rs +1053 -0
  250. data/ext/cargo-vendor/object-0.33.0/src/read/pe/import.rs +339 -0
  251. data/ext/cargo-vendor/object-0.33.0/src/read/pe/mod.rs +68 -0
  252. data/ext/cargo-vendor/object-0.33.0/src/read/pe/relocation.rs +92 -0
  253. data/ext/cargo-vendor/object-0.33.0/src/read/pe/resource.rs +210 -0
  254. data/ext/cargo-vendor/object-0.33.0/src/read/pe/rich.rs +92 -0
  255. data/ext/cargo-vendor/object-0.33.0/src/read/pe/section.rs +440 -0
  256. data/ext/cargo-vendor/object-0.33.0/src/read/read_cache.rs +213 -0
  257. data/ext/cargo-vendor/object-0.33.0/src/read/read_ref.rs +149 -0
  258. data/ext/cargo-vendor/object-0.33.0/src/read/traits.rs +551 -0
  259. data/ext/cargo-vendor/object-0.33.0/src/read/util.rs +425 -0
  260. data/ext/cargo-vendor/object-0.33.0/src/read/wasm.rs +966 -0
  261. data/ext/cargo-vendor/object-0.33.0/src/read/xcoff/comdat.rs +134 -0
  262. data/ext/cargo-vendor/object-0.33.0/src/read/xcoff/file.rs +697 -0
  263. data/ext/cargo-vendor/object-0.33.0/src/read/xcoff/mod.rs +63 -0
  264. data/ext/cargo-vendor/object-0.33.0/src/read/xcoff/relocation.rs +134 -0
  265. data/ext/cargo-vendor/object-0.33.0/src/read/xcoff/section.rs +433 -0
  266. data/ext/cargo-vendor/object-0.33.0/src/read/xcoff/segment.rs +117 -0
  267. data/ext/cargo-vendor/object-0.33.0/src/read/xcoff/symbol.rs +784 -0
  268. data/ext/cargo-vendor/object-0.33.0/src/write/coff/mod.rs +10 -0
  269. data/ext/cargo-vendor/object-0.33.0/src/write/coff/object.rs +678 -0
  270. data/ext/cargo-vendor/object-0.33.0/src/write/coff/writer.rs +518 -0
  271. data/ext/cargo-vendor/object-0.33.0/src/write/elf/mod.rs +9 -0
  272. data/ext/cargo-vendor/object-0.33.0/src/write/elf/object.rs +885 -0
  273. data/ext/cargo-vendor/object-0.33.0/src/write/elf/writer.rs +2309 -0
  274. data/ext/cargo-vendor/object-0.33.0/src/write/macho.rs +1107 -0
  275. data/ext/cargo-vendor/object-0.33.0/src/write/mod.rs +990 -0
  276. data/ext/cargo-vendor/object-0.33.0/src/write/pe.rs +847 -0
  277. data/ext/cargo-vendor/object-0.33.0/src/write/string.rs +186 -0
  278. data/ext/cargo-vendor/object-0.33.0/src/write/util.rs +261 -0
  279. data/ext/cargo-vendor/object-0.33.0/src/write/xcoff.rs +589 -0
  280. data/ext/cargo-vendor/object-0.33.0/src/xcoff.rs +905 -0
  281. data/ext/cargo-vendor/object-0.33.0/tests/integration.rs +2 -0
  282. data/ext/cargo-vendor/object-0.33.0/tests/parse_self.rs +25 -0
  283. data/ext/cargo-vendor/object-0.33.0/tests/read/coff.rs +23 -0
  284. data/ext/cargo-vendor/object-0.33.0/tests/read/elf.rs +47 -0
  285. data/ext/cargo-vendor/object-0.33.0/tests/read/mod.rs +4 -0
  286. data/ext/cargo-vendor/object-0.33.0/tests/round_trip/bss.rs +255 -0
  287. data/ext/cargo-vendor/object-0.33.0/tests/round_trip/coff.rs +58 -0
  288. data/ext/cargo-vendor/object-0.33.0/tests/round_trip/comdat.rs +225 -0
  289. data/ext/cargo-vendor/object-0.33.0/tests/round_trip/common.rs +245 -0
  290. data/ext/cargo-vendor/object-0.33.0/tests/round_trip/elf.rs +289 -0
  291. data/ext/cargo-vendor/object-0.33.0/tests/round_trip/macho.rs +64 -0
  292. data/ext/cargo-vendor/object-0.33.0/tests/round_trip/mod.rs +704 -0
  293. data/ext/cargo-vendor/object-0.33.0/tests/round_trip/section_flags.rs +90 -0
  294. data/ext/cargo-vendor/object-0.33.0/tests/round_trip/tls.rs +316 -0
  295. data/ext/cargo-vendor/wasi-common-20.0.2/.cargo-checksum.json +1 -0
  296. data/ext/cargo-vendor/wasi-common-20.0.2/Cargo.toml +220 -0
  297. data/ext/cargo-vendor/wasi-common-20.0.2/src/ctx.rs +128 -0
  298. data/ext/cargo-vendor/wasi-common-20.0.2/src/lib.rs +193 -0
  299. data/ext/cargo-vendor/wasi-common-20.0.2/src/snapshots/preview_1.rs +1497 -0
  300. data/ext/cargo-vendor/wasi-common-20.0.2/tests/all/async_.rs +293 -0
  301. data/ext/cargo-vendor/wasi-common-20.0.2/tests/all/sync.rs +279 -0
  302. data/ext/cargo-vendor/wasm-encoder-0.202.0/.cargo-checksum.json +1 -0
  303. data/ext/cargo-vendor/wasm-encoder-0.202.0/Cargo.toml +43 -0
  304. data/ext/cargo-vendor/wasm-encoder-0.202.0/src/component/types.rs +792 -0
  305. data/ext/cargo-vendor/wasm-encoder-0.209.1/.cargo-checksum.json +1 -0
  306. data/ext/cargo-vendor/wasm-encoder-0.209.1/Cargo.toml +46 -0
  307. data/ext/cargo-vendor/wasm-encoder-0.209.1/README.md +80 -0
  308. data/ext/cargo-vendor/wasm-encoder-0.209.1/src/component/aliases.rs +160 -0
  309. data/ext/cargo-vendor/wasm-encoder-0.209.1/src/component/builder.rs +455 -0
  310. data/ext/cargo-vendor/wasm-encoder-0.209.1/src/component/canonicals.rs +159 -0
  311. data/ext/cargo-vendor/wasm-encoder-0.209.1/src/component/components.rs +29 -0
  312. data/ext/cargo-vendor/wasm-encoder-0.209.1/src/component/exports.rs +124 -0
  313. data/ext/cargo-vendor/wasm-encoder-0.209.1/src/component/imports.rs +175 -0
  314. data/ext/cargo-vendor/wasm-encoder-0.209.1/src/component/instances.rs +200 -0
  315. data/ext/cargo-vendor/wasm-encoder-0.209.1/src/component/modules.rs +29 -0
  316. data/ext/cargo-vendor/wasm-encoder-0.209.1/src/component/names.rs +149 -0
  317. data/ext/cargo-vendor/wasm-encoder-0.209.1/src/component/start.rs +52 -0
  318. data/ext/cargo-vendor/wasm-encoder-0.209.1/src/component/types.rs +792 -0
  319. data/ext/cargo-vendor/wasm-encoder-0.209.1/src/component.rs +168 -0
  320. data/ext/cargo-vendor/wasm-encoder-0.209.1/src/core/code.rs +3595 -0
  321. data/ext/cargo-vendor/wasm-encoder-0.209.1/src/core/custom.rs +73 -0
  322. data/ext/cargo-vendor/wasm-encoder-0.209.1/src/core/data.rs +186 -0
  323. data/ext/cargo-vendor/wasm-encoder-0.209.1/src/core/dump.rs +627 -0
  324. data/ext/cargo-vendor/wasm-encoder-0.209.1/src/core/elements.rs +221 -0
  325. data/ext/cargo-vendor/wasm-encoder-0.209.1/src/core/exports.rs +98 -0
  326. data/ext/cargo-vendor/wasm-encoder-0.209.1/src/core/functions.rs +63 -0
  327. data/ext/cargo-vendor/wasm-encoder-0.209.1/src/core/globals.rs +112 -0
  328. data/ext/cargo-vendor/wasm-encoder-0.209.1/src/core/imports.rs +157 -0
  329. data/ext/cargo-vendor/wasm-encoder-0.209.1/src/core/linking.rs +263 -0
  330. data/ext/cargo-vendor/wasm-encoder-0.209.1/src/core/memories.rs +128 -0
  331. data/ext/cargo-vendor/wasm-encoder-0.209.1/src/core/names.rs +298 -0
  332. data/ext/cargo-vendor/wasm-encoder-0.209.1/src/core/producers.rs +181 -0
  333. data/ext/cargo-vendor/wasm-encoder-0.209.1/src/core/start.rs +39 -0
  334. data/ext/cargo-vendor/wasm-encoder-0.209.1/src/core/tables.rs +134 -0
  335. data/ext/cargo-vendor/wasm-encoder-0.209.1/src/core/tags.rs +104 -0
  336. data/ext/cargo-vendor/wasm-encoder-0.209.1/src/core/types.rs +678 -0
  337. data/ext/cargo-vendor/wasm-encoder-0.209.1/src/core.rs +168 -0
  338. data/ext/cargo-vendor/wasm-encoder-0.209.1/src/lib.rs +215 -0
  339. data/ext/cargo-vendor/wasm-encoder-0.209.1/src/raw.rs +30 -0
  340. data/ext/cargo-vendor/wasmparser-0.202.0/.cargo-checksum.json +1 -0
  341. data/ext/cargo-vendor/wasmparser-0.202.0/Cargo.lock +744 -0
  342. data/ext/cargo-vendor/wasmparser-0.202.0/Cargo.toml +66 -0
  343. data/ext/cargo-vendor/wasmparser-0.202.0/src/readers/component/types.rs +549 -0
  344. data/ext/cargo-vendor/wasmparser-0.202.0/src/validator/operators.rs +4076 -0
  345. data/ext/cargo-vendor/wasmparser-0.202.0/src/validator/types.rs +4449 -0
  346. data/ext/cargo-vendor/wasmprinter-0.202.0/.cargo-checksum.json +1 -0
  347. data/ext/cargo-vendor/wasmprinter-0.202.0/Cargo.toml +45 -0
  348. data/ext/cargo-vendor/wasmprinter-0.202.0/src/lib.rs +3202 -0
  349. data/ext/cargo-vendor/wasmprinter-0.202.0/src/operator.rs +1131 -0
  350. data/ext/cargo-vendor/wasmprinter-0.202.0/tests/all.rs +279 -0
  351. data/ext/cargo-vendor/wasmtime-20.0.2/.cargo-checksum.json +1 -0
  352. data/ext/cargo-vendor/wasmtime-20.0.2/Cargo.toml +268 -0
  353. data/ext/cargo-vendor/wasmtime-20.0.2/src/compile/code_builder.rs +201 -0
  354. data/ext/cargo-vendor/wasmtime-20.0.2/src/compile/runtime.rs +175 -0
  355. data/ext/cargo-vendor/wasmtime-20.0.2/src/compile.rs +897 -0
  356. data/ext/cargo-vendor/wasmtime-20.0.2/src/config.rs +2695 -0
  357. data/ext/cargo-vendor/wasmtime-20.0.2/src/engine/serialization.rs +849 -0
  358. data/ext/cargo-vendor/wasmtime-20.0.2/src/engine.rs +741 -0
  359. data/ext/cargo-vendor/wasmtime-20.0.2/src/lib.rs +303 -0
  360. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/code_memory.rs +335 -0
  361. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/component/component.rs +661 -0
  362. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/component/func/host.rs +439 -0
  363. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/component/func/options.rs +554 -0
  364. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/component/func/typed.rs +2484 -0
  365. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/component/func.rs +747 -0
  366. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/component/instance.rs +804 -0
  367. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/component/linker.rs +786 -0
  368. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/component/matching.rs +217 -0
  369. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/component/mod.rs +756 -0
  370. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/component/resources.rs +1133 -0
  371. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/component/types.rs +892 -0
  372. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/component/values.rs +978 -0
  373. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/coredump.rs +336 -0
  374. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/externals/global.rs +300 -0
  375. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/externals/table.rs +480 -0
  376. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/func/typed.rs +898 -0
  377. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/func.rs +2633 -0
  378. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/gc/disabled/anyref.rs +46 -0
  379. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/gc/disabled/externref.rs +50 -0
  380. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/gc/disabled/i31.rs +14 -0
  381. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/gc/disabled/rooting.rs +222 -0
  382. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/gc/disabled.rs +17 -0
  383. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/gc/enabled/anyref.rs +472 -0
  384. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/gc/enabled/externref.rs +644 -0
  385. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/gc/enabled/i31.rs +345 -0
  386. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/gc/enabled/rooting.rs +1543 -0
  387. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/gc/enabled.rs +12 -0
  388. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/gc.rs +87 -0
  389. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/instance.rs +992 -0
  390. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/instantiate.rs +345 -0
  391. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/linker.rs +1521 -0
  392. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/memory.rs +999 -0
  393. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/module/registry.rs +354 -0
  394. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/module.rs +1295 -0
  395. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/profiling.rs +224 -0
  396. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/store/data.rs +289 -0
  397. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/store.rs +2796 -0
  398. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/trampoline/func.rs +138 -0
  399. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/trampoline/global.rs +68 -0
  400. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/trampoline/memory.rs +286 -0
  401. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/trampoline/table.rs +34 -0
  402. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/trap.rs +641 -0
  403. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/type_registry.rs +632 -0
  404. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/types/matching.rs +367 -0
  405. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/types.rs +1378 -0
  406. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/v128.rs +131 -0
  407. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/values.rs +945 -0
  408. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime.rs +112 -0
  409. data/ext/cargo-vendor/wasmtime-asm-macros-20.0.2/.cargo-checksum.json +1 -0
  410. data/ext/cargo-vendor/wasmtime-asm-macros-20.0.2/Cargo.toml +22 -0
  411. data/ext/cargo-vendor/wasmtime-cache-20.0.2/.cargo-checksum.json +1 -0
  412. data/ext/cargo-vendor/wasmtime-cache-20.0.2/Cargo.toml +81 -0
  413. data/ext/cargo-vendor/wasmtime-component-macro-20.0.2/.cargo-checksum.json +1 -0
  414. data/ext/cargo-vendor/wasmtime-component-macro-20.0.2/Cargo.toml +67 -0
  415. data/ext/cargo-vendor/wasmtime-component-macro-20.0.2/src/component.rs +1295 -0
  416. data/ext/cargo-vendor/wasmtime-component-macro-20.0.2/tests/codegen/dead-code.wit +27 -0
  417. data/ext/cargo-vendor/wasmtime-component-macro-20.0.2/tests/codegen.rs +342 -0
  418. data/ext/cargo-vendor/wasmtime-component-util-20.0.2/.cargo-checksum.json +1 -0
  419. data/ext/cargo-vendor/wasmtime-component-util-20.0.2/Cargo.toml +25 -0
  420. data/ext/cargo-vendor/wasmtime-cranelift-20.0.2/.cargo-checksum.json +1 -0
  421. data/ext/cargo-vendor/wasmtime-cranelift-20.0.2/Cargo.toml +114 -0
  422. data/ext/cargo-vendor/wasmtime-cranelift-20.0.2/src/builder.rs +127 -0
  423. data/ext/cargo-vendor/wasmtime-cranelift-20.0.2/src/compiled_function.rs +225 -0
  424. data/ext/cargo-vendor/wasmtime-cranelift-20.0.2/src/compiler/component.rs +962 -0
  425. data/ext/cargo-vendor/wasmtime-cranelift-20.0.2/src/compiler.rs +1369 -0
  426. data/ext/cargo-vendor/wasmtime-cranelift-20.0.2/src/debug/transform/address_transform.rs +783 -0
  427. data/ext/cargo-vendor/wasmtime-cranelift-20.0.2/src/debug/transform/expression.rs +1252 -0
  428. data/ext/cargo-vendor/wasmtime-cranelift-20.0.2/src/func_environ.rs +2672 -0
  429. data/ext/cargo-vendor/wasmtime-cranelift-20.0.2/src/gc/disabled.rs +116 -0
  430. data/ext/cargo-vendor/wasmtime-cranelift-20.0.2/src/gc/enabled.rs +649 -0
  431. data/ext/cargo-vendor/wasmtime-cranelift-20.0.2/src/gc.rs +198 -0
  432. data/ext/cargo-vendor/wasmtime-cranelift-20.0.2/src/lib.rs +505 -0
  433. data/ext/cargo-vendor/wasmtime-cranelift-20.0.2/src/obj.rs +545 -0
  434. data/ext/cargo-vendor/wasmtime-environ-20.0.2/.cargo-checksum.json +1 -0
  435. data/ext/cargo-vendor/wasmtime-environ-20.0.2/Cargo.lock +782 -0
  436. data/ext/cargo-vendor/wasmtime-environ-20.0.2/Cargo.toml +144 -0
  437. data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/address_map.rs +125 -0
  438. data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/builtin.rs +184 -0
  439. data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/compile/address_map.rs +72 -0
  440. data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/compile/mod.rs +389 -0
  441. data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/compile/module_artifacts.rs +300 -0
  442. data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/compile/trap_encoding.rs +69 -0
  443. data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/component/artifacts.rs +72 -0
  444. data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/component/compiler.rs +19 -0
  445. data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/component/info.rs +672 -0
  446. data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/component/translate/adapt.rs +459 -0
  447. data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/component/translate/inline.rs +1332 -0
  448. data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/component/types.rs +1972 -0
  449. data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/component.rs +103 -0
  450. data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/fact/trampoline.rs +3233 -0
  451. data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/fact/transcode.rs +89 -0
  452. data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/fact.rs +711 -0
  453. data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/gc.rs +60 -0
  454. data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/lib.rs +70 -0
  455. data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/module.rs +780 -0
  456. data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/module_artifacts.rs +145 -0
  457. data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/module_environ.rs +1288 -0
  458. data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/obj.rs +173 -0
  459. data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/trap_encoding.rs +188 -0
  460. data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/tunables.rs +158 -0
  461. data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/vmoffsets.rs +952 -0
  462. data/ext/cargo-vendor/wasmtime-fiber-20.0.2/.cargo-checksum.json +1 -0
  463. data/ext/cargo-vendor/wasmtime-fiber-20.0.2/Cargo.toml +63 -0
  464. data/ext/cargo-vendor/wasmtime-fiber-20.0.2/src/unix.rs +265 -0
  465. data/ext/cargo-vendor/wasmtime-jit-debug-20.0.2/.cargo-checksum.json +1 -0
  466. data/ext/cargo-vendor/wasmtime-jit-debug-20.0.2/Cargo.toml +67 -0
  467. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-20.0.2/.cargo-checksum.json +1 -0
  468. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-20.0.2/Cargo.toml +47 -0
  469. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/.cargo-checksum.json +1 -0
  470. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/Cargo.toml +147 -0
  471. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/build.rs +24 -0
  472. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/arch/aarch64.rs +76 -0
  473. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/arch/riscv64.rs +41 -0
  474. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/arch/s390x.S +70 -0
  475. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/arch/s390x.rs +34 -0
  476. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/arch/x86_64.rs +41 -0
  477. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/async_yield.rs +35 -0
  478. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/component/libcalls.rs +571 -0
  479. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/component.rs +860 -0
  480. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/export.rs +108 -0
  481. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/gc/disabled.rs +23 -0
  482. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/gc/enabled/drc.rs +963 -0
  483. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/gc/enabled/externref.rs +115 -0
  484. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/gc/enabled/free_list.rs +767 -0
  485. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/gc/enabled.rs +18 -0
  486. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/gc/gc_ref.rs +486 -0
  487. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/gc/gc_runtime.rs +503 -0
  488. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/gc/host_data.rs +81 -0
  489. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/gc/i31.rs +86 -0
  490. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/gc.rs +244 -0
  491. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/instance/allocator/on_demand.rs +217 -0
  492. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/instance/allocator/pooling/gc_heap_pool.rs +92 -0
  493. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/instance/allocator/pooling/table_pool.rs +231 -0
  494. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/instance/allocator/pooling.rs +699 -0
  495. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/instance/allocator.rs +780 -0
  496. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/instance.rs +1566 -0
  497. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/lib.rs +289 -0
  498. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/libcalls.rs +777 -0
  499. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/memory.rs +751 -0
  500. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/send_sync_ptr.rs +106 -0
  501. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/sys/custom/mmap.rs +111 -0
  502. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/sys/custom/traphandlers.rs +55 -0
  503. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/sys/miri/mmap.rs +94 -0
  504. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/sys/unix/machports.rs +416 -0
  505. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/sys/unix/mmap.rs +151 -0
  506. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/sys/unix/signals.rs +401 -0
  507. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/sys/windows/traphandlers.rs +104 -0
  508. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/table.rs +851 -0
  509. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/threads/mod.rs +12 -0
  510. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/threads/shared_memory.rs +230 -0
  511. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/threads/shared_memory_disabled.rs +100 -0
  512. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/traphandlers/coredump_disabled.rs +16 -0
  513. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/traphandlers/coredump_enabled.rs +40 -0
  514. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/traphandlers.rs +785 -0
  515. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/vmcontext.rs +1293 -0
  516. data/ext/cargo-vendor/wasmtime-slab-20.0.2/.cargo-checksum.json +1 -0
  517. data/ext/cargo-vendor/wasmtime-slab-20.0.2/Cargo.toml +21 -0
  518. data/ext/cargo-vendor/wasmtime-slab-20.0.2/src/lib.rs +493 -0
  519. data/ext/cargo-vendor/wasmtime-types-20.0.2/.cargo-checksum.json +1 -0
  520. data/ext/cargo-vendor/wasmtime-types-20.0.2/Cargo.toml +36 -0
  521. data/ext/cargo-vendor/wasmtime-types-20.0.2/src/lib.rs +832 -0
  522. data/ext/cargo-vendor/wasmtime-versioned-export-macros-20.0.2/.cargo-checksum.json +1 -0
  523. data/ext/cargo-vendor/wasmtime-versioned-export-macros-20.0.2/Cargo.toml +32 -0
  524. data/ext/cargo-vendor/wasmtime-wasi-20.0.2/.cargo-checksum.json +1 -0
  525. data/ext/cargo-vendor/wasmtime-wasi-20.0.2/Cargo.toml +194 -0
  526. data/ext/cargo-vendor/wasmtime-wasi-20.0.2/src/bindings.rs +283 -0
  527. data/ext/cargo-vendor/wasmtime-wasi-20.0.2/src/ctx.rs +659 -0
  528. data/ext/cargo-vendor/wasmtime-wasi-20.0.2/src/filesystem.rs +433 -0
  529. data/ext/cargo-vendor/wasmtime-wasi-20.0.2/src/host/filesystem/sync.rs +518 -0
  530. data/ext/cargo-vendor/wasmtime-wasi-20.0.2/src/host/filesystem.rs +1079 -0
  531. data/ext/cargo-vendor/wasmtime-wasi-20.0.2/src/host/io.rs +367 -0
  532. data/ext/cargo-vendor/wasmtime-wasi-20.0.2/src/host/network.rs +539 -0
  533. data/ext/cargo-vendor/wasmtime-wasi-20.0.2/src/host/tcp.rs +306 -0
  534. data/ext/cargo-vendor/wasmtime-wasi-20.0.2/src/ip_name_lookup.rs +126 -0
  535. data/ext/cargo-vendor/wasmtime-wasi-20.0.2/src/lib.rs +404 -0
  536. data/ext/cargo-vendor/wasmtime-wasi-20.0.2/src/network.rs +107 -0
  537. data/ext/cargo-vendor/wasmtime-wasi-20.0.2/src/pipe.rs +826 -0
  538. data/ext/cargo-vendor/wasmtime-wasi-20.0.2/src/poll.rs +233 -0
  539. data/ext/cargo-vendor/wasmtime-wasi-20.0.2/src/preview0.rs +879 -0
  540. data/ext/cargo-vendor/wasmtime-wasi-20.0.2/src/preview1.rs +2601 -0
  541. data/ext/cargo-vendor/wasmtime-wasi-20.0.2/src/runtime.rs +175 -0
  542. data/ext/cargo-vendor/wasmtime-wasi-20.0.2/src/stdio/worker_thread_stdin.rs +177 -0
  543. data/ext/cargo-vendor/wasmtime-wasi-20.0.2/src/stdio.rs +507 -0
  544. data/ext/cargo-vendor/wasmtime-wasi-20.0.2/src/tcp.rs +847 -0
  545. data/ext/cargo-vendor/wasmtime-wasi-20.0.2/src/udp.rs +125 -0
  546. data/ext/cargo-vendor/wasmtime-wasi-20.0.2/src/write_stream.rs +203 -0
  547. data/ext/cargo-vendor/wasmtime-wasi-20.0.2/tests/all/api.rs +194 -0
  548. data/ext/cargo-vendor/wasmtime-wasi-20.0.2/tests/all/async_.rs +397 -0
  549. data/ext/cargo-vendor/wasmtime-wasi-20.0.2/tests/all/main.rs +91 -0
  550. data/ext/cargo-vendor/wasmtime-wasi-20.0.2/tests/all/preview1.rs +251 -0
  551. data/ext/cargo-vendor/wasmtime-wasi-20.0.2/tests/all/sync.rs +333 -0
  552. data/ext/cargo-vendor/wasmtime-wasi-20.0.2/wit/deps/io/poll.wit +41 -0
  553. data/ext/cargo-vendor/wasmtime-winch-20.0.2/.cargo-checksum.json +1 -0
  554. data/ext/cargo-vendor/wasmtime-winch-20.0.2/Cargo.toml +81 -0
  555. data/ext/cargo-vendor/wasmtime-winch-20.0.2/src/builder.rs +85 -0
  556. data/ext/cargo-vendor/wasmtime-winch-20.0.2/src/compiler.rs +257 -0
  557. data/ext/cargo-vendor/wasmtime-wit-bindgen-20.0.2/.cargo-checksum.json +1 -0
  558. data/ext/cargo-vendor/wasmtime-wit-bindgen-20.0.2/Cargo.toml +41 -0
  559. data/ext/cargo-vendor/wasmtime-wit-bindgen-20.0.2/src/lib.rs +2213 -0
  560. data/ext/cargo-vendor/wasmtime-wit-bindgen-20.0.2/src/rust.rs +421 -0
  561. data/ext/cargo-vendor/wasmtime-wit-bindgen-20.0.2/src/types.rs +202 -0
  562. data/ext/cargo-vendor/wast-209.0.1/.cargo-checksum.json +1 -0
  563. data/ext/cargo-vendor/wast-209.0.1/Cargo.toml +60 -0
  564. data/ext/cargo-vendor/wast-209.0.1/src/component/binary.rs +1000 -0
  565. data/ext/cargo-vendor/wast-209.0.1/src/component/resolve.rs +999 -0
  566. data/ext/cargo-vendor/wast-209.0.1/src/component/types.rs +999 -0
  567. data/ext/cargo-vendor/wast-209.0.1/src/component/wast.rs +160 -0
  568. data/ext/cargo-vendor/wast-209.0.1/src/core/binary.rs +1396 -0
  569. data/ext/cargo-vendor/wast-209.0.1/src/core/expr.rs +2016 -0
  570. data/ext/cargo-vendor/wast-209.0.1/src/core/func.rs +136 -0
  571. data/ext/cargo-vendor/wast-209.0.1/src/core/memory.rs +284 -0
  572. data/ext/cargo-vendor/wast-209.0.1/src/core/resolve/deinline_import_export.rs +235 -0
  573. data/ext/cargo-vendor/wast-209.0.1/src/core/resolve/names.rs +751 -0
  574. data/ext/cargo-vendor/wast-209.0.1/src/core/resolve/types.rs +267 -0
  575. data/ext/cargo-vendor/wast-209.0.1/src/core/table.rs +302 -0
  576. data/ext/cargo-vendor/wast-209.0.1/src/core/types.rs +901 -0
  577. data/ext/cargo-vendor/wast-209.0.1/src/core/wast.rs +256 -0
  578. data/ext/cargo-vendor/wast-209.0.1/src/lexer.rs +1572 -0
  579. data/ext/cargo-vendor/wast-209.0.1/src/lib.rs +551 -0
  580. data/ext/cargo-vendor/wast-209.0.1/src/names.rs +67 -0
  581. data/ext/cargo-vendor/wast-209.0.1/src/parser.rs +1414 -0
  582. data/ext/cargo-vendor/wast-209.0.1/src/token.rs +728 -0
  583. data/ext/cargo-vendor/wast-209.0.1/src/wast.rs +459 -0
  584. data/ext/cargo-vendor/wast-209.0.1/src/wat.rs +71 -0
  585. data/ext/cargo-vendor/wast-209.0.1/tests/annotations.rs +200 -0
  586. data/ext/cargo-vendor/wast-209.0.1/tests/parse-fail.rs +80 -0
  587. data/ext/cargo-vendor/wat-1.209.1/.cargo-checksum.json +1 -0
  588. data/ext/cargo-vendor/wat-1.209.1/Cargo.toml +34 -0
  589. data/ext/cargo-vendor/web-time-1.1.0/.cargo-checksum.json +1 -0
  590. data/ext/cargo-vendor/web-time-1.1.0/CHANGELOG.md +74 -0
  591. data/ext/cargo-vendor/web-time-1.1.0/Cargo.lock +393 -0
  592. data/ext/cargo-vendor/web-time-1.1.0/Cargo.toml +246 -0
  593. data/ext/cargo-vendor/web-time-1.1.0/LICENSE-APACHE +201 -0
  594. data/ext/cargo-vendor/web-time-1.1.0/LICENSE-MIT +21 -0
  595. data/ext/cargo-vendor/web-time-1.1.0/src/lib.rs +144 -0
  596. data/ext/cargo-vendor/web-time-1.1.0/src/time/instant.rs +242 -0
  597. data/ext/cargo-vendor/web-time-1.1.0/src/time/js.rs +39 -0
  598. data/ext/cargo-vendor/web-time-1.1.0/src/time/mod.rs +15 -0
  599. data/ext/cargo-vendor/web-time-1.1.0/src/time/serde.rs +177 -0
  600. data/ext/cargo-vendor/web-time-1.1.0/src/time/system_time.rs +111 -0
  601. data/ext/cargo-vendor/web-time-1.1.0/src/web.rs +49 -0
  602. data/ext/cargo-vendor/wiggle-20.0.2/.cargo-checksum.json +1 -0
  603. data/ext/cargo-vendor/wiggle-20.0.2/Cargo.toml +122 -0
  604. data/ext/cargo-vendor/wiggle-20.0.2/src/borrow.rs +113 -0
  605. data/ext/cargo-vendor/wiggle-20.0.2/src/guest_type.rs +237 -0
  606. data/ext/cargo-vendor/wiggle-20.0.2/src/lib.rs +1184 -0
  607. data/ext/cargo-vendor/wiggle-20.0.2/src/wasmtime.rs +97 -0
  608. data/ext/cargo-vendor/wiggle-generate-20.0.2/.cargo-checksum.json +1 -0
  609. data/ext/cargo-vendor/wiggle-generate-20.0.2/Cargo.toml +65 -0
  610. data/ext/cargo-vendor/wiggle-macro-20.0.2/.cargo-checksum.json +1 -0
  611. data/ext/cargo-vendor/wiggle-macro-20.0.2/Cargo.toml +55 -0
  612. data/ext/cargo-vendor/wiggle-macro-20.0.2/LICENSE +220 -0
  613. data/ext/cargo-vendor/winch-codegen-0.18.2/.cargo-checksum.json +1 -0
  614. data/ext/cargo-vendor/winch-codegen-0.18.2/Cargo.toml +81 -0
  615. data/ext/cargo-vendor/winch-codegen-0.18.2/src/abi/mod.rs +671 -0
  616. data/ext/cargo-vendor/winch-codegen-0.18.2/src/codegen/bounds.rs +220 -0
  617. data/ext/cargo-vendor/winch-codegen-0.18.2/src/codegen/builtin.rs +263 -0
  618. data/ext/cargo-vendor/winch-codegen-0.18.2/src/codegen/call.rs +413 -0
  619. data/ext/cargo-vendor/winch-codegen-0.18.2/src/codegen/env.rs +435 -0
  620. data/ext/cargo-vendor/winch-codegen-0.18.2/src/codegen/mod.rs +756 -0
  621. data/ext/cargo-vendor/winch-codegen-0.18.2/src/isa/aarch64/abi.rs +291 -0
  622. data/ext/cargo-vendor/winch-codegen-0.18.2/src/isa/aarch64/asm.rs +252 -0
  623. data/ext/cargo-vendor/winch-codegen-0.18.2/src/isa/aarch64/masm.rs +573 -0
  624. data/ext/cargo-vendor/winch-codegen-0.18.2/src/isa/aarch64/mod.rs +154 -0
  625. data/ext/cargo-vendor/winch-codegen-0.18.2/src/isa/aarch64/regs.rs +149 -0
  626. data/ext/cargo-vendor/winch-codegen-0.18.2/src/isa/mod.rs +223 -0
  627. data/ext/cargo-vendor/winch-codegen-0.18.2/src/isa/x64/abi.rs +517 -0
  628. data/ext/cargo-vendor/winch-codegen-0.18.2/src/isa/x64/asm.rs +1423 -0
  629. data/ext/cargo-vendor/winch-codegen-0.18.2/src/isa/x64/masm.rs +1256 -0
  630. data/ext/cargo-vendor/winch-codegen-0.18.2/src/isa/x64/mod.rs +169 -0
  631. data/ext/cargo-vendor/winch-codegen-0.18.2/src/lib.rs +19 -0
  632. data/ext/cargo-vendor/winch-codegen-0.18.2/src/masm.rs +947 -0
  633. data/ext/cargo-vendor/winch-codegen-0.18.2/src/visitor.rs +2149 -0
  634. data/ext/cargo-vendor/wit-parser-0.202.0/.cargo-checksum.json +1 -0
  635. data/ext/cargo-vendor/wit-parser-0.202.0/Cargo.toml +101 -0
  636. data/ext/cargo-vendor/wit-parser-0.202.0/src/abi.rs +309 -0
  637. data/ext/cargo-vendor/wit-parser-0.202.0/src/ast/lex.rs +747 -0
  638. data/ext/cargo-vendor/wit-parser-0.202.0/src/ast/resolve.rs +1443 -0
  639. data/ext/cargo-vendor/wit-parser-0.202.0/src/ast.rs +1348 -0
  640. data/ext/cargo-vendor/wit-parser-0.202.0/src/decoding.rs +1764 -0
  641. data/ext/cargo-vendor/wit-parser-0.202.0/src/lib.rs +765 -0
  642. data/ext/cargo-vendor/wit-parser-0.202.0/src/resolve.rs +2240 -0
  643. data/ext/cargo-vendor/wit-parser-0.202.0/src/serde_.rs +108 -0
  644. data/ext/cargo-vendor/wit-parser-0.202.0/src/sizealign.rs +179 -0
  645. data/ext/cargo-vendor/wit-parser-0.202.0/tests/all.rs +153 -0
  646. data/ext/cargo-vendor/wit-parser-0.202.0/tests/ui/functions.wit +14 -0
  647. data/ext/cargo-vendor/wit-parser-0.202.0/tests/ui/functions.wit.json +166 -0
  648. data/ext/cargo-vendor/wit-parser-0.202.0/tests/ui/resources-multiple.wit +20 -0
  649. data/ext/cargo-vendor/wit-parser-0.202.0/tests/ui/resources-multiple.wit.json +281 -0
  650. data/ext/cargo-vendor/wit-parser-0.202.0/tests/ui/types.wit +60 -0
  651. data/ext/cargo-vendor/wit-parser-0.202.0/tests/ui/types.wit.json +774 -0
  652. data/ext/cargo-vendor/wit-parser-0.202.0/tests/ui/union-fuzz-2.wit +12 -0
  653. data/ext/cargo-vendor/wit-parser-0.202.0/tests/ui/union-fuzz-2.wit.json +72 -0
  654. data/ext/cargo-vendor/wit-parser-0.202.0/tests/ui/wasi.wit +178 -0
  655. data/ext/src/ruby_api/convert.rs +15 -7
  656. data/ext/src/ruby_api/func.rs +2 -2
  657. data/ext/src/ruby_api/global.rs +2 -2
  658. data/ext/src/ruby_api/params.rs +5 -5
  659. data/ext/src/ruby_api/table.rs +3 -3
  660. data/lib/wasmtime/version.rb +1 -1
  661. metadata +2010 -1881
  662. data/ext/cargo-vendor/ahash-0.8.7/.cargo-checksum.json +0 -1
  663. data/ext/cargo-vendor/ahash-0.8.7/Cargo.toml +0 -161
  664. data/ext/cargo-vendor/ahash-0.8.7/src/aes_hash.rs +0 -434
  665. data/ext/cargo-vendor/ahash-0.8.7/src/fallback_hash.rs +0 -368
  666. data/ext/cargo-vendor/ahash-0.8.7/src/hash_quality_test.rs +0 -532
  667. data/ext/cargo-vendor/ahash-0.8.7/src/lib.rs +0 -397
  668. data/ext/cargo-vendor/ahash-0.8.7/src/operations.rs +0 -372
  669. data/ext/cargo-vendor/ahash-0.8.7/src/random_state.rs +0 -528
  670. data/ext/cargo-vendor/ahash-0.8.7/tests/bench.rs +0 -199
  671. data/ext/cargo-vendor/ahash-0.8.7/tests/map_tests.rs +0 -234
  672. data/ext/cargo-vendor/anyhow-1.0.79/.cargo-checksum.json +0 -1
  673. data/ext/cargo-vendor/anyhow-1.0.79/Cargo.toml +0 -67
  674. data/ext/cargo-vendor/anyhow-1.0.79/README.md +0 -179
  675. data/ext/cargo-vendor/anyhow-1.0.79/build.rs +0 -167
  676. data/ext/cargo-vendor/anyhow-1.0.79/src/backtrace.rs +0 -405
  677. data/ext/cargo-vendor/anyhow-1.0.79/src/chain.rs +0 -102
  678. data/ext/cargo-vendor/anyhow-1.0.79/src/fmt.rs +0 -156
  679. data/ext/cargo-vendor/anyhow-1.0.79/src/kind.rs +0 -119
  680. data/ext/cargo-vendor/anyhow-1.0.79/src/lib.rs +0 -698
  681. data/ext/cargo-vendor/anyhow-1.0.79/src/macros.rs +0 -231
  682. data/ext/cargo-vendor/anyhow-1.0.79/src/wrapper.rs +0 -81
  683. data/ext/cargo-vendor/anyhow-1.0.79/tests/test_ensure.rs +0 -722
  684. data/ext/cargo-vendor/anyhow-1.0.79/tests/test_macros.rs +0 -80
  685. data/ext/cargo-vendor/anyhow-1.0.79/tests/test_repr.rs +0 -31
  686. data/ext/cargo-vendor/anyhow-1.0.79/tests/ui/no-impl.stderr +0 -31
  687. data/ext/cargo-vendor/async-timer-1.0.0-beta.11/.cargo-checksum.json +0 -1
  688. data/ext/cargo-vendor/async-timer-1.0.0-beta.11/Cargo.toml +0 -80
  689. data/ext/cargo-vendor/async-timer-1.0.0-beta.11/README.md +0 -60
  690. data/ext/cargo-vendor/async-timer-1.0.0-beta.11/src/interval.rs +0 -87
  691. data/ext/cargo-vendor/async-timer-1.0.0-beta.11/src/lib.rs +0 -60
  692. data/ext/cargo-vendor/async-timer-1.0.0-beta.11/src/state.rs +0 -274
  693. data/ext/cargo-vendor/async-timer-1.0.0-beta.11/src/timer/web.rs +0 -177
  694. data/ext/cargo-vendor/async-timer-1.0.0-beta.11/src/timer/win.rs +0 -192
  695. data/ext/cargo-vendor/async-timer-1.0.0-beta.11/tests/interval.rs +0 -23
  696. data/ext/cargo-vendor/cap-primitives-3.0.0/.cargo-checksum.json +0 -1
  697. data/ext/cargo-vendor/cap-primitives-3.0.0/Cargo.toml +0 -84
  698. data/ext/cargo-vendor/cap-primitives-3.0.0/src/rustix/fs/metadata_ext.rs +0 -417
  699. data/ext/cargo-vendor/cap-std-3.0.0/.cargo-checksum.json +0 -1
  700. data/ext/cargo-vendor/cap-std-3.0.0/Cargo.toml +0 -67
  701. data/ext/cargo-vendor/cap-std-3.0.0/src/fs/dir.rs +0 -848
  702. data/ext/cargo-vendor/cap-std-3.0.0/src/fs_utf8/dir.rs +0 -790
  703. data/ext/cargo-vendor/cranelift-bforest-0.106.2/.cargo-checksum.json +0 -1
  704. data/ext/cargo-vendor/cranelift-bforest-0.106.2/Cargo.toml +0 -40
  705. data/ext/cargo-vendor/cranelift-codegen-0.106.2/.cargo-checksum.json +0 -1
  706. data/ext/cargo-vendor/cranelift-codegen-0.106.2/Cargo.toml +0 -175
  707. data/ext/cargo-vendor/cranelift-codegen-0.106.2/build.rs +0 -395
  708. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/alias_analysis.rs +0 -409
  709. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/binemit/mod.rs +0 -171
  710. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/bitset.rs +0 -165
  711. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/context.rs +0 -384
  712. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/egraph/elaborate.rs +0 -836
  713. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/egraph.rs +0 -702
  714. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/inst_predicates.rs +0 -217
  715. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/ir/constant.rs +0 -462
  716. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/ir/dfg.rs +0 -1734
  717. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/ir/entities.rs +0 -598
  718. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/ir/function.rs +0 -500
  719. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/ir/instructions.rs +0 -1000
  720. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/ir/memflags.rs +0 -310
  721. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/ir/mod.rs +0 -110
  722. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/ir/table.rs +0 -40
  723. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/ir/trapcode.rs +0 -144
  724. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/ir/types.rs +0 -629
  725. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/aarch64/abi.rs +0 -1707
  726. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/aarch64/inst/emit.rs +0 -3958
  727. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/aarch64/inst/mod.rs +0 -3082
  728. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/aarch64/inst.isle +0 -4197
  729. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/aarch64/lower/isle.rs +0 -879
  730. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/aarch64/lower.isle +0 -2917
  731. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/aarch64/mod.rs +0 -241
  732. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/aarch64/pcc.rs +0 -565
  733. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/call_conv.rs +0 -119
  734. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/riscv64/abi.rs +0 -1097
  735. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/riscv64/inst/args.rs +0 -1974
  736. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/riscv64/inst/emit.rs +0 -3485
  737. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/riscv64/inst/encode.rs +0 -654
  738. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/riscv64/inst.isle +0 -2928
  739. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/riscv64/lower/isle.rs +0 -620
  740. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/riscv64/lower.isle +0 -2864
  741. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/s390x/abi.rs +0 -1041
  742. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/s390x/inst/args.rs +0 -355
  743. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/s390x/inst/emit.rs +0 -3663
  744. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/s390x/inst.isle +0 -5031
  745. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/s390x/lower.isle +0 -3979
  746. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/x64/abi.rs +0 -1303
  747. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/x64/encoding/evex.rs +0 -749
  748. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/x64/encoding/rex.rs +0 -598
  749. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/x64/encoding/vex.rs +0 -492
  750. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/x64/inst/args.rs +0 -2269
  751. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/x64/inst/emit.rs +0 -4390
  752. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/x64/inst/emit_state.rs +0 -72
  753. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/x64/inst/mod.rs +0 -2852
  754. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/x64/inst.isle +0 -5232
  755. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/x64/lower/isle.rs +0 -1065
  756. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/x64/lower.isle +0 -4770
  757. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/x64/lower.rs +0 -353
  758. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/x64/mod.rs +0 -233
  759. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/x64/pcc.rs +0 -939
  760. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/legalizer/mod.rs +0 -356
  761. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/legalizer/table.rs +0 -114
  762. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/machinst/abi.rs +0 -2657
  763. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/machinst/buffer.rs +0 -2509
  764. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/machinst/inst_common.rs +0 -74
  765. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/machinst/isle.rs +0 -914
  766. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/machinst/lower.rs +0 -1443
  767. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/machinst/mod.rs +0 -558
  768. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/machinst/pcc.rs +0 -159
  769. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/machinst/vcode.rs +0 -1809
  770. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/nan_canonicalization.rs +0 -106
  771. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/opts/cprop.isle +0 -266
  772. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/opts.rs +0 -284
  773. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/prelude.isle +0 -641
  774. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/result.rs +0 -108
  775. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/settings.rs +0 -602
  776. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/verifier/mod.rs +0 -2033
  777. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/write.rs +0 -647
  778. data/ext/cargo-vendor/cranelift-codegen-meta-0.106.2/.cargo-checksum.json +0 -1
  779. data/ext/cargo-vendor/cranelift-codegen-meta-0.106.2/Cargo.toml +0 -35
  780. data/ext/cargo-vendor/cranelift-codegen-meta-0.106.2/src/shared/entities.rs +0 -106
  781. data/ext/cargo-vendor/cranelift-codegen-meta-0.106.2/src/shared/formats.rs +0 -213
  782. data/ext/cargo-vendor/cranelift-codegen-meta-0.106.2/src/shared/instructions.rs +0 -3810
  783. data/ext/cargo-vendor/cranelift-codegen-shared-0.106.2/.cargo-checksum.json +0 -1
  784. data/ext/cargo-vendor/cranelift-codegen-shared-0.106.2/Cargo.toml +0 -22
  785. data/ext/cargo-vendor/cranelift-control-0.106.2/.cargo-checksum.json +0 -1
  786. data/ext/cargo-vendor/cranelift-control-0.106.2/Cargo.toml +0 -30
  787. data/ext/cargo-vendor/cranelift-entity-0.106.2/.cargo-checksum.json +0 -1
  788. data/ext/cargo-vendor/cranelift-entity-0.106.2/Cargo.toml +0 -50
  789. data/ext/cargo-vendor/cranelift-frontend-0.106.2/.cargo-checksum.json +0 -1
  790. data/ext/cargo-vendor/cranelift-frontend-0.106.2/Cargo.toml +0 -68
  791. data/ext/cargo-vendor/cranelift-isle-0.106.2/.cargo-checksum.json +0 -1
  792. data/ext/cargo-vendor/cranelift-isle-0.106.2/Cargo.toml +0 -46
  793. data/ext/cargo-vendor/cranelift-native-0.106.2/.cargo-checksum.json +0 -1
  794. data/ext/cargo-vendor/cranelift-native-0.106.2/Cargo.toml +0 -43
  795. data/ext/cargo-vendor/cranelift-wasm-0.106.2/.cargo-checksum.json +0 -1
  796. data/ext/cargo-vendor/cranelift-wasm-0.106.2/Cargo.toml +0 -106
  797. data/ext/cargo-vendor/cranelift-wasm-0.106.2/src/code_translator.rs +0 -3680
  798. data/ext/cargo-vendor/cranelift-wasm-0.106.2/src/environ/dummy.rs +0 -952
  799. data/ext/cargo-vendor/cranelift-wasm-0.106.2/src/environ/mod.rs +0 -12
  800. data/ext/cargo-vendor/cranelift-wasm-0.106.2/src/environ/spec.rs +0 -952
  801. data/ext/cargo-vendor/cranelift-wasm-0.106.2/src/func_translator.rs +0 -432
  802. data/ext/cargo-vendor/cranelift-wasm-0.106.2/src/lib.rs +0 -62
  803. data/ext/cargo-vendor/cranelift-wasm-0.106.2/src/state.rs +0 -542
  804. data/ext/cargo-vendor/cranelift-wasm-0.106.2/tests/wasm_testsuite.rs +0 -153
  805. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/arith.wat +0 -13
  806. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/br_table.wat +0 -30
  807. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/call-simd.wat +0 -14
  808. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/call.wat +0 -10
  809. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/embenchen_fannkuch.wat +0 -12180
  810. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/embenchen_fasta.wat +0 -12056
  811. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/embenchen_ifs.wat +0 -11505
  812. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/embenchen_primes.wat +0 -11185
  813. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/fac-multi-value.wat +0 -19
  814. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/fibonacci.wat +0 -22
  815. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/globals.wat +0 -8
  816. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/icall-simd.wat +0 -7
  817. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/icall.wat +0 -7
  818. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/if-reachability-translation-0.wat +0 -12
  819. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/if-reachability-translation-1.wat +0 -12
  820. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/if-reachability-translation-2.wat +0 -12
  821. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/if-reachability-translation-3.wat +0 -12
  822. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/if-reachability-translation-4.wat +0 -12
  823. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/if-reachability-translation-5.wat +0 -14
  824. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/if-reachability-translation-6.wat +0 -14
  825. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/if-unreachable-else-params-2.wat +0 -18
  826. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/if-unreachable-else-params.wat +0 -41
  827. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/issue-1306-name-section-with-u32-max-function-index.wasm +0 -0
  828. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/memory.wat +0 -11
  829. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/multi-0.wat +0 -3
  830. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/multi-1.wat +0 -6
  831. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/multi-10.wat +0 -10
  832. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/multi-11.wat +0 -7
  833. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/multi-12.wat +0 -9
  834. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/multi-13.wat +0 -10
  835. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/multi-14.wat +0 -10
  836. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/multi-15.wat +0 -22
  837. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/multi-16.wat +0 -9
  838. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/multi-17.wat +0 -26
  839. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/multi-2.wat +0 -6
  840. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/multi-3.wat +0 -13
  841. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/multi-4.wat +0 -13
  842. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/multi-5.wat +0 -11
  843. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/multi-6.wat +0 -11
  844. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/multi-7.wat +0 -9
  845. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/multi-8.wat +0 -12
  846. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/multi-9.wat +0 -15
  847. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/nullref.wat +0 -11
  848. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/passive-data.wat +0 -12
  849. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/pr2303.wat +0 -15
  850. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/pr2559.wat +0 -51
  851. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/ref-func-0.wat +0 -12
  852. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/rust_fannkuch.wat +0 -1723
  853. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/select.wat +0 -19
  854. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/simd-store.wat +0 -83
  855. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/simd.wat +0 -29
  856. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/table-copy.wat +0 -22
  857. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/unreachable_code.wat +0 -77
  858. data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.20/.cargo-checksum.json +0 -1
  859. data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.20/Cargo.toml +0 -49
  860. data/ext/cargo-vendor/lazy_static-1.4.0/.cargo-checksum.json +0 -1
  861. data/ext/cargo-vendor/lazy_static-1.4.0/Cargo.toml +0 -46
  862. data/ext/cargo-vendor/lazy_static-1.4.0/README.md +0 -79
  863. data/ext/cargo-vendor/lazy_static-1.4.0/src/core_lazy.rs +0 -31
  864. data/ext/cargo-vendor/lazy_static-1.4.0/src/inline_lazy.rs +0 -57
  865. data/ext/cargo-vendor/lazy_static-1.4.0/src/lib.rs +0 -215
  866. data/ext/cargo-vendor/lazy_static-1.4.0/tests/no_std.rs +0 -20
  867. data/ext/cargo-vendor/lazy_static-1.4.0/tests/test.rs +0 -164
  868. data/ext/cargo-vendor/mach-0.3.2/.cargo-checksum.json +0 -1
  869. data/ext/cargo-vendor/mach-0.3.2/Cargo.toml +0 -46
  870. data/ext/cargo-vendor/mach-0.3.2/LICENSE.md +0 -23
  871. data/ext/cargo-vendor/mach-0.3.2/README.md +0 -55
  872. data/ext/cargo-vendor/mach-0.3.2/ci/build_fail.sh +0 -7
  873. data/ext/cargo-vendor/mach-0.3.2/ci/deploy_and_run_on_ios_simulator.rs +0 -175
  874. data/ext/cargo-vendor/mach-0.3.2/ci/run.sh +0 -57
  875. data/ext/cargo-vendor/mach-0.3.2/examples/dump_process_registers.rs +0 -136
  876. data/ext/cargo-vendor/mach-0.3.2/src/exc.rs +0 -44
  877. data/ext/cargo-vendor/mach-0.3.2/src/kern_return.rs +0 -58
  878. data/ext/cargo-vendor/mach-0.3.2/src/lib.rs +0 -60
  879. data/ext/cargo-vendor/mach-0.3.2/src/mach_port.rs +0 -29
  880. data/ext/cargo-vendor/mach-0.3.2/src/message.rs +0 -248
  881. data/ext/cargo-vendor/mach-0.3.2/src/port.rs +0 -26
  882. data/ext/cargo-vendor/mach-0.3.2/src/structs.rs +0 -62
  883. data/ext/cargo-vendor/mach-0.3.2/src/task.rs +0 -41
  884. data/ext/cargo-vendor/mach-0.3.2/src/task_info.rs +0 -44
  885. data/ext/cargo-vendor/mach-0.3.2/src/thread_act.rs +0 -23
  886. data/ext/cargo-vendor/mach-0.3.2/src/thread_status.rs +0 -23
  887. data/ext/cargo-vendor/mach-0.3.2/src/traps.rs +0 -35
  888. data/ext/cargo-vendor/mach-0.3.2/src/vm.rs +0 -247
  889. data/ext/cargo-vendor/mach-0.3.2/src/vm_attributes.rs +0 -18
  890. data/ext/cargo-vendor/mach-0.3.2/src/vm_page_size.rs +0 -33
  891. data/ext/cargo-vendor/mach-0.3.2/src/vm_prot.rs +0 -14
  892. data/ext/cargo-vendor/mach-0.3.2/src/vm_purgable.rs +0 -42
  893. data/ext/cargo-vendor/mach-0.3.2/src/vm_region.rs +0 -238
  894. data/ext/cargo-vendor/mach-0.3.2/src/vm_statistics.rs +0 -78
  895. data/ext/cargo-vendor/mach-0.3.2/src/vm_sync.rs +0 -11
  896. data/ext/cargo-vendor/mach-0.3.2/src/vm_types.rs +0 -19
  897. data/ext/cargo-vendor/wasi-common-19.0.2/.cargo-checksum.json +0 -1
  898. data/ext/cargo-vendor/wasi-common-19.0.2/Cargo.toml +0 -221
  899. data/ext/cargo-vendor/wasi-common-19.0.2/src/ctx.rs +0 -128
  900. data/ext/cargo-vendor/wasi-common-19.0.2/src/lib.rs +0 -189
  901. data/ext/cargo-vendor/wasi-common-19.0.2/src/snapshots/preview_1.rs +0 -1491
  902. data/ext/cargo-vendor/wasi-common-19.0.2/tests/all/async_.rs +0 -289
  903. data/ext/cargo-vendor/wasi-common-19.0.2/tests/all/sync.rs +0 -275
  904. data/ext/cargo-vendor/wasm-encoder-0.201.0/.cargo-checksum.json +0 -1
  905. data/ext/cargo-vendor/wasm-encoder-0.201.0/Cargo.toml +0 -43
  906. data/ext/cargo-vendor/wasm-encoder-0.201.0/src/component/types.rs +0 -792
  907. data/ext/cargo-vendor/wasmparser-0.201.0/.cargo-checksum.json +0 -1
  908. data/ext/cargo-vendor/wasmparser-0.201.0/Cargo.lock +0 -744
  909. data/ext/cargo-vendor/wasmparser-0.201.0/Cargo.toml +0 -66
  910. data/ext/cargo-vendor/wasmparser-0.201.0/src/readers/component/types.rs +0 -549
  911. data/ext/cargo-vendor/wasmparser-0.201.0/src/validator/operators.rs +0 -4074
  912. data/ext/cargo-vendor/wasmparser-0.201.0/src/validator/types.rs +0 -4449
  913. data/ext/cargo-vendor/wasmprinter-0.201.0/.cargo-checksum.json +0 -1
  914. data/ext/cargo-vendor/wasmprinter-0.201.0/Cargo.toml +0 -45
  915. data/ext/cargo-vendor/wasmprinter-0.201.0/src/lib.rs +0 -3143
  916. data/ext/cargo-vendor/wasmprinter-0.201.0/src/operator.rs +0 -1110
  917. data/ext/cargo-vendor/wasmprinter-0.201.0/tests/all.rs +0 -279
  918. data/ext/cargo-vendor/wasmtime-19.0.2/.cargo-checksum.json +0 -1
  919. data/ext/cargo-vendor/wasmtime-19.0.2/Cargo.toml +0 -261
  920. data/ext/cargo-vendor/wasmtime-19.0.2/src/compile.rs +0 -835
  921. data/ext/cargo-vendor/wasmtime-19.0.2/src/config.rs +0 -2649
  922. data/ext/cargo-vendor/wasmtime-19.0.2/src/engine/serialization.rs +0 -809
  923. data/ext/cargo-vendor/wasmtime-19.0.2/src/engine.rs +0 -735
  924. data/ext/cargo-vendor/wasmtime-19.0.2/src/lib.rs +0 -293
  925. data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/code_memory.rs +0 -335
  926. data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/component/component.rs +0 -586
  927. data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/component/func/host.rs +0 -456
  928. data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/component/func/options.rs +0 -541
  929. data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/component/func/typed.rs +0 -2484
  930. data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/component/func.rs +0 -752
  931. data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/component/instance.rs +0 -818
  932. data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/component/linker.rs +0 -788
  933. data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/component/matching.rs +0 -212
  934. data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/component/mod.rs +0 -678
  935. data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/component/resources.rs +0 -1169
  936. data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/component/types.rs +0 -961
  937. data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/component/values.rs +0 -1388
  938. data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/coredump.rs +0 -321
  939. data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/externals/global.rs +0 -249
  940. data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/externals/table.rs +0 -416
  941. data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/func/typed.rs +0 -985
  942. data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/func.rs +0 -2585
  943. data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/instance.rs +0 -981
  944. data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/instantiate.rs +0 -423
  945. data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/linker.rs +0 -1518
  946. data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/memory.rs +0 -997
  947. data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/module/registry.rs +0 -360
  948. data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/module.rs +0 -1367
  949. data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/profiling.rs +0 -222
  950. data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/ref/gc_ref.rs +0 -110
  951. data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/ref/no_gc_ref.rs +0 -60
  952. data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/ref.rs +0 -9
  953. data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/store/data.rs +0 -289
  954. data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/store.rs +0 -2445
  955. data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/trampoline/func.rs +0 -144
  956. data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/trampoline/global.rs +0 -70
  957. data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/trampoline/memory.rs +0 -268
  958. data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/trampoline/table.rs +0 -20
  959. data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/trap.rs +0 -641
  960. data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/type_registry.rs +0 -640
  961. data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/types/matching.rs +0 -334
  962. data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/types.rs +0 -1236
  963. data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/v128.rs +0 -131
  964. data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/values.rs +0 -771
  965. data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime.rs +0 -112
  966. data/ext/cargo-vendor/wasmtime-asm-macros-19.0.2/.cargo-checksum.json +0 -1
  967. data/ext/cargo-vendor/wasmtime-asm-macros-19.0.2/Cargo.toml +0 -22
  968. data/ext/cargo-vendor/wasmtime-cache-19.0.2/.cargo-checksum.json +0 -1
  969. data/ext/cargo-vendor/wasmtime-cache-19.0.2/Cargo.toml +0 -81
  970. data/ext/cargo-vendor/wasmtime-component-macro-19.0.2/.cargo-checksum.json +0 -1
  971. data/ext/cargo-vendor/wasmtime-component-macro-19.0.2/Cargo.toml +0 -67
  972. data/ext/cargo-vendor/wasmtime-component-macro-19.0.2/src/component.rs +0 -1295
  973. data/ext/cargo-vendor/wasmtime-component-macro-19.0.2/tests/codegen.rs +0 -191
  974. data/ext/cargo-vendor/wasmtime-component-util-19.0.2/.cargo-checksum.json +0 -1
  975. data/ext/cargo-vendor/wasmtime-component-util-19.0.2/Cargo.toml +0 -25
  976. data/ext/cargo-vendor/wasmtime-cranelift-19.0.2/.cargo-checksum.json +0 -1
  977. data/ext/cargo-vendor/wasmtime-cranelift-19.0.2/Cargo.toml +0 -114
  978. data/ext/cargo-vendor/wasmtime-cranelift-19.0.2/src/builder.rs +0 -127
  979. data/ext/cargo-vendor/wasmtime-cranelift-19.0.2/src/compiler/component.rs +0 -960
  980. data/ext/cargo-vendor/wasmtime-cranelift-19.0.2/src/compiler.rs +0 -1316
  981. data/ext/cargo-vendor/wasmtime-cranelift-19.0.2/src/debug/transform/address_transform.rs +0 -784
  982. data/ext/cargo-vendor/wasmtime-cranelift-19.0.2/src/debug/transform/expression.rs +0 -1252
  983. data/ext/cargo-vendor/wasmtime-cranelift-19.0.2/src/func_environ.rs +0 -2846
  984. data/ext/cargo-vendor/wasmtime-cranelift-19.0.2/src/lib.rs +0 -186
  985. data/ext/cargo-vendor/wasmtime-cranelift-shared-19.0.2/.cargo-checksum.json +0 -1
  986. data/ext/cargo-vendor/wasmtime-cranelift-shared-19.0.2/Cargo.toml +0 -71
  987. data/ext/cargo-vendor/wasmtime-cranelift-shared-19.0.2/src/compiled_function.rs +0 -231
  988. data/ext/cargo-vendor/wasmtime-cranelift-shared-19.0.2/src/lib.rs +0 -130
  989. data/ext/cargo-vendor/wasmtime-cranelift-shared-19.0.2/src/obj.rs +0 -564
  990. data/ext/cargo-vendor/wasmtime-environ-19.0.2/.cargo-checksum.json +0 -1
  991. data/ext/cargo-vendor/wasmtime-environ-19.0.2/Cargo.lock +0 -782
  992. data/ext/cargo-vendor/wasmtime-environ-19.0.2/Cargo.toml +0 -141
  993. data/ext/cargo-vendor/wasmtime-environ-19.0.2/src/address_map.rs +0 -191
  994. data/ext/cargo-vendor/wasmtime-environ-19.0.2/src/builtin.rs +0 -155
  995. data/ext/cargo-vendor/wasmtime-environ-19.0.2/src/compilation.rs +0 -402
  996. data/ext/cargo-vendor/wasmtime-environ-19.0.2/src/component/artifacts.rs +0 -45
  997. data/ext/cargo-vendor/wasmtime-environ-19.0.2/src/component/compiler.rs +0 -47
  998. data/ext/cargo-vendor/wasmtime-environ-19.0.2/src/component/info.rs +0 -594
  999. data/ext/cargo-vendor/wasmtime-environ-19.0.2/src/component/translate/adapt.rs +0 -457
  1000. data/ext/cargo-vendor/wasmtime-environ-19.0.2/src/component/translate/inline.rs +0 -1332
  1001. data/ext/cargo-vendor/wasmtime-environ-19.0.2/src/component/types.rs +0 -1933
  1002. data/ext/cargo-vendor/wasmtime-environ-19.0.2/src/component.rs +0 -97
  1003. data/ext/cargo-vendor/wasmtime-environ-19.0.2/src/fact/trampoline.rs +0 -3229
  1004. data/ext/cargo-vendor/wasmtime-environ-19.0.2/src/fact/transcode.rs +0 -168
  1005. data/ext/cargo-vendor/wasmtime-environ-19.0.2/src/fact.rs +0 -713
  1006. data/ext/cargo-vendor/wasmtime-environ-19.0.2/src/lib.rs +0 -66
  1007. data/ext/cargo-vendor/wasmtime-environ-19.0.2/src/module.rs +0 -1117
  1008. data/ext/cargo-vendor/wasmtime-environ-19.0.2/src/module_artifacts.rs +0 -377
  1009. data/ext/cargo-vendor/wasmtime-environ-19.0.2/src/module_environ.rs +0 -903
  1010. data/ext/cargo-vendor/wasmtime-environ-19.0.2/src/obj.rs +0 -172
  1011. data/ext/cargo-vendor/wasmtime-environ-19.0.2/src/trap_encoding.rs +0 -245
  1012. data/ext/cargo-vendor/wasmtime-environ-19.0.2/src/tunables.rs +0 -154
  1013. data/ext/cargo-vendor/wasmtime-environ-19.0.2/src/vmoffsets.rs +0 -918
  1014. data/ext/cargo-vendor/wasmtime-fiber-19.0.2/.cargo-checksum.json +0 -1
  1015. data/ext/cargo-vendor/wasmtime-fiber-19.0.2/Cargo.toml +0 -63
  1016. data/ext/cargo-vendor/wasmtime-fiber-19.0.2/src/unix.rs +0 -265
  1017. data/ext/cargo-vendor/wasmtime-jit-debug-19.0.2/.cargo-checksum.json +0 -1
  1018. data/ext/cargo-vendor/wasmtime-jit-debug-19.0.2/Cargo.toml +0 -67
  1019. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-19.0.2/.cargo-checksum.json +0 -1
  1020. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-19.0.2/Cargo.toml +0 -46
  1021. data/ext/cargo-vendor/wasmtime-runtime-19.0.2/.cargo-checksum.json +0 -1
  1022. data/ext/cargo-vendor/wasmtime-runtime-19.0.2/Cargo.toml +0 -140
  1023. data/ext/cargo-vendor/wasmtime-runtime-19.0.2/build.rs +0 -28
  1024. data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/arch/aarch64.rs +0 -120
  1025. data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/arch/riscv64.rs +0 -88
  1026. data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/arch/s390x.S +0 -70
  1027. data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/arch/s390x.rs +0 -61
  1028. data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/arch/x86_64.rs +0 -104
  1029. data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/component/libcalls.rs +0 -572
  1030. data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/component.rs +0 -864
  1031. data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/export.rs +0 -105
  1032. data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/externref/gc.rs +0 -1058
  1033. data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/externref/no_gc.rs +0 -125
  1034. data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/externref.rs +0 -24
  1035. data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/instance/allocator/on_demand.rs +0 -196
  1036. data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/instance/allocator/pooling/table_pool.rs +0 -227
  1037. data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/instance/allocator/pooling.rs +0 -658
  1038. data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/instance/allocator.rs +0 -730
  1039. data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/instance.rs +0 -1527
  1040. data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/lib.rs +0 -264
  1041. data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/libcalls.rs +0 -776
  1042. data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/memory.rs +0 -972
  1043. data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/send_sync_ptr.rs +0 -93
  1044. data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/sys/custom/mmap.rs +0 -111
  1045. data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/sys/custom/traphandlers.rs +0 -51
  1046. data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/sys/miri/mmap.rs +0 -94
  1047. data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/sys/unix/machports.rs +0 -488
  1048. data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/sys/unix/mmap.rs +0 -151
  1049. data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/sys/unix/signals.rs +0 -402
  1050. data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/sys/windows/traphandlers.rs +0 -105
  1051. data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/table.rs +0 -643
  1052. data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/traphandlers/coredump.rs +0 -38
  1053. data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/traphandlers.rs +0 -736
  1054. data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/vmcontext.rs +0 -1215
  1055. data/ext/cargo-vendor/wasmtime-slab-19.0.2/.cargo-checksum.json +0 -1
  1056. data/ext/cargo-vendor/wasmtime-slab-19.0.2/Cargo.toml +0 -21
  1057. data/ext/cargo-vendor/wasmtime-slab-19.0.2/src/lib.rs +0 -450
  1058. data/ext/cargo-vendor/wasmtime-types-19.0.2/.cargo-checksum.json +0 -1
  1059. data/ext/cargo-vendor/wasmtime-types-19.0.2/Cargo.toml +0 -36
  1060. data/ext/cargo-vendor/wasmtime-types-19.0.2/src/lib.rs +0 -640
  1061. data/ext/cargo-vendor/wasmtime-versioned-export-macros-19.0.2/.cargo-checksum.json +0 -1
  1062. data/ext/cargo-vendor/wasmtime-versioned-export-macros-19.0.2/Cargo.toml +0 -32
  1063. data/ext/cargo-vendor/wasmtime-wasi-19.0.2/.cargo-checksum.json +0 -1
  1064. data/ext/cargo-vendor/wasmtime-wasi-19.0.2/Cargo.toml +0 -194
  1065. data/ext/cargo-vendor/wasmtime-wasi-19.0.2/src/command.rs +0 -122
  1066. data/ext/cargo-vendor/wasmtime-wasi-19.0.2/src/ctx.rs +0 -353
  1067. data/ext/cargo-vendor/wasmtime-wasi-19.0.2/src/filesystem.rs +0 -373
  1068. data/ext/cargo-vendor/wasmtime-wasi-19.0.2/src/host/filesystem/sync.rs +0 -517
  1069. data/ext/cargo-vendor/wasmtime-wasi-19.0.2/src/host/filesystem.rs +0 -1081
  1070. data/ext/cargo-vendor/wasmtime-wasi-19.0.2/src/host/io.rs +0 -366
  1071. data/ext/cargo-vendor/wasmtime-wasi-19.0.2/src/host/network.rs +0 -519
  1072. data/ext/cargo-vendor/wasmtime-wasi-19.0.2/src/host/tcp.rs +0 -677
  1073. data/ext/cargo-vendor/wasmtime-wasi-19.0.2/src/ip_name_lookup.rs +0 -123
  1074. data/ext/cargo-vendor/wasmtime-wasi-19.0.2/src/lib.rs +0 -323
  1075. data/ext/cargo-vendor/wasmtime-wasi-19.0.2/src/network.rs +0 -108
  1076. data/ext/cargo-vendor/wasmtime-wasi-19.0.2/src/p1ctx.rs +0 -37
  1077. data/ext/cargo-vendor/wasmtime-wasi-19.0.2/src/pipe.rs +0 -826
  1078. data/ext/cargo-vendor/wasmtime-wasi-19.0.2/src/poll.rs +0 -179
  1079. data/ext/cargo-vendor/wasmtime-wasi-19.0.2/src/preview0.rs +0 -872
  1080. data/ext/cargo-vendor/wasmtime-wasi-19.0.2/src/preview1.rs +0 -2361
  1081. data/ext/cargo-vendor/wasmtime-wasi-19.0.2/src/stdio/worker_thread_stdin.rs +0 -173
  1082. data/ext/cargo-vendor/wasmtime-wasi-19.0.2/src/stdio.rs +0 -443
  1083. data/ext/cargo-vendor/wasmtime-wasi-19.0.2/src/tcp.rs +0 -350
  1084. data/ext/cargo-vendor/wasmtime-wasi-19.0.2/src/udp.rs +0 -125
  1085. data/ext/cargo-vendor/wasmtime-wasi-19.0.2/src/write_stream.rs +0 -203
  1086. data/ext/cargo-vendor/wasmtime-wasi-19.0.2/tests/all/api.rs +0 -210
  1087. data/ext/cargo-vendor/wasmtime-wasi-19.0.2/tests/all/async_.rs +0 -380
  1088. data/ext/cargo-vendor/wasmtime-wasi-19.0.2/tests/all/main.rs +0 -106
  1089. data/ext/cargo-vendor/wasmtime-wasi-19.0.2/tests/all/preview1.rs +0 -243
  1090. data/ext/cargo-vendor/wasmtime-wasi-19.0.2/tests/all/sync.rs +0 -315
  1091. data/ext/cargo-vendor/wasmtime-wasi-19.0.2/wit/deps/io/poll.wit +0 -42
  1092. data/ext/cargo-vendor/wasmtime-winch-19.0.2/.cargo-checksum.json +0 -1
  1093. data/ext/cargo-vendor/wasmtime-winch-19.0.2/Cargo.toml +0 -77
  1094. data/ext/cargo-vendor/wasmtime-winch-19.0.2/src/builder.rs +0 -65
  1095. data/ext/cargo-vendor/wasmtime-winch-19.0.2/src/compiler.rs +0 -283
  1096. data/ext/cargo-vendor/wasmtime-wit-bindgen-19.0.2/.cargo-checksum.json +0 -1
  1097. data/ext/cargo-vendor/wasmtime-wit-bindgen-19.0.2/Cargo.toml +0 -41
  1098. data/ext/cargo-vendor/wasmtime-wit-bindgen-19.0.2/src/lib.rs +0 -2104
  1099. data/ext/cargo-vendor/wasmtime-wit-bindgen-19.0.2/src/rust.rs +0 -421
  1100. data/ext/cargo-vendor/wasmtime-wit-bindgen-19.0.2/src/types.rs +0 -194
  1101. data/ext/cargo-vendor/wasmtime-wmemcheck-19.0.2/.cargo-checksum.json +0 -1
  1102. data/ext/cargo-vendor/wasmtime-wmemcheck-19.0.2/Cargo.toml +0 -29
  1103. data/ext/cargo-vendor/wasmtime-wmemcheck-19.0.2/src/lib.rs +0 -404
  1104. data/ext/cargo-vendor/wast-201.0.0/.cargo-checksum.json +0 -1
  1105. data/ext/cargo-vendor/wast-201.0.0/Cargo.toml +0 -59
  1106. data/ext/cargo-vendor/wast-201.0.0/src/component/binary.rs +0 -1004
  1107. data/ext/cargo-vendor/wast-201.0.0/src/component/resolve.rs +0 -1006
  1108. data/ext/cargo-vendor/wast-201.0.0/src/component/types.rs +0 -991
  1109. data/ext/cargo-vendor/wast-201.0.0/src/component/wast.rs +0 -160
  1110. data/ext/cargo-vendor/wast-201.0.0/src/core/binary.rs +0 -1365
  1111. data/ext/cargo-vendor/wast-201.0.0/src/core/expr.rs +0 -1993
  1112. data/ext/cargo-vendor/wast-201.0.0/src/core/func.rs +0 -136
  1113. data/ext/cargo-vendor/wast-201.0.0/src/core/memory.rs +0 -281
  1114. data/ext/cargo-vendor/wast-201.0.0/src/core/resolve/deinline_import_export.rs +0 -233
  1115. data/ext/cargo-vendor/wast-201.0.0/src/core/resolve/names.rs +0 -763
  1116. data/ext/cargo-vendor/wast-201.0.0/src/core/resolve/types.rs +0 -271
  1117. data/ext/cargo-vendor/wast-201.0.0/src/core/table.rs +0 -289
  1118. data/ext/cargo-vendor/wast-201.0.0/src/core/types.rs +0 -861
  1119. data/ext/cargo-vendor/wast-201.0.0/src/core/wast.rs +0 -256
  1120. data/ext/cargo-vendor/wast-201.0.0/src/lexer.rs +0 -1442
  1121. data/ext/cargo-vendor/wast-201.0.0/src/lib.rs +0 -542
  1122. data/ext/cargo-vendor/wast-201.0.0/src/names.rs +0 -89
  1123. data/ext/cargo-vendor/wast-201.0.0/src/parser.rs +0 -1374
  1124. data/ext/cargo-vendor/wast-201.0.0/src/token.rs +0 -718
  1125. data/ext/cargo-vendor/wast-201.0.0/src/wast.rs +0 -420
  1126. data/ext/cargo-vendor/wast-201.0.0/src/wat.rs +0 -63
  1127. data/ext/cargo-vendor/wast-201.0.0/tests/annotations.rs +0 -200
  1128. data/ext/cargo-vendor/wast-201.0.0/tests/parse-fail.rs +0 -98
  1129. data/ext/cargo-vendor/wat-1.201.0/.cargo-checksum.json +0 -1
  1130. data/ext/cargo-vendor/wat-1.201.0/Cargo.toml +0 -33
  1131. data/ext/cargo-vendor/wiggle-19.0.2/.cargo-checksum.json +0 -1
  1132. data/ext/cargo-vendor/wiggle-19.0.2/Cargo.toml +0 -122
  1133. data/ext/cargo-vendor/wiggle-19.0.2/src/borrow.rs +0 -259
  1134. data/ext/cargo-vendor/wiggle-19.0.2/src/guest_type.rs +0 -237
  1135. data/ext/cargo-vendor/wiggle-19.0.2/src/lib.rs +0 -1199
  1136. data/ext/cargo-vendor/wiggle-19.0.2/src/wasmtime.rs +0 -101
  1137. data/ext/cargo-vendor/wiggle-generate-19.0.2/.cargo-checksum.json +0 -1
  1138. data/ext/cargo-vendor/wiggle-generate-19.0.2/Cargo.toml +0 -65
  1139. data/ext/cargo-vendor/wiggle-macro-19.0.2/.cargo-checksum.json +0 -1
  1140. data/ext/cargo-vendor/wiggle-macro-19.0.2/Cargo.toml +0 -55
  1141. data/ext/cargo-vendor/winch-codegen-0.17.2/.cargo-checksum.json +0 -1
  1142. data/ext/cargo-vendor/winch-codegen-0.17.2/Cargo.toml +0 -77
  1143. data/ext/cargo-vendor/winch-codegen-0.17.2/src/abi/mod.rs +0 -737
  1144. data/ext/cargo-vendor/winch-codegen-0.17.2/src/codegen/bounds.rs +0 -220
  1145. data/ext/cargo-vendor/winch-codegen-0.17.2/src/codegen/builtin.rs +0 -272
  1146. data/ext/cargo-vendor/winch-codegen-0.17.2/src/codegen/call.rs +0 -413
  1147. data/ext/cargo-vendor/winch-codegen-0.17.2/src/codegen/env.rs +0 -399
  1148. data/ext/cargo-vendor/winch-codegen-0.17.2/src/codegen/mod.rs +0 -672
  1149. data/ext/cargo-vendor/winch-codegen-0.17.2/src/isa/aarch64/abi.rs +0 -309
  1150. data/ext/cargo-vendor/winch-codegen-0.17.2/src/isa/aarch64/asm.rs +0 -247
  1151. data/ext/cargo-vendor/winch-codegen-0.17.2/src/isa/aarch64/masm.rs +0 -557
  1152. data/ext/cargo-vendor/winch-codegen-0.17.2/src/isa/aarch64/mod.rs +0 -152
  1153. data/ext/cargo-vendor/winch-codegen-0.17.2/src/isa/aarch64/regs.rs +0 -183
  1154. data/ext/cargo-vendor/winch-codegen-0.17.2/src/isa/mod.rs +0 -232
  1155. data/ext/cargo-vendor/winch-codegen-0.17.2/src/isa/x64/abi.rs +0 -543
  1156. data/ext/cargo-vendor/winch-codegen-0.17.2/src/isa/x64/asm.rs +0 -1418
  1157. data/ext/cargo-vendor/winch-codegen-0.17.2/src/isa/x64/masm.rs +0 -1300
  1158. data/ext/cargo-vendor/winch-codegen-0.17.2/src/isa/x64/mod.rs +0 -192
  1159. data/ext/cargo-vendor/winch-codegen-0.17.2/src/lib.rs +0 -21
  1160. data/ext/cargo-vendor/winch-codegen-0.17.2/src/masm.rs +0 -955
  1161. data/ext/cargo-vendor/winch-codegen-0.17.2/src/trampoline.rs +0 -626
  1162. data/ext/cargo-vendor/winch-codegen-0.17.2/src/visitor.rs +0 -2101
  1163. data/ext/cargo-vendor/wit-parser-0.201.0/.cargo-checksum.json +0 -1
  1164. data/ext/cargo-vendor/wit-parser-0.201.0/Cargo.toml +0 -101
  1165. data/ext/cargo-vendor/wit-parser-0.201.0/src/abi.rs +0 -295
  1166. data/ext/cargo-vendor/wit-parser-0.201.0/src/ast/lex.rs +0 -747
  1167. data/ext/cargo-vendor/wit-parser-0.201.0/src/ast/resolve.rs +0 -1427
  1168. data/ext/cargo-vendor/wit-parser-0.201.0/src/ast.rs +0 -1348
  1169. data/ext/cargo-vendor/wit-parser-0.201.0/src/decoding.rs +0 -1764
  1170. data/ext/cargo-vendor/wit-parser-0.201.0/src/lib.rs +0 -747
  1171. data/ext/cargo-vendor/wit-parser-0.201.0/src/resolve.rs +0 -2239
  1172. data/ext/cargo-vendor/wit-parser-0.201.0/src/serde_.rs +0 -108
  1173. data/ext/cargo-vendor/wit-parser-0.201.0/src/sizealign.rs +0 -144
  1174. data/ext/cargo-vendor/wit-parser-0.201.0/tests/all.rs +0 -185
  1175. data/ext/cargo-vendor/wit-parser-0.201.0/tests/ui/functions.wit +0 -14
  1176. data/ext/cargo-vendor/wit-parser-0.201.0/tests/ui/functions.wit.json +0 -166
  1177. data/ext/cargo-vendor/wit-parser-0.201.0/tests/ui/resources-multiple.wit +0 -20
  1178. data/ext/cargo-vendor/wit-parser-0.201.0/tests/ui/resources-multiple.wit.json +0 -281
  1179. data/ext/cargo-vendor/wit-parser-0.201.0/tests/ui/types.wit +0 -60
  1180. data/ext/cargo-vendor/wit-parser-0.201.0/tests/ui/types.wit.json +0 -774
  1181. data/ext/cargo-vendor/wit-parser-0.201.0/tests/ui/union-fuzz-2.wit +0 -12
  1182. data/ext/cargo-vendor/wit-parser-0.201.0/tests/ui/union-fuzz-2.wit.json +0 -72
  1183. data/ext/cargo-vendor/wit-parser-0.201.0/tests/ui/wasi.wit +0 -178
  1184. /data/ext/cargo-vendor/{ahash-0.8.7 → ahash-0.8.11}/FAQ.md +0 -0
  1185. /data/ext/cargo-vendor/{ahash-0.8.7 → ahash-0.8.11}/LICENSE-APACHE +0 -0
  1186. /data/ext/cargo-vendor/{ahash-0.8.7 → ahash-0.8.11}/LICENSE-MIT +0 -0
  1187. /data/ext/cargo-vendor/{ahash-0.8.7 → ahash-0.8.11}/README.md +0 -0
  1188. /data/ext/cargo-vendor/{ahash-0.8.7 → ahash-0.8.11}/build.rs +0 -0
  1189. /data/ext/cargo-vendor/{ahash-0.8.7 → ahash-0.8.11}/rustfmt.toml +0 -0
  1190. /data/ext/cargo-vendor/{ahash-0.8.7 → ahash-0.8.11}/src/convert.rs +0 -0
  1191. /data/ext/cargo-vendor/{ahash-0.8.7 → ahash-0.8.11}/src/hash_map.rs +0 -0
  1192. /data/ext/cargo-vendor/{ahash-0.8.7 → ahash-0.8.11}/src/hash_set.rs +0 -0
  1193. /data/ext/cargo-vendor/{ahash-0.8.7 → ahash-0.8.11}/src/specialize.rs +0 -0
  1194. /data/ext/cargo-vendor/{ahash-0.8.7 → ahash-0.8.11}/tests/nopanic.rs +0 -0
  1195. /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/LICENSE-APACHE +0 -0
  1196. /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/LICENSE-MIT +0 -0
  1197. /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/build/probe.rs +0 -0
  1198. /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/rust-toolchain.toml +0 -0
  1199. /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/src/context.rs +0 -0
  1200. /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/src/ensure.rs +0 -0
  1201. /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/src/error.rs +0 -0
  1202. /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/src/ptr.rs +0 -0
  1203. /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/tests/common/mod.rs +0 -0
  1204. /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/tests/compiletest.rs +0 -0
  1205. /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/tests/drop/mod.rs +0 -0
  1206. /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/tests/test_autotrait.rs +0 -0
  1207. /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/tests/test_backtrace.rs +0 -0
  1208. /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/tests/test_boxed.rs +0 -0
  1209. /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/tests/test_chain.rs +0 -0
  1210. /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/tests/test_context.rs +0 -0
  1211. /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/tests/test_convert.rs +0 -0
  1212. /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/tests/test_downcast.rs +0 -0
  1213. /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/tests/test_ffi.rs +0 -0
  1214. /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/tests/test_fmt.rs +0 -0
  1215. /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/tests/test_source.rs +0 -0
  1216. /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/tests/ui/chained-comparison.rs +0 -0
  1217. /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/tests/ui/chained-comparison.stderr +0 -0
  1218. /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/tests/ui/empty-ensure.rs +0 -0
  1219. /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/tests/ui/empty-ensure.stderr +0 -0
  1220. /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/tests/ui/must-use.rs +0 -0
  1221. /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/tests/ui/must-use.stderr +0 -0
  1222. /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/tests/ui/no-impl.rs +0 -0
  1223. /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/tests/ui/temporary-value.rs +0 -0
  1224. /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/tests/ui/temporary-value.stderr +0 -0
  1225. /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/tests/ui/wrong-interpolation.rs +0 -0
  1226. /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/tests/ui/wrong-interpolation.stderr +0 -0
  1227. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.11 → async-timer-1.0.0-beta.14}/build.rs +0 -0
  1228. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.11 → async-timer-1.0.0-beta.14}/src/c_wrapper/posix.c +0 -0
  1229. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.11 → async-timer-1.0.0-beta.14}/src/timed.rs +0 -0
  1230. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.11 → async-timer-1.0.0-beta.14}/src/timer/apple.rs +0 -0
  1231. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.11 → async-timer-1.0.0-beta.14}/src/timer/async_tokio1.rs +0 -0
  1232. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.11 → async-timer-1.0.0-beta.14}/src/timer/dummy.rs +0 -0
  1233. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.11 → async-timer-1.0.0-beta.14}/src/timer/mod.rs +0 -0
  1234. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.11 → async-timer-1.0.0-beta.14}/src/timer/posix.rs +0 -0
  1235. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.11 → async-timer-1.0.0-beta.14}/src/utils.rs +0 -0
  1236. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.11 → async-timer-1.0.0-beta.14}/tests/timed.rs +0 -0
  1237. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.11 → async-timer-1.0.0-beta.14}/tests/timer.rs +0 -0
  1238. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/COPYRIGHT +0 -0
  1239. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/LICENSE-APACHE +0 -0
  1240. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/LICENSE-Apache-2.0_WITH_LLVM-exception +0 -0
  1241. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/LICENSE-MIT +0 -0
  1242. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/README.md +0 -0
  1243. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/build.rs +0 -0
  1244. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/access.rs +0 -0
  1245. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/assert_same_file.rs +0 -0
  1246. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/canonicalize.rs +0 -0
  1247. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/copy.rs +0 -0
  1248. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/create_dir.rs +0 -0
  1249. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/dir_builder.rs +0 -0
  1250. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/dir_entry.rs +0 -0
  1251. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/dir_options.rs +0 -0
  1252. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/errors.rs +0 -0
  1253. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/file.rs +0 -0
  1254. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/file_path_by_searching.rs +0 -0
  1255. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/file_type.rs +0 -0
  1256. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/follow_symlinks.rs +0 -0
  1257. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/hard_link.rs +0 -0
  1258. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/is_file_read_write.rs +0 -0
  1259. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/manually/canonical_path.rs +0 -0
  1260. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/manually/canonicalize.rs +0 -0
  1261. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/manually/cow_component.rs +0 -0
  1262. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/manually/mod.rs +0 -0
  1263. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/manually/open.rs +0 -0
  1264. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/manually/open_entry.rs +0 -0
  1265. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/manually/read_link_one.rs +0 -0
  1266. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/maybe_owned_file.rs +0 -0
  1267. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/metadata.rs +0 -0
  1268. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/mod.rs +0 -0
  1269. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/open.rs +0 -0
  1270. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/open_ambient.rs +0 -0
  1271. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/open_dir.rs +0 -0
  1272. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/open_options.rs +0 -0
  1273. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/open_unchecked_error.rs +0 -0
  1274. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/permissions.rs +0 -0
  1275. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/read_dir.rs +0 -0
  1276. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/read_link.rs +0 -0
  1277. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/remove_dir.rs +0 -0
  1278. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/remove_dir_all.rs +0 -0
  1279. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/remove_file.rs +0 -0
  1280. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/remove_open_dir.rs +0 -0
  1281. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/rename.rs +0 -0
  1282. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/reopen.rs +0 -0
  1283. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/set_permissions.rs +0 -0
  1284. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/set_times.rs +0 -0
  1285. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/stat.rs +0 -0
  1286. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/symlink.rs +0 -0
  1287. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/system_time_spec.rs +0 -0
  1288. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/via_parent/access.rs +0 -0
  1289. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/via_parent/create_dir.rs +0 -0
  1290. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/via_parent/hard_link.rs +0 -0
  1291. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/via_parent/mod.rs +0 -0
  1292. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/via_parent/open_parent.rs +0 -0
  1293. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/via_parent/read_link.rs +0 -0
  1294. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/via_parent/remove_dir.rs +0 -0
  1295. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/via_parent/remove_file.rs +0 -0
  1296. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/via_parent/rename.rs +0 -0
  1297. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/via_parent/set_permissions.rs +0 -0
  1298. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/via_parent/set_symlink_permissions.rs +0 -0
  1299. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/via_parent/set_times_nofollow.rs +0 -0
  1300. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/via_parent/symlink.rs +0 -0
  1301. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/lib.rs +0 -0
  1302. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/net/mod.rs +0 -0
  1303. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/net/pool.rs +0 -0
  1304. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/darwin/fs/file_path.rs +0 -0
  1305. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/darwin/fs/mod.rs +0 -0
  1306. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/darwin/mod.rs +0 -0
  1307. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/freebsd/fs/check.rs +0 -0
  1308. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/freebsd/fs/mod.rs +0 -0
  1309. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/freebsd/fs/open_entry_impl.rs +0 -0
  1310. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/freebsd/fs/open_impl.rs +0 -0
  1311. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/freebsd/fs/remove_dir_impl.rs +0 -0
  1312. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/freebsd/fs/remove_file_impl.rs +0 -0
  1313. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/freebsd/fs/set_permissions_impl.rs +0 -0
  1314. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/freebsd/fs/set_times_impl.rs +0 -0
  1315. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/freebsd/fs/stat_impl.rs +0 -0
  1316. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/freebsd/mod.rs +0 -0
  1317. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/fs/access_unchecked.rs +0 -0
  1318. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/fs/copy_impl.rs +0 -0
  1319. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/fs/create_dir_unchecked.rs +0 -0
  1320. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/fs/cvt.rs +0 -0
  1321. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/fs/dir_entry_inner.rs +0 -0
  1322. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/fs/dir_options_ext.rs +0 -0
  1323. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/fs/dir_utils.rs +0 -0
  1324. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/fs/errors.rs +0 -0
  1325. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/fs/file_path.rs +0 -0
  1326. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/fs/file_type_ext.rs +0 -0
  1327. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/fs/hard_link_unchecked.rs +0 -0
  1328. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/fs/is_file_read_write_impl.rs +0 -0
  1329. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/fs/is_root_dir.rs +0 -0
  1330. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/fs/is_same_file.rs +0 -0
  1331. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/fs/mod.rs +0 -0
  1332. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/fs/oflags.rs +0 -0
  1333. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/fs/open_options_ext.rs +0 -0
  1334. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/fs/open_unchecked.rs +0 -0
  1335. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/fs/permissions_ext.rs +0 -0
  1336. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/fs/read_dir_inner.rs +0 -0
  1337. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/fs/read_link_unchecked.rs +0 -0
  1338. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/fs/remove_dir_all_impl.rs +0 -0
  1339. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/fs/remove_dir_unchecked.rs +0 -0
  1340. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/fs/remove_file_unchecked.rs +0 -0
  1341. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/fs/remove_open_dir_by_searching.rs +0 -0
  1342. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/fs/rename_unchecked.rs +0 -0
  1343. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/fs/reopen_impl.rs +0 -0
  1344. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/fs/set_permissions_impl.rs +0 -0
  1345. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/fs/set_symlink_permissions_unchecked.rs +0 -0
  1346. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/fs/set_times_impl.rs +0 -0
  1347. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/fs/stat_unchecked.rs +0 -0
  1348. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/fs/symlink_unchecked.rs +0 -0
  1349. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/fs/times.rs +0 -0
  1350. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/linux/fs/canonicalize_impl.rs +0 -0
  1351. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/linux/fs/file_metadata.rs +0 -0
  1352. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/linux/fs/file_path.rs +0 -0
  1353. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/linux/fs/mod.rs +0 -0
  1354. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/linux/fs/open_entry_impl.rs +0 -0
  1355. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/linux/fs/open_impl.rs +0 -0
  1356. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/linux/fs/procfs.rs +0 -0
  1357. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/linux/fs/set_permissions_impl.rs +0 -0
  1358. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/linux/fs/set_times_impl.rs +0 -0
  1359. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/linux/fs/stat_impl.rs +0 -0
  1360. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/linux/mod.rs +0 -0
  1361. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/mod.rs +0 -0
  1362. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/time/instant.rs +0 -0
  1363. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/time/mod.rs +0 -0
  1364. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/time/monotonic_clock.rs +0 -0
  1365. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/time/system_clock.rs +0 -0
  1366. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/time/system_time.rs +0 -0
  1367. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/windows/fs/access_unchecked.rs +0 -0
  1368. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/windows/fs/copy.rs +0 -0
  1369. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/windows/fs/create_dir_unchecked.rs +0 -0
  1370. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/windows/fs/create_file_at_w.rs +0 -0
  1371. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/windows/fs/dir_entry_inner.rs +0 -0
  1372. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/windows/fs/dir_options_ext.rs +0 -0
  1373. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/windows/fs/dir_utils.rs +0 -0
  1374. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/windows/fs/errors.rs +0 -0
  1375. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/windows/fs/file_type_ext.rs +0 -0
  1376. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/windows/fs/get_path.rs +0 -0
  1377. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/windows/fs/hard_link_unchecked.rs +0 -0
  1378. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/windows/fs/is_file_read_write_impl.rs +0 -0
  1379. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/windows/fs/is_same_file.rs +0 -0
  1380. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/windows/fs/metadata_ext.rs +0 -0
  1381. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/windows/fs/mod.rs +0 -0
  1382. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/windows/fs/oflags.rs +0 -0
  1383. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/windows/fs/open_impl.rs +0 -0
  1384. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/windows/fs/open_options_ext.rs +0 -0
  1385. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/windows/fs/open_unchecked.rs +0 -0
  1386. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/windows/fs/read_dir_inner.rs +0 -0
  1387. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/windows/fs/read_link_impl.rs +0 -0
  1388. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/windows/fs/read_link_unchecked.rs +0 -0
  1389. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/windows/fs/remove_dir_all_impl.rs +0 -0
  1390. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/windows/fs/remove_dir_unchecked.rs +0 -0
  1391. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/windows/fs/remove_file_unchecked.rs +0 -0
  1392. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/windows/fs/remove_open_dir_impl.rs +0 -0
  1393. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/windows/fs/rename_unchecked.rs +0 -0
  1394. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/windows/fs/reopen_impl.rs +0 -0
  1395. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/windows/fs/set_permissions_unchecked.rs +0 -0
  1396. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/windows/fs/set_symlink_permissions_unchecked.rs +0 -0
  1397. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/windows/fs/set_times_impl.rs +0 -0
  1398. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/windows/fs/stat_unchecked.rs +0 -0
  1399. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/windows/fs/symlink_unchecked.rs +0 -0
  1400. /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/windows/mod.rs +0 -0
  1401. /data/ext/cargo-vendor/{cap-std-3.0.0 → cap-std-3.1.0}/COPYRIGHT +0 -0
  1402. /data/ext/cargo-vendor/{cap-std-3.0.0 → cap-std-3.1.0}/LICENSE-APACHE +0 -0
  1403. /data/ext/cargo-vendor/{cap-std-3.0.0 → cap-std-3.1.0}/LICENSE-Apache-2.0_WITH_LLVM-exception +0 -0
  1404. /data/ext/cargo-vendor/{cap-std-3.0.0 → cap-std-3.1.0}/LICENSE-MIT +0 -0
  1405. /data/ext/cargo-vendor/{cap-std-3.0.0 → cap-std-3.1.0}/README.md +0 -0
  1406. /data/ext/cargo-vendor/{cap-std-3.0.0 → cap-std-3.1.0}/build.rs +0 -0
  1407. /data/ext/cargo-vendor/{cap-std-3.0.0 → cap-std-3.1.0}/src/fs/dir_entry.rs +0 -0
  1408. /data/ext/cargo-vendor/{cap-std-3.0.0 → cap-std-3.1.0}/src/fs/file.rs +0 -0
  1409. /data/ext/cargo-vendor/{cap-std-3.0.0 → cap-std-3.1.0}/src/fs/mod.rs +0 -0
  1410. /data/ext/cargo-vendor/{cap-std-3.0.0 → cap-std-3.1.0}/src/fs/read_dir.rs +0 -0
  1411. /data/ext/cargo-vendor/{cap-std-3.0.0 → cap-std-3.1.0}/src/fs_utf8/dir_entry.rs +0 -0
  1412. /data/ext/cargo-vendor/{cap-std-3.0.0 → cap-std-3.1.0}/src/fs_utf8/file.rs +0 -0
  1413. /data/ext/cargo-vendor/{cap-std-3.0.0 → cap-std-3.1.0}/src/fs_utf8/mod.rs +0 -0
  1414. /data/ext/cargo-vendor/{cap-std-3.0.0 → cap-std-3.1.0}/src/fs_utf8/read_dir.rs +0 -0
  1415. /data/ext/cargo-vendor/{cap-std-3.0.0 → cap-std-3.1.0}/src/lib.rs +0 -0
  1416. /data/ext/cargo-vendor/{cap-std-3.0.0 → cap-std-3.1.0}/src/net/incoming.rs +0 -0
  1417. /data/ext/cargo-vendor/{cap-std-3.0.0 → cap-std-3.1.0}/src/net/mod.rs +0 -0
  1418. /data/ext/cargo-vendor/{cap-std-3.0.0 → cap-std-3.1.0}/src/net/pool.rs +0 -0
  1419. /data/ext/cargo-vendor/{cap-std-3.0.0 → cap-std-3.1.0}/src/net/tcp_listener.rs +0 -0
  1420. /data/ext/cargo-vendor/{cap-std-3.0.0 → cap-std-3.1.0}/src/net/tcp_stream.rs +0 -0
  1421. /data/ext/cargo-vendor/{cap-std-3.0.0 → cap-std-3.1.0}/src/net/udp_socket.rs +0 -0
  1422. /data/ext/cargo-vendor/{cap-std-3.0.0 → cap-std-3.1.0}/src/os/mod.rs +0 -0
  1423. /data/ext/cargo-vendor/{cap-std-3.0.0 → cap-std-3.1.0}/src/os/unix/mod.rs +0 -0
  1424. /data/ext/cargo-vendor/{cap-std-3.0.0 → cap-std-3.1.0}/src/os/unix/net/incoming.rs +0 -0
  1425. /data/ext/cargo-vendor/{cap-std-3.0.0 → cap-std-3.1.0}/src/os/unix/net/mod.rs +0 -0
  1426. /data/ext/cargo-vendor/{cap-std-3.0.0 → cap-std-3.1.0}/src/os/unix/net/unix_datagram.rs +0 -0
  1427. /data/ext/cargo-vendor/{cap-std-3.0.0 → cap-std-3.1.0}/src/os/unix/net/unix_listener.rs +0 -0
  1428. /data/ext/cargo-vendor/{cap-std-3.0.0 → cap-std-3.1.0}/src/os/unix/net/unix_stream.rs +0 -0
  1429. /data/ext/cargo-vendor/{cap-std-3.0.0 → cap-std-3.1.0}/src/time/mod.rs +0 -0
  1430. /data/ext/cargo-vendor/{cranelift-bforest-0.106.2 → cranelift-bforest-0.107.2}/LICENSE +0 -0
  1431. /data/ext/cargo-vendor/{cranelift-bforest-0.106.2 → cranelift-bforest-0.107.2}/README.md +0 -0
  1432. /data/ext/cargo-vendor/{cranelift-bforest-0.106.2 → cranelift-bforest-0.107.2}/src/lib.rs +0 -0
  1433. /data/ext/cargo-vendor/{cranelift-bforest-0.106.2 → cranelift-bforest-0.107.2}/src/map.rs +0 -0
  1434. /data/ext/cargo-vendor/{cranelift-bforest-0.106.2 → cranelift-bforest-0.107.2}/src/node.rs +0 -0
  1435. /data/ext/cargo-vendor/{cranelift-bforest-0.106.2 → cranelift-bforest-0.107.2}/src/path.rs +0 -0
  1436. /data/ext/cargo-vendor/{cranelift-bforest-0.106.2 → cranelift-bforest-0.107.2}/src/pool.rs +0 -0
  1437. /data/ext/cargo-vendor/{cranelift-bforest-0.106.2 → cranelift-bforest-0.107.2}/src/set.rs +0 -0
  1438. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/LICENSE +0 -0
  1439. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/README.md +0 -0
  1440. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/benches/x64-evex-encoding.rs +0 -0
  1441. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/binemit/stack_map.rs +0 -0
  1442. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/cfg_printer.rs +0 -0
  1443. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/constant_hash.rs +0 -0
  1444. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/ctxhash.rs +0 -0
  1445. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/cursor.rs +0 -0
  1446. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/data_value.rs +0 -0
  1447. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/dbg.rs +0 -0
  1448. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/dce.rs +0 -0
  1449. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/dominator_tree.rs +0 -0
  1450. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/egraph/cost.rs +0 -0
  1451. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/flowgraph.rs +0 -0
  1452. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/fx.rs +0 -0
  1453. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/incremental_cache.rs +0 -0
  1454. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/ir/atomic_rmw_op.rs +0 -0
  1455. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/ir/builder.rs +0 -0
  1456. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/ir/condcodes.rs +0 -0
  1457. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/ir/dynamic_type.rs +0 -0
  1458. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/ir/extfunc.rs +0 -0
  1459. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/ir/extname.rs +0 -0
  1460. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/ir/globalvalue.rs +0 -0
  1461. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/ir/immediates.rs +0 -0
  1462. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/ir/jumptable.rs +0 -0
  1463. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/ir/known_symbol.rs +0 -0
  1464. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/ir/layout.rs +0 -0
  1465. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/ir/libcall.rs +0 -0
  1466. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/ir/memtype.rs +0 -0
  1467. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/ir/pcc.rs +0 -0
  1468. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/ir/progpoint.rs +0 -0
  1469. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/ir/sourceloc.rs +0 -0
  1470. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/ir/stackslot.rs +0 -0
  1471. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/aarch64/inst/args.rs +0 -0
  1472. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/aarch64/inst/emit_tests.rs +0 -0
  1473. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/aarch64/inst/imms.rs +0 -0
  1474. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/aarch64/inst/regs.rs +0 -0
  1475. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/aarch64/inst/unwind/systemv.rs +0 -0
  1476. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/aarch64/inst/unwind.rs +0 -0
  1477. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/aarch64/inst_neon.isle +0 -0
  1478. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/aarch64/lower/isle/generated_code.rs +0 -0
  1479. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/aarch64/lower.rs +0 -0
  1480. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/aarch64/lower_dynamic_neon.isle +0 -0
  1481. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/aarch64/settings.rs +0 -0
  1482. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/mod.rs +0 -0
  1483. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/riscv64/inst/emit_tests.rs +0 -0
  1484. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/riscv64/inst/imms.rs +0 -0
  1485. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/riscv64/inst/mod.rs +0 -0
  1486. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/riscv64/inst/regs.rs +0 -0
  1487. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/riscv64/inst/unwind/systemv.rs +0 -0
  1488. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/riscv64/inst/unwind.rs +0 -0
  1489. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/riscv64/inst/vector.rs +0 -0
  1490. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/riscv64/inst_vector.isle +0 -0
  1491. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/riscv64/lower/isle/generated_code.rs +0 -0
  1492. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/riscv64/lower.rs +0 -0
  1493. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/riscv64/mod.rs +0 -0
  1494. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/riscv64/settings.rs +0 -0
  1495. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/s390x/inst/emit_tests.rs +0 -0
  1496. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/s390x/inst/imms.rs +0 -0
  1497. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/s390x/inst/mod.rs +0 -0
  1498. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/s390x/inst/regs.rs +0 -0
  1499. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/s390x/inst/unwind/systemv.rs +0 -0
  1500. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/s390x/inst/unwind.rs +0 -0
  1501. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/s390x/lower/isle/generated_code.rs +0 -0
  1502. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/s390x/lower/isle.rs +0 -0
  1503. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/s390x/lower.rs +0 -0
  1504. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/s390x/mod.rs +0 -0
  1505. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/s390x/settings.rs +0 -0
  1506. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/unwind/systemv.rs +0 -0
  1507. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/unwind/winx64.rs +0 -0
  1508. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/unwind.rs +0 -0
  1509. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/x64/encoding/mod.rs +0 -0
  1510. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/x64/inst/emit_tests.rs +0 -0
  1511. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/x64/inst/regs.rs +0 -0
  1512. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/x64/inst/unwind/systemv.rs +0 -0
  1513. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/x64/inst/unwind/winx64.rs +0 -0
  1514. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/x64/inst/unwind.rs +0 -0
  1515. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/x64/lower/isle/generated_code.rs +0 -0
  1516. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/x64/settings.rs +0 -0
  1517. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isle_prelude.rs +0 -0
  1518. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/iterators.rs +0 -0
  1519. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/legalizer/globalvalue.rs +0 -0
  1520. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/lib.rs +0 -0
  1521. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/loop_analysis.rs +0 -0
  1522. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/machinst/blockorder.rs +0 -0
  1523. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/machinst/compile.rs +0 -0
  1524. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/machinst/helpers.rs +0 -0
  1525. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/machinst/reg.rs +0 -0
  1526. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/machinst/valueregs.rs +0 -0
  1527. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/opts/README.md +0 -0
  1528. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/opts/arithmetic.isle +0 -0
  1529. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/opts/bitops.isle +0 -0
  1530. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/opts/extends.isle +0 -0
  1531. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/opts/generated_code.rs +0 -0
  1532. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/opts/icmp.isle +0 -0
  1533. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/opts/remat.isle +0 -0
  1534. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/opts/selects.isle +0 -0
  1535. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/opts/shifts.isle +0 -0
  1536. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/opts/spaceship.isle +0 -0
  1537. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/opts/vector.isle +0 -0
  1538. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/prelude_lower.isle +0 -0
  1539. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/prelude_opt.isle +0 -0
  1540. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/print_errors.rs +0 -0
  1541. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/remove_constant_phis.rs +0 -0
  1542. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/scoped_hash_map.rs +0 -0
  1543. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/souper_harvest.rs +0 -0
  1544. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/timing.rs +0 -0
  1545. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/unionfind.rs +0 -0
  1546. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/unreachable_code.rs +0 -0
  1547. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/value_label.rs +0 -0
  1548. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.106.2 → cranelift-codegen-meta-0.107.2}/LICENSE +0 -0
  1549. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.106.2 → cranelift-codegen-meta-0.107.2}/README.md +0 -0
  1550. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.106.2 → cranelift-codegen-meta-0.107.2}/src/cdsl/formats.rs +0 -0
  1551. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.106.2 → cranelift-codegen-meta-0.107.2}/src/cdsl/instructions.rs +0 -0
  1552. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.106.2 → cranelift-codegen-meta-0.107.2}/src/cdsl/isa.rs +0 -0
  1553. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.106.2 → cranelift-codegen-meta-0.107.2}/src/cdsl/mod.rs +0 -0
  1554. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.106.2 → cranelift-codegen-meta-0.107.2}/src/cdsl/operands.rs +0 -0
  1555. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.106.2 → cranelift-codegen-meta-0.107.2}/src/cdsl/settings.rs +0 -0
  1556. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.106.2 → cranelift-codegen-meta-0.107.2}/src/cdsl/types.rs +0 -0
  1557. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.106.2 → cranelift-codegen-meta-0.107.2}/src/cdsl/typevar.rs +0 -0
  1558. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.106.2 → cranelift-codegen-meta-0.107.2}/src/constant_hash.rs +0 -0
  1559. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.106.2 → cranelift-codegen-meta-0.107.2}/src/error.rs +0 -0
  1560. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.106.2 → cranelift-codegen-meta-0.107.2}/src/gen_inst.rs +0 -0
  1561. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.106.2 → cranelift-codegen-meta-0.107.2}/src/gen_settings.rs +0 -0
  1562. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.106.2 → cranelift-codegen-meta-0.107.2}/src/gen_types.rs +0 -0
  1563. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.106.2 → cranelift-codegen-meta-0.107.2}/src/isa/arm64.rs +0 -0
  1564. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.106.2 → cranelift-codegen-meta-0.107.2}/src/isa/mod.rs +0 -0
  1565. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.106.2 → cranelift-codegen-meta-0.107.2}/src/isa/riscv64.rs +0 -0
  1566. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.106.2 → cranelift-codegen-meta-0.107.2}/src/isa/s390x.rs +0 -0
  1567. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.106.2 → cranelift-codegen-meta-0.107.2}/src/isa/x86.rs +0 -0
  1568. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.106.2 → cranelift-codegen-meta-0.107.2}/src/lib.rs +0 -0
  1569. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.106.2 → cranelift-codegen-meta-0.107.2}/src/shared/immediates.rs +0 -0
  1570. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.106.2 → cranelift-codegen-meta-0.107.2}/src/shared/mod.rs +0 -0
  1571. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.106.2 → cranelift-codegen-meta-0.107.2}/src/shared/settings.rs +0 -0
  1572. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.106.2 → cranelift-codegen-meta-0.107.2}/src/shared/types.rs +0 -0
  1573. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.106.2 → cranelift-codegen-meta-0.107.2}/src/srcgen.rs +0 -0
  1574. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.106.2 → cranelift-codegen-meta-0.107.2}/src/unique_table.rs +0 -0
  1575. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.106.2 → cranelift-codegen-shared-0.107.2}/LICENSE +0 -0
  1576. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.106.2 → cranelift-codegen-shared-0.107.2}/README.md +0 -0
  1577. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.106.2 → cranelift-codegen-shared-0.107.2}/src/constant_hash.rs +0 -0
  1578. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.106.2 → cranelift-codegen-shared-0.107.2}/src/constants.rs +0 -0
  1579. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.106.2 → cranelift-codegen-shared-0.107.2}/src/lib.rs +0 -0
  1580. /data/ext/cargo-vendor/{cranelift-control-0.106.2 → cranelift-control-0.107.2}/LICENSE +0 -0
  1581. /data/ext/cargo-vendor/{cranelift-control-0.106.2 → cranelift-control-0.107.2}/README.md +0 -0
  1582. /data/ext/cargo-vendor/{cranelift-control-0.106.2 → cranelift-control-0.107.2}/src/chaos.rs +0 -0
  1583. /data/ext/cargo-vendor/{cranelift-control-0.106.2 → cranelift-control-0.107.2}/src/lib.rs +0 -0
  1584. /data/ext/cargo-vendor/{cranelift-control-0.106.2 → cranelift-control-0.107.2}/src/zero_sized.rs +0 -0
  1585. /data/ext/cargo-vendor/{cranelift-entity-0.106.2 → cranelift-entity-0.107.2}/LICENSE +0 -0
  1586. /data/ext/cargo-vendor/{cranelift-entity-0.106.2 → cranelift-entity-0.107.2}/README.md +0 -0
  1587. /data/ext/cargo-vendor/{cranelift-entity-0.106.2 → cranelift-entity-0.107.2}/src/boxed_slice.rs +0 -0
  1588. /data/ext/cargo-vendor/{cranelift-entity-0.106.2 → cranelift-entity-0.107.2}/src/iter.rs +0 -0
  1589. /data/ext/cargo-vendor/{cranelift-entity-0.106.2 → cranelift-entity-0.107.2}/src/keys.rs +0 -0
  1590. /data/ext/cargo-vendor/{cranelift-entity-0.106.2 → cranelift-entity-0.107.2}/src/lib.rs +0 -0
  1591. /data/ext/cargo-vendor/{cranelift-entity-0.106.2 → cranelift-entity-0.107.2}/src/list.rs +0 -0
  1592. /data/ext/cargo-vendor/{cranelift-entity-0.106.2 → cranelift-entity-0.107.2}/src/map.rs +0 -0
  1593. /data/ext/cargo-vendor/{cranelift-entity-0.106.2 → cranelift-entity-0.107.2}/src/packed_option.rs +0 -0
  1594. /data/ext/cargo-vendor/{cranelift-entity-0.106.2 → cranelift-entity-0.107.2}/src/primary.rs +0 -0
  1595. /data/ext/cargo-vendor/{cranelift-entity-0.106.2 → cranelift-entity-0.107.2}/src/set.rs +0 -0
  1596. /data/ext/cargo-vendor/{cranelift-entity-0.106.2 → cranelift-entity-0.107.2}/src/sparse.rs +0 -0
  1597. /data/ext/cargo-vendor/{cranelift-entity-0.106.2 → cranelift-entity-0.107.2}/src/unsigned.rs +0 -0
  1598. /data/ext/cargo-vendor/{cranelift-frontend-0.106.2 → cranelift-frontend-0.107.2}/LICENSE +0 -0
  1599. /data/ext/cargo-vendor/{cranelift-frontend-0.106.2 → cranelift-frontend-0.107.2}/README.md +0 -0
  1600. /data/ext/cargo-vendor/{cranelift-frontend-0.106.2 → cranelift-frontend-0.107.2}/src/frontend.rs +0 -0
  1601. /data/ext/cargo-vendor/{cranelift-frontend-0.106.2 → cranelift-frontend-0.107.2}/src/lib.rs +0 -0
  1602. /data/ext/cargo-vendor/{cranelift-frontend-0.106.2 → cranelift-frontend-0.107.2}/src/ssa.rs +0 -0
  1603. /data/ext/cargo-vendor/{cranelift-frontend-0.106.2 → cranelift-frontend-0.107.2}/src/switch.rs +0 -0
  1604. /data/ext/cargo-vendor/{cranelift-frontend-0.106.2 → cranelift-frontend-0.107.2}/src/variable.rs +0 -0
  1605. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/README.md +0 -0
  1606. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/build.rs +0 -0
  1607. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/fail/bad_converters.isle +0 -0
  1608. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/fail/bound_var_type_mismatch.isle +0 -0
  1609. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/fail/converter_extractor_constructor.isle +0 -0
  1610. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/fail/error1.isle +0 -0
  1611. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/fail/extra_parens.isle +0 -0
  1612. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/fail/impure_expression.isle +0 -0
  1613. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/fail/impure_rhs.isle +0 -0
  1614. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/fail/multi_internal_etor.isle +0 -0
  1615. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/fail/multi_prio.isle +0 -0
  1616. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/link/borrows.isle +0 -0
  1617. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/link/borrows_main.rs +0 -0
  1618. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/link/iflets.isle +0 -0
  1619. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/link/iflets_main.rs +0 -0
  1620. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/link/multi_constructor.isle +0 -0
  1621. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/link/multi_constructor_main.rs +0 -0
  1622. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/link/multi_extractor.isle +0 -0
  1623. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/link/multi_extractor_main.rs +0 -0
  1624. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/link/test.isle +0 -0
  1625. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/link/test_main.rs +0 -0
  1626. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/pass/bound_var.isle +0 -0
  1627. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/pass/construct_and_extract.isle +0 -0
  1628. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/pass/conversions.isle +0 -0
  1629. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/pass/conversions_extern.isle +0 -0
  1630. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/pass/let.isle +0 -0
  1631. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/pass/nodebug.isle +0 -0
  1632. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/pass/prio_trie_bug.isle +0 -0
  1633. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/pass/test2.isle +0 -0
  1634. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/pass/test3.isle +0 -0
  1635. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/pass/test4.isle +0 -0
  1636. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/pass/tutorial.isle +0 -0
  1637. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/run/iconst.isle +0 -0
  1638. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/run/iconst_main.rs +0 -0
  1639. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/run/let_shadowing.isle +0 -0
  1640. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/run/let_shadowing_main.rs +0 -0
  1641. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/src/ast.rs +0 -0
  1642. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/src/codegen.rs +0 -0
  1643. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/src/compile.rs +0 -0
  1644. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/src/error.rs +0 -0
  1645. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/src/lexer.rs +0 -0
  1646. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/src/lib.rs +0 -0
  1647. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/src/log.rs +0 -0
  1648. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/src/overlap.rs +0 -0
  1649. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/src/parser.rs +0 -0
  1650. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/src/sema.rs +0 -0
  1651. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/src/serialize.rs +0 -0
  1652. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/src/trie_again.rs +0 -0
  1653. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/tests/run_tests.rs +0 -0
  1654. /data/ext/cargo-vendor/{cranelift-native-0.106.2 → cranelift-native-0.107.2}/LICENSE +0 -0
  1655. /data/ext/cargo-vendor/{cranelift-native-0.106.2 → cranelift-native-0.107.2}/README.md +0 -0
  1656. /data/ext/cargo-vendor/{cranelift-native-0.106.2 → cranelift-native-0.107.2}/src/lib.rs +0 -0
  1657. /data/ext/cargo-vendor/{cranelift-native-0.106.2 → cranelift-native-0.107.2}/src/riscv.rs +0 -0
  1658. /data/ext/cargo-vendor/{cranelift-wasm-0.106.2 → cranelift-wasm-0.107.2}/LICENSE +0 -0
  1659. /data/ext/cargo-vendor/{cranelift-wasm-0.106.2 → cranelift-wasm-0.107.2}/README.md +0 -0
  1660. /data/ext/cargo-vendor/{cranelift-wasm-0.106.2 → cranelift-wasm-0.107.2}/src/code_translator/bounds_checks.rs +0 -0
  1661. /data/ext/cargo-vendor/{cranelift-wasm-0.106.2 → cranelift-wasm-0.107.2}/src/heap.rs +0 -0
  1662. /data/ext/cargo-vendor/{cranelift-wasm-0.106.2 → cranelift-wasm-0.107.2}/src/module_translator.rs +0 -0
  1663. /data/ext/cargo-vendor/{cranelift-wasm-0.106.2 → cranelift-wasm-0.107.2}/src/sections_translator.rs +0 -0
  1664. /data/ext/cargo-vendor/{cranelift-wasm-0.106.2 → cranelift-wasm-0.107.2}/src/translation_utils.rs +0 -0
  1665. /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.20 → deterministic-wasi-ctx-0.1.21}/README.md +0 -0
  1666. /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.20 → deterministic-wasi-ctx-0.1.21}/src/clocks.rs +0 -0
  1667. /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.20 → deterministic-wasi-ctx-0.1.21}/src/lib.rs +0 -0
  1668. /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.20 → deterministic-wasi-ctx-0.1.21}/src/noop_scheduler.rs +0 -0
  1669. /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.20 → deterministic-wasi-ctx-0.1.21}/tests/clocks.rs +0 -0
  1670. /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.20 → deterministic-wasi-ctx-0.1.21}/tests/common/mod.rs +0 -0
  1671. /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.20 → deterministic-wasi-ctx-0.1.21}/tests/random.rs +0 -0
  1672. /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.20 → deterministic-wasi-ctx-0.1.21}/tests/scheduler.rs +0 -0
  1673. /data/ext/cargo-vendor/{lazy_static-1.4.0 → lazy_static-1.5.0}/LICENSE-APACHE +0 -0
  1674. /data/ext/cargo-vendor/{lazy_static-1.4.0 → lazy_static-1.5.0}/LICENSE-MIT +0 -0
  1675. /data/ext/cargo-vendor/{mach-0.3.2 → mach2-0.4.2}/src/boolean.rs +0 -0
  1676. /data/ext/cargo-vendor/{mach-0.3.2 → mach2-0.4.2}/src/bootstrap.rs +0 -0
  1677. /data/ext/cargo-vendor/{mach-0.3.2 → mach2-0.4.2}/src/clock.rs +0 -0
  1678. /data/ext/cargo-vendor/{mach-0.3.2 → mach2-0.4.2}/src/clock_priv.rs +0 -0
  1679. /data/ext/cargo-vendor/{mach-0.3.2 → mach2-0.4.2}/src/clock_reply.rs +0 -0
  1680. /data/ext/cargo-vendor/{mach-0.3.2 → mach2-0.4.2}/src/clock_types.rs +0 -0
  1681. /data/ext/cargo-vendor/{mach-0.3.2 → mach2-0.4.2}/src/dyld_kernel.rs +0 -0
  1682. /data/ext/cargo-vendor/{mach-0.3.2 → mach2-0.4.2}/src/exception_types.rs +0 -0
  1683. /data/ext/cargo-vendor/{mach-0.3.2 → mach2-0.4.2}/src/mach_init.rs +0 -0
  1684. /data/ext/cargo-vendor/{mach-0.3.2 → mach2-0.4.2}/src/mach_time.rs +0 -0
  1685. /data/ext/cargo-vendor/{mach-0.3.2 → mach2-0.4.2}/src/mach_types.rs +0 -0
  1686. /data/ext/cargo-vendor/{mach-0.3.2 → mach2-0.4.2}/src/memory_object_types.rs +0 -0
  1687. /data/ext/cargo-vendor/{mach-0.3.2 → mach2-0.4.2}/src/vm_behavior.rs +0 -0
  1688. /data/ext/cargo-vendor/{mach-0.3.2 → mach2-0.4.2}/src/vm_inherit.rs +0 -0
  1689. /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.2}/LICENSE +0 -0
  1690. /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.2}/README.md +0 -0
  1691. /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.2}/src/clocks.rs +0 -0
  1692. /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.2}/src/dir.rs +0 -0
  1693. /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.2}/src/error.rs +0 -0
  1694. /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.2}/src/file.rs +0 -0
  1695. /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.2}/src/pipe.rs +0 -0
  1696. /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.2}/src/random.rs +0 -0
  1697. /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.2}/src/sched/subscription.rs +0 -0
  1698. /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.2}/src/sched.rs +0 -0
  1699. /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.2}/src/snapshots/mod.rs +0 -0
  1700. /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.2}/src/snapshots/preview_0.rs +0 -0
  1701. /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.2}/src/snapshots/preview_1/error.rs +0 -0
  1702. /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.2}/src/string_array.rs +0 -0
  1703. /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.2}/src/sync/clocks.rs +0 -0
  1704. /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.2}/src/sync/dir.rs +0 -0
  1705. /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.2}/src/sync/file.rs +0 -0
  1706. /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.2}/src/sync/mod.rs +0 -0
  1707. /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.2}/src/sync/net.rs +0 -0
  1708. /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.2}/src/sync/sched/unix.rs +0 -0
  1709. /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.2}/src/sync/sched/windows.rs +0 -0
  1710. /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.2}/src/sync/sched.rs +0 -0
  1711. /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.2}/src/sync/stdio.rs +0 -0
  1712. /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.2}/src/table.rs +0 -0
  1713. /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.2}/src/tokio/dir.rs +0 -0
  1714. /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.2}/src/tokio/file.rs +0 -0
  1715. /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.2}/src/tokio/mod.rs +0 -0
  1716. /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.2}/src/tokio/net.rs +0 -0
  1717. /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.2}/src/tokio/sched/unix.rs +0 -0
  1718. /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.2}/src/tokio/sched/windows.rs +0 -0
  1719. /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.2}/src/tokio/sched.rs +0 -0
  1720. /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.2}/src/tokio/stdio.rs +0 -0
  1721. /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.2}/tests/all/main.rs +0 -0
  1722. /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.2}/witx/preview0/typenames.witx +0 -0
  1723. /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.2}/witx/preview0/wasi_unstable.witx +0 -0
  1724. /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.2}/witx/preview1/typenames.witx +0 -0
  1725. /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.2}/witx/preview1/wasi_snapshot_preview1.witx +0 -0
  1726. /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/LICENSE +0 -0
  1727. /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/README.md +0 -0
  1728. /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/component/aliases.rs +0 -0
  1729. /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/component/builder.rs +0 -0
  1730. /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/component/canonicals.rs +0 -0
  1731. /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/component/components.rs +0 -0
  1732. /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/component/exports.rs +0 -0
  1733. /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/component/imports.rs +0 -0
  1734. /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/component/instances.rs +0 -0
  1735. /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/component/modules.rs +0 -0
  1736. /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/component/names.rs +0 -0
  1737. /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/component/start.rs +0 -0
  1738. /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/component.rs +0 -0
  1739. /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/core/code.rs +0 -0
  1740. /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/core/custom.rs +0 -0
  1741. /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/core/data.rs +0 -0
  1742. /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/core/dump.rs +0 -0
  1743. /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/core/elements.rs +0 -0
  1744. /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/core/exports.rs +0 -0
  1745. /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/core/functions.rs +0 -0
  1746. /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/core/globals.rs +0 -0
  1747. /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/core/imports.rs +0 -0
  1748. /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/core/linking.rs +0 -0
  1749. /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/core/memories.rs +0 -0
  1750. /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/core/names.rs +0 -0
  1751. /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/core/producers.rs +0 -0
  1752. /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/core/start.rs +0 -0
  1753. /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/core/tables.rs +0 -0
  1754. /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/core/tags.rs +0 -0
  1755. /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/core/types.rs +0 -0
  1756. /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/core.rs +0 -0
  1757. /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/lib.rs +0 -0
  1758. /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/raw.rs +0 -0
  1759. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasm-encoder-0.209.1}/LICENSE +0 -0
  1760. /data/ext/cargo-vendor/{wasmprinter-0.201.0 → wasmparser-0.202.0}/LICENSE +0 -0
  1761. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/README.md +0 -0
  1762. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/benches/benchmark.rs +0 -0
  1763. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/examples/simple.rs +0 -0
  1764. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/binary_reader.rs +0 -0
  1765. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/lib.rs +0 -0
  1766. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/limits.rs +0 -0
  1767. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/parser.rs +0 -0
  1768. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/component/aliases.rs +0 -0
  1769. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/component/canonicals.rs +0 -0
  1770. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/component/exports.rs +0 -0
  1771. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/component/imports.rs +0 -0
  1772. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/component/instances.rs +0 -0
  1773. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/component/names.rs +0 -0
  1774. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/component/start.rs +0 -0
  1775. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/component.rs +0 -0
  1776. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/core/branch_hinting.rs +0 -0
  1777. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/core/code.rs +0 -0
  1778. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/core/coredumps.rs +0 -0
  1779. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/core/custom.rs +0 -0
  1780. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/core/data.rs +0 -0
  1781. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/core/dylink0.rs +0 -0
  1782. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/core/elements.rs +0 -0
  1783. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/core/exports.rs +0 -0
  1784. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/core/functions.rs +0 -0
  1785. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/core/globals.rs +0 -0
  1786. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/core/imports.rs +0 -0
  1787. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/core/init.rs +0 -0
  1788. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/core/linking.rs +0 -0
  1789. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/core/memories.rs +0 -0
  1790. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/core/names.rs +0 -0
  1791. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/core/operators.rs +0 -0
  1792. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/core/producers.rs +0 -0
  1793. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/core/tables.rs +0 -0
  1794. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/core/tags.rs +0 -0
  1795. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/core/types/matches.rs +0 -0
  1796. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/core/types.rs +0 -0
  1797. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/core.rs +0 -0
  1798. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers.rs +0 -0
  1799. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/resources.rs +0 -0
  1800. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/validator/component.rs +0 -0
  1801. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/validator/core/canonical.rs +0 -0
  1802. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/validator/core.rs +0 -0
  1803. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/validator/func.rs +0 -0
  1804. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/validator/names.rs +0 -0
  1805. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/validator.rs +0 -0
  1806. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/tests/big-module.rs +0 -0
  1807. /data/ext/cargo-vendor/{wasmtime-19.0.2 → wasmprinter-0.202.0}/LICENSE +0 -0
  1808. /data/ext/cargo-vendor/{wasmprinter-0.201.0 → wasmprinter-0.202.0}/README.md +0 -0
  1809. /data/ext/cargo-vendor/{wasmtime-cache-19.0.2 → wasmtime-20.0.2}/LICENSE +0 -0
  1810. /data/ext/cargo-vendor/{wasmtime-19.0.2 → wasmtime-20.0.2}/README.md +0 -0
  1811. /data/ext/cargo-vendor/{wasmtime-19.0.2 → wasmtime-20.0.2}/src/profiling_agent/jitdump.rs +0 -0
  1812. /data/ext/cargo-vendor/{wasmtime-19.0.2 → wasmtime-20.0.2}/src/profiling_agent/perfmap.rs +0 -0
  1813. /data/ext/cargo-vendor/{wasmtime-19.0.2 → wasmtime-20.0.2}/src/profiling_agent/vtune.rs +0 -0
  1814. /data/ext/cargo-vendor/{wasmtime-19.0.2 → wasmtime-20.0.2}/src/profiling_agent.rs +0 -0
  1815. /data/ext/cargo-vendor/{wasmtime-19.0.2 → wasmtime-20.0.2}/src/runtime/code.rs +0 -0
  1816. /data/ext/cargo-vendor/{wasmtime-19.0.2 → wasmtime-20.0.2}/src/runtime/component/resource_table.rs +0 -0
  1817. /data/ext/cargo-vendor/{wasmtime-19.0.2 → wasmtime-20.0.2}/src/runtime/component/storage.rs +0 -0
  1818. /data/ext/cargo-vendor/{wasmtime-19.0.2 → wasmtime-20.0.2}/src/runtime/component/store.rs +0 -0
  1819. /data/ext/cargo-vendor/{wasmtime-19.0.2 → wasmtime-20.0.2}/src/runtime/debug.rs +0 -0
  1820. /data/ext/cargo-vendor/{wasmtime-19.0.2 → wasmtime-20.0.2}/src/runtime/externals.rs +0 -0
  1821. /data/ext/cargo-vendor/{wasmtime-19.0.2 → wasmtime-20.0.2}/src/runtime/limits.rs +0 -0
  1822. /data/ext/cargo-vendor/{wasmtime-19.0.2 → wasmtime-20.0.2}/src/runtime/resources.rs +0 -0
  1823. /data/ext/cargo-vendor/{wasmtime-19.0.2 → wasmtime-20.0.2}/src/runtime/signatures.rs +0 -0
  1824. /data/ext/cargo-vendor/{wasmtime-19.0.2 → wasmtime-20.0.2}/src/runtime/stack.rs +0 -0
  1825. /data/ext/cargo-vendor/{wasmtime-19.0.2 → wasmtime-20.0.2}/src/runtime/store/context.rs +0 -0
  1826. /data/ext/cargo-vendor/{wasmtime-19.0.2 → wasmtime-20.0.2}/src/runtime/store/func_refs.rs +0 -0
  1827. /data/ext/cargo-vendor/{wasmtime-19.0.2 → wasmtime-20.0.2}/src/runtime/trampoline.rs +0 -0
  1828. /data/ext/cargo-vendor/{wasmtime-19.0.2 → wasmtime-20.0.2}/src/runtime/uninhabited.rs +0 -0
  1829. /data/ext/cargo-vendor/{wasmtime-19.0.2 → wasmtime-20.0.2}/src/runtime/unix.rs +0 -0
  1830. /data/ext/cargo-vendor/{wasmtime-19.0.2 → wasmtime-20.0.2}/src/runtime/windows.rs +0 -0
  1831. /data/ext/cargo-vendor/{wasmtime-asm-macros-19.0.2 → wasmtime-asm-macros-20.0.2}/src/lib.rs +0 -0
  1832. /data/ext/cargo-vendor/{wasmtime-cranelift-19.0.2 → wasmtime-cache-20.0.2}/LICENSE +0 -0
  1833. /data/ext/cargo-vendor/{wasmtime-cache-19.0.2 → wasmtime-cache-20.0.2}/build.rs +0 -0
  1834. /data/ext/cargo-vendor/{wasmtime-cache-19.0.2 → wasmtime-cache-20.0.2}/src/config/tests.rs +0 -0
  1835. /data/ext/cargo-vendor/{wasmtime-cache-19.0.2 → wasmtime-cache-20.0.2}/src/config.rs +0 -0
  1836. /data/ext/cargo-vendor/{wasmtime-cache-19.0.2 → wasmtime-cache-20.0.2}/src/lib.rs +0 -0
  1837. /data/ext/cargo-vendor/{wasmtime-cache-19.0.2 → wasmtime-cache-20.0.2}/src/tests.rs +0 -0
  1838. /data/ext/cargo-vendor/{wasmtime-cache-19.0.2 → wasmtime-cache-20.0.2}/src/worker/tests/system_time_stub.rs +0 -0
  1839. /data/ext/cargo-vendor/{wasmtime-cache-19.0.2 → wasmtime-cache-20.0.2}/src/worker/tests.rs +0 -0
  1840. /data/ext/cargo-vendor/{wasmtime-cache-19.0.2 → wasmtime-cache-20.0.2}/src/worker.rs +0 -0
  1841. /data/ext/cargo-vendor/{wasmtime-cache-19.0.2 → wasmtime-cache-20.0.2}/tests/cache_write_default_config.rs +0 -0
  1842. /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.2}/build.rs +0 -0
  1843. /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.2}/src/bindgen.rs +0 -0
  1844. /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.2}/src/lib.rs +0 -0
  1845. /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.2}/tests/codegen/char.wit +0 -0
  1846. /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.2}/tests/codegen/conventions.wit +0 -0
  1847. /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.2}/tests/codegen/direct-import.wit +0 -0
  1848. /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.2}/tests/codegen/empty.wit +0 -0
  1849. /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.2}/tests/codegen/flags.wit +0 -0
  1850. /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.2}/tests/codegen/floats.wit +0 -0
  1851. /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.2}/tests/codegen/function-new.wit +0 -0
  1852. /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.2}/tests/codegen/integers.wit +0 -0
  1853. /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.2}/tests/codegen/lists.wit +0 -0
  1854. /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.2}/tests/codegen/many-arguments.wit +0 -0
  1855. /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.2}/tests/codegen/multi-return.wit +0 -0
  1856. /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.2}/tests/codegen/multiversion/deps/v1/root.wit +0 -0
  1857. /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.2}/tests/codegen/multiversion/deps/v2/root.wit +0 -0
  1858. /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.2}/tests/codegen/multiversion/root.wit +0 -0
  1859. /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.2}/tests/codegen/records.wit +0 -0
  1860. /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.2}/tests/codegen/rename.wit +0 -0
  1861. /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.2}/tests/codegen/resources-export.wit +0 -0
  1862. /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.2}/tests/codegen/resources-import.wit +0 -0
  1863. /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.2}/tests/codegen/share-types.wit +0 -0
  1864. /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.2}/tests/codegen/simple-functions.wit +0 -0
  1865. /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.2}/tests/codegen/simple-lists.wit +0 -0
  1866. /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.2}/tests/codegen/simple-wasi.wit +0 -0
  1867. /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.2}/tests/codegen/small-anonymous.wit +0 -0
  1868. /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.2}/tests/codegen/smoke-default.wit +0 -0
  1869. /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.2}/tests/codegen/smoke-export.wit +0 -0
  1870. /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.2}/tests/codegen/smoke.wit +0 -0
  1871. /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.2}/tests/codegen/strings.wit +0 -0
  1872. /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.2}/tests/codegen/unversioned-foo.wit +0 -0
  1873. /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.2}/tests/codegen/use-paths.wit +0 -0
  1874. /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.2}/tests/codegen/variants.wit +0 -0
  1875. /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.2}/tests/codegen/wat.wit +0 -0
  1876. /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.2}/tests/codegen/worlds-with-types.wit +0 -0
  1877. /data/ext/cargo-vendor/{wasmtime-component-util-19.0.2 → wasmtime-component-util-20.0.2}/src/lib.rs +0 -0
  1878. /data/ext/cargo-vendor/{wasmtime-environ-19.0.2 → wasmtime-cranelift-20.0.2}/LICENSE +0 -0
  1879. /data/ext/cargo-vendor/{wasmtime-cranelift-19.0.2 → wasmtime-cranelift-20.0.2}/SECURITY.md +0 -0
  1880. /data/ext/cargo-vendor/{wasmtime-cranelift-19.0.2 → wasmtime-cranelift-20.0.2}/src/debug/gc.rs +0 -0
  1881. /data/ext/cargo-vendor/{wasmtime-cranelift-19.0.2 → wasmtime-cranelift-20.0.2}/src/debug/transform/attr.rs +0 -0
  1882. /data/ext/cargo-vendor/{wasmtime-cranelift-19.0.2 → wasmtime-cranelift-20.0.2}/src/debug/transform/line_program.rs +0 -0
  1883. /data/ext/cargo-vendor/{wasmtime-cranelift-19.0.2 → wasmtime-cranelift-20.0.2}/src/debug/transform/mod.rs +0 -0
  1884. /data/ext/cargo-vendor/{wasmtime-cranelift-19.0.2 → wasmtime-cranelift-20.0.2}/src/debug/transform/range_info_builder.rs +0 -0
  1885. /data/ext/cargo-vendor/{wasmtime-cranelift-19.0.2 → wasmtime-cranelift-20.0.2}/src/debug/transform/refs.rs +0 -0
  1886. /data/ext/cargo-vendor/{wasmtime-cranelift-19.0.2 → wasmtime-cranelift-20.0.2}/src/debug/transform/simulate.rs +0 -0
  1887. /data/ext/cargo-vendor/{wasmtime-cranelift-19.0.2 → wasmtime-cranelift-20.0.2}/src/debug/transform/unit.rs +0 -0
  1888. /data/ext/cargo-vendor/{wasmtime-cranelift-19.0.2 → wasmtime-cranelift-20.0.2}/src/debug/transform/utils.rs +0 -0
  1889. /data/ext/cargo-vendor/{wasmtime-cranelift-19.0.2 → wasmtime-cranelift-20.0.2}/src/debug/write_debuginfo.rs +0 -0
  1890. /data/ext/cargo-vendor/{wasmtime-cranelift-19.0.2 → wasmtime-cranelift-20.0.2}/src/debug.rs +0 -0
  1891. /data/ext/cargo-vendor/{wasmtime-cranelift-shared-19.0.2 → wasmtime-cranelift-20.0.2}/src/isa_builder.rs +0 -0
  1892. /data/ext/cargo-vendor/{wasmtime-fiber-19.0.2 → wasmtime-environ-20.0.2}/LICENSE +0 -0
  1893. /data/ext/cargo-vendor/{wasmtime-environ-19.0.2 → wasmtime-environ-20.0.2}/examples/factc.rs +0 -0
  1894. /data/ext/cargo-vendor/{wasmtime-environ-19.0.2 → wasmtime-environ-20.0.2}/src/component/dfg.rs +0 -0
  1895. /data/ext/cargo-vendor/{wasmtime-environ-19.0.2 → wasmtime-environ-20.0.2}/src/component/translate.rs +0 -0
  1896. /data/ext/cargo-vendor/{wasmtime-environ-19.0.2 → wasmtime-environ-20.0.2}/src/component/types/resources.rs +0 -0
  1897. /data/ext/cargo-vendor/{wasmtime-environ-19.0.2 → wasmtime-environ-20.0.2}/src/component/vmcomponent_offsets.rs +0 -0
  1898. /data/ext/cargo-vendor/{wasmtime-environ-19.0.2 → wasmtime-environ-20.0.2}/src/demangling.rs +0 -0
  1899. /data/ext/cargo-vendor/{wasmtime-environ-19.0.2 → wasmtime-environ-20.0.2}/src/fact/core_types.rs +0 -0
  1900. /data/ext/cargo-vendor/{wasmtime-environ-19.0.2 → wasmtime-environ-20.0.2}/src/fact/signature.rs +0 -0
  1901. /data/ext/cargo-vendor/{wasmtime-environ-19.0.2 → wasmtime-environ-20.0.2}/src/fact/traps.rs +0 -0
  1902. /data/ext/cargo-vendor/{wasmtime-environ-19.0.2 → wasmtime-environ-20.0.2}/src/module_types.rs +0 -0
  1903. /data/ext/cargo-vendor/{wasmtime-environ-19.0.2 → wasmtime-environ-20.0.2}/src/ref_bits.rs +0 -0
  1904. /data/ext/cargo-vendor/{wasmtime-environ-19.0.2 → wasmtime-environ-20.0.2}/src/scopevec.rs +0 -0
  1905. /data/ext/cargo-vendor/{wasmtime-environ-19.0.2 → wasmtime-environ-20.0.2}/src/stack_map.rs +0 -0
  1906. /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-fiber-20.0.2}/LICENSE +0 -0
  1907. /data/ext/cargo-vendor/{wasmtime-fiber-19.0.2 → wasmtime-fiber-20.0.2}/build.rs +0 -0
  1908. /data/ext/cargo-vendor/{wasmtime-fiber-19.0.2 → wasmtime-fiber-20.0.2}/src/lib.rs +0 -0
  1909. /data/ext/cargo-vendor/{wasmtime-fiber-19.0.2 → wasmtime-fiber-20.0.2}/src/unix/aarch64.rs +0 -0
  1910. /data/ext/cargo-vendor/{wasmtime-fiber-19.0.2 → wasmtime-fiber-20.0.2}/src/unix/arm.rs +0 -0
  1911. /data/ext/cargo-vendor/{wasmtime-fiber-19.0.2 → wasmtime-fiber-20.0.2}/src/unix/riscv64.rs +0 -0
  1912. /data/ext/cargo-vendor/{wasmtime-fiber-19.0.2 → wasmtime-fiber-20.0.2}/src/unix/s390x.S +0 -0
  1913. /data/ext/cargo-vendor/{wasmtime-fiber-19.0.2 → wasmtime-fiber-20.0.2}/src/unix/x86.rs +0 -0
  1914. /data/ext/cargo-vendor/{wasmtime-fiber-19.0.2 → wasmtime-fiber-20.0.2}/src/unix/x86_64.rs +0 -0
  1915. /data/ext/cargo-vendor/{wasmtime-fiber-19.0.2 → wasmtime-fiber-20.0.2}/src/windows.c +0 -0
  1916. /data/ext/cargo-vendor/{wasmtime-fiber-19.0.2 → wasmtime-fiber-20.0.2}/src/windows.rs +0 -0
  1917. /data/ext/cargo-vendor/{wasmtime-jit-debug-19.0.2 → wasmtime-jit-debug-20.0.2}/README.md +0 -0
  1918. /data/ext/cargo-vendor/{wasmtime-jit-debug-19.0.2 → wasmtime-jit-debug-20.0.2}/src/gdb_jit_int.rs +0 -0
  1919. /data/ext/cargo-vendor/{wasmtime-jit-debug-19.0.2 → wasmtime-jit-debug-20.0.2}/src/lib.rs +0 -0
  1920. /data/ext/cargo-vendor/{wasmtime-jit-debug-19.0.2 → wasmtime-jit-debug-20.0.2}/src/perf_jitdump.rs +0 -0
  1921. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-19.0.2 → wasmtime-jit-icache-coherence-20.0.2}/src/lib.rs +0 -0
  1922. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-19.0.2 → wasmtime-jit-icache-coherence-20.0.2}/src/libc.rs +0 -0
  1923. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-19.0.2 → wasmtime-jit-icache-coherence-20.0.2}/src/miri.rs +0 -0
  1924. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-19.0.2 → wasmtime-jit-icache-coherence-20.0.2}/src/win.rs +0 -0
  1925. /data/ext/cargo-vendor/{wasmtime-types-19.0.2 → wasmtime-runtime-20.0.2}/LICENSE +0 -0
  1926. /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.2}/proptest-regressions/instance/allocator/pooling/memory_pool.txt +0 -0
  1927. /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.2}/src/arch/mod.rs +0 -0
  1928. /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.2}/src/component/resources.rs +0 -0
  1929. /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.2}/src/cow.rs +0 -0
  1930. /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.2}/src/debug_builtins.rs +0 -0
  1931. /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.2}/src/helpers.c +0 -0
  1932. /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.2}/src/imports.rs +0 -0
  1933. /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.2}/src/instance/allocator/pooling/index_allocator.rs +0 -0
  1934. /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.2}/src/instance/allocator/pooling/memory_pool.rs +0 -0
  1935. /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.2}/src/instance/allocator/pooling/stack_pool.rs +0 -0
  1936. /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.2}/src/mmap.rs +0 -0
  1937. /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.2}/src/mmap_vec.rs +0 -0
  1938. /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.2}/src/module_id.rs +0 -0
  1939. /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.2}/src/mpk/disabled.rs +0 -0
  1940. /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.2}/src/mpk/enabled.rs +0 -0
  1941. /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.2}/src/mpk/mod.rs +0 -0
  1942. /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.2}/src/mpk/pkru.rs +0 -0
  1943. /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.2}/src/mpk/sys.rs +0 -0
  1944. /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.2}/src/store_box.rs +0 -0
  1945. /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.2}/src/sys/custom/capi.rs +0 -0
  1946. /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.2}/src/sys/custom/mod.rs +0 -0
  1947. /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.2}/src/sys/custom/unwind.rs +0 -0
  1948. /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.2}/src/sys/custom/vm.rs +0 -0
  1949. /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.2}/src/sys/miri/mod.rs +0 -0
  1950. /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.2}/src/sys/miri/traphandlers.rs +0 -0
  1951. /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.2}/src/sys/miri/unwind.rs +0 -0
  1952. /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.2}/src/sys/miri/vm.rs +0 -0
  1953. /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.2}/src/sys/mod.rs +0 -0
  1954. /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.2}/src/sys/unix/macos_traphandlers.rs +0 -0
  1955. /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.2}/src/sys/unix/mod.rs +0 -0
  1956. /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.2}/src/sys/unix/unwind.rs +0 -0
  1957. /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.2}/src/sys/unix/vm.rs +0 -0
  1958. /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.2}/src/sys/windows/mmap.rs +0 -0
  1959. /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.2}/src/sys/windows/mod.rs +0 -0
  1960. /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.2}/src/sys/windows/unwind.rs +0 -0
  1961. /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.2}/src/sys/windows/vm.rs +0 -0
  1962. /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2/src → wasmtime-runtime-20.0.2/src/threads}/parking_spot.rs +0 -0
  1963. /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.2}/src/traphandlers/backtrace.rs +0 -0
  1964. /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.2}/src/vmcontext/vm_host_func_context.rs +0 -0
  1965. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-types-20.0.2}/LICENSE +0 -0
  1966. /data/ext/cargo-vendor/{wasmtime-types-19.0.2 → wasmtime-types-20.0.2}/src/error.rs +0 -0
  1967. /data/ext/cargo-vendor/{wasmtime-versioned-export-macros-19.0.2 → wasmtime-versioned-export-macros-20.0.2}/src/lib.rs +0 -0
  1968. /data/ext/cargo-vendor/{wast-201.0.0 → wasmtime-wasi-20.0.2}/LICENSE +0 -0
  1969. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/README.md +0 -0
  1970. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/src/clocks/host.rs +0 -0
  1971. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/src/clocks.rs +0 -0
  1972. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/src/error.rs +0 -0
  1973. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/src/host/clocks.rs +0 -0
  1974. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/src/host/env.rs +0 -0
  1975. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/src/host/exit.rs +0 -0
  1976. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/src/host/instance_network.rs +0 -0
  1977. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/src/host/mod.rs +0 -0
  1978. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/src/host/random.rs +0 -0
  1979. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/src/host/tcp_create_socket.rs +0 -0
  1980. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/src/host/udp.rs +0 -0
  1981. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/src/host/udp_create_socket.rs +0 -0
  1982. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/src/random.rs +0 -0
  1983. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/src/stream.rs +0 -0
  1984. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/tests/process_stdin.rs +0 -0
  1985. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/wit/command-extended.wit +0 -0
  1986. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/wit/deps/cli/command.wit +0 -0
  1987. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/wit/deps/cli/environment.wit +0 -0
  1988. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/wit/deps/cli/exit.wit +0 -0
  1989. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/wit/deps/cli/imports.wit +0 -0
  1990. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/wit/deps/cli/run.wit +0 -0
  1991. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/wit/deps/cli/stdio.wit +0 -0
  1992. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/wit/deps/cli/terminal.wit +0 -0
  1993. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/wit/deps/clocks/monotonic-clock.wit +0 -0
  1994. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/wit/deps/clocks/wall-clock.wit +0 -0
  1995. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/wit/deps/clocks/world.wit +0 -0
  1996. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/wit/deps/filesystem/preopens.wit +0 -0
  1997. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/wit/deps/filesystem/types.wit +0 -0
  1998. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/wit/deps/filesystem/world.wit +0 -0
  1999. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/wit/deps/http/handler.wit +0 -0
  2000. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/wit/deps/http/proxy.wit +0 -0
  2001. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/wit/deps/http/types.wit +0 -0
  2002. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/wit/deps/io/error.wit +0 -0
  2003. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/wit/deps/io/streams.wit +0 -0
  2004. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/wit/deps/io/world.wit +0 -0
  2005. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/wit/deps/random/insecure-seed.wit +0 -0
  2006. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/wit/deps/random/insecure.wit +0 -0
  2007. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/wit/deps/random/random.wit +0 -0
  2008. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/wit/deps/random/world.wit +0 -0
  2009. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/wit/deps/sockets/instance-network.wit +0 -0
  2010. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/wit/deps/sockets/ip-name-lookup.wit +0 -0
  2011. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/wit/deps/sockets/network.wit +0 -0
  2012. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/wit/deps/sockets/tcp-create-socket.wit +0 -0
  2013. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/wit/deps/sockets/tcp.wit +0 -0
  2014. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/wit/deps/sockets/udp-create-socket.wit +0 -0
  2015. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/wit/deps/sockets/udp.wit +0 -0
  2016. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/wit/deps/sockets/world.wit +0 -0
  2017. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/wit/test.wit +0 -0
  2018. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/witx/preview0/typenames.witx +0 -0
  2019. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/witx/preview0/wasi_unstable.witx +0 -0
  2020. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/witx/preview1/typenames.witx +0 -0
  2021. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/witx/preview1/wasi_snapshot_preview1.witx +0 -0
  2022. /data/ext/cargo-vendor/{wasmtime-winch-19.0.2 → wasmtime-winch-20.0.2}/LICENSE +0 -0
  2023. /data/ext/cargo-vendor/{wasmtime-winch-19.0.2 → wasmtime-winch-20.0.2}/src/lib.rs +0 -0
  2024. /data/ext/cargo-vendor/{wasmtime-wit-bindgen-19.0.2 → wasmtime-wit-bindgen-20.0.2}/src/source.rs +0 -0
  2025. /data/ext/cargo-vendor/{wat-1.201.0 → wast-209.0.1}/LICENSE +0 -0
  2026. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/README.md +0 -0
  2027. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/src/component/alias.rs +0 -0
  2028. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/src/component/component.rs +0 -0
  2029. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/src/component/custom.rs +0 -0
  2030. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/src/component/expand.rs +0 -0
  2031. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/src/component/export.rs +0 -0
  2032. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/src/component/func.rs +0 -0
  2033. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/src/component/import.rs +0 -0
  2034. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/src/component/instance.rs +0 -0
  2035. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/src/component/item_ref.rs +0 -0
  2036. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/src/component/module.rs +0 -0
  2037. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/src/component.rs +0 -0
  2038. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/src/core/custom.rs +0 -0
  2039. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/src/core/export.rs +0 -0
  2040. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/src/core/global.rs +0 -0
  2041. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/src/core/import.rs +0 -0
  2042. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/src/core/module.rs +0 -0
  2043. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/src/core/resolve/mod.rs +0 -0
  2044. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/src/core/tag.rs +0 -0
  2045. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/src/core.rs +0 -0
  2046. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/src/encode.rs +0 -0
  2047. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/src/error.rs +0 -0
  2048. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/src/gensym.rs +0 -0
  2049. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/comments.rs +0 -0
  2050. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/bad-core-func-alias.wat +0 -0
  2051. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/bad-core-func-alias.wat.err +0 -0
  2052. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/bad-func-alias.wat +0 -0
  2053. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/bad-func-alias.wat.err +0 -0
  2054. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/bad-index.wat +0 -0
  2055. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/bad-index.wat.err +0 -0
  2056. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/bad-name.wat +0 -0
  2057. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/bad-name.wat.err +0 -0
  2058. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/bad-name2.wat +0 -0
  2059. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/bad-name2.wat.err +0 -0
  2060. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/bad-name3.wat +0 -0
  2061. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/bad-name3.wat.err +0 -0
  2062. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/block1.wat +0 -0
  2063. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/block1.wat.err +0 -0
  2064. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/block2.wat +0 -0
  2065. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/block2.wat.err +0 -0
  2066. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/block3.wat +0 -0
  2067. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/block3.wat.err +0 -0
  2068. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-block-comment0.wat +0 -0
  2069. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-block-comment0.wat.err +0 -0
  2070. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-block-comment1.wat +0 -0
  2071. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-block-comment1.wat.err +0 -0
  2072. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-block-comment2.wat +0 -0
  2073. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-block-comment2.wat.err +0 -0
  2074. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-block-comment3.wat +0 -0
  2075. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-block-comment3.wat.err +0 -0
  2076. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-block-comment4.wat +0 -0
  2077. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-block-comment4.wat.err +0 -0
  2078. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-block-comment5.wat +0 -0
  2079. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-block-comment5.wat.err +0 -0
  2080. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-block-comment6.wat +0 -0
  2081. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-block-comment6.wat.err +0 -0
  2082. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-block-comment7.wat +0 -0
  2083. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-block-comment7.wat.err +0 -0
  2084. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-block-comment8.wat +0 -0
  2085. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-block-comment8.wat.err +0 -0
  2086. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-line-comment0.wat +0 -0
  2087. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-line-comment0.wat.err +0 -0
  2088. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-line-comment1.wat +0 -0
  2089. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-line-comment1.wat.err +0 -0
  2090. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-line-comment2.wat +0 -0
  2091. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-line-comment2.wat.err +0 -0
  2092. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-line-comment3.wat +0 -0
  2093. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-line-comment3.wat.err +0 -0
  2094. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-line-comment4.wat +0 -0
  2095. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-line-comment4.wat.err +0 -0
  2096. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-line-comment5.wat +0 -0
  2097. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-line-comment5.wat.err +0 -0
  2098. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-line-comment6.wat +0 -0
  2099. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-line-comment6.wat.err +0 -0
  2100. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-line-comment7.wat +0 -0
  2101. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-line-comment7.wat.err +0 -0
  2102. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-line-comment8.wat +0 -0
  2103. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-line-comment8.wat.err +0 -0
  2104. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-string0.wat +0 -0
  2105. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-string0.wat.err +0 -0
  2106. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-string1.wat +0 -0
  2107. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-string1.wat.err +0 -0
  2108. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-string2.wat +0 -0
  2109. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-string2.wat.err +0 -0
  2110. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-string3.wat +0 -0
  2111. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-string3.wat.err +0 -0
  2112. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-string4.wat +0 -0
  2113. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-string4.wat.err +0 -0
  2114. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-string5.wat +0 -0
  2115. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-string5.wat.err +0 -0
  2116. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-string6.wat +0 -0
  2117. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-string6.wat.err +0 -0
  2118. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-string7.wat +0 -0
  2119. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-string7.wat.err +0 -0
  2120. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-string8.wat +0 -0
  2121. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-string8.wat.err +0 -0
  2122. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/inline1.wat +0 -0
  2123. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/inline1.wat.err +0 -0
  2124. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/newline-in-string.wat +0 -0
  2125. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/newline-in-string.wat.err +0 -0
  2126. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/string1.wat +0 -0
  2127. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/string1.wat.err +0 -0
  2128. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/string10.wat +0 -0
  2129. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/string10.wat.err +0 -0
  2130. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/string11.wat +0 -0
  2131. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/string11.wat.err +0 -0
  2132. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/string12.wat +0 -0
  2133. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/string12.wat.err +0 -0
  2134. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/string13.wat +0 -0
  2135. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/string13.wat.err +0 -0
  2136. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/string14.wat +0 -0
  2137. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/string14.wat.err +0 -0
  2138. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/string15.wat +0 -0
  2139. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/string15.wat.err +0 -0
  2140. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/string16.wat +0 -0
  2141. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/string16.wat.err +0 -0
  2142. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/string2.wat +0 -0
  2143. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/string2.wat.err +0 -0
  2144. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/string3.wat +0 -0
  2145. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/string3.wat.err +0 -0
  2146. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/string4.wat +0 -0
  2147. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/string4.wat.err +0 -0
  2148. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/string5.wat +0 -0
  2149. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/string5.wat.err +0 -0
  2150. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/string6.wat +0 -0
  2151. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/string6.wat.err +0 -0
  2152. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/string7.wat +0 -0
  2153. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/string7.wat.err +0 -0
  2154. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/string8.wat +0 -0
  2155. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/string8.wat.err +0 -0
  2156. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/string9.wat +0 -0
  2157. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/string9.wat.err +0 -0
  2158. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/unbalanced.wat +0 -0
  2159. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/unbalanced.wat.err +0 -0
  2160. /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/recursive.rs +0 -0
  2161. /data/ext/cargo-vendor/{wiggle-19.0.2 → wat-1.209.1}/LICENSE +0 -0
  2162. /data/ext/cargo-vendor/{wat-1.201.0 → wat-1.209.1}/README.md +0 -0
  2163. /data/ext/cargo-vendor/{wat-1.201.0 → wat-1.209.1}/src/lib.rs +0 -0
  2164. /data/ext/cargo-vendor/{wiggle-generate-19.0.2 → wiggle-20.0.2}/LICENSE +0 -0
  2165. /data/ext/cargo-vendor/{wiggle-19.0.2 → wiggle-20.0.2}/README.md +0 -0
  2166. /data/ext/cargo-vendor/{wiggle-19.0.2 → wiggle-20.0.2}/src/error.rs +0 -0
  2167. /data/ext/cargo-vendor/{wiggle-19.0.2 → wiggle-20.0.2}/src/region.rs +0 -0
  2168. /data/ext/cargo-vendor/{wiggle-macro-19.0.2 → wiggle-generate-20.0.2}/LICENSE +0 -0
  2169. /data/ext/cargo-vendor/{wiggle-generate-19.0.2 → wiggle-generate-20.0.2}/README.md +0 -0
  2170. /data/ext/cargo-vendor/{wiggle-generate-19.0.2 → wiggle-generate-20.0.2}/src/codegen_settings.rs +0 -0
  2171. /data/ext/cargo-vendor/{wiggle-generate-19.0.2 → wiggle-generate-20.0.2}/src/config.rs +0 -0
  2172. /data/ext/cargo-vendor/{wiggle-generate-19.0.2 → wiggle-generate-20.0.2}/src/funcs.rs +0 -0
  2173. /data/ext/cargo-vendor/{wiggle-generate-19.0.2 → wiggle-generate-20.0.2}/src/lib.rs +0 -0
  2174. /data/ext/cargo-vendor/{wiggle-generate-19.0.2 → wiggle-generate-20.0.2}/src/lifetimes.rs +0 -0
  2175. /data/ext/cargo-vendor/{wiggle-generate-19.0.2 → wiggle-generate-20.0.2}/src/module_trait.rs +0 -0
  2176. /data/ext/cargo-vendor/{wiggle-generate-19.0.2 → wiggle-generate-20.0.2}/src/names.rs +0 -0
  2177. /data/ext/cargo-vendor/{wiggle-generate-19.0.2 → wiggle-generate-20.0.2}/src/types/error.rs +0 -0
  2178. /data/ext/cargo-vendor/{wiggle-generate-19.0.2 → wiggle-generate-20.0.2}/src/types/flags.rs +0 -0
  2179. /data/ext/cargo-vendor/{wiggle-generate-19.0.2 → wiggle-generate-20.0.2}/src/types/handle.rs +0 -0
  2180. /data/ext/cargo-vendor/{wiggle-generate-19.0.2 → wiggle-generate-20.0.2}/src/types/mod.rs +0 -0
  2181. /data/ext/cargo-vendor/{wiggle-generate-19.0.2 → wiggle-generate-20.0.2}/src/types/record.rs +0 -0
  2182. /data/ext/cargo-vendor/{wiggle-generate-19.0.2 → wiggle-generate-20.0.2}/src/types/variant.rs +0 -0
  2183. /data/ext/cargo-vendor/{wiggle-generate-19.0.2 → wiggle-generate-20.0.2}/src/wasmtime.rs +0 -0
  2184. /data/ext/cargo-vendor/{wiggle-macro-19.0.2 → wiggle-macro-20.0.2}/src/lib.rs +0 -0
  2185. /data/ext/cargo-vendor/{winch-codegen-0.17.2 → winch-codegen-0.18.2}/LICENSE +0 -0
  2186. /data/ext/cargo-vendor/{winch-codegen-0.17.2 → winch-codegen-0.18.2}/build.rs +0 -0
  2187. /data/ext/cargo-vendor/{winch-codegen-0.17.2 → winch-codegen-0.18.2}/src/abi/local.rs +0 -0
  2188. /data/ext/cargo-vendor/{winch-codegen-0.17.2 → winch-codegen-0.18.2}/src/codegen/context.rs +0 -0
  2189. /data/ext/cargo-vendor/{winch-codegen-0.17.2 → winch-codegen-0.18.2}/src/codegen/control.rs +0 -0
  2190. /data/ext/cargo-vendor/{winch-codegen-0.17.2 → winch-codegen-0.18.2}/src/frame/mod.rs +0 -0
  2191. /data/ext/cargo-vendor/{winch-codegen-0.17.2 → winch-codegen-0.18.2}/src/isa/aarch64/address.rs +0 -0
  2192. /data/ext/cargo-vendor/{winch-codegen-0.17.2 → winch-codegen-0.18.2}/src/isa/reg.rs +0 -0
  2193. /data/ext/cargo-vendor/{winch-codegen-0.17.2 → winch-codegen-0.18.2}/src/isa/x64/address.rs +0 -0
  2194. /data/ext/cargo-vendor/{winch-codegen-0.17.2 → winch-codegen-0.18.2}/src/isa/x64/regs.rs +0 -0
  2195. /data/ext/cargo-vendor/{winch-codegen-0.17.2 → winch-codegen-0.18.2}/src/regalloc.rs +0 -0
  2196. /data/ext/cargo-vendor/{winch-codegen-0.17.2 → winch-codegen-0.18.2}/src/regset.rs +0 -0
  2197. /data/ext/cargo-vendor/{winch-codegen-0.17.2 → winch-codegen-0.18.2}/src/stack.rs +0 -0
  2198. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/README.md +0 -0
  2199. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/src/ast/toposort.rs +0 -0
  2200. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/src/docs.rs +0 -0
  2201. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/src/live.rs +0 -0
  2202. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/comments.wit +0 -0
  2203. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/comments.wit.json +0 -0
  2204. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/complex-include/deps/bar/root.wit +0 -0
  2205. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/complex-include/deps/baz/root.wit +0 -0
  2206. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/complex-include/root.wit +0 -0
  2207. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/complex-include.wit.json +0 -0
  2208. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/cross-package-resource/deps/foo/foo.wit +0 -0
  2209. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/cross-package-resource/foo.wit +0 -0
  2210. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/cross-package-resource.wit.json +0 -0
  2211. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/diamond1/deps/dep1/types.wit +0 -0
  2212. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/diamond1/deps/dep2/types.wit +0 -0
  2213. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/diamond1/join.wit +0 -0
  2214. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/diamond1.wit.json +0 -0
  2215. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/disambiguate-diamond/shared1.wit +0 -0
  2216. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/disambiguate-diamond/shared2.wit +0 -0
  2217. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/disambiguate-diamond/world.wit +0 -0
  2218. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/disambiguate-diamond.wit.json +0 -0
  2219. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/empty.wit +0 -0
  2220. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/empty.wit.json +0 -0
  2221. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/foreign-deps/deps/another-pkg/other-doc.wit +0 -0
  2222. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/foreign-deps/deps/corp/saas.wit +0 -0
  2223. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/foreign-deps/deps/different-pkg/the-doc.wit +0 -0
  2224. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/foreign-deps/deps/foreign-pkg/the-doc.wit +0 -0
  2225. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/foreign-deps/deps/some-pkg/some-doc.wit +0 -0
  2226. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/foreign-deps/deps/wasi/clocks.wit +0 -0
  2227. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/foreign-deps/deps/wasi/filesystem.wit +0 -0
  2228. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/foreign-deps/root.wit +0 -0
  2229. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/foreign-deps-union/deps/another-pkg/other-doc.wit +0 -0
  2230. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/foreign-deps-union/deps/corp/saas.wit +0 -0
  2231. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/foreign-deps-union/deps/different-pkg/the-doc.wit +0 -0
  2232. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/foreign-deps-union/deps/foreign-pkg/the-doc.wit +0 -0
  2233. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/foreign-deps-union/deps/some-pkg/some-doc.wit +0 -0
  2234. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/foreign-deps-union/deps/wasi/clocks.wit +0 -0
  2235. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/foreign-deps-union/deps/wasi/filesystem.wit +0 -0
  2236. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/foreign-deps-union/deps/wasi/wasi.wit +0 -0
  2237. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/foreign-deps-union/root.wit +0 -0
  2238. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/foreign-deps-union.wit.json +0 -0
  2239. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/foreign-deps.wit.json +0 -0
  2240. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/ignore-files-deps/deps/bar/types.wit +0 -0
  2241. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/ignore-files-deps/deps/ignore-me.txt +0 -0
  2242. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/ignore-files-deps/world.wit +0 -0
  2243. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/ignore-files-deps.wit.json +0 -0
  2244. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/import-export-overlap1.wit +0 -0
  2245. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/import-export-overlap1.wit.json +0 -0
  2246. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/import-export-overlap2.wit +0 -0
  2247. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/import-export-overlap2.wit.json +0 -0
  2248. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/include-reps.wit +0 -0
  2249. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/include-reps.wit.json +0 -0
  2250. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/kebab-name-include-with.wit +0 -0
  2251. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/kebab-name-include-with.wit.json +0 -0
  2252. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/kinds-of-deps/a.wit +0 -0
  2253. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/kinds-of-deps/deps/b/root.wit +0 -0
  2254. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/kinds-of-deps/deps/c.wit +0 -0
  2255. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/kinds-of-deps/deps/d.wat +0 -0
  2256. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/kinds-of-deps/deps/e.wasm +0 -0
  2257. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/kinds-of-deps.wit.json +0 -0
  2258. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/many-names/a.wit +0 -0
  2259. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/many-names/b.wit +0 -0
  2260. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/many-names.wit.json +0 -0
  2261. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/multi-file/bar.wit +0 -0
  2262. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/multi-file/cycle-a.wit +0 -0
  2263. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/multi-file/cycle-b.wit +0 -0
  2264. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/multi-file/foo.wit +0 -0
  2265. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/multi-file.wit.json +0 -0
  2266. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/name-both-resource-and-type/deps/dep/foo.wit +0 -0
  2267. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/name-both-resource-and-type/foo.wit +0 -0
  2268. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/name-both-resource-and-type.wit.json +0 -0
  2269. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/package-syntax1.wit +0 -0
  2270. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/package-syntax1.wit.json +0 -0
  2271. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/package-syntax3.wit +0 -0
  2272. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/package-syntax3.wit.json +0 -0
  2273. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/package-syntax4.wit +0 -0
  2274. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/package-syntax4.wit.json +0 -0
  2275. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/alias-no-type.wit +0 -0
  2276. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/alias-no-type.wit.result +0 -0
  2277. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/async.wit.result +0 -0
  2278. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/async1.wit.result +0 -0
  2279. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-function.wit +0 -0
  2280. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-function.wit.result +0 -0
  2281. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-function2.wit +0 -0
  2282. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-function2.wit.result +0 -0
  2283. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-include1.wit +0 -0
  2284. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-include1.wit.result +0 -0
  2285. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-include2.wit +0 -0
  2286. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-include2.wit.result +0 -0
  2287. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-include3.wit +0 -0
  2288. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-include3.wit.result +0 -0
  2289. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-list.wit +0 -0
  2290. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-list.wit.result +0 -0
  2291. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-pkg1/root.wit +0 -0
  2292. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-pkg1.wit.result +0 -0
  2293. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-pkg2/deps/bar/empty.wit +0 -0
  2294. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-pkg2/root.wit +0 -0
  2295. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-pkg2.wit.result +0 -0
  2296. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-pkg3/deps/bar/baz.wit +0 -0
  2297. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-pkg3/root.wit +0 -0
  2298. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-pkg3.wit.result +0 -0
  2299. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-pkg4/deps/bar/baz.wit +0 -0
  2300. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-pkg4/root.wit +0 -0
  2301. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-pkg4.wit.result +0 -0
  2302. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-pkg5/deps/bar/baz.wit +0 -0
  2303. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-pkg5/root.wit +0 -0
  2304. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-pkg5.wit.result +0 -0
  2305. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-pkg6/deps/bar/baz.wit +0 -0
  2306. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-pkg6/root.wit +0 -0
  2307. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-pkg6.wit.result +0 -0
  2308. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource1.wit +0 -0
  2309. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource1.wit.result +0 -0
  2310. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource10.wit +0 -0
  2311. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource10.wit.result +0 -0
  2312. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource11.wit +0 -0
  2313. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource11.wit.result +0 -0
  2314. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource12.wit +0 -0
  2315. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource12.wit.result +0 -0
  2316. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource13.wit +0 -0
  2317. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource13.wit.result +0 -0
  2318. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource14.wit +0 -0
  2319. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource14.wit.result +0 -0
  2320. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource15/deps/foo/foo.wit +0 -0
  2321. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource15/foo.wit +0 -0
  2322. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource15.wit.result +0 -0
  2323. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource2.wit +0 -0
  2324. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource2.wit.result +0 -0
  2325. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource3.wit +0 -0
  2326. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource3.wit.result +0 -0
  2327. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource4.wit +0 -0
  2328. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource4.wit.result +0 -0
  2329. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource5.wit +0 -0
  2330. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource5.wit.result +0 -0
  2331. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource6.wit +0 -0
  2332. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource6.wit.result +0 -0
  2333. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource7.wit +0 -0
  2334. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource7.wit.result +0 -0
  2335. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource8.wit +0 -0
  2336. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource8.wit.result +0 -0
  2337. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource9.wit +0 -0
  2338. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource9.wit.result +0 -0
  2339. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-world-type1.wit +0 -0
  2340. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-world-type1.wit.result +0 -0
  2341. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/conflicting-package/a.wit +0 -0
  2342. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/conflicting-package/b.wit +0 -0
  2343. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/conflicting-package.wit.result +0 -0
  2344. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/cycle.wit +0 -0
  2345. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/cycle.wit.result +0 -0
  2346. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/cycle2.wit +0 -0
  2347. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/cycle2.wit.result +0 -0
  2348. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/cycle3.wit +0 -0
  2349. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/cycle3.wit.result +0 -0
  2350. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/cycle4.wit +0 -0
  2351. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/cycle4.wit.result +0 -0
  2352. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/cycle5.wit +0 -0
  2353. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/cycle5.wit.result +0 -0
  2354. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/dangling-type.wit +0 -0
  2355. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/dangling-type.wit.result +0 -0
  2356. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/duplicate-function-params.wit +0 -0
  2357. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/duplicate-function-params.wit.result +0 -0
  2358. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/duplicate-functions.wit +0 -0
  2359. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/duplicate-functions.wit.result +0 -0
  2360. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/duplicate-interface.wit +0 -0
  2361. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/duplicate-interface.wit.result +0 -0
  2362. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/duplicate-interface2/foo.wit +0 -0
  2363. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/duplicate-interface2/foo2.wit +0 -0
  2364. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/duplicate-interface2.wit.result +0 -0
  2365. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/duplicate-type.wit +0 -0
  2366. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/duplicate-type.wit.result +0 -0
  2367. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/empty-enum.wit +0 -0
  2368. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/empty-enum.wit.result +0 -0
  2369. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/empty-variant1.wit +0 -0
  2370. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/empty-variant1.wit.result +0 -0
  2371. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/export-twice.wit +0 -0
  2372. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/export-twice.wit.result +0 -0
  2373. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/import-and-export1.wit +0 -0
  2374. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/import-and-export1.wit.result +0 -0
  2375. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/import-and-export2.wit +0 -0
  2376. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/import-and-export2.wit.result +0 -0
  2377. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/import-and-export3.wit +0 -0
  2378. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/import-and-export3.wit.result +0 -0
  2379. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/import-and-export4.wit +0 -0
  2380. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/import-and-export4.wit.result +0 -0
  2381. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/import-and-export5.wit +0 -0
  2382. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/import-and-export5.wit.result +0 -0
  2383. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/import-twice.wit +0 -0
  2384. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/import-twice.wit.result +0 -0
  2385. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/include-cycle.wit +0 -0
  2386. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/include-cycle.wit.result +0 -0
  2387. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/include-foreign/deps/bar/empty.wit +0 -0
  2388. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/include-foreign/root.wit +0 -0
  2389. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/include-foreign.wit.result +0 -0
  2390. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/include-with-id.wit +0 -0
  2391. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/include-with-id.wit.result +0 -0
  2392. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/include-with-on-id.wit +0 -0
  2393. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/include-with-on-id.wit.result +0 -0
  2394. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/invalid-toplevel.wit +0 -0
  2395. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/invalid-toplevel.wit.result +0 -0
  2396. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/invalid-type-reference.wit +0 -0
  2397. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/invalid-type-reference.wit.result +0 -0
  2398. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/invalid-type-reference2.wit +0 -0
  2399. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/invalid-type-reference2.wit.result +0 -0
  2400. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/kebab-name-include-not-found.wit +0 -0
  2401. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/kebab-name-include-not-found.wit.result +0 -0
  2402. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/kebab-name-include.wit +0 -0
  2403. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/kebab-name-include.wit.result +0 -0
  2404. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/keyword.wit +0 -0
  2405. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/keyword.wit.result +0 -0
  2406. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/missing-package.wit +0 -0
  2407. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/missing-package.wit.result +0 -0
  2408. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/multiple-package-docs/a.wit +0 -0
  2409. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/multiple-package-docs/b.wit +0 -0
  2410. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/multiple-package-docs.wit.result +0 -0
  2411. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/no-access-to-sibling-use/bar.wit +0 -0
  2412. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/no-access-to-sibling-use/foo.wit +0 -0
  2413. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/no-access-to-sibling-use.wit.result +0 -0
  2414. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/non-existance-world-include/deps/bar/baz.wit +0 -0
  2415. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/non-existance-world-include/root.wit +0 -0
  2416. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/non-existance-world-include.wit.result +0 -0
  2417. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/pkg-cycle/deps/a1/root.wit +0 -0
  2418. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/pkg-cycle/root.wit +0 -0
  2419. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/pkg-cycle.wit.result +0 -0
  2420. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/pkg-cycle2/deps/a1/root.wit +0 -0
  2421. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/pkg-cycle2/deps/a2/root.wit +0 -0
  2422. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/pkg-cycle2/root.wit +0 -0
  2423. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/pkg-cycle2.wit.result +0 -0
  2424. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/type-and-resource-same-name/deps/dep/foo.wit +0 -0
  2425. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/type-and-resource-same-name/foo.wit +0 -0
  2426. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/type-and-resource-same-name.wit.result +0 -0
  2427. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/undefined-typed.wit +0 -0
  2428. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/undefined-typed.wit.result +0 -0
  2429. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/unknown-interface.wit +0 -0
  2430. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/unknown-interface.wit.result +0 -0
  2431. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/unresolved-interface1.wit +0 -0
  2432. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/unresolved-interface1.wit.result +0 -0
  2433. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/unresolved-interface2.wit +0 -0
  2434. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/unresolved-interface2.wit.result +0 -0
  2435. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/unresolved-interface3.wit +0 -0
  2436. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/unresolved-interface3.wit.result +0 -0
  2437. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/unresolved-interface4.wit +0 -0
  2438. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/unresolved-interface4.wit.result +0 -0
  2439. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/unresolved-use1.wit +0 -0
  2440. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/unresolved-use1.wit.result +0 -0
  2441. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/unresolved-use10/bar.wit +0 -0
  2442. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/unresolved-use10/foo.wit +0 -0
  2443. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/unresolved-use10.wit.result +0 -0
  2444. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/unresolved-use2.wit +0 -0
  2445. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/unresolved-use2.wit.result +0 -0
  2446. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/unresolved-use3.wit +0 -0
  2447. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/unresolved-use3.wit.result +0 -0
  2448. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/unresolved-use7.wit +0 -0
  2449. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/unresolved-use7.wit.result +0 -0
  2450. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/unresolved-use8.wit +0 -0
  2451. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/unresolved-use8.wit.result +0 -0
  2452. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/unresolved-use9.wit +0 -0
  2453. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/unresolved-use9.wit.result +0 -0
  2454. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/unterminated-string.wit.result +0 -0
  2455. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/use-and-include-world/deps/bar/baz.wit +0 -0
  2456. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/use-and-include-world/root.wit +0 -0
  2457. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/use-and-include-world.wit.result +0 -0
  2458. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/use-conflict.wit +0 -0
  2459. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/use-conflict.wit.result +0 -0
  2460. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/use-conflict2.wit +0 -0
  2461. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/use-conflict2.wit.result +0 -0
  2462. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/use-conflict3.wit +0 -0
  2463. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/use-conflict3.wit.result +0 -0
  2464. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/use-cycle1.wit +0 -0
  2465. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/use-cycle1.wit.result +0 -0
  2466. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/use-cycle4.wit +0 -0
  2467. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/use-cycle4.wit.result +0 -0
  2468. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/use-shadow1.wit +0 -0
  2469. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/use-shadow1.wit.result +0 -0
  2470. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/use-world/deps/bar/baz.wit +0 -0
  2471. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/use-world/root.wit +0 -0
  2472. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/use-world.wit.result +0 -0
  2473. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/world-interface-clash.wit +0 -0
  2474. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/world-interface-clash.wit.result +0 -0
  2475. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/world-same-fields2.wit +0 -0
  2476. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/world-same-fields2.wit.result +0 -0
  2477. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/world-same-fields3.wit +0 -0
  2478. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/world-same-fields3.wit.result +0 -0
  2479. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/world-top-level-func.wit +0 -0
  2480. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/world-top-level-func.wit.result +0 -0
  2481. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/world-top-level-func2.wit +0 -0
  2482. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/world-top-level-func2.wit.result +0 -0
  2483. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/random.wit +0 -0
  2484. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/random.wit.json +0 -0
  2485. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/resources-empty.wit +0 -0
  2486. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/resources-empty.wit.json +0 -0
  2487. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/resources-multiple-returns-borrow.wit +0 -0
  2488. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/resources-multiple-returns-borrow.wit.json +0 -0
  2489. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/resources-multiple-returns-own.wit +0 -0
  2490. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/resources-multiple-returns-own.wit.json +0 -0
  2491. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/resources-return-borrow.wit +0 -0
  2492. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/resources-return-borrow.wit.json +0 -0
  2493. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/resources-return-own.wit +0 -0
  2494. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/resources-return-own.wit.json +0 -0
  2495. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/resources.wit +0 -0
  2496. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/resources.wit.json +0 -0
  2497. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/resources1.wit +0 -0
  2498. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/resources1.wit.json +0 -0
  2499. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/same-name-import-export.wit +0 -0
  2500. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/same-name-import-export.wit.json +0 -0
  2501. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/shared-types.wit +0 -0
  2502. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/shared-types.wit.json +0 -0
  2503. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/simple-wasm-text.wat +0 -0
  2504. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/simple-wasm-text.wit.json +0 -0
  2505. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/stress-export-elaborate.wit +0 -0
  2506. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/stress-export-elaborate.wit.json +0 -0
  2507. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/type-then-eof.wit +0 -0
  2508. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/type-then-eof.wit.json +0 -0
  2509. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/union-fuzz-1.wit +0 -0
  2510. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/union-fuzz-1.wit.json +0 -0
  2511. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/use-chain.wit +0 -0
  2512. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/use-chain.wit.json +0 -0
  2513. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/use.wit +0 -0
  2514. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/use.wit.json +0 -0
  2515. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/versions/deps/a1/foo.wit +0 -0
  2516. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/versions/deps/a2/foo.wit +0 -0
  2517. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/versions/foo.wit +0 -0
  2518. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/versions.wit.json +0 -0
  2519. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/wasi.wit.json +0 -0
  2520. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/world-diamond.wit +0 -0
  2521. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/world-diamond.wit.json +0 -0
  2522. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/world-iface-no-collide.wit +0 -0
  2523. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/world-iface-no-collide.wit.json +0 -0
  2524. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/world-implicit-import1.wit +0 -0
  2525. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/world-implicit-import1.wit.json +0 -0
  2526. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/world-implicit-import2.wit +0 -0
  2527. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/world-implicit-import2.wit.json +0 -0
  2528. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/world-implicit-import3.wit +0 -0
  2529. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/world-implicit-import3.wit.json +0 -0
  2530. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/world-same-fields4.wit +0 -0
  2531. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/world-same-fields4.wit.json +0 -0
  2532. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/world-top-level-funcs.wit +0 -0
  2533. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/world-top-level-funcs.wit.json +0 -0
  2534. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/world-top-level-resources.wit +0 -0
  2535. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/world-top-level-resources.wit.json +0 -0
  2536. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/worlds-union-dedup.wit +0 -0
  2537. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/worlds-union-dedup.wit.json +0 -0
  2538. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/worlds-with-types.wit +0 -0
  2539. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/worlds-with-types.wit.json +0 -0
@@ -0,0 +1,2484 @@
1
+ use crate::component::func::{Func, LiftContext, LowerContext, Options};
2
+ use crate::component::matching::InstanceType;
3
+ use crate::component::storage::{storage_as_slice, storage_as_slice_mut};
4
+ use crate::{AsContextMut, StoreContext, StoreContextMut, ValRaw};
5
+ use anyhow::{anyhow, bail, Context, Result};
6
+ use std::borrow::Cow;
7
+ use std::fmt;
8
+ use std::marker;
9
+ use std::mem::{self, MaybeUninit};
10
+ use std::ptr::NonNull;
11
+ use std::str;
12
+ use std::sync::Arc;
13
+ use wasmtime_environ::component::{
14
+ CanonicalAbiInfo, ComponentTypes, InterfaceType, StringEncoding, VariantInfo, MAX_FLAT_PARAMS,
15
+ MAX_FLAT_RESULTS,
16
+ };
17
+ use wasmtime_runtime::component::ComponentInstance;
18
+ use wasmtime_runtime::SendSyncPtr;
19
+
20
+ /// A statically-typed version of [`Func`] which takes `Params` as input and
21
+ /// returns `Return`.
22
+ ///
23
+ /// This is an efficient way to invoke a WebAssembly component where if the
24
+ /// inputs and output are statically known this can eschew the vast majority of
25
+ /// machinery and checks when calling WebAssembly. This is the most optimized
26
+ /// way to call a WebAssembly component.
27
+ ///
28
+ /// Note that like [`Func`] this is a pointer within a [`Store`](crate::Store)
29
+ /// and usage will panic if used with the wrong store.
30
+ ///
31
+ /// This type is primarily created with the [`Func::typed`] API.
32
+ ///
33
+ /// See [`ComponentType`] for more information about supported types.
34
+ pub struct TypedFunc<Params, Return> {
35
+ func: Func,
36
+
37
+ // The definition of this field is somewhat subtle and may be surprising.
38
+ // Naively one might expect something like
39
+ //
40
+ // _marker: marker::PhantomData<fn(Params) -> Return>,
41
+ //
42
+ // Since this is a function pointer after all. The problem with this
43
+ // definition though is that it imposes the wrong variance on `Params` from
44
+ // what we want. Abstractly a `fn(Params)` is able to store `Params` within
45
+ // it meaning you can only give it `Params` that live longer than the
46
+ // function pointer.
47
+ //
48
+ // With a component model function, however, we're always copying data from
49
+ // the host into the guest, so we are never storing pointers to `Params`
50
+ // into the guest outside the duration of a `call`, meaning we can actually
51
+ // accept values in `TypedFunc::call` which live for a shorter duration
52
+ // than the `Params` argument on the struct.
53
+ //
54
+ // This all means that we don't use a phantom function pointer, but instead
55
+ // feign phantom storage here to get the variance desired.
56
+ _marker: marker::PhantomData<(Params, Return)>,
57
+ }
58
+
59
+ impl<Params, Return> Copy for TypedFunc<Params, Return> {}
60
+
61
+ impl<Params, Return> Clone for TypedFunc<Params, Return> {
62
+ fn clone(&self) -> TypedFunc<Params, Return> {
63
+ *self
64
+ }
65
+ }
66
+
67
+ impl<Params, Return> TypedFunc<Params, Return>
68
+ where
69
+ Params: ComponentNamedList + Lower,
70
+ Return: ComponentNamedList + Lift,
71
+ {
72
+ /// Creates a new [`TypedFunc`] from the provided component [`Func`],
73
+ /// unsafely asserting that the underlying function takes `Params` as
74
+ /// input and returns `Return`.
75
+ ///
76
+ /// # Unsafety
77
+ ///
78
+ /// This is an unsafe function because it does not verify that the [`Func`]
79
+ /// provided actually implements this signature. It's up to the caller to
80
+ /// have performed some other sort of check to ensure that the signature is
81
+ /// correct.
82
+ pub unsafe fn new_unchecked(func: Func) -> TypedFunc<Params, Return> {
83
+ TypedFunc {
84
+ _marker: marker::PhantomData,
85
+ func,
86
+ }
87
+ }
88
+
89
+ /// Returns the underlying un-typed [`Func`] that this [`TypedFunc`]
90
+ /// references.
91
+ pub fn func(&self) -> &Func {
92
+ &self.func
93
+ }
94
+
95
+ /// Calls the underlying WebAssembly component function using the provided
96
+ /// `params` as input.
97
+ ///
98
+ /// This method is used to enter into a component. Execution happens within
99
+ /// the `store` provided. The `params` are copied into WebAssembly memory
100
+ /// as appropriate and a core wasm function is invoked.
101
+ ///
102
+ /// # Post-return
103
+ ///
104
+ /// In the component model each function can have a "post return" specified
105
+ /// which allows cleaning up the arguments returned to the host. For example
106
+ /// if WebAssembly returns a string to the host then it might be a uniquely
107
+ /// allocated string which, after the host finishes processing it, needs to
108
+ /// be deallocated in the wasm instance's own linear memory to prevent
109
+ /// memory leaks in wasm itself. The `post-return` canonical abi option is
110
+ /// used to configured this.
111
+ ///
112
+ /// To accommodate this feature of the component model after invoking a
113
+ /// function via [`TypedFunc::call`] you must next invoke
114
+ /// [`TypedFunc::post_return`]. Note that the return value of the function
115
+ /// should be processed between these two function calls. The return value
116
+ /// continues to be usable from an embedder's perspective after
117
+ /// `post_return` is called, but after `post_return` is invoked it may no
118
+ /// longer retain the same value that the wasm module originally returned.
119
+ ///
120
+ /// Also note that [`TypedFunc::post_return`] must be invoked irrespective
121
+ /// of whether the canonical ABI option `post-return` was configured or not.
122
+ /// This means that embedders must unconditionally call
123
+ /// [`TypedFunc::post_return`] when a function returns. If this function
124
+ /// call returns an error, however, then [`TypedFunc::post_return`] is not
125
+ /// required.
126
+ ///
127
+ /// # Errors
128
+ ///
129
+ /// This function can return an error for a number of reasons:
130
+ ///
131
+ /// * If the wasm itself traps during execution.
132
+ /// * If the wasm traps while copying arguments into memory.
133
+ /// * If the wasm provides bad allocation pointers when copying arguments
134
+ /// into memory.
135
+ /// * If the wasm returns a value which violates the canonical ABI.
136
+ /// * If this function's instances cannot be entered, for example if the
137
+ /// instance is currently calling a host function.
138
+ /// * If a previous function call occurred and the corresponding
139
+ /// `post_return` hasn't been invoked yet.
140
+ ///
141
+ /// In general there are many ways that things could go wrong when copying
142
+ /// types in and out of a wasm module with the canonical ABI, and certain
143
+ /// error conditions are specific to certain types. For example a
144
+ /// WebAssembly module can't return an invalid `char`. When allocating space
145
+ /// for this host to copy a string into the returned pointer must be
146
+ /// in-bounds in memory.
147
+ ///
148
+ /// If an error happens then the error should contain detailed enough
149
+ /// information to understand which part of the canonical ABI went wrong
150
+ /// and what to inspect.
151
+ ///
152
+ /// # Panics
153
+ ///
154
+ /// Panics if this is called on a function in an asynchronous store. This
155
+ /// only works with functions defined within a synchonous store. Also
156
+ /// panics if `store` does not own this function.
157
+ pub fn call(&self, store: impl AsContextMut, params: Params) -> Result<Return> {
158
+ assert!(
159
+ !store.as_context().async_support(),
160
+ "must use `call_async` when async support is enabled on the config"
161
+ );
162
+ self.call_impl(store, params)
163
+ }
164
+
165
+ /// Exactly like [`Self::call`], except for use on asynchronous stores.
166
+ ///
167
+ /// # Panics
168
+ ///
169
+ /// Panics if this is called on a function in a synchronous store. This
170
+ /// only works with functions defined within an asynchronous store. Also
171
+ /// panics if `store` does not own this function.
172
+ #[cfg(feature = "async")]
173
+ #[cfg_attr(docsrs, doc(cfg(feature = "async")))]
174
+ pub async fn call_async<T>(
175
+ &self,
176
+ mut store: impl AsContextMut<Data = T>,
177
+ params: Params,
178
+ ) -> Result<Return>
179
+ where
180
+ T: Send,
181
+ Params: Send + Sync,
182
+ Return: Send + Sync,
183
+ {
184
+ let mut store = store.as_context_mut();
185
+ assert!(
186
+ store.0.async_support(),
187
+ "cannot use `call_async` when async support is not enabled on the config"
188
+ );
189
+ store
190
+ .on_fiber(|store| self.call_impl(store, params))
191
+ .await?
192
+ }
193
+
194
+ fn call_impl(&self, mut store: impl AsContextMut, params: Params) -> Result<Return> {
195
+ let store = &mut store.as_context_mut();
196
+ // Note that this is in theory simpler than it might read at this time.
197
+ // Here we're doing a runtime dispatch on the `flatten_count` for the
198
+ // params/results to see whether they're inbounds. This creates 4 cases
199
+ // to handle. In reality this is a highly optimizable branch where LLVM
200
+ // will easily figure out that only one branch here is taken.
201
+ //
202
+ // Otherwise this current construction is done to ensure that the stack
203
+ // space reserved for the params/results is always of the appropriate
204
+ // size (as the params/results needed differ depending on the "flatten"
205
+ // count)
206
+ if Params::flatten_count() <= MAX_FLAT_PARAMS {
207
+ if Return::flatten_count() <= MAX_FLAT_RESULTS {
208
+ self.func.call_raw(
209
+ store,
210
+ &params,
211
+ Self::lower_stack_args,
212
+ Self::lift_stack_result,
213
+ )
214
+ } else {
215
+ self.func.call_raw(
216
+ store,
217
+ &params,
218
+ Self::lower_stack_args,
219
+ Self::lift_heap_result,
220
+ )
221
+ }
222
+ } else {
223
+ if Return::flatten_count() <= MAX_FLAT_RESULTS {
224
+ self.func.call_raw(
225
+ store,
226
+ &params,
227
+ Self::lower_heap_args,
228
+ Self::lift_stack_result,
229
+ )
230
+ } else {
231
+ self.func.call_raw(
232
+ store,
233
+ &params,
234
+ Self::lower_heap_args,
235
+ Self::lift_heap_result,
236
+ )
237
+ }
238
+ }
239
+ }
240
+
241
+ /// Lower parameters directly onto the stack specified by the `dst`
242
+ /// location.
243
+ ///
244
+ /// This is only valid to call when the "flatten count" is small enough, or
245
+ /// when the canonical ABI says arguments go through the stack rather than
246
+ /// the heap.
247
+ fn lower_stack_args<T>(
248
+ cx: &mut LowerContext<'_, T>,
249
+ params: &Params,
250
+ ty: InterfaceType,
251
+ dst: &mut MaybeUninit<Params::Lower>,
252
+ ) -> Result<()> {
253
+ assert!(Params::flatten_count() <= MAX_FLAT_PARAMS);
254
+ params.lower(cx, ty, dst)?;
255
+ Ok(())
256
+ }
257
+
258
+ /// Lower parameters onto a heap-allocated location.
259
+ ///
260
+ /// This is used when the stack space to be used for the arguments is above
261
+ /// the `MAX_FLAT_PARAMS` threshold. Here the wasm's `realloc` function is
262
+ /// invoked to allocate space and then parameters are stored at that heap
263
+ /// pointer location.
264
+ fn lower_heap_args<T>(
265
+ cx: &mut LowerContext<'_, T>,
266
+ params: &Params,
267
+ ty: InterfaceType,
268
+ dst: &mut MaybeUninit<ValRaw>,
269
+ ) -> Result<()> {
270
+ assert!(Params::flatten_count() > MAX_FLAT_PARAMS);
271
+
272
+ // Memory must exist via validation if the arguments are stored on the
273
+ // heap, so we can create a `MemoryMut` at this point. Afterwards
274
+ // `realloc` is used to allocate space for all the arguments and then
275
+ // they're all stored in linear memory.
276
+ //
277
+ // Note that `realloc` will bake in a check that the returned pointer is
278
+ // in-bounds.
279
+ let ptr = cx.realloc(0, 0, Params::ALIGN32, Params::SIZE32)?;
280
+ params.store(cx, ty, ptr)?;
281
+
282
+ // Note that the pointer here is stored as a 64-bit integer. This allows
283
+ // this to work with either 32 or 64-bit memories. For a 32-bit memory
284
+ // it'll just ignore the upper 32 zero bits, and for 64-bit memories
285
+ // this'll have the full 64-bits. Note that for 32-bit memories the call
286
+ // to `realloc` above guarantees that the `ptr` is in-bounds meaning
287
+ // that we will know that the zero-extended upper bits of `ptr` are
288
+ // guaranteed to be zero.
289
+ //
290
+ // This comment about 64-bit integers is also referred to below with
291
+ // "WRITEPTR64".
292
+ dst.write(ValRaw::i64(ptr as i64));
293
+
294
+ Ok(())
295
+ }
296
+
297
+ /// Lift the result of a function directly from the stack result.
298
+ ///
299
+ /// This is only used when the result fits in the maximum number of stack
300
+ /// slots.
301
+ fn lift_stack_result(
302
+ cx: &mut LiftContext<'_>,
303
+ ty: InterfaceType,
304
+ dst: &Return::Lower,
305
+ ) -> Result<Return> {
306
+ assert!(Return::flatten_count() <= MAX_FLAT_RESULTS);
307
+ Return::lift(cx, ty, dst)
308
+ }
309
+
310
+ /// Lift the result of a function where the result is stored indirectly on
311
+ /// the heap.
312
+ fn lift_heap_result(
313
+ cx: &mut LiftContext<'_>,
314
+ ty: InterfaceType,
315
+ dst: &ValRaw,
316
+ ) -> Result<Return> {
317
+ assert!(Return::flatten_count() > MAX_FLAT_RESULTS);
318
+ // FIXME: needs to read an i64 for memory64
319
+ let ptr = usize::try_from(dst.get_u32())?;
320
+ if ptr % usize::try_from(Return::ALIGN32)? != 0 {
321
+ bail!("return pointer not aligned");
322
+ }
323
+
324
+ let bytes = cx
325
+ .memory()
326
+ .get(ptr..)
327
+ .and_then(|b| b.get(..Return::SIZE32))
328
+ .ok_or_else(|| anyhow::anyhow!("pointer out of bounds of memory"))?;
329
+ Return::load(cx, ty, bytes)
330
+ }
331
+
332
+ /// See [`Func::post_return`]
333
+ pub fn post_return(&self, store: impl AsContextMut) -> Result<()> {
334
+ self.func.post_return(store)
335
+ }
336
+
337
+ /// See [`Func::post_return_async`]
338
+ #[cfg(feature = "async")]
339
+ #[cfg_attr(docsrs, doc(cfg(feature = "async")))]
340
+ pub async fn post_return_async<T: Send>(
341
+ &self,
342
+ store: impl AsContextMut<Data = T>,
343
+ ) -> Result<()> {
344
+ self.func.post_return_async(store).await
345
+ }
346
+ }
347
+
348
+ /// A trait representing a static list of named types that can be passed to or
349
+ /// returned from a [`TypedFunc`].
350
+ ///
351
+ /// This trait is implemented for a number of tuple types and is not expected
352
+ /// to be implemented externally. The contents of this trait are hidden as it's
353
+ /// intended to be an implementation detail of Wasmtime. The contents of this
354
+ /// trait are not covered by Wasmtime's stability guarantees.
355
+ ///
356
+ /// For more information about this trait see [`Func::typed`] and
357
+ /// [`TypedFunc`].
358
+ //
359
+ // Note that this is an `unsafe` trait, and the unsafety means that
360
+ // implementations of this trait must be correct or otherwise [`TypedFunc`]
361
+ // would not be memory safe. The main reason this is `unsafe` is the
362
+ // `typecheck` function which must operate correctly relative to the `AsTuple`
363
+ // interpretation of the implementor.
364
+ pub unsafe trait ComponentNamedList: ComponentType {}
365
+
366
+ /// A trait representing types which can be passed to and read from components
367
+ /// with the canonical ABI.
368
+ ///
369
+ /// This trait is implemented for Rust types which can be communicated to
370
+ /// components. The [`Func::typed`] and [`TypedFunc`] Rust items are the main
371
+ /// consumers of this trait.
372
+ ///
373
+ /// Supported Rust types include:
374
+ ///
375
+ /// | Component Model Type | Rust Type |
376
+ /// |-----------------------------------|--------------------------------------|
377
+ /// | `{s,u}{8,16,32,64}` | `{i,u}{8,16,32,64}` |
378
+ /// | `f{32,64}` | `f{32,64}` |
379
+ /// | `bool` | `bool` |
380
+ /// | `char` | `char` |
381
+ /// | `tuple<A, B>` | `(A, B)` |
382
+ /// | `option<T>` | `Option<T>` |
383
+ /// | `result` | `Result<(), ()>` |
384
+ /// | `result<T>` | `Result<T, ()>` |
385
+ /// | `result<_, E>` | `Result<(), E>` |
386
+ /// | `result<T, E>` | `Result<T, E>` |
387
+ /// | `string` | `String`, `&str`, or [`WasmStr`] |
388
+ /// | `list<T>` | `Vec<T>`, `&[T]`, or [`WasmList`] |
389
+ /// | `own<T>`, `borrow<T>` | [`Resource<T>`] or [`ResourceAny`] |
390
+ /// | `record` | [`#[derive(ComponentType)]`][d-cm] |
391
+ /// | `variant` | [`#[derive(ComponentType)]`][d-cm] |
392
+ /// | `enum` | [`#[derive(ComponentType)]`][d-cm] |
393
+ /// | `flags` | [`flags!`][f-m] |
394
+ ///
395
+ /// [`Resource<T>`]: crate::component::Resource
396
+ /// [`ResourceAny`]: crate::component::ResourceAny
397
+ /// [d-cm]: macro@crate::component::ComponentType
398
+ /// [f-m]: crate::component::flags
399
+ ///
400
+ /// Rust standard library pointers such as `&T`, `Box<T>`, `Rc<T>`, and `Arc<T>`
401
+ /// additionally represent whatever type `T` represents in the component model.
402
+ /// Note that types such as `record`, `variant`, `enum`, and `flags` are
403
+ /// generated by the embedder at compile time. These macros derive
404
+ /// implementation of this trait for custom types to map to custom types in the
405
+ /// component model. Note that for `record`, `variant`, `enum`, and `flags`
406
+ /// those types are often generated by the
407
+ /// [`bindgen!`](crate::component::bindgen) macro from WIT definitions.
408
+ ///
409
+ /// Types that implement [`ComponentType`] are used for `Params` and `Return`
410
+ /// in [`TypedFunc`] and [`Func::typed`].
411
+ ///
412
+ /// The contents of this trait are hidden as it's intended to be an
413
+ /// implementation detail of Wasmtime. The contents of this trait are not
414
+ /// covered by Wasmtime's stability guarantees.
415
+ //
416
+ // Note that this is an `unsafe` trait as `TypedFunc`'s safety heavily relies on
417
+ // the correctness of the implementations of this trait. Some ways in which this
418
+ // trait must be correct to be safe are:
419
+ //
420
+ // * The `Lower` associated type must be a `ValRaw` sequence. It doesn't have to
421
+ // literally be `[ValRaw; N]` but when laid out in memory it must be adjacent
422
+ // `ValRaw` values and have a multiple of the size of `ValRaw` and the same
423
+ // alignment.
424
+ //
425
+ // * The `lower` function must initialize the bits within `Lower` that are going
426
+ // to be read by the trampoline that's used to enter core wasm. A trampoline
427
+ // is passed `*mut Lower` and will read the canonical abi arguments in
428
+ // sequence, so all of the bits must be correctly initialized.
429
+ //
430
+ // * The `size` and `align` functions must be correct for this value stored in
431
+ // the canonical ABI. The `Cursor<T>` iteration of these bytes rely on this
432
+ // for correctness as they otherwise eschew bounds-checking.
433
+ //
434
+ // There are likely some other correctness issues which aren't documented as
435
+ // well, this isn't intended to be an exhaustive list. It suffices to say,
436
+ // though, that correctness bugs in this trait implementation are highly likely
437
+ // to lead to security bugs, which again leads to the `unsafe` in the trait.
438
+ //
439
+ // Also note that this trait specifically is not sealed because we have a proc
440
+ // macro that generates implementations of this trait for external types in a
441
+ // `#[derive]`-like fashion.
442
+ pub unsafe trait ComponentType {
443
+ /// Representation of the "lowered" form of this component value.
444
+ ///
445
+ /// Lowerings lower into core wasm values which are represented by `ValRaw`.
446
+ /// This `Lower` type must be a list of `ValRaw` as either a literal array
447
+ /// or a struct where every field is a `ValRaw`. This must be `Copy` (as
448
+ /// `ValRaw` is `Copy`) and support all byte patterns. This being correct is
449
+ /// one reason why the trait is unsafe.
450
+ #[doc(hidden)]
451
+ type Lower: Copy;
452
+
453
+ /// The information about this type's canonical ABI (size/align/etc).
454
+ #[doc(hidden)]
455
+ const ABI: CanonicalAbiInfo;
456
+
457
+ #[doc(hidden)]
458
+ const SIZE32: usize = Self::ABI.size32 as usize;
459
+ #[doc(hidden)]
460
+ const ALIGN32: u32 = Self::ABI.align32;
461
+
462
+ #[doc(hidden)]
463
+ const IS_RUST_UNIT_TYPE: bool = false;
464
+
465
+ /// Returns the number of core wasm abi values will be used to represent
466
+ /// this type in its lowered form.
467
+ ///
468
+ /// This divides the size of `Self::Lower` by the size of `ValRaw`.
469
+ #[doc(hidden)]
470
+ fn flatten_count() -> usize {
471
+ assert!(mem::size_of::<Self::Lower>() % mem::size_of::<ValRaw>() == 0);
472
+ assert!(mem::align_of::<Self::Lower>() == mem::align_of::<ValRaw>());
473
+ mem::size_of::<Self::Lower>() / mem::size_of::<ValRaw>()
474
+ }
475
+
476
+ /// Performs a type-check to see whether this component value type matches
477
+ /// the interface type `ty` provided.
478
+ #[doc(hidden)]
479
+ fn typecheck(ty: &InterfaceType, types: &InstanceType<'_>) -> Result<()>;
480
+ }
481
+
482
+ #[doc(hidden)]
483
+ pub unsafe trait ComponentVariant: ComponentType {
484
+ const CASES: &'static [Option<CanonicalAbiInfo>];
485
+ const INFO: VariantInfo = VariantInfo::new_static(Self::CASES);
486
+ const PAYLOAD_OFFSET32: usize = Self::INFO.payload_offset32 as usize;
487
+ }
488
+
489
+ /// Host types which can be passed to WebAssembly components.
490
+ ///
491
+ /// This trait is implemented for all types that can be passed to components
492
+ /// either as parameters of component exports or returns of component imports.
493
+ /// This trait represents the ability to convert from the native host
494
+ /// representation to the canonical ABI.
495
+ ///
496
+ /// Built-in types to Rust such as `Option<T>` implement this trait as
497
+ /// appropriate. For a mapping of component model to Rust types see
498
+ /// [`ComponentType`].
499
+ ///
500
+ /// For user-defined types, for example `record` types mapped to Rust `struct`s,
501
+ /// this crate additionally has
502
+ /// [`#[derive(Lower)]`](macro@crate::component::Lower).
503
+ ///
504
+ /// Note that like [`ComponentType`] the definition of this trait is intended to
505
+ /// be an internal implementation detail of Wasmtime at this time. It's
506
+ /// recommended to use the `#[derive(Lower)]` implementation instead.
507
+ pub unsafe trait Lower: ComponentType {
508
+ /// Performs the "lower" function in the canonical ABI.
509
+ ///
510
+ /// This method will lower the current value into a component. The `lower`
511
+ /// function performs a "flat" lowering into the `dst` specified which is
512
+ /// allowed to be uninitialized entering this method but is guaranteed to be
513
+ /// fully initialized if the method returns `Ok(())`.
514
+ ///
515
+ /// The `cx` context provided is the context within which this lowering is
516
+ /// happening. This contains information such as canonical options specified
517
+ /// (e.g. string encodings, memories, etc), the store itself, along with
518
+ /// type information.
519
+ ///
520
+ /// The `ty` parameter is the destination type that is being lowered into.
521
+ /// For example this is the component's "view" of the type that is being
522
+ /// lowered. This is guaranteed to have passed a `typecheck` earlier.
523
+ ///
524
+ /// This will only be called if `typecheck` passes for `Op::Lower`.
525
+ #[doc(hidden)]
526
+ fn lower<T>(
527
+ &self,
528
+ cx: &mut LowerContext<'_, T>,
529
+ ty: InterfaceType,
530
+ dst: &mut MaybeUninit<Self::Lower>,
531
+ ) -> Result<()>;
532
+
533
+ /// Performs the "store" operation in the canonical ABI.
534
+ ///
535
+ /// This function will store `self` into the linear memory described by
536
+ /// `cx` at the `offset` provided.
537
+ ///
538
+ /// It is expected that `offset` is a valid offset in memory for
539
+ /// `Self::SIZE32` bytes. At this time that's not an unsafe contract as it's
540
+ /// always re-checked on all stores, but this is something that will need to
541
+ /// be improved in the future to remove extra bounds checks. For now this
542
+ /// function will panic if there's a bug and `offset` isn't valid within
543
+ /// memory.
544
+ ///
545
+ /// The `ty` type information passed here is the same as the type
546
+ /// information passed to `lower` above, and is the component's own view of
547
+ /// what the resulting type should be.
548
+ ///
549
+ /// This will only be called if `typecheck` passes for `Op::Lower`.
550
+ #[doc(hidden)]
551
+ fn store<T>(
552
+ &self,
553
+ cx: &mut LowerContext<'_, T>,
554
+ ty: InterfaceType,
555
+ offset: usize,
556
+ ) -> Result<()>;
557
+
558
+ /// Provided method to lower a list of `Self` into memory.
559
+ ///
560
+ /// Requires that `offset` has already been checked for alignment and
561
+ /// validity in terms of being in-bounds, otherwise this may panic.
562
+ ///
563
+ /// This is primarily here to get overridden for implementations of integers
564
+ /// which can avoid some extra fluff and use a pattern that's more easily
565
+ /// optimizable by LLVM.
566
+ #[doc(hidden)]
567
+ fn store_list<T>(
568
+ cx: &mut LowerContext<'_, T>,
569
+ ty: InterfaceType,
570
+ mut offset: usize,
571
+ items: &[Self],
572
+ ) -> Result<()>
573
+ where
574
+ Self: Sized,
575
+ {
576
+ for item in items {
577
+ item.store(cx, ty, offset)?;
578
+ offset += Self::SIZE32;
579
+ }
580
+ Ok(())
581
+ }
582
+ }
583
+
584
+ /// Host types which can be created from the canonical ABI.
585
+ ///
586
+ /// This is the mirror of the [`Lower`] trait where it represents the capability
587
+ /// of acquiring items from WebAssembly and passing them to the host.
588
+ ///
589
+ /// Built-in types to Rust such as `Option<T>` implement this trait as
590
+ /// appropriate. For a mapping of component model to Rust types see
591
+ /// [`ComponentType`].
592
+ ///
593
+ /// For user-defined types, for example `record` types mapped to Rust `struct`s,
594
+ /// this crate additionally has
595
+ /// [`#[derive(Lift)]`](macro@crate::component::Lift).
596
+ ///
597
+ /// Note that like [`ComponentType`] the definition of this trait is intended to
598
+ /// be an internal implementation detail of Wasmtime at this time. It's
599
+ /// recommended to use the `#[derive(Lift)]` implementation instead.
600
+ pub unsafe trait Lift: Sized + ComponentType {
601
+ /// Performs the "lift" operation in the canonical ABI.
602
+ ///
603
+ /// This function performs a "flat" lift operation from the `src` specified
604
+ /// which is a sequence of core wasm values. The lifting operation will
605
+ /// validate core wasm values and produce a `Self` on success.
606
+ ///
607
+ /// The `cx` provided contains contextual information such as the store
608
+ /// that's being loaded from, canonical options, and type information.
609
+ ///
610
+ /// The `ty` parameter is the origin component's specification for what the
611
+ /// type that is being lifted is. For example this is the record type or the
612
+ /// resource type that is being lifted.
613
+ ///
614
+ /// Note that this has a default implementation but if `typecheck` passes
615
+ /// for `Op::Lift` this needs to be overridden.
616
+ #[doc(hidden)]
617
+ fn lift(cx: &mut LiftContext<'_>, ty: InterfaceType, src: &Self::Lower) -> Result<Self>;
618
+
619
+ /// Performs the "load" operation in the canonical ABI.
620
+ ///
621
+ /// This will read the `bytes` provided, which are a sub-slice into the
622
+ /// linear memory described by `cx`. The `bytes` array provided is
623
+ /// guaranteed to be `Self::SIZE32` bytes large. All of memory is then also
624
+ /// available through `cx` for bounds-checks and such as necessary for
625
+ /// strings/lists.
626
+ ///
627
+ /// The `ty` argument is the type that's being loaded, as described by the
628
+ /// original component.
629
+ ///
630
+ /// Note that this has a default implementation but if `typecheck` passes
631
+ /// for `Op::Lift` this needs to be overridden.
632
+ #[doc(hidden)]
633
+ fn load(cx: &mut LiftContext<'_>, ty: InterfaceType, bytes: &[u8]) -> Result<Self>;
634
+
635
+ /// Converts `list` into a `Vec<T>`, used in `Lift for Vec<T>`.
636
+ ///
637
+ /// This is primarily here to get overridden for implementations of integers
638
+ /// which can avoid some extra fluff and use a pattern that's more easily
639
+ /// optimizable by LLVM.
640
+ #[doc(hidden)]
641
+ fn load_list(cx: &mut LiftContext<'_>, list: &WasmList<Self>) -> Result<Vec<Self>>
642
+ where
643
+ Self: Sized,
644
+ {
645
+ (0..list.len)
646
+ .map(|index| list.get_from_store(cx, index).unwrap())
647
+ .collect()
648
+ }
649
+ }
650
+
651
+ // Macro to help generate "forwarding implementations" of `ComponentType` to
652
+ // another type, used for wrappers in Rust like `&T`, `Box<T>`, etc. Note that
653
+ // these wrappers only implement lowering because lifting native Rust types
654
+ // cannot be done.
655
+ macro_rules! forward_type_impls {
656
+ ($(($($generics:tt)*) $a:ty => $b:ty,)*) => ($(
657
+ unsafe impl <$($generics)*> ComponentType for $a {
658
+ type Lower = <$b as ComponentType>::Lower;
659
+
660
+ const ABI: CanonicalAbiInfo = <$b as ComponentType>::ABI;
661
+
662
+ #[inline]
663
+ fn typecheck(ty: &InterfaceType, types: &InstanceType<'_>) -> Result<()> {
664
+ <$b as ComponentType>::typecheck(ty, types)
665
+ }
666
+ }
667
+ )*)
668
+ }
669
+
670
+ forward_type_impls! {
671
+ (T: ComponentType + ?Sized) &'_ T => T,
672
+ (T: ComponentType + ?Sized) Box<T> => T,
673
+ (T: ComponentType + ?Sized) std::rc::Rc<T> => T,
674
+ (T: ComponentType + ?Sized) std::sync::Arc<T> => T,
675
+ () String => str,
676
+ (T: ComponentType) Vec<T> => [T],
677
+ }
678
+
679
+ macro_rules! forward_lowers {
680
+ ($(($($generics:tt)*) $a:ty => $b:ty,)*) => ($(
681
+ unsafe impl <$($generics)*> Lower for $a {
682
+ fn lower<U>(
683
+ &self,
684
+ cx: &mut LowerContext<'_, U>,
685
+ ty: InterfaceType,
686
+ dst: &mut MaybeUninit<Self::Lower>,
687
+ ) -> Result<()> {
688
+ <$b as Lower>::lower(self, cx, ty, dst)
689
+ }
690
+
691
+ fn store<U>(
692
+ &self,
693
+ cx: &mut LowerContext<'_, U>,
694
+ ty: InterfaceType,
695
+ offset: usize,
696
+ ) -> Result<()> {
697
+ <$b as Lower>::store(self, cx, ty, offset)
698
+ }
699
+ }
700
+ )*)
701
+ }
702
+
703
+ forward_lowers! {
704
+ (T: Lower + ?Sized) &'_ T => T,
705
+ (T: Lower + ?Sized) Box<T> => T,
706
+ (T: Lower + ?Sized) std::rc::Rc<T> => T,
707
+ (T: Lower + ?Sized) std::sync::Arc<T> => T,
708
+ () String => str,
709
+ (T: Lower) Vec<T> => [T],
710
+ }
711
+
712
+ macro_rules! forward_string_lifts {
713
+ ($($a:ty,)*) => ($(
714
+ unsafe impl Lift for $a {
715
+ #[inline]
716
+ fn lift(cx: &mut LiftContext<'_>, ty: InterfaceType, src: &Self::Lower) -> Result<Self> {
717
+ Ok(<WasmStr as Lift>::lift(cx, ty, src)?.to_str_from_memory(cx.memory())?.into())
718
+ }
719
+
720
+ #[inline]
721
+ fn load(cx: &mut LiftContext<'_>, ty: InterfaceType, bytes: &[u8]) -> Result<Self> {
722
+ Ok(<WasmStr as Lift>::load(cx, ty, bytes)?.to_str_from_memory(cx.memory())?.into())
723
+ }
724
+ }
725
+ )*)
726
+ }
727
+
728
+ forward_string_lifts! {
729
+ Box<str>,
730
+ std::rc::Rc<str>,
731
+ std::sync::Arc<str>,
732
+ String,
733
+ }
734
+
735
+ macro_rules! forward_list_lifts {
736
+ ($($a:ty,)*) => ($(
737
+ unsafe impl <T: Lift> Lift for $a {
738
+ fn lift(cx: &mut LiftContext<'_>, ty: InterfaceType, src: &Self::Lower) -> Result<Self> {
739
+ let list = <WasmList::<T> as Lift>::lift(cx, ty, src)?;
740
+ Ok(T::load_list(cx, &list)?.into())
741
+ }
742
+
743
+ fn load(cx: &mut LiftContext<'_>, ty: InterfaceType, bytes: &[u8]) -> Result<Self> {
744
+ let list = <WasmList::<T> as Lift>::load(cx, ty, bytes)?;
745
+ Ok(T::load_list(cx, &list)?.into())
746
+ }
747
+ }
748
+ )*)
749
+ }
750
+
751
+ forward_list_lifts! {
752
+ Box<[T]>,
753
+ std::rc::Rc<[T]>,
754
+ std::sync::Arc<[T]>,
755
+ Vec<T>,
756
+ }
757
+
758
+ // Macro to help generate `ComponentType` implementations for primitive types
759
+ // such as integers, char, bool, etc.
760
+ macro_rules! integers {
761
+ ($($primitive:ident = $ty:ident in $field:ident/$get:ident with abi:$abi:ident,)*) => ($(
762
+ unsafe impl ComponentType for $primitive {
763
+ type Lower = ValRaw;
764
+
765
+ const ABI: CanonicalAbiInfo = CanonicalAbiInfo::$abi;
766
+
767
+ fn typecheck(ty: &InterfaceType, _types: &InstanceType<'_>) -> Result<()> {
768
+ match ty {
769
+ InterfaceType::$ty => Ok(()),
770
+ other => bail!("expected `{}` found `{}`", desc(&InterfaceType::$ty), desc(other))
771
+ }
772
+ }
773
+ }
774
+
775
+ unsafe impl Lower for $primitive {
776
+ #[inline]
777
+ #[allow(trivial_numeric_casts)]
778
+ fn lower<T>(
779
+ &self,
780
+ _cx: &mut LowerContext<'_, T>,
781
+ ty: InterfaceType,
782
+ dst: &mut MaybeUninit<Self::Lower>,
783
+ ) -> Result<()> {
784
+ debug_assert!(matches!(ty, InterfaceType::$ty));
785
+ dst.write(ValRaw::$field(*self as $field));
786
+ Ok(())
787
+ }
788
+
789
+ #[inline]
790
+ fn store<T>(
791
+ &self,
792
+ cx: &mut LowerContext<'_, T>,
793
+ ty: InterfaceType,
794
+ offset: usize,
795
+ ) -> Result<()> {
796
+ debug_assert!(matches!(ty, InterfaceType::$ty));
797
+ debug_assert!(offset % Self::SIZE32 == 0);
798
+ *cx.get(offset) = self.to_le_bytes();
799
+ Ok(())
800
+ }
801
+
802
+ fn store_list<T>(
803
+ cx: &mut LowerContext<'_, T>,
804
+ ty: InterfaceType,
805
+ offset: usize,
806
+ items: &[Self],
807
+ ) -> Result<()> {
808
+ debug_assert!(matches!(ty, InterfaceType::$ty));
809
+
810
+ // Double-check that the CM alignment is at least the host's
811
+ // alignment for this type which should be true for all
812
+ // platforms.
813
+ assert!((Self::ALIGN32 as usize) >= mem::align_of::<Self>());
814
+
815
+ // Slice `cx`'s memory to the window that we'll be modifying.
816
+ // This should all have already been verified in terms of
817
+ // alignment and sizing meaning that these assertions here are
818
+ // not truly necessary but are instead double-checks.
819
+ //
820
+ // Note that we're casting a `[u8]` slice to `[Self]` with
821
+ // `align_to_mut` which is not safe in general but is safe in
822
+ // our specific case as all `u8` patterns are valid `Self`
823
+ // patterns since `Self` is an integral type.
824
+ let dst = &mut cx.as_slice_mut()[offset..][..items.len() * Self::SIZE32];
825
+ let (before, middle, end) = unsafe { dst.align_to_mut::<Self>() };
826
+ assert!(before.is_empty() && end.is_empty());
827
+ assert_eq!(middle.len(), items.len());
828
+
829
+ // And with all that out of the way perform the copying loop.
830
+ // This is not a `copy_from_slice` because endianness needs to
831
+ // be handled here, but LLVM should pretty easily transform this
832
+ // into a memcpy on little-endian platforms.
833
+ for (dst, src) in middle.iter_mut().zip(items) {
834
+ *dst = src.to_le();
835
+ }
836
+ Ok(())
837
+ }
838
+ }
839
+
840
+ unsafe impl Lift for $primitive {
841
+ #[inline]
842
+ #[allow(trivial_numeric_casts)]
843
+ fn lift(_cx: &mut LiftContext<'_>, ty: InterfaceType, src: &Self::Lower) -> Result<Self> {
844
+ debug_assert!(matches!(ty, InterfaceType::$ty));
845
+ Ok(src.$get() as $primitive)
846
+ }
847
+
848
+ #[inline]
849
+ fn load(_cx: &mut LiftContext<'_>, ty: InterfaceType, bytes: &[u8]) -> Result<Self> {
850
+ debug_assert!(matches!(ty, InterfaceType::$ty));
851
+ debug_assert!((bytes.as_ptr() as usize) % Self::SIZE32 == 0);
852
+ Ok($primitive::from_le_bytes(bytes.try_into().unwrap()))
853
+ }
854
+
855
+ fn load_list(cx: &mut LiftContext<'_>, list: &WasmList<Self>) -> Result<Vec<Self>> {
856
+ Ok(
857
+ list._as_le_slice(cx.memory())
858
+ .iter()
859
+ .map(|i| Self::from_le(*i))
860
+ .collect(),
861
+ )
862
+ }
863
+ }
864
+ )*)
865
+ }
866
+
867
+ integers! {
868
+ i8 = S8 in i32/get_i32 with abi:SCALAR1,
869
+ u8 = U8 in u32/get_u32 with abi:SCALAR1,
870
+ i16 = S16 in i32/get_i32 with abi:SCALAR2,
871
+ u16 = U16 in u32/get_u32 with abi:SCALAR2,
872
+ i32 = S32 in i32/get_i32 with abi:SCALAR4,
873
+ u32 = U32 in u32/get_u32 with abi:SCALAR4,
874
+ i64 = S64 in i64/get_i64 with abi:SCALAR8,
875
+ u64 = U64 in u64/get_u64 with abi:SCALAR8,
876
+ }
877
+
878
+ macro_rules! floats {
879
+ ($($float:ident/$get_float:ident = $ty:ident with abi:$abi:ident)*) => ($(const _: () = {
880
+ /// All floats in-and-out of the canonical abi always have their nan
881
+ /// payloads canonicalized. conveniently the `NAN` constant in rust has
882
+ /// the same representation as canonical nan, so we can use that for the
883
+ /// nan value.
884
+ #[inline]
885
+ fn canonicalize(float: $float) -> $float {
886
+ if float.is_nan() {
887
+ $float::NAN
888
+ } else {
889
+ float
890
+ }
891
+ }
892
+
893
+ unsafe impl ComponentType for $float {
894
+ type Lower = ValRaw;
895
+
896
+ const ABI: CanonicalAbiInfo = CanonicalAbiInfo::$abi;
897
+
898
+ fn typecheck(ty: &InterfaceType, _types: &InstanceType<'_>) -> Result<()> {
899
+ match ty {
900
+ InterfaceType::$ty => Ok(()),
901
+ other => bail!("expected `{}` found `{}`", desc(&InterfaceType::$ty), desc(other))
902
+ }
903
+ }
904
+ }
905
+
906
+ unsafe impl Lower for $float {
907
+ #[inline]
908
+ fn lower<T>(
909
+ &self,
910
+ _cx: &mut LowerContext<'_, T>,
911
+ ty: InterfaceType,
912
+ dst: &mut MaybeUninit<Self::Lower>,
913
+ ) -> Result<()> {
914
+ debug_assert!(matches!(ty, InterfaceType::$ty));
915
+ dst.write(ValRaw::$float(canonicalize(*self).to_bits()));
916
+ Ok(())
917
+ }
918
+
919
+ #[inline]
920
+ fn store<T>(
921
+ &self,
922
+ cx: &mut LowerContext<'_, T>,
923
+ ty: InterfaceType,
924
+ offset: usize,
925
+ ) -> Result<()> {
926
+ debug_assert!(matches!(ty, InterfaceType::$ty));
927
+ debug_assert!(offset % Self::SIZE32 == 0);
928
+ let ptr = cx.get(offset);
929
+ *ptr = canonicalize(*self).to_bits().to_le_bytes();
930
+ Ok(())
931
+ }
932
+ }
933
+
934
+ unsafe impl Lift for $float {
935
+ #[inline]
936
+ fn lift(_cx: &mut LiftContext<'_>, ty: InterfaceType, src: &Self::Lower) -> Result<Self> {
937
+ debug_assert!(matches!(ty, InterfaceType::$ty));
938
+ Ok(canonicalize($float::from_bits(src.$get_float())))
939
+ }
940
+
941
+ #[inline]
942
+ fn load(_cx: &mut LiftContext<'_>, ty: InterfaceType, bytes: &[u8]) -> Result<Self> {
943
+ debug_assert!(matches!(ty, InterfaceType::$ty));
944
+ debug_assert!((bytes.as_ptr() as usize) % Self::SIZE32 == 0);
945
+ Ok(canonicalize($float::from_le_bytes(bytes.try_into().unwrap())))
946
+ }
947
+ }
948
+ };)*)
949
+ }
950
+
951
+ floats! {
952
+ f32/get_f32 = Float32 with abi:SCALAR4
953
+ f64/get_f64 = Float64 with abi:SCALAR8
954
+ }
955
+
956
+ unsafe impl ComponentType for bool {
957
+ type Lower = ValRaw;
958
+
959
+ const ABI: CanonicalAbiInfo = CanonicalAbiInfo::SCALAR1;
960
+
961
+ fn typecheck(ty: &InterfaceType, _types: &InstanceType<'_>) -> Result<()> {
962
+ match ty {
963
+ InterfaceType::Bool => Ok(()),
964
+ other => bail!("expected `bool` found `{}`", desc(other)),
965
+ }
966
+ }
967
+ }
968
+
969
+ unsafe impl Lower for bool {
970
+ fn lower<T>(
971
+ &self,
972
+ _cx: &mut LowerContext<'_, T>,
973
+ ty: InterfaceType,
974
+ dst: &mut MaybeUninit<Self::Lower>,
975
+ ) -> Result<()> {
976
+ debug_assert!(matches!(ty, InterfaceType::Bool));
977
+ dst.write(ValRaw::i32(*self as i32));
978
+ Ok(())
979
+ }
980
+
981
+ fn store<T>(
982
+ &self,
983
+ cx: &mut LowerContext<'_, T>,
984
+ ty: InterfaceType,
985
+ offset: usize,
986
+ ) -> Result<()> {
987
+ debug_assert!(matches!(ty, InterfaceType::Bool));
988
+ debug_assert!(offset % Self::SIZE32 == 0);
989
+ cx.get::<1>(offset)[0] = *self as u8;
990
+ Ok(())
991
+ }
992
+ }
993
+
994
+ unsafe impl Lift for bool {
995
+ #[inline]
996
+ fn lift(_cx: &mut LiftContext<'_>, ty: InterfaceType, src: &Self::Lower) -> Result<Self> {
997
+ debug_assert!(matches!(ty, InterfaceType::Bool));
998
+ match src.get_i32() {
999
+ 0 => Ok(false),
1000
+ _ => Ok(true),
1001
+ }
1002
+ }
1003
+
1004
+ #[inline]
1005
+ fn load(_cx: &mut LiftContext<'_>, ty: InterfaceType, bytes: &[u8]) -> Result<Self> {
1006
+ debug_assert!(matches!(ty, InterfaceType::Bool));
1007
+ match bytes[0] {
1008
+ 0 => Ok(false),
1009
+ _ => Ok(true),
1010
+ }
1011
+ }
1012
+ }
1013
+
1014
+ unsafe impl ComponentType for char {
1015
+ type Lower = ValRaw;
1016
+
1017
+ const ABI: CanonicalAbiInfo = CanonicalAbiInfo::SCALAR4;
1018
+
1019
+ fn typecheck(ty: &InterfaceType, _types: &InstanceType<'_>) -> Result<()> {
1020
+ match ty {
1021
+ InterfaceType::Char => Ok(()),
1022
+ other => bail!("expected `char` found `{}`", desc(other)),
1023
+ }
1024
+ }
1025
+ }
1026
+
1027
+ unsafe impl Lower for char {
1028
+ #[inline]
1029
+ fn lower<T>(
1030
+ &self,
1031
+ _cx: &mut LowerContext<'_, T>,
1032
+ ty: InterfaceType,
1033
+ dst: &mut MaybeUninit<Self::Lower>,
1034
+ ) -> Result<()> {
1035
+ debug_assert!(matches!(ty, InterfaceType::Char));
1036
+ dst.write(ValRaw::u32(u32::from(*self)));
1037
+ Ok(())
1038
+ }
1039
+
1040
+ #[inline]
1041
+ fn store<T>(
1042
+ &self,
1043
+ cx: &mut LowerContext<'_, T>,
1044
+ ty: InterfaceType,
1045
+ offset: usize,
1046
+ ) -> Result<()> {
1047
+ debug_assert!(matches!(ty, InterfaceType::Char));
1048
+ debug_assert!(offset % Self::SIZE32 == 0);
1049
+ *cx.get::<4>(offset) = u32::from(*self).to_le_bytes();
1050
+ Ok(())
1051
+ }
1052
+ }
1053
+
1054
+ unsafe impl Lift for char {
1055
+ #[inline]
1056
+ fn lift(_cx: &mut LiftContext<'_>, ty: InterfaceType, src: &Self::Lower) -> Result<Self> {
1057
+ debug_assert!(matches!(ty, InterfaceType::Char));
1058
+ Ok(char::try_from(src.get_u32())?)
1059
+ }
1060
+
1061
+ #[inline]
1062
+ fn load(_cx: &mut LiftContext<'_>, ty: InterfaceType, bytes: &[u8]) -> Result<Self> {
1063
+ debug_assert!(matches!(ty, InterfaceType::Char));
1064
+ debug_assert!((bytes.as_ptr() as usize) % Self::SIZE32 == 0);
1065
+ let bits = u32::from_le_bytes(bytes.try_into().unwrap());
1066
+ Ok(char::try_from(bits)?)
1067
+ }
1068
+ }
1069
+
1070
+ // TODO: these probably need different constants for memory64
1071
+ const UTF16_TAG: usize = 1 << 31;
1072
+ const MAX_STRING_BYTE_LENGTH: usize = (1 << 31) - 1;
1073
+
1074
+ // Note that this is similar to `ComponentType for WasmStr` except it can only
1075
+ // be used for lowering, not lifting.
1076
+ unsafe impl ComponentType for str {
1077
+ type Lower = [ValRaw; 2];
1078
+
1079
+ const ABI: CanonicalAbiInfo = CanonicalAbiInfo::POINTER_PAIR;
1080
+
1081
+ fn typecheck(ty: &InterfaceType, _types: &InstanceType<'_>) -> Result<()> {
1082
+ match ty {
1083
+ InterfaceType::String => Ok(()),
1084
+ other => bail!("expected `string` found `{}`", desc(other)),
1085
+ }
1086
+ }
1087
+ }
1088
+
1089
+ unsafe impl Lower for str {
1090
+ fn lower<T>(
1091
+ &self,
1092
+ cx: &mut LowerContext<'_, T>,
1093
+ ty: InterfaceType,
1094
+ dst: &mut MaybeUninit<[ValRaw; 2]>,
1095
+ ) -> Result<()> {
1096
+ debug_assert!(matches!(ty, InterfaceType::String));
1097
+ let (ptr, len) = lower_string(cx, self)?;
1098
+ // See "WRITEPTR64" above for why this is always storing a 64-bit
1099
+ // integer.
1100
+ map_maybe_uninit!(dst[0]).write(ValRaw::i64(ptr as i64));
1101
+ map_maybe_uninit!(dst[1]).write(ValRaw::i64(len as i64));
1102
+ Ok(())
1103
+ }
1104
+
1105
+ fn store<T>(
1106
+ &self,
1107
+ cx: &mut LowerContext<'_, T>,
1108
+ ty: InterfaceType,
1109
+ offset: usize,
1110
+ ) -> Result<()> {
1111
+ debug_assert!(matches!(ty, InterfaceType::String));
1112
+ debug_assert!(offset % (Self::ALIGN32 as usize) == 0);
1113
+ let (ptr, len) = lower_string(cx, self)?;
1114
+ // FIXME: needs memory64 handling
1115
+ *cx.get(offset + 0) = (ptr as i32).to_le_bytes();
1116
+ *cx.get(offset + 4) = (len as i32).to_le_bytes();
1117
+ Ok(())
1118
+ }
1119
+ }
1120
+
1121
+ fn lower_string<T>(cx: &mut LowerContext<'_, T>, string: &str) -> Result<(usize, usize)> {
1122
+ // Note that in general the wasm module can't assume anything about what the
1123
+ // host strings are encoded as. Additionally hosts are allowed to have
1124
+ // differently-encoded strings at runtime. Finally when copying a string
1125
+ // into wasm it's somewhat strict in the sense that the various patterns of
1126
+ // allocation and such are already dictated for us.
1127
+ //
1128
+ // In general what this means is that when copying a string from the host
1129
+ // into the destination we need to follow one of the cases of copying into
1130
+ // WebAssembly. It doesn't particularly matter which case as long as it ends
1131
+ // up in the right encoding. For example a destination encoding of
1132
+ // latin1+utf16 has a number of ways to get copied into and we do something
1133
+ // here that isn't the default "utf8 to latin1+utf16" since we have access
1134
+ // to simd-accelerated helpers in the `encoding_rs` crate. This is ok though
1135
+ // because we can fake that the host string was already stored in latin1
1136
+ // format and follow that copy pattern instead.
1137
+ match cx.options.string_encoding() {
1138
+ // This corresponds to `store_string_copy` in the canonical ABI where
1139
+ // the host's representation is utf-8 and the wasm module wants utf-8 so
1140
+ // a copy is all that's needed (and the `realloc` can be precise for the
1141
+ // initial memory allocation).
1142
+ StringEncoding::Utf8 => {
1143
+ if string.len() > MAX_STRING_BYTE_LENGTH {
1144
+ bail!(
1145
+ "string length of {} too large to copy into wasm",
1146
+ string.len()
1147
+ );
1148
+ }
1149
+ let ptr = cx.realloc(0, 0, 1, string.len())?;
1150
+ cx.as_slice_mut()[ptr..][..string.len()].copy_from_slice(string.as_bytes());
1151
+ Ok((ptr, string.len()))
1152
+ }
1153
+
1154
+ // This corresponds to `store_utf8_to_utf16` in the canonical ABI. Here
1155
+ // an over-large allocation is performed and then shrunk afterwards if
1156
+ // necessary.
1157
+ StringEncoding::Utf16 => {
1158
+ let size = string.len() * 2;
1159
+ if size > MAX_STRING_BYTE_LENGTH {
1160
+ bail!(
1161
+ "string length of {} too large to copy into wasm",
1162
+ string.len()
1163
+ );
1164
+ }
1165
+ let mut ptr = cx.realloc(0, 0, 2, size)?;
1166
+ let mut copied = 0;
1167
+ let bytes = &mut cx.as_slice_mut()[ptr..][..size];
1168
+ for (u, bytes) in string.encode_utf16().zip(bytes.chunks_mut(2)) {
1169
+ let u_bytes = u.to_le_bytes();
1170
+ bytes[0] = u_bytes[0];
1171
+ bytes[1] = u_bytes[1];
1172
+ copied += 1;
1173
+ }
1174
+ if (copied * 2) < size {
1175
+ ptr = cx.realloc(ptr, size, 2, copied * 2)?;
1176
+ }
1177
+ Ok((ptr, copied))
1178
+ }
1179
+
1180
+ StringEncoding::CompactUtf16 => {
1181
+ // This corresponds to `store_string_to_latin1_or_utf16`
1182
+ let bytes = string.as_bytes();
1183
+ let mut iter = string.char_indices();
1184
+ let mut ptr = cx.realloc(0, 0, 2, bytes.len())?;
1185
+ let mut dst = &mut cx.as_slice_mut()[ptr..][..bytes.len()];
1186
+ let mut result = 0;
1187
+ while let Some((i, ch)) = iter.next() {
1188
+ // Test if this `char` fits into the latin1 encoding.
1189
+ if let Ok(byte) = u8::try_from(u32::from(ch)) {
1190
+ dst[result] = byte;
1191
+ result += 1;
1192
+ continue;
1193
+ }
1194
+
1195
+ // .. if utf16 is forced to be used then the allocation is
1196
+ // bumped up to the maximum size.
1197
+ let worst_case = bytes
1198
+ .len()
1199
+ .checked_mul(2)
1200
+ .ok_or_else(|| anyhow!("byte length overflow"))?;
1201
+ if worst_case > MAX_STRING_BYTE_LENGTH {
1202
+ bail!("byte length too large");
1203
+ }
1204
+ ptr = cx.realloc(ptr, bytes.len(), 2, worst_case)?;
1205
+ dst = &mut cx.as_slice_mut()[ptr..][..worst_case];
1206
+
1207
+ // Previously encoded latin1 bytes are inflated to their 16-bit
1208
+ // size for utf16
1209
+ for i in (0..result).rev() {
1210
+ dst[2 * i] = dst[i];
1211
+ dst[2 * i + 1] = 0;
1212
+ }
1213
+
1214
+ // and then the remainder of the string is encoded.
1215
+ for (u, bytes) in string[i..]
1216
+ .encode_utf16()
1217
+ .zip(dst[2 * result..].chunks_mut(2))
1218
+ {
1219
+ let u_bytes = u.to_le_bytes();
1220
+ bytes[0] = u_bytes[0];
1221
+ bytes[1] = u_bytes[1];
1222
+ result += 1;
1223
+ }
1224
+ if worst_case > 2 * result {
1225
+ ptr = cx.realloc(ptr, worst_case, 2, 2 * result)?;
1226
+ }
1227
+ return Ok((ptr, result | UTF16_TAG));
1228
+ }
1229
+ if result < bytes.len() {
1230
+ ptr = cx.realloc(ptr, bytes.len(), 2, result)?;
1231
+ }
1232
+ Ok((ptr, result))
1233
+ }
1234
+ }
1235
+ }
1236
+
1237
+ /// Representation of a string located in linear memory in a WebAssembly
1238
+ /// instance.
1239
+ ///
1240
+ /// This type can be used in place of `String` and `str` for string-taking APIs
1241
+ /// in some situations. The purpose of this type is to represent a range of
1242
+ /// validated bytes within a component but does not actually copy the bytes. The
1243
+ /// primary method, [`WasmStr::to_str`], attempts to return a reference to the
1244
+ /// string directly located in the component's memory, avoiding a copy into the
1245
+ /// host if possible.
1246
+ ///
1247
+ /// The downside of this type, however, is that accessing a string requires a
1248
+ /// [`Store`](crate::Store) pointer (via [`StoreContext`]). Bindings generated
1249
+ /// by [`bindgen!`](crate::component::bindgen), for example, do not have access
1250
+ /// to [`StoreContext`] and thus can't use this type.
1251
+ ///
1252
+ /// This is intended for more advanced use cases such as defining functions
1253
+ /// directly in a [`Linker`](crate::component::Linker). It's expected that in
1254
+ /// the future [`bindgen!`](crate::component::bindgen) will also have a way to
1255
+ /// use this type.
1256
+ ///
1257
+ /// This type is used with [`TypedFunc`], for example, when WebAssembly returns
1258
+ /// a string. This type cannot be used to give a string to WebAssembly, instead
1259
+ /// `&str` should be used for that (since it's coming from the host).
1260
+ ///
1261
+ /// Note that this type represents an in-bounds string in linear memory, but it
1262
+ /// does not represent a valid string (e.g. valid utf-8). Validation happens
1263
+ /// when [`WasmStr::to_str`] is called.
1264
+ ///
1265
+ /// Also note that this type does not implement [`Lower`], it only implements
1266
+ /// [`Lift`].
1267
+ pub struct WasmStr {
1268
+ ptr: usize,
1269
+ len: usize,
1270
+ options: Options,
1271
+ }
1272
+
1273
+ impl WasmStr {
1274
+ fn new(ptr: usize, len: usize, cx: &mut LiftContext<'_>) -> Result<WasmStr> {
1275
+ let byte_len = match cx.options.string_encoding() {
1276
+ StringEncoding::Utf8 => Some(len),
1277
+ StringEncoding::Utf16 => len.checked_mul(2),
1278
+ StringEncoding::CompactUtf16 => {
1279
+ if len & UTF16_TAG == 0 {
1280
+ Some(len)
1281
+ } else {
1282
+ (len ^ UTF16_TAG).checked_mul(2)
1283
+ }
1284
+ }
1285
+ };
1286
+ match byte_len.and_then(|len| ptr.checked_add(len)) {
1287
+ Some(n) if n <= cx.memory().len() => {}
1288
+ _ => bail!("string pointer/length out of bounds of memory"),
1289
+ }
1290
+ Ok(WasmStr {
1291
+ ptr,
1292
+ len,
1293
+ options: *cx.options,
1294
+ })
1295
+ }
1296
+
1297
+ /// Returns the underlying string that this cursor points to.
1298
+ ///
1299
+ /// Note that this will internally decode the string from the wasm's
1300
+ /// encoding to utf-8 and additionally perform validation.
1301
+ ///
1302
+ /// The `store` provided must be the store where this string lives to
1303
+ /// access the correct memory.
1304
+ ///
1305
+ /// # Errors
1306
+ ///
1307
+ /// Returns an error if the string wasn't encoded correctly (e.g. invalid
1308
+ /// utf-8).
1309
+ ///
1310
+ /// # Panics
1311
+ ///
1312
+ /// Panics if this string is not owned by `store`.
1313
+ //
1314
+ // TODO: should add accessors for specifically utf-8 and utf-16 that perhaps
1315
+ // in an opt-in basis don't do validation. Additionally there should be some
1316
+ // method that returns `[u16]` after validating to avoid the utf16-to-utf8
1317
+ // transcode.
1318
+ pub fn to_str<'a, T: 'a>(&self, store: impl Into<StoreContext<'a, T>>) -> Result<Cow<'a, str>> {
1319
+ let store = store.into().0;
1320
+ let memory = self.options.memory(store);
1321
+ self.to_str_from_memory(memory)
1322
+ }
1323
+
1324
+ fn to_str_from_memory<'a>(&self, memory: &'a [u8]) -> Result<Cow<'a, str>> {
1325
+ match self.options.string_encoding() {
1326
+ StringEncoding::Utf8 => self.decode_utf8(memory),
1327
+ StringEncoding::Utf16 => self.decode_utf16(memory, self.len),
1328
+ StringEncoding::CompactUtf16 => {
1329
+ if self.len & UTF16_TAG == 0 {
1330
+ self.decode_latin1(memory)
1331
+ } else {
1332
+ self.decode_utf16(memory, self.len ^ UTF16_TAG)
1333
+ }
1334
+ }
1335
+ }
1336
+ }
1337
+
1338
+ fn decode_utf8<'a>(&self, memory: &'a [u8]) -> Result<Cow<'a, str>> {
1339
+ // Note that bounds-checking already happen in construction of `WasmStr`
1340
+ // so this is never expected to panic. This could theoretically be
1341
+ // unchecked indexing if we're feeling wild enough.
1342
+ Ok(str::from_utf8(&memory[self.ptr..][..self.len])?.into())
1343
+ }
1344
+
1345
+ fn decode_utf16<'a>(&self, memory: &'a [u8], len: usize) -> Result<Cow<'a, str>> {
1346
+ // See notes in `decode_utf8` for why this is panicking indexing.
1347
+ let memory = &memory[self.ptr..][..len * 2];
1348
+ Ok(std::char::decode_utf16(
1349
+ memory
1350
+ .chunks(2)
1351
+ .map(|chunk| u16::from_le_bytes(chunk.try_into().unwrap())),
1352
+ )
1353
+ .collect::<Result<String, _>>()?
1354
+ .into())
1355
+ }
1356
+
1357
+ fn decode_latin1<'a>(&self, memory: &'a [u8]) -> Result<Cow<'a, str>> {
1358
+ // See notes in `decode_utf8` for why this is panicking indexing.
1359
+ Ok(encoding_rs::mem::decode_latin1(
1360
+ &memory[self.ptr..][..self.len],
1361
+ ))
1362
+ }
1363
+ }
1364
+
1365
+ // Note that this is similar to `ComponentType for str` except it can only be
1366
+ // used for lifting, not lowering.
1367
+ unsafe impl ComponentType for WasmStr {
1368
+ type Lower = <str as ComponentType>::Lower;
1369
+
1370
+ const ABI: CanonicalAbiInfo = CanonicalAbiInfo::POINTER_PAIR;
1371
+
1372
+ fn typecheck(ty: &InterfaceType, _types: &InstanceType<'_>) -> Result<()> {
1373
+ match ty {
1374
+ InterfaceType::String => Ok(()),
1375
+ other => bail!("expected `string` found `{}`", desc(other)),
1376
+ }
1377
+ }
1378
+ }
1379
+
1380
+ unsafe impl Lift for WasmStr {
1381
+ #[inline]
1382
+ fn lift(cx: &mut LiftContext<'_>, ty: InterfaceType, src: &Self::Lower) -> Result<Self> {
1383
+ debug_assert!(matches!(ty, InterfaceType::String));
1384
+ // FIXME: needs memory64 treatment
1385
+ let ptr = src[0].get_u32();
1386
+ let len = src[1].get_u32();
1387
+ let (ptr, len) = (usize::try_from(ptr)?, usize::try_from(len)?);
1388
+ WasmStr::new(ptr, len, cx)
1389
+ }
1390
+
1391
+ #[inline]
1392
+ fn load(cx: &mut LiftContext<'_>, ty: InterfaceType, bytes: &[u8]) -> Result<Self> {
1393
+ debug_assert!(matches!(ty, InterfaceType::String));
1394
+ debug_assert!((bytes.as_ptr() as usize) % (Self::ALIGN32 as usize) == 0);
1395
+ // FIXME: needs memory64 treatment
1396
+ let ptr = u32::from_le_bytes(bytes[..4].try_into().unwrap());
1397
+ let len = u32::from_le_bytes(bytes[4..].try_into().unwrap());
1398
+ let (ptr, len) = (usize::try_from(ptr)?, usize::try_from(len)?);
1399
+ WasmStr::new(ptr, len, cx)
1400
+ }
1401
+ }
1402
+
1403
+ unsafe impl<T> ComponentType for [T]
1404
+ where
1405
+ T: ComponentType,
1406
+ {
1407
+ type Lower = [ValRaw; 2];
1408
+
1409
+ const ABI: CanonicalAbiInfo = CanonicalAbiInfo::POINTER_PAIR;
1410
+
1411
+ fn typecheck(ty: &InterfaceType, types: &InstanceType<'_>) -> Result<()> {
1412
+ match ty {
1413
+ InterfaceType::List(t) => T::typecheck(&types.types[*t].element, types),
1414
+ other => bail!("expected `list` found `{}`", desc(other)),
1415
+ }
1416
+ }
1417
+ }
1418
+
1419
+ unsafe impl<T> Lower for [T]
1420
+ where
1421
+ T: Lower,
1422
+ {
1423
+ fn lower<U>(
1424
+ &self,
1425
+ cx: &mut LowerContext<'_, U>,
1426
+ ty: InterfaceType,
1427
+ dst: &mut MaybeUninit<[ValRaw; 2]>,
1428
+ ) -> Result<()> {
1429
+ let elem = match ty {
1430
+ InterfaceType::List(i) => cx.types[i].element,
1431
+ _ => bad_type_info(),
1432
+ };
1433
+ let (ptr, len) = lower_list(cx, elem, self)?;
1434
+ // See "WRITEPTR64" above for why this is always storing a 64-bit
1435
+ // integer.
1436
+ map_maybe_uninit!(dst[0]).write(ValRaw::i64(ptr as i64));
1437
+ map_maybe_uninit!(dst[1]).write(ValRaw::i64(len as i64));
1438
+ Ok(())
1439
+ }
1440
+
1441
+ fn store<U>(
1442
+ &self,
1443
+ cx: &mut LowerContext<'_, U>,
1444
+ ty: InterfaceType,
1445
+ offset: usize,
1446
+ ) -> Result<()> {
1447
+ let elem = match ty {
1448
+ InterfaceType::List(i) => cx.types[i].element,
1449
+ _ => bad_type_info(),
1450
+ };
1451
+ debug_assert!(offset % (Self::ALIGN32 as usize) == 0);
1452
+ let (ptr, len) = lower_list(cx, elem, self)?;
1453
+ *cx.get(offset + 0) = (ptr as i32).to_le_bytes();
1454
+ *cx.get(offset + 4) = (len as i32).to_le_bytes();
1455
+ Ok(())
1456
+ }
1457
+ }
1458
+
1459
+ // FIXME: this is not a memcpy for `T` where `T` is something like `u8`.
1460
+ //
1461
+ // Some attempts to fix this have proved not fruitful. In isolation an attempt
1462
+ // was made where:
1463
+ //
1464
+ // * `MemoryMut` stored a `*mut [u8]` as its "last view" of memory to avoid
1465
+ // reloading the base pointer constantly. This view is reset on `realloc`.
1466
+ // * The bounds-checks in `MemoryMut::get` were removed (replaced with unsafe
1467
+ // indexing)
1468
+ //
1469
+ // Even then though this didn't correctly vectorized for `Vec<u8>`. It's not
1470
+ // entirely clear why but it appeared that it's related to reloading the base
1471
+ // pointer fo memory (I guess from `MemoryMut` itself?). Overall I'm not really
1472
+ // clear on what's happening there, but this is surely going to be a performance
1473
+ // bottleneck in the future.
1474
+ fn lower_list<T, U>(
1475
+ cx: &mut LowerContext<'_, U>,
1476
+ ty: InterfaceType,
1477
+ list: &[T],
1478
+ ) -> Result<(usize, usize)>
1479
+ where
1480
+ T: Lower,
1481
+ {
1482
+ let elem_size = T::SIZE32;
1483
+ let size = list
1484
+ .len()
1485
+ .checked_mul(elem_size)
1486
+ .ok_or_else(|| anyhow!("size overflow copying a list"))?;
1487
+ let ptr = cx.realloc(0, 0, T::ALIGN32, size)?;
1488
+ T::store_list(cx, ty, ptr, list)?;
1489
+ Ok((ptr, list.len()))
1490
+ }
1491
+
1492
+ /// Representation of a list of values that are owned by a WebAssembly instance.
1493
+ ///
1494
+ /// For some more commentary about the rationale for this type see the
1495
+ /// documentation of [`WasmStr`]. In summary this type can avoid a copy when
1496
+ /// passing data to the host in some situations but is additionally more
1497
+ /// cumbersome to use by requiring a [`Store`](crate::Store) to be provided.
1498
+ ///
1499
+ /// This type is used whenever a `(list T)` is returned from a [`TypedFunc`],
1500
+ /// for example. This type represents a list of values that are stored in linear
1501
+ /// memory which are waiting to be read.
1502
+ ///
1503
+ /// Note that this type represents only a valid range of bytes for the list
1504
+ /// itself, it does not represent validity of the elements themselves and that's
1505
+ /// performed when they're iterated.
1506
+ ///
1507
+ /// Note that this type does not implement the [`Lower`] trait, only [`Lift`].
1508
+ pub struct WasmList<T> {
1509
+ ptr: usize,
1510
+ len: usize,
1511
+ options: Options,
1512
+ elem: InterfaceType,
1513
+ // NB: it would probably be more efficient to store a non-atomic index-style
1514
+ // reference to something inside a `StoreOpaque`, but that's not easily
1515
+ // available at this time, so it's left as a future exercise.
1516
+ types: Arc<ComponentTypes>,
1517
+ instance: SendSyncPtr<ComponentInstance>,
1518
+ _marker: marker::PhantomData<T>,
1519
+ }
1520
+
1521
+ impl<T: Lift> WasmList<T> {
1522
+ fn new(
1523
+ ptr: usize,
1524
+ len: usize,
1525
+ cx: &mut LiftContext<'_>,
1526
+ elem: InterfaceType,
1527
+ ) -> Result<WasmList<T>> {
1528
+ match len
1529
+ .checked_mul(T::SIZE32)
1530
+ .and_then(|len| ptr.checked_add(len))
1531
+ {
1532
+ Some(n) if n <= cx.memory().len() => {}
1533
+ _ => bail!("list pointer/length out of bounds of memory"),
1534
+ }
1535
+ if ptr % usize::try_from(T::ALIGN32)? != 0 {
1536
+ bail!("list pointer is not aligned")
1537
+ }
1538
+ Ok(WasmList {
1539
+ ptr,
1540
+ len,
1541
+ options: *cx.options,
1542
+ elem,
1543
+ types: cx.types.clone(),
1544
+ instance: SendSyncPtr::new(NonNull::new(cx.instance_ptr()).unwrap()),
1545
+ _marker: marker::PhantomData,
1546
+ })
1547
+ }
1548
+
1549
+ /// Returns the item length of this vector
1550
+ #[inline]
1551
+ pub fn len(&self) -> usize {
1552
+ self.len
1553
+ }
1554
+
1555
+ /// Gets the `n`th element of this list.
1556
+ ///
1557
+ /// Returns `None` if `index` is out of bounds. Returns `Some(Err(..))` if
1558
+ /// the value couldn't be decoded (it was invalid). Returns `Some(Ok(..))`
1559
+ /// if the value is valid.
1560
+ ///
1561
+ /// # Panics
1562
+ ///
1563
+ /// This function will panic if the string did not originally come from the
1564
+ /// `store` specified.
1565
+ //
1566
+ // TODO: given that interface values are intended to be consumed in one go
1567
+ // should we even expose a random access iteration API? In theory all
1568
+ // consumers should be validating through the iterator.
1569
+ pub fn get(&self, mut store: impl AsContextMut, index: usize) -> Option<Result<T>> {
1570
+ let store = store.as_context_mut().0;
1571
+ self.options.store_id().assert_belongs_to(store.id());
1572
+ // This should be safe because the unsafety lies in the `self.instance`
1573
+ // pointer passed in has previously been validated by the lifting
1574
+ // context this was originally created within and with the check above
1575
+ // this is guaranteed to be the same store. This means that this should
1576
+ // be carrying over the original assertion from the original creation of
1577
+ // the lifting context that created this type.
1578
+ let mut cx =
1579
+ unsafe { LiftContext::new(store, &self.options, &self.types, self.instance.as_ptr()) };
1580
+ self.get_from_store(&mut cx, index)
1581
+ }
1582
+
1583
+ fn get_from_store(&self, cx: &mut LiftContext<'_>, index: usize) -> Option<Result<T>> {
1584
+ if index >= self.len {
1585
+ return None;
1586
+ }
1587
+ // Note that this is using panicking indexing and this is expected to
1588
+ // never fail. The bounds-checking here happened during the construction
1589
+ // of the `WasmList` itself which means these should always be in-bounds
1590
+ // (and wasm memory can only grow). This could theoretically be
1591
+ // unchecked indexing if we're confident enough and it's actually a perf
1592
+ // issue one day.
1593
+ let bytes = &cx.memory()[self.ptr + index * T::SIZE32..][..T::SIZE32];
1594
+ Some(T::load(cx, self.elem, bytes))
1595
+ }
1596
+
1597
+ /// Returns an iterator over the elements of this list.
1598
+ ///
1599
+ /// Each item of the list may fail to decode and is represented through the
1600
+ /// `Result` value of the iterator.
1601
+ pub fn iter<'a, U: 'a>(
1602
+ &'a self,
1603
+ store: impl Into<StoreContextMut<'a, U>>,
1604
+ ) -> impl ExactSizeIterator<Item = Result<T>> + 'a {
1605
+ let store = store.into().0;
1606
+ self.options.store_id().assert_belongs_to(store.id());
1607
+ // See comments about unsafety in the `get` method.
1608
+ let mut cx =
1609
+ unsafe { LiftContext::new(store, &self.options, &self.types, self.instance.as_ptr()) };
1610
+ (0..self.len).map(move |i| self.get_from_store(&mut cx, i).unwrap())
1611
+ }
1612
+ }
1613
+
1614
+ macro_rules! raw_wasm_list_accessors {
1615
+ ($($i:ident)*) => ($(
1616
+ impl WasmList<$i> {
1617
+ /// Get access to the raw underlying memory for this list.
1618
+ ///
1619
+ /// This method will return a direct slice into the original wasm
1620
+ /// module's linear memory where the data for this slice is stored.
1621
+ /// This allows the embedder to have efficient access to the
1622
+ /// underlying memory if needed and avoid copies and such if
1623
+ /// desired.
1624
+ ///
1625
+ /// Note that multi-byte integers are stored in little-endian format
1626
+ /// so portable processing of this slice must be aware of the host's
1627
+ /// byte-endianness. The `from_le` constructors in the Rust standard
1628
+ /// library should be suitable for converting from little-endian.
1629
+ ///
1630
+ /// # Panics
1631
+ ///
1632
+ /// Panics if the `store` provided is not the one from which this
1633
+ /// slice originated.
1634
+ pub fn as_le_slice<'a, T: 'a>(&self, store: impl Into<StoreContext<'a, T>>) -> &'a [$i] {
1635
+ let memory = self.options.memory(store.into().0);
1636
+ self._as_le_slice(memory)
1637
+ }
1638
+
1639
+ fn _as_le_slice<'a>(&self, all_of_memory: &'a [u8]) -> &'a [$i] {
1640
+ // See comments in `WasmList::get` for the panicking indexing
1641
+ let byte_size = self.len * mem::size_of::<$i>();
1642
+ let bytes = &all_of_memory[self.ptr..][..byte_size];
1643
+
1644
+ // The canonical ABI requires that everything is aligned to its
1645
+ // own size, so this should be an aligned array. Furthermore the
1646
+ // alignment of primitive integers for hosts should be smaller
1647
+ // than or equal to the size of the primitive itself, meaning
1648
+ // that a wasm canonical-abi-aligned list is also aligned for
1649
+ // the host. That should mean that the head/tail slices here are
1650
+ // empty.
1651
+ //
1652
+ // Also note that the `unsafe` here is needed since the type
1653
+ // we're aligning to isn't guaranteed to be valid, but in our
1654
+ // case it's just integers and bytes so this should be safe.
1655
+ unsafe {
1656
+ let (head, body, tail) = bytes.align_to::<$i>();
1657
+ assert!(head.is_empty() && tail.is_empty());
1658
+ body
1659
+ }
1660
+ }
1661
+ }
1662
+ )*)
1663
+ }
1664
+
1665
+ raw_wasm_list_accessors! {
1666
+ i8 i16 i32 i64
1667
+ u8 u16 u32 u64
1668
+ }
1669
+
1670
+ // Note that this is similar to `ComponentType for str` except it can only be
1671
+ // used for lifting, not lowering.
1672
+ unsafe impl<T: ComponentType> ComponentType for WasmList<T> {
1673
+ type Lower = <[T] as ComponentType>::Lower;
1674
+
1675
+ const ABI: CanonicalAbiInfo = CanonicalAbiInfo::POINTER_PAIR;
1676
+
1677
+ fn typecheck(ty: &InterfaceType, types: &InstanceType<'_>) -> Result<()> {
1678
+ <[T] as ComponentType>::typecheck(ty, types)
1679
+ }
1680
+ }
1681
+
1682
+ unsafe impl<T: Lift> Lift for WasmList<T> {
1683
+ fn lift(cx: &mut LiftContext<'_>, ty: InterfaceType, src: &Self::Lower) -> Result<Self> {
1684
+ let elem = match ty {
1685
+ InterfaceType::List(i) => cx.types[i].element,
1686
+ _ => bad_type_info(),
1687
+ };
1688
+ // FIXME: needs memory64 treatment
1689
+ let ptr = src[0].get_u32();
1690
+ let len = src[1].get_u32();
1691
+ let (ptr, len) = (usize::try_from(ptr)?, usize::try_from(len)?);
1692
+ WasmList::new(ptr, len, cx, elem)
1693
+ }
1694
+
1695
+ fn load(cx: &mut LiftContext<'_>, ty: InterfaceType, bytes: &[u8]) -> Result<Self> {
1696
+ let elem = match ty {
1697
+ InterfaceType::List(i) => cx.types[i].element,
1698
+ _ => bad_type_info(),
1699
+ };
1700
+ debug_assert!((bytes.as_ptr() as usize) % (Self::ALIGN32 as usize) == 0);
1701
+ // FIXME: needs memory64 treatment
1702
+ let ptr = u32::from_le_bytes(bytes[..4].try_into().unwrap());
1703
+ let len = u32::from_le_bytes(bytes[4..].try_into().unwrap());
1704
+ let (ptr, len) = (usize::try_from(ptr)?, usize::try_from(len)?);
1705
+ WasmList::new(ptr, len, cx, elem)
1706
+ }
1707
+ }
1708
+
1709
+ /// Verify that the given wasm type is a tuple with the expected fields in the right order.
1710
+ fn typecheck_tuple(
1711
+ ty: &InterfaceType,
1712
+ types: &InstanceType<'_>,
1713
+ expected: &[fn(&InterfaceType, &InstanceType<'_>) -> Result<()>],
1714
+ ) -> Result<()> {
1715
+ match ty {
1716
+ InterfaceType::Tuple(t) => {
1717
+ let tuple = &types.types[*t];
1718
+ if tuple.types.len() != expected.len() {
1719
+ bail!(
1720
+ "expected {}-tuple, found {}-tuple",
1721
+ expected.len(),
1722
+ tuple.types.len()
1723
+ );
1724
+ }
1725
+ for (ty, check) in tuple.types.iter().zip(expected) {
1726
+ check(ty, types)?;
1727
+ }
1728
+ Ok(())
1729
+ }
1730
+ other => bail!("expected `tuple` found `{}`", desc(other)),
1731
+ }
1732
+ }
1733
+
1734
+ /// Verify that the given wasm type is a record with the expected fields in the right order and with the right
1735
+ /// names.
1736
+ pub fn typecheck_record(
1737
+ ty: &InterfaceType,
1738
+ types: &InstanceType<'_>,
1739
+ expected: &[(&str, fn(&InterfaceType, &InstanceType<'_>) -> Result<()>)],
1740
+ ) -> Result<()> {
1741
+ match ty {
1742
+ InterfaceType::Record(index) => {
1743
+ let fields = &types.types[*index].fields;
1744
+
1745
+ if fields.len() != expected.len() {
1746
+ bail!(
1747
+ "expected record of {} fields, found {} fields",
1748
+ expected.len(),
1749
+ fields.len()
1750
+ );
1751
+ }
1752
+
1753
+ for (field, &(name, check)) in fields.iter().zip(expected) {
1754
+ check(&field.ty, types)
1755
+ .with_context(|| format!("type mismatch for field {}", name))?;
1756
+
1757
+ if field.name != name {
1758
+ bail!("expected record field named {}, found {}", name, field.name);
1759
+ }
1760
+ }
1761
+
1762
+ Ok(())
1763
+ }
1764
+ other => bail!("expected `record` found `{}`", desc(other)),
1765
+ }
1766
+ }
1767
+
1768
+ /// Verify that the given wasm type is a variant with the expected cases in the right order and with the right
1769
+ /// names.
1770
+ pub fn typecheck_variant(
1771
+ ty: &InterfaceType,
1772
+ types: &InstanceType<'_>,
1773
+ expected: &[(
1774
+ &str,
1775
+ Option<fn(&InterfaceType, &InstanceType<'_>) -> Result<()>>,
1776
+ )],
1777
+ ) -> Result<()> {
1778
+ match ty {
1779
+ InterfaceType::Variant(index) => {
1780
+ let cases = &types.types[*index].cases;
1781
+
1782
+ if cases.len() != expected.len() {
1783
+ bail!(
1784
+ "expected variant of {} cases, found {} cases",
1785
+ expected.len(),
1786
+ cases.len()
1787
+ );
1788
+ }
1789
+
1790
+ for ((case_name, case_ty), &(name, check)) in cases.iter().zip(expected) {
1791
+ if *case_name != name {
1792
+ bail!("expected variant case named {name}, found {case_name}");
1793
+ }
1794
+
1795
+ match (check, case_ty) {
1796
+ (Some(check), Some(ty)) => check(ty, types)
1797
+ .with_context(|| format!("type mismatch for case {name}"))?,
1798
+ (None, None) => {}
1799
+ (Some(_), None) => {
1800
+ bail!("case `{name}` has no type but one was expected")
1801
+ }
1802
+ (None, Some(_)) => {
1803
+ bail!("case `{name}` has a type but none was expected")
1804
+ }
1805
+ }
1806
+ }
1807
+
1808
+ Ok(())
1809
+ }
1810
+ other => bail!("expected `variant` found `{}`", desc(other)),
1811
+ }
1812
+ }
1813
+
1814
+ /// Verify that the given wasm type is a enum with the expected cases in the right order and with the right
1815
+ /// names.
1816
+ pub fn typecheck_enum(
1817
+ ty: &InterfaceType,
1818
+ types: &InstanceType<'_>,
1819
+ expected: &[&str],
1820
+ ) -> Result<()> {
1821
+ match ty {
1822
+ InterfaceType::Enum(index) => {
1823
+ let names = &types.types[*index].names;
1824
+
1825
+ if names.len() != expected.len() {
1826
+ bail!(
1827
+ "expected enum of {} names, found {} names",
1828
+ expected.len(),
1829
+ names.len()
1830
+ );
1831
+ }
1832
+
1833
+ for (name, expected) in names.iter().zip(expected) {
1834
+ if name != expected {
1835
+ bail!("expected enum case named {}, found {}", expected, name);
1836
+ }
1837
+ }
1838
+
1839
+ Ok(())
1840
+ }
1841
+ other => bail!("expected `enum` found `{}`", desc(other)),
1842
+ }
1843
+ }
1844
+
1845
+ /// Verify that the given wasm type is a flags type with the expected flags in the right order and with the right
1846
+ /// names.
1847
+ pub fn typecheck_flags(
1848
+ ty: &InterfaceType,
1849
+ types: &InstanceType<'_>,
1850
+ expected: &[&str],
1851
+ ) -> Result<()> {
1852
+ match ty {
1853
+ InterfaceType::Flags(index) => {
1854
+ let names = &types.types[*index].names;
1855
+
1856
+ if names.len() != expected.len() {
1857
+ bail!(
1858
+ "expected flags type with {} names, found {} names",
1859
+ expected.len(),
1860
+ names.len()
1861
+ );
1862
+ }
1863
+
1864
+ for (name, expected) in names.iter().zip(expected) {
1865
+ if name != expected {
1866
+ bail!("expected flag named {}, found {}", expected, name);
1867
+ }
1868
+ }
1869
+
1870
+ Ok(())
1871
+ }
1872
+ other => bail!("expected `flags` found `{}`", desc(other)),
1873
+ }
1874
+ }
1875
+
1876
+ /// Format the specified bitflags using the specified names for debugging
1877
+ pub fn format_flags(bits: &[u32], names: &[&str], f: &mut fmt::Formatter) -> fmt::Result {
1878
+ f.write_str("(")?;
1879
+ let mut wrote = false;
1880
+ for (index, name) in names.iter().enumerate() {
1881
+ if ((bits[index / 32] >> (index % 32)) & 1) != 0 {
1882
+ if wrote {
1883
+ f.write_str("|")?;
1884
+ } else {
1885
+ wrote = true;
1886
+ }
1887
+
1888
+ f.write_str(name)?;
1889
+ }
1890
+ }
1891
+ f.write_str(")")
1892
+ }
1893
+
1894
+ unsafe impl<T> ComponentType for Option<T>
1895
+ where
1896
+ T: ComponentType,
1897
+ {
1898
+ type Lower = TupleLower2<<u32 as ComponentType>::Lower, T::Lower>;
1899
+
1900
+ const ABI: CanonicalAbiInfo = CanonicalAbiInfo::variant_static(&[None, Some(T::ABI)]);
1901
+
1902
+ fn typecheck(ty: &InterfaceType, types: &InstanceType<'_>) -> Result<()> {
1903
+ match ty {
1904
+ InterfaceType::Option(t) => T::typecheck(&types.types[*t].ty, types),
1905
+ other => bail!("expected `option` found `{}`", desc(other)),
1906
+ }
1907
+ }
1908
+ }
1909
+
1910
+ unsafe impl<T> ComponentVariant for Option<T>
1911
+ where
1912
+ T: ComponentType,
1913
+ {
1914
+ const CASES: &'static [Option<CanonicalAbiInfo>] = &[None, Some(T::ABI)];
1915
+ }
1916
+
1917
+ unsafe impl<T> Lower for Option<T>
1918
+ where
1919
+ T: Lower,
1920
+ {
1921
+ fn lower<U>(
1922
+ &self,
1923
+ cx: &mut LowerContext<'_, U>,
1924
+ ty: InterfaceType,
1925
+ dst: &mut MaybeUninit<Self::Lower>,
1926
+ ) -> Result<()> {
1927
+ let payload = match ty {
1928
+ InterfaceType::Option(ty) => cx.types[ty].ty,
1929
+ _ => bad_type_info(),
1930
+ };
1931
+ match self {
1932
+ None => {
1933
+ map_maybe_uninit!(dst.A1).write(ValRaw::i32(0));
1934
+ // Note that this is unsafe as we're writing an arbitrary
1935
+ // bit-pattern to an arbitrary type, but part of the unsafe
1936
+ // contract of the `ComponentType` trait is that we can assign
1937
+ // any bit-pattern. By writing all zeros here we're ensuring
1938
+ // that the core wasm arguments this translates to will all be
1939
+ // zeros (as the canonical ABI requires).
1940
+ unsafe {
1941
+ map_maybe_uninit!(dst.A2).as_mut_ptr().write_bytes(0u8, 1);
1942
+ }
1943
+ }
1944
+ Some(val) => {
1945
+ map_maybe_uninit!(dst.A1).write(ValRaw::i32(1));
1946
+ val.lower(cx, payload, map_maybe_uninit!(dst.A2))?;
1947
+ }
1948
+ }
1949
+ Ok(())
1950
+ }
1951
+
1952
+ fn store<U>(
1953
+ &self,
1954
+ cx: &mut LowerContext<'_, U>,
1955
+ ty: InterfaceType,
1956
+ offset: usize,
1957
+ ) -> Result<()> {
1958
+ debug_assert!(offset % (Self::ALIGN32 as usize) == 0);
1959
+ let payload = match ty {
1960
+ InterfaceType::Option(ty) => cx.types[ty].ty,
1961
+ _ => bad_type_info(),
1962
+ };
1963
+ match self {
1964
+ None => {
1965
+ cx.get::<1>(offset)[0] = 0;
1966
+ }
1967
+ Some(val) => {
1968
+ cx.get::<1>(offset)[0] = 1;
1969
+ val.store(cx, payload, offset + (Self::INFO.payload_offset32 as usize))?;
1970
+ }
1971
+ }
1972
+ Ok(())
1973
+ }
1974
+ }
1975
+
1976
+ unsafe impl<T> Lift for Option<T>
1977
+ where
1978
+ T: Lift,
1979
+ {
1980
+ fn lift(cx: &mut LiftContext<'_>, ty: InterfaceType, src: &Self::Lower) -> Result<Self> {
1981
+ let payload = match ty {
1982
+ InterfaceType::Option(ty) => cx.types[ty].ty,
1983
+ _ => bad_type_info(),
1984
+ };
1985
+ Ok(match src.A1.get_i32() {
1986
+ 0 => None,
1987
+ 1 => Some(T::lift(cx, payload, &src.A2)?),
1988
+ _ => bail!("invalid option discriminant"),
1989
+ })
1990
+ }
1991
+
1992
+ fn load(cx: &mut LiftContext<'_>, ty: InterfaceType, bytes: &[u8]) -> Result<Self> {
1993
+ debug_assert!((bytes.as_ptr() as usize) % (Self::ALIGN32 as usize) == 0);
1994
+ let payload_ty = match ty {
1995
+ InterfaceType::Option(ty) => cx.types[ty].ty,
1996
+ _ => bad_type_info(),
1997
+ };
1998
+ let discrim = bytes[0];
1999
+ let payload = &bytes[Self::INFO.payload_offset32 as usize..];
2000
+ match discrim {
2001
+ 0 => Ok(None),
2002
+ 1 => Ok(Some(T::load(cx, payload_ty, payload)?)),
2003
+ _ => bail!("invalid option discriminant"),
2004
+ }
2005
+ }
2006
+ }
2007
+
2008
+ #[derive(Clone, Copy)]
2009
+ #[repr(C)]
2010
+ pub struct ResultLower<T: Copy, E: Copy> {
2011
+ tag: ValRaw,
2012
+ payload: ResultLowerPayload<T, E>,
2013
+ }
2014
+
2015
+ #[derive(Clone, Copy)]
2016
+ #[repr(C)]
2017
+ union ResultLowerPayload<T: Copy, E: Copy> {
2018
+ ok: T,
2019
+ err: E,
2020
+ }
2021
+
2022
+ unsafe impl<T, E> ComponentType for Result<T, E>
2023
+ where
2024
+ T: ComponentType,
2025
+ E: ComponentType,
2026
+ {
2027
+ type Lower = ResultLower<T::Lower, E::Lower>;
2028
+
2029
+ const ABI: CanonicalAbiInfo = CanonicalAbiInfo::variant_static(&[Some(T::ABI), Some(E::ABI)]);
2030
+
2031
+ fn typecheck(ty: &InterfaceType, types: &InstanceType<'_>) -> Result<()> {
2032
+ match ty {
2033
+ InterfaceType::Result(r) => {
2034
+ let result = &types.types[*r];
2035
+ match &result.ok {
2036
+ Some(ty) => T::typecheck(ty, types)?,
2037
+ None if T::IS_RUST_UNIT_TYPE => {}
2038
+ None => bail!("expected no `ok` type"),
2039
+ }
2040
+ match &result.err {
2041
+ Some(ty) => E::typecheck(ty, types)?,
2042
+ None if E::IS_RUST_UNIT_TYPE => {}
2043
+ None => bail!("expected no `err` type"),
2044
+ }
2045
+ Ok(())
2046
+ }
2047
+ other => bail!("expected `result` found `{}`", desc(other)),
2048
+ }
2049
+ }
2050
+ }
2051
+
2052
+ /// Lowers the payload of a variant into the storage for the entire payload,
2053
+ /// handling writing zeros at the end of the representation if this payload is
2054
+ /// smaller than the entire flat representation.
2055
+ ///
2056
+ /// * `payload` - the flat storage space for the entire payload of the variant
2057
+ /// * `typed_payload` - projection from the payload storage space to the
2058
+ /// individaul storage space for this variant.
2059
+ /// * `lower` - lowering operation used to initialize the `typed_payload` return
2060
+ /// value.
2061
+ ///
2062
+ /// For more information on this se the comments in the `Lower for Result`
2063
+ /// implementation below.
2064
+ pub unsafe fn lower_payload<P, T>(
2065
+ payload: &mut MaybeUninit<P>,
2066
+ typed_payload: impl FnOnce(&mut MaybeUninit<P>) -> &mut MaybeUninit<T>,
2067
+ lower: impl FnOnce(&mut MaybeUninit<T>) -> Result<()>,
2068
+ ) -> Result<()> {
2069
+ let typed = typed_payload(payload);
2070
+ lower(typed)?;
2071
+
2072
+ let typed_len = storage_as_slice(typed).len();
2073
+ let payload = storage_as_slice_mut(payload);
2074
+ for slot in payload[typed_len..].iter_mut() {
2075
+ *slot = ValRaw::u64(0);
2076
+ }
2077
+ Ok(())
2078
+ }
2079
+
2080
+ unsafe impl<T, E> ComponentVariant for Result<T, E>
2081
+ where
2082
+ T: ComponentType,
2083
+ E: ComponentType,
2084
+ {
2085
+ const CASES: &'static [Option<CanonicalAbiInfo>] = &[Some(T::ABI), Some(E::ABI)];
2086
+ }
2087
+
2088
+ unsafe impl<T, E> Lower for Result<T, E>
2089
+ where
2090
+ T: Lower,
2091
+ E: Lower,
2092
+ {
2093
+ fn lower<U>(
2094
+ &self,
2095
+ cx: &mut LowerContext<'_, U>,
2096
+ ty: InterfaceType,
2097
+ dst: &mut MaybeUninit<Self::Lower>,
2098
+ ) -> Result<()> {
2099
+ let (ok, err) = match ty {
2100
+ InterfaceType::Result(ty) => {
2101
+ let ty = &cx.types[ty];
2102
+ (ty.ok, ty.err)
2103
+ }
2104
+ _ => bad_type_info(),
2105
+ };
2106
+
2107
+ // This implementation of `Lower::lower`, if you're reading these from
2108
+ // the top of this file, is the first location that the "join" logic of
2109
+ // the component model's canonical ABI encountered. The rough problem is
2110
+ // that let's say we have a component model type of the form:
2111
+ //
2112
+ // (result u64 (error (tuple f32 u16)))
2113
+ //
2114
+ // The flat representation of this is actually pretty tricky. Currently
2115
+ // it is:
2116
+ //
2117
+ // i32 i64 i32
2118
+ //
2119
+ // The first `i32` is the discriminant for the `result`, and the payload
2120
+ // is represented by `i64 i32`. The "ok" variant will only use the `i64`
2121
+ // and the "err" variant will use both `i64` and `i32`.
2122
+ //
2123
+ // In the "ok" variant the first issue is encountered. The size of one
2124
+ // variant may not match the size of the other variants. All variants
2125
+ // start at the "front" but when lowering a type we need to be sure to
2126
+ // initialize the later variants (lest we leak random host memory into
2127
+ // the guest module). Due to how the `Lower` type is represented as a
2128
+ // `union` of all the variants what ends up happening here is that
2129
+ // internally within the `lower_payload` after the typed payload is
2130
+ // lowered the remaining bits of the payload that weren't initialized
2131
+ // are all set to zero. This will guarantee that we'll write to all the
2132
+ // slots for each variant.
2133
+ //
2134
+ // The "err" variant encounters the second issue, however, which is that
2135
+ // the flat representation for each type may differ between payloads. In
2136
+ // the "ok" arm an `i64` is written, but the `lower` implementation for
2137
+ // the "err" arm will write an `f32` and then an `i32`. For this
2138
+ // implementation of `lower` to be valid the `f32` needs to get inflated
2139
+ // to an `i64` with zero-padding in the upper bits. What may be
2140
+ // surprising, however, is that none of this is handled in this file.
2141
+ // This implementation looks like it's blindly deferring to `E::lower`
2142
+ // and hoping it does the right thing.
2143
+ //
2144
+ // In reality, however, the correctness of variant lowering relies on
2145
+ // two subtle details of the `ValRaw` implementation in Wasmtime:
2146
+ //
2147
+ // 1. First the `ValRaw` value always contains little-endian values.
2148
+ // This means that if a `u32` is written, a `u64` is read, and then
2149
+ // the `u64` has its upper bits truncated the original value will
2150
+ // always be retained. This is primarily here for big-endian
2151
+ // platforms where if it weren't little endian then the opposite
2152
+ // would occur and the wrong value would be read.
2153
+ //
2154
+ // 2. Second, and perhaps even more subtly, the `ValRaw` constructors
2155
+ // for 32-bit types actually always initialize 64-bits of the
2156
+ // `ValRaw`. In the component model flat ABI only 32 and 64-bit types
2157
+ // are used so 64-bits is big enough to contain everything. This
2158
+ // means that when a `ValRaw` is written into the destination it will
2159
+ // always, whether it's needed or not, be "ready" to get extended up
2160
+ // to 64-bits.
2161
+ //
2162
+ // Put together these two subtle guarantees means that all `Lower`
2163
+ // implementations can be written "naturally" as one might naively
2164
+ // expect. Variants will, on each arm, zero out remaining fields and all
2165
+ // writes to the flat representation will automatically be 64-bit writes
2166
+ // meaning that if the value is read as a 64-bit value, which isn't
2167
+ // known at the time of the write, it'll still be correct.
2168
+ match self {
2169
+ Ok(e) => {
2170
+ map_maybe_uninit!(dst.tag).write(ValRaw::i32(0));
2171
+ unsafe {
2172
+ lower_payload(
2173
+ map_maybe_uninit!(dst.payload),
2174
+ |payload| map_maybe_uninit!(payload.ok),
2175
+ |dst| match ok {
2176
+ Some(ok) => e.lower(cx, ok, dst),
2177
+ None => Ok(()),
2178
+ },
2179
+ )
2180
+ }
2181
+ }
2182
+ Err(e) => {
2183
+ map_maybe_uninit!(dst.tag).write(ValRaw::i32(1));
2184
+ unsafe {
2185
+ lower_payload(
2186
+ map_maybe_uninit!(dst.payload),
2187
+ |payload| map_maybe_uninit!(payload.err),
2188
+ |dst| match err {
2189
+ Some(err) => e.lower(cx, err, dst),
2190
+ None => Ok(()),
2191
+ },
2192
+ )
2193
+ }
2194
+ }
2195
+ }
2196
+ }
2197
+
2198
+ fn store<U>(
2199
+ &self,
2200
+ cx: &mut LowerContext<'_, U>,
2201
+ ty: InterfaceType,
2202
+ offset: usize,
2203
+ ) -> Result<()> {
2204
+ let (ok, err) = match ty {
2205
+ InterfaceType::Result(ty) => {
2206
+ let ty = &cx.types[ty];
2207
+ (ty.ok, ty.err)
2208
+ }
2209
+ _ => bad_type_info(),
2210
+ };
2211
+ debug_assert!(offset % (Self::ALIGN32 as usize) == 0);
2212
+ let payload_offset = Self::INFO.payload_offset32 as usize;
2213
+ match self {
2214
+ Ok(e) => {
2215
+ cx.get::<1>(offset)[0] = 0;
2216
+ if let Some(ok) = ok {
2217
+ e.store(cx, ok, offset + payload_offset)?;
2218
+ }
2219
+ }
2220
+ Err(e) => {
2221
+ cx.get::<1>(offset)[0] = 1;
2222
+ if let Some(err) = err {
2223
+ e.store(cx, err, offset + payload_offset)?;
2224
+ }
2225
+ }
2226
+ }
2227
+ Ok(())
2228
+ }
2229
+ }
2230
+
2231
+ unsafe impl<T, E> Lift for Result<T, E>
2232
+ where
2233
+ T: Lift,
2234
+ E: Lift,
2235
+ {
2236
+ #[inline]
2237
+ fn lift(cx: &mut LiftContext<'_>, ty: InterfaceType, src: &Self::Lower) -> Result<Self> {
2238
+ let (ok, err) = match ty {
2239
+ InterfaceType::Result(ty) => {
2240
+ let ty = &cx.types[ty];
2241
+ (ty.ok, ty.err)
2242
+ }
2243
+ _ => bad_type_info(),
2244
+ };
2245
+ // Note that this implementation specifically isn't trying to actually
2246
+ // reinterpret or alter the bits of `lower` depending on which variant
2247
+ // we're lifting. This ends up all working out because the value is
2248
+ // stored in little-endian format.
2249
+ //
2250
+ // When stored in little-endian format the `{T,E}::Lower`, when each
2251
+ // individual `ValRaw` is read, means that if an i64 value, extended
2252
+ // from an i32 value, was stored then when the i32 value is read it'll
2253
+ // automatically ignore the upper bits.
2254
+ //
2255
+ // This "trick" allows us to seamlessly pass through the `Self::Lower`
2256
+ // representation into the lifting/lowering without trying to handle
2257
+ // "join"ed types as per the canonical ABI. It just so happens that i64
2258
+ // bits will naturally be reinterpreted as f64. Additionally if the
2259
+ // joined type is i64 but only the lower bits are read that's ok and we
2260
+ // don't need to validate the upper bits.
2261
+ //
2262
+ // This is largely enabled by WebAssembly/component-model#35 where no
2263
+ // validation needs to be performed for ignored bits and bytes here.
2264
+ Ok(match src.tag.get_i32() {
2265
+ 0 => Ok(unsafe { lift_option(cx, ok, &src.payload.ok)? }),
2266
+ 1 => Err(unsafe { lift_option(cx, err, &src.payload.err)? }),
2267
+ _ => bail!("invalid expected discriminant"),
2268
+ })
2269
+ }
2270
+
2271
+ #[inline]
2272
+ fn load(cx: &mut LiftContext<'_>, ty: InterfaceType, bytes: &[u8]) -> Result<Self> {
2273
+ debug_assert!((bytes.as_ptr() as usize) % (Self::ALIGN32 as usize) == 0);
2274
+ let discrim = bytes[0];
2275
+ let payload = &bytes[Self::INFO.payload_offset32 as usize..];
2276
+ let (ok, err) = match ty {
2277
+ InterfaceType::Result(ty) => {
2278
+ let ty = &cx.types[ty];
2279
+ (ty.ok, ty.err)
2280
+ }
2281
+ _ => bad_type_info(),
2282
+ };
2283
+ match discrim {
2284
+ 0 => Ok(Ok(load_option(cx, ok, &payload[..T::SIZE32])?)),
2285
+ 1 => Ok(Err(load_option(cx, err, &payload[..E::SIZE32])?)),
2286
+ _ => bail!("invalid expected discriminant"),
2287
+ }
2288
+ }
2289
+ }
2290
+
2291
+ fn lift_option<T>(cx: &mut LiftContext<'_>, ty: Option<InterfaceType>, src: &T::Lower) -> Result<T>
2292
+ where
2293
+ T: Lift,
2294
+ {
2295
+ match ty {
2296
+ Some(ty) => T::lift(cx, ty, src),
2297
+ None => Ok(empty_lift()),
2298
+ }
2299
+ }
2300
+
2301
+ fn load_option<T>(cx: &mut LiftContext<'_>, ty: Option<InterfaceType>, bytes: &[u8]) -> Result<T>
2302
+ where
2303
+ T: Lift,
2304
+ {
2305
+ match ty {
2306
+ Some(ty) => T::load(cx, ty, bytes),
2307
+ None => Ok(empty_lift()),
2308
+ }
2309
+ }
2310
+
2311
+ fn empty_lift<T>() -> T
2312
+ where
2313
+ T: Lift,
2314
+ {
2315
+ assert!(T::IS_RUST_UNIT_TYPE);
2316
+ assert_eq!(mem::size_of::<T>(), 0);
2317
+ unsafe { MaybeUninit::uninit().assume_init() }
2318
+ }
2319
+
2320
+ macro_rules! impl_component_ty_for_tuples {
2321
+ ($n:tt $($t:ident)*) => {paste::paste!{
2322
+ #[allow(non_snake_case)]
2323
+ #[doc(hidden)]
2324
+ #[derive(Clone, Copy)]
2325
+ #[repr(C)]
2326
+ pub struct [<TupleLower$n>]<$($t),*> {
2327
+ $($t: $t,)*
2328
+ _align_tuple_lower0_correctly: [ValRaw; 0],
2329
+ }
2330
+
2331
+ #[allow(non_snake_case)]
2332
+ unsafe impl<$($t,)*> ComponentType for ($($t,)*)
2333
+ where $($t: ComponentType),*
2334
+ {
2335
+ type Lower = [<TupleLower$n>]<$($t::Lower),*>;
2336
+
2337
+ const ABI: CanonicalAbiInfo = CanonicalAbiInfo::record_static(&[
2338
+ $($t::ABI),*
2339
+ ]);
2340
+
2341
+ const IS_RUST_UNIT_TYPE: bool = {
2342
+ let mut _is_unit = true;
2343
+ $(
2344
+ let _anything_to_bind_the_macro_variable = $t::IS_RUST_UNIT_TYPE;
2345
+ _is_unit = false;
2346
+ )*
2347
+ _is_unit
2348
+ };
2349
+
2350
+ fn typecheck(
2351
+ ty: &InterfaceType,
2352
+ types: &InstanceType<'_>,
2353
+ ) -> Result<()> {
2354
+ typecheck_tuple(ty, types, &[$($t::typecheck),*])
2355
+ }
2356
+ }
2357
+
2358
+ #[allow(non_snake_case)]
2359
+ unsafe impl<$($t,)*> Lower for ($($t,)*)
2360
+ where $($t: Lower),*
2361
+ {
2362
+ fn lower<U>(
2363
+ &self,
2364
+ cx: &mut LowerContext<'_, U>,
2365
+ ty: InterfaceType,
2366
+ _dst: &mut MaybeUninit<Self::Lower>,
2367
+ ) -> Result<()> {
2368
+ let types = match ty {
2369
+ InterfaceType::Tuple(t) => &cx.types[t].types,
2370
+ _ => bad_type_info(),
2371
+ };
2372
+ let ($($t,)*) = self;
2373
+ let mut _types = types.iter();
2374
+ $(
2375
+ let ty = *_types.next().unwrap_or_else(bad_type_info);
2376
+ $t.lower(cx, ty, map_maybe_uninit!(_dst.$t))?;
2377
+ )*
2378
+ Ok(())
2379
+ }
2380
+
2381
+ fn store<U>(
2382
+ &self,
2383
+ cx: &mut LowerContext<'_, U>,
2384
+ ty: InterfaceType,
2385
+ mut _offset: usize,
2386
+ ) -> Result<()> {
2387
+ debug_assert!(_offset % (Self::ALIGN32 as usize) == 0);
2388
+ let types = match ty {
2389
+ InterfaceType::Tuple(t) => &cx.types[t].types,
2390
+ _ => bad_type_info(),
2391
+ };
2392
+ let ($($t,)*) = self;
2393
+ let mut _types = types.iter();
2394
+ $(
2395
+ let ty = *_types.next().unwrap_or_else(bad_type_info);
2396
+ $t.store(cx, ty, $t::ABI.next_field32_size(&mut _offset))?;
2397
+ )*
2398
+ Ok(())
2399
+ }
2400
+ }
2401
+
2402
+ #[allow(non_snake_case)]
2403
+ unsafe impl<$($t,)*> Lift for ($($t,)*)
2404
+ where $($t: Lift),*
2405
+ {
2406
+ #[inline]
2407
+ fn lift(cx: &mut LiftContext<'_>, ty: InterfaceType, _src: &Self::Lower) -> Result<Self> {
2408
+ let types = match ty {
2409
+ InterfaceType::Tuple(t) => &cx.types[t].types,
2410
+ _ => bad_type_info(),
2411
+ };
2412
+ let mut _types = types.iter();
2413
+ Ok(($(
2414
+ $t::lift(
2415
+ cx,
2416
+ *_types.next().unwrap_or_else(bad_type_info),
2417
+ &_src.$t,
2418
+ )?,
2419
+ )*))
2420
+ }
2421
+
2422
+ #[inline]
2423
+ fn load(cx: &mut LiftContext<'_>, ty: InterfaceType, bytes: &[u8]) -> Result<Self> {
2424
+ debug_assert!((bytes.as_ptr() as usize) % (Self::ALIGN32 as usize) == 0);
2425
+ let types = match ty {
2426
+ InterfaceType::Tuple(t) => &cx.types[t].types,
2427
+ _ => bad_type_info(),
2428
+ };
2429
+ let mut _types = types.iter();
2430
+ let mut _offset = 0;
2431
+ $(
2432
+ let ty = *_types.next().unwrap_or_else(bad_type_info);
2433
+ let $t = $t::load(cx, ty, &bytes[$t::ABI.next_field32_size(&mut _offset)..][..$t::SIZE32])?;
2434
+ )*
2435
+ Ok(($($t,)*))
2436
+ }
2437
+ }
2438
+
2439
+ #[allow(non_snake_case)]
2440
+ unsafe impl<$($t,)*> ComponentNamedList for ($($t,)*)
2441
+ where $($t: ComponentType),*
2442
+ {}
2443
+ }};
2444
+ }
2445
+
2446
+ for_each_function_signature!(impl_component_ty_for_tuples);
2447
+
2448
+ pub fn desc(ty: &InterfaceType) -> &'static str {
2449
+ match ty {
2450
+ InterfaceType::U8 => "u8",
2451
+ InterfaceType::S8 => "s8",
2452
+ InterfaceType::U16 => "u16",
2453
+ InterfaceType::S16 => "s16",
2454
+ InterfaceType::U32 => "u32",
2455
+ InterfaceType::S32 => "s32",
2456
+ InterfaceType::U64 => "u64",
2457
+ InterfaceType::S64 => "s64",
2458
+ InterfaceType::Float32 => "f32",
2459
+ InterfaceType::Float64 => "f64",
2460
+ InterfaceType::Bool => "bool",
2461
+ InterfaceType::Char => "char",
2462
+ InterfaceType::String => "string",
2463
+ InterfaceType::List(_) => "list",
2464
+ InterfaceType::Tuple(_) => "tuple",
2465
+ InterfaceType::Option(_) => "option",
2466
+ InterfaceType::Result(_) => "result",
2467
+
2468
+ InterfaceType::Record(_) => "record",
2469
+ InterfaceType::Variant(_) => "variant",
2470
+ InterfaceType::Flags(_) => "flags",
2471
+ InterfaceType::Enum(_) => "enum",
2472
+ InterfaceType::Own(_) => "owned resource",
2473
+ InterfaceType::Borrow(_) => "borrowed resource",
2474
+ }
2475
+ }
2476
+
2477
+ #[cold]
2478
+ #[doc(hidden)]
2479
+ pub fn bad_type_info<T>() -> T {
2480
+ // NB: should consider something like `unreachable_unchecked` here if this
2481
+ // becomes a performance bottleneck at some point, but that also comes with
2482
+ // a tradeoff of propagating a lot of unsafety, so it may not be worth it.
2483
+ panic!("bad type information detected");
2484
+ }