wasmtime 17.0.0 → 18.0.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2565) hide show
  1. checksums.yaml +4 -4
  2. data/Cargo.lock +114 -142
  3. data/ext/Cargo.toml +8 -9
  4. data/ext/cargo-vendor/cranelift-bforest-0.105.3/.cargo-checksum.json +1 -0
  5. data/ext/cargo-vendor/cranelift-bforest-0.105.3/Cargo.toml +40 -0
  6. data/ext/cargo-vendor/cranelift-codegen-0.105.3/.cargo-checksum.json +1 -0
  7. data/ext/cargo-vendor/cranelift-codegen-0.105.3/Cargo.toml +175 -0
  8. data/ext/cargo-vendor/cranelift-codegen-0.105.3/build.rs +395 -0
  9. data/ext/cargo-vendor/cranelift-codegen-0.105.3/src/egraph/cost.rs +213 -0
  10. data/ext/cargo-vendor/cranelift-codegen-0.105.3/src/egraph/domtree.rs +74 -0
  11. data/ext/cargo-vendor/cranelift-codegen-0.105.3/src/egraph/elaborate.rs +823 -0
  12. data/ext/cargo-vendor/cranelift-codegen-0.105.3/src/egraph.rs +705 -0
  13. data/ext/cargo-vendor/cranelift-codegen-0.105.3/src/isa/x64/inst/emit.rs +4395 -0
  14. data/ext/cargo-vendor/cranelift-codegen-0.105.3/src/isa/x64/inst/emit_tests.rs +5525 -0
  15. data/ext/cargo-vendor/cranelift-codegen-0.105.3/src/isa/x64/inst.isle +5215 -0
  16. data/ext/cargo-vendor/cranelift-codegen-0.105.3/src/isa/x64/lower.isle +4742 -0
  17. data/ext/cargo-vendor/cranelift-codegen-0.105.3/src/isa/x64/mod.rs +233 -0
  18. data/ext/cargo-vendor/cranelift-codegen-0.105.3/src/lib.rs +106 -0
  19. data/ext/cargo-vendor/cranelift-codegen-0.105.3/src/machinst/reg.rs +562 -0
  20. data/ext/cargo-vendor/cranelift-codegen-0.105.3/src/opts/README.md +81 -0
  21. data/ext/cargo-vendor/cranelift-codegen-0.105.3/src/opts/cprop.isle +246 -0
  22. data/ext/cargo-vendor/cranelift-codegen-0.105.3/src/opts/extends.isle +91 -0
  23. data/ext/cargo-vendor/cranelift-codegen-0.105.3/src/prelude_opt.isle +122 -0
  24. data/ext/cargo-vendor/cranelift-codegen-0.105.3/src/verifier/mod.rs +2033 -0
  25. data/ext/cargo-vendor/cranelift-codegen-meta-0.105.3/.cargo-checksum.json +1 -0
  26. data/ext/cargo-vendor/cranelift-codegen-meta-0.105.3/Cargo.toml +35 -0
  27. data/ext/cargo-vendor/cranelift-codegen-shared-0.105.3/.cargo-checksum.json +1 -0
  28. data/ext/cargo-vendor/cranelift-codegen-shared-0.105.3/Cargo.toml +22 -0
  29. data/ext/cargo-vendor/cranelift-control-0.105.3/.cargo-checksum.json +1 -0
  30. data/ext/cargo-vendor/cranelift-control-0.105.3/Cargo.toml +30 -0
  31. data/ext/cargo-vendor/cranelift-entity-0.105.3/.cargo-checksum.json +1 -0
  32. data/ext/cargo-vendor/cranelift-entity-0.105.3/Cargo.toml +50 -0
  33. data/ext/cargo-vendor/cranelift-frontend-0.105.3/.cargo-checksum.json +1 -0
  34. data/ext/cargo-vendor/cranelift-frontend-0.105.3/Cargo.toml +68 -0
  35. data/ext/cargo-vendor/cranelift-isle-0.105.3/.cargo-checksum.json +1 -0
  36. data/ext/cargo-vendor/cranelift-isle-0.105.3/Cargo.toml +46 -0
  37. data/ext/cargo-vendor/cranelift-native-0.105.3/.cargo-checksum.json +1 -0
  38. data/ext/cargo-vendor/cranelift-native-0.105.3/Cargo.toml +43 -0
  39. data/ext/cargo-vendor/cranelift-native-0.105.3/src/lib.rs +188 -0
  40. data/ext/cargo-vendor/cranelift-wasm-0.105.3/.cargo-checksum.json +1 -0
  41. data/ext/cargo-vendor/cranelift-wasm-0.105.3/Cargo.toml +106 -0
  42. data/ext/cargo-vendor/cranelift-wasm-0.105.3/src/code_translator.rs +3681 -0
  43. data/ext/cargo-vendor/cranelift-wasm-0.105.3/src/environ/dummy.rs +953 -0
  44. data/ext/cargo-vendor/cranelift-wasm-0.105.3/src/environ/spec.rs +953 -0
  45. data/ext/cargo-vendor/cranelift-wasm-0.105.3/src/sections_translator.rs +409 -0
  46. data/ext/cargo-vendor/cranelift-wasm-0.105.3/src/translation_utils.rs +91 -0
  47. data/ext/cargo-vendor/cranelift-wasm-0.105.3/wasmtests/icall-simd.wat +7 -0
  48. data/ext/cargo-vendor/cranelift-wasm-0.105.3/wasmtests/icall.wat +7 -0
  49. data/ext/cargo-vendor/cranelift-wasm-0.105.3/wasmtests/unreachable_code.wat +77 -0
  50. data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.19/.cargo-checksum.json +1 -0
  51. data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.19/Cargo.toml +49 -0
  52. data/ext/cargo-vendor/rb-sys-0.9.89/.cargo-checksum.json +1 -0
  53. data/ext/cargo-vendor/rb-sys-0.9.89/Cargo.toml +54 -0
  54. data/ext/cargo-vendor/rb-sys-0.9.89/src/lib.rs +37 -0
  55. data/ext/cargo-vendor/rb-sys-0.9.89/src/symbol.rs +31 -0
  56. data/ext/cargo-vendor/rb-sys-build-0.9.89/.cargo-checksum.json +1 -0
  57. data/ext/cargo-vendor/rb-sys-build-0.9.89/Cargo.toml +62 -0
  58. data/ext/cargo-vendor/rb-sys-build-0.9.89/src/bindings.rs +250 -0
  59. data/ext/cargo-vendor/rb-sys-build-0.9.89/src/rb_config.rs +810 -0
  60. data/ext/cargo-vendor/tokio-1.36.0/.cargo-checksum.json +1 -0
  61. data/ext/cargo-vendor/tokio-1.36.0/CHANGELOG.md +3250 -0
  62. data/ext/cargo-vendor/tokio-1.36.0/Cargo.toml +237 -0
  63. data/ext/cargo-vendor/tokio-1.36.0/README.md +249 -0
  64. data/ext/cargo-vendor/tokio-1.36.0/src/doc/os.rs +68 -0
  65. data/ext/cargo-vendor/tokio-1.36.0/src/fs/open_options/mock_open_options.rs +39 -0
  66. data/ext/cargo-vendor/tokio-1.36.0/src/future/mod.rs +32 -0
  67. data/ext/cargo-vendor/tokio-1.36.0/src/io/async_fd.rs +1259 -0
  68. data/ext/cargo-vendor/tokio-1.36.0/src/io/bsd/poll_aio.rs +197 -0
  69. data/ext/cargo-vendor/tokio-1.36.0/src/io/interest.rs +345 -0
  70. data/ext/cargo-vendor/tokio-1.36.0/src/io/join.rs +117 -0
  71. data/ext/cargo-vendor/tokio-1.36.0/src/io/mod.rs +292 -0
  72. data/ext/cargo-vendor/tokio-1.36.0/src/io/poll_evented.rs +277 -0
  73. data/ext/cargo-vendor/tokio-1.36.0/src/io/stdio_common.rs +221 -0
  74. data/ext/cargo-vendor/tokio-1.36.0/src/io/util/async_buf_read_ext.rs +351 -0
  75. data/ext/cargo-vendor/tokio-1.36.0/src/io/util/buf_reader.rs +311 -0
  76. data/ext/cargo-vendor/tokio-1.36.0/src/io/util/buf_writer.rs +310 -0
  77. data/ext/cargo-vendor/tokio-1.36.0/src/io/util/chain.rs +144 -0
  78. data/ext/cargo-vendor/tokio-1.36.0/src/io/util/copy.rs +290 -0
  79. data/ext/cargo-vendor/tokio-1.36.0/src/io/util/empty.rs +150 -0
  80. data/ext/cargo-vendor/tokio-1.36.0/src/io/util/flush.rs +47 -0
  81. data/ext/cargo-vendor/tokio-1.36.0/src/io/util/mod.rs +111 -0
  82. data/ext/cargo-vendor/tokio-1.36.0/src/io/util/read_exact.rs +69 -0
  83. data/ext/cargo-vendor/tokio-1.36.0/src/io/util/read_line.rs +119 -0
  84. data/ext/cargo-vendor/tokio-1.36.0/src/io/util/repeat.rs +75 -0
  85. data/ext/cargo-vendor/tokio-1.36.0/src/io/util/shutdown.rs +46 -0
  86. data/ext/cargo-vendor/tokio-1.36.0/src/io/util/sink.rs +94 -0
  87. data/ext/cargo-vendor/tokio-1.36.0/src/lib.rs +694 -0
  88. data/ext/cargo-vendor/tokio-1.36.0/src/loom/std/atomic_u64.rs +19 -0
  89. data/ext/cargo-vendor/tokio-1.36.0/src/macros/cfg.rs +587 -0
  90. data/ext/cargo-vendor/tokio-1.36.0/src/macros/try_join.rs +218 -0
  91. data/ext/cargo-vendor/tokio-1.36.0/src/net/mod.rs +57 -0
  92. data/ext/cargo-vendor/tokio-1.36.0/src/net/tcp/listener.rs +451 -0
  93. data/ext/cargo-vendor/tokio-1.36.0/src/net/tcp/socket.rs +854 -0
  94. data/ext/cargo-vendor/tokio-1.36.0/src/net/tcp/stream.rs +1424 -0
  95. data/ext/cargo-vendor/tokio-1.36.0/src/net/udp.rs +2046 -0
  96. data/ext/cargo-vendor/tokio-1.36.0/src/net/unix/datagram/socket.rs +1593 -0
  97. data/ext/cargo-vendor/tokio-1.36.0/src/net/unix/listener.rs +221 -0
  98. data/ext/cargo-vendor/tokio-1.36.0/src/net/unix/mod.rs +39 -0
  99. data/ext/cargo-vendor/tokio-1.36.0/src/net/unix/pipe.rs +1442 -0
  100. data/ext/cargo-vendor/tokio-1.36.0/src/net/unix/socket.rs +271 -0
  101. data/ext/cargo-vendor/tokio-1.36.0/src/net/unix/stream.rs +1062 -0
  102. data/ext/cargo-vendor/tokio-1.36.0/src/net/windows/named_pipe.rs +2690 -0
  103. data/ext/cargo-vendor/tokio-1.36.0/src/process/mod.rs +1678 -0
  104. data/ext/cargo-vendor/tokio-1.36.0/src/process/unix/mod.rs +375 -0
  105. data/ext/cargo-vendor/tokio-1.36.0/src/process/unix/pidfd_reaper.rs +317 -0
  106. data/ext/cargo-vendor/tokio-1.36.0/src/runtime/blocking/pool.rs +603 -0
  107. data/ext/cargo-vendor/tokio-1.36.0/src/runtime/builder.rs +1335 -0
  108. data/ext/cargo-vendor/tokio-1.36.0/src/runtime/context.rs +193 -0
  109. data/ext/cargo-vendor/tokio-1.36.0/src/runtime/handle.rs +632 -0
  110. data/ext/cargo-vendor/tokio-1.36.0/src/runtime/io/driver.rs +273 -0
  111. data/ext/cargo-vendor/tokio-1.36.0/src/runtime/io/scheduled_io.rs +598 -0
  112. data/ext/cargo-vendor/tokio-1.36.0/src/runtime/park.rs +339 -0
  113. data/ext/cargo-vendor/tokio-1.36.0/src/runtime/scheduler/current_thread/mod.rs +758 -0
  114. data/ext/cargo-vendor/tokio-1.36.0/src/runtime/scheduler/multi_thread/park.rs +232 -0
  115. data/ext/cargo-vendor/tokio-1.36.0/src/runtime/scheduler/multi_thread/queue.rs +608 -0
  116. data/ext/cargo-vendor/tokio-1.36.0/src/runtime/scheduler/multi_thread/stats.rs +140 -0
  117. data/ext/cargo-vendor/tokio-1.36.0/src/runtime/scheduler/multi_thread/worker.rs +1234 -0
  118. data/ext/cargo-vendor/tokio-1.36.0/src/runtime/scheduler/multi_thread_alt/queue.rs +595 -0
  119. data/ext/cargo-vendor/tokio-1.36.0/src/runtime/scheduler/multi_thread_alt/stats.rs +171 -0
  120. data/ext/cargo-vendor/tokio-1.36.0/src/runtime/scheduler/multi_thread_alt/worker.rs +1597 -0
  121. data/ext/cargo-vendor/tokio-1.36.0/src/runtime/task/core.rs +494 -0
  122. data/ext/cargo-vendor/tokio-1.36.0/src/runtime/task/harness.rs +517 -0
  123. data/ext/cargo-vendor/tokio-1.36.0/src/runtime/task/join.rs +370 -0
  124. data/ext/cargo-vendor/tokio-1.36.0/src/runtime/task/list.rs +338 -0
  125. data/ext/cargo-vendor/tokio-1.36.0/src/runtime/task/mod.rs +526 -0
  126. data/ext/cargo-vendor/tokio-1.36.0/src/runtime/task/state.rs +616 -0
  127. data/ext/cargo-vendor/tokio-1.36.0/src/runtime/task/trace/mod.rs +358 -0
  128. data/ext/cargo-vendor/tokio-1.36.0/src/runtime/tests/loom_local.rs +47 -0
  129. data/ext/cargo-vendor/tokio-1.36.0/src/runtime/tests/task_combinations.rs +488 -0
  130. data/ext/cargo-vendor/tokio-1.36.0/src/runtime/time/entry.rs +646 -0
  131. data/ext/cargo-vendor/tokio-1.36.0/src/runtime/time/source.rs +39 -0
  132. data/ext/cargo-vendor/tokio-1.36.0/src/runtime/time/wheel/level.rs +274 -0
  133. data/ext/cargo-vendor/tokio-1.36.0/src/signal/ctrl_c.rs +62 -0
  134. data/ext/cargo-vendor/tokio-1.36.0/src/signal/mod.rs +98 -0
  135. data/ext/cargo-vendor/tokio-1.36.0/src/signal/registry.rs +281 -0
  136. data/ext/cargo-vendor/tokio-1.36.0/src/signal/unix.rs +530 -0
  137. data/ext/cargo-vendor/tokio-1.36.0/src/signal/windows.rs +524 -0
  138. data/ext/cargo-vendor/tokio-1.36.0/src/sync/batch_semaphore.rs +752 -0
  139. data/ext/cargo-vendor/tokio-1.36.0/src/sync/broadcast.rs +1542 -0
  140. data/ext/cargo-vendor/tokio-1.36.0/src/sync/mpsc/bounded.rs +1692 -0
  141. data/ext/cargo-vendor/tokio-1.36.0/src/sync/mpsc/error.rs +149 -0
  142. data/ext/cargo-vendor/tokio-1.36.0/src/sync/mpsc/mod.rs +124 -0
  143. data/ext/cargo-vendor/tokio-1.36.0/src/sync/mpsc/unbounded.rs +603 -0
  144. data/ext/cargo-vendor/tokio-1.36.0/src/sync/mutex.rs +1395 -0
  145. data/ext/cargo-vendor/tokio-1.36.0/src/sync/oneshot.rs +1390 -0
  146. data/ext/cargo-vendor/tokio-1.36.0/src/sync/rwlock.rs +1119 -0
  147. data/ext/cargo-vendor/tokio-1.36.0/src/sync/semaphore.rs +977 -0
  148. data/ext/cargo-vendor/tokio-1.36.0/src/sync/watch.rs +1399 -0
  149. data/ext/cargo-vendor/tokio-1.36.0/src/task/join_set.rs +637 -0
  150. data/ext/cargo-vendor/tokio-1.36.0/src/task/local.rs +1233 -0
  151. data/ext/cargo-vendor/tokio-1.36.0/src/task/mod.rs +373 -0
  152. data/ext/cargo-vendor/tokio-1.36.0/src/util/idle_notified_set.rs +509 -0
  153. data/ext/cargo-vendor/tokio-1.36.0/src/util/rand.rs +95 -0
  154. data/ext/cargo-vendor/tokio-1.36.0/src/util/sharded_list.rs +149 -0
  155. data/ext/cargo-vendor/tokio-1.36.0/tests/io_async_fd.rs +836 -0
  156. data/ext/cargo-vendor/tokio-1.36.0/tests/io_copy.rs +102 -0
  157. data/ext/cargo-vendor/tokio-1.36.0/tests/io_copy_bidirectional.rs +165 -0
  158. data/ext/cargo-vendor/tokio-1.36.0/tests/io_join.rs +83 -0
  159. data/ext/cargo-vendor/tokio-1.36.0/tests/io_panic.rs +177 -0
  160. data/ext/cargo-vendor/tokio-1.36.0/tests/io_poll_aio.rs +338 -0
  161. data/ext/cargo-vendor/tokio-1.36.0/tests/io_repeat.rs +18 -0
  162. data/ext/cargo-vendor/tokio-1.36.0/tests/io_sink.rs +44 -0
  163. data/ext/cargo-vendor/tokio-1.36.0/tests/join_handle_panic.rs +21 -0
  164. data/ext/cargo-vendor/tokio-1.36.0/tests/macros_test.rs +94 -0
  165. data/ext/cargo-vendor/tokio-1.36.0/tests/macros_try_join.rs +185 -0
  166. data/ext/cargo-vendor/tokio-1.36.0/tests/net_named_pipe.rs +399 -0
  167. data/ext/cargo-vendor/tokio-1.36.0/tests/net_panic.rs +189 -0
  168. data/ext/cargo-vendor/tokio-1.36.0/tests/net_unix_pipe.rs +534 -0
  169. data/ext/cargo-vendor/tokio-1.36.0/tests/process_change_of_runtime.rs +34 -0
  170. data/ext/cargo-vendor/tokio-1.36.0/tests/process_issue_2174.rs +46 -0
  171. data/ext/cargo-vendor/tokio-1.36.0/tests/rt_basic.rs +458 -0
  172. data/ext/cargo-vendor/tokio-1.36.0/tests/rt_handle.rs +94 -0
  173. data/ext/cargo-vendor/tokio-1.36.0/tests/rt_panic.rs +78 -0
  174. data/ext/cargo-vendor/tokio-1.36.0/tests/rt_time_start_paused.rs +14 -0
  175. data/ext/cargo-vendor/tokio-1.36.0/tests/signal_panic.rs +30 -0
  176. data/ext/cargo-vendor/tokio-1.36.0/tests/sync_mpsc.rs +1020 -0
  177. data/ext/cargo-vendor/tokio-1.36.0/tests/sync_panic.rs +198 -0
  178. data/ext/cargo-vendor/tokio-1.36.0/tests/sync_watch.rs +334 -0
  179. data/ext/cargo-vendor/tokio-1.36.0/tests/task_id.rs +302 -0
  180. data/ext/cargo-vendor/tokio-1.36.0/tests/task_join_set.rs +306 -0
  181. data/ext/cargo-vendor/tokio-1.36.0/tests/task_local.rs +119 -0
  182. data/ext/cargo-vendor/tokio-1.36.0/tests/task_panic.rs +123 -0
  183. data/ext/cargo-vendor/tokio-1.36.0/tests/tcp_into_split.rs +131 -0
  184. data/ext/cargo-vendor/tokio-1.36.0/tests/time_panic.rs +94 -0
  185. data/ext/cargo-vendor/tokio-1.36.0/tests/time_pause.rs +332 -0
  186. data/ext/cargo-vendor/tokio-1.36.0/tests/uds_socket.rs +118 -0
  187. data/ext/cargo-vendor/wasi-common-18.0.3/.cargo-checksum.json +1 -0
  188. data/ext/cargo-vendor/wasi-common-18.0.3/Cargo.toml +223 -0
  189. data/ext/cargo-vendor/wasi-common-18.0.3/src/lib.rs +193 -0
  190. data/ext/cargo-vendor/wasi-common-18.0.3/src/sync/clocks.rs +41 -0
  191. data/ext/cargo-vendor/wasi-common-18.0.3/src/sync/dir.rs +462 -0
  192. data/ext/cargo-vendor/wasi-common-18.0.3/src/sync/file.rs +248 -0
  193. data/ext/cargo-vendor/wasi-common-18.0.3/src/sync/mod.rs +140 -0
  194. data/ext/cargo-vendor/wasi-common-18.0.3/src/sync/net.rs +400 -0
  195. data/ext/cargo-vendor/wasi-common-18.0.3/src/sync/sched/unix.rs +82 -0
  196. data/ext/cargo-vendor/wasi-common-18.0.3/src/sync/sched/windows.rs +221 -0
  197. data/ext/cargo-vendor/wasi-common-18.0.3/src/sync/sched.rs +40 -0
  198. data/ext/cargo-vendor/wasi-common-18.0.3/src/sync/stdio.rs +197 -0
  199. data/ext/cargo-vendor/wasi-common-18.0.3/src/tokio/dir.rs +221 -0
  200. data/ext/cargo-vendor/wasi-common-18.0.3/src/tokio/file.rs +244 -0
  201. data/ext/cargo-vendor/wasi-common-18.0.3/src/tokio/mod.rs +137 -0
  202. data/ext/cargo-vendor/wasi-common-18.0.3/src/tokio/net.rs +6 -0
  203. data/ext/cargo-vendor/wasi-common-18.0.3/src/tokio/sched/unix.rs +96 -0
  204. data/ext/cargo-vendor/wasi-common-18.0.3/src/tokio/sched/windows.rs +15 -0
  205. data/ext/cargo-vendor/wasi-common-18.0.3/src/tokio/sched.rs +35 -0
  206. data/ext/cargo-vendor/wasi-common-18.0.3/src/tokio/stdio.rs +1 -0
  207. data/ext/cargo-vendor/wasi-common-18.0.3/tests/all/async_.rs +289 -0
  208. data/ext/cargo-vendor/wasi-common-18.0.3/tests/all/main.rs +21 -0
  209. data/ext/cargo-vendor/wasi-common-18.0.3/tests/all/sync.rs +275 -0
  210. data/ext/cargo-vendor/wasm-encoder-0.201.0/.cargo-checksum.json +1 -0
  211. data/ext/cargo-vendor/wasm-encoder-0.201.0/Cargo.toml +43 -0
  212. data/ext/cargo-vendor/wasm-encoder-0.201.0/src/component/names.rs +149 -0
  213. data/ext/cargo-vendor/wasm-encoder-0.201.0/src/component/types.rs +792 -0
  214. data/ext/cargo-vendor/wasm-encoder-0.201.0/src/core/code.rs +3444 -0
  215. data/ext/cargo-vendor/wasm-encoder-0.201.0/src/core/names.rs +298 -0
  216. data/ext/cargo-vendor/wasm-encoder-0.201.0/src/core/types.rs +673 -0
  217. data/ext/cargo-vendor/wasm-encoder-0.41.2/.cargo-checksum.json +1 -0
  218. data/ext/cargo-vendor/wasm-encoder-0.41.2/Cargo.toml +43 -0
  219. data/ext/cargo-vendor/wasm-encoder-0.41.2/README.md +80 -0
  220. data/ext/cargo-vendor/wasm-encoder-0.41.2/src/component/aliases.rs +160 -0
  221. data/ext/cargo-vendor/wasm-encoder-0.41.2/src/component/builder.rs +455 -0
  222. data/ext/cargo-vendor/wasm-encoder-0.41.2/src/component/canonicals.rs +159 -0
  223. data/ext/cargo-vendor/wasm-encoder-0.41.2/src/component/components.rs +29 -0
  224. data/ext/cargo-vendor/wasm-encoder-0.41.2/src/component/exports.rs +124 -0
  225. data/ext/cargo-vendor/wasm-encoder-0.41.2/src/component/imports.rs +175 -0
  226. data/ext/cargo-vendor/wasm-encoder-0.41.2/src/component/instances.rs +200 -0
  227. data/ext/cargo-vendor/wasm-encoder-0.41.2/src/component/modules.rs +29 -0
  228. data/ext/cargo-vendor/wasm-encoder-0.41.2/src/component/start.rs +52 -0
  229. data/ext/cargo-vendor/wasm-encoder-0.41.2/src/component/types.rs +792 -0
  230. data/ext/cargo-vendor/wasm-encoder-0.41.2/src/component.rs +168 -0
  231. data/ext/cargo-vendor/wasm-encoder-0.41.2/src/core/code.rs +3430 -0
  232. data/ext/cargo-vendor/wasm-encoder-0.41.2/src/core/custom.rs +73 -0
  233. data/ext/cargo-vendor/wasm-encoder-0.41.2/src/core/data.rs +185 -0
  234. data/ext/cargo-vendor/wasm-encoder-0.41.2/src/core/dump.rs +627 -0
  235. data/ext/cargo-vendor/wasm-encoder-0.41.2/src/core/elements.rs +220 -0
  236. data/ext/cargo-vendor/wasm-encoder-0.41.2/src/core/exports.rs +98 -0
  237. data/ext/cargo-vendor/wasm-encoder-0.41.2/src/core/functions.rs +63 -0
  238. data/ext/cargo-vendor/wasm-encoder-0.41.2/src/core/globals.rs +101 -0
  239. data/ext/cargo-vendor/wasm-encoder-0.41.2/src/core/imports.rs +156 -0
  240. data/ext/cargo-vendor/wasm-encoder-0.41.2/src/core/linking.rs +263 -0
  241. data/ext/cargo-vendor/wasm-encoder-0.41.2/src/core/memories.rs +111 -0
  242. data/ext/cargo-vendor/wasm-encoder-0.41.2/src/core/names.rs +298 -0
  243. data/ext/cargo-vendor/wasm-encoder-0.41.2/src/core/producers.rs +180 -0
  244. data/ext/cargo-vendor/wasm-encoder-0.41.2/src/core/start.rs +39 -0
  245. data/ext/cargo-vendor/wasm-encoder-0.41.2/src/core/tables.rs +116 -0
  246. data/ext/cargo-vendor/wasm-encoder-0.41.2/src/core/tags.rs +104 -0
  247. data/ext/cargo-vendor/wasm-encoder-0.41.2/src/core/types.rs +673 -0
  248. data/ext/cargo-vendor/wasm-encoder-0.41.2/src/core.rs +168 -0
  249. data/ext/cargo-vendor/wasm-encoder-0.41.2/src/lib.rs +215 -0
  250. data/ext/cargo-vendor/wasm-encoder-0.41.2/src/raw.rs +30 -0
  251. data/ext/cargo-vendor/wasmparser-0.121.2/.cargo-checksum.json +1 -0
  252. data/ext/cargo-vendor/wasmparser-0.121.2/Cargo.lock +633 -0
  253. data/ext/cargo-vendor/wasmparser-0.121.2/Cargo.toml +69 -0
  254. data/ext/cargo-vendor/wasmparser-0.121.2/README.md +28 -0
  255. data/ext/cargo-vendor/wasmparser-0.121.2/benches/benchmark.rs +349 -0
  256. data/ext/cargo-vendor/wasmparser-0.121.2/src/binary_reader.rs +1850 -0
  257. data/ext/cargo-vendor/wasmparser-0.121.2/src/lib.rs +766 -0
  258. data/ext/cargo-vendor/wasmparser-0.121.2/src/limits.rs +64 -0
  259. data/ext/cargo-vendor/wasmparser-0.121.2/src/readers/core/branch_hinting.rs +59 -0
  260. data/ext/cargo-vendor/wasmparser-0.121.2/src/readers/core/dylink0.rs +109 -0
  261. data/ext/cargo-vendor/wasmparser-0.121.2/src/readers/core/linking.rs +449 -0
  262. data/ext/cargo-vendor/wasmparser-0.121.2/src/readers/core/names.rs +156 -0
  263. data/ext/cargo-vendor/wasmparser-0.121.2/src/readers/core/operators.rs +411 -0
  264. data/ext/cargo-vendor/wasmparser-0.121.2/src/readers/core/types.rs +1680 -0
  265. data/ext/cargo-vendor/wasmparser-0.121.2/src/readers/core.rs +41 -0
  266. data/ext/cargo-vendor/wasmparser-0.121.2/src/resources.rs +235 -0
  267. data/ext/cargo-vendor/wasmparser-0.121.2/src/validator/component.rs +3238 -0
  268. data/ext/cargo-vendor/wasmparser-0.121.2/src/validator/core/canonical.rs +233 -0
  269. data/ext/cargo-vendor/wasmparser-0.121.2/src/validator/core.rs +1400 -0
  270. data/ext/cargo-vendor/wasmparser-0.121.2/src/validator/func.rs +338 -0
  271. data/ext/cargo-vendor/wasmparser-0.121.2/src/validator/names.rs +929 -0
  272. data/ext/cargo-vendor/wasmparser-0.121.2/src/validator/operators.rs +4074 -0
  273. data/ext/cargo-vendor/wasmparser-0.121.2/src/validator/types.rs +4449 -0
  274. data/ext/cargo-vendor/wasmparser-0.121.2/src/validator.rs +1619 -0
  275. data/ext/cargo-vendor/wasmprinter-0.2.80/.cargo-checksum.json +1 -0
  276. data/ext/cargo-vendor/wasmprinter-0.2.80/Cargo.toml +45 -0
  277. data/ext/cargo-vendor/wasmprinter-0.2.80/src/lib.rs +3139 -0
  278. data/ext/cargo-vendor/wasmprinter-0.2.80/src/operator.rs +1110 -0
  279. data/ext/cargo-vendor/wasmprinter-0.2.80/tests/all.rs +278 -0
  280. data/ext/cargo-vendor/wasmtime-18.0.3/.cargo-checksum.json +1 -0
  281. data/ext/cargo-vendor/wasmtime-18.0.3/Cargo.toml +249 -0
  282. data/ext/cargo-vendor/wasmtime-18.0.3/src/compile.rs +835 -0
  283. data/ext/cargo-vendor/wasmtime-18.0.3/src/config.rs +2513 -0
  284. data/ext/cargo-vendor/wasmtime-18.0.3/src/engine/serialization.rs +778 -0
  285. data/ext/cargo-vendor/wasmtime-18.0.3/src/engine.rs +728 -0
  286. data/ext/cargo-vendor/wasmtime-18.0.3/src/lib.rs +444 -0
  287. data/ext/cargo-vendor/wasmtime-18.0.3/src/profiling_agent/jitdump.rs +66 -0
  288. data/ext/cargo-vendor/wasmtime-18.0.3/src/profiling_agent/perfmap.rs +47 -0
  289. data/ext/cargo-vendor/wasmtime-18.0.3/src/profiling_agent/vtune.rs +80 -0
  290. data/ext/cargo-vendor/wasmtime-18.0.3/src/profiling_agent.rs +105 -0
  291. data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/code.rs +102 -0
  292. data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/code_memory.rs +335 -0
  293. data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/component/component.rs +458 -0
  294. data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/component/func/host.rs +456 -0
  295. data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/component/func.rs +721 -0
  296. data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/component/instance.rs +815 -0
  297. data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/component/linker.rs +600 -0
  298. data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/component/resource_table.rs +350 -0
  299. data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/component/types.rs +928 -0
  300. data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/component/values.rs +1274 -0
  301. data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/debug.rs +165 -0
  302. data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/func/typed.rs +638 -0
  303. data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/func.rs +2391 -0
  304. data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/instance.rs +985 -0
  305. data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/instantiate.rs +433 -0
  306. data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/linker.rs +1479 -0
  307. data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/memory.rs +998 -0
  308. data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/module/registry.rs +360 -0
  309. data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/module.rs +1335 -0
  310. data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/profiling.rs +218 -0
  311. data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/store.rs +2389 -0
  312. data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/trampoline/func.rs +135 -0
  313. data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/trampoline/memory.rs +269 -0
  314. data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/trampoline/table.rs +20 -0
  315. data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/trampoline.rs +77 -0
  316. data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/trap.rs +644 -0
  317. data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/type_registry.rs +236 -0
  318. data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/types/matching.rs +312 -0
  319. data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/types.rs +581 -0
  320. data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime.rs +109 -0
  321. data/ext/cargo-vendor/wasmtime-asm-macros-18.0.3/.cargo-checksum.json +1 -0
  322. data/ext/cargo-vendor/wasmtime-asm-macros-18.0.3/Cargo.toml +22 -0
  323. data/ext/cargo-vendor/wasmtime-cache-18.0.3/.cargo-checksum.json +1 -0
  324. data/ext/cargo-vendor/wasmtime-cache-18.0.3/Cargo.toml +81 -0
  325. data/ext/cargo-vendor/wasmtime-component-macro-18.0.3/.cargo-checksum.json +1 -0
  326. data/ext/cargo-vendor/wasmtime-component-macro-18.0.3/Cargo.toml +67 -0
  327. data/ext/cargo-vendor/wasmtime-component-macro-18.0.3/build.rs +5 -0
  328. data/ext/cargo-vendor/wasmtime-component-macro-18.0.3/src/bindgen.rs +396 -0
  329. data/ext/cargo-vendor/wasmtime-component-macro-18.0.3/tests/codegen/wat.wit +10 -0
  330. data/ext/cargo-vendor/wasmtime-component-util-18.0.3/.cargo-checksum.json +1 -0
  331. data/ext/cargo-vendor/wasmtime-component-util-18.0.3/Cargo.toml +25 -0
  332. data/ext/cargo-vendor/wasmtime-cranelift-18.0.3/.cargo-checksum.json +1 -0
  333. data/ext/cargo-vendor/wasmtime-cranelift-18.0.3/Cargo.toml +113 -0
  334. data/ext/cargo-vendor/wasmtime-cranelift-18.0.3/src/builder.rs +127 -0
  335. data/ext/cargo-vendor/wasmtime-cranelift-18.0.3/src/compiler/component.rs +960 -0
  336. data/ext/cargo-vendor/wasmtime-cranelift-18.0.3/src/compiler.rs +1317 -0
  337. data/ext/cargo-vendor/wasmtime-cranelift-18.0.3/src/debug/transform/simulate.rs +411 -0
  338. data/ext/cargo-vendor/wasmtime-cranelift-18.0.3/src/func_environ.rs +2756 -0
  339. data/ext/cargo-vendor/wasmtime-cranelift-18.0.3/src/lib.rs +186 -0
  340. data/ext/cargo-vendor/wasmtime-cranelift-shared-18.0.3/.cargo-checksum.json +1 -0
  341. data/ext/cargo-vendor/wasmtime-cranelift-shared-18.0.3/Cargo.toml +71 -0
  342. data/ext/cargo-vendor/wasmtime-cranelift-shared-18.0.3/src/isa_builder.rs +104 -0
  343. data/ext/cargo-vendor/wasmtime-environ-18.0.3/.cargo-checksum.json +1 -0
  344. data/ext/cargo-vendor/wasmtime-environ-18.0.3/Cargo.lock +761 -0
  345. data/ext/cargo-vendor/wasmtime-environ-18.0.3/Cargo.toml +140 -0
  346. data/ext/cargo-vendor/wasmtime-environ-18.0.3/src/component/artifacts.rs +45 -0
  347. data/ext/cargo-vendor/wasmtime-environ-18.0.3/src/component/dfg.rs +690 -0
  348. data/ext/cargo-vendor/wasmtime-environ-18.0.3/src/component/info.rs +594 -0
  349. data/ext/cargo-vendor/wasmtime-environ-18.0.3/src/component/translate/inline.rs +1334 -0
  350. data/ext/cargo-vendor/wasmtime-environ-18.0.3/src/component/translate.rs +953 -0
  351. data/ext/cargo-vendor/wasmtime-environ-18.0.3/src/component/types.rs +1933 -0
  352. data/ext/cargo-vendor/wasmtime-environ-18.0.3/src/component.rs +97 -0
  353. data/ext/cargo-vendor/wasmtime-environ-18.0.3/src/lib.rs +66 -0
  354. data/ext/cargo-vendor/wasmtime-environ-18.0.3/src/module.rs +1075 -0
  355. data/ext/cargo-vendor/wasmtime-environ-18.0.3/src/module_artifacts.rs +378 -0
  356. data/ext/cargo-vendor/wasmtime-environ-18.0.3/src/module_environ.rs +894 -0
  357. data/ext/cargo-vendor/wasmtime-environ-18.0.3/src/module_types.rs +120 -0
  358. data/ext/cargo-vendor/wasmtime-environ-18.0.3/src/tunables.rs +140 -0
  359. data/ext/cargo-vendor/wasmtime-environ-18.0.3/src/vmoffsets.rs +919 -0
  360. data/ext/cargo-vendor/wasmtime-fiber-18.0.3/.cargo-checksum.json +1 -0
  361. data/ext/cargo-vendor/wasmtime-fiber-18.0.3/Cargo.toml +63 -0
  362. data/ext/cargo-vendor/wasmtime-jit-debug-18.0.3/.cargo-checksum.json +1 -0
  363. data/ext/cargo-vendor/wasmtime-jit-debug-18.0.3/Cargo.toml +67 -0
  364. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-18.0.3/.cargo-checksum.json +1 -0
  365. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-18.0.3/Cargo.toml +46 -0
  366. data/ext/cargo-vendor/wasmtime-runtime-18.0.3/.cargo-checksum.json +1 -0
  367. data/ext/cargo-vendor/wasmtime-runtime-18.0.3/Cargo.toml +139 -0
  368. data/ext/cargo-vendor/wasmtime-runtime-18.0.3/src/component.rs +855 -0
  369. data/ext/cargo-vendor/wasmtime-runtime-18.0.3/src/instance/allocator/pooling/memory_pool.rs +997 -0
  370. data/ext/cargo-vendor/wasmtime-runtime-18.0.3/src/instance/allocator/pooling.rs +658 -0
  371. data/ext/cargo-vendor/wasmtime-runtime-18.0.3/src/instance/allocator.rs +712 -0
  372. data/ext/cargo-vendor/wasmtime-runtime-18.0.3/src/instance.rs +1485 -0
  373. data/ext/cargo-vendor/wasmtime-runtime-18.0.3/src/lib.rs +264 -0
  374. data/ext/cargo-vendor/wasmtime-runtime-18.0.3/src/mpk/enabled.rs +208 -0
  375. data/ext/cargo-vendor/wasmtime-runtime-18.0.3/src/mpk/pkru.rs +104 -0
  376. data/ext/cargo-vendor/wasmtime-runtime-18.0.3/src/sys/unix/signals.rs +402 -0
  377. data/ext/cargo-vendor/wasmtime-runtime-18.0.3/src/vmcontext.rs +1202 -0
  378. data/ext/cargo-vendor/wasmtime-types-18.0.3/.cargo-checksum.json +1 -0
  379. data/ext/cargo-vendor/wasmtime-types-18.0.3/Cargo.toml +36 -0
  380. data/ext/cargo-vendor/wasmtime-types-18.0.3/src/lib.rs +509 -0
  381. data/ext/cargo-vendor/wasmtime-versioned-export-macros-18.0.3/.cargo-checksum.json +1 -0
  382. data/ext/cargo-vendor/wasmtime-versioned-export-macros-18.0.3/Cargo.toml +32 -0
  383. data/ext/cargo-vendor/wasmtime-wasi-18.0.3/.cargo-checksum.json +1 -0
  384. data/ext/cargo-vendor/wasmtime-wasi-18.0.3/Cargo.toml +254 -0
  385. data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/lib.rs +103 -0
  386. data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/clocks/host.rs +73 -0
  387. data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/clocks.rs +12 -0
  388. data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/ctx.rs +337 -0
  389. data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/error.rs +111 -0
  390. data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/filesystem.rs +369 -0
  391. data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/host/clocks.rs +103 -0
  392. data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/host/filesystem.rs +1081 -0
  393. data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/host/instance_network.rs +15 -0
  394. data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/host/io.rs +366 -0
  395. data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/host/network.rs +625 -0
  396. data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/host/random.rs +36 -0
  397. data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/host/tcp.rs +605 -0
  398. data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/host/tcp_create_socket.rs +15 -0
  399. data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/host/udp.rs +530 -0
  400. data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/host/udp_create_socket.rs +15 -0
  401. data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/ip_name_lookup.rs +125 -0
  402. data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/pipe.rs +826 -0
  403. data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/poll.rs +175 -0
  404. data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/preview0.rs +870 -0
  405. data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/preview1.rs +2361 -0
  406. data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/random.rs +58 -0
  407. data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/stdio.rs +259 -0
  408. data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/write_stream.rs +203 -0
  409. data/ext/cargo-vendor/wasmtime-wasi-18.0.3/tests/all/api.rs +211 -0
  410. data/ext/cargo-vendor/wasmtime-wasi-18.0.3/tests/all/main.rs +106 -0
  411. data/ext/cargo-vendor/wasmtime-wasi-18.0.3/wit/deps/io/poll.wit +41 -0
  412. data/ext/cargo-vendor/wasmtime-wasi-18.0.3/wit/deps/io/streams.wit +262 -0
  413. data/ext/cargo-vendor/wasmtime-wasi-18.0.3/wit/deps/sockets/tcp.wit +353 -0
  414. data/ext/cargo-vendor/wasmtime-wasi-18.0.3/wit/deps/sockets/udp.wit +266 -0
  415. data/ext/cargo-vendor/wasmtime-winch-18.0.3/.cargo-checksum.json +1 -0
  416. data/ext/cargo-vendor/wasmtime-winch-18.0.3/Cargo.toml +77 -0
  417. data/ext/cargo-vendor/wasmtime-winch-18.0.3/src/builder.rs +65 -0
  418. data/ext/cargo-vendor/wasmtime-winch-18.0.3/src/compiler.rs +283 -0
  419. data/ext/cargo-vendor/wasmtime-wit-bindgen-18.0.3/.cargo-checksum.json +1 -0
  420. data/ext/cargo-vendor/wasmtime-wit-bindgen-18.0.3/Cargo.toml +41 -0
  421. data/ext/cargo-vendor/wasmtime-wit-bindgen-18.0.3/src/lib.rs +2095 -0
  422. data/ext/cargo-vendor/wasmtime-wmemcheck-18.0.3/.cargo-checksum.json +1 -0
  423. data/ext/cargo-vendor/wasmtime-wmemcheck-18.0.3/Cargo.toml +29 -0
  424. data/ext/cargo-vendor/wast-201.0.0/.cargo-checksum.json +1 -0
  425. data/ext/cargo-vendor/wast-201.0.0/Cargo.toml +59 -0
  426. data/ext/cargo-vendor/wast-201.0.0/src/component/component.rs +321 -0
  427. data/ext/cargo-vendor/wast-201.0.0/src/core/binary.rs +1365 -0
  428. data/ext/cargo-vendor/wast-201.0.0/src/core/custom.rs +393 -0
  429. data/ext/cargo-vendor/wast-201.0.0/src/core/expr.rs +1993 -0
  430. data/ext/cargo-vendor/wast-201.0.0/src/core/memory.rs +281 -0
  431. data/ext/cargo-vendor/wast-201.0.0/src/core/module.rs +218 -0
  432. data/ext/cargo-vendor/wast-201.0.0/src/core/resolve/deinline_import_export.rs +233 -0
  433. data/ext/cargo-vendor/wast-201.0.0/src/core/resolve/names.rs +763 -0
  434. data/ext/cargo-vendor/wast-201.0.0/src/core/table.rs +289 -0
  435. data/ext/cargo-vendor/wast-201.0.0/src/core/types.rs +861 -0
  436. data/ext/cargo-vendor/wast-201.0.0/src/lexer.rs +1442 -0
  437. data/ext/cargo-vendor/wast-201.0.0/src/lib.rs +542 -0
  438. data/ext/cargo-vendor/wast-201.0.0/src/names.rs +89 -0
  439. data/ext/cargo-vendor/wast-201.0.0/src/parser.rs +1374 -0
  440. data/ext/cargo-vendor/wast-201.0.0/src/token.rs +718 -0
  441. data/ext/cargo-vendor/wast-201.0.0/src/wat.rs +63 -0
  442. data/ext/cargo-vendor/wat-1.201.0/.cargo-checksum.json +1 -0
  443. data/ext/cargo-vendor/wat-1.201.0/Cargo.toml +33 -0
  444. data/ext/cargo-vendor/wat-1.201.0/src/lib.rs +401 -0
  445. data/ext/cargo-vendor/wiggle-18.0.3/.cargo-checksum.json +1 -0
  446. data/ext/cargo-vendor/wiggle-18.0.3/Cargo.toml +122 -0
  447. data/ext/cargo-vendor/wiggle-18.0.3/src/lib.rs +1199 -0
  448. data/ext/cargo-vendor/wiggle-generate-18.0.3/.cargo-checksum.json +1 -0
  449. data/ext/cargo-vendor/wiggle-generate-18.0.3/Cargo.toml +65 -0
  450. data/ext/cargo-vendor/wiggle-macro-18.0.3/.cargo-checksum.json +1 -0
  451. data/ext/cargo-vendor/wiggle-macro-18.0.3/Cargo.toml +55 -0
  452. data/ext/cargo-vendor/winch-codegen-0.16.3/.cargo-checksum.json +1 -0
  453. data/ext/cargo-vendor/winch-codegen-0.16.3/Cargo.toml +77 -0
  454. data/ext/cargo-vendor/winch-codegen-0.16.3/src/abi/local.rs +81 -0
  455. data/ext/cargo-vendor/winch-codegen-0.16.3/src/abi/mod.rs +645 -0
  456. data/ext/cargo-vendor/winch-codegen-0.16.3/src/codegen/builtin.rs +268 -0
  457. data/ext/cargo-vendor/winch-codegen-0.16.3/src/codegen/call.rs +361 -0
  458. data/ext/cargo-vendor/winch-codegen-0.16.3/src/codegen/context.rs +530 -0
  459. data/ext/cargo-vendor/winch-codegen-0.16.3/src/codegen/control.rs +972 -0
  460. data/ext/cargo-vendor/winch-codegen-0.16.3/src/codegen/env.rs +257 -0
  461. data/ext/cargo-vendor/winch-codegen-0.16.3/src/codegen/mod.rs +441 -0
  462. data/ext/cargo-vendor/winch-codegen-0.16.3/src/frame/mod.rs +221 -0
  463. data/ext/cargo-vendor/winch-codegen-0.16.3/src/isa/aarch64/abi.rs +313 -0
  464. data/ext/cargo-vendor/winch-codegen-0.16.3/src/isa/aarch64/masm.rs +519 -0
  465. data/ext/cargo-vendor/winch-codegen-0.16.3/src/isa/aarch64/mod.rs +145 -0
  466. data/ext/cargo-vendor/winch-codegen-0.16.3/src/isa/mod.rs +232 -0
  467. data/ext/cargo-vendor/winch-codegen-0.16.3/src/isa/reg.rs +86 -0
  468. data/ext/cargo-vendor/winch-codegen-0.16.3/src/isa/x64/abi.rs +531 -0
  469. data/ext/cargo-vendor/winch-codegen-0.16.3/src/isa/x64/asm.rs +1277 -0
  470. data/ext/cargo-vendor/winch-codegen-0.16.3/src/isa/x64/masm.rs +1168 -0
  471. data/ext/cargo-vendor/winch-codegen-0.16.3/src/isa/x64/mod.rs +184 -0
  472. data/ext/cargo-vendor/winch-codegen-0.16.3/src/masm.rs +776 -0
  473. data/ext/cargo-vendor/winch-codegen-0.16.3/src/stack.rs +439 -0
  474. data/ext/cargo-vendor/winch-codegen-0.16.3/src/trampoline.rs +733 -0
  475. data/ext/cargo-vendor/winch-codegen-0.16.3/src/visitor.rs +1848 -0
  476. data/ext/cargo-vendor/wit-parser-0.13.2/.cargo-checksum.json +1 -0
  477. data/ext/cargo-vendor/wit-parser-0.13.2/Cargo.toml +71 -0
  478. data/ext/cargo-vendor/wit-parser-0.13.2/src/ast/lex.rs +748 -0
  479. data/ext/cargo-vendor/wit-parser-0.13.2/src/ast/resolve.rs +1428 -0
  480. data/ext/cargo-vendor/wit-parser-0.13.2/src/ast.rs +1349 -0
  481. data/ext/cargo-vendor/wit-parser-0.13.2/src/resolve.rs +2104 -0
  482. data/ext/cargo-vendor/wit-parser-0.13.2/tests/ui/comments.wit.json +49 -0
  483. data/ext/cargo-vendor/wit-parser-0.13.2/tests/ui/import-export-overlap1.wit.json +39 -0
  484. data/ext/cargo-vendor/wit-parser-0.13.2/tests/ui/import-export-overlap2.wit.json +41 -0
  485. data/ext/cargo-vendor/wit-parser-0.13.2/tests/ui/same-name-import-export.wit +6 -0
  486. data/ext/cargo-vendor/wit-parser-0.13.2/tests/ui/same-name-import-export.wit.json +47 -0
  487. data/ext/cargo-vendor/wit-parser-0.13.2/tests/ui/types.wit +60 -0
  488. data/ext/cargo-vendor/wit-parser-0.13.2/tests/ui/types.wit.json +774 -0
  489. data/ext/cargo-vendor/wit-parser-0.13.2/tests/ui/union-fuzz-2.wit.json +72 -0
  490. data/ext/cargo-vendor/wit-parser-0.13.2/tests/ui/wasi.wit.json +539 -0
  491. data/ext/src/ruby_api/config/tracked_memory_creator.rs +1 -1
  492. data/ext/src/ruby_api/store.rs +1 -1
  493. data/ext/src/ruby_api/wasi_ctx.rs +1 -1
  494. data/ext/src/ruby_api/wasi_ctx_builder.rs +2 -2
  495. data/lib/wasmtime/version.rb +1 -1
  496. metadata +2127 -2071
  497. data/ext/cargo-vendor/cranelift-bforest-0.104.0/.cargo-checksum.json +0 -1
  498. data/ext/cargo-vendor/cranelift-bforest-0.104.0/Cargo.toml +0 -40
  499. data/ext/cargo-vendor/cranelift-codegen-0.104.0/.cargo-checksum.json +0 -1
  500. data/ext/cargo-vendor/cranelift-codegen-0.104.0/Cargo.toml +0 -175
  501. data/ext/cargo-vendor/cranelift-codegen-0.104.0/build.rs +0 -392
  502. data/ext/cargo-vendor/cranelift-codegen-0.104.0/src/egraph/cost.rs +0 -171
  503. data/ext/cargo-vendor/cranelift-codegen-0.104.0/src/egraph/domtree.rs +0 -69
  504. data/ext/cargo-vendor/cranelift-codegen-0.104.0/src/egraph/elaborate.rs +0 -750
  505. data/ext/cargo-vendor/cranelift-codegen-0.104.0/src/egraph.rs +0 -703
  506. data/ext/cargo-vendor/cranelift-codegen-0.104.0/src/isa/x64/inst/emit.rs +0 -4410
  507. data/ext/cargo-vendor/cranelift-codegen-0.104.0/src/isa/x64/inst/emit_tests.rs +0 -5525
  508. data/ext/cargo-vendor/cranelift-codegen-0.104.0/src/isa/x64/inst.isle +0 -5202
  509. data/ext/cargo-vendor/cranelift-codegen-0.104.0/src/isa/x64/lower.isle +0 -4744
  510. data/ext/cargo-vendor/cranelift-codegen-0.104.0/src/isa/x64/mod.rs +0 -223
  511. data/ext/cargo-vendor/cranelift-codegen-0.104.0/src/lib.rs +0 -106
  512. data/ext/cargo-vendor/cranelift-codegen-0.104.0/src/machinst/reg.rs +0 -561
  513. data/ext/cargo-vendor/cranelift-codegen-0.104.0/src/opts/README.md +0 -5
  514. data/ext/cargo-vendor/cranelift-codegen-0.104.0/src/opts/cprop.isle +0 -248
  515. data/ext/cargo-vendor/cranelift-codegen-0.104.0/src/opts/extends.isle +0 -116
  516. data/ext/cargo-vendor/cranelift-codegen-0.104.0/src/prelude_opt.isle +0 -134
  517. data/ext/cargo-vendor/cranelift-codegen-0.104.0/src/verifier/mod.rs +0 -2041
  518. data/ext/cargo-vendor/cranelift-codegen-meta-0.104.0/.cargo-checksum.json +0 -1
  519. data/ext/cargo-vendor/cranelift-codegen-meta-0.104.0/Cargo.toml +0 -35
  520. data/ext/cargo-vendor/cranelift-codegen-shared-0.104.0/.cargo-checksum.json +0 -1
  521. data/ext/cargo-vendor/cranelift-codegen-shared-0.104.0/Cargo.toml +0 -22
  522. data/ext/cargo-vendor/cranelift-control-0.104.0/.cargo-checksum.json +0 -1
  523. data/ext/cargo-vendor/cranelift-control-0.104.0/Cargo.toml +0 -30
  524. data/ext/cargo-vendor/cranelift-entity-0.104.0/.cargo-checksum.json +0 -1
  525. data/ext/cargo-vendor/cranelift-entity-0.104.0/Cargo.toml +0 -50
  526. data/ext/cargo-vendor/cranelift-frontend-0.104.0/.cargo-checksum.json +0 -1
  527. data/ext/cargo-vendor/cranelift-frontend-0.104.0/Cargo.toml +0 -68
  528. data/ext/cargo-vendor/cranelift-isle-0.104.0/.cargo-checksum.json +0 -1
  529. data/ext/cargo-vendor/cranelift-isle-0.104.0/Cargo.toml +0 -46
  530. data/ext/cargo-vendor/cranelift-native-0.104.0/.cargo-checksum.json +0 -1
  531. data/ext/cargo-vendor/cranelift-native-0.104.0/Cargo.toml +0 -43
  532. data/ext/cargo-vendor/cranelift-native-0.104.0/src/lib.rs +0 -184
  533. data/ext/cargo-vendor/cranelift-wasm-0.104.0/.cargo-checksum.json +0 -1
  534. data/ext/cargo-vendor/cranelift-wasm-0.104.0/Cargo.toml +0 -106
  535. data/ext/cargo-vendor/cranelift-wasm-0.104.0/src/code_translator.rs +0 -3646
  536. data/ext/cargo-vendor/cranelift-wasm-0.104.0/src/environ/dummy.rs +0 -953
  537. data/ext/cargo-vendor/cranelift-wasm-0.104.0/src/environ/spec.rs +0 -952
  538. data/ext/cargo-vendor/cranelift-wasm-0.104.0/src/sections_translator.rs +0 -408
  539. data/ext/cargo-vendor/cranelift-wasm-0.104.0/src/translation_utils.rs +0 -89
  540. data/ext/cargo-vendor/cranelift-wasm-0.104.0/wasmtests/icall-simd.wat +0 -7
  541. data/ext/cargo-vendor/cranelift-wasm-0.104.0/wasmtests/icall.wat +0 -7
  542. data/ext/cargo-vendor/cranelift-wasm-0.104.0/wasmtests/unreachable_code.wat +0 -77
  543. data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.18/.cargo-checksum.json +0 -1
  544. data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.18/Cargo.toml +0 -49
  545. data/ext/cargo-vendor/rb-sys-0.9.86/.cargo-checksum.json +0 -1
  546. data/ext/cargo-vendor/rb-sys-0.9.86/Cargo.toml +0 -54
  547. data/ext/cargo-vendor/rb-sys-0.9.86/src/lib.rs +0 -37
  548. data/ext/cargo-vendor/rb-sys-build-0.9.86/.cargo-checksum.json +0 -1
  549. data/ext/cargo-vendor/rb-sys-build-0.9.86/Cargo.toml +0 -62
  550. data/ext/cargo-vendor/rb-sys-build-0.9.86/src/bindings.rs +0 -250
  551. data/ext/cargo-vendor/rb-sys-build-0.9.86/src/rb_config.rs +0 -807
  552. data/ext/cargo-vendor/tokio-1.35.1/.cargo-checksum.json +0 -1
  553. data/ext/cargo-vendor/tokio-1.35.1/CHANGELOG.md +0 -3191
  554. data/ext/cargo-vendor/tokio-1.35.1/Cargo.toml +0 -230
  555. data/ext/cargo-vendor/tokio-1.35.1/README.md +0 -249
  556. data/ext/cargo-vendor/tokio-1.35.1/external-types.toml +0 -11
  557. data/ext/cargo-vendor/tokio-1.35.1/src/doc/os.rs +0 -68
  558. data/ext/cargo-vendor/tokio-1.35.1/src/fs/open_options/mock_open_options.rs +0 -39
  559. data/ext/cargo-vendor/tokio-1.35.1/src/future/mod.rs +0 -31
  560. data/ext/cargo-vendor/tokio-1.35.1/src/io/async_fd.rs +0 -1243
  561. data/ext/cargo-vendor/tokio-1.35.1/src/io/bsd/poll_aio.rs +0 -197
  562. data/ext/cargo-vendor/tokio-1.35.1/src/io/interest.rs +0 -345
  563. data/ext/cargo-vendor/tokio-1.35.1/src/io/mod.rs +0 -290
  564. data/ext/cargo-vendor/tokio-1.35.1/src/io/poll_evented.rs +0 -258
  565. data/ext/cargo-vendor/tokio-1.35.1/src/io/stdio_common.rs +0 -221
  566. data/ext/cargo-vendor/tokio-1.35.1/src/io/util/async_buf_read_ext.rs +0 -351
  567. data/ext/cargo-vendor/tokio-1.35.1/src/io/util/buf_reader.rs +0 -311
  568. data/ext/cargo-vendor/tokio-1.35.1/src/io/util/buf_writer.rs +0 -310
  569. data/ext/cargo-vendor/tokio-1.35.1/src/io/util/chain.rs +0 -144
  570. data/ext/cargo-vendor/tokio-1.35.1/src/io/util/copy.rs +0 -219
  571. data/ext/cargo-vendor/tokio-1.35.1/src/io/util/empty.rs +0 -102
  572. data/ext/cargo-vendor/tokio-1.35.1/src/io/util/flush.rs +0 -46
  573. data/ext/cargo-vendor/tokio-1.35.1/src/io/util/mod.rs +0 -97
  574. data/ext/cargo-vendor/tokio-1.35.1/src/io/util/read_exact.rs +0 -69
  575. data/ext/cargo-vendor/tokio-1.35.1/src/io/util/read_line.rs +0 -119
  576. data/ext/cargo-vendor/tokio-1.35.1/src/io/util/repeat.rs +0 -72
  577. data/ext/cargo-vendor/tokio-1.35.1/src/io/util/shutdown.rs +0 -46
  578. data/ext/cargo-vendor/tokio-1.35.1/src/io/util/sink.rs +0 -87
  579. data/ext/cargo-vendor/tokio-1.35.1/src/lib.rs +0 -695
  580. data/ext/cargo-vendor/tokio-1.35.1/src/loom/std/atomic_u64.rs +0 -19
  581. data/ext/cargo-vendor/tokio-1.35.1/src/macros/cfg.rs +0 -575
  582. data/ext/cargo-vendor/tokio-1.35.1/src/macros/try_join.rs +0 -218
  583. data/ext/cargo-vendor/tokio-1.35.1/src/net/mod.rs +0 -56
  584. data/ext/cargo-vendor/tokio-1.35.1/src/net/tcp/listener.rs +0 -451
  585. data/ext/cargo-vendor/tokio-1.35.1/src/net/tcp/socket.rs +0 -846
  586. data/ext/cargo-vendor/tokio-1.35.1/src/net/tcp/stream.rs +0 -1424
  587. data/ext/cargo-vendor/tokio-1.35.1/src/net/udp.rs +0 -2046
  588. data/ext/cargo-vendor/tokio-1.35.1/src/net/unix/datagram/socket.rs +0 -1583
  589. data/ext/cargo-vendor/tokio-1.35.1/src/net/unix/listener.rs +0 -216
  590. data/ext/cargo-vendor/tokio-1.35.1/src/net/unix/mod.rs +0 -37
  591. data/ext/cargo-vendor/tokio-1.35.1/src/net/unix/pipe.rs +0 -1217
  592. data/ext/cargo-vendor/tokio-1.35.1/src/net/unix/stream.rs +0 -1044
  593. data/ext/cargo-vendor/tokio-1.35.1/src/net/windows/named_pipe.rs +0 -2690
  594. data/ext/cargo-vendor/tokio-1.35.1/src/process/mod.rs +0 -1678
  595. data/ext/cargo-vendor/tokio-1.35.1/src/process/unix/mod.rs +0 -344
  596. data/ext/cargo-vendor/tokio-1.35.1/src/runtime/blocking/pool.rs +0 -603
  597. data/ext/cargo-vendor/tokio-1.35.1/src/runtime/builder.rs +0 -1335
  598. data/ext/cargo-vendor/tokio-1.35.1/src/runtime/context.rs +0 -193
  599. data/ext/cargo-vendor/tokio-1.35.1/src/runtime/handle.rs +0 -632
  600. data/ext/cargo-vendor/tokio-1.35.1/src/runtime/io/driver.rs +0 -273
  601. data/ext/cargo-vendor/tokio-1.35.1/src/runtime/io/scheduled_io.rs +0 -598
  602. data/ext/cargo-vendor/tokio-1.35.1/src/runtime/park.rs +0 -340
  603. data/ext/cargo-vendor/tokio-1.35.1/src/runtime/scheduler/current_thread/mod.rs +0 -764
  604. data/ext/cargo-vendor/tokio-1.35.1/src/runtime/scheduler/multi_thread/park.rs +0 -232
  605. data/ext/cargo-vendor/tokio-1.35.1/src/runtime/scheduler/multi_thread/queue.rs +0 -608
  606. data/ext/cargo-vendor/tokio-1.35.1/src/runtime/scheduler/multi_thread/stats.rs +0 -140
  607. data/ext/cargo-vendor/tokio-1.35.1/src/runtime/scheduler/multi_thread/worker.rs +0 -1234
  608. data/ext/cargo-vendor/tokio-1.35.1/src/runtime/scheduler/multi_thread_alt/queue.rs +0 -595
  609. data/ext/cargo-vendor/tokio-1.35.1/src/runtime/scheduler/multi_thread_alt/stats.rs +0 -171
  610. data/ext/cargo-vendor/tokio-1.35.1/src/runtime/scheduler/multi_thread_alt/worker.rs +0 -1597
  611. data/ext/cargo-vendor/tokio-1.35.1/src/runtime/task/core.rs +0 -494
  612. data/ext/cargo-vendor/tokio-1.35.1/src/runtime/task/harness.rs +0 -517
  613. data/ext/cargo-vendor/tokio-1.35.1/src/runtime/task/join.rs +0 -370
  614. data/ext/cargo-vendor/tokio-1.35.1/src/runtime/task/list.rs +0 -338
  615. data/ext/cargo-vendor/tokio-1.35.1/src/runtime/task/mod.rs +0 -526
  616. data/ext/cargo-vendor/tokio-1.35.1/src/runtime/task/state.rs +0 -619
  617. data/ext/cargo-vendor/tokio-1.35.1/src/runtime/task/trace/mod.rs +0 -358
  618. data/ext/cargo-vendor/tokio-1.35.1/src/runtime/tests/loom_local.rs +0 -47
  619. data/ext/cargo-vendor/tokio-1.35.1/src/runtime/tests/task_combinations.rs +0 -488
  620. data/ext/cargo-vendor/tokio-1.35.1/src/runtime/time/entry.rs +0 -646
  621. data/ext/cargo-vendor/tokio-1.35.1/src/runtime/time/source.rs +0 -39
  622. data/ext/cargo-vendor/tokio-1.35.1/src/runtime/time/wheel/level.rs +0 -274
  623. data/ext/cargo-vendor/tokio-1.35.1/src/signal/ctrl_c.rs +0 -62
  624. data/ext/cargo-vendor/tokio-1.35.1/src/signal/mod.rs +0 -98
  625. data/ext/cargo-vendor/tokio-1.35.1/src/signal/registry.rs +0 -283
  626. data/ext/cargo-vendor/tokio-1.35.1/src/signal/unix.rs +0 -530
  627. data/ext/cargo-vendor/tokio-1.35.1/src/signal/windows.rs +0 -524
  628. data/ext/cargo-vendor/tokio-1.35.1/src/sync/batch_semaphore.rs +0 -752
  629. data/ext/cargo-vendor/tokio-1.35.1/src/sync/broadcast.rs +0 -1515
  630. data/ext/cargo-vendor/tokio-1.35.1/src/sync/mpsc/bounded.rs +0 -1399
  631. data/ext/cargo-vendor/tokio-1.35.1/src/sync/mpsc/error.rs +0 -149
  632. data/ext/cargo-vendor/tokio-1.35.1/src/sync/mpsc/mod.rs +0 -122
  633. data/ext/cargo-vendor/tokio-1.35.1/src/sync/mpsc/unbounded.rs +0 -526
  634. data/ext/cargo-vendor/tokio-1.35.1/src/sync/mutex.rs +0 -1391
  635. data/ext/cargo-vendor/tokio-1.35.1/src/sync/oneshot.rs +0 -1390
  636. data/ext/cargo-vendor/tokio-1.35.1/src/sync/rwlock.rs +0 -1119
  637. data/ext/cargo-vendor/tokio-1.35.1/src/sync/semaphore.rs +0 -977
  638. data/ext/cargo-vendor/tokio-1.35.1/src/sync/watch.rs +0 -1388
  639. data/ext/cargo-vendor/tokio-1.35.1/src/task/join_set.rs +0 -584
  640. data/ext/cargo-vendor/tokio-1.35.1/src/task/local.rs +0 -1233
  641. data/ext/cargo-vendor/tokio-1.35.1/src/task/mod.rs +0 -373
  642. data/ext/cargo-vendor/tokio-1.35.1/src/util/idle_notified_set.rs +0 -481
  643. data/ext/cargo-vendor/tokio-1.35.1/src/util/rand.rs +0 -95
  644. data/ext/cargo-vendor/tokio-1.35.1/src/util/sharded_list.rs +0 -149
  645. data/ext/cargo-vendor/tokio-1.35.1/tests/io_async_fd.rs +0 -836
  646. data/ext/cargo-vendor/tokio-1.35.1/tests/io_copy.rs +0 -87
  647. data/ext/cargo-vendor/tokio-1.35.1/tests/io_copy_bidirectional.rs +0 -140
  648. data/ext/cargo-vendor/tokio-1.35.1/tests/io_panic.rs +0 -181
  649. data/ext/cargo-vendor/tokio-1.35.1/tests/io_poll_aio.rs +0 -375
  650. data/ext/cargo-vendor/tokio-1.35.1/tests/join_handle_panic.rs +0 -21
  651. data/ext/cargo-vendor/tokio-1.35.1/tests/macros_test.rs +0 -88
  652. data/ext/cargo-vendor/tokio-1.35.1/tests/macros_try_join.rs +0 -190
  653. data/ext/cargo-vendor/tokio-1.35.1/tests/net_named_pipe.rs +0 -399
  654. data/ext/cargo-vendor/tokio-1.35.1/tests/net_panic.rs +0 -192
  655. data/ext/cargo-vendor/tokio-1.35.1/tests/net_unix_pipe.rs +0 -429
  656. data/ext/cargo-vendor/tokio-1.35.1/tests/process_issue_2174.rs +0 -45
  657. data/ext/cargo-vendor/tokio-1.35.1/tests/rt_basic.rs +0 -448
  658. data/ext/cargo-vendor/tokio-1.35.1/tests/rt_handle.rs +0 -94
  659. data/ext/cargo-vendor/tokio-1.35.1/tests/rt_panic.rs +0 -81
  660. data/ext/cargo-vendor/tokio-1.35.1/tests/rt_time_start_paused.rs +0 -14
  661. data/ext/cargo-vendor/tokio-1.35.1/tests/signal_panic.rs +0 -29
  662. data/ext/cargo-vendor/tokio-1.35.1/tests/sync_mpsc.rs +0 -841
  663. data/ext/cargo-vendor/tokio-1.35.1/tests/sync_panic.rs +0 -209
  664. data/ext/cargo-vendor/tokio-1.35.1/tests/sync_watch.rs +0 -301
  665. data/ext/cargo-vendor/tokio-1.35.1/tests/task_id.rs +0 -303
  666. data/ext/cargo-vendor/tokio-1.35.1/tests/task_join_set.rs +0 -229
  667. data/ext/cargo-vendor/tokio-1.35.1/tests/task_local.rs +0 -119
  668. data/ext/cargo-vendor/tokio-1.35.1/tests/task_panic.rs +0 -130
  669. data/ext/cargo-vendor/tokio-1.35.1/tests/tcp_into_split.rs +0 -131
  670. data/ext/cargo-vendor/tokio-1.35.1/tests/time_panic.rs +0 -98
  671. data/ext/cargo-vendor/tokio-1.35.1/tests/time_pause.rs +0 -332
  672. data/ext/cargo-vendor/wasi-cap-std-sync-17.0.0/.cargo-checksum.json +0 -1
  673. data/ext/cargo-vendor/wasi-cap-std-sync-17.0.0/Cargo.toml +0 -102
  674. data/ext/cargo-vendor/wasi-cap-std-sync-17.0.0/README.md +0 -1
  675. data/ext/cargo-vendor/wasi-cap-std-sync-17.0.0/src/clocks.rs +0 -41
  676. data/ext/cargo-vendor/wasi-cap-std-sync-17.0.0/src/dir.rs +0 -464
  677. data/ext/cargo-vendor/wasi-cap-std-sync-17.0.0/src/file.rs +0 -254
  678. data/ext/cargo-vendor/wasi-cap-std-sync-17.0.0/src/lib.rs +0 -161
  679. data/ext/cargo-vendor/wasi-cap-std-sync-17.0.0/src/net.rs +0 -402
  680. data/ext/cargo-vendor/wasi-cap-std-sync-17.0.0/src/sched/unix.rs +0 -82
  681. data/ext/cargo-vendor/wasi-cap-std-sync-17.0.0/src/sched/windows.rs +0 -221
  682. data/ext/cargo-vendor/wasi-cap-std-sync-17.0.0/src/sched.rs +0 -40
  683. data/ext/cargo-vendor/wasi-cap-std-sync-17.0.0/src/stdio.rs +0 -197
  684. data/ext/cargo-vendor/wasi-common-17.0.0/.cargo-checksum.json +0 -1
  685. data/ext/cargo-vendor/wasi-common-17.0.0/Cargo.toml +0 -131
  686. data/ext/cargo-vendor/wasi-common-17.0.0/src/lib.rs +0 -76
  687. data/ext/cargo-vendor/wasm-encoder-0.38.1/.cargo-checksum.json +0 -1
  688. data/ext/cargo-vendor/wasm-encoder-0.38.1/Cargo.toml +0 -37
  689. data/ext/cargo-vendor/wasm-encoder-0.38.1/src/component/types.rs +0 -771
  690. data/ext/cargo-vendor/wasm-encoder-0.38.1/src/core/code.rs +0 -3179
  691. data/ext/cargo-vendor/wasm-encoder-0.38.1/src/core/names.rs +0 -290
  692. data/ext/cargo-vendor/wasm-encoder-0.38.1/src/core/types.rs +0 -611
  693. data/ext/cargo-vendor/wasmparser-0.118.1/.cargo-checksum.json +0 -1
  694. data/ext/cargo-vendor/wasmparser-0.118.1/Cargo.lock +0 -649
  695. data/ext/cargo-vendor/wasmparser-0.118.1/Cargo.toml +0 -60
  696. data/ext/cargo-vendor/wasmparser-0.118.1/README.md +0 -36
  697. data/ext/cargo-vendor/wasmparser-0.118.1/benches/benchmark.rs +0 -370
  698. data/ext/cargo-vendor/wasmparser-0.118.1/src/binary_reader.rs +0 -1706
  699. data/ext/cargo-vendor/wasmparser-0.118.1/src/lib.rs +0 -726
  700. data/ext/cargo-vendor/wasmparser-0.118.1/src/limits.rs +0 -58
  701. data/ext/cargo-vendor/wasmparser-0.118.1/src/readers/core/dylink0.rs +0 -132
  702. data/ext/cargo-vendor/wasmparser-0.118.1/src/readers/core/names.rs +0 -153
  703. data/ext/cargo-vendor/wasmparser-0.118.1/src/readers/core/operators.rs +0 -354
  704. data/ext/cargo-vendor/wasmparser-0.118.1/src/readers/core/types.rs +0 -1520
  705. data/ext/cargo-vendor/wasmparser-0.118.1/src/readers/core.rs +0 -37
  706. data/ext/cargo-vendor/wasmparser-0.118.1/src/resources.rs +0 -408
  707. data/ext/cargo-vendor/wasmparser-0.118.1/src/validator/component.rs +0 -3211
  708. data/ext/cargo-vendor/wasmparser-0.118.1/src/validator/core/canonical.rs +0 -233
  709. data/ext/cargo-vendor/wasmparser-0.118.1/src/validator/core.rs +0 -1381
  710. data/ext/cargo-vendor/wasmparser-0.118.1/src/validator/func.rs +0 -345
  711. data/ext/cargo-vendor/wasmparser-0.118.1/src/validator/names.rs +0 -859
  712. data/ext/cargo-vendor/wasmparser-0.118.1/src/validator/operators.rs +0 -3515
  713. data/ext/cargo-vendor/wasmparser-0.118.1/src/validator/types.rs +0 -4416
  714. data/ext/cargo-vendor/wasmparser-0.118.1/src/validator.rs +0 -1606
  715. data/ext/cargo-vendor/wasmprinter-0.2.75/.cargo-checksum.json +0 -1
  716. data/ext/cargo-vendor/wasmprinter-0.2.75/Cargo.toml +0 -39
  717. data/ext/cargo-vendor/wasmprinter-0.2.75/src/lib.rs +0 -2969
  718. data/ext/cargo-vendor/wasmprinter-0.2.75/src/operator.rs +0 -873
  719. data/ext/cargo-vendor/wasmprinter-0.2.75/tests/all.rs +0 -278
  720. data/ext/cargo-vendor/wasmtime-17.0.0/.cargo-checksum.json +0 -1
  721. data/ext/cargo-vendor/wasmtime-17.0.0/Cargo.toml +0 -211
  722. data/ext/cargo-vendor/wasmtime-17.0.0/src/code.rs +0 -103
  723. data/ext/cargo-vendor/wasmtime-17.0.0/src/compiler.rs +0 -682
  724. data/ext/cargo-vendor/wasmtime-17.0.0/src/component/component.rs +0 -545
  725. data/ext/cargo-vendor/wasmtime-17.0.0/src/component/func/host.rs +0 -456
  726. data/ext/cargo-vendor/wasmtime-17.0.0/src/component/func.rs +0 -720
  727. data/ext/cargo-vendor/wasmtime-17.0.0/src/component/instance.rs +0 -815
  728. data/ext/cargo-vendor/wasmtime-17.0.0/src/component/linker.rs +0 -580
  729. data/ext/cargo-vendor/wasmtime-17.0.0/src/component/resource_table.rs +0 -350
  730. data/ext/cargo-vendor/wasmtime-17.0.0/src/component/types.rs +0 -752
  731. data/ext/cargo-vendor/wasmtime-17.0.0/src/component/values.rs +0 -1272
  732. data/ext/cargo-vendor/wasmtime-17.0.0/src/config.rs +0 -2428
  733. data/ext/cargo-vendor/wasmtime-17.0.0/src/engine/serialization.rs +0 -657
  734. data/ext/cargo-vendor/wasmtime-17.0.0/src/engine.rs +0 -792
  735. data/ext/cargo-vendor/wasmtime-17.0.0/src/func/typed.rs +0 -638
  736. data/ext/cargo-vendor/wasmtime-17.0.0/src/func.rs +0 -2391
  737. data/ext/cargo-vendor/wasmtime-17.0.0/src/instance.rs +0 -941
  738. data/ext/cargo-vendor/wasmtime-17.0.0/src/lib.rs +0 -526
  739. data/ext/cargo-vendor/wasmtime-17.0.0/src/linker.rs +0 -1479
  740. data/ext/cargo-vendor/wasmtime-17.0.0/src/memory.rs +0 -998
  741. data/ext/cargo-vendor/wasmtime-17.0.0/src/module/registry.rs +0 -361
  742. data/ext/cargo-vendor/wasmtime-17.0.0/src/module.rs +0 -1370
  743. data/ext/cargo-vendor/wasmtime-17.0.0/src/profiling.rs +0 -212
  744. data/ext/cargo-vendor/wasmtime-17.0.0/src/store.rs +0 -2389
  745. data/ext/cargo-vendor/wasmtime-17.0.0/src/trampoline/func.rs +0 -133
  746. data/ext/cargo-vendor/wasmtime-17.0.0/src/trampoline/memory.rs +0 -269
  747. data/ext/cargo-vendor/wasmtime-17.0.0/src/trampoline/table.rs +0 -20
  748. data/ext/cargo-vendor/wasmtime-17.0.0/src/trampoline.rs +0 -77
  749. data/ext/cargo-vendor/wasmtime-17.0.0/src/trap.rs +0 -643
  750. data/ext/cargo-vendor/wasmtime-17.0.0/src/types/matching.rs +0 -312
  751. data/ext/cargo-vendor/wasmtime-17.0.0/src/types.rs +0 -581
  752. data/ext/cargo-vendor/wasmtime-asm-macros-17.0.0/.cargo-checksum.json +0 -1
  753. data/ext/cargo-vendor/wasmtime-asm-macros-17.0.0/Cargo.toml +0 -22
  754. data/ext/cargo-vendor/wasmtime-cache-17.0.0/.cargo-checksum.json +0 -1
  755. data/ext/cargo-vendor/wasmtime-cache-17.0.0/Cargo.toml +0 -81
  756. data/ext/cargo-vendor/wasmtime-component-macro-17.0.0/.cargo-checksum.json +0 -1
  757. data/ext/cargo-vendor/wasmtime-component-macro-17.0.0/Cargo.toml +0 -67
  758. data/ext/cargo-vendor/wasmtime-component-macro-17.0.0/src/bindgen.rs +0 -371
  759. data/ext/cargo-vendor/wasmtime-component-util-17.0.0/.cargo-checksum.json +0 -1
  760. data/ext/cargo-vendor/wasmtime-component-util-17.0.0/Cargo.toml +0 -25
  761. data/ext/cargo-vendor/wasmtime-cranelift-17.0.0/.cargo-checksum.json +0 -1
  762. data/ext/cargo-vendor/wasmtime-cranelift-17.0.0/Cargo.toml +0 -112
  763. data/ext/cargo-vendor/wasmtime-cranelift-17.0.0/src/builder.rs +0 -123
  764. data/ext/cargo-vendor/wasmtime-cranelift-17.0.0/src/compiler/component.rs +0 -959
  765. data/ext/cargo-vendor/wasmtime-cranelift-17.0.0/src/compiler.rs +0 -1317
  766. data/ext/cargo-vendor/wasmtime-cranelift-17.0.0/src/debug/transform/simulate.rs +0 -410
  767. data/ext/cargo-vendor/wasmtime-cranelift-17.0.0/src/func_environ.rs +0 -2750
  768. data/ext/cargo-vendor/wasmtime-cranelift-17.0.0/src/lib.rs +0 -186
  769. data/ext/cargo-vendor/wasmtime-cranelift-shared-17.0.0/.cargo-checksum.json +0 -1
  770. data/ext/cargo-vendor/wasmtime-cranelift-shared-17.0.0/Cargo.toml +0 -71
  771. data/ext/cargo-vendor/wasmtime-cranelift-shared-17.0.0/src/isa_builder.rs +0 -100
  772. data/ext/cargo-vendor/wasmtime-environ-17.0.0/.cargo-checksum.json +0 -1
  773. data/ext/cargo-vendor/wasmtime-environ-17.0.0/Cargo.lock +0 -726
  774. data/ext/cargo-vendor/wasmtime-environ-17.0.0/Cargo.toml +0 -125
  775. data/ext/cargo-vendor/wasmtime-environ-17.0.0/src/component/dfg.rs +0 -678
  776. data/ext/cargo-vendor/wasmtime-environ-17.0.0/src/component/info.rs +0 -583
  777. data/ext/cargo-vendor/wasmtime-environ-17.0.0/src/component/translate/inline.rs +0 -1322
  778. data/ext/cargo-vendor/wasmtime-environ-17.0.0/src/component/translate.rs +0 -951
  779. data/ext/cargo-vendor/wasmtime-environ-17.0.0/src/component/types.rs +0 -1876
  780. data/ext/cargo-vendor/wasmtime-environ-17.0.0/src/component.rs +0 -95
  781. data/ext/cargo-vendor/wasmtime-environ-17.0.0/src/lib.rs +0 -59
  782. data/ext/cargo-vendor/wasmtime-environ-17.0.0/src/module.rs +0 -1075
  783. data/ext/cargo-vendor/wasmtime-environ-17.0.0/src/module_environ.rs +0 -892
  784. data/ext/cargo-vendor/wasmtime-environ-17.0.0/src/module_types.rs +0 -120
  785. data/ext/cargo-vendor/wasmtime-environ-17.0.0/src/tunables.rs +0 -117
  786. data/ext/cargo-vendor/wasmtime-environ-17.0.0/src/vmoffsets.rs +0 -919
  787. data/ext/cargo-vendor/wasmtime-fiber-17.0.0/.cargo-checksum.json +0 -1
  788. data/ext/cargo-vendor/wasmtime-fiber-17.0.0/Cargo.toml +0 -63
  789. data/ext/cargo-vendor/wasmtime-jit-17.0.0/.cargo-checksum.json +0 -1
  790. data/ext/cargo-vendor/wasmtime-jit-17.0.0/Cargo.toml +0 -125
  791. data/ext/cargo-vendor/wasmtime-jit-17.0.0/src/code_memory.rs +0 -319
  792. data/ext/cargo-vendor/wasmtime-jit-17.0.0/src/debug.rs +0 -165
  793. data/ext/cargo-vendor/wasmtime-jit-17.0.0/src/instantiate.rs +0 -772
  794. data/ext/cargo-vendor/wasmtime-jit-17.0.0/src/lib.rs +0 -21
  795. data/ext/cargo-vendor/wasmtime-jit-17.0.0/src/profiling/jitdump.rs +0 -66
  796. data/ext/cargo-vendor/wasmtime-jit-17.0.0/src/profiling/perfmap.rs +0 -47
  797. data/ext/cargo-vendor/wasmtime-jit-17.0.0/src/profiling/vtune.rs +0 -80
  798. data/ext/cargo-vendor/wasmtime-jit-17.0.0/src/profiling.rs +0 -108
  799. data/ext/cargo-vendor/wasmtime-jit-debug-17.0.0/.cargo-checksum.json +0 -1
  800. data/ext/cargo-vendor/wasmtime-jit-debug-17.0.0/Cargo.toml +0 -67
  801. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-17.0.0/.cargo-checksum.json +0 -1
  802. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-17.0.0/Cargo.toml +0 -46
  803. data/ext/cargo-vendor/wasmtime-runtime-17.0.0/.cargo-checksum.json +0 -1
  804. data/ext/cargo-vendor/wasmtime-runtime-17.0.0/Cargo.toml +0 -139
  805. data/ext/cargo-vendor/wasmtime-runtime-17.0.0/src/component.rs +0 -855
  806. data/ext/cargo-vendor/wasmtime-runtime-17.0.0/src/instance/allocator/pooling/memory_pool.rs +0 -997
  807. data/ext/cargo-vendor/wasmtime-runtime-17.0.0/src/instance/allocator/pooling.rs +0 -658
  808. data/ext/cargo-vendor/wasmtime-runtime-17.0.0/src/instance/allocator.rs +0 -712
  809. data/ext/cargo-vendor/wasmtime-runtime-17.0.0/src/instance.rs +0 -1479
  810. data/ext/cargo-vendor/wasmtime-runtime-17.0.0/src/lib.rs +0 -264
  811. data/ext/cargo-vendor/wasmtime-runtime-17.0.0/src/mpk/enabled.rs +0 -204
  812. data/ext/cargo-vendor/wasmtime-runtime-17.0.0/src/mpk/pkru.rs +0 -102
  813. data/ext/cargo-vendor/wasmtime-runtime-17.0.0/src/sys/unix/signals.rs +0 -402
  814. data/ext/cargo-vendor/wasmtime-runtime-17.0.0/src/vmcontext.rs +0 -1197
  815. data/ext/cargo-vendor/wasmtime-types-17.0.0/.cargo-checksum.json +0 -1
  816. data/ext/cargo-vendor/wasmtime-types-17.0.0/Cargo.toml +0 -36
  817. data/ext/cargo-vendor/wasmtime-types-17.0.0/src/lib.rs +0 -504
  818. data/ext/cargo-vendor/wasmtime-versioned-export-macros-17.0.0/.cargo-checksum.json +0 -1
  819. data/ext/cargo-vendor/wasmtime-versioned-export-macros-17.0.0/Cargo.toml +0 -32
  820. data/ext/cargo-vendor/wasmtime-wasi-17.0.0/.cargo-checksum.json +0 -1
  821. data/ext/cargo-vendor/wasmtime-wasi-17.0.0/Cargo.toml +0 -261
  822. data/ext/cargo-vendor/wasmtime-wasi-17.0.0/build.rs +0 -6
  823. data/ext/cargo-vendor/wasmtime-wasi-17.0.0/src/lib.rs +0 -137
  824. data/ext/cargo-vendor/wasmtime-wasi-17.0.0/src/preview2/clocks/host.rs +0 -73
  825. data/ext/cargo-vendor/wasmtime-wasi-17.0.0/src/preview2/clocks.rs +0 -12
  826. data/ext/cargo-vendor/wasmtime-wasi-17.0.0/src/preview2/ctx.rs +0 -333
  827. data/ext/cargo-vendor/wasmtime-wasi-17.0.0/src/preview2/error.rs +0 -97
  828. data/ext/cargo-vendor/wasmtime-wasi-17.0.0/src/preview2/filesystem.rs +0 -325
  829. data/ext/cargo-vendor/wasmtime-wasi-17.0.0/src/preview2/host/clocks.rs +0 -103
  830. data/ext/cargo-vendor/wasmtime-wasi-17.0.0/src/preview2/host/filesystem.rs +0 -1069
  831. data/ext/cargo-vendor/wasmtime-wasi-17.0.0/src/preview2/host/instance_network.rs +0 -15
  832. data/ext/cargo-vendor/wasmtime-wasi-17.0.0/src/preview2/host/io.rs +0 -368
  833. data/ext/cargo-vendor/wasmtime-wasi-17.0.0/src/preview2/host/network.rs +0 -625
  834. data/ext/cargo-vendor/wasmtime-wasi-17.0.0/src/preview2/host/random.rs +0 -36
  835. data/ext/cargo-vendor/wasmtime-wasi-17.0.0/src/preview2/host/tcp.rs +0 -605
  836. data/ext/cargo-vendor/wasmtime-wasi-17.0.0/src/preview2/host/tcp_create_socket.rs +0 -15
  837. data/ext/cargo-vendor/wasmtime-wasi-17.0.0/src/preview2/host/udp.rs +0 -530
  838. data/ext/cargo-vendor/wasmtime-wasi-17.0.0/src/preview2/host/udp_create_socket.rs +0 -15
  839. data/ext/cargo-vendor/wasmtime-wasi-17.0.0/src/preview2/ip_name_lookup.rs +0 -125
  840. data/ext/cargo-vendor/wasmtime-wasi-17.0.0/src/preview2/pipe.rs +0 -826
  841. data/ext/cargo-vendor/wasmtime-wasi-17.0.0/src/preview2/poll.rs +0 -175
  842. data/ext/cargo-vendor/wasmtime-wasi-17.0.0/src/preview2/preview0.rs +0 -870
  843. data/ext/cargo-vendor/wasmtime-wasi-17.0.0/src/preview2/preview1.rs +0 -2362
  844. data/ext/cargo-vendor/wasmtime-wasi-17.0.0/src/preview2/random.rs +0 -58
  845. data/ext/cargo-vendor/wasmtime-wasi-17.0.0/src/preview2/stdio.rs +0 -259
  846. data/ext/cargo-vendor/wasmtime-wasi-17.0.0/src/preview2/write_stream.rs +0 -203
  847. data/ext/cargo-vendor/wasmtime-wasi-17.0.0/tests/all/api.rs +0 -217
  848. data/ext/cargo-vendor/wasmtime-wasi-17.0.0/tests/all/main.rs +0 -112
  849. data/ext/cargo-vendor/wasmtime-wasi-17.0.0/wit/deps/io/poll.wit +0 -41
  850. data/ext/cargo-vendor/wasmtime-wasi-17.0.0/wit/deps/io/streams.wit +0 -251
  851. data/ext/cargo-vendor/wasmtime-wasi-17.0.0/wit/deps/sockets/tcp.wit +0 -309
  852. data/ext/cargo-vendor/wasmtime-wasi-17.0.0/wit/deps/sockets/udp.wit +0 -264
  853. data/ext/cargo-vendor/wasmtime-winch-17.0.0/.cargo-checksum.json +0 -1
  854. data/ext/cargo-vendor/wasmtime-winch-17.0.0/Cargo.toml +0 -77
  855. data/ext/cargo-vendor/wasmtime-winch-17.0.0/src/builder.rs +0 -64
  856. data/ext/cargo-vendor/wasmtime-winch-17.0.0/src/compiler.rs +0 -243
  857. data/ext/cargo-vendor/wasmtime-wit-bindgen-17.0.0/.cargo-checksum.json +0 -1
  858. data/ext/cargo-vendor/wasmtime-wit-bindgen-17.0.0/Cargo.toml +0 -41
  859. data/ext/cargo-vendor/wasmtime-wit-bindgen-17.0.0/src/lib.rs +0 -2097
  860. data/ext/cargo-vendor/wasmtime-wmemcheck-17.0.0/.cargo-checksum.json +0 -1
  861. data/ext/cargo-vendor/wasmtime-wmemcheck-17.0.0/Cargo.toml +0 -29
  862. data/ext/cargo-vendor/wast-69.0.1/.cargo-checksum.json +0 -1
  863. data/ext/cargo-vendor/wast-69.0.1/Cargo.toml +0 -50
  864. data/ext/cargo-vendor/wast-69.0.1/src/component/component.rs +0 -320
  865. data/ext/cargo-vendor/wast-69.0.1/src/core/binary.rs +0 -1273
  866. data/ext/cargo-vendor/wast-69.0.1/src/core/custom.rs +0 -390
  867. data/ext/cargo-vendor/wast-69.0.1/src/core/expr.rs +0 -2072
  868. data/ext/cargo-vendor/wast-69.0.1/src/core/memory.rs +0 -279
  869. data/ext/cargo-vendor/wast-69.0.1/src/core/module.rs +0 -217
  870. data/ext/cargo-vendor/wast-69.0.1/src/core/resolve/deinline_import_export.rs +0 -231
  871. data/ext/cargo-vendor/wast-69.0.1/src/core/resolve/names.rs +0 -764
  872. data/ext/cargo-vendor/wast-69.0.1/src/core/table.rs +0 -288
  873. data/ext/cargo-vendor/wast-69.0.1/src/core/types.rs +0 -865
  874. data/ext/cargo-vendor/wast-69.0.1/src/lexer.rs +0 -1443
  875. data/ext/cargo-vendor/wast-69.0.1/src/lib.rs +0 -542
  876. data/ext/cargo-vendor/wast-69.0.1/src/names.rs +0 -86
  877. data/ext/cargo-vendor/wast-69.0.1/src/parser.rs +0 -1382
  878. data/ext/cargo-vendor/wast-69.0.1/src/token.rs +0 -698
  879. data/ext/cargo-vendor/wast-69.0.1/src/wat.rs +0 -62
  880. data/ext/cargo-vendor/wat-1.0.82/.cargo-checksum.json +0 -1
  881. data/ext/cargo-vendor/wat-1.0.82/Cargo.toml +0 -27
  882. data/ext/cargo-vendor/wat-1.0.82/src/lib.rs +0 -333
  883. data/ext/cargo-vendor/wiggle-17.0.0/.cargo-checksum.json +0 -1
  884. data/ext/cargo-vendor/wiggle-17.0.0/Cargo.toml +0 -115
  885. data/ext/cargo-vendor/wiggle-17.0.0/src/lib.rs +0 -1198
  886. data/ext/cargo-vendor/wiggle-generate-17.0.0/.cargo-checksum.json +0 -1
  887. data/ext/cargo-vendor/wiggle-generate-17.0.0/Cargo.toml +0 -65
  888. data/ext/cargo-vendor/wiggle-macro-17.0.0/.cargo-checksum.json +0 -1
  889. data/ext/cargo-vendor/wiggle-macro-17.0.0/Cargo.toml +0 -55
  890. data/ext/cargo-vendor/wiggle-macro-17.0.0/LICENSE +0 -220
  891. data/ext/cargo-vendor/winch-codegen-0.15.0/.cargo-checksum.json +0 -1
  892. data/ext/cargo-vendor/winch-codegen-0.15.0/Cargo.toml +0 -76
  893. data/ext/cargo-vendor/winch-codegen-0.15.0/src/abi/local.rs +0 -81
  894. data/ext/cargo-vendor/winch-codegen-0.15.0/src/abi/mod.rs +0 -614
  895. data/ext/cargo-vendor/winch-codegen-0.15.0/src/codegen/builtin.rs +0 -268
  896. data/ext/cargo-vendor/winch-codegen-0.15.0/src/codegen/call.rs +0 -345
  897. data/ext/cargo-vendor/winch-codegen-0.15.0/src/codegen/context.rs +0 -553
  898. data/ext/cargo-vendor/winch-codegen-0.15.0/src/codegen/control.rs +0 -497
  899. data/ext/cargo-vendor/winch-codegen-0.15.0/src/codegen/env.rs +0 -309
  900. data/ext/cargo-vendor/winch-codegen-0.15.0/src/codegen/mod.rs +0 -428
  901. data/ext/cargo-vendor/winch-codegen-0.15.0/src/frame/mod.rs +0 -221
  902. data/ext/cargo-vendor/winch-codegen-0.15.0/src/isa/aarch64/abi.rs +0 -313
  903. data/ext/cargo-vendor/winch-codegen-0.15.0/src/isa/aarch64/masm.rs +0 -457
  904. data/ext/cargo-vendor/winch-codegen-0.15.0/src/isa/aarch64/mod.rs +0 -137
  905. data/ext/cargo-vendor/winch-codegen-0.15.0/src/isa/mod.rs +0 -225
  906. data/ext/cargo-vendor/winch-codegen-0.15.0/src/isa/reg.rs +0 -73
  907. data/ext/cargo-vendor/winch-codegen-0.15.0/src/isa/x64/abi.rs +0 -524
  908. data/ext/cargo-vendor/winch-codegen-0.15.0/src/isa/x64/asm.rs +0 -1149
  909. data/ext/cargo-vendor/winch-codegen-0.15.0/src/isa/x64/masm.rs +0 -1044
  910. data/ext/cargo-vendor/winch-codegen-0.15.0/src/isa/x64/mod.rs +0 -172
  911. data/ext/cargo-vendor/winch-codegen-0.15.0/src/masm.rs +0 -708
  912. data/ext/cargo-vendor/winch-codegen-0.15.0/src/stack.rs +0 -452
  913. data/ext/cargo-vendor/winch-codegen-0.15.0/src/trampoline.rs +0 -734
  914. data/ext/cargo-vendor/winch-codegen-0.15.0/src/visitor.rs +0 -1617
  915. data/ext/cargo-vendor/wit-parser-0.13.0/.cargo-checksum.json +0 -1
  916. data/ext/cargo-vendor/wit-parser-0.13.0/Cargo.toml +0 -65
  917. data/ext/cargo-vendor/wit-parser-0.13.0/src/ast/lex.rs +0 -737
  918. data/ext/cargo-vendor/wit-parser-0.13.0/src/ast/resolve.rs +0 -1425
  919. data/ext/cargo-vendor/wit-parser-0.13.0/src/ast.rs +0 -1340
  920. data/ext/cargo-vendor/wit-parser-0.13.0/src/resolve.rs +0 -1872
  921. data/ext/cargo-vendor/wit-parser-0.13.0/tests/ui/comments.wit.json +0 -46
  922. data/ext/cargo-vendor/wit-parser-0.13.0/tests/ui/parse-fail/import-export-overlap1.wit.result +0 -5
  923. data/ext/cargo-vendor/wit-parser-0.13.0/tests/ui/parse-fail/import-export-overlap2.wit.result +0 -5
  924. data/ext/cargo-vendor/wit-parser-0.13.0/tests/ui/parse-fail/union-fuzz-2.wit.result +0 -5
  925. data/ext/cargo-vendor/wit-parser-0.13.0/tests/ui/types.wit +0 -58
  926. data/ext/cargo-vendor/wit-parser-0.13.0/tests/ui/types.wit.json +0 -751
  927. data/ext/cargo-vendor/wit-parser-0.13.0/tests/ui/wasi.wit.json +0 -296
  928. /data/ext/cargo-vendor/{cranelift-bforest-0.104.0 → cranelift-bforest-0.105.3}/LICENSE +0 -0
  929. /data/ext/cargo-vendor/{cranelift-bforest-0.104.0 → cranelift-bforest-0.105.3}/README.md +0 -0
  930. /data/ext/cargo-vendor/{cranelift-bforest-0.104.0 → cranelift-bforest-0.105.3}/src/lib.rs +0 -0
  931. /data/ext/cargo-vendor/{cranelift-bforest-0.104.0 → cranelift-bforest-0.105.3}/src/map.rs +0 -0
  932. /data/ext/cargo-vendor/{cranelift-bforest-0.104.0 → cranelift-bforest-0.105.3}/src/node.rs +0 -0
  933. /data/ext/cargo-vendor/{cranelift-bforest-0.104.0 → cranelift-bforest-0.105.3}/src/path.rs +0 -0
  934. /data/ext/cargo-vendor/{cranelift-bforest-0.104.0 → cranelift-bforest-0.105.3}/src/pool.rs +0 -0
  935. /data/ext/cargo-vendor/{cranelift-bforest-0.104.0 → cranelift-bforest-0.105.3}/src/set.rs +0 -0
  936. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/LICENSE +0 -0
  937. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/README.md +0 -0
  938. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/benches/x64-evex-encoding.rs +0 -0
  939. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/alias_analysis.rs +0 -0
  940. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/binemit/mod.rs +0 -0
  941. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/binemit/stack_map.rs +0 -0
  942. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/bitset.rs +0 -0
  943. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/cfg_printer.rs +0 -0
  944. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/constant_hash.rs +0 -0
  945. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/context.rs +0 -0
  946. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/ctxhash.rs +0 -0
  947. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/cursor.rs +0 -0
  948. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/data_value.rs +0 -0
  949. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/dbg.rs +0 -0
  950. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/dce.rs +0 -0
  951. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/dominator_tree.rs +0 -0
  952. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/flowgraph.rs +0 -0
  953. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/fx.rs +0 -0
  954. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/incremental_cache.rs +0 -0
  955. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/inst_predicates.rs +0 -0
  956. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/ir/atomic_rmw_op.rs +0 -0
  957. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/ir/builder.rs +0 -0
  958. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/ir/condcodes.rs +0 -0
  959. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/ir/constant.rs +0 -0
  960. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/ir/dfg.rs +0 -0
  961. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/ir/dynamic_type.rs +0 -0
  962. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/ir/entities.rs +0 -0
  963. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/ir/extfunc.rs +0 -0
  964. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/ir/extname.rs +0 -0
  965. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/ir/function.rs +0 -0
  966. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/ir/globalvalue.rs +0 -0
  967. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/ir/immediates.rs +0 -0
  968. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/ir/instructions.rs +0 -0
  969. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/ir/jumptable.rs +0 -0
  970. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/ir/known_symbol.rs +0 -0
  971. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/ir/layout.rs +0 -0
  972. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/ir/libcall.rs +0 -0
  973. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/ir/memflags.rs +0 -0
  974. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/ir/memtype.rs +0 -0
  975. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/ir/mod.rs +0 -0
  976. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/ir/pcc.rs +0 -0
  977. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/ir/progpoint.rs +0 -0
  978. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/ir/sourceloc.rs +0 -0
  979. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/ir/stackslot.rs +0 -0
  980. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/ir/table.rs +0 -0
  981. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/ir/trapcode.rs +0 -0
  982. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/ir/types.rs +0 -0
  983. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/aarch64/abi.rs +0 -0
  984. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/aarch64/inst/args.rs +0 -0
  985. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/aarch64/inst/emit.rs +0 -0
  986. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/aarch64/inst/emit_tests.rs +0 -0
  987. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/aarch64/inst/imms.rs +0 -0
  988. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/aarch64/inst/mod.rs +0 -0
  989. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/aarch64/inst/regs.rs +0 -0
  990. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/aarch64/inst/unwind/systemv.rs +0 -0
  991. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/aarch64/inst/unwind.rs +0 -0
  992. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/aarch64/inst.isle +0 -0
  993. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/aarch64/inst_neon.isle +0 -0
  994. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/aarch64/lower/isle/generated_code.rs +0 -0
  995. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/aarch64/lower/isle.rs +0 -0
  996. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/aarch64/lower.isle +0 -0
  997. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/aarch64/lower.rs +0 -0
  998. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/aarch64/lower_dynamic_neon.isle +0 -0
  999. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/aarch64/mod.rs +0 -0
  1000. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/aarch64/pcc.rs +0 -0
  1001. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/aarch64/settings.rs +0 -0
  1002. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/call_conv.rs +0 -0
  1003. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/mod.rs +0 -0
  1004. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/riscv64/abi.rs +0 -0
  1005. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/riscv64/inst/args.rs +0 -0
  1006. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/riscv64/inst/emit.rs +0 -0
  1007. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/riscv64/inst/emit_tests.rs +0 -0
  1008. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/riscv64/inst/encode.rs +0 -0
  1009. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/riscv64/inst/imms.rs +0 -0
  1010. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/riscv64/inst/mod.rs +0 -0
  1011. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/riscv64/inst/regs.rs +0 -0
  1012. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/riscv64/inst/unwind/systemv.rs +0 -0
  1013. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/riscv64/inst/unwind.rs +0 -0
  1014. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/riscv64/inst/vector.rs +0 -0
  1015. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/riscv64/inst.isle +0 -0
  1016. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/riscv64/inst_vector.isle +0 -0
  1017. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/riscv64/lower/isle/generated_code.rs +0 -0
  1018. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/riscv64/lower/isle.rs +0 -0
  1019. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/riscv64/lower.isle +0 -0
  1020. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/riscv64/lower.rs +0 -0
  1021. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/riscv64/mod.rs +0 -0
  1022. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/riscv64/settings.rs +0 -0
  1023. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/s390x/abi.rs +0 -0
  1024. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/s390x/inst/args.rs +0 -0
  1025. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/s390x/inst/emit.rs +0 -0
  1026. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/s390x/inst/emit_tests.rs +0 -0
  1027. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/s390x/inst/imms.rs +0 -0
  1028. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/s390x/inst/mod.rs +0 -0
  1029. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/s390x/inst/regs.rs +0 -0
  1030. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/s390x/inst/unwind/systemv.rs +0 -0
  1031. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/s390x/inst/unwind.rs +0 -0
  1032. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/s390x/inst.isle +0 -0
  1033. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/s390x/lower/isle/generated_code.rs +0 -0
  1034. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/s390x/lower/isle.rs +0 -0
  1035. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/s390x/lower.isle +0 -0
  1036. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/s390x/lower.rs +0 -0
  1037. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/s390x/mod.rs +0 -0
  1038. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/s390x/settings.rs +0 -0
  1039. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/unwind/systemv.rs +0 -0
  1040. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/unwind/winx64.rs +0 -0
  1041. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/unwind.rs +0 -0
  1042. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/x64/abi.rs +0 -0
  1043. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/x64/encoding/evex.rs +0 -0
  1044. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/x64/encoding/mod.rs +0 -0
  1045. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/x64/encoding/rex.rs +0 -0
  1046. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/x64/encoding/vex.rs +0 -0
  1047. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/x64/inst/args.rs +0 -0
  1048. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/x64/inst/emit_state.rs +0 -0
  1049. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/x64/inst/mod.rs +0 -0
  1050. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/x64/inst/regs.rs +0 -0
  1051. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/x64/inst/unwind/systemv.rs +0 -0
  1052. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/x64/inst/unwind/winx64.rs +0 -0
  1053. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/x64/inst/unwind.rs +0 -0
  1054. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/x64/lower/isle/generated_code.rs +0 -0
  1055. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/x64/lower/isle.rs +0 -0
  1056. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/x64/lower.rs +0 -0
  1057. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/x64/pcc.rs +0 -0
  1058. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/x64/settings.rs +0 -0
  1059. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isle_prelude.rs +0 -0
  1060. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/iterators.rs +0 -0
  1061. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/legalizer/globalvalue.rs +0 -0
  1062. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/legalizer/mod.rs +0 -0
  1063. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/legalizer/table.rs +0 -0
  1064. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/loop_analysis.rs +0 -0
  1065. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/machinst/abi.rs +0 -0
  1066. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/machinst/blockorder.rs +0 -0
  1067. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/machinst/buffer.rs +0 -0
  1068. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/machinst/compile.rs +0 -0
  1069. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/machinst/helpers.rs +0 -0
  1070. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/machinst/inst_common.rs +0 -0
  1071. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/machinst/isle.rs +0 -0
  1072. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/machinst/lower.rs +0 -0
  1073. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/machinst/mod.rs +0 -0
  1074. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/machinst/pcc.rs +0 -0
  1075. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/machinst/valueregs.rs +0 -0
  1076. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/machinst/vcode.rs +0 -0
  1077. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/nan_canonicalization.rs +0 -0
  1078. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/opts/arithmetic.isle +0 -0
  1079. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/opts/bitops.isle +0 -0
  1080. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/opts/generated_code.rs +0 -0
  1081. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/opts/icmp.isle +0 -0
  1082. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/opts/remat.isle +0 -0
  1083. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/opts/selects.isle +0 -0
  1084. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/opts/shifts.isle +0 -0
  1085. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/opts/spaceship.isle +0 -0
  1086. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/opts/vector.isle +0 -0
  1087. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/opts.rs +0 -0
  1088. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/prelude.isle +0 -0
  1089. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/prelude_lower.isle +0 -0
  1090. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/print_errors.rs +0 -0
  1091. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/remove_constant_phis.rs +0 -0
  1092. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/result.rs +0 -0
  1093. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/scoped_hash_map.rs +0 -0
  1094. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/settings.rs +0 -0
  1095. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/souper_harvest.rs +0 -0
  1096. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/timing.rs +0 -0
  1097. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/unionfind.rs +0 -0
  1098. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/unreachable_code.rs +0 -0
  1099. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/value_label.rs +0 -0
  1100. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/write.rs +0 -0
  1101. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.0 → cranelift-codegen-meta-0.105.3}/LICENSE +0 -0
  1102. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.0 → cranelift-codegen-meta-0.105.3}/README.md +0 -0
  1103. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.0 → cranelift-codegen-meta-0.105.3}/src/cdsl/formats.rs +0 -0
  1104. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.0 → cranelift-codegen-meta-0.105.3}/src/cdsl/instructions.rs +0 -0
  1105. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.0 → cranelift-codegen-meta-0.105.3}/src/cdsl/isa.rs +0 -0
  1106. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.0 → cranelift-codegen-meta-0.105.3}/src/cdsl/mod.rs +0 -0
  1107. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.0 → cranelift-codegen-meta-0.105.3}/src/cdsl/operands.rs +0 -0
  1108. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.0 → cranelift-codegen-meta-0.105.3}/src/cdsl/settings.rs +0 -0
  1109. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.0 → cranelift-codegen-meta-0.105.3}/src/cdsl/types.rs +0 -0
  1110. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.0 → cranelift-codegen-meta-0.105.3}/src/cdsl/typevar.rs +0 -0
  1111. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.0 → cranelift-codegen-meta-0.105.3}/src/constant_hash.rs +0 -0
  1112. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.0 → cranelift-codegen-meta-0.105.3}/src/error.rs +0 -0
  1113. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.0 → cranelift-codegen-meta-0.105.3}/src/gen_inst.rs +0 -0
  1114. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.0 → cranelift-codegen-meta-0.105.3}/src/gen_settings.rs +0 -0
  1115. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.0 → cranelift-codegen-meta-0.105.3}/src/gen_types.rs +0 -0
  1116. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.0 → cranelift-codegen-meta-0.105.3}/src/isa/arm64.rs +0 -0
  1117. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.0 → cranelift-codegen-meta-0.105.3}/src/isa/mod.rs +0 -0
  1118. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.0 → cranelift-codegen-meta-0.105.3}/src/isa/riscv64.rs +0 -0
  1119. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.0 → cranelift-codegen-meta-0.105.3}/src/isa/s390x.rs +0 -0
  1120. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.0 → cranelift-codegen-meta-0.105.3}/src/isa/x86.rs +0 -0
  1121. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.0 → cranelift-codegen-meta-0.105.3}/src/lib.rs +0 -0
  1122. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.0 → cranelift-codegen-meta-0.105.3}/src/shared/entities.rs +0 -0
  1123. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.0 → cranelift-codegen-meta-0.105.3}/src/shared/formats.rs +0 -0
  1124. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.0 → cranelift-codegen-meta-0.105.3}/src/shared/immediates.rs +0 -0
  1125. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.0 → cranelift-codegen-meta-0.105.3}/src/shared/instructions.rs +0 -0
  1126. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.0 → cranelift-codegen-meta-0.105.3}/src/shared/mod.rs +0 -0
  1127. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.0 → cranelift-codegen-meta-0.105.3}/src/shared/settings.rs +0 -0
  1128. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.0 → cranelift-codegen-meta-0.105.3}/src/shared/types.rs +0 -0
  1129. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.0 → cranelift-codegen-meta-0.105.3}/src/srcgen.rs +0 -0
  1130. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.0 → cranelift-codegen-meta-0.105.3}/src/unique_table.rs +0 -0
  1131. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.104.0 → cranelift-codegen-shared-0.105.3}/LICENSE +0 -0
  1132. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.104.0 → cranelift-codegen-shared-0.105.3}/README.md +0 -0
  1133. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.104.0 → cranelift-codegen-shared-0.105.3}/src/constant_hash.rs +0 -0
  1134. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.104.0 → cranelift-codegen-shared-0.105.3}/src/constants.rs +0 -0
  1135. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.104.0 → cranelift-codegen-shared-0.105.3}/src/lib.rs +0 -0
  1136. /data/ext/cargo-vendor/{cranelift-control-0.104.0 → cranelift-control-0.105.3}/LICENSE +0 -0
  1137. /data/ext/cargo-vendor/{cranelift-control-0.104.0 → cranelift-control-0.105.3}/README.md +0 -0
  1138. /data/ext/cargo-vendor/{cranelift-control-0.104.0 → cranelift-control-0.105.3}/src/chaos.rs +0 -0
  1139. /data/ext/cargo-vendor/{cranelift-control-0.104.0 → cranelift-control-0.105.3}/src/lib.rs +0 -0
  1140. /data/ext/cargo-vendor/{cranelift-control-0.104.0 → cranelift-control-0.105.3}/src/zero_sized.rs +0 -0
  1141. /data/ext/cargo-vendor/{cranelift-entity-0.104.0 → cranelift-entity-0.105.3}/LICENSE +0 -0
  1142. /data/ext/cargo-vendor/{cranelift-entity-0.104.0 → cranelift-entity-0.105.3}/README.md +0 -0
  1143. /data/ext/cargo-vendor/{cranelift-entity-0.104.0 → cranelift-entity-0.105.3}/src/boxed_slice.rs +0 -0
  1144. /data/ext/cargo-vendor/{cranelift-entity-0.104.0 → cranelift-entity-0.105.3}/src/iter.rs +0 -0
  1145. /data/ext/cargo-vendor/{cranelift-entity-0.104.0 → cranelift-entity-0.105.3}/src/keys.rs +0 -0
  1146. /data/ext/cargo-vendor/{cranelift-entity-0.104.0 → cranelift-entity-0.105.3}/src/lib.rs +0 -0
  1147. /data/ext/cargo-vendor/{cranelift-entity-0.104.0 → cranelift-entity-0.105.3}/src/list.rs +0 -0
  1148. /data/ext/cargo-vendor/{cranelift-entity-0.104.0 → cranelift-entity-0.105.3}/src/map.rs +0 -0
  1149. /data/ext/cargo-vendor/{cranelift-entity-0.104.0 → cranelift-entity-0.105.3}/src/packed_option.rs +0 -0
  1150. /data/ext/cargo-vendor/{cranelift-entity-0.104.0 → cranelift-entity-0.105.3}/src/primary.rs +0 -0
  1151. /data/ext/cargo-vendor/{cranelift-entity-0.104.0 → cranelift-entity-0.105.3}/src/set.rs +0 -0
  1152. /data/ext/cargo-vendor/{cranelift-entity-0.104.0 → cranelift-entity-0.105.3}/src/sparse.rs +0 -0
  1153. /data/ext/cargo-vendor/{cranelift-entity-0.104.0 → cranelift-entity-0.105.3}/src/unsigned.rs +0 -0
  1154. /data/ext/cargo-vendor/{cranelift-frontend-0.104.0 → cranelift-frontend-0.105.3}/LICENSE +0 -0
  1155. /data/ext/cargo-vendor/{cranelift-frontend-0.104.0 → cranelift-frontend-0.105.3}/README.md +0 -0
  1156. /data/ext/cargo-vendor/{cranelift-frontend-0.104.0 → cranelift-frontend-0.105.3}/src/frontend.rs +0 -0
  1157. /data/ext/cargo-vendor/{cranelift-frontend-0.104.0 → cranelift-frontend-0.105.3}/src/lib.rs +0 -0
  1158. /data/ext/cargo-vendor/{cranelift-frontend-0.104.0 → cranelift-frontend-0.105.3}/src/ssa.rs +0 -0
  1159. /data/ext/cargo-vendor/{cranelift-frontend-0.104.0 → cranelift-frontend-0.105.3}/src/switch.rs +0 -0
  1160. /data/ext/cargo-vendor/{cranelift-frontend-0.104.0 → cranelift-frontend-0.105.3}/src/variable.rs +0 -0
  1161. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/README.md +0 -0
  1162. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/build.rs +0 -0
  1163. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/isle_examples/fail/bad_converters.isle +0 -0
  1164. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/isle_examples/fail/bound_var_type_mismatch.isle +0 -0
  1165. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/isle_examples/fail/converter_extractor_constructor.isle +0 -0
  1166. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/isle_examples/fail/error1.isle +0 -0
  1167. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/isle_examples/fail/extra_parens.isle +0 -0
  1168. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/isle_examples/fail/impure_expression.isle +0 -0
  1169. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/isle_examples/fail/impure_rhs.isle +0 -0
  1170. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/isle_examples/fail/multi_internal_etor.isle +0 -0
  1171. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/isle_examples/fail/multi_prio.isle +0 -0
  1172. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/isle_examples/link/borrows.isle +0 -0
  1173. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/isle_examples/link/borrows_main.rs +0 -0
  1174. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/isle_examples/link/iflets.isle +0 -0
  1175. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/isle_examples/link/iflets_main.rs +0 -0
  1176. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/isle_examples/link/multi_constructor.isle +0 -0
  1177. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/isle_examples/link/multi_constructor_main.rs +0 -0
  1178. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/isle_examples/link/multi_extractor.isle +0 -0
  1179. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/isle_examples/link/multi_extractor_main.rs +0 -0
  1180. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/isle_examples/link/test.isle +0 -0
  1181. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/isle_examples/link/test_main.rs +0 -0
  1182. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/isle_examples/pass/bound_var.isle +0 -0
  1183. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/isle_examples/pass/construct_and_extract.isle +0 -0
  1184. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/isle_examples/pass/conversions.isle +0 -0
  1185. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/isle_examples/pass/conversions_extern.isle +0 -0
  1186. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/isle_examples/pass/let.isle +0 -0
  1187. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/isle_examples/pass/nodebug.isle +0 -0
  1188. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/isle_examples/pass/prio_trie_bug.isle +0 -0
  1189. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/isle_examples/pass/test2.isle +0 -0
  1190. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/isle_examples/pass/test3.isle +0 -0
  1191. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/isle_examples/pass/test4.isle +0 -0
  1192. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/isle_examples/pass/tutorial.isle +0 -0
  1193. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/isle_examples/run/iconst.isle +0 -0
  1194. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/isle_examples/run/iconst_main.rs +0 -0
  1195. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/isle_examples/run/let_shadowing.isle +0 -0
  1196. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/isle_examples/run/let_shadowing_main.rs +0 -0
  1197. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/src/ast.rs +0 -0
  1198. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/src/codegen.rs +0 -0
  1199. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/src/compile.rs +0 -0
  1200. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/src/error.rs +0 -0
  1201. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/src/lexer.rs +0 -0
  1202. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/src/lib.rs +0 -0
  1203. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/src/log.rs +0 -0
  1204. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/src/overlap.rs +0 -0
  1205. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/src/parser.rs +0 -0
  1206. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/src/sema.rs +0 -0
  1207. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/src/serialize.rs +0 -0
  1208. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/src/trie_again.rs +0 -0
  1209. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/tests/run_tests.rs +0 -0
  1210. /data/ext/cargo-vendor/{cranelift-native-0.104.0 → cranelift-native-0.105.3}/LICENSE +0 -0
  1211. /data/ext/cargo-vendor/{cranelift-native-0.104.0 → cranelift-native-0.105.3}/README.md +0 -0
  1212. /data/ext/cargo-vendor/{cranelift-native-0.104.0 → cranelift-native-0.105.3}/src/riscv.rs +0 -0
  1213. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/LICENSE +0 -0
  1214. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/README.md +0 -0
  1215. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/src/code_translator/bounds_checks.rs +0 -0
  1216. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/src/environ/mod.rs +0 -0
  1217. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/src/func_translator.rs +0 -0
  1218. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/src/heap.rs +0 -0
  1219. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/src/lib.rs +0 -0
  1220. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/src/module_translator.rs +0 -0
  1221. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/src/state.rs +0 -0
  1222. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/tests/wasm_testsuite.rs +0 -0
  1223. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/arith.wat +0 -0
  1224. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/br_table.wat +0 -0
  1225. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/call-simd.wat +0 -0
  1226. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/call.wat +0 -0
  1227. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/embenchen_fannkuch.wat +0 -0
  1228. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/embenchen_fasta.wat +0 -0
  1229. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/embenchen_ifs.wat +0 -0
  1230. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/embenchen_primes.wat +0 -0
  1231. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/fac-multi-value.wat +0 -0
  1232. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/fibonacci.wat +0 -0
  1233. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/globals.wat +0 -0
  1234. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/if-reachability-translation-0.wat +0 -0
  1235. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/if-reachability-translation-1.wat +0 -0
  1236. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/if-reachability-translation-2.wat +0 -0
  1237. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/if-reachability-translation-3.wat +0 -0
  1238. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/if-reachability-translation-4.wat +0 -0
  1239. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/if-reachability-translation-5.wat +0 -0
  1240. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/if-reachability-translation-6.wat +0 -0
  1241. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/if-unreachable-else-params-2.wat +0 -0
  1242. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/if-unreachable-else-params.wat +0 -0
  1243. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/issue-1306-name-section-with-u32-max-function-index.wasm +0 -0
  1244. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/memory.wat +0 -0
  1245. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/multi-0.wat +0 -0
  1246. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/multi-1.wat +0 -0
  1247. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/multi-10.wat +0 -0
  1248. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/multi-11.wat +0 -0
  1249. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/multi-12.wat +0 -0
  1250. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/multi-13.wat +0 -0
  1251. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/multi-14.wat +0 -0
  1252. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/multi-15.wat +0 -0
  1253. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/multi-16.wat +0 -0
  1254. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/multi-17.wat +0 -0
  1255. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/multi-2.wat +0 -0
  1256. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/multi-3.wat +0 -0
  1257. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/multi-4.wat +0 -0
  1258. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/multi-5.wat +0 -0
  1259. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/multi-6.wat +0 -0
  1260. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/multi-7.wat +0 -0
  1261. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/multi-8.wat +0 -0
  1262. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/multi-9.wat +0 -0
  1263. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/nullref.wat +0 -0
  1264. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/passive-data.wat +0 -0
  1265. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/pr2303.wat +0 -0
  1266. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/pr2559.wat +0 -0
  1267. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/ref-func-0.wat +0 -0
  1268. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/rust_fannkuch.wat +0 -0
  1269. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/select.wat +0 -0
  1270. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/simd-store.wat +0 -0
  1271. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/simd.wat +0 -0
  1272. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/table-copy.wat +0 -0
  1273. /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.18 → deterministic-wasi-ctx-0.1.19}/README.md +0 -0
  1274. /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.18 → deterministic-wasi-ctx-0.1.19}/src/clocks.rs +0 -0
  1275. /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.18 → deterministic-wasi-ctx-0.1.19}/src/lib.rs +0 -0
  1276. /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.18 → deterministic-wasi-ctx-0.1.19}/src/noop_scheduler.rs +0 -0
  1277. /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.18 → deterministic-wasi-ctx-0.1.19}/tests/clocks.rs +0 -0
  1278. /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.18 → deterministic-wasi-ctx-0.1.19}/tests/common/mod.rs +0 -0
  1279. /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.18 → deterministic-wasi-ctx-0.1.19}/tests/random.rs +0 -0
  1280. /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.18 → deterministic-wasi-ctx-0.1.19}/tests/scheduler.rs +0 -0
  1281. /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/LICENSE-APACHE +0 -0
  1282. /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/LICENSE-MIT +0 -0
  1283. /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/bin/release.sh +0 -0
  1284. /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/build/features.rs +0 -0
  1285. /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/build/main.rs +0 -0
  1286. /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/build/stable_api_config.rs +0 -0
  1287. /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/build/version.rs +0 -0
  1288. /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/readme.md +0 -0
  1289. /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/src/bindings.rs +0 -0
  1290. /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/src/hidden.rs +0 -0
  1291. /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/src/macros.rs +0 -0
  1292. /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/src/memory.rs +0 -0
  1293. /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/src/ruby_abi_version.rs +0 -0
  1294. /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/src/special_consts.rs +0 -0
  1295. /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/src/stable_api/compiled.c +0 -0
  1296. /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/src/stable_api/compiled.rs +0 -0
  1297. /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/src/stable_api/ruby_2_6.rs +0 -0
  1298. /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/src/stable_api/ruby_2_7.rs +0 -0
  1299. /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/src/stable_api/ruby_3_0.rs +0 -0
  1300. /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/src/stable_api/ruby_3_1.rs +0 -0
  1301. /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/src/stable_api/ruby_3_2.rs +0 -0
  1302. /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/src/stable_api/ruby_3_3.rs +0 -0
  1303. /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/src/stable_api.rs +0 -0
  1304. /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/src/tracking_allocator.rs +0 -0
  1305. /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/src/utils.rs +0 -0
  1306. /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/src/value_type.rs +0 -0
  1307. /data/ext/cargo-vendor/{rb-sys-build-0.9.86 → rb-sys-build-0.9.89}/LICENSE-APACHE +0 -0
  1308. /data/ext/cargo-vendor/{rb-sys-build-0.9.86 → rb-sys-build-0.9.89}/LICENSE-MIT +0 -0
  1309. /data/ext/cargo-vendor/{rb-sys-build-0.9.86 → rb-sys-build-0.9.89}/src/bindings/sanitizer.rs +0 -0
  1310. /data/ext/cargo-vendor/{rb-sys-build-0.9.86 → rb-sys-build-0.9.89}/src/bindings/stable_api.rs +0 -0
  1311. /data/ext/cargo-vendor/{rb-sys-build-0.9.86 → rb-sys-build-0.9.89}/src/bindings/wrapper.h +0 -0
  1312. /data/ext/cargo-vendor/{rb-sys-build-0.9.86 → rb-sys-build-0.9.89}/src/cc.rs +0 -0
  1313. /data/ext/cargo-vendor/{rb-sys-build-0.9.86 → rb-sys-build-0.9.89}/src/lib.rs +0 -0
  1314. /data/ext/cargo-vendor/{rb-sys-build-0.9.86 → rb-sys-build-0.9.89}/src/rb_config/flags.rs +0 -0
  1315. /data/ext/cargo-vendor/{rb-sys-build-0.9.86 → rb-sys-build-0.9.89}/src/rb_config/library.rs +0 -0
  1316. /data/ext/cargo-vendor/{rb-sys-build-0.9.86 → rb-sys-build-0.9.89}/src/rb_config/search_path.rs +0 -0
  1317. /data/ext/cargo-vendor/{rb-sys-build-0.9.86 → rb-sys-build-0.9.89}/src/utils.rs +0 -0
  1318. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/LICENSE +0 -0
  1319. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/docs/reactor-refactor.md +0 -0
  1320. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/blocking.rs +0 -0
  1321. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/doc/mod.rs +0 -0
  1322. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/canonicalize.rs +0 -0
  1323. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/copy.rs +0 -0
  1324. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/create_dir.rs +0 -0
  1325. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/create_dir_all.rs +0 -0
  1326. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/dir_builder.rs +0 -0
  1327. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/file/tests.rs +0 -0
  1328. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/file.rs +0 -0
  1329. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/hard_link.rs +0 -0
  1330. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/metadata.rs +0 -0
  1331. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/mocks.rs +0 -0
  1332. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/mod.rs +0 -0
  1333. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/open_options.rs +0 -0
  1334. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/read.rs +0 -0
  1335. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/read_dir.rs +0 -0
  1336. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/read_link.rs +0 -0
  1337. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/read_to_string.rs +0 -0
  1338. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/remove_dir.rs +0 -0
  1339. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/remove_dir_all.rs +0 -0
  1340. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/remove_file.rs +0 -0
  1341. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/rename.rs +0 -0
  1342. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/set_permissions.rs +0 -0
  1343. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/symlink.rs +0 -0
  1344. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/symlink_dir.rs +0 -0
  1345. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/symlink_file.rs +0 -0
  1346. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/symlink_metadata.rs +0 -0
  1347. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/try_exists.rs +0 -0
  1348. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/write.rs +0 -0
  1349. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/future/block_on.rs +0 -0
  1350. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/future/maybe_done.rs +0 -0
  1351. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/future/poll_fn.rs +0 -0
  1352. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/future/trace.rs +0 -0
  1353. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/future/try_join.rs +0 -0
  1354. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fuzz.rs +0 -0
  1355. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/async_buf_read.rs +0 -0
  1356. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/async_read.rs +0 -0
  1357. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/async_seek.rs +0 -0
  1358. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/async_write.rs +0 -0
  1359. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/blocking.rs +0 -0
  1360. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/read_buf.rs +0 -0
  1361. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/ready.rs +0 -0
  1362. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/seek.rs +0 -0
  1363. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/split.rs +0 -0
  1364. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/stderr.rs +0 -0
  1365. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/stdin.rs +0 -0
  1366. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/stdout.rs +0 -0
  1367. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/async_read_ext.rs +0 -0
  1368. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/async_seek_ext.rs +0 -0
  1369. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/async_write_ext.rs +0 -0
  1370. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/buf_stream.rs +0 -0
  1371. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/copy_bidirectional.rs +0 -0
  1372. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/copy_buf.rs +0 -0
  1373. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/fill_buf.rs +0 -0
  1374. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/lines.rs +0 -0
  1375. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/mem.rs +0 -0
  1376. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/read.rs +0 -0
  1377. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/read_buf.rs +0 -0
  1378. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/read_int.rs +0 -0
  1379. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/read_to_end.rs +0 -0
  1380. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/read_to_string.rs +0 -0
  1381. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/read_until.rs +0 -0
  1382. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/split.rs +0 -0
  1383. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/take.rs +0 -0
  1384. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/vec_with_initialized.rs +0 -0
  1385. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/write.rs +0 -0
  1386. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/write_all.rs +0 -0
  1387. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/write_all_buf.rs +0 -0
  1388. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/write_buf.rs +0 -0
  1389. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/write_int.rs +0 -0
  1390. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/write_vectored.rs +0 -0
  1391. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/loom/mocked.rs +0 -0
  1392. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/loom/mod.rs +0 -0
  1393. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/loom/std/atomic_u16.rs +0 -0
  1394. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/loom/std/atomic_u32.rs +0 -0
  1395. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/loom/std/atomic_u64_as_mutex.rs +0 -0
  1396. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/loom/std/atomic_u64_native.rs +0 -0
  1397. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/loom/std/atomic_u64_static_const_new.rs +0 -0
  1398. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/loom/std/atomic_u64_static_once_cell.rs +0 -0
  1399. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/loom/std/atomic_usize.rs +0 -0
  1400. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/loom/std/barrier.rs +0 -0
  1401. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/loom/std/mod.rs +0 -0
  1402. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/loom/std/mutex.rs +0 -0
  1403. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/loom/std/parking_lot.rs +0 -0
  1404. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/loom/std/unsafe_cell.rs +0 -0
  1405. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/macros/addr_of.rs +0 -0
  1406. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/macros/join.rs +0 -0
  1407. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/macros/loom.rs +0 -0
  1408. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/macros/mod.rs +0 -0
  1409. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/macros/pin.rs +0 -0
  1410. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/macros/ready.rs +0 -0
  1411. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/macros/select.rs +0 -0
  1412. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/macros/support.rs +0 -0
  1413. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/macros/thread_local.rs +0 -0
  1414. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/macros/trace.rs +0 -0
  1415. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/net/addr.rs +0 -0
  1416. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/net/lookup_host.rs +0 -0
  1417. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/net/tcp/mod.rs +0 -0
  1418. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/net/tcp/split.rs +0 -0
  1419. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/net/tcp/split_owned.rs +0 -0
  1420. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/net/unix/datagram/mod.rs +0 -0
  1421. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/net/unix/socketaddr.rs +0 -0
  1422. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/net/unix/split.rs +0 -0
  1423. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/net/unix/split_owned.rs +0 -0
  1424. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/net/unix/ucred.rs +0 -0
  1425. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/net/windows/mod.rs +0 -0
  1426. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/process/kill.rs +0 -0
  1427. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/process/unix/orphan.rs +0 -0
  1428. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/process/unix/reap.rs +0 -0
  1429. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/process/windows.rs +0 -0
  1430. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/blocking/mod.rs +0 -0
  1431. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/blocking/schedule.rs +0 -0
  1432. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/blocking/shutdown.rs +0 -0
  1433. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/blocking/task.rs +0 -0
  1434. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/config.rs +0 -0
  1435. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/context/blocking.rs +0 -0
  1436. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/context/current.rs +0 -0
  1437. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/context/runtime.rs +0 -0
  1438. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/context/runtime_mt.rs +0 -0
  1439. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/context/scoped.rs +0 -0
  1440. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/coop.rs +0 -0
  1441. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/driver.rs +0 -0
  1442. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/dump.rs +0 -0
  1443. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/id.rs +0 -0
  1444. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/io/driver/signal.rs +0 -0
  1445. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/io/metrics.rs +0 -0
  1446. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/io/mod.rs +0 -0
  1447. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/io/registration.rs +0 -0
  1448. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/io/registration_set.rs +0 -0
  1449. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/metrics/batch.rs +0 -0
  1450. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/metrics/histogram.rs +0 -0
  1451. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/metrics/io.rs +0 -0
  1452. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/metrics/mock.rs +0 -0
  1453. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/metrics/mod.rs +0 -0
  1454. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/metrics/runtime.rs +0 -0
  1455. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/metrics/scheduler.rs +0 -0
  1456. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/metrics/worker.rs +0 -0
  1457. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/mod.rs +0 -0
  1458. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/process.rs +0 -0
  1459. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/runtime.rs +0 -0
  1460. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/block_in_place.rs +0 -0
  1461. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/defer.rs +0 -0
  1462. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/inject/metrics.rs +0 -0
  1463. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/inject/pop.rs +0 -0
  1464. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/inject/rt_multi_thread.rs +0 -0
  1465. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/inject/shared.rs +0 -0
  1466. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/inject/synced.rs +0 -0
  1467. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/inject.rs +0 -0
  1468. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/lock.rs +0 -0
  1469. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/mod.rs +0 -0
  1470. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread/counters.rs +0 -0
  1471. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread/handle/metrics.rs +0 -0
  1472. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread/handle/taskdump.rs +0 -0
  1473. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread/handle.rs +0 -0
  1474. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread/idle.rs +0 -0
  1475. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread/mod.rs +0 -0
  1476. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread/overflow.rs +0 -0
  1477. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread/trace.rs +0 -0
  1478. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread/trace_mock.rs +0 -0
  1479. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread/worker/metrics.rs +0 -0
  1480. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread/worker/taskdump.rs +0 -0
  1481. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread/worker/taskdump_mock.rs +0 -0
  1482. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread_alt/counters.rs +0 -0
  1483. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread_alt/handle/metrics.rs +0 -0
  1484. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread_alt/handle/taskdump.rs +0 -0
  1485. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread_alt/handle.rs +0 -0
  1486. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread_alt/idle.rs +0 -0
  1487. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread_alt/mod.rs +0 -0
  1488. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread_alt/overflow.rs +0 -0
  1489. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread_alt/park.rs +0 -0
  1490. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread_alt/trace.rs +0 -0
  1491. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread_alt/trace_mock.rs +0 -0
  1492. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread_alt/worker/metrics.rs +0 -0
  1493. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread_alt/worker/taskdump.rs +0 -0
  1494. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread_alt/worker/taskdump_mock.rs +0 -0
  1495. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/signal/mod.rs +0 -0
  1496. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/task/abort.rs +0 -0
  1497. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/task/error.rs +0 -0
  1498. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/task/id.rs +0 -0
  1499. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/task/raw.rs +0 -0
  1500. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/task/trace/symbol.rs +0 -0
  1501. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/task/trace/tree.rs +0 -0
  1502. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/task/waker.rs +0 -0
  1503. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/tests/inject.rs +0 -0
  1504. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/tests/loom_blocking.rs +0 -0
  1505. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/tests/loom_current_thread/yield_now.rs +0 -0
  1506. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/tests/loom_current_thread.rs +0 -0
  1507. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/tests/loom_join_set.rs +0 -0
  1508. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/tests/loom_multi_thread/queue.rs +0 -0
  1509. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/tests/loom_multi_thread/shutdown.rs +0 -0
  1510. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/tests/loom_multi_thread/yield_now.rs +0 -0
  1511. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/tests/loom_multi_thread.rs +0 -0
  1512. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/tests/loom_multi_thread_alt/queue.rs +0 -0
  1513. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/tests/loom_multi_thread_alt/shutdown.rs +0 -0
  1514. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/tests/loom_multi_thread_alt/yield_now.rs +0 -0
  1515. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/tests/loom_multi_thread_alt.rs +0 -0
  1516. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/tests/loom_oneshot.rs +0 -0
  1517. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/tests/mod.rs +0 -0
  1518. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/tests/queue.rs +0 -0
  1519. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/tests/task.rs +0 -0
  1520. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/thread_id.rs +0 -0
  1521. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/time/handle.rs +0 -0
  1522. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/time/mod.rs +0 -0
  1523. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/time/tests/mod.rs +0 -0
  1524. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/time/wheel/mod.rs +0 -0
  1525. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/signal/reusable_box.rs +0 -0
  1526. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/signal/windows/stub.rs +0 -0
  1527. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/signal/windows/sys.rs +0 -0
  1528. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/barrier.rs +0 -0
  1529. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/mod.rs +0 -0
  1530. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/mpsc/block.rs +0 -0
  1531. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/mpsc/chan.rs +0 -0
  1532. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/mpsc/list.rs +0 -0
  1533. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/notify.rs +0 -0
  1534. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/once_cell.rs +0 -0
  1535. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/rwlock/owned_read_guard.rs +0 -0
  1536. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/rwlock/owned_write_guard.rs +0 -0
  1537. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/rwlock/owned_write_guard_mapped.rs +0 -0
  1538. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/rwlock/read_guard.rs +0 -0
  1539. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/rwlock/write_guard.rs +0 -0
  1540. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/rwlock/write_guard_mapped.rs +0 -0
  1541. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/task/atomic_waker.rs +0 -0
  1542. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/task/mod.rs +0 -0
  1543. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/tests/atomic_waker.rs +0 -0
  1544. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/tests/loom_atomic_waker.rs +0 -0
  1545. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/tests/loom_broadcast.rs +0 -0
  1546. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/tests/loom_list.rs +0 -0
  1547. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/tests/loom_mpsc.rs +0 -0
  1548. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/tests/loom_notify.rs +0 -0
  1549. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/tests/loom_oneshot.rs +0 -0
  1550. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/tests/loom_rwlock.rs +0 -0
  1551. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/tests/loom_semaphore_batch.rs +0 -0
  1552. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/tests/loom_watch.rs +0 -0
  1553. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/tests/mod.rs +0 -0
  1554. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/tests/notify.rs +0 -0
  1555. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/tests/semaphore_batch.rs +0 -0
  1556. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/task/blocking.rs +0 -0
  1557. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/task/builder.rs +0 -0
  1558. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/task/consume_budget.rs +0 -0
  1559. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/task/spawn.rs +0 -0
  1560. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/task/task_local.rs +0 -0
  1561. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/task/unconstrained.rs +0 -0
  1562. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/task/yield_now.rs +0 -0
  1563. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/time/clock.rs +0 -0
  1564. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/time/error.rs +0 -0
  1565. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/time/instant.rs +0 -0
  1566. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/time/interval.rs +0 -0
  1567. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/time/mod.rs +0 -0
  1568. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/time/sleep.rs +0 -0
  1569. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/time/timeout.rs +0 -0
  1570. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/util/atomic_cell.rs +0 -0
  1571. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/util/bit.rs +0 -0
  1572. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/util/cacheline.rs +0 -0
  1573. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/util/error.rs +0 -0
  1574. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/util/linked_list.rs +0 -0
  1575. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/util/markers.rs +0 -0
  1576. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/util/memchr.rs +0 -0
  1577. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/util/mod.rs +0 -0
  1578. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/util/once_cell.rs +0 -0
  1579. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/util/rand/rt.rs +0 -0
  1580. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/util/rand/rt_unstable.rs +0 -0
  1581. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/util/rc_cell.rs +0 -0
  1582. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/util/sync_wrapper.rs +0 -0
  1583. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/util/trace.rs +0 -0
  1584. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/util/try_lock.rs +0 -0
  1585. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/util/wake.rs +0 -0
  1586. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/util/wake_list.rs +0 -0
  1587. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/_require_full.rs +0 -0
  1588. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/async_send_sync.rs +0 -0
  1589. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/buffered.rs +0 -0
  1590. /data/ext/cargo-vendor/{tokio-1.35.1/tests/coop_budger.rs → tokio-1.36.0/tests/coop_budget.rs} +0 -0
  1591. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/dump.rs +0 -0
  1592. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/duplex_stream.rs +0 -0
  1593. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/fs.rs +0 -0
  1594. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/fs_canonicalize_dir.rs +0 -0
  1595. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/fs_copy.rs +0 -0
  1596. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/fs_dir.rs +0 -0
  1597. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/fs_file.rs +0 -0
  1598. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/fs_link.rs +0 -0
  1599. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/fs_open_options.rs +0 -0
  1600. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/fs_open_options_windows.rs +0 -0
  1601. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/fs_remove_dir_all.rs +0 -0
  1602. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/fs_remove_file.rs +0 -0
  1603. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/fs_rename.rs +0 -0
  1604. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/fs_symlink_dir_windows.rs +0 -0
  1605. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/fs_symlink_file_windows.rs +0 -0
  1606. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/fs_try_exists.rs +0 -0
  1607. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_async_read.rs +0 -0
  1608. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_buf_reader.rs +0 -0
  1609. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_buf_writer.rs +0 -0
  1610. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_chain.rs +0 -0
  1611. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_driver.rs +0 -0
  1612. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_driver_drop.rs +0 -0
  1613. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_fill_buf.rs +0 -0
  1614. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_lines.rs +0 -0
  1615. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_mem_stream.rs +0 -0
  1616. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_read.rs +0 -0
  1617. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_read_buf.rs +0 -0
  1618. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_read_exact.rs +0 -0
  1619. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_read_line.rs +0 -0
  1620. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_read_to_end.rs +0 -0
  1621. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_read_to_string.rs +0 -0
  1622. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_read_until.rs +0 -0
  1623. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_split.rs +0 -0
  1624. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_take.rs +0 -0
  1625. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_util_empty.rs +0 -0
  1626. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_write.rs +0 -0
  1627. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_write_all.rs +0 -0
  1628. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_write_all_buf.rs +0 -0
  1629. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_write_buf.rs +0 -0
  1630. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_write_int.rs +0 -0
  1631. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/macros_join.rs +0 -0
  1632. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/macros_pin.rs +0 -0
  1633. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/macros_rename_test.rs +0 -0
  1634. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/macros_select.rs +0 -0
  1635. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/net_bind_resource.rs +0 -0
  1636. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/net_lookup_host.rs +0 -0
  1637. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/no_rt.rs +0 -0
  1638. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/process_arg0.rs +0 -0
  1639. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/process_issue_42.rs +0 -0
  1640. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/process_kill_on_drop.rs +0 -0
  1641. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/process_raw_handle.rs +0 -0
  1642. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/process_smoke.rs +0 -0
  1643. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/rt_common.rs +0 -0
  1644. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/rt_handle_block_on.rs +0 -0
  1645. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/rt_metrics.rs +0 -0
  1646. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/rt_threaded.rs +0 -0
  1647. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/rt_threaded_alt.rs +0 -0
  1648. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/signal_ctrl_c.rs +0 -0
  1649. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/signal_drop_recv.rs +0 -0
  1650. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/signal_drop_rt.rs +0 -0
  1651. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/signal_drop_signal.rs +0 -0
  1652. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/signal_multi_rt.rs +0 -0
  1653. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/signal_no_rt.rs +0 -0
  1654. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/signal_notify_both.rs +0 -0
  1655. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/signal_twice.rs +0 -0
  1656. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/signal_usr1.rs +0 -0
  1657. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/support/io_vec.rs +0 -0
  1658. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/support/leaked_buffers.rs +0 -0
  1659. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/support/mpsc_stream.rs +0 -0
  1660. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/support/panic.rs +0 -0
  1661. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/support/signal.rs +0 -0
  1662. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/sync_barrier.rs +0 -0
  1663. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/sync_broadcast.rs +0 -0
  1664. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/sync_errors.rs +0 -0
  1665. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/sync_mpsc_weak.rs +0 -0
  1666. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/sync_mutex.rs +0 -0
  1667. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/sync_mutex_owned.rs +0 -0
  1668. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/sync_notify.rs +0 -0
  1669. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/sync_once_cell.rs +0 -0
  1670. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/sync_oneshot.rs +0 -0
  1671. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/sync_rwlock.rs +0 -0
  1672. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/sync_semaphore.rs +0 -0
  1673. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/sync_semaphore_owned.rs +0 -0
  1674. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/task_abort.rs +0 -0
  1675. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/task_blocking.rs +0 -0
  1676. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/task_builder.rs +0 -0
  1677. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/task_local_set.rs +0 -0
  1678. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/task_yield_now.rs +0 -0
  1679. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/tcp_accept.rs +0 -0
  1680. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/tcp_connect.rs +0 -0
  1681. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/tcp_echo.rs +0 -0
  1682. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/tcp_into_std.rs +0 -0
  1683. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/tcp_peek.rs +0 -0
  1684. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/tcp_shutdown.rs +0 -0
  1685. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/tcp_socket.rs +0 -0
  1686. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/tcp_split.rs +0 -0
  1687. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/tcp_stream.rs +0 -0
  1688. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/test_clock.rs +0 -0
  1689. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/time_interval.rs +0 -0
  1690. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/time_rt.rs +0 -0
  1691. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/time_sleep.rs +0 -0
  1692. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/time_timeout.rs +0 -0
  1693. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/udp.rs +0 -0
  1694. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/uds_cred.rs +0 -0
  1695. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/uds_datagram.rs +0 -0
  1696. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/uds_split.rs +0 -0
  1697. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/uds_stream.rs +0 -0
  1698. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/unwindsafe.rs +0 -0
  1699. /data/ext/cargo-vendor/{wasi-cap-std-sync-17.0.0 → wasi-common-18.0.3}/LICENSE +0 -0
  1700. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/README.md +0 -0
  1701. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/WASI/README.md +0 -0
  1702. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/WASI/docs/README.md +0 -0
  1703. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/WASI/phases/README.md +0 -0
  1704. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/WASI/phases/ephemeral/docs.md +0 -0
  1705. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/WASI/phases/ephemeral/witx/typenames.witx +0 -0
  1706. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/WASI/phases/ephemeral/witx/wasi_ephemeral_args.witx +0 -0
  1707. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/WASI/phases/ephemeral/witx/wasi_ephemeral_clock.witx +0 -0
  1708. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/WASI/phases/ephemeral/witx/wasi_ephemeral_environ.witx +0 -0
  1709. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/WASI/phases/ephemeral/witx/wasi_ephemeral_fd.witx +0 -0
  1710. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/WASI/phases/ephemeral/witx/wasi_ephemeral_path.witx +0 -0
  1711. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/WASI/phases/ephemeral/witx/wasi_ephemeral_poll.witx +0 -0
  1712. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/WASI/phases/ephemeral/witx/wasi_ephemeral_proc.witx +0 -0
  1713. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/WASI/phases/ephemeral/witx/wasi_ephemeral_random.witx +0 -0
  1714. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/WASI/phases/ephemeral/witx/wasi_ephemeral_sched.witx +0 -0
  1715. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/WASI/phases/ephemeral/witx/wasi_ephemeral_sock.witx +0 -0
  1716. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/WASI/phases/old/snapshot_0/docs.md +0 -0
  1717. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/WASI/phases/old/snapshot_0/witx/typenames.witx +0 -0
  1718. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/WASI/phases/old/snapshot_0/witx/wasi_unstable.witx +0 -0
  1719. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/WASI/phases/snapshot/docs.html +0 -0
  1720. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/WASI/phases/snapshot/docs.md +0 -0
  1721. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/WASI/phases/snapshot/witx/typenames.witx +0 -0
  1722. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/WASI/phases/snapshot/witx/wasi_snapshot_preview1.witx +0 -0
  1723. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/WASI/proposal-template/README.md +0 -0
  1724. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/WASI/proposals/README.md +0 -0
  1725. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/WASI/snapshots/README.md +0 -0
  1726. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/WASI/standard/README.md +0 -0
  1727. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/build.rs +0 -0
  1728. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/src/clocks.rs +0 -0
  1729. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/src/ctx.rs +0 -0
  1730. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/src/dir.rs +0 -0
  1731. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/src/error.rs +0 -0
  1732. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/src/file.rs +0 -0
  1733. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/src/pipe.rs +0 -0
  1734. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/src/random.rs +0 -0
  1735. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/src/sched/subscription.rs +0 -0
  1736. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/src/sched.rs +0 -0
  1737. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/src/snapshots/mod.rs +0 -0
  1738. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/src/snapshots/preview_0.rs +0 -0
  1739. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/src/snapshots/preview_1/error.rs +0 -0
  1740. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/src/snapshots/preview_1.rs +0 -0
  1741. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/src/string_array.rs +0 -0
  1742. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/src/table.rs +0 -0
  1743. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasm-encoder-0.201.0}/LICENSE +0 -0
  1744. /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/README.md +0 -0
  1745. /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/component/aliases.rs +0 -0
  1746. /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/component/builder.rs +0 -0
  1747. /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/component/canonicals.rs +0 -0
  1748. /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/component/components.rs +0 -0
  1749. /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/component/exports.rs +0 -0
  1750. /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/component/imports.rs +0 -0
  1751. /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/component/instances.rs +0 -0
  1752. /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/component/modules.rs +0 -0
  1753. /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/component/start.rs +0 -0
  1754. /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/component.rs +0 -0
  1755. /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/core/custom.rs +0 -0
  1756. /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/core/data.rs +0 -0
  1757. /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/core/dump.rs +0 -0
  1758. /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/core/elements.rs +0 -0
  1759. /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/core/exports.rs +0 -0
  1760. /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/core/functions.rs +0 -0
  1761. /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/core/globals.rs +0 -0
  1762. /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/core/imports.rs +0 -0
  1763. /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/core/linking.rs +0 -0
  1764. /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/core/memories.rs +0 -0
  1765. /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/core/producers.rs +0 -0
  1766. /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/core/start.rs +0 -0
  1767. /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/core/tables.rs +0 -0
  1768. /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/core/tags.rs +0 -0
  1769. /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/core.rs +0 -0
  1770. /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/lib.rs +0 -0
  1771. /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/raw.rs +0 -0
  1772. /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.41.2}/LICENSE +0 -0
  1773. /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.41.2}/src/component/names.rs +0 -0
  1774. /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/LICENSE +0 -0
  1775. /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/examples/simple.rs +0 -0
  1776. /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/parser.rs +0 -0
  1777. /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/component/aliases.rs +0 -0
  1778. /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/component/canonicals.rs +0 -0
  1779. /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/component/exports.rs +0 -0
  1780. /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/component/imports.rs +0 -0
  1781. /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/component/instances.rs +0 -0
  1782. /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/component/names.rs +0 -0
  1783. /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/component/start.rs +0 -0
  1784. /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/component/types.rs +0 -0
  1785. /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/component.rs +0 -0
  1786. /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/core/code.rs +0 -0
  1787. /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/core/coredumps.rs +0 -0
  1788. /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/core/custom.rs +0 -0
  1789. /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/core/data.rs +0 -0
  1790. /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/core/elements.rs +0 -0
  1791. /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/core/exports.rs +0 -0
  1792. /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/core/functions.rs +0 -0
  1793. /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/core/globals.rs +0 -0
  1794. /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/core/imports.rs +0 -0
  1795. /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/core/init.rs +0 -0
  1796. /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/core/memories.rs +0 -0
  1797. /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/core/producers.rs +0 -0
  1798. /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/core/tables.rs +0 -0
  1799. /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/core/tags.rs +0 -0
  1800. /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/core/types/matches.rs +0 -0
  1801. /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers.rs +0 -0
  1802. /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/tests/big-module.rs +0 -0
  1803. /data/ext/cargo-vendor/{wasmprinter-0.2.75 → wasmprinter-0.2.80}/LICENSE +0 -0
  1804. /data/ext/cargo-vendor/{wasmprinter-0.2.75 → wasmprinter-0.2.80}/README.md +0 -0
  1805. /data/ext/cargo-vendor/{wasmtime-17.0.0 → wasmtime-18.0.3}/LICENSE +0 -0
  1806. /data/ext/cargo-vendor/{wasmtime-17.0.0 → wasmtime-18.0.3}/README.md +0 -0
  1807. /data/ext/cargo-vendor/{wasmtime-17.0.0/src → wasmtime-18.0.3/src/runtime}/component/func/options.rs +0 -0
  1808. /data/ext/cargo-vendor/{wasmtime-17.0.0/src → wasmtime-18.0.3/src/runtime}/component/func/typed.rs +0 -0
  1809. /data/ext/cargo-vendor/{wasmtime-17.0.0/src → wasmtime-18.0.3/src/runtime}/component/matching.rs +0 -0
  1810. /data/ext/cargo-vendor/{wasmtime-17.0.0/src → wasmtime-18.0.3/src/runtime}/component/mod.rs +0 -0
  1811. /data/ext/cargo-vendor/{wasmtime-17.0.0/src → wasmtime-18.0.3/src/runtime}/component/resources.rs +0 -0
  1812. /data/ext/cargo-vendor/{wasmtime-17.0.0/src → wasmtime-18.0.3/src/runtime}/component/storage.rs +0 -0
  1813. /data/ext/cargo-vendor/{wasmtime-17.0.0/src → wasmtime-18.0.3/src/runtime}/component/store.rs +0 -0
  1814. /data/ext/cargo-vendor/{wasmtime-17.0.0/src → wasmtime-18.0.3/src/runtime}/coredump.rs +0 -0
  1815. /data/ext/cargo-vendor/{wasmtime-17.0.0/src → wasmtime-18.0.3/src/runtime}/externals/global.rs +0 -0
  1816. /data/ext/cargo-vendor/{wasmtime-17.0.0/src → wasmtime-18.0.3/src/runtime}/externals/table.rs +0 -0
  1817. /data/ext/cargo-vendor/{wasmtime-17.0.0/src → wasmtime-18.0.3/src/runtime}/externals.rs +0 -0
  1818. /data/ext/cargo-vendor/{wasmtime-17.0.0/src → wasmtime-18.0.3/src/runtime}/limits.rs +0 -0
  1819. /data/ext/cargo-vendor/{wasmtime-17.0.0/src → wasmtime-18.0.3/src/runtime}/ref.rs +0 -0
  1820. /data/ext/cargo-vendor/{wasmtime-17.0.0/src → wasmtime-18.0.3/src/runtime}/resources.rs +0 -0
  1821. /data/ext/cargo-vendor/{wasmtime-17.0.0/src → wasmtime-18.0.3/src/runtime}/signatures.rs +0 -0
  1822. /data/ext/cargo-vendor/{wasmtime-17.0.0/src → wasmtime-18.0.3/src/runtime}/stack.rs +0 -0
  1823. /data/ext/cargo-vendor/{wasmtime-17.0.0/src → wasmtime-18.0.3/src/runtime}/store/context.rs +0 -0
  1824. /data/ext/cargo-vendor/{wasmtime-17.0.0/src → wasmtime-18.0.3/src/runtime}/store/data.rs +0 -0
  1825. /data/ext/cargo-vendor/{wasmtime-17.0.0/src → wasmtime-18.0.3/src/runtime}/store/func_refs.rs +0 -0
  1826. /data/ext/cargo-vendor/{wasmtime-17.0.0/src → wasmtime-18.0.3/src/runtime}/trampoline/global.rs +0 -0
  1827. /data/ext/cargo-vendor/{wasmtime-17.0.0/src → wasmtime-18.0.3/src/runtime}/unix.rs +0 -0
  1828. /data/ext/cargo-vendor/{wasmtime-17.0.0/src → wasmtime-18.0.3/src/runtime}/v128.rs +0 -0
  1829. /data/ext/cargo-vendor/{wasmtime-17.0.0/src → wasmtime-18.0.3/src/runtime}/values.rs +0 -0
  1830. /data/ext/cargo-vendor/{wasmtime-17.0.0/src → wasmtime-18.0.3/src/runtime}/windows.rs +0 -0
  1831. /data/ext/cargo-vendor/{wasmtime-asm-macros-17.0.0 → wasmtime-asm-macros-18.0.3}/src/lib.rs +0 -0
  1832. /data/ext/cargo-vendor/{wasmtime-cache-17.0.0 → wasmtime-cache-18.0.3}/LICENSE +0 -0
  1833. /data/ext/cargo-vendor/{wasmtime-cache-17.0.0 → wasmtime-cache-18.0.3}/build.rs +0 -0
  1834. /data/ext/cargo-vendor/{wasmtime-cache-17.0.0 → wasmtime-cache-18.0.3}/src/config/tests.rs +0 -0
  1835. /data/ext/cargo-vendor/{wasmtime-cache-17.0.0 → wasmtime-cache-18.0.3}/src/config.rs +0 -0
  1836. /data/ext/cargo-vendor/{wasmtime-cache-17.0.0 → wasmtime-cache-18.0.3}/src/lib.rs +0 -0
  1837. /data/ext/cargo-vendor/{wasmtime-cache-17.0.0 → wasmtime-cache-18.0.3}/src/tests.rs +0 -0
  1838. /data/ext/cargo-vendor/{wasmtime-cache-17.0.0 → wasmtime-cache-18.0.3}/src/worker/tests/system_time_stub.rs +0 -0
  1839. /data/ext/cargo-vendor/{wasmtime-cache-17.0.0 → wasmtime-cache-18.0.3}/src/worker/tests.rs +0 -0
  1840. /data/ext/cargo-vendor/{wasmtime-cache-17.0.0 → wasmtime-cache-18.0.3}/src/worker.rs +0 -0
  1841. /data/ext/cargo-vendor/{wasmtime-cache-17.0.0 → wasmtime-cache-18.0.3}/tests/cache_write_default_config.rs +0 -0
  1842. /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.0 → wasmtime-component-macro-18.0.3}/src/component.rs +0 -0
  1843. /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.0 → wasmtime-component-macro-18.0.3}/src/lib.rs +0 -0
  1844. /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.0 → wasmtime-component-macro-18.0.3}/tests/codegen/char.wit +0 -0
  1845. /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.0 → wasmtime-component-macro-18.0.3}/tests/codegen/conventions.wit +0 -0
  1846. /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.0 → wasmtime-component-macro-18.0.3}/tests/codegen/direct-import.wit +0 -0
  1847. /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.0 → wasmtime-component-macro-18.0.3}/tests/codegen/empty.wit +0 -0
  1848. /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.0 → wasmtime-component-macro-18.0.3}/tests/codegen/flags.wit +0 -0
  1849. /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.0 → wasmtime-component-macro-18.0.3}/tests/codegen/floats.wit +0 -0
  1850. /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.0 → wasmtime-component-macro-18.0.3}/tests/codegen/function-new.wit +0 -0
  1851. /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.0 → wasmtime-component-macro-18.0.3}/tests/codegen/integers.wit +0 -0
  1852. /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.0 → wasmtime-component-macro-18.0.3}/tests/codegen/lists.wit +0 -0
  1853. /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.0 → wasmtime-component-macro-18.0.3}/tests/codegen/many-arguments.wit +0 -0
  1854. /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.0 → wasmtime-component-macro-18.0.3}/tests/codegen/multi-return.wit +0 -0
  1855. /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.0 → wasmtime-component-macro-18.0.3}/tests/codegen/multiversion/deps/v1/root.wit +0 -0
  1856. /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.0 → wasmtime-component-macro-18.0.3}/tests/codegen/multiversion/deps/v2/root.wit +0 -0
  1857. /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.0 → wasmtime-component-macro-18.0.3}/tests/codegen/multiversion/root.wit +0 -0
  1858. /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.0 → wasmtime-component-macro-18.0.3}/tests/codegen/records.wit +0 -0
  1859. /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.0 → wasmtime-component-macro-18.0.3}/tests/codegen/rename.wit +0 -0
  1860. /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.0 → wasmtime-component-macro-18.0.3}/tests/codegen/resources-export.wit +0 -0
  1861. /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.0 → wasmtime-component-macro-18.0.3}/tests/codegen/resources-import.wit +0 -0
  1862. /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.0 → wasmtime-component-macro-18.0.3}/tests/codegen/share-types.wit +0 -0
  1863. /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.0 → wasmtime-component-macro-18.0.3}/tests/codegen/simple-functions.wit +0 -0
  1864. /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.0 → wasmtime-component-macro-18.0.3}/tests/codegen/simple-lists.wit +0 -0
  1865. /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.0 → wasmtime-component-macro-18.0.3}/tests/codegen/simple-wasi.wit +0 -0
  1866. /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.0 → wasmtime-component-macro-18.0.3}/tests/codegen/small-anonymous.wit +0 -0
  1867. /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.0 → wasmtime-component-macro-18.0.3}/tests/codegen/smoke-default.wit +0 -0
  1868. /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.0 → wasmtime-component-macro-18.0.3}/tests/codegen/smoke-export.wit +0 -0
  1869. /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.0 → wasmtime-component-macro-18.0.3}/tests/codegen/smoke.wit +0 -0
  1870. /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.0 → wasmtime-component-macro-18.0.3}/tests/codegen/strings.wit +0 -0
  1871. /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.0 → wasmtime-component-macro-18.0.3}/tests/codegen/use-paths.wit +0 -0
  1872. /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.0 → wasmtime-component-macro-18.0.3}/tests/codegen/variants.wit +0 -0
  1873. /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.0 → wasmtime-component-macro-18.0.3}/tests/codegen/worlds-with-types.wit +0 -0
  1874. /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.0 → wasmtime-component-macro-18.0.3}/tests/codegen.rs +0 -0
  1875. /data/ext/cargo-vendor/{wasmtime-component-util-17.0.0 → wasmtime-component-util-18.0.3}/src/lib.rs +0 -0
  1876. /data/ext/cargo-vendor/{wasmtime-cranelift-17.0.0 → wasmtime-cranelift-18.0.3}/LICENSE +0 -0
  1877. /data/ext/cargo-vendor/{wasmtime-cranelift-17.0.0 → wasmtime-cranelift-18.0.3}/SECURITY.md +0 -0
  1878. /data/ext/cargo-vendor/{wasmtime-cranelift-17.0.0 → wasmtime-cranelift-18.0.3}/src/debug/gc.rs +0 -0
  1879. /data/ext/cargo-vendor/{wasmtime-cranelift-17.0.0 → wasmtime-cranelift-18.0.3}/src/debug/transform/address_transform.rs +0 -0
  1880. /data/ext/cargo-vendor/{wasmtime-cranelift-17.0.0 → wasmtime-cranelift-18.0.3}/src/debug/transform/attr.rs +0 -0
  1881. /data/ext/cargo-vendor/{wasmtime-cranelift-17.0.0 → wasmtime-cranelift-18.0.3}/src/debug/transform/expression.rs +0 -0
  1882. /data/ext/cargo-vendor/{wasmtime-cranelift-17.0.0 → wasmtime-cranelift-18.0.3}/src/debug/transform/line_program.rs +0 -0
  1883. /data/ext/cargo-vendor/{wasmtime-cranelift-17.0.0 → wasmtime-cranelift-18.0.3}/src/debug/transform/mod.rs +0 -0
  1884. /data/ext/cargo-vendor/{wasmtime-cranelift-17.0.0 → wasmtime-cranelift-18.0.3}/src/debug/transform/range_info_builder.rs +0 -0
  1885. /data/ext/cargo-vendor/{wasmtime-cranelift-17.0.0 → wasmtime-cranelift-18.0.3}/src/debug/transform/refs.rs +0 -0
  1886. /data/ext/cargo-vendor/{wasmtime-cranelift-17.0.0 → wasmtime-cranelift-18.0.3}/src/debug/transform/unit.rs +0 -0
  1887. /data/ext/cargo-vendor/{wasmtime-cranelift-17.0.0 → wasmtime-cranelift-18.0.3}/src/debug/transform/utils.rs +0 -0
  1888. /data/ext/cargo-vendor/{wasmtime-cranelift-17.0.0 → wasmtime-cranelift-18.0.3}/src/debug/write_debuginfo.rs +0 -0
  1889. /data/ext/cargo-vendor/{wasmtime-cranelift-17.0.0 → wasmtime-cranelift-18.0.3}/src/debug.rs +0 -0
  1890. /data/ext/cargo-vendor/{wasmtime-cranelift-shared-17.0.0 → wasmtime-cranelift-shared-18.0.3}/src/compiled_function.rs +0 -0
  1891. /data/ext/cargo-vendor/{wasmtime-cranelift-shared-17.0.0 → wasmtime-cranelift-shared-18.0.3}/src/lib.rs +0 -0
  1892. /data/ext/cargo-vendor/{wasmtime-cranelift-shared-17.0.0 → wasmtime-cranelift-shared-18.0.3}/src/obj.rs +0 -0
  1893. /data/ext/cargo-vendor/{wasmtime-environ-17.0.0 → wasmtime-environ-18.0.3}/LICENSE +0 -0
  1894. /data/ext/cargo-vendor/{wasmtime-environ-17.0.0 → wasmtime-environ-18.0.3}/examples/factc.rs +0 -0
  1895. /data/ext/cargo-vendor/{wasmtime-environ-17.0.0 → wasmtime-environ-18.0.3}/src/address_map.rs +0 -0
  1896. /data/ext/cargo-vendor/{wasmtime-environ-17.0.0 → wasmtime-environ-18.0.3}/src/builtin.rs +0 -0
  1897. /data/ext/cargo-vendor/{wasmtime-environ-17.0.0 → wasmtime-environ-18.0.3}/src/compilation.rs +0 -0
  1898. /data/ext/cargo-vendor/{wasmtime-environ-17.0.0 → wasmtime-environ-18.0.3}/src/component/compiler.rs +0 -0
  1899. /data/ext/cargo-vendor/{wasmtime-environ-17.0.0 → wasmtime-environ-18.0.3}/src/component/translate/adapt.rs +0 -0
  1900. /data/ext/cargo-vendor/{wasmtime-environ-17.0.0 → wasmtime-environ-18.0.3}/src/component/types/resources.rs +0 -0
  1901. /data/ext/cargo-vendor/{wasmtime-environ-17.0.0 → wasmtime-environ-18.0.3}/src/component/vmcomponent_offsets.rs +0 -0
  1902. /data/ext/cargo-vendor/{wasmtime-jit-17.0.0 → wasmtime-environ-18.0.3}/src/demangling.rs +0 -0
  1903. /data/ext/cargo-vendor/{wasmtime-environ-17.0.0 → wasmtime-environ-18.0.3}/src/fact/core_types.rs +0 -0
  1904. /data/ext/cargo-vendor/{wasmtime-environ-17.0.0 → wasmtime-environ-18.0.3}/src/fact/signature.rs +0 -0
  1905. /data/ext/cargo-vendor/{wasmtime-environ-17.0.0 → wasmtime-environ-18.0.3}/src/fact/trampoline.rs +0 -0
  1906. /data/ext/cargo-vendor/{wasmtime-environ-17.0.0 → wasmtime-environ-18.0.3}/src/fact/transcode.rs +0 -0
  1907. /data/ext/cargo-vendor/{wasmtime-environ-17.0.0 → wasmtime-environ-18.0.3}/src/fact/traps.rs +0 -0
  1908. /data/ext/cargo-vendor/{wasmtime-environ-17.0.0 → wasmtime-environ-18.0.3}/src/fact.rs +0 -0
  1909. /data/ext/cargo-vendor/{wasmtime-environ-17.0.0 → wasmtime-environ-18.0.3}/src/obj.rs +0 -0
  1910. /data/ext/cargo-vendor/{wasmtime-environ-17.0.0 → wasmtime-environ-18.0.3}/src/ref_bits.rs +0 -0
  1911. /data/ext/cargo-vendor/{wasmtime-environ-17.0.0 → wasmtime-environ-18.0.3}/src/scopevec.rs +0 -0
  1912. /data/ext/cargo-vendor/{wasmtime-environ-17.0.0 → wasmtime-environ-18.0.3}/src/stack_map.rs +0 -0
  1913. /data/ext/cargo-vendor/{wasmtime-environ-17.0.0 → wasmtime-environ-18.0.3}/src/trap_encoding.rs +0 -0
  1914. /data/ext/cargo-vendor/{wasmtime-fiber-17.0.0 → wasmtime-fiber-18.0.3}/LICENSE +0 -0
  1915. /data/ext/cargo-vendor/{wasmtime-fiber-17.0.0 → wasmtime-fiber-18.0.3}/build.rs +0 -0
  1916. /data/ext/cargo-vendor/{wasmtime-fiber-17.0.0 → wasmtime-fiber-18.0.3}/src/lib.rs +0 -0
  1917. /data/ext/cargo-vendor/{wasmtime-fiber-17.0.0 → wasmtime-fiber-18.0.3}/src/unix/aarch64.rs +0 -0
  1918. /data/ext/cargo-vendor/{wasmtime-fiber-17.0.0 → wasmtime-fiber-18.0.3}/src/unix/arm.rs +0 -0
  1919. /data/ext/cargo-vendor/{wasmtime-fiber-17.0.0 → wasmtime-fiber-18.0.3}/src/unix/riscv64.rs +0 -0
  1920. /data/ext/cargo-vendor/{wasmtime-fiber-17.0.0 → wasmtime-fiber-18.0.3}/src/unix/s390x.S +0 -0
  1921. /data/ext/cargo-vendor/{wasmtime-fiber-17.0.0 → wasmtime-fiber-18.0.3}/src/unix/x86.rs +0 -0
  1922. /data/ext/cargo-vendor/{wasmtime-fiber-17.0.0 → wasmtime-fiber-18.0.3}/src/unix/x86_64.rs +0 -0
  1923. /data/ext/cargo-vendor/{wasmtime-fiber-17.0.0 → wasmtime-fiber-18.0.3}/src/unix.rs +0 -0
  1924. /data/ext/cargo-vendor/{wasmtime-fiber-17.0.0 → wasmtime-fiber-18.0.3}/src/windows.c +0 -0
  1925. /data/ext/cargo-vendor/{wasmtime-fiber-17.0.0 → wasmtime-fiber-18.0.3}/src/windows.rs +0 -0
  1926. /data/ext/cargo-vendor/{wasmtime-jit-debug-17.0.0 → wasmtime-jit-debug-18.0.3}/README.md +0 -0
  1927. /data/ext/cargo-vendor/{wasmtime-jit-debug-17.0.0 → wasmtime-jit-debug-18.0.3}/src/gdb_jit_int.rs +0 -0
  1928. /data/ext/cargo-vendor/{wasmtime-jit-debug-17.0.0 → wasmtime-jit-debug-18.0.3}/src/lib.rs +0 -0
  1929. /data/ext/cargo-vendor/{wasmtime-jit-debug-17.0.0 → wasmtime-jit-debug-18.0.3}/src/perf_jitdump.rs +0 -0
  1930. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-17.0.0 → wasmtime-jit-icache-coherence-18.0.3}/src/lib.rs +0 -0
  1931. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-17.0.0 → wasmtime-jit-icache-coherence-18.0.3}/src/libc.rs +0 -0
  1932. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-17.0.0 → wasmtime-jit-icache-coherence-18.0.3}/src/miri.rs +0 -0
  1933. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-17.0.0 → wasmtime-jit-icache-coherence-18.0.3}/src/win.rs +0 -0
  1934. /data/ext/cargo-vendor/{wasmtime-jit-17.0.0 → wasmtime-runtime-18.0.3}/LICENSE +0 -0
  1935. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/build.rs +0 -0
  1936. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/proptest-regressions/instance/allocator/pooling/memory_pool.txt +0 -0
  1937. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/arch/aarch64.rs +0 -0
  1938. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/arch/mod.rs +0 -0
  1939. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/arch/riscv64.rs +0 -0
  1940. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/arch/s390x.S +0 -0
  1941. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/arch/s390x.rs +0 -0
  1942. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/arch/x86_64.rs +0 -0
  1943. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/component/libcalls.rs +0 -0
  1944. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/component/resources.rs +0 -0
  1945. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/cow.rs +0 -0
  1946. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/debug_builtins.rs +0 -0
  1947. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/export.rs +0 -0
  1948. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/externref.rs +0 -0
  1949. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/helpers.c +0 -0
  1950. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/imports.rs +0 -0
  1951. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/instance/allocator/on_demand.rs +0 -0
  1952. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/instance/allocator/pooling/index_allocator.rs +0 -0
  1953. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/instance/allocator/pooling/stack_pool.rs +0 -0
  1954. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/instance/allocator/pooling/table_pool.rs +0 -0
  1955. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/libcalls.rs +0 -0
  1956. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/memory.rs +0 -0
  1957. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/mmap.rs +0 -0
  1958. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/mmap_vec.rs +0 -0
  1959. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/module_id.rs +0 -0
  1960. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/mpk/disabled.rs +0 -0
  1961. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/mpk/mod.rs +0 -0
  1962. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/mpk/sys.rs +0 -0
  1963. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/parking_spot.rs +0 -0
  1964. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/send_sync_ptr.rs +0 -0
  1965. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/store_box.rs +0 -0
  1966. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/sys/miri/mmap.rs +0 -0
  1967. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/sys/miri/mod.rs +0 -0
  1968. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/sys/miri/traphandlers.rs +0 -0
  1969. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/sys/miri/unwind.rs +0 -0
  1970. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/sys/miri/vm.rs +0 -0
  1971. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/sys/mod.rs +0 -0
  1972. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/sys/unix/machports.rs +0 -0
  1973. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/sys/unix/macos_traphandlers.rs +0 -0
  1974. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/sys/unix/mmap.rs +0 -0
  1975. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/sys/unix/mod.rs +0 -0
  1976. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/sys/unix/unwind.rs +0 -0
  1977. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/sys/unix/vm.rs +0 -0
  1978. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/sys/windows/mmap.rs +0 -0
  1979. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/sys/windows/mod.rs +0 -0
  1980. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/sys/windows/traphandlers.rs +0 -0
  1981. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/sys/windows/unwind.rs +0 -0
  1982. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/sys/windows/vm.rs +0 -0
  1983. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/table.rs +0 -0
  1984. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/traphandlers/backtrace.rs +0 -0
  1985. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/traphandlers/coredump.rs +0 -0
  1986. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/traphandlers.rs +0 -0
  1987. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/vmcontext/vm_host_func_context.rs +0 -0
  1988. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-types-18.0.3}/LICENSE +0 -0
  1989. /data/ext/cargo-vendor/{wasmtime-types-17.0.0 → wasmtime-types-18.0.3}/src/error.rs +0 -0
  1990. /data/ext/cargo-vendor/{wasmtime-versioned-export-macros-17.0.0 → wasmtime-versioned-export-macros-18.0.3}/src/lib.rs +0 -0
  1991. /data/ext/cargo-vendor/{wasmtime-types-17.0.0 → wasmtime-wasi-18.0.3}/LICENSE +0 -0
  1992. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/README.md +0 -0
  1993. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/src/preview2/command.rs +0 -0
  1994. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/src/preview2/host/env.rs +0 -0
  1995. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/src/preview2/host/exit.rs +0 -0
  1996. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/src/preview2/host/filesystem/sync.rs +0 -0
  1997. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/src/preview2/host/mod.rs +0 -0
  1998. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/src/preview2/mod.rs +0 -0
  1999. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/src/preview2/network.rs +0 -0
  2000. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/src/preview2/stdio/worker_thread_stdin.rs +0 -0
  2001. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/src/preview2/stream.rs +0 -0
  2002. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/src/preview2/tcp.rs +0 -0
  2003. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/src/preview2/udp.rs +0 -0
  2004. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/tests/all/async_.rs +0 -0
  2005. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/tests/all/preview1.rs +0 -0
  2006. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/tests/all/sync.rs +0 -0
  2007. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/tests/process_stdin.rs +0 -0
  2008. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/wit/command-extended.wit +0 -0
  2009. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/wit/deps/cli/command.wit +0 -0
  2010. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/wit/deps/cli/environment.wit +0 -0
  2011. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/wit/deps/cli/exit.wit +0 -0
  2012. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/wit/deps/cli/imports.wit +0 -0
  2013. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/wit/deps/cli/run.wit +0 -0
  2014. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/wit/deps/cli/stdio.wit +0 -0
  2015. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/wit/deps/cli/terminal.wit +0 -0
  2016. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/wit/deps/clocks/monotonic-clock.wit +0 -0
  2017. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/wit/deps/clocks/wall-clock.wit +0 -0
  2018. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/wit/deps/clocks/world.wit +0 -0
  2019. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/wit/deps/filesystem/preopens.wit +0 -0
  2020. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/wit/deps/filesystem/types.wit +0 -0
  2021. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/wit/deps/filesystem/world.wit +0 -0
  2022. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/wit/deps/http/handler.wit +0 -0
  2023. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/wit/deps/http/proxy.wit +0 -0
  2024. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/wit/deps/http/types.wit +0 -0
  2025. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/wit/deps/io/error.wit +0 -0
  2026. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/wit/deps/io/world.wit +0 -0
  2027. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/wit/deps/random/insecure-seed.wit +0 -0
  2028. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/wit/deps/random/insecure.wit +0 -0
  2029. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/wit/deps/random/random.wit +0 -0
  2030. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/wit/deps/random/world.wit +0 -0
  2031. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/wit/deps/sockets/instance-network.wit +0 -0
  2032. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/wit/deps/sockets/ip-name-lookup.wit +0 -0
  2033. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/wit/deps/sockets/network.wit +0 -0
  2034. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/wit/deps/sockets/tcp-create-socket.wit +0 -0
  2035. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/wit/deps/sockets/udp-create-socket.wit +0 -0
  2036. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/wit/deps/sockets/world.wit +0 -0
  2037. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/wit/test.wit +0 -0
  2038. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/witx/preview0/typenames.witx +0 -0
  2039. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/witx/preview0/wasi_unstable.witx +0 -0
  2040. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/witx/preview1/typenames.witx +0 -0
  2041. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/witx/preview1/wasi_snapshot_preview1.witx +0 -0
  2042. /data/ext/cargo-vendor/{wasmtime-winch-17.0.0 → wasmtime-winch-18.0.3}/LICENSE +0 -0
  2043. /data/ext/cargo-vendor/{wasmtime-winch-17.0.0 → wasmtime-winch-18.0.3}/src/lib.rs +0 -0
  2044. /data/ext/cargo-vendor/{wasmtime-wit-bindgen-17.0.0 → wasmtime-wit-bindgen-18.0.3}/src/rust.rs +0 -0
  2045. /data/ext/cargo-vendor/{wasmtime-wit-bindgen-17.0.0 → wasmtime-wit-bindgen-18.0.3}/src/source.rs +0 -0
  2046. /data/ext/cargo-vendor/{wasmtime-wit-bindgen-17.0.0 → wasmtime-wit-bindgen-18.0.3}/src/types.rs +0 -0
  2047. /data/ext/cargo-vendor/{wasmtime-wmemcheck-17.0.0 → wasmtime-wmemcheck-18.0.3}/src/lib.rs +0 -0
  2048. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wast-201.0.0}/LICENSE +0 -0
  2049. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/README.md +0 -0
  2050. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/component/alias.rs +0 -0
  2051. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/component/binary.rs +0 -0
  2052. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/component/custom.rs +0 -0
  2053. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/component/expand.rs +0 -0
  2054. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/component/export.rs +0 -0
  2055. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/component/func.rs +0 -0
  2056. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/component/import.rs +0 -0
  2057. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/component/instance.rs +0 -0
  2058. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/component/item_ref.rs +0 -0
  2059. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/component/module.rs +0 -0
  2060. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/component/resolve.rs +0 -0
  2061. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/component/types.rs +0 -0
  2062. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/component/wast.rs +0 -0
  2063. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/component.rs +0 -0
  2064. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/core/export.rs +0 -0
  2065. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/core/func.rs +0 -0
  2066. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/core/global.rs +0 -0
  2067. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/core/import.rs +0 -0
  2068. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/core/resolve/mod.rs +0 -0
  2069. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/core/resolve/types.rs +0 -0
  2070. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/core/tag.rs +0 -0
  2071. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/core/wast.rs +0 -0
  2072. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/core.rs +0 -0
  2073. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/encode.rs +0 -0
  2074. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/error.rs +0 -0
  2075. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/gensym.rs +0 -0
  2076. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/wast.rs +0 -0
  2077. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/annotations.rs +0 -0
  2078. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/comments.rs +0 -0
  2079. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/bad-core-func-alias.wat +0 -0
  2080. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/bad-core-func-alias.wat.err +0 -0
  2081. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/bad-func-alias.wat +0 -0
  2082. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/bad-func-alias.wat.err +0 -0
  2083. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/bad-index.wat +0 -0
  2084. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/bad-index.wat.err +0 -0
  2085. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/bad-name.wat +0 -0
  2086. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/bad-name.wat.err +0 -0
  2087. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/bad-name2.wat +0 -0
  2088. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/bad-name2.wat.err +0 -0
  2089. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/bad-name3.wat +0 -0
  2090. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/bad-name3.wat.err +0 -0
  2091. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/block1.wat +0 -0
  2092. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/block1.wat.err +0 -0
  2093. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/block2.wat +0 -0
  2094. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/block2.wat.err +0 -0
  2095. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/block3.wat +0 -0
  2096. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/block3.wat.err +0 -0
  2097. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-block-comment0.wat +0 -0
  2098. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-block-comment0.wat.err +0 -0
  2099. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-block-comment1.wat +0 -0
  2100. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-block-comment1.wat.err +0 -0
  2101. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-block-comment2.wat +0 -0
  2102. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-block-comment2.wat.err +0 -0
  2103. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-block-comment3.wat +0 -0
  2104. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-block-comment3.wat.err +0 -0
  2105. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-block-comment4.wat +0 -0
  2106. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-block-comment4.wat.err +0 -0
  2107. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-block-comment5.wat +0 -0
  2108. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-block-comment5.wat.err +0 -0
  2109. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-block-comment6.wat +0 -0
  2110. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-block-comment6.wat.err +0 -0
  2111. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-block-comment7.wat +0 -0
  2112. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-block-comment7.wat.err +0 -0
  2113. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-block-comment8.wat +0 -0
  2114. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-block-comment8.wat.err +0 -0
  2115. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-line-comment0.wat +0 -0
  2116. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-line-comment0.wat.err +0 -0
  2117. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-line-comment1.wat +0 -0
  2118. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-line-comment1.wat.err +0 -0
  2119. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-line-comment2.wat +0 -0
  2120. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-line-comment2.wat.err +0 -0
  2121. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-line-comment3.wat +0 -0
  2122. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-line-comment3.wat.err +0 -0
  2123. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-line-comment4.wat +0 -0
  2124. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-line-comment4.wat.err +0 -0
  2125. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-line-comment5.wat +0 -0
  2126. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-line-comment5.wat.err +0 -0
  2127. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-line-comment6.wat +0 -0
  2128. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-line-comment6.wat.err +0 -0
  2129. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-line-comment7.wat +0 -0
  2130. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-line-comment7.wat.err +0 -0
  2131. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-line-comment8.wat +0 -0
  2132. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-line-comment8.wat.err +0 -0
  2133. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-string0.wat +0 -0
  2134. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-string0.wat.err +0 -0
  2135. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-string1.wat +0 -0
  2136. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-string1.wat.err +0 -0
  2137. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-string2.wat +0 -0
  2138. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-string2.wat.err +0 -0
  2139. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-string3.wat +0 -0
  2140. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-string3.wat.err +0 -0
  2141. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-string4.wat +0 -0
  2142. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-string4.wat.err +0 -0
  2143. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-string5.wat +0 -0
  2144. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-string5.wat.err +0 -0
  2145. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-string6.wat +0 -0
  2146. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-string6.wat.err +0 -0
  2147. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-string7.wat +0 -0
  2148. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-string7.wat.err +0 -0
  2149. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-string8.wat +0 -0
  2150. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-string8.wat.err +0 -0
  2151. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/inline1.wat +0 -0
  2152. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/inline1.wat.err +0 -0
  2153. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/newline-in-string.wat +0 -0
  2154. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/newline-in-string.wat.err +0 -0
  2155. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string1.wat +0 -0
  2156. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string1.wat.err +0 -0
  2157. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string10.wat +0 -0
  2158. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string10.wat.err +0 -0
  2159. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string11.wat +0 -0
  2160. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string11.wat.err +0 -0
  2161. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string12.wat +0 -0
  2162. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string12.wat.err +0 -0
  2163. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string13.wat +0 -0
  2164. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string13.wat.err +0 -0
  2165. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string14.wat +0 -0
  2166. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string14.wat.err +0 -0
  2167. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string15.wat +0 -0
  2168. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string15.wat.err +0 -0
  2169. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string16.wat +0 -0
  2170. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string16.wat.err +0 -0
  2171. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string2.wat +0 -0
  2172. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string2.wat.err +0 -0
  2173. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string3.wat +0 -0
  2174. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string3.wat.err +0 -0
  2175. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string4.wat +0 -0
  2176. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string4.wat.err +0 -0
  2177. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string5.wat +0 -0
  2178. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string5.wat.err +0 -0
  2179. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string6.wat +0 -0
  2180. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string6.wat.err +0 -0
  2181. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string7.wat +0 -0
  2182. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string7.wat.err +0 -0
  2183. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string8.wat +0 -0
  2184. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string8.wat.err +0 -0
  2185. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string9.wat +0 -0
  2186. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string9.wat.err +0 -0
  2187. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/unbalanced.wat +0 -0
  2188. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/unbalanced.wat.err +0 -0
  2189. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail.rs +0 -0
  2190. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/recursive.rs +0 -0
  2191. /data/ext/cargo-vendor/{wast-69.0.1 → wat-1.201.0}/LICENSE +0 -0
  2192. /data/ext/cargo-vendor/{wat-1.0.82 → wat-1.201.0}/README.md +0 -0
  2193. /data/ext/cargo-vendor/{wat-1.0.82 → wiggle-18.0.3}/LICENSE +0 -0
  2194. /data/ext/cargo-vendor/{wiggle-17.0.0 → wiggle-18.0.3}/README.md +0 -0
  2195. /data/ext/cargo-vendor/{wiggle-17.0.0 → wiggle-18.0.3}/src/borrow.rs +0 -0
  2196. /data/ext/cargo-vendor/{wiggle-17.0.0 → wiggle-18.0.3}/src/error.rs +0 -0
  2197. /data/ext/cargo-vendor/{wiggle-17.0.0 → wiggle-18.0.3}/src/guest_type.rs +0 -0
  2198. /data/ext/cargo-vendor/{wiggle-17.0.0 → wiggle-18.0.3}/src/region.rs +0 -0
  2199. /data/ext/cargo-vendor/{wiggle-17.0.0 → wiggle-18.0.3}/src/wasmtime.rs +0 -0
  2200. /data/ext/cargo-vendor/{wiggle-17.0.0 → wiggle-generate-18.0.3}/LICENSE +0 -0
  2201. /data/ext/cargo-vendor/{wiggle-generate-17.0.0 → wiggle-generate-18.0.3}/README.md +0 -0
  2202. /data/ext/cargo-vendor/{wiggle-generate-17.0.0 → wiggle-generate-18.0.3}/src/codegen_settings.rs +0 -0
  2203. /data/ext/cargo-vendor/{wiggle-generate-17.0.0 → wiggle-generate-18.0.3}/src/config.rs +0 -0
  2204. /data/ext/cargo-vendor/{wiggle-generate-17.0.0 → wiggle-generate-18.0.3}/src/funcs.rs +0 -0
  2205. /data/ext/cargo-vendor/{wiggle-generate-17.0.0 → wiggle-generate-18.0.3}/src/lib.rs +0 -0
  2206. /data/ext/cargo-vendor/{wiggle-generate-17.0.0 → wiggle-generate-18.0.3}/src/lifetimes.rs +0 -0
  2207. /data/ext/cargo-vendor/{wiggle-generate-17.0.0 → wiggle-generate-18.0.3}/src/module_trait.rs +0 -0
  2208. /data/ext/cargo-vendor/{wiggle-generate-17.0.0 → wiggle-generate-18.0.3}/src/names.rs +0 -0
  2209. /data/ext/cargo-vendor/{wiggle-generate-17.0.0 → wiggle-generate-18.0.3}/src/types/error.rs +0 -0
  2210. /data/ext/cargo-vendor/{wiggle-generate-17.0.0 → wiggle-generate-18.0.3}/src/types/flags.rs +0 -0
  2211. /data/ext/cargo-vendor/{wiggle-generate-17.0.0 → wiggle-generate-18.0.3}/src/types/handle.rs +0 -0
  2212. /data/ext/cargo-vendor/{wiggle-generate-17.0.0 → wiggle-generate-18.0.3}/src/types/mod.rs +0 -0
  2213. /data/ext/cargo-vendor/{wiggle-generate-17.0.0 → wiggle-generate-18.0.3}/src/types/record.rs +0 -0
  2214. /data/ext/cargo-vendor/{wiggle-generate-17.0.0 → wiggle-generate-18.0.3}/src/types/variant.rs +0 -0
  2215. /data/ext/cargo-vendor/{wiggle-generate-17.0.0 → wiggle-generate-18.0.3}/src/wasmtime.rs +0 -0
  2216. /data/ext/cargo-vendor/{wiggle-generate-17.0.0 → wiggle-macro-18.0.3}/LICENSE +0 -0
  2217. /data/ext/cargo-vendor/{wiggle-macro-17.0.0 → wiggle-macro-18.0.3}/src/lib.rs +0 -0
  2218. /data/ext/cargo-vendor/{winch-codegen-0.15.0 → winch-codegen-0.16.3}/LICENSE +0 -0
  2219. /data/ext/cargo-vendor/{winch-codegen-0.15.0 → winch-codegen-0.16.3}/build.rs +0 -0
  2220. /data/ext/cargo-vendor/{winch-codegen-0.15.0 → winch-codegen-0.16.3}/src/isa/aarch64/address.rs +0 -0
  2221. /data/ext/cargo-vendor/{winch-codegen-0.15.0 → winch-codegen-0.16.3}/src/isa/aarch64/asm.rs +0 -0
  2222. /data/ext/cargo-vendor/{winch-codegen-0.15.0 → winch-codegen-0.16.3}/src/isa/aarch64/regs.rs +0 -0
  2223. /data/ext/cargo-vendor/{winch-codegen-0.15.0 → winch-codegen-0.16.3}/src/isa/x64/address.rs +0 -0
  2224. /data/ext/cargo-vendor/{winch-codegen-0.15.0 → winch-codegen-0.16.3}/src/isa/x64/regs.rs +0 -0
  2225. /data/ext/cargo-vendor/{winch-codegen-0.15.0 → winch-codegen-0.16.3}/src/lib.rs +0 -0
  2226. /data/ext/cargo-vendor/{winch-codegen-0.15.0 → winch-codegen-0.16.3}/src/regalloc.rs +0 -0
  2227. /data/ext/cargo-vendor/{winch-codegen-0.15.0 → winch-codegen-0.16.3}/src/regset.rs +0 -0
  2228. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/README.md +0 -0
  2229. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/src/abi.rs +0 -0
  2230. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/src/ast/toposort.rs +0 -0
  2231. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/src/lib.rs +0 -0
  2232. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/src/live.rs +0 -0
  2233. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/src/serde_.rs +0 -0
  2234. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/src/sizealign.rs +0 -0
  2235. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/all.rs +0 -0
  2236. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/comments.wit +0 -0
  2237. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/complex-include/deps/bar/root.wit +0 -0
  2238. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/complex-include/deps/baz/root.wit +0 -0
  2239. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/complex-include/root.wit +0 -0
  2240. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/complex-include.wit.json +0 -0
  2241. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/cross-package-resource/deps/foo/foo.wit +0 -0
  2242. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/cross-package-resource/foo.wit +0 -0
  2243. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/cross-package-resource.wit.json +0 -0
  2244. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/diamond1/deps/dep1/types.wit +0 -0
  2245. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/diamond1/deps/dep2/types.wit +0 -0
  2246. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/diamond1/join.wit +0 -0
  2247. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/diamond1.wit.json +0 -0
  2248. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/disambiguate-diamond/shared1.wit +0 -0
  2249. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/disambiguate-diamond/shared2.wit +0 -0
  2250. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/disambiguate-diamond/world.wit +0 -0
  2251. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/disambiguate-diamond.wit.json +0 -0
  2252. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/empty.wit +0 -0
  2253. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/empty.wit.json +0 -0
  2254. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/foreign-deps/deps/another-pkg/other-doc.wit +0 -0
  2255. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/foreign-deps/deps/corp/saas.wit +0 -0
  2256. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/foreign-deps/deps/different-pkg/the-doc.wit +0 -0
  2257. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/foreign-deps/deps/foreign-pkg/the-doc.wit +0 -0
  2258. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/foreign-deps/deps/some-pkg/some-doc.wit +0 -0
  2259. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/foreign-deps/deps/wasi/clocks.wit +0 -0
  2260. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/foreign-deps/deps/wasi/filesystem.wit +0 -0
  2261. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/foreign-deps/root.wit +0 -0
  2262. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/foreign-deps-union/deps/another-pkg/other-doc.wit +0 -0
  2263. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/foreign-deps-union/deps/corp/saas.wit +0 -0
  2264. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/foreign-deps-union/deps/different-pkg/the-doc.wit +0 -0
  2265. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/foreign-deps-union/deps/foreign-pkg/the-doc.wit +0 -0
  2266. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/foreign-deps-union/deps/some-pkg/some-doc.wit +0 -0
  2267. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/foreign-deps-union/deps/wasi/clocks.wit +0 -0
  2268. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/foreign-deps-union/deps/wasi/filesystem.wit +0 -0
  2269. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/foreign-deps-union/deps/wasi/wasi.wit +0 -0
  2270. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/foreign-deps-union/root.wit +0 -0
  2271. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/foreign-deps-union.wit.json +0 -0
  2272. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/foreign-deps.wit.json +0 -0
  2273. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/functions.wit +0 -0
  2274. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/functions.wit.json +0 -0
  2275. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/ignore-files-deps/deps/bar/types.wit +0 -0
  2276. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/ignore-files-deps/deps/ignore-me.txt +0 -0
  2277. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/ignore-files-deps/world.wit +0 -0
  2278. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/ignore-files-deps.wit.json +0 -0
  2279. /data/ext/cargo-vendor/{wit-parser-0.13.0/tests/ui/parse-fail → wit-parser-0.13.2/tests/ui}/import-export-overlap1.wit +0 -0
  2280. /data/ext/cargo-vendor/{wit-parser-0.13.0/tests/ui/parse-fail → wit-parser-0.13.2/tests/ui}/import-export-overlap2.wit +0 -0
  2281. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/include-reps.wit +0 -0
  2282. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/include-reps.wit.json +0 -0
  2283. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/kebab-name-include-with.wit +0 -0
  2284. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/kebab-name-include-with.wit.json +0 -0
  2285. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/many-names/a.wit +0 -0
  2286. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/many-names/b.wit +0 -0
  2287. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/many-names.wit.json +0 -0
  2288. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/multi-file/bar.wit +0 -0
  2289. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/multi-file/cycle-a.wit +0 -0
  2290. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/multi-file/cycle-b.wit +0 -0
  2291. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/multi-file/foo.wit +0 -0
  2292. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/multi-file.wit.json +0 -0
  2293. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/name-both-resource-and-type/deps/dep/foo.wit +0 -0
  2294. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/name-both-resource-and-type/foo.wit +0 -0
  2295. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/name-both-resource-and-type.wit.json +0 -0
  2296. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/package-syntax1.wit +0 -0
  2297. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/package-syntax1.wit.json +0 -0
  2298. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/package-syntax3.wit +0 -0
  2299. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/package-syntax3.wit.json +0 -0
  2300. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/package-syntax4.wit +0 -0
  2301. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/package-syntax4.wit.json +0 -0
  2302. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/alias-no-type.wit +0 -0
  2303. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/alias-no-type.wit.result +0 -0
  2304. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/async.wit.result +0 -0
  2305. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/async1.wit.result +0 -0
  2306. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-function.wit +0 -0
  2307. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-function.wit.result +0 -0
  2308. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-function2.wit +0 -0
  2309. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-function2.wit.result +0 -0
  2310. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-include1.wit +0 -0
  2311. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-include1.wit.result +0 -0
  2312. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-include2.wit +0 -0
  2313. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-include2.wit.result +0 -0
  2314. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-include3.wit +0 -0
  2315. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-include3.wit.result +0 -0
  2316. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-list.wit +0 -0
  2317. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-list.wit.result +0 -0
  2318. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-pkg1/root.wit +0 -0
  2319. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-pkg1.wit.result +0 -0
  2320. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-pkg2/deps/bar/empty.wit +0 -0
  2321. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-pkg2/root.wit +0 -0
  2322. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-pkg2.wit.result +0 -0
  2323. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-pkg3/deps/bar/baz.wit +0 -0
  2324. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-pkg3/root.wit +0 -0
  2325. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-pkg3.wit.result +0 -0
  2326. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-pkg4/deps/bar/baz.wit +0 -0
  2327. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-pkg4/root.wit +0 -0
  2328. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-pkg4.wit.result +0 -0
  2329. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-pkg5/deps/bar/baz.wit +0 -0
  2330. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-pkg5/root.wit +0 -0
  2331. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-pkg5.wit.result +0 -0
  2332. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-pkg6/deps/bar/baz.wit +0 -0
  2333. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-pkg6/root.wit +0 -0
  2334. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-pkg6.wit.result +0 -0
  2335. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource1.wit +0 -0
  2336. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource1.wit.result +0 -0
  2337. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource10.wit +0 -0
  2338. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource10.wit.result +0 -0
  2339. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource11.wit +0 -0
  2340. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource11.wit.result +0 -0
  2341. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource12.wit +0 -0
  2342. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource12.wit.result +0 -0
  2343. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource13.wit +0 -0
  2344. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource13.wit.result +0 -0
  2345. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource14.wit +0 -0
  2346. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource14.wit.result +0 -0
  2347. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource15/deps/foo/foo.wit +0 -0
  2348. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource15/foo.wit +0 -0
  2349. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource15.wit.result +0 -0
  2350. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource2.wit +0 -0
  2351. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource2.wit.result +0 -0
  2352. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource3.wit +0 -0
  2353. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource3.wit.result +0 -0
  2354. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource4.wit +0 -0
  2355. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource4.wit.result +0 -0
  2356. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource5.wit +0 -0
  2357. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource5.wit.result +0 -0
  2358. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource6.wit +0 -0
  2359. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource6.wit.result +0 -0
  2360. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource7.wit +0 -0
  2361. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource7.wit.result +0 -0
  2362. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource8.wit +0 -0
  2363. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource8.wit.result +0 -0
  2364. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource9.wit +0 -0
  2365. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource9.wit.result +0 -0
  2366. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-world-type1.wit +0 -0
  2367. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-world-type1.wit.result +0 -0
  2368. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/conflicting-package/a.wit +0 -0
  2369. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/conflicting-package/b.wit +0 -0
  2370. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/conflicting-package.wit.result +0 -0
  2371. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/cycle.wit +0 -0
  2372. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/cycle.wit.result +0 -0
  2373. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/cycle2.wit +0 -0
  2374. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/cycle2.wit.result +0 -0
  2375. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/cycle3.wit +0 -0
  2376. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/cycle3.wit.result +0 -0
  2377. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/cycle4.wit +0 -0
  2378. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/cycle4.wit.result +0 -0
  2379. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/cycle5.wit +0 -0
  2380. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/cycle5.wit.result +0 -0
  2381. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/dangling-type.wit +0 -0
  2382. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/dangling-type.wit.result +0 -0
  2383. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/duplicate-function-params.wit +0 -0
  2384. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/duplicate-function-params.wit.result +0 -0
  2385. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/duplicate-functions.wit +0 -0
  2386. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/duplicate-functions.wit.result +0 -0
  2387. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/duplicate-interface.wit +0 -0
  2388. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/duplicate-interface.wit.result +0 -0
  2389. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/duplicate-interface2/foo.wit +0 -0
  2390. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/duplicate-interface2/foo2.wit +0 -0
  2391. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/duplicate-interface2.wit.result +0 -0
  2392. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/duplicate-type.wit +0 -0
  2393. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/duplicate-type.wit.result +0 -0
  2394. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/empty-enum.wit +0 -0
  2395. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/empty-enum.wit.result +0 -0
  2396. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/empty-variant1.wit +0 -0
  2397. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/empty-variant1.wit.result +0 -0
  2398. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/export-twice.wit +0 -0
  2399. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/export-twice.wit.result +0 -0
  2400. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/import-and-export1.wit +0 -0
  2401. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/import-and-export1.wit.result +0 -0
  2402. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/import-and-export2.wit +0 -0
  2403. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/import-and-export2.wit.result +0 -0
  2404. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/import-and-export3.wit +0 -0
  2405. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/import-and-export3.wit.result +0 -0
  2406. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/import-and-export4.wit +0 -0
  2407. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/import-and-export4.wit.result +0 -0
  2408. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/import-and-export5.wit +0 -0
  2409. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/import-and-export5.wit.result +0 -0
  2410. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/import-twice.wit +0 -0
  2411. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/import-twice.wit.result +0 -0
  2412. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/include-cycle.wit +0 -0
  2413. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/include-cycle.wit.result +0 -0
  2414. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/include-foreign/deps/bar/empty.wit +0 -0
  2415. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/include-foreign/root.wit +0 -0
  2416. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/include-foreign.wit.result +0 -0
  2417. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/include-with-id.wit +0 -0
  2418. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/include-with-id.wit.result +0 -0
  2419. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/include-with-on-id.wit +0 -0
  2420. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/include-with-on-id.wit.result +0 -0
  2421. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/invalid-toplevel.wit +0 -0
  2422. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/invalid-toplevel.wit.result +0 -0
  2423. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/invalid-type-reference.wit +0 -0
  2424. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/invalid-type-reference.wit.result +0 -0
  2425. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/invalid-type-reference2.wit +0 -0
  2426. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/invalid-type-reference2.wit.result +0 -0
  2427. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/kebab-name-include-not-found.wit +0 -0
  2428. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/kebab-name-include-not-found.wit.result +0 -0
  2429. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/kebab-name-include.wit +0 -0
  2430. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/kebab-name-include.wit.result +0 -0
  2431. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/keyword.wit +0 -0
  2432. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/keyword.wit.result +0 -0
  2433. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/missing-package.wit +0 -0
  2434. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/missing-package.wit.result +0 -0
  2435. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/multiple-package-docs/a.wit +0 -0
  2436. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/multiple-package-docs/b.wit +0 -0
  2437. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/multiple-package-docs.wit.result +0 -0
  2438. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/no-access-to-sibling-use/bar.wit +0 -0
  2439. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/no-access-to-sibling-use/foo.wit +0 -0
  2440. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/no-access-to-sibling-use.wit.result +0 -0
  2441. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/non-existance-world-include/deps/bar/baz.wit +0 -0
  2442. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/non-existance-world-include/root.wit +0 -0
  2443. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/non-existance-world-include.wit.result +0 -0
  2444. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/pkg-cycle/deps/a1/root.wit +0 -0
  2445. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/pkg-cycle/root.wit +0 -0
  2446. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/pkg-cycle.wit.result +0 -0
  2447. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/pkg-cycle2/deps/a1/root.wit +0 -0
  2448. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/pkg-cycle2/deps/a2/root.wit +0 -0
  2449. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/pkg-cycle2/root.wit +0 -0
  2450. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/pkg-cycle2.wit.result +0 -0
  2451. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/type-and-resource-same-name/deps/dep/foo.wit +0 -0
  2452. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/type-and-resource-same-name/foo.wit +0 -0
  2453. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/type-and-resource-same-name.wit.result +0 -0
  2454. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/undefined-typed.wit +0 -0
  2455. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/undefined-typed.wit.result +0 -0
  2456. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unknown-interface.wit +0 -0
  2457. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unknown-interface.wit.result +0 -0
  2458. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-interface1.wit +0 -0
  2459. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-interface1.wit.result +0 -0
  2460. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-interface2.wit +0 -0
  2461. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-interface2.wit.result +0 -0
  2462. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-interface3.wit +0 -0
  2463. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-interface3.wit.result +0 -0
  2464. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-interface4.wit +0 -0
  2465. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-interface4.wit.result +0 -0
  2466. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-use1.wit +0 -0
  2467. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-use1.wit.result +0 -0
  2468. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-use10/bar.wit +0 -0
  2469. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-use10/foo.wit +0 -0
  2470. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-use10.wit.result +0 -0
  2471. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-use2.wit +0 -0
  2472. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-use2.wit.result +0 -0
  2473. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-use3.wit +0 -0
  2474. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-use3.wit.result +0 -0
  2475. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-use7.wit +0 -0
  2476. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-use7.wit.result +0 -0
  2477. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-use8.wit +0 -0
  2478. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-use8.wit.result +0 -0
  2479. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-use9.wit +0 -0
  2480. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-use9.wit.result +0 -0
  2481. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unterminated-string.wit.result +0 -0
  2482. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/use-and-include-world/deps/bar/baz.wit +0 -0
  2483. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/use-and-include-world/root.wit +0 -0
  2484. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/use-and-include-world.wit.result +0 -0
  2485. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/use-conflict.wit +0 -0
  2486. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/use-conflict.wit.result +0 -0
  2487. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/use-conflict2.wit +0 -0
  2488. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/use-conflict2.wit.result +0 -0
  2489. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/use-conflict3.wit +0 -0
  2490. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/use-conflict3.wit.result +0 -0
  2491. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/use-cycle1.wit +0 -0
  2492. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/use-cycle1.wit.result +0 -0
  2493. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/use-cycle4.wit +0 -0
  2494. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/use-cycle4.wit.result +0 -0
  2495. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/use-shadow1.wit +0 -0
  2496. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/use-shadow1.wit.result +0 -0
  2497. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/use-world/deps/bar/baz.wit +0 -0
  2498. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/use-world/root.wit +0 -0
  2499. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/use-world.wit.result +0 -0
  2500. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/world-interface-clash.wit +0 -0
  2501. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/world-interface-clash.wit.result +0 -0
  2502. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/world-same-fields2.wit +0 -0
  2503. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/world-same-fields2.wit.result +0 -0
  2504. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/world-same-fields3.wit +0 -0
  2505. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/world-same-fields3.wit.result +0 -0
  2506. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/world-top-level-func.wit +0 -0
  2507. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/world-top-level-func.wit.result +0 -0
  2508. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/world-top-level-func2.wit +0 -0
  2509. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/world-top-level-func2.wit.result +0 -0
  2510. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/random.wit +0 -0
  2511. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/random.wit.json +0 -0
  2512. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/resources-empty.wit +0 -0
  2513. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/resources-empty.wit.json +0 -0
  2514. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/resources-multiple-returns-borrow.wit +0 -0
  2515. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/resources-multiple-returns-borrow.wit.json +0 -0
  2516. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/resources-multiple-returns-own.wit +0 -0
  2517. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/resources-multiple-returns-own.wit.json +0 -0
  2518. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/resources-multiple.wit +0 -0
  2519. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/resources-multiple.wit.json +0 -0
  2520. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/resources-return-borrow.wit +0 -0
  2521. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/resources-return-borrow.wit.json +0 -0
  2522. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/resources-return-own.wit +0 -0
  2523. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/resources-return-own.wit.json +0 -0
  2524. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/resources.wit +0 -0
  2525. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/resources.wit.json +0 -0
  2526. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/resources1.wit +0 -0
  2527. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/resources1.wit.json +0 -0
  2528. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/shared-types.wit +0 -0
  2529. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/shared-types.wit.json +0 -0
  2530. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/stress-export-elaborate.wit +0 -0
  2531. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/stress-export-elaborate.wit.json +0 -0
  2532. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/type-then-eof.wit +0 -0
  2533. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/type-then-eof.wit.json +0 -0
  2534. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/union-fuzz-1.wit +0 -0
  2535. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/union-fuzz-1.wit.json +0 -0
  2536. /data/ext/cargo-vendor/{wit-parser-0.13.0/tests/ui/parse-fail → wit-parser-0.13.2/tests/ui}/union-fuzz-2.wit +0 -0
  2537. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/use-chain.wit +0 -0
  2538. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/use-chain.wit.json +0 -0
  2539. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/use.wit +0 -0
  2540. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/use.wit.json +0 -0
  2541. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/versions/deps/a1/foo.wit +0 -0
  2542. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/versions/deps/a2/foo.wit +0 -0
  2543. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/versions/foo.wit +0 -0
  2544. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/versions.wit.json +0 -0
  2545. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/wasi.wit +0 -0
  2546. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/world-diamond.wit +0 -0
  2547. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/world-diamond.wit.json +0 -0
  2548. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/world-iface-no-collide.wit +0 -0
  2549. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/world-iface-no-collide.wit.json +0 -0
  2550. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/world-implicit-import1.wit +0 -0
  2551. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/world-implicit-import1.wit.json +0 -0
  2552. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/world-implicit-import2.wit +0 -0
  2553. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/world-implicit-import2.wit.json +0 -0
  2554. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/world-implicit-import3.wit +0 -0
  2555. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/world-implicit-import3.wit.json +0 -0
  2556. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/world-same-fields4.wit +0 -0
  2557. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/world-same-fields4.wit.json +0 -0
  2558. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/world-top-level-funcs.wit +0 -0
  2559. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/world-top-level-funcs.wit.json +0 -0
  2560. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/world-top-level-resources.wit +0 -0
  2561. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/world-top-level-resources.wit.json +0 -0
  2562. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/worlds-union-dedup.wit +0 -0
  2563. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/worlds-union-dedup.wit.json +0 -0
  2564. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/worlds-with-types.wit +0 -0
  2565. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/worlds-with-types.wit.json +0 -0
@@ -0,0 +1,1680 @@
1
+ /* Copyright 2018 Mozilla Foundation
2
+ *
3
+ * Licensed under the Apache License, Version 2.0 (the "License");
4
+ * you may not use this file except in compliance with the License.
5
+ * You may obtain a copy of the License at
6
+ *
7
+ * http://www.apache.org/licenses/LICENSE-2.0
8
+ *
9
+ * Unless required by applicable law or agreed to in writing, software
10
+ * distributed under the License is distributed on an "AS IS" BASIS,
11
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ * See the License for the specific language governing permissions and
13
+ * limitations under the License.
14
+ */
15
+
16
+ use crate::limits::{
17
+ MAX_WASM_FUNCTION_PARAMS, MAX_WASM_FUNCTION_RETURNS, MAX_WASM_STRUCT_FIELDS,
18
+ MAX_WASM_SUPERTYPES, MAX_WASM_TYPES,
19
+ };
20
+ use crate::types::CoreTypeId;
21
+ use crate::{BinaryReader, BinaryReaderError, FromReader, Result, SectionLimited};
22
+ use std::fmt::{self, Debug, Write};
23
+ use std::hash::{Hash, Hasher};
24
+
25
+ mod matches;
26
+ pub(crate) use self::matches::{Matches, WithRecGroup};
27
+
28
+ /// A packed representation of a type index.
29
+ ///
30
+ /// This type is morally an `enum` of either:
31
+ ///
32
+ /// 1. An index into a Wasm module's type space.
33
+ ///
34
+ /// 2. A `CoreTypeId` identifier.
35
+ ///
36
+ /// 3. An index into a recursion group's elements.
37
+ ///
38
+ /// The latter two variants are *canonical* while the first is not. Reading raw
39
+ /// types will produce (1), while working with types after validation will
40
+ /// produce (2) and (3).
41
+ //
42
+ // This is a bit-packed `u32` with the following layout:
43
+ //
44
+ // [ unused:u10 kind:u2 index:u20 ]
45
+ //
46
+ // It must fit in 22 bits to keep `RefType` in 24 bits and `ValType` in 32 bits,
47
+ // so the top ten bits are unused.
48
+ //
49
+ // The `index` field's interpretation depends on the `kind` field, which may be
50
+ // one of the following:
51
+ //
52
+ // * `00`: The `index` is an index into the module's type space.
53
+ //
54
+ // * `01`: The `index` is an index into the containing type's recursion group.
55
+ //
56
+ // * `10`: The `index` is a `CoreTypeId`.
57
+ #[derive(Copy, Clone, PartialEq, Eq, Hash)]
58
+ pub struct PackedIndex(u32);
59
+
60
+ // Assert that we can fit indices up to `MAX_WASM_TYPES` inside `RefType`.
61
+ #[test]
62
+ fn can_fit_max_wasm_types_in_packed_index() {
63
+ assert!(PackedIndex::can_represent_index(
64
+ crate::limits::MAX_WASM_TYPES as u32
65
+ ));
66
+ assert!(PackedIndex::can_represent_index(
67
+ 0b00000000_00001111_00000000_00000000
68
+ ));
69
+ assert!(PackedIndex::can_represent_index(
70
+ 0b00000000_00000000_11111111_00000000
71
+ ));
72
+ assert!(PackedIndex::can_represent_index(
73
+ 0b00000000_00000000_00000000_11111111
74
+ ));
75
+ assert!(PackedIndex::can_represent_index(0));
76
+ }
77
+
78
+ impl PackedIndex {
79
+ const UNUSED_MASK: u32 = u32::MAX & !(Self::KIND_MASK | Self::INDEX_MASK);
80
+ const KIND_MASK: u32 = 0b11 << 20;
81
+ const INDEX_MASK: u32 = (1 << 20) - 1;
82
+
83
+ const MODULE_KIND: u32 = 0b00 << 20;
84
+ const REC_GROUP_KIND: u32 = 0b01 << 20;
85
+ const ID_KIND: u32 = 0b10 << 20;
86
+
87
+ #[inline]
88
+ pub(crate) fn unchecked_from_u32(x: u32) -> Self {
89
+ debug_assert_eq!(Self::UNUSED_MASK & x, 0);
90
+ Self(x)
91
+ }
92
+
93
+ #[inline]
94
+ pub(crate) fn to_u32(id: Self) -> u32 {
95
+ let x = id.0;
96
+ debug_assert_eq!(Self::UNUSED_MASK & x, 0);
97
+ x
98
+ }
99
+
100
+ #[inline]
101
+ fn can_represent_index(index: u32) -> bool {
102
+ index & Self::INDEX_MASK == index
103
+ }
104
+
105
+ #[inline]
106
+ fn kind(&self) -> u32 {
107
+ self.0 & Self::KIND_MASK
108
+ }
109
+
110
+ #[inline]
111
+ fn index(&self) -> u32 {
112
+ self.0 & Self::INDEX_MASK
113
+ }
114
+
115
+ /// Construct a `PackedIndex` from an index into a module's types space.
116
+ #[inline]
117
+ pub fn from_module_index(index: u32) -> Option<Self> {
118
+ if PackedIndex::can_represent_index(index) {
119
+ Some(PackedIndex(PackedIndex::MODULE_KIND | index))
120
+ } else {
121
+ None
122
+ }
123
+ }
124
+
125
+ /// Construct a `PackedIndex` from an index into the index's containing
126
+ /// recursion group.
127
+ #[inline]
128
+ pub fn from_rec_group_index(index: u32) -> Option<Self> {
129
+ if PackedIndex::can_represent_index(index) {
130
+ Some(PackedIndex(PackedIndex::REC_GROUP_KIND | index))
131
+ } else {
132
+ None
133
+ }
134
+ }
135
+
136
+ /// Construct a `PackedIndex` from the given `CoreTypeId`.
137
+ #[inline]
138
+ pub fn from_id(id: CoreTypeId) -> Option<Self> {
139
+ let index = u32::try_from(crate::types::TypeIdentifier::index(&id)).unwrap();
140
+ if PackedIndex::can_represent_index(index) {
141
+ Some(PackedIndex(PackedIndex::ID_KIND | index))
142
+ } else {
143
+ None
144
+ }
145
+ }
146
+
147
+ /// Is this index in canonical form?
148
+ #[inline]
149
+ pub fn is_canonical(&self) -> bool {
150
+ match self.kind() {
151
+ Self::REC_GROUP_KIND | Self::ID_KIND => true,
152
+ Self::MODULE_KIND => false,
153
+ _ => unreachable!(),
154
+ }
155
+ }
156
+
157
+ /// Uncompress this packed index into an actual `enum` that can be matched
158
+ /// on.
159
+ #[inline]
160
+ pub fn unpack(&self) -> UnpackedIndex {
161
+ match self.kind() {
162
+ Self::MODULE_KIND => UnpackedIndex::Module(self.index()),
163
+ Self::REC_GROUP_KIND => UnpackedIndex::RecGroup(self.index()),
164
+ Self::ID_KIND => UnpackedIndex::Id(
165
+ <CoreTypeId as crate::types::TypeIdentifier>::from_index(self.index()),
166
+ ),
167
+ _ => unreachable!(),
168
+ }
169
+ }
170
+
171
+ /// Get the underlying index into a module's types space, if any.
172
+ #[inline]
173
+ pub fn as_module_index(&self) -> Option<u32> {
174
+ if self.kind() == Self::MODULE_KIND {
175
+ Some(self.index())
176
+ } else {
177
+ None
178
+ }
179
+ }
180
+
181
+ /// Get the underlying index into the containing recursion group, if any.
182
+ #[inline]
183
+ pub fn as_rec_group_index(&self) -> Option<u32> {
184
+ if self.kind() == Self::REC_GROUP_KIND {
185
+ Some(self.index())
186
+ } else {
187
+ None
188
+ }
189
+ }
190
+
191
+ /// Get the underlying `CoreTypeId`, if any.
192
+ #[inline]
193
+ pub fn as_core_type_id(&self) -> Option<CoreTypeId> {
194
+ if self.kind() == Self::ID_KIND {
195
+ Some(<CoreTypeId as crate::types::TypeIdentifier>::from_index(
196
+ self.index(),
197
+ ))
198
+ } else {
199
+ None
200
+ }
201
+ }
202
+ }
203
+
204
+ impl std::fmt::Debug for PackedIndex {
205
+ fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
206
+ f.debug_struct("CoreTypeIndex")
207
+ .field(
208
+ "kind",
209
+ match self.kind() {
210
+ Self::MODULE_KIND => &"module",
211
+ Self::REC_GROUP_KIND => &"recgroup",
212
+ Self::ID_KIND => &"id",
213
+ _ => unreachable!(),
214
+ },
215
+ )
216
+ .field("index", &self.index())
217
+ .finish()
218
+ }
219
+ }
220
+
221
+ impl std::fmt::Display for PackedIndex {
222
+ fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
223
+ std::fmt::Display::fmt(&self.unpack(), f)
224
+ }
225
+ }
226
+
227
+ /// The uncompressed form of a `PackedIndex`.
228
+ ///
229
+ /// Can be used for `match` statements.
230
+ #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)]
231
+ pub enum UnpackedIndex {
232
+ /// An index into a Wasm module's types space.
233
+ Module(u32),
234
+
235
+ /// An index into the containing recursion group's elements.
236
+ RecGroup(u32),
237
+
238
+ /// A type identifier.
239
+ Id(CoreTypeId),
240
+ }
241
+
242
+ impl UnpackedIndex {
243
+ /// Compress this index into its packed form.
244
+ ///
245
+ /// Returns `None` if an index is beyond implementation limits.
246
+ pub fn pack(&self) -> Option<PackedIndex> {
247
+ match self {
248
+ UnpackedIndex::Module(i) => PackedIndex::from_module_index(*i),
249
+ UnpackedIndex::RecGroup(i) => PackedIndex::from_rec_group_index(*i),
250
+ UnpackedIndex::Id(id) => PackedIndex::from_id(*id),
251
+ }
252
+ }
253
+
254
+ /// Is this index in canonical form?
255
+ #[inline]
256
+ pub fn is_canonical(&self) -> bool {
257
+ matches!(self, UnpackedIndex::RecGroup(_) | UnpackedIndex::Id(_))
258
+ }
259
+
260
+ /// Get the underlying index into a module's types space, if any.
261
+ #[inline]
262
+ pub fn as_module_index(&self) -> Option<u32> {
263
+ if let Self::Module(i) = *self {
264
+ Some(i)
265
+ } else {
266
+ None
267
+ }
268
+ }
269
+
270
+ /// Get the underlying index into the containing recursion group, if any.
271
+ #[inline]
272
+ pub fn as_rec_group_index(&self) -> Option<u32> {
273
+ if let Self::RecGroup(i) = *self {
274
+ Some(i)
275
+ } else {
276
+ None
277
+ }
278
+ }
279
+
280
+ /// Get the underlying `CoreTypeId`, if any.
281
+ #[inline]
282
+ pub fn as_core_type_id(&self) -> Option<CoreTypeId> {
283
+ if let Self::Id(id) = *self {
284
+ Some(id)
285
+ } else {
286
+ None
287
+ }
288
+ }
289
+ }
290
+
291
+ impl std::fmt::Display for UnpackedIndex {
292
+ fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
293
+ match self {
294
+ UnpackedIndex::Module(i) => write!(f, "(module {i})"),
295
+ UnpackedIndex::RecGroup(i) => write!(f, "(recgroup {i})"),
296
+ UnpackedIndex::Id(id) => write!(f, "(id {})", crate::types::TypeIdentifier::index(id)),
297
+ }
298
+ }
299
+ }
300
+
301
+ /// Represents a recursive type group in a WebAssembly module.
302
+ #[derive(Debug, Clone)]
303
+ pub struct RecGroup {
304
+ inner: RecGroupInner,
305
+ }
306
+
307
+ #[derive(Debug, Clone)]
308
+ enum RecGroupInner {
309
+ Implicit((usize, SubType)),
310
+ Explicit(Vec<(usize, SubType)>),
311
+ }
312
+
313
+ impl RecGroup {
314
+ /// Create an explicit `RecGroup` for the given types.
315
+ pub(crate) fn explicit(types: Vec<(usize, SubType)>) -> Self {
316
+ RecGroup {
317
+ inner: RecGroupInner::Explicit(types),
318
+ }
319
+ }
320
+
321
+ /// Create an implicit `RecGroup` for a type that was not contained
322
+ /// in a `(rec ...)`.
323
+ pub(crate) fn implicit(offset: usize, ty: SubType) -> Self {
324
+ RecGroup {
325
+ inner: RecGroupInner::Implicit((offset, ty)),
326
+ }
327
+ }
328
+
329
+ /// Is this an explicit recursion group?
330
+ pub fn is_explicit_rec_group(&self) -> bool {
331
+ matches!(self.inner, RecGroupInner::Explicit(..))
332
+ }
333
+
334
+ /// Returns the list of subtypes in the recursive type group.
335
+ pub fn types(&self) -> impl ExactSizeIterator<Item = &SubType> + '_ {
336
+ let types = match &self.inner {
337
+ RecGroupInner::Implicit(ty) => std::slice::from_ref(ty),
338
+ RecGroupInner::Explicit(types) => types,
339
+ };
340
+ types.iter().map(|(_, ty)| ty)
341
+ }
342
+
343
+ /// Return a mutable borrow of the list of subtypes in this
344
+ /// recursive type group.
345
+ pub(crate) fn types_mut(&mut self) -> impl ExactSizeIterator<Item = &mut SubType> + '_ {
346
+ let types = match &mut self.inner {
347
+ RecGroupInner::Implicit(ty) => std::slice::from_mut(ty),
348
+ RecGroupInner::Explicit(types) => types,
349
+ };
350
+ types.iter_mut().map(|(_, ty)| ty)
351
+ }
352
+
353
+ /// Returns an owning iterator of all subtypes in this recursion
354
+ /// group.
355
+ pub fn into_types(self) -> impl ExactSizeIterator<Item = SubType> {
356
+ self.into_types_and_offsets().map(|(_, ty)| ty)
357
+ }
358
+
359
+ /// Returns an owning iterator of all subtypes in this recursion
360
+ /// group, along with their offset.
361
+ pub fn into_types_and_offsets(self) -> impl ExactSizeIterator<Item = (usize, SubType)> {
362
+ return match self.inner {
363
+ RecGroupInner::Implicit(tup) => Iter::Implicit(Some(tup)),
364
+ RecGroupInner::Explicit(types) => Iter::Explicit(types.into_iter()),
365
+ };
366
+
367
+ enum Iter {
368
+ Implicit(Option<(usize, SubType)>),
369
+ Explicit(std::vec::IntoIter<(usize, SubType)>),
370
+ }
371
+
372
+ impl Iterator for Iter {
373
+ type Item = (usize, SubType);
374
+
375
+ fn next(&mut self) -> Option<(usize, SubType)> {
376
+ match self {
377
+ Self::Implicit(ty) => ty.take(),
378
+ Self::Explicit(types) => types.next(),
379
+ }
380
+ }
381
+
382
+ fn size_hint(&self) -> (usize, Option<usize>) {
383
+ match self {
384
+ Self::Implicit(None) => (0, Some(0)),
385
+ Self::Implicit(Some(_)) => (1, Some(1)),
386
+ Self::Explicit(types) => types.size_hint(),
387
+ }
388
+ }
389
+ }
390
+
391
+ impl ExactSizeIterator for Iter {}
392
+ }
393
+ }
394
+
395
+ impl Hash for RecGroup {
396
+ fn hash<H: Hasher>(&self, hasher: &mut H) {
397
+ let types = self.types();
398
+ types.len().hash(hasher);
399
+ for ty in types {
400
+ ty.hash(hasher);
401
+ }
402
+ }
403
+ }
404
+
405
+ impl PartialEq for RecGroup {
406
+ fn eq(&self, other: &RecGroup) -> bool {
407
+ let self_tys = self.types();
408
+ let other_tys = other.types();
409
+ self_tys.len() == other_tys.len() && self_tys.zip(other_tys).all(|(a, b)| a == b)
410
+ }
411
+ }
412
+
413
+ impl Eq for RecGroup {}
414
+
415
+ /// Represents a subtype of possible other types in a WebAssembly module.
416
+ #[derive(Debug, Clone, Hash, PartialEq, Eq)]
417
+ pub struct SubType {
418
+ /// Is the subtype final.
419
+ pub is_final: bool,
420
+ /// The list of supertype indexes. As of GC MVP, there can be at most one supertype.
421
+ pub supertype_idx: Option<PackedIndex>,
422
+ /// The composite type of the subtype.
423
+ pub composite_type: CompositeType,
424
+ }
425
+
426
+ impl std::fmt::Display for SubType {
427
+ fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
428
+ if self.is_final && self.supertype_idx.is_none() {
429
+ std::fmt::Display::fmt(&self.composite_type, f)
430
+ } else {
431
+ write!(f, "(sub ")?;
432
+ if self.is_final {
433
+ write!(f, "final ")?;
434
+ }
435
+ if let Some(idx) = self.supertype_idx {
436
+ write!(f, "{idx} ")?;
437
+ }
438
+ std::fmt::Display::fmt(&self.composite_type, f)?;
439
+ write!(f, ")")
440
+ }
441
+ }
442
+ }
443
+
444
+ impl SubType {
445
+ /// Unwrap an `ArrayType` or panic.
446
+ ///
447
+ /// Does not check finality or whether there is a supertype.
448
+ pub fn unwrap_array(&self) -> &ArrayType {
449
+ self.composite_type.unwrap_array()
450
+ }
451
+
452
+ /// Unwrap an `FuncType` or panic.
453
+ ///
454
+ /// Does not check finality or whether there is a supertype.
455
+ pub fn unwrap_func(&self) -> &FuncType {
456
+ self.composite_type.unwrap_func()
457
+ }
458
+
459
+ /// Unwrap an `StructType` or panic.
460
+ ///
461
+ /// Does not check finality or whether there is a supertype.
462
+ pub fn unwrap_struct(&self) -> &StructType {
463
+ self.composite_type.unwrap_struct()
464
+ }
465
+
466
+ /// Maps any `UnpackedIndex` via the specified closure.
467
+ pub(crate) fn remap_indices(
468
+ &mut self,
469
+ f: &mut dyn FnMut(&mut PackedIndex) -> Result<()>,
470
+ ) -> Result<()> {
471
+ if let Some(idx) = &mut self.supertype_idx {
472
+ f(idx)?;
473
+ }
474
+ match &mut self.composite_type {
475
+ CompositeType::Func(ty) => {
476
+ for ty in ty.params_mut() {
477
+ ty.remap_indices(f)?;
478
+ }
479
+ for ty in ty.results_mut() {
480
+ ty.remap_indices(f)?;
481
+ }
482
+ }
483
+ CompositeType::Array(ty) => {
484
+ ty.0.remap_indices(f)?;
485
+ }
486
+ CompositeType::Struct(ty) => {
487
+ for field in ty.fields.iter_mut() {
488
+ field.remap_indices(f)?;
489
+ }
490
+ }
491
+ }
492
+ Ok(())
493
+ }
494
+ }
495
+
496
+ /// Represents a composite type in a WebAssembly module.
497
+ #[derive(Debug, Clone, Hash, PartialEq, Eq)]
498
+ pub enum CompositeType {
499
+ /// The type is for a function.
500
+ Func(FuncType),
501
+ /// The type is for an array.
502
+ Array(ArrayType),
503
+ /// The type is for a struct.
504
+ Struct(StructType),
505
+ }
506
+
507
+ impl std::fmt::Display for CompositeType {
508
+ fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
509
+ match *self {
510
+ Self::Array(_) => write!(f, "(array ...)"),
511
+ Self::Func(_) => write!(f, "(func ...)"),
512
+ Self::Struct(_) => write!(f, "(struct ...)"),
513
+ }
514
+ }
515
+ }
516
+
517
+ impl CompositeType {
518
+ /// Unwrap a `FuncType` or panic.
519
+ pub fn unwrap_func(&self) -> &FuncType {
520
+ match self {
521
+ Self::Func(f) => f,
522
+ _ => panic!("not a func"),
523
+ }
524
+ }
525
+
526
+ /// Unwrap a `ArrayType` or panic.
527
+ pub fn unwrap_array(&self) -> &ArrayType {
528
+ match self {
529
+ Self::Array(a) => a,
530
+ _ => panic!("not a array"),
531
+ }
532
+ }
533
+
534
+ /// Unwrap a `StructType` or panic.
535
+ pub fn unwrap_struct(&self) -> &StructType {
536
+ match self {
537
+ Self::Struct(s) => s,
538
+ _ => panic!("not a struct"),
539
+ }
540
+ }
541
+ }
542
+
543
+ /// Represents a type of a function in a WebAssembly module.
544
+ #[derive(Clone, Eq, PartialEq, Hash)]
545
+ pub struct FuncType {
546
+ /// The combined parameters and result types.
547
+ params_results: Box<[ValType]>,
548
+ /// The number of parameter types.
549
+ len_params: usize,
550
+ }
551
+
552
+ impl std::fmt::Debug for FuncType {
553
+ fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
554
+ f.debug_struct("FuncType")
555
+ .field("params", &self.params())
556
+ .field("results", &self.results())
557
+ .finish()
558
+ }
559
+ }
560
+
561
+ impl FuncType {
562
+ /// Creates a new [`FuncType`] from the given `params` and `results`.
563
+ pub fn new<P, R>(params: P, results: R) -> Self
564
+ where
565
+ P: IntoIterator<Item = ValType>,
566
+ R: IntoIterator<Item = ValType>,
567
+ {
568
+ let mut buffer = params.into_iter().collect::<Vec<_>>();
569
+ let len_params = buffer.len();
570
+ buffer.extend(results);
571
+ Self {
572
+ params_results: buffer.into(),
573
+ len_params,
574
+ }
575
+ }
576
+
577
+ /// Creates a new [`FuncType`] fom its raw parts.
578
+ ///
579
+ /// # Panics
580
+ ///
581
+ /// If `len_params` is greater than the length of `params_results` combined.
582
+ pub(crate) fn from_raw_parts(params_results: Box<[ValType]>, len_params: usize) -> Self {
583
+ assert!(len_params <= params_results.len());
584
+ Self {
585
+ params_results,
586
+ len_params,
587
+ }
588
+ }
589
+
590
+ /// Returns a shared slice to the parameter types of the [`FuncType`].
591
+ #[inline]
592
+ pub fn params(&self) -> &[ValType] {
593
+ &self.params_results[..self.len_params]
594
+ }
595
+
596
+ /// Returns an exclusive slice to the parameter types of the
597
+ /// [`FuncType`].
598
+ #[inline]
599
+ pub(crate) fn params_mut(&mut self) -> &mut [ValType] {
600
+ &mut self.params_results[..self.len_params]
601
+ }
602
+
603
+ /// Returns a shared slice to the result types of the [`FuncType`].
604
+ #[inline]
605
+ pub fn results(&self) -> &[ValType] {
606
+ &self.params_results[self.len_params..]
607
+ }
608
+
609
+ /// Returns an exclusive slice to the result types of the
610
+ /// [`FuncType`].
611
+ #[inline]
612
+ pub(crate) fn results_mut(&mut self) -> &mut [ValType] {
613
+ &mut self.params_results[self.len_params..]
614
+ }
615
+
616
+ pub(crate) fn desc(&self) -> String {
617
+ let mut s = String::new();
618
+ s.push_str("[");
619
+ for (i, param) in self.params().iter().enumerate() {
620
+ if i > 0 {
621
+ s.push_str(" ");
622
+ }
623
+ write!(s, "{param}").unwrap();
624
+ }
625
+ s.push_str("] -> [");
626
+ for (i, result) in self.results().iter().enumerate() {
627
+ if i > 0 {
628
+ s.push_str(" ");
629
+ }
630
+ write!(s, "{result}").unwrap();
631
+ }
632
+ s.push_str("]");
633
+ s
634
+ }
635
+ }
636
+
637
+ /// Represents a type of an array in a WebAssembly module.
638
+ #[derive(Debug, Copy, Clone, Eq, PartialEq, Hash)]
639
+ pub struct ArrayType(pub FieldType);
640
+
641
+ /// Represents a field type of an array or a struct.
642
+ #[derive(Debug, Copy, Clone, Eq, PartialEq, Hash)]
643
+ pub struct FieldType {
644
+ /// Array element type.
645
+ pub element_type: StorageType,
646
+ /// Are elements mutable.
647
+ pub mutable: bool,
648
+ }
649
+
650
+ impl FieldType {
651
+ /// Maps any `UnpackedIndex` via the specified closure.
652
+ pub(crate) fn remap_indices(
653
+ &mut self,
654
+ f: &mut dyn FnMut(&mut PackedIndex) -> Result<()>,
655
+ ) -> Result<()> {
656
+ match &mut self.element_type {
657
+ StorageType::I8 | StorageType::I16 => Ok(()),
658
+ StorageType::Val(ty) => ty.remap_indices(f),
659
+ }
660
+ }
661
+ }
662
+
663
+ /// Represents storage types introduced in the GC spec for array and struct fields.
664
+ #[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
665
+ pub enum StorageType {
666
+ /// The storage type is i8.
667
+ I8,
668
+ /// The storage type is i16.
669
+ I16,
670
+ /// The storage type is a value type.
671
+ Val(ValType),
672
+ }
673
+
674
+ impl std::fmt::Display for StorageType {
675
+ fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
676
+ match self {
677
+ Self::I8 => write!(f, "i8"),
678
+ Self::I16 => write!(f, "i16"),
679
+ Self::Val(v) => std::fmt::Display::fmt(v, f),
680
+ }
681
+ }
682
+ }
683
+
684
+ impl StorageType {
685
+ /// Is this a packed storage type, i.e. one that must be sign- or
686
+ /// zero-extended when converted to a `ValType`?
687
+ pub fn is_packed(&self) -> bool {
688
+ match self {
689
+ Self::I8 | Self::I16 => true,
690
+ Self::Val(_) => false,
691
+ }
692
+ }
693
+
694
+ /// Unpack this storage type into the valtype that it is represented as on
695
+ /// the operand stack.
696
+ pub fn unpack(&self) -> ValType {
697
+ match *self {
698
+ Self::Val(ty) => ty,
699
+ Self::I8 | Self::I16 => ValType::I32,
700
+ }
701
+ }
702
+ }
703
+
704
+ /// Represents a type of a struct in a WebAssembly module.
705
+ #[derive(Debug, Clone, Eq, PartialEq, Hash)]
706
+ pub struct StructType {
707
+ /// Struct fields.
708
+ pub fields: Box<[FieldType]>,
709
+ }
710
+
711
+ /// Represents the types of values in a WebAssembly module.
712
+ #[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
713
+ pub enum ValType {
714
+ /// The value type is i32.
715
+ I32,
716
+ /// The value type is i64.
717
+ I64,
718
+ /// The value type is f32.
719
+ F32,
720
+ /// The value type is f64.
721
+ F64,
722
+ /// The value type is v128.
723
+ V128,
724
+ /// The value type is a reference.
725
+ Ref(RefType),
726
+ }
727
+
728
+ impl From<RefType> for ValType {
729
+ #[inline]
730
+ fn from(ty: RefType) -> ValType {
731
+ ValType::Ref(ty)
732
+ }
733
+ }
734
+
735
+ impl std::fmt::Display for ValType {
736
+ fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
737
+ match self {
738
+ ValType::I32 => f.write_str("i32"),
739
+ ValType::I64 => f.write_str("i64"),
740
+ ValType::F32 => f.write_str("f32"),
741
+ ValType::F64 => f.write_str("f64"),
742
+ ValType::V128 => f.write_str("v128"),
743
+ ValType::Ref(r) => std::fmt::Display::fmt(r, f),
744
+ }
745
+ }
746
+ }
747
+
748
+ impl ValType {
749
+ /// Alias for the wasm `funcref` type.
750
+ pub const FUNCREF: ValType = ValType::Ref(RefType::FUNCREF);
751
+
752
+ /// Alias for the wasm `externref` type.
753
+ pub const EXTERNREF: ValType = ValType::Ref(RefType::EXTERNREF);
754
+
755
+ /// Alias for the wasm `exnref` type.
756
+ pub const EXNREF: ValType = ValType::Ref(RefType::EXNREF);
757
+
758
+ /// Returns whether this value type is a "reference type".
759
+ ///
760
+ /// Only reference types are allowed in tables, for example, and with some
761
+ /// instructions. Current reference types include `funcref` and `externref`.
762
+ pub fn is_reference_type(&self) -> bool {
763
+ matches!(self, ValType::Ref(_))
764
+ }
765
+
766
+ /// Get the underlying reference type, if any.
767
+ pub fn as_reference_type(&self) -> Option<RefType> {
768
+ match *self {
769
+ ValType::Ref(r) => Some(r),
770
+ ValType::I32 | ValType::I64 | ValType::F32 | ValType::F64 | ValType::V128 => None,
771
+ }
772
+ }
773
+
774
+ /// Whether the type is defaultable, i.e. it is not a non-nullable reference
775
+ /// type.
776
+ pub fn is_defaultable(&self) -> bool {
777
+ match *self {
778
+ Self::I32 | Self::I64 | Self::F32 | Self::F64 | Self::V128 => true,
779
+ Self::Ref(rt) => rt.is_nullable(),
780
+ }
781
+ }
782
+
783
+ /// Maps any `UnpackedIndex` via the specified closure.
784
+ pub(crate) fn remap_indices(
785
+ &mut self,
786
+ map: &mut dyn FnMut(&mut PackedIndex) -> Result<()>,
787
+ ) -> Result<()> {
788
+ match self {
789
+ ValType::Ref(r) => {
790
+ if let Some(mut idx) = r.type_index() {
791
+ map(&mut idx)?;
792
+ *r = RefType::concrete(r.is_nullable(), idx);
793
+ }
794
+ }
795
+ ValType::I32 | ValType::I64 | ValType::F32 | ValType::F64 | ValType::V128 => {}
796
+ }
797
+ Ok(())
798
+ }
799
+ }
800
+
801
+ /// A reference type.
802
+ ///
803
+ /// The reference types proposal first introduced `externref` and
804
+ /// `funcref`.
805
+ ///
806
+ /// The function references proposal introduced typed function
807
+ /// references.
808
+ ///
809
+ /// The GC proposal introduces heap types: any, eq, i31, struct, array,
810
+ /// nofunc, noextern, none.
811
+ //
812
+ // RefType is a bit-packed enum that fits in a `u24` aka `[u8; 3]`.
813
+ // Note that its content is opaque (and subject to change), but its API
814
+ // is stable.
815
+ //
816
+ // It has the following internal structure:
817
+ //
818
+ // ```
819
+ // [nullable:u1 concrete==1:u1 index:u22]
820
+ // [nullable:u1 concrete==0:u1 abstype:u4 (unused):u18]
821
+ // ```
822
+ //
823
+ // Where
824
+ //
825
+ // - `nullable` determines nullability of the ref,
826
+ //
827
+ // - `concrete` determines if the ref is of a dynamically defined type
828
+ // with an index (encoded in a following bit-packing section) or of a
829
+ // known fixed type,
830
+ //
831
+ // - `index` is the type index,
832
+ //
833
+ // - `abstype` is an enumeration of abstract types:
834
+ //
835
+ // ```
836
+ // 1111 = any
837
+ //
838
+ // 1101 = eq
839
+ // 1000 = i31
840
+ // 1001 = struct
841
+ // 1100 = array
842
+ //
843
+ // 0101 = func
844
+ // 0100 = nofunc
845
+ //
846
+ // 0011 = extern
847
+ // 0010 = noextern
848
+ //
849
+ // 0001 = exn
850
+ //
851
+ // 0000 = none
852
+ // ```
853
+ #[derive(Copy, Clone, PartialEq, Eq, Hash)]
854
+ pub struct RefType([u8; 3]);
855
+
856
+ impl std::fmt::Debug for RefType {
857
+ fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
858
+ match (self.is_nullable(), self.heap_type()) {
859
+ (true, HeapType::Any) => write!(f, "anyref"),
860
+ (false, HeapType::Any) => write!(f, "(ref any)"),
861
+ (true, HeapType::None) => write!(f, "nullref"),
862
+ (false, HeapType::None) => write!(f, "(ref none)"),
863
+ (true, HeapType::NoExtern) => write!(f, "nullexternref"),
864
+ (false, HeapType::NoExtern) => write!(f, "(ref noextern)"),
865
+ (true, HeapType::NoFunc) => write!(f, "nullfuncref"),
866
+ (false, HeapType::NoFunc) => write!(f, "(ref nofunc)"),
867
+ (true, HeapType::Eq) => write!(f, "eqref"),
868
+ (false, HeapType::Eq) => write!(f, "(ref eq)"),
869
+ (true, HeapType::Struct) => write!(f, "structref"),
870
+ (false, HeapType::Struct) => write!(f, "(ref struct)"),
871
+ (true, HeapType::Array) => write!(f, "arrayref"),
872
+ (false, HeapType::Array) => write!(f, "(ref array)"),
873
+ (true, HeapType::I31) => write!(f, "i31ref"),
874
+ (false, HeapType::I31) => write!(f, "(ref i31)"),
875
+ (true, HeapType::Extern) => write!(f, "externref"),
876
+ (false, HeapType::Extern) => write!(f, "(ref extern)"),
877
+ (true, HeapType::Func) => write!(f, "funcref"),
878
+ (false, HeapType::Func) => write!(f, "(ref func)"),
879
+ (true, HeapType::Exn) => write!(f, "exnref"),
880
+ (false, HeapType::Exn) => write!(f, "(ref exn)"),
881
+ (true, HeapType::Concrete(idx)) => write!(f, "(ref null {idx})"),
882
+ (false, HeapType::Concrete(idx)) => write!(f, "(ref {idx})"),
883
+ }
884
+ }
885
+ }
886
+
887
+ impl std::fmt::Display for RefType {
888
+ fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
889
+ std::fmt::Debug::fmt(self, f)
890
+ }
891
+ }
892
+
893
+ // Assert that we can fit indices up to `MAX_WASM_TYPES` inside `RefType`.
894
+ #[test]
895
+ fn can_fit_max_wasm_types_in_ref_type() {
896
+ fn can_roundtrip_index(index: u32) -> bool {
897
+ assert!(RefType::can_represent_type_index(index));
898
+ let rt = RefType::concrete(true, PackedIndex::from_module_index(index).unwrap());
899
+ assert!(rt.is_nullable());
900
+ let actual_index = match rt.type_index() {
901
+ Some(i) => i,
902
+ None => panic!(),
903
+ };
904
+ actual_index.as_module_index() == Some(index)
905
+ }
906
+
907
+ assert!(can_roundtrip_index(crate::limits::MAX_WASM_TYPES as u32));
908
+ assert!(can_roundtrip_index(0b00000000_00001111_00000000_00000000));
909
+ assert!(can_roundtrip_index(0b00000000_00000000_11111111_00000000));
910
+ assert!(can_roundtrip_index(0b00000000_00000000_00000000_11111111));
911
+ assert!(can_roundtrip_index(0));
912
+ }
913
+
914
+ impl RefType {
915
+ // These bits are valid for all `RefType`s.
916
+ const NULLABLE_BIT: u32 = 1 << 23;
917
+ const CONCRETE_BIT: u32 = 1 << 22;
918
+
919
+ // The `abstype` field is valid only when `concrete == 0`.
920
+ const ABSTYPE_MASK: u32 = 0b1111 << 18;
921
+ const ANY_ABSTYPE: u32 = 0b1111 << 18;
922
+ const EQ_ABSTYPE: u32 = 0b1101 << 18;
923
+ const I31_ABSTYPE: u32 = 0b1000 << 18;
924
+ const STRUCT_ABSTYPE: u32 = 0b1001 << 18;
925
+ const ARRAY_ABSTYPE: u32 = 0b1100 << 18;
926
+ const FUNC_ABSTYPE: u32 = 0b0101 << 18;
927
+ const NOFUNC_ABSTYPE: u32 = 0b0100 << 18;
928
+ const EXTERN_ABSTYPE: u32 = 0b0011 << 18;
929
+ const NOEXTERN_ABSTYPE: u32 = 0b0010 << 18;
930
+ const EXN_ABSTYPE: u32 = 0b0001 << 18;
931
+ const NONE_ABSTYPE: u32 = 0b0000 << 18;
932
+
933
+ // The `index` is valid only when `concrete == 1`.
934
+ const INDEX_MASK: u32 = (1 << 22) - 1;
935
+
936
+ /// A nullable untyped function reference aka `(ref null func)` aka
937
+ /// `funcref` aka `anyfunc`.
938
+ pub const FUNCREF: Self = RefType::FUNC.nullable();
939
+
940
+ /// A nullable reference to an extern object aka `(ref null extern)` aka
941
+ /// `externref`.
942
+ pub const EXTERNREF: Self = RefType::EXTERN.nullable();
943
+
944
+ /// A nullable reference to any object aka `(ref null any)` aka `anyref`.
945
+ pub const ANYREF: Self = RefType::ANY.nullable();
946
+
947
+ /// A nullable reference to no object aka `(ref null none)` aka `nullref`.
948
+ pub const NULLREF: Self = RefType::NONE.nullable();
949
+
950
+ /// A nullable reference to a noextern object aka `(ref null noextern)` aka
951
+ /// `nullexternref`.
952
+ pub const NULLEXTERNREF: Self = RefType::NOEXTERN.nullable();
953
+
954
+ /// A nullable reference to a nofunc object aka `(ref null nofunc)` aka
955
+ /// `nullfuncref`.
956
+ pub const NULLFUNCREF: Self = RefType::NOFUNC.nullable();
957
+
958
+ /// A nullable reference to an eq object aka `(ref null eq)` aka `eqref`.
959
+ pub const EQREF: Self = RefType::EQ.nullable();
960
+
961
+ /// A nullable reference to a struct aka `(ref null struct)` aka
962
+ /// `structref`.
963
+ pub const STRUCTREF: Self = RefType::STRUCT.nullable();
964
+
965
+ /// A nullable reference to an array aka `(ref null array)` aka `arrayref`.
966
+ pub const ARRAYREF: Self = RefType::ARRAY.nullable();
967
+
968
+ /// A nullable reference to an i31 object aka `(ref null i31)` aka `i31ref`.
969
+ pub const I31REF: Self = RefType::I31.nullable();
970
+
971
+ /// A nullable reference to an exception object aka `(ref null exn)` aka
972
+ /// `exnref`.
973
+ pub const EXNREF: Self = RefType::EXN.nullable();
974
+
975
+ /// A non-nullable untyped function reference aka `(ref func)`.
976
+ pub const FUNC: Self = RefType::from_u32(Self::FUNC_ABSTYPE);
977
+
978
+ /// A non-nullable reference to an extern object aka `(ref extern)`.
979
+ pub const EXTERN: Self = RefType::from_u32(Self::EXTERN_ABSTYPE);
980
+
981
+ /// A non-nullable reference to any object aka `(ref any)`.
982
+ pub const ANY: Self = RefType::from_u32(Self::ANY_ABSTYPE);
983
+
984
+ /// A non-nullable reference to no object aka `(ref none)`.
985
+ pub const NONE: Self = RefType::from_u32(Self::NONE_ABSTYPE);
986
+
987
+ /// A non-nullable reference to a noextern object aka `(ref noextern)`.
988
+ pub const NOEXTERN: Self = RefType::from_u32(Self::NOEXTERN_ABSTYPE);
989
+
990
+ /// A non-nullable reference to a nofunc object aka `(ref nofunc)`.
991
+ pub const NOFUNC: Self = RefType::from_u32(Self::NOFUNC_ABSTYPE);
992
+
993
+ /// A non-nullable reference to an eq object aka `(ref eq)`.
994
+ pub const EQ: Self = RefType::from_u32(Self::EQ_ABSTYPE);
995
+
996
+ /// A non-nullable reference to a struct aka `(ref struct)`.
997
+ pub const STRUCT: Self = RefType::from_u32(Self::STRUCT_ABSTYPE);
998
+
999
+ /// A non-nullable reference to an array aka `(ref array)`.
1000
+ pub const ARRAY: Self = RefType::from_u32(Self::ARRAY_ABSTYPE);
1001
+
1002
+ /// A non-nullable reference to an i31 object aka `(ref i31)`.
1003
+ pub const I31: Self = RefType::from_u32(Self::I31_ABSTYPE);
1004
+
1005
+ /// A non-nullable reference to an exn object aka `(ref exn)`.
1006
+ pub const EXN: Self = RefType::from_u32(Self::EXN_ABSTYPE);
1007
+
1008
+ const fn can_represent_type_index(index: u32) -> bool {
1009
+ index & Self::INDEX_MASK == index
1010
+ }
1011
+
1012
+ const fn u24_to_u32(bytes: [u8; 3]) -> u32 {
1013
+ let expanded_bytes = [bytes[0], bytes[1], bytes[2], 0];
1014
+ u32::from_le_bytes(expanded_bytes)
1015
+ }
1016
+
1017
+ const fn u32_to_u24(x: u32) -> [u8; 3] {
1018
+ let bytes = x.to_le_bytes();
1019
+ debug_assert!(bytes[3] == 0);
1020
+ [bytes[0], bytes[1], bytes[2]]
1021
+ }
1022
+
1023
+ #[inline]
1024
+ const fn as_u32(&self) -> u32 {
1025
+ Self::u24_to_u32(self.0)
1026
+ }
1027
+
1028
+ #[inline]
1029
+ const fn from_u32(x: u32) -> Self {
1030
+ debug_assert!(x & (0b11111111 << 24) == 0);
1031
+
1032
+ // Either concrete or it must be a known abstract type.
1033
+ debug_assert!(
1034
+ x & Self::CONCRETE_BIT != 0
1035
+ || matches!(
1036
+ x & Self::ABSTYPE_MASK,
1037
+ Self::ANY_ABSTYPE
1038
+ | Self::EQ_ABSTYPE
1039
+ | Self::I31_ABSTYPE
1040
+ | Self::STRUCT_ABSTYPE
1041
+ | Self::ARRAY_ABSTYPE
1042
+ | Self::FUNC_ABSTYPE
1043
+ | Self::NOFUNC_ABSTYPE
1044
+ | Self::EXTERN_ABSTYPE
1045
+ | Self::NOEXTERN_ABSTYPE
1046
+ | Self::NONE_ABSTYPE
1047
+ | Self::EXN_ABSTYPE
1048
+ )
1049
+ );
1050
+
1051
+ RefType(Self::u32_to_u24(x))
1052
+ }
1053
+
1054
+ /// Create a reference to a concrete Wasm-defined type at the given
1055
+ /// index.
1056
+ ///
1057
+ /// Returns `None` when the type index is beyond this crate's
1058
+ /// implementation limits and therefore is not representable.
1059
+ pub fn concrete(nullable: bool, index: PackedIndex) -> Self {
1060
+ let index: u32 = PackedIndex::to_u32(index);
1061
+ debug_assert!(Self::can_represent_type_index(index));
1062
+ let nullable32 = Self::NULLABLE_BIT * nullable as u32;
1063
+ RefType::from_u32(nullable32 | Self::CONCRETE_BIT | index)
1064
+ }
1065
+
1066
+ /// Create a new `RefType`.
1067
+ ///
1068
+ /// Returns `None` when the heap type's type index (if any) is
1069
+ /// beyond this crate's implementation limits and therfore is not
1070
+ /// representable.
1071
+ pub fn new(nullable: bool, heap_type: HeapType) -> Option<Self> {
1072
+ let nullable32 = Self::NULLABLE_BIT * (nullable as u32);
1073
+ match heap_type {
1074
+ HeapType::Concrete(index) => Some(RefType::concrete(nullable, index.pack()?)),
1075
+ HeapType::Func => Some(Self::from_u32(nullable32 | Self::FUNC_ABSTYPE)),
1076
+ HeapType::Extern => Some(Self::from_u32(nullable32 | Self::EXTERN_ABSTYPE)),
1077
+ HeapType::Any => Some(Self::from_u32(nullable32 | Self::ANY_ABSTYPE)),
1078
+ HeapType::None => Some(Self::from_u32(nullable32 | Self::NONE_ABSTYPE)),
1079
+ HeapType::NoExtern => Some(Self::from_u32(nullable32 | Self::NOEXTERN_ABSTYPE)),
1080
+ HeapType::NoFunc => Some(Self::from_u32(nullable32 | Self::NOFUNC_ABSTYPE)),
1081
+ HeapType::Eq => Some(Self::from_u32(nullable32 | Self::EQ_ABSTYPE)),
1082
+ HeapType::Struct => Some(Self::from_u32(nullable32 | Self::STRUCT_ABSTYPE)),
1083
+ HeapType::Array => Some(Self::from_u32(nullable32 | Self::ARRAY_ABSTYPE)),
1084
+ HeapType::I31 => Some(Self::from_u32(nullable32 | Self::I31_ABSTYPE)),
1085
+ HeapType::Exn => Some(Self::from_u32(nullable32 | Self::EXN_ABSTYPE)),
1086
+ }
1087
+ }
1088
+
1089
+ /// Compute the [type difference] between the two given ref types.
1090
+ ///
1091
+ /// [type difference]: https://webassembly.github.io/gc/core/valid/conventions.html#aux-reftypediff
1092
+ pub fn difference(a: RefType, b: RefType) -> RefType {
1093
+ RefType::new(
1094
+ if b.is_nullable() {
1095
+ false
1096
+ } else {
1097
+ a.is_nullable()
1098
+ },
1099
+ a.heap_type(),
1100
+ )
1101
+ .unwrap()
1102
+ }
1103
+
1104
+ /// Is this a reference to an concrete type?
1105
+ pub const fn is_concrete_type_ref(&self) -> bool {
1106
+ self.as_u32() & Self::CONCRETE_BIT != 0
1107
+ }
1108
+
1109
+ /// If this is a reference to a concrete Wasm-defined type, get its
1110
+ /// type index.
1111
+ pub fn type_index(&self) -> Option<PackedIndex> {
1112
+ if self.is_concrete_type_ref() {
1113
+ let index = self.as_u32() & Self::INDEX_MASK;
1114
+ Some(PackedIndex::unchecked_from_u32(index))
1115
+ } else {
1116
+ None
1117
+ }
1118
+ }
1119
+
1120
+ const fn abstype(&self) -> u32 {
1121
+ debug_assert!(!self.is_concrete_type_ref());
1122
+ self.as_u32() & Self::ABSTYPE_MASK
1123
+ }
1124
+
1125
+ /// Is this the abstract untyped function reference type aka `(ref
1126
+ /// null func)` aka `funcref` aka `anyfunc`?
1127
+ pub const fn is_func_ref(&self) -> bool {
1128
+ !self.is_concrete_type_ref() && self.abstype() == Self::FUNC_ABSTYPE
1129
+ }
1130
+
1131
+ /// Is this the abstract external reference type aka `(ref null
1132
+ /// extern)` aka `externref`?
1133
+ pub const fn is_extern_ref(&self) -> bool {
1134
+ !self.is_concrete_type_ref() && self.abstype() == Self::EXTERN_ABSTYPE
1135
+ }
1136
+
1137
+ /// Is this the abstract untyped array refrence type aka `(ref null
1138
+ /// array)` aka `arrayref`?
1139
+ pub const fn is_array_ref(&self) -> bool {
1140
+ !self.is_concrete_type_ref() && self.abstype() == Self::ARRAY_ABSTYPE
1141
+ }
1142
+
1143
+ /// Is this the abstract untyped struct reference type aka `(ref
1144
+ /// null struct)` aka `structref`?
1145
+ pub const fn is_struct_ref(&self) -> bool {
1146
+ !self.is_concrete_type_ref() && self.abstype() == Self::STRUCT_ABSTYPE
1147
+ }
1148
+
1149
+ /// Is this ref type nullable?
1150
+ pub const fn is_nullable(&self) -> bool {
1151
+ self.as_u32() & Self::NULLABLE_BIT != 0
1152
+ }
1153
+
1154
+ /// Get the non-nullable version of this ref type.
1155
+ pub const fn as_non_null(&self) -> Self {
1156
+ Self::from_u32(self.as_u32() & !Self::NULLABLE_BIT)
1157
+ }
1158
+
1159
+ /// Get the nullable version of this ref type.
1160
+ pub const fn nullable(&self) -> Self {
1161
+ Self::from_u32(self.as_u32() | Self::NULLABLE_BIT)
1162
+ }
1163
+
1164
+ /// Get the heap type that this is a reference to.
1165
+ pub fn heap_type(&self) -> HeapType {
1166
+ let s = self.as_u32();
1167
+ if self.is_concrete_type_ref() {
1168
+ HeapType::Concrete(self.type_index().unwrap().unpack())
1169
+ } else {
1170
+ match s & Self::ABSTYPE_MASK {
1171
+ Self::FUNC_ABSTYPE => HeapType::Func,
1172
+ Self::EXTERN_ABSTYPE => HeapType::Extern,
1173
+ Self::ANY_ABSTYPE => HeapType::Any,
1174
+ Self::NONE_ABSTYPE => HeapType::None,
1175
+ Self::NOEXTERN_ABSTYPE => HeapType::NoExtern,
1176
+ Self::NOFUNC_ABSTYPE => HeapType::NoFunc,
1177
+ Self::EQ_ABSTYPE => HeapType::Eq,
1178
+ Self::STRUCT_ABSTYPE => HeapType::Struct,
1179
+ Self::ARRAY_ABSTYPE => HeapType::Array,
1180
+ Self::I31_ABSTYPE => HeapType::I31,
1181
+ Self::EXN_ABSTYPE => HeapType::Exn,
1182
+ _ => unreachable!(),
1183
+ }
1184
+ }
1185
+ }
1186
+
1187
+ // Note that this is similar to `Display for RefType` except that it has
1188
+ // the indexes stubbed out.
1189
+ pub(crate) fn wat(&self) -> &'static str {
1190
+ match (self.is_nullable(), self.heap_type()) {
1191
+ (true, HeapType::Func) => "funcref",
1192
+ (true, HeapType::Extern) => "externref",
1193
+ (true, HeapType::Concrete(_)) => "(ref null $type)",
1194
+ (true, HeapType::Any) => "anyref",
1195
+ (true, HeapType::None) => "nullref",
1196
+ (true, HeapType::NoExtern) => "nullexternref",
1197
+ (true, HeapType::NoFunc) => "nullfuncref",
1198
+ (true, HeapType::Eq) => "eqref",
1199
+ (true, HeapType::Struct) => "structref",
1200
+ (true, HeapType::Array) => "arrayref",
1201
+ (true, HeapType::I31) => "i31ref",
1202
+ (true, HeapType::Exn) => "exnref",
1203
+ (false, HeapType::Func) => "(ref func)",
1204
+ (false, HeapType::Extern) => "(ref extern)",
1205
+ (false, HeapType::Concrete(_)) => "(ref $type)",
1206
+ (false, HeapType::Any) => "(ref any)",
1207
+ (false, HeapType::None) => "(ref none)",
1208
+ (false, HeapType::NoExtern) => "(ref noextern)",
1209
+ (false, HeapType::NoFunc) => "(ref nofunc)",
1210
+ (false, HeapType::Eq) => "(ref eq)",
1211
+ (false, HeapType::Struct) => "(ref struct)",
1212
+ (false, HeapType::Array) => "(ref array)",
1213
+ (false, HeapType::I31) => "(ref i31)",
1214
+ (false, HeapType::Exn) => "(ref exn)",
1215
+ }
1216
+ }
1217
+ }
1218
+
1219
+ /// A heap type.
1220
+ #[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
1221
+ pub enum HeapType {
1222
+ /// A concrete, user-defined type.
1223
+ ///
1224
+ /// Introduced in the function-references proposal.
1225
+ Concrete(UnpackedIndex),
1226
+
1227
+ /// The abstract, untyped (any) function.
1228
+ ///
1229
+ /// Introduced in the references-types proposal.
1230
+ Func,
1231
+
1232
+ /// The abstract, external heap type.
1233
+ ///
1234
+ /// Introduced in the references-types proposal.
1235
+ Extern,
1236
+
1237
+ /// The abstract `any` heap type.
1238
+ ///
1239
+ /// The common supertype (a.k.a. top) of all internal types.
1240
+ ///
1241
+ /// Introduced in the GC proposal.
1242
+ Any,
1243
+
1244
+ /// The abstract `none` heap type.
1245
+ ///
1246
+ /// The common subtype (a.k.a. bottom) of all internal types.
1247
+ ///
1248
+ /// Introduced in the GC proposal.
1249
+ None,
1250
+
1251
+ /// The abstract `noextern` heap type.
1252
+ ///
1253
+ /// The common subtype (a.k.a. bottom) of all external types.
1254
+ ///
1255
+ /// Introduced in the GC proposal.
1256
+ NoExtern,
1257
+
1258
+ /// The abstract `nofunc` heap type.
1259
+ ///
1260
+ /// The common subtype (a.k.a. bottom) of all function types.
1261
+ ///
1262
+ /// Introduced in the GC proposal.
1263
+ NoFunc,
1264
+
1265
+ /// The abstract `eq` heap type.
1266
+ ///
1267
+ /// The common supertype of all heap types on which the `ref.eq`
1268
+ /// instruction is allowed.
1269
+ ///
1270
+ /// Introduced in the GC proposal.
1271
+ Eq,
1272
+
1273
+ /// The abstract `struct` heap type.
1274
+ ///
1275
+ /// The common supertype of all struct types.
1276
+ ///
1277
+ /// Introduced in the GC proposal.
1278
+ Struct,
1279
+
1280
+ /// The abstract `array` heap type.
1281
+ ///
1282
+ /// The common supertype of all array types.
1283
+ ///
1284
+ /// Introduced in the GC proposal.
1285
+ Array,
1286
+
1287
+ /// The abstract `i31` heap type.
1288
+ ///
1289
+ /// It is not expected that Wasm runtimes actually store these
1290
+ /// values on the heap, but unbox them inline into the `i31ref`s
1291
+ /// themselves instead.
1292
+ ///
1293
+ /// Introduced in the GC proposal.
1294
+ I31,
1295
+
1296
+ /// The abstraction `exception` heap type.
1297
+ ///
1298
+ /// Introduced in the exception-handling proposal.
1299
+ Exn,
1300
+ }
1301
+
1302
+ impl ValType {
1303
+ pub(crate) fn is_valtype_byte(byte: u8) -> bool {
1304
+ match byte {
1305
+ 0x7F | 0x7E | 0x7D | 0x7C | 0x7B | 0x70 | 0x6F | 0x64 | 0x63 | 0x6E | 0x71 | 0x72
1306
+ | 0x73 | 0x6D | 0x6B | 0x6A | 0x6C | 0x69 => true,
1307
+ _ => false,
1308
+ }
1309
+ }
1310
+ }
1311
+
1312
+ impl<'a> FromReader<'a> for StorageType {
1313
+ fn from_reader(reader: &mut BinaryReader<'a>) -> Result<Self> {
1314
+ match reader.peek()? {
1315
+ 0x78 => {
1316
+ reader.position += 1;
1317
+ Ok(StorageType::I8)
1318
+ }
1319
+ 0x77 => {
1320
+ reader.position += 1;
1321
+ Ok(StorageType::I16)
1322
+ }
1323
+ _ => Ok(StorageType::Val(reader.read()?)),
1324
+ }
1325
+ }
1326
+ }
1327
+
1328
+ impl<'a> FromReader<'a> for ValType {
1329
+ fn from_reader(reader: &mut BinaryReader<'a>) -> Result<Self> {
1330
+ match reader.peek()? {
1331
+ 0x7F => {
1332
+ reader.position += 1;
1333
+ Ok(ValType::I32)
1334
+ }
1335
+ 0x7E => {
1336
+ reader.position += 1;
1337
+ Ok(ValType::I64)
1338
+ }
1339
+ 0x7D => {
1340
+ reader.position += 1;
1341
+ Ok(ValType::F32)
1342
+ }
1343
+ 0x7C => {
1344
+ reader.position += 1;
1345
+ Ok(ValType::F64)
1346
+ }
1347
+ 0x7B => {
1348
+ reader.position += 1;
1349
+ Ok(ValType::V128)
1350
+ }
1351
+ 0x70 | 0x6F | 0x64 | 0x63 | 0x6E | 0x71 | 0x72 | 0x73 | 0x6D | 0x6B | 0x6A | 0x6C
1352
+ | 0x69 => Ok(ValType::Ref(reader.read()?)),
1353
+ _ => bail!(reader.original_position(), "invalid value type"),
1354
+ }
1355
+ }
1356
+ }
1357
+
1358
+ impl<'a> FromReader<'a> for RefType {
1359
+ fn from_reader(reader: &mut BinaryReader<'a>) -> Result<Self> {
1360
+ match reader.read()? {
1361
+ 0x70 => Ok(RefType::FUNC.nullable()),
1362
+ 0x6F => Ok(RefType::EXTERN.nullable()),
1363
+ 0x6E => Ok(RefType::ANY.nullable()),
1364
+ 0x71 => Ok(RefType::NONE.nullable()),
1365
+ 0x72 => Ok(RefType::NOEXTERN.nullable()),
1366
+ 0x73 => Ok(RefType::NOFUNC.nullable()),
1367
+ 0x6D => Ok(RefType::EQ.nullable()),
1368
+ 0x6B => Ok(RefType::STRUCT.nullable()),
1369
+ 0x6A => Ok(RefType::ARRAY.nullable()),
1370
+ 0x6C => Ok(RefType::I31.nullable()),
1371
+ 0x69 => Ok(RefType::EXN.nullable()),
1372
+ byte @ (0x63 | 0x64) => {
1373
+ let nullable = byte == 0x63;
1374
+ let pos = reader.original_position();
1375
+ RefType::new(nullable, reader.read()?)
1376
+ .ok_or_else(|| crate::BinaryReaderError::new("type index too large", pos))
1377
+ }
1378
+ _ => bail!(reader.original_position(), "malformed reference type"),
1379
+ }
1380
+ }
1381
+ }
1382
+
1383
+ impl<'a> FromReader<'a> for HeapType {
1384
+ fn from_reader(reader: &mut BinaryReader<'a>) -> Result<Self> {
1385
+ match reader.peek()? {
1386
+ 0x70 => {
1387
+ reader.position += 1;
1388
+ Ok(HeapType::Func)
1389
+ }
1390
+ 0x6F => {
1391
+ reader.position += 1;
1392
+ Ok(HeapType::Extern)
1393
+ }
1394
+ 0x6E => {
1395
+ reader.position += 1;
1396
+ Ok(HeapType::Any)
1397
+ }
1398
+ 0x71 => {
1399
+ reader.position += 1;
1400
+ Ok(HeapType::None)
1401
+ }
1402
+ 0x72 => {
1403
+ reader.position += 1;
1404
+ Ok(HeapType::NoExtern)
1405
+ }
1406
+ 0x73 => {
1407
+ reader.position += 1;
1408
+ Ok(HeapType::NoFunc)
1409
+ }
1410
+ 0x6D => {
1411
+ reader.position += 1;
1412
+ Ok(HeapType::Eq)
1413
+ }
1414
+ 0x6B => {
1415
+ reader.position += 1;
1416
+ Ok(HeapType::Struct)
1417
+ }
1418
+ 0x6A => {
1419
+ reader.position += 1;
1420
+ Ok(HeapType::Array)
1421
+ }
1422
+ 0x6C => {
1423
+ reader.position += 1;
1424
+ Ok(HeapType::I31)
1425
+ }
1426
+ 0x69 => {
1427
+ reader.position += 1;
1428
+ Ok(HeapType::Exn)
1429
+ }
1430
+ _ => {
1431
+ let idx = match u32::try_from(reader.read_var_s33()?) {
1432
+ Ok(idx) => idx,
1433
+ Err(_) => {
1434
+ bail!(reader.original_position(), "invalid indexed ref heap type");
1435
+ }
1436
+ };
1437
+ let idx = PackedIndex::from_module_index(idx).ok_or_else(|| {
1438
+ BinaryReaderError::new(
1439
+ "type index greater than implementation limits",
1440
+ reader.original_position(),
1441
+ )
1442
+ })?;
1443
+ Ok(HeapType::Concrete(idx.unpack()))
1444
+ }
1445
+ }
1446
+ }
1447
+ }
1448
+
1449
+ /// Represents a table's type.
1450
+ #[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
1451
+ pub struct TableType {
1452
+ /// The table's element type.
1453
+ pub element_type: RefType,
1454
+ /// Initial size of this table, in elements.
1455
+ pub initial: u32,
1456
+ /// Optional maximum size of the table, in elements.
1457
+ pub maximum: Option<u32>,
1458
+ }
1459
+
1460
+ /// Represents a memory's type.
1461
+ #[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
1462
+ pub struct MemoryType {
1463
+ /// Whether or not this is a 64-bit memory, using i64 as an index. If this
1464
+ /// is false it's a 32-bit memory using i32 as an index.
1465
+ ///
1466
+ /// This is part of the memory64 proposal in WebAssembly.
1467
+ pub memory64: bool,
1468
+
1469
+ /// Whether or not this is a "shared" memory, indicating that it should be
1470
+ /// send-able across threads and the `maximum` field is always present for
1471
+ /// valid types.
1472
+ ///
1473
+ /// This is part of the threads proposal in WebAssembly.
1474
+ pub shared: bool,
1475
+
1476
+ /// Initial size of this memory, in wasm pages.
1477
+ ///
1478
+ /// For 32-bit memories (when `memory64` is `false`) this is guaranteed to
1479
+ /// be at most `u32::MAX` for valid types.
1480
+ pub initial: u64,
1481
+
1482
+ /// Optional maximum size of this memory, in wasm pages.
1483
+ ///
1484
+ /// For 32-bit memories (when `memory64` is `false`) this is guaranteed to
1485
+ /// be at most `u32::MAX` for valid types. This field is always present for
1486
+ /// valid wasm memories when `shared` is `true`.
1487
+ pub maximum: Option<u64>,
1488
+ }
1489
+
1490
+ impl MemoryType {
1491
+ /// Gets the index type for the memory.
1492
+ pub fn index_type(&self) -> ValType {
1493
+ if self.memory64 {
1494
+ ValType::I64
1495
+ } else {
1496
+ ValType::I32
1497
+ }
1498
+ }
1499
+ }
1500
+
1501
+ /// Represents a global's type.
1502
+ #[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
1503
+ pub struct GlobalType {
1504
+ /// The global's type.
1505
+ pub content_type: ValType,
1506
+ /// Whether or not the global is mutable.
1507
+ pub mutable: bool,
1508
+ }
1509
+
1510
+ /// Represents a tag kind.
1511
+ #[derive(Clone, Copy, Debug)]
1512
+ pub enum TagKind {
1513
+ /// The tag is an exception type.
1514
+ Exception,
1515
+ }
1516
+
1517
+ /// A tag's type.
1518
+ #[derive(Clone, Copy, Debug)]
1519
+ pub struct TagType {
1520
+ /// The kind of tag
1521
+ pub kind: TagKind,
1522
+ /// The function type this tag uses.
1523
+ pub func_type_idx: u32,
1524
+ }
1525
+
1526
+ /// A reader for the type section of a WebAssembly module.
1527
+ pub type TypeSectionReader<'a> = SectionLimited<'a, RecGroup>;
1528
+
1529
+ impl<'a> TypeSectionReader<'a> {
1530
+ /// Returns an iterator over this type section which will only yield
1531
+ /// function types and any usage of GC types from the GC proposal will
1532
+ /// be translated into an error.
1533
+ pub fn into_iter_err_on_gc_types(self) -> impl Iterator<Item = Result<FuncType>> + 'a {
1534
+ self.into_iter_with_offsets().map(|item| {
1535
+ let (offset, group) = item?;
1536
+ let mut types = group.into_types();
1537
+ let ty = match (types.next(), types.next()) {
1538
+ (Some(ty), None) => ty,
1539
+ _ => bail!(offset, "gc proposal not supported"),
1540
+ };
1541
+ if !ty.is_final || ty.supertype_idx.is_some() {
1542
+ bail!(offset, "gc proposal not supported");
1543
+ }
1544
+ match ty.composite_type {
1545
+ CompositeType::Func(f) => Ok(f),
1546
+ CompositeType::Array(_) | CompositeType::Struct(_) => {
1547
+ bail!(offset, "gc proposal not supported");
1548
+ }
1549
+ }
1550
+ })
1551
+ }
1552
+ }
1553
+
1554
+ impl<'a> FromReader<'a> for CompositeType {
1555
+ fn from_reader(reader: &mut BinaryReader<'a>) -> Result<Self> {
1556
+ read_composite_type(reader.read_u8()?, reader)
1557
+ }
1558
+ }
1559
+
1560
+ fn read_composite_type(
1561
+ opcode: u8,
1562
+ reader: &mut BinaryReader,
1563
+ ) -> Result<CompositeType, BinaryReaderError> {
1564
+ Ok(match opcode {
1565
+ 0x60 => CompositeType::Func(reader.read()?),
1566
+ 0x5e => CompositeType::Array(reader.read()?),
1567
+ 0x5f => CompositeType::Struct(reader.read()?),
1568
+ x => return reader.invalid_leading_byte(x, "type"),
1569
+ })
1570
+ }
1571
+
1572
+ impl<'a> FromReader<'a> for RecGroup {
1573
+ fn from_reader(reader: &mut BinaryReader<'a>) -> Result<Self> {
1574
+ match reader.peek()? {
1575
+ 0x4e => {
1576
+ reader.read_u8()?;
1577
+ let mut iter = reader.read_iter(MAX_WASM_TYPES, "rec group types")?;
1578
+ let mut types = Vec::with_capacity(iter.size_hint().0);
1579
+ let mut offset = iter.reader.original_position();
1580
+ while let Some(ty) = iter.next() {
1581
+ types.push((offset, ty?));
1582
+ offset = iter.reader.original_position();
1583
+ }
1584
+ Ok(RecGroup::explicit(types))
1585
+ }
1586
+ _ => Ok(RecGroup::implicit(
1587
+ reader.original_position(),
1588
+ reader.read()?,
1589
+ )),
1590
+ }
1591
+ }
1592
+ }
1593
+
1594
+ impl<'a> FromReader<'a> for SubType {
1595
+ fn from_reader(reader: &mut BinaryReader<'a>) -> Result<Self> {
1596
+ let pos = reader.original_position();
1597
+ Ok(match reader.read_u8()? {
1598
+ opcode @ (0x4f | 0x50) => {
1599
+ let idx_iter = reader.read_iter(MAX_WASM_SUPERTYPES, "supertype idxs")?;
1600
+ let idxs = idx_iter.collect::<Result<Vec<u32>>>()?;
1601
+ if idxs.len() > 1 {
1602
+ return Err(BinaryReaderError::new(
1603
+ "multiple supertypes not supported",
1604
+ pos,
1605
+ ));
1606
+ }
1607
+ let supertype_idx = idxs
1608
+ .first()
1609
+ .copied()
1610
+ .map(|idx| {
1611
+ PackedIndex::from_module_index(idx).ok_or_else(|| {
1612
+ BinaryReaderError::new(
1613
+ "type index greater than implementation limits",
1614
+ reader.original_position(),
1615
+ )
1616
+ })
1617
+ })
1618
+ .transpose()?;
1619
+ SubType {
1620
+ is_final: opcode == 0x4f,
1621
+ supertype_idx,
1622
+ composite_type: read_composite_type(reader.read_u8()?, reader)?,
1623
+ }
1624
+ }
1625
+ opcode => SubType {
1626
+ is_final: true,
1627
+ supertype_idx: None,
1628
+ composite_type: read_composite_type(opcode, reader)?,
1629
+ },
1630
+ })
1631
+ }
1632
+ }
1633
+
1634
+ impl<'a> FromReader<'a> for FuncType {
1635
+ fn from_reader(reader: &mut BinaryReader<'a>) -> Result<Self> {
1636
+ let mut params_results = reader
1637
+ .read_iter(MAX_WASM_FUNCTION_PARAMS, "function params")?
1638
+ .collect::<Result<Vec<_>>>()?;
1639
+ let len_params = params_results.len();
1640
+ let results = reader.read_iter(MAX_WASM_FUNCTION_RETURNS, "function returns")?;
1641
+ params_results.reserve(results.size_hint().0);
1642
+ for result in results {
1643
+ params_results.push(result?);
1644
+ }
1645
+ Ok(FuncType::from_raw_parts(params_results.into(), len_params))
1646
+ }
1647
+ }
1648
+
1649
+ impl<'a> FromReader<'a> for FieldType {
1650
+ fn from_reader(reader: &mut BinaryReader<'a>) -> Result<Self> {
1651
+ let element_type = reader.read()?;
1652
+ let mutable = reader.read_u8()?;
1653
+ Ok(FieldType {
1654
+ element_type,
1655
+ mutable: match mutable {
1656
+ 0 => false,
1657
+ 1 => true,
1658
+ _ => bail!(
1659
+ reader.original_position(),
1660
+ "malformed mutability byte for field type"
1661
+ ),
1662
+ },
1663
+ })
1664
+ }
1665
+ }
1666
+
1667
+ impl<'a> FromReader<'a> for ArrayType {
1668
+ fn from_reader(reader: &mut BinaryReader<'a>) -> Result<Self> {
1669
+ Ok(ArrayType(FieldType::from_reader(reader)?))
1670
+ }
1671
+ }
1672
+
1673
+ impl<'a> FromReader<'a> for StructType {
1674
+ fn from_reader(reader: &mut BinaryReader<'a>) -> Result<Self> {
1675
+ let fields = reader.read_iter(MAX_WASM_STRUCT_FIELDS, "struct fields")?;
1676
+ Ok(StructType {
1677
+ fields: fields.collect::<Result<_>>()?,
1678
+ })
1679
+ }
1680
+ }