wasmtime 25.0.1 → 25.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2036) hide show
  1. checksums.yaml +4 -4
  2. data/Cargo.lock +89 -80
  3. data/ext/Cargo.toml +7 -7
  4. data/ext/cargo-vendor/anyhow-1.0.89/.cargo-checksum.json +1 -0
  5. data/ext/cargo-vendor/anyhow-1.0.89/Cargo.toml +126 -0
  6. data/ext/cargo-vendor/anyhow-1.0.89/README.md +181 -0
  7. data/ext/cargo-vendor/anyhow-1.0.89/build/probe.rs +35 -0
  8. data/ext/cargo-vendor/anyhow-1.0.89/build.rs +192 -0
  9. data/ext/cargo-vendor/anyhow-1.0.89/src/backtrace.rs +411 -0
  10. data/ext/cargo-vendor/anyhow-1.0.89/src/chain.rs +102 -0
  11. data/ext/cargo-vendor/anyhow-1.0.89/src/context.rs +193 -0
  12. data/ext/cargo-vendor/anyhow-1.0.89/src/error.rs +1027 -0
  13. data/ext/cargo-vendor/anyhow-1.0.89/src/kind.rs +121 -0
  14. data/ext/cargo-vendor/anyhow-1.0.89/src/lib.rs +731 -0
  15. data/ext/cargo-vendor/anyhow-1.0.89/src/wrapper.rs +84 -0
  16. data/ext/cargo-vendor/anyhow-1.0.89/tests/compiletest.rs +7 -0
  17. data/ext/cargo-vendor/anyhow-1.0.89/tests/test_autotrait.rs +34 -0
  18. data/ext/cargo-vendor/anyhow-1.0.89/tests/test_backtrace.rs +15 -0
  19. data/ext/cargo-vendor/anyhow-1.0.89/tests/test_ensure.rs +741 -0
  20. data/ext/cargo-vendor/anyhow-1.0.89/tests/test_fmt.rs +93 -0
  21. data/ext/cargo-vendor/async-timer-1.0.0-beta.15/.cargo-checksum.json +1 -0
  22. data/ext/cargo-vendor/async-timer-1.0.0-beta.15/Cargo.toml +99 -0
  23. data/ext/cargo-vendor/async-timer-1.0.0-beta.15/src/timer/async_tokio1.rs +308 -0
  24. data/ext/cargo-vendor/cranelift-bforest-0.112.2/.cargo-checksum.json +1 -0
  25. data/ext/cargo-vendor/cranelift-bforest-0.112.2/Cargo.toml +59 -0
  26. data/ext/cargo-vendor/cranelift-bitset-0.112.2/.cargo-checksum.json +1 -0
  27. data/ext/cargo-vendor/cranelift-bitset-0.112.2/Cargo.toml +74 -0
  28. data/ext/cargo-vendor/cranelift-codegen-0.112.2/.cargo-checksum.json +1 -0
  29. data/ext/cargo-vendor/cranelift-codegen-0.112.2/Cargo.toml +222 -0
  30. data/ext/cargo-vendor/cranelift-codegen-meta-0.112.2/.cargo-checksum.json +1 -0
  31. data/ext/cargo-vendor/cranelift-codegen-meta-0.112.2/Cargo.toml +54 -0
  32. data/ext/cargo-vendor/cranelift-codegen-shared-0.112.2/.cargo-checksum.json +1 -0
  33. data/ext/cargo-vendor/cranelift-codegen-shared-0.112.2/Cargo.toml +32 -0
  34. data/ext/cargo-vendor/cranelift-control-0.112.2/.cargo-checksum.json +1 -0
  35. data/ext/cargo-vendor/cranelift-control-0.112.2/Cargo.toml +43 -0
  36. data/ext/cargo-vendor/cranelift-entity-0.112.2/.cargo-checksum.json +1 -0
  37. data/ext/cargo-vendor/cranelift-entity-0.112.2/Cargo.toml +75 -0
  38. data/ext/cargo-vendor/cranelift-frontend-0.112.2/.cargo-checksum.json +1 -0
  39. data/ext/cargo-vendor/cranelift-frontend-0.112.2/Cargo.toml +97 -0
  40. data/ext/cargo-vendor/cranelift-isle-0.112.2/.cargo-checksum.json +1 -0
  41. data/ext/cargo-vendor/cranelift-isle-0.112.2/Cargo.toml +69 -0
  42. data/ext/cargo-vendor/cranelift-native-0.112.2/.cargo-checksum.json +1 -0
  43. data/ext/cargo-vendor/cranelift-native-0.112.2/Cargo.toml +52 -0
  44. data/ext/cargo-vendor/cranelift-wasm-0.112.2/.cargo-checksum.json +1 -0
  45. data/ext/cargo-vendor/cranelift-wasm-0.112.2/Cargo.toml +128 -0
  46. data/ext/cargo-vendor/pulley-interpreter-0.1.2/.cargo-checksum.json +1 -0
  47. data/ext/cargo-vendor/pulley-interpreter-0.1.2/Cargo.toml +85 -0
  48. data/ext/cargo-vendor/tokio-1.40.0/.cargo-checksum.json +1 -0
  49. data/ext/cargo-vendor/tokio-1.40.0/CHANGELOG.md +3574 -0
  50. data/ext/cargo-vendor/tokio-1.40.0/Cargo.toml +804 -0
  51. data/ext/cargo-vendor/tokio-1.40.0/README.md +252 -0
  52. data/ext/cargo-vendor/tokio-1.40.0/src/fs/file.rs +978 -0
  53. data/ext/cargo-vendor/tokio-1.40.0/src/fs/read_dir.rs +357 -0
  54. data/ext/cargo-vendor/tokio-1.40.0/src/fs/try_exists.rs +28 -0
  55. data/ext/cargo-vendor/tokio-1.40.0/src/future/maybe_done.rs +123 -0
  56. data/ext/cargo-vendor/tokio-1.40.0/src/io/async_fd.rs +1358 -0
  57. data/ext/cargo-vendor/tokio-1.40.0/src/io/async_read.rs +132 -0
  58. data/ext/cargo-vendor/tokio-1.40.0/src/io/blocking.rs +294 -0
  59. data/ext/cargo-vendor/tokio-1.40.0/src/io/bsd/poll_aio.rs +197 -0
  60. data/ext/cargo-vendor/tokio-1.40.0/src/io/mod.rs +292 -0
  61. data/ext/cargo-vendor/tokio-1.40.0/src/io/poll_evented.rs +305 -0
  62. data/ext/cargo-vendor/tokio-1.40.0/src/io/seek.rs +57 -0
  63. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/buf_reader.rs +311 -0
  64. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/buf_writer.rs +310 -0
  65. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/chain.rs +144 -0
  66. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/copy.rs +295 -0
  67. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/copy_bidirectional.rs +137 -0
  68. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/copy_buf.rs +108 -0
  69. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/empty.rs +164 -0
  70. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/lines.rs +145 -0
  71. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/mem.rs +429 -0
  72. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/mod.rs +111 -0
  73. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/read.rs +55 -0
  74. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/read_buf.rs +72 -0
  75. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/read_exact.rs +69 -0
  76. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/read_int.rs +158 -0
  77. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/read_line.rs +119 -0
  78. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/read_to_end.rs +143 -0
  79. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/read_to_string.rs +78 -0
  80. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/read_until.rs +80 -0
  81. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/repeat.rs +75 -0
  82. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/sink.rs +94 -0
  83. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/split.rs +121 -0
  84. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/take.rs +138 -0
  85. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/write_all.rs +55 -0
  86. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/write_all_buf.rs +64 -0
  87. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/write_buf.rs +55 -0
  88. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/write_int.rs +151 -0
  89. data/ext/cargo-vendor/tokio-1.40.0/src/lib.rs +696 -0
  90. data/ext/cargo-vendor/tokio-1.40.0/src/loom/mocked.rs +58 -0
  91. data/ext/cargo-vendor/tokio-1.40.0/src/loom/std/atomic_u16.rs +48 -0
  92. data/ext/cargo-vendor/tokio-1.40.0/src/loom/std/atomic_u32.rs +48 -0
  93. data/ext/cargo-vendor/tokio-1.40.0/src/loom/std/atomic_usize.rs +60 -0
  94. data/ext/cargo-vendor/tokio-1.40.0/src/loom/std/mutex.rs +44 -0
  95. data/ext/cargo-vendor/tokio-1.40.0/src/macros/mod.rs +36 -0
  96. data/ext/cargo-vendor/tokio-1.40.0/src/macros/select.rs +1261 -0
  97. data/ext/cargo-vendor/tokio-1.40.0/src/net/addr.rs +333 -0
  98. data/ext/cargo-vendor/tokio-1.40.0/src/net/tcp/listener.rs +451 -0
  99. data/ext/cargo-vendor/tokio-1.40.0/src/net/tcp/stream.rs +1424 -0
  100. data/ext/cargo-vendor/tokio-1.40.0/src/net/udp.rs +2049 -0
  101. data/ext/cargo-vendor/tokio-1.40.0/src/net/unix/datagram/socket.rs +1595 -0
  102. data/ext/cargo-vendor/tokio-1.40.0/src/net/unix/listener.rs +240 -0
  103. data/ext/cargo-vendor/tokio-1.40.0/src/process/mod.rs +1690 -0
  104. data/ext/cargo-vendor/tokio-1.40.0/src/process/unix/pidfd_reaper.rs +322 -0
  105. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/blocking/pool.rs +608 -0
  106. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/blocking/schedule.rs +70 -0
  107. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/builder.rs +1456 -0
  108. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/config.rs +49 -0
  109. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/coop.rs +323 -0
  110. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/io/registration.rs +259 -0
  111. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/mod.rs +417 -0
  112. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/scheduler/current_thread/mod.rs +795 -0
  113. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/scheduler/mod.rs +283 -0
  114. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/scheduler/multi_thread/handle.rs +84 -0
  115. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/scheduler/multi_thread/worker.rs +1261 -0
  116. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/scheduler/multi_thread_alt/handle.rs +85 -0
  117. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/scheduler/multi_thread_alt/worker.rs +1604 -0
  118. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/task/core.rs +496 -0
  119. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/task/error.rs +202 -0
  120. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/task/harness.rs +532 -0
  121. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/task/id.rs +99 -0
  122. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/task/join.rs +378 -0
  123. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/task/mod.rs +546 -0
  124. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/task_hooks.rs +36 -0
  125. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/tests/loom_multi_thread.rs +462 -0
  126. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/tests/loom_multi_thread_alt.rs +572 -0
  127. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/tests/mod.rs +82 -0
  128. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/tests/queue.rs +293 -0
  129. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/tests/task.rs +455 -0
  130. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/time/mod.rs +513 -0
  131. data/ext/cargo-vendor/tokio-1.40.0/src/sync/batch_semaphore.rs +780 -0
  132. data/ext/cargo-vendor/tokio-1.40.0/src/sync/broadcast.rs +1541 -0
  133. data/ext/cargo-vendor/tokio-1.40.0/src/sync/mpsc/chan.rs +600 -0
  134. data/ext/cargo-vendor/tokio-1.40.0/src/sync/mpsc/error.rs +169 -0
  135. data/ext/cargo-vendor/tokio-1.40.0/src/sync/mpsc/mod.rs +140 -0
  136. data/ext/cargo-vendor/tokio-1.40.0/src/sync/notify.rs +1218 -0
  137. data/ext/cargo-vendor/tokio-1.40.0/src/sync/oneshot.rs +1408 -0
  138. data/ext/cargo-vendor/tokio-1.40.0/src/task/consume_budget.rs +41 -0
  139. data/ext/cargo-vendor/tokio-1.40.0/src/task/join_set.rs +798 -0
  140. data/ext/cargo-vendor/tokio-1.40.0/src/task/local.rs +1257 -0
  141. data/ext/cargo-vendor/tokio-1.40.0/src/task/spawn.rs +207 -0
  142. data/ext/cargo-vendor/tokio-1.40.0/src/task/yield_now.rs +64 -0
  143. data/ext/cargo-vendor/tokio-1.40.0/src/time/interval.rs +644 -0
  144. data/ext/cargo-vendor/tokio-1.40.0/src/time/sleep.rs +453 -0
  145. data/ext/cargo-vendor/tokio-1.40.0/src/util/bit.rs +64 -0
  146. data/ext/cargo-vendor/tokio-1.40.0/src/util/sync_wrapper.rs +37 -0
  147. data/ext/cargo-vendor/tokio-1.40.0/tests/async_send_sync.rs +759 -0
  148. data/ext/cargo-vendor/tokio-1.40.0/tests/io_async_fd.rs +855 -0
  149. data/ext/cargo-vendor/tokio-1.40.0/tests/io_copy.rs +101 -0
  150. data/ext/cargo-vendor/tokio-1.40.0/tests/io_write_all_buf.rs +145 -0
  151. data/ext/cargo-vendor/tokio-1.40.0/tests/macros_join.rs +176 -0
  152. data/ext/cargo-vendor/tokio-1.40.0/tests/sync_mpsc.rs +1456 -0
  153. data/ext/cargo-vendor/tokio-1.40.0/tests/task_abort.rs +332 -0
  154. data/ext/cargo-vendor/tokio-1.40.0/tests/task_hooks.rs +76 -0
  155. data/ext/cargo-vendor/tokio-1.40.0/tests/task_join_set.rs +347 -0
  156. data/ext/cargo-vendor/tokio-1.40.0/tests/uds_stream.rs +435 -0
  157. data/ext/cargo-vendor/wasi-common-25.0.2/.cargo-checksum.json +1 -0
  158. data/ext/cargo-vendor/wasi-common-25.0.2/Cargo.toml +242 -0
  159. data/ext/cargo-vendor/wasm-encoder-0.218.0/.cargo-checksum.json +1 -0
  160. data/ext/cargo-vendor/wasm-encoder-0.218.0/Cargo.toml +65 -0
  161. data/ext/cargo-vendor/wasm-encoder-0.218.0/README.md +80 -0
  162. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/component/aliases.rs +160 -0
  163. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/component/builder.rs +467 -0
  164. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/component/canonicals.rs +176 -0
  165. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/component/components.rs +29 -0
  166. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/component/exports.rs +129 -0
  167. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/component/imports.rs +169 -0
  168. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/component/instances.rs +199 -0
  169. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/component/modules.rs +29 -0
  170. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/component/names.rs +155 -0
  171. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/component/start.rs +52 -0
  172. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/component/types.rs +774 -0
  173. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/component.rs +168 -0
  174. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/branch_hints.rs +125 -0
  175. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/code.rs +4032 -0
  176. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/custom.rs +73 -0
  177. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/data.rs +186 -0
  178. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/dump.rs +627 -0
  179. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/elements.rs +224 -0
  180. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/exports.rs +85 -0
  181. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/functions.rs +63 -0
  182. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/globals.rs +100 -0
  183. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/imports.rs +143 -0
  184. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/linking.rs +263 -0
  185. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/memories.rs +115 -0
  186. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/names.rs +304 -0
  187. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/producers.rs +181 -0
  188. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/start.rs +39 -0
  189. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/tables.rs +129 -0
  190. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/tags.rs +85 -0
  191. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/types.rs +717 -0
  192. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core.rs +175 -0
  193. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/lib.rs +218 -0
  194. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/raw.rs +30 -0
  195. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/reencode/component.rs +1344 -0
  196. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/reencode.rs +1958 -0
  197. data/ext/cargo-vendor/wasmtime-25.0.2/.cargo-checksum.json +1 -0
  198. data/ext/cargo-vendor/wasmtime-25.0.2/Cargo.toml +407 -0
  199. data/ext/cargo-vendor/wasmtime-25.0.2/src/runtime/type_registry.rs +1233 -0
  200. data/ext/cargo-vendor/wasmtime-25.0.2/src/runtime/vm/traphandlers/backtrace.rs +287 -0
  201. data/ext/cargo-vendor/wasmtime-asm-macros-25.0.2/.cargo-checksum.json +1 -0
  202. data/ext/cargo-vendor/wasmtime-asm-macros-25.0.2/Cargo.toml +33 -0
  203. data/ext/cargo-vendor/wasmtime-cache-25.0.2/.cargo-checksum.json +1 -0
  204. data/ext/cargo-vendor/wasmtime-cache-25.0.2/Cargo.toml +112 -0
  205. data/ext/cargo-vendor/wasmtime-component-macro-25.0.2/.cargo-checksum.json +1 -0
  206. data/ext/cargo-vendor/wasmtime-component-macro-25.0.2/Cargo.toml +115 -0
  207. data/ext/cargo-vendor/wasmtime-component-util-25.0.2/.cargo-checksum.json +1 -0
  208. data/ext/cargo-vendor/wasmtime-component-util-25.0.2/Cargo.toml +36 -0
  209. data/ext/cargo-vendor/wasmtime-cranelift-25.0.2/.cargo-checksum.json +1 -0
  210. data/ext/cargo-vendor/wasmtime-cranelift-25.0.2/Cargo.toml +137 -0
  211. data/ext/cargo-vendor/wasmtime-environ-25.0.2/.cargo-checksum.json +1 -0
  212. data/ext/cargo-vendor/wasmtime-environ-25.0.2/Cargo.lock +792 -0
  213. data/ext/cargo-vendor/wasmtime-environ-25.0.2/Cargo.toml +195 -0
  214. data/ext/cargo-vendor/wasmtime-environ-25.0.2/src/compile/module_environ.rs +1267 -0
  215. data/ext/cargo-vendor/wasmtime-fiber-25.0.2/.cargo-checksum.json +1 -0
  216. data/ext/cargo-vendor/wasmtime-fiber-25.0.2/Cargo.toml +84 -0
  217. data/ext/cargo-vendor/wasmtime-jit-debug-25.0.2/.cargo-checksum.json +1 -0
  218. data/ext/cargo-vendor/wasmtime-jit-debug-25.0.2/Cargo.toml +86 -0
  219. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-25.0.2/.cargo-checksum.json +1 -0
  220. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-25.0.2/Cargo.toml +71 -0
  221. data/ext/cargo-vendor/wasmtime-slab-25.0.2/.cargo-checksum.json +1 -0
  222. data/ext/cargo-vendor/wasmtime-slab-25.0.2/Cargo.toml +50 -0
  223. data/ext/cargo-vendor/wasmtime-types-25.0.2/.cargo-checksum.json +1 -0
  224. data/ext/cargo-vendor/wasmtime-types-25.0.2/Cargo.toml +80 -0
  225. data/ext/cargo-vendor/wasmtime-versioned-export-macros-25.0.2/.cargo-checksum.json +1 -0
  226. data/ext/cargo-vendor/wasmtime-versioned-export-macros-25.0.2/Cargo.toml +41 -0
  227. data/ext/cargo-vendor/wasmtime-wasi-25.0.2/.cargo-checksum.json +1 -0
  228. data/ext/cargo-vendor/wasmtime-wasi-25.0.2/Cargo.toml +224 -0
  229. data/ext/cargo-vendor/wasmtime-winch-25.0.2/.cargo-checksum.json +1 -0
  230. data/ext/cargo-vendor/wasmtime-winch-25.0.2/Cargo.toml +100 -0
  231. data/ext/cargo-vendor/wasmtime-wit-bindgen-25.0.2/.cargo-checksum.json +1 -0
  232. data/ext/cargo-vendor/wasmtime-wit-bindgen-25.0.2/Cargo.toml +66 -0
  233. data/ext/cargo-vendor/wast-218.0.0/.cargo-checksum.json +1 -0
  234. data/ext/cargo-vendor/wast-218.0.0/Cargo.toml +101 -0
  235. data/ext/cargo-vendor/wast-218.0.0/src/component/binary.rs +878 -0
  236. data/ext/cargo-vendor/wast-218.0.0/src/component/component.rs +329 -0
  237. data/ext/cargo-vendor/wast-218.0.0/src/component/expand.rs +896 -0
  238. data/ext/cargo-vendor/wast-218.0.0/src/component/func.rs +537 -0
  239. data/ext/cargo-vendor/wast-218.0.0/src/component/resolve.rs +1075 -0
  240. data/ext/cargo-vendor/wast-218.0.0/src/component/types.rs +1003 -0
  241. data/ext/cargo-vendor/wast-218.0.0/src/core/binary.rs +1495 -0
  242. data/ext/cargo-vendor/wast-218.0.0/src/core/expr.rs +2225 -0
  243. data/ext/cargo-vendor/wast-218.0.0/src/core/resolve/deinline_import_export.rs +232 -0
  244. data/ext/cargo-vendor/wast-218.0.0/src/core/resolve/names.rs +868 -0
  245. data/ext/cargo-vendor/wast-218.0.0/src/core/resolve/types.rs +274 -0
  246. data/ext/cargo-vendor/wast-218.0.0/src/core/table.rs +308 -0
  247. data/ext/cargo-vendor/wast-218.0.0/src/core/types.rs +1117 -0
  248. data/ext/cargo-vendor/wast-218.0.0/src/lib.rs +566 -0
  249. data/ext/cargo-vendor/wast-218.0.0/src/wast.rs +567 -0
  250. data/ext/cargo-vendor/wat-1.218.0/.cargo-checksum.json +1 -0
  251. data/ext/cargo-vendor/wat-1.218.0/Cargo.toml +56 -0
  252. data/ext/cargo-vendor/wiggle-25.0.2/.cargo-checksum.json +1 -0
  253. data/ext/cargo-vendor/wiggle-25.0.2/Cargo.toml +119 -0
  254. data/ext/cargo-vendor/wiggle-generate-25.0.2/.cargo-checksum.json +1 -0
  255. data/ext/cargo-vendor/wiggle-generate-25.0.2/Cargo.toml +85 -0
  256. data/ext/cargo-vendor/wiggle-macro-25.0.2/.cargo-checksum.json +1 -0
  257. data/ext/cargo-vendor/wiggle-macro-25.0.2/Cargo.toml +78 -0
  258. data/ext/cargo-vendor/winch-codegen-0.23.2/.cargo-checksum.json +1 -0
  259. data/ext/cargo-vendor/winch-codegen-0.23.2/Cargo.toml +95 -0
  260. data/lib/wasmtime/version.rb +1 -1
  261. metadata +1816 -1777
  262. data/ext/cargo-vendor/anyhow-1.0.86/.cargo-checksum.json +0 -1
  263. data/ext/cargo-vendor/anyhow-1.0.86/Cargo.toml +0 -130
  264. data/ext/cargo-vendor/anyhow-1.0.86/README.md +0 -181
  265. data/ext/cargo-vendor/anyhow-1.0.86/build/probe.rs +0 -35
  266. data/ext/cargo-vendor/anyhow-1.0.86/build.rs +0 -179
  267. data/ext/cargo-vendor/anyhow-1.0.86/src/backtrace.rs +0 -406
  268. data/ext/cargo-vendor/anyhow-1.0.86/src/chain.rs +0 -102
  269. data/ext/cargo-vendor/anyhow-1.0.86/src/context.rs +0 -193
  270. data/ext/cargo-vendor/anyhow-1.0.86/src/error.rs +0 -1024
  271. data/ext/cargo-vendor/anyhow-1.0.86/src/kind.rs +0 -121
  272. data/ext/cargo-vendor/anyhow-1.0.86/src/lib.rs +0 -730
  273. data/ext/cargo-vendor/anyhow-1.0.86/src/wrapper.rs +0 -84
  274. data/ext/cargo-vendor/anyhow-1.0.86/tests/compiletest.rs +0 -7
  275. data/ext/cargo-vendor/anyhow-1.0.86/tests/test_autotrait.rs +0 -15
  276. data/ext/cargo-vendor/anyhow-1.0.86/tests/test_backtrace.rs +0 -15
  277. data/ext/cargo-vendor/anyhow-1.0.86/tests/test_ensure.rs +0 -741
  278. data/ext/cargo-vendor/anyhow-1.0.86/tests/test_fmt.rs +0 -94
  279. data/ext/cargo-vendor/async-timer-1.0.0-beta.14/.cargo-checksum.json +0 -1
  280. data/ext/cargo-vendor/async-timer-1.0.0-beta.14/Cargo.toml +0 -78
  281. data/ext/cargo-vendor/async-timer-1.0.0-beta.14/src/timer/async_tokio1.rs +0 -299
  282. data/ext/cargo-vendor/cranelift-bforest-0.112.1/.cargo-checksum.json +0 -1
  283. data/ext/cargo-vendor/cranelift-bforest-0.112.1/Cargo.toml +0 -59
  284. data/ext/cargo-vendor/cranelift-bitset-0.112.1/.cargo-checksum.json +0 -1
  285. data/ext/cargo-vendor/cranelift-bitset-0.112.1/Cargo.toml +0 -74
  286. data/ext/cargo-vendor/cranelift-codegen-0.112.1/.cargo-checksum.json +0 -1
  287. data/ext/cargo-vendor/cranelift-codegen-0.112.1/Cargo.toml +0 -222
  288. data/ext/cargo-vendor/cranelift-codegen-meta-0.112.1/.cargo-checksum.json +0 -1
  289. data/ext/cargo-vendor/cranelift-codegen-meta-0.112.1/Cargo.toml +0 -54
  290. data/ext/cargo-vendor/cranelift-codegen-shared-0.112.1/.cargo-checksum.json +0 -1
  291. data/ext/cargo-vendor/cranelift-codegen-shared-0.112.1/Cargo.toml +0 -32
  292. data/ext/cargo-vendor/cranelift-control-0.112.1/.cargo-checksum.json +0 -1
  293. data/ext/cargo-vendor/cranelift-control-0.112.1/Cargo.toml +0 -43
  294. data/ext/cargo-vendor/cranelift-entity-0.112.1/.cargo-checksum.json +0 -1
  295. data/ext/cargo-vendor/cranelift-entity-0.112.1/Cargo.toml +0 -75
  296. data/ext/cargo-vendor/cranelift-frontend-0.112.1/.cargo-checksum.json +0 -1
  297. data/ext/cargo-vendor/cranelift-frontend-0.112.1/Cargo.toml +0 -97
  298. data/ext/cargo-vendor/cranelift-isle-0.112.1/.cargo-checksum.json +0 -1
  299. data/ext/cargo-vendor/cranelift-isle-0.112.1/Cargo.toml +0 -69
  300. data/ext/cargo-vendor/cranelift-native-0.112.1/.cargo-checksum.json +0 -1
  301. data/ext/cargo-vendor/cranelift-native-0.112.1/Cargo.toml +0 -52
  302. data/ext/cargo-vendor/cranelift-wasm-0.112.1/.cargo-checksum.json +0 -1
  303. data/ext/cargo-vendor/cranelift-wasm-0.112.1/Cargo.toml +0 -128
  304. data/ext/cargo-vendor/pulley-interpreter-0.1.1/.cargo-checksum.json +0 -1
  305. data/ext/cargo-vendor/pulley-interpreter-0.1.1/Cargo.toml +0 -85
  306. data/ext/cargo-vendor/tokio-1.39.3/.cargo-checksum.json +0 -1
  307. data/ext/cargo-vendor/tokio-1.39.3/CHANGELOG.md +0 -3525
  308. data/ext/cargo-vendor/tokio-1.39.3/Cargo.toml +0 -800
  309. data/ext/cargo-vendor/tokio-1.39.3/README.md +0 -252
  310. data/ext/cargo-vendor/tokio-1.39.3/src/fs/file.rs +0 -979
  311. data/ext/cargo-vendor/tokio-1.39.3/src/fs/read_dir.rs +0 -358
  312. data/ext/cargo-vendor/tokio-1.39.3/src/fs/try_exists.rs +0 -34
  313. data/ext/cargo-vendor/tokio-1.39.3/src/future/maybe_done.rs +0 -71
  314. data/ext/cargo-vendor/tokio-1.39.3/src/io/async_fd.rs +0 -1359
  315. data/ext/cargo-vendor/tokio-1.39.3/src/io/async_read.rs +0 -131
  316. data/ext/cargo-vendor/tokio-1.39.3/src/io/blocking.rs +0 -294
  317. data/ext/cargo-vendor/tokio-1.39.3/src/io/bsd/poll_aio.rs +0 -197
  318. data/ext/cargo-vendor/tokio-1.39.3/src/io/mod.rs +0 -292
  319. data/ext/cargo-vendor/tokio-1.39.3/src/io/poll_evented.rs +0 -304
  320. data/ext/cargo-vendor/tokio-1.39.3/src/io/seek.rs +0 -57
  321. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/buf_reader.rs +0 -311
  322. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/buf_writer.rs +0 -310
  323. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/chain.rs +0 -144
  324. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/copy.rs +0 -295
  325. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/copy_bidirectional.rs +0 -137
  326. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/copy_buf.rs +0 -108
  327. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/empty.rs +0 -164
  328. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/lines.rs +0 -145
  329. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/mem.rs +0 -374
  330. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/mod.rs +0 -111
  331. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/read.rs +0 -55
  332. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/read_buf.rs +0 -72
  333. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/read_exact.rs +0 -69
  334. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/read_int.rs +0 -159
  335. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/read_line.rs +0 -119
  336. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/read_to_end.rs +0 -143
  337. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/read_to_string.rs +0 -78
  338. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/read_until.rs +0 -80
  339. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/repeat.rs +0 -75
  340. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/sink.rs +0 -94
  341. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/split.rs +0 -121
  342. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/take.rs +0 -138
  343. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/write_all.rs +0 -55
  344. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/write_all_buf.rs +0 -56
  345. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/write_buf.rs +0 -55
  346. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/write_int.rs +0 -152
  347. data/ext/cargo-vendor/tokio-1.39.3/src/lib.rs +0 -690
  348. data/ext/cargo-vendor/tokio-1.39.3/src/loom/mocked.rs +0 -53
  349. data/ext/cargo-vendor/tokio-1.39.3/src/loom/std/atomic_u16.rs +0 -45
  350. data/ext/cargo-vendor/tokio-1.39.3/src/loom/std/atomic_u32.rs +0 -45
  351. data/ext/cargo-vendor/tokio-1.39.3/src/loom/std/atomic_usize.rs +0 -57
  352. data/ext/cargo-vendor/tokio-1.39.3/src/loom/std/mutex.rs +0 -36
  353. data/ext/cargo-vendor/tokio-1.39.3/src/macros/mod.rs +0 -39
  354. data/ext/cargo-vendor/tokio-1.39.3/src/macros/ready.rs +0 -8
  355. data/ext/cargo-vendor/tokio-1.39.3/src/macros/select.rs +0 -1261
  356. data/ext/cargo-vendor/tokio-1.39.3/src/net/addr.rs +0 -333
  357. data/ext/cargo-vendor/tokio-1.39.3/src/net/tcp/listener.rs +0 -451
  358. data/ext/cargo-vendor/tokio-1.39.3/src/net/tcp/stream.rs +0 -1424
  359. data/ext/cargo-vendor/tokio-1.39.3/src/net/udp.rs +0 -2049
  360. data/ext/cargo-vendor/tokio-1.39.3/src/net/unix/datagram/socket.rs +0 -1595
  361. data/ext/cargo-vendor/tokio-1.39.3/src/net/unix/listener.rs +0 -240
  362. data/ext/cargo-vendor/tokio-1.39.3/src/process/mod.rs +0 -1686
  363. data/ext/cargo-vendor/tokio-1.39.3/src/process/unix/pidfd_reaper.rs +0 -322
  364. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/blocking/pool.rs +0 -608
  365. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/blocking/schedule.rs +0 -60
  366. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/builder.rs +0 -1352
  367. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/config.rs +0 -43
  368. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/coop.rs +0 -323
  369. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/io/registration.rs +0 -259
  370. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/mod.rs +0 -410
  371. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/scheduler/current_thread/mod.rs +0 -772
  372. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/scheduler/mod.rs +0 -271
  373. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/scheduler/multi_thread/handle.rs +0 -74
  374. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/scheduler/multi_thread/worker.rs +0 -1260
  375. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/scheduler/multi_thread_alt/handle.rs +0 -75
  376. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/scheduler/multi_thread_alt/worker.rs +0 -1603
  377. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/task/core.rs +0 -494
  378. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/task/error.rs +0 -169
  379. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/task/harness.rs +0 -517
  380. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/task/id.rs +0 -98
  381. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/task/join.rs +0 -377
  382. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/task/mod.rs +0 -537
  383. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/tests/loom_multi_thread.rs +0 -462
  384. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/tests/loom_multi_thread_alt.rs +0 -572
  385. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/tests/mod.rs +0 -76
  386. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/tests/queue.rs +0 -287
  387. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/tests/task.rs +0 -353
  388. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/time/mod.rs +0 -474
  389. data/ext/cargo-vendor/tokio-1.39.3/src/sync/batch_semaphore.rs +0 -779
  390. data/ext/cargo-vendor/tokio-1.39.3/src/sync/broadcast.rs +0 -1541
  391. data/ext/cargo-vendor/tokio-1.39.3/src/sync/mpsc/chan.rs +0 -597
  392. data/ext/cargo-vendor/tokio-1.39.3/src/sync/mpsc/error.rs +0 -149
  393. data/ext/cargo-vendor/tokio-1.39.3/src/sync/mpsc/mod.rs +0 -124
  394. data/ext/cargo-vendor/tokio-1.39.3/src/sync/notify.rs +0 -1218
  395. data/ext/cargo-vendor/tokio-1.39.3/src/sync/oneshot.rs +0 -1408
  396. data/ext/cargo-vendor/tokio-1.39.3/src/task/consume_budget.rs +0 -41
  397. data/ext/cargo-vendor/tokio-1.39.3/src/task/join_set.rs +0 -725
  398. data/ext/cargo-vendor/tokio-1.39.3/src/task/local.rs +0 -1250
  399. data/ext/cargo-vendor/tokio-1.39.3/src/task/spawn.rs +0 -207
  400. data/ext/cargo-vendor/tokio-1.39.3/src/task/yield_now.rs +0 -64
  401. data/ext/cargo-vendor/tokio-1.39.3/src/time/interval.rs +0 -644
  402. data/ext/cargo-vendor/tokio-1.39.3/src/time/sleep.rs +0 -452
  403. data/ext/cargo-vendor/tokio-1.39.3/src/util/bit.rs +0 -69
  404. data/ext/cargo-vendor/tokio-1.39.3/src/util/sync_wrapper.rs +0 -26
  405. data/ext/cargo-vendor/tokio-1.39.3/tests/async_send_sync.rs +0 -753
  406. data/ext/cargo-vendor/tokio-1.39.3/tests/io_async_fd.rs +0 -853
  407. data/ext/cargo-vendor/tokio-1.39.3/tests/io_copy.rs +0 -102
  408. data/ext/cargo-vendor/tokio-1.39.3/tests/io_write_all_buf.rs +0 -96
  409. data/ext/cargo-vendor/tokio-1.39.3/tests/macros_join.rs +0 -176
  410. data/ext/cargo-vendor/tokio-1.39.3/tests/sync_mpsc.rs +0 -1436
  411. data/ext/cargo-vendor/tokio-1.39.3/tests/task_abort.rs +0 -222
  412. data/ext/cargo-vendor/tokio-1.39.3/tests/task_join_set.rs +0 -307
  413. data/ext/cargo-vendor/tokio-1.39.3/tests/uds_stream.rs +0 -424
  414. data/ext/cargo-vendor/wasi-common-25.0.1/.cargo-checksum.json +0 -1
  415. data/ext/cargo-vendor/wasi-common-25.0.1/Cargo.toml +0 -242
  416. data/ext/cargo-vendor/wasmtime-25.0.1/.cargo-checksum.json +0 -1
  417. data/ext/cargo-vendor/wasmtime-25.0.1/Cargo.toml +0 -407
  418. data/ext/cargo-vendor/wasmtime-25.0.1/src/runtime/type_registry.rs +0 -1099
  419. data/ext/cargo-vendor/wasmtime-25.0.1/src/runtime/vm/traphandlers/backtrace.rs +0 -267
  420. data/ext/cargo-vendor/wasmtime-asm-macros-25.0.1/.cargo-checksum.json +0 -1
  421. data/ext/cargo-vendor/wasmtime-asm-macros-25.0.1/Cargo.toml +0 -33
  422. data/ext/cargo-vendor/wasmtime-cache-25.0.1/.cargo-checksum.json +0 -1
  423. data/ext/cargo-vendor/wasmtime-cache-25.0.1/Cargo.toml +0 -112
  424. data/ext/cargo-vendor/wasmtime-component-macro-25.0.1/.cargo-checksum.json +0 -1
  425. data/ext/cargo-vendor/wasmtime-component-macro-25.0.1/Cargo.toml +0 -115
  426. data/ext/cargo-vendor/wasmtime-component-util-25.0.1/.cargo-checksum.json +0 -1
  427. data/ext/cargo-vendor/wasmtime-component-util-25.0.1/Cargo.toml +0 -36
  428. data/ext/cargo-vendor/wasmtime-cranelift-25.0.1/.cargo-checksum.json +0 -1
  429. data/ext/cargo-vendor/wasmtime-cranelift-25.0.1/Cargo.toml +0 -137
  430. data/ext/cargo-vendor/wasmtime-environ-25.0.1/.cargo-checksum.json +0 -1
  431. data/ext/cargo-vendor/wasmtime-environ-25.0.1/Cargo.lock +0 -792
  432. data/ext/cargo-vendor/wasmtime-environ-25.0.1/Cargo.toml +0 -195
  433. data/ext/cargo-vendor/wasmtime-environ-25.0.1/src/compile/module_environ.rs +0 -1264
  434. data/ext/cargo-vendor/wasmtime-fiber-25.0.1/.cargo-checksum.json +0 -1
  435. data/ext/cargo-vendor/wasmtime-fiber-25.0.1/Cargo.toml +0 -84
  436. data/ext/cargo-vendor/wasmtime-jit-debug-25.0.1/.cargo-checksum.json +0 -1
  437. data/ext/cargo-vendor/wasmtime-jit-debug-25.0.1/Cargo.toml +0 -86
  438. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-25.0.1/.cargo-checksum.json +0 -1
  439. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-25.0.1/Cargo.toml +0 -71
  440. data/ext/cargo-vendor/wasmtime-slab-25.0.1/.cargo-checksum.json +0 -1
  441. data/ext/cargo-vendor/wasmtime-slab-25.0.1/Cargo.toml +0 -50
  442. data/ext/cargo-vendor/wasmtime-types-25.0.1/.cargo-checksum.json +0 -1
  443. data/ext/cargo-vendor/wasmtime-types-25.0.1/Cargo.toml +0 -80
  444. data/ext/cargo-vendor/wasmtime-versioned-export-macros-25.0.1/.cargo-checksum.json +0 -1
  445. data/ext/cargo-vendor/wasmtime-versioned-export-macros-25.0.1/Cargo.toml +0 -41
  446. data/ext/cargo-vendor/wasmtime-wasi-25.0.1/.cargo-checksum.json +0 -1
  447. data/ext/cargo-vendor/wasmtime-wasi-25.0.1/Cargo.toml +0 -224
  448. data/ext/cargo-vendor/wasmtime-winch-25.0.1/.cargo-checksum.json +0 -1
  449. data/ext/cargo-vendor/wasmtime-winch-25.0.1/Cargo.toml +0 -100
  450. data/ext/cargo-vendor/wasmtime-wit-bindgen-25.0.1/.cargo-checksum.json +0 -1
  451. data/ext/cargo-vendor/wasmtime-wit-bindgen-25.0.1/Cargo.toml +0 -66
  452. data/ext/cargo-vendor/wast-217.0.0/.cargo-checksum.json +0 -1
  453. data/ext/cargo-vendor/wast-217.0.0/Cargo.toml +0 -101
  454. data/ext/cargo-vendor/wast-217.0.0/src/component/binary.rs +0 -1014
  455. data/ext/cargo-vendor/wast-217.0.0/src/component/component.rs +0 -324
  456. data/ext/cargo-vendor/wast-217.0.0/src/component/expand.rs +0 -879
  457. data/ext/cargo-vendor/wast-217.0.0/src/component/func.rs +0 -486
  458. data/ext/cargo-vendor/wast-217.0.0/src/component/resolve.rs +0 -994
  459. data/ext/cargo-vendor/wast-217.0.0/src/component/types.rs +0 -999
  460. data/ext/cargo-vendor/wast-217.0.0/src/core/binary.rs +0 -1556
  461. data/ext/cargo-vendor/wast-217.0.0/src/core/expr.rs +0 -2110
  462. data/ext/cargo-vendor/wast-217.0.0/src/core/resolve/deinline_import_export.rs +0 -232
  463. data/ext/cargo-vendor/wast-217.0.0/src/core/resolve/names.rs +0 -808
  464. data/ext/cargo-vendor/wast-217.0.0/src/core/resolve/types.rs +0 -273
  465. data/ext/cargo-vendor/wast-217.0.0/src/core/table.rs +0 -308
  466. data/ext/cargo-vendor/wast-217.0.0/src/core/types.rs +0 -1057
  467. data/ext/cargo-vendor/wast-217.0.0/src/lib.rs +0 -557
  468. data/ext/cargo-vendor/wast-217.0.0/src/wast.rs +0 -552
  469. data/ext/cargo-vendor/wat-1.217.0/.cargo-checksum.json +0 -1
  470. data/ext/cargo-vendor/wat-1.217.0/Cargo.toml +0 -56
  471. data/ext/cargo-vendor/wiggle-25.0.1/.cargo-checksum.json +0 -1
  472. data/ext/cargo-vendor/wiggle-25.0.1/Cargo.toml +0 -119
  473. data/ext/cargo-vendor/wiggle-generate-25.0.1/.cargo-checksum.json +0 -1
  474. data/ext/cargo-vendor/wiggle-generate-25.0.1/Cargo.toml +0 -85
  475. data/ext/cargo-vendor/wiggle-macro-25.0.1/.cargo-checksum.json +0 -1
  476. data/ext/cargo-vendor/wiggle-macro-25.0.1/Cargo.toml +0 -78
  477. data/ext/cargo-vendor/winch-codegen-0.23.1/.cargo-checksum.json +0 -1
  478. data/ext/cargo-vendor/winch-codegen-0.23.1/Cargo.toml +0 -95
  479. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/LICENSE-APACHE +0 -0
  480. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/LICENSE-MIT +0 -0
  481. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/rust-toolchain.toml +0 -0
  482. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/src/ensure.rs +0 -0
  483. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/src/fmt.rs +0 -0
  484. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/src/macros.rs +0 -0
  485. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/src/ptr.rs +0 -0
  486. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/common/mod.rs +0 -0
  487. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/drop/mod.rs +0 -0
  488. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/test_boxed.rs +0 -0
  489. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/test_chain.rs +0 -0
  490. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/test_context.rs +0 -0
  491. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/test_convert.rs +0 -0
  492. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/test_downcast.rs +0 -0
  493. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/test_ffi.rs +0 -0
  494. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/test_macros.rs +0 -0
  495. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/test_repr.rs +0 -0
  496. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/test_source.rs +0 -0
  497. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/ui/chained-comparison.rs +0 -0
  498. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/ui/chained-comparison.stderr +0 -0
  499. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/ui/empty-ensure.rs +0 -0
  500. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/ui/empty-ensure.stderr +0 -0
  501. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/ui/ensure-nonbool.rs +0 -0
  502. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/ui/ensure-nonbool.stderr +0 -0
  503. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/ui/must-use.rs +0 -0
  504. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/ui/must-use.stderr +0 -0
  505. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/ui/no-impl.rs +0 -0
  506. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/ui/no-impl.stderr +0 -0
  507. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/ui/temporary-value.rs +0 -0
  508. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/ui/temporary-value.stderr +0 -0
  509. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/ui/wrong-interpolation.rs +0 -0
  510. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/ui/wrong-interpolation.stderr +0 -0
  511. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/README.md +0 -0
  512. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/build.rs +0 -0
  513. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/src/c_wrapper/posix.c +0 -0
  514. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/src/interval.rs +0 -0
  515. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/src/lib.rs +0 -0
  516. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/src/state.rs +0 -0
  517. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/src/timed.rs +0 -0
  518. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/src/timer/apple.rs +0 -0
  519. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/src/timer/dummy.rs +0 -0
  520. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/src/timer/mod.rs +0 -0
  521. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/src/timer/posix.rs +0 -0
  522. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/src/timer/web.rs +0 -0
  523. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/src/timer/win.rs +0 -0
  524. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/src/utils.rs +0 -0
  525. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/tests/interval.rs +0 -0
  526. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/tests/timed.rs +0 -0
  527. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/tests/timer.rs +0 -0
  528. /data/ext/cargo-vendor/{cranelift-bforest-0.112.1 → cranelift-bforest-0.112.2}/LICENSE +0 -0
  529. /data/ext/cargo-vendor/{cranelift-bforest-0.112.1 → cranelift-bforest-0.112.2}/README.md +0 -0
  530. /data/ext/cargo-vendor/{cranelift-bforest-0.112.1 → cranelift-bforest-0.112.2}/src/lib.rs +0 -0
  531. /data/ext/cargo-vendor/{cranelift-bforest-0.112.1 → cranelift-bforest-0.112.2}/src/map.rs +0 -0
  532. /data/ext/cargo-vendor/{cranelift-bforest-0.112.1 → cranelift-bforest-0.112.2}/src/node.rs +0 -0
  533. /data/ext/cargo-vendor/{cranelift-bforest-0.112.1 → cranelift-bforest-0.112.2}/src/path.rs +0 -0
  534. /data/ext/cargo-vendor/{cranelift-bforest-0.112.1 → cranelift-bforest-0.112.2}/src/pool.rs +0 -0
  535. /data/ext/cargo-vendor/{cranelift-bforest-0.112.1 → cranelift-bforest-0.112.2}/src/set.rs +0 -0
  536. /data/ext/cargo-vendor/{cranelift-bitset-0.112.1 → cranelift-bitset-0.112.2}/src/compound.rs +0 -0
  537. /data/ext/cargo-vendor/{cranelift-bitset-0.112.1 → cranelift-bitset-0.112.2}/src/lib.rs +0 -0
  538. /data/ext/cargo-vendor/{cranelift-bitset-0.112.1 → cranelift-bitset-0.112.2}/src/scalar.rs +0 -0
  539. /data/ext/cargo-vendor/{cranelift-bitset-0.112.1 → cranelift-bitset-0.112.2}/tests/bitset.rs +0 -0
  540. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/LICENSE +0 -0
  541. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/README.md +0 -0
  542. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/benches/x64-evex-encoding.rs +0 -0
  543. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/build.rs +0 -0
  544. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/alias_analysis.rs +0 -0
  545. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/binemit/mod.rs +0 -0
  546. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/cfg_printer.rs +0 -0
  547. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/constant_hash.rs +0 -0
  548. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/context.rs +0 -0
  549. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ctxhash.rs +0 -0
  550. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/cursor.rs +0 -0
  551. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/data_value.rs +0 -0
  552. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/dbg.rs +0 -0
  553. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/dominator_tree.rs +0 -0
  554. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/egraph/cost.rs +0 -0
  555. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/egraph/elaborate.rs +0 -0
  556. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/egraph.rs +0 -0
  557. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/flowgraph.rs +0 -0
  558. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/incremental_cache.rs +0 -0
  559. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/inst_predicates.rs +0 -0
  560. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/atomic_rmw_op.rs +0 -0
  561. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/builder.rs +0 -0
  562. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/condcodes.rs +0 -0
  563. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/constant.rs +0 -0
  564. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/dfg.rs +0 -0
  565. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/dynamic_type.rs +0 -0
  566. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/entities.rs +0 -0
  567. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/extfunc.rs +0 -0
  568. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/extname.rs +0 -0
  569. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/function.rs +0 -0
  570. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/globalvalue.rs +0 -0
  571. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/immediates.rs +0 -0
  572. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/instructions.rs +0 -0
  573. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/jumptable.rs +0 -0
  574. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/known_symbol.rs +0 -0
  575. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/layout.rs +0 -0
  576. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/libcall.rs +0 -0
  577. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/memflags.rs +0 -0
  578. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/memtype.rs +0 -0
  579. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/mod.rs +0 -0
  580. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/pcc.rs +0 -0
  581. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/progpoint.rs +0 -0
  582. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/sourceloc.rs +0 -0
  583. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/stackslot.rs +0 -0
  584. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/trapcode.rs +0 -0
  585. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/types.rs +0 -0
  586. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/user_stack_maps.rs +0 -0
  587. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/aarch64/abi.rs +0 -0
  588. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/aarch64/inst/args.rs +0 -0
  589. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/aarch64/inst/emit.rs +0 -0
  590. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/aarch64/inst/emit_tests.rs +0 -0
  591. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/aarch64/inst/imms.rs +0 -0
  592. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/aarch64/inst/mod.rs +0 -0
  593. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/aarch64/inst/regs.rs +0 -0
  594. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/aarch64/inst/unwind/systemv.rs +0 -0
  595. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/aarch64/inst/unwind.rs +0 -0
  596. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/aarch64/inst.isle +0 -0
  597. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/aarch64/inst_neon.isle +0 -0
  598. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/aarch64/lower/isle/generated_code.rs +0 -0
  599. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/aarch64/lower/isle.rs +0 -0
  600. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/aarch64/lower.isle +0 -0
  601. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/aarch64/lower.rs +0 -0
  602. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/aarch64/lower_dynamic_neon.isle +0 -0
  603. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/aarch64/mod.rs +0 -0
  604. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/aarch64/pcc.rs +0 -0
  605. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/aarch64/settings.rs +0 -0
  606. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/call_conv.rs +0 -0
  607. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/mod.rs +0 -0
  608. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/pulley32.rs +0 -0
  609. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/pulley64.rs +0 -0
  610. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/pulley_shared/abi.rs +0 -0
  611. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/pulley_shared/inst/args.rs +0 -0
  612. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/pulley_shared/inst/emit.rs +0 -0
  613. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/pulley_shared/inst/mod.rs +0 -0
  614. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/pulley_shared/inst/regs.rs +0 -0
  615. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/pulley_shared/inst.isle +0 -0
  616. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/pulley_shared/lower/isle/generated_code.rs +0 -0
  617. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/pulley_shared/lower/isle.rs +0 -0
  618. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/pulley_shared/lower.isle +0 -0
  619. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/pulley_shared/lower.rs +0 -0
  620. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/pulley_shared/mod.rs +0 -0
  621. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/pulley_shared/settings.rs +0 -0
  622. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/riscv64/abi.rs +0 -0
  623. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/riscv64/inst/args.rs +0 -0
  624. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/riscv64/inst/emit.rs +0 -0
  625. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/riscv64/inst/emit_tests.rs +0 -0
  626. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/riscv64/inst/encode.rs +0 -0
  627. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/riscv64/inst/imms.rs +0 -0
  628. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/riscv64/inst/mod.rs +0 -0
  629. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/riscv64/inst/regs.rs +0 -0
  630. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/riscv64/inst/unwind/systemv.rs +0 -0
  631. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/riscv64/inst/unwind.rs +0 -0
  632. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/riscv64/inst/vector.rs +0 -0
  633. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/riscv64/inst.isle +0 -0
  634. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/riscv64/inst_vector.isle +0 -0
  635. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/riscv64/lower/isle/generated_code.rs +0 -0
  636. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/riscv64/lower/isle.rs +0 -0
  637. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/riscv64/lower.isle +0 -0
  638. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/riscv64/lower.rs +0 -0
  639. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/riscv64/mod.rs +0 -0
  640. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/riscv64/settings.rs +0 -0
  641. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/s390x/abi.rs +0 -0
  642. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/s390x/inst/args.rs +0 -0
  643. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/s390x/inst/emit.rs +0 -0
  644. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/s390x/inst/emit_tests.rs +0 -0
  645. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/s390x/inst/imms.rs +0 -0
  646. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/s390x/inst/mod.rs +0 -0
  647. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/s390x/inst/regs.rs +0 -0
  648. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/s390x/inst/unwind/systemv.rs +0 -0
  649. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/s390x/inst/unwind.rs +0 -0
  650. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/s390x/inst.isle +0 -0
  651. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/s390x/lower/isle/generated_code.rs +0 -0
  652. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/s390x/lower/isle.rs +0 -0
  653. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/s390x/lower.isle +0 -0
  654. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/s390x/lower.rs +0 -0
  655. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/s390x/mod.rs +0 -0
  656. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/s390x/settings.rs +0 -0
  657. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/unwind/systemv.rs +0 -0
  658. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/unwind/winx64.rs +0 -0
  659. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/unwind.rs +0 -0
  660. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/abi.rs +0 -0
  661. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/encoding/evex.rs +0 -0
  662. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/encoding/mod.rs +0 -0
  663. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/encoding/rex.rs +0 -0
  664. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/encoding/vex.rs +0 -0
  665. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/inst/args.rs +0 -0
  666. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/inst/emit.rs +0 -0
  667. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/inst/emit_state.rs +0 -0
  668. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/inst/emit_tests.rs +0 -0
  669. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/inst/mod.rs +0 -0
  670. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/inst/regs.rs +0 -0
  671. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/inst/stack_switch.rs +0 -0
  672. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/inst/unwind/systemv.rs +0 -0
  673. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/inst/unwind/winx64.rs +0 -0
  674. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/inst/unwind.rs +0 -0
  675. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/inst.isle +0 -0
  676. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/lower/isle/generated_code.rs +0 -0
  677. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/lower/isle.rs +0 -0
  678. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/lower.isle +0 -0
  679. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/lower.rs +0 -0
  680. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/mod.rs +0 -0
  681. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/pcc.rs +0 -0
  682. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/settings.rs +0 -0
  683. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isle_prelude.rs +0 -0
  684. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/iterators.rs +0 -0
  685. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/legalizer/globalvalue.rs +0 -0
  686. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/legalizer/mod.rs +0 -0
  687. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/lib.rs +0 -0
  688. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/loop_analysis.rs +0 -0
  689. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/machinst/abi.rs +0 -0
  690. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/machinst/blockorder.rs +0 -0
  691. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/machinst/buffer.rs +0 -0
  692. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/machinst/compile.rs +0 -0
  693. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/machinst/helpers.rs +0 -0
  694. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/machinst/inst_common.rs +0 -0
  695. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/machinst/isle.rs +0 -0
  696. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/machinst/lower.rs +0 -0
  697. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/machinst/mod.rs +0 -0
  698. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/machinst/pcc.rs +0 -0
  699. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/machinst/reg.rs +0 -0
  700. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/machinst/valueregs.rs +0 -0
  701. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/machinst/vcode.rs +0 -0
  702. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/nan_canonicalization.rs +0 -0
  703. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/opts/README.md +0 -0
  704. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/opts/arithmetic.isle +0 -0
  705. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/opts/bitops.isle +0 -0
  706. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/opts/cprop.isle +0 -0
  707. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/opts/extends.isle +0 -0
  708. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/opts/generated_code.rs +0 -0
  709. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/opts/icmp.isle +0 -0
  710. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/opts/remat.isle +0 -0
  711. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/opts/selects.isle +0 -0
  712. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/opts/shifts.isle +0 -0
  713. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/opts/spaceship.isle +0 -0
  714. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/opts/spectre.isle +0 -0
  715. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/opts/vector.isle +0 -0
  716. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/opts.rs +0 -0
  717. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/prelude.isle +0 -0
  718. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/prelude_lower.isle +0 -0
  719. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/prelude_opt.isle +0 -0
  720. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/print_errors.rs +0 -0
  721. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ranges.rs +0 -0
  722. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/remove_constant_phis.rs +0 -0
  723. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/result.rs +0 -0
  724. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/scoped_hash_map.rs +0 -0
  725. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/settings.rs +0 -0
  726. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/souper_harvest.rs +0 -0
  727. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/timing.rs +0 -0
  728. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/traversals.rs +0 -0
  729. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/unionfind.rs +0 -0
  730. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/unreachable_code.rs +0 -0
  731. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/value_label.rs +0 -0
  732. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/verifier/mod.rs +0 -0
  733. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/write.rs +0 -0
  734. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/LICENSE +0 -0
  735. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/README.md +0 -0
  736. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/cdsl/formats.rs +0 -0
  737. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/cdsl/instructions.rs +0 -0
  738. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/cdsl/isa.rs +0 -0
  739. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/cdsl/mod.rs +0 -0
  740. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/cdsl/operands.rs +0 -0
  741. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/cdsl/settings.rs +0 -0
  742. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/cdsl/types.rs +0 -0
  743. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/cdsl/typevar.rs +0 -0
  744. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/constant_hash.rs +0 -0
  745. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/error.rs +0 -0
  746. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/gen_inst.rs +0 -0
  747. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/gen_isle.rs +0 -0
  748. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/gen_settings.rs +0 -0
  749. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/gen_types.rs +0 -0
  750. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/isa/arm64.rs +0 -0
  751. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/isa/mod.rs +0 -0
  752. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/isa/pulley.rs +0 -0
  753. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/isa/riscv64.rs +0 -0
  754. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/isa/s390x.rs +0 -0
  755. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/isa/x86.rs +0 -0
  756. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/isle.rs +0 -0
  757. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/lib.rs +0 -0
  758. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/shared/entities.rs +0 -0
  759. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/shared/formats.rs +0 -0
  760. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/shared/immediates.rs +0 -0
  761. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/shared/instructions.rs +0 -0
  762. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/shared/mod.rs +0 -0
  763. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/shared/settings.rs +0 -0
  764. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/shared/types.rs +0 -0
  765. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/srcgen.rs +0 -0
  766. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/unique_table.rs +0 -0
  767. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.112.1 → cranelift-codegen-shared-0.112.2}/LICENSE +0 -0
  768. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.112.1 → cranelift-codegen-shared-0.112.2}/README.md +0 -0
  769. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.112.1 → cranelift-codegen-shared-0.112.2}/src/constant_hash.rs +0 -0
  770. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.112.1 → cranelift-codegen-shared-0.112.2}/src/constants.rs +0 -0
  771. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.112.1 → cranelift-codegen-shared-0.112.2}/src/lib.rs +0 -0
  772. /data/ext/cargo-vendor/{cranelift-control-0.112.1 → cranelift-control-0.112.2}/LICENSE +0 -0
  773. /data/ext/cargo-vendor/{cranelift-control-0.112.1 → cranelift-control-0.112.2}/README.md +0 -0
  774. /data/ext/cargo-vendor/{cranelift-control-0.112.1 → cranelift-control-0.112.2}/src/chaos.rs +0 -0
  775. /data/ext/cargo-vendor/{cranelift-control-0.112.1 → cranelift-control-0.112.2}/src/lib.rs +0 -0
  776. /data/ext/cargo-vendor/{cranelift-control-0.112.1 → cranelift-control-0.112.2}/src/zero_sized.rs +0 -0
  777. /data/ext/cargo-vendor/{cranelift-entity-0.112.1 → cranelift-entity-0.112.2}/LICENSE +0 -0
  778. /data/ext/cargo-vendor/{cranelift-entity-0.112.1 → cranelift-entity-0.112.2}/README.md +0 -0
  779. /data/ext/cargo-vendor/{cranelift-entity-0.112.1 → cranelift-entity-0.112.2}/src/boxed_slice.rs +0 -0
  780. /data/ext/cargo-vendor/{cranelift-entity-0.112.1 → cranelift-entity-0.112.2}/src/iter.rs +0 -0
  781. /data/ext/cargo-vendor/{cranelift-entity-0.112.1 → cranelift-entity-0.112.2}/src/keys.rs +0 -0
  782. /data/ext/cargo-vendor/{cranelift-entity-0.112.1 → cranelift-entity-0.112.2}/src/lib.rs +0 -0
  783. /data/ext/cargo-vendor/{cranelift-entity-0.112.1 → cranelift-entity-0.112.2}/src/list.rs +0 -0
  784. /data/ext/cargo-vendor/{cranelift-entity-0.112.1 → cranelift-entity-0.112.2}/src/map.rs +0 -0
  785. /data/ext/cargo-vendor/{cranelift-entity-0.112.1 → cranelift-entity-0.112.2}/src/packed_option.rs +0 -0
  786. /data/ext/cargo-vendor/{cranelift-entity-0.112.1 → cranelift-entity-0.112.2}/src/primary.rs +0 -0
  787. /data/ext/cargo-vendor/{cranelift-entity-0.112.1 → cranelift-entity-0.112.2}/src/set.rs +0 -0
  788. /data/ext/cargo-vendor/{cranelift-entity-0.112.1 → cranelift-entity-0.112.2}/src/sparse.rs +0 -0
  789. /data/ext/cargo-vendor/{cranelift-entity-0.112.1 → cranelift-entity-0.112.2}/src/unsigned.rs +0 -0
  790. /data/ext/cargo-vendor/{cranelift-frontend-0.112.1 → cranelift-frontend-0.112.2}/LICENSE +0 -0
  791. /data/ext/cargo-vendor/{cranelift-frontend-0.112.1 → cranelift-frontend-0.112.2}/README.md +0 -0
  792. /data/ext/cargo-vendor/{cranelift-frontend-0.112.1 → cranelift-frontend-0.112.2}/src/frontend/safepoints.rs +0 -0
  793. /data/ext/cargo-vendor/{cranelift-frontend-0.112.1 → cranelift-frontend-0.112.2}/src/frontend.rs +0 -0
  794. /data/ext/cargo-vendor/{cranelift-frontend-0.112.1 → cranelift-frontend-0.112.2}/src/lib.rs +0 -0
  795. /data/ext/cargo-vendor/{cranelift-frontend-0.112.1 → cranelift-frontend-0.112.2}/src/ssa.rs +0 -0
  796. /data/ext/cargo-vendor/{cranelift-frontend-0.112.1 → cranelift-frontend-0.112.2}/src/switch.rs +0 -0
  797. /data/ext/cargo-vendor/{cranelift-frontend-0.112.1 → cranelift-frontend-0.112.2}/src/variable.rs +0 -0
  798. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/README.md +0 -0
  799. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/build.rs +0 -0
  800. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/fail/bad_converters.isle +0 -0
  801. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/fail/bound_var_type_mismatch.isle +0 -0
  802. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/fail/converter_extractor_constructor.isle +0 -0
  803. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/fail/error1.isle +0 -0
  804. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/fail/extra_parens.isle +0 -0
  805. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/fail/impure_expression.isle +0 -0
  806. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/fail/impure_rhs.isle +0 -0
  807. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/fail/multi_internal_etor.isle +0 -0
  808. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/fail/multi_prio.isle +0 -0
  809. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/link/borrows.isle +0 -0
  810. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/link/borrows_main.rs +0 -0
  811. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/link/iflets.isle +0 -0
  812. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/link/iflets_main.rs +0 -0
  813. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/link/multi_constructor.isle +0 -0
  814. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/link/multi_constructor_main.rs +0 -0
  815. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/link/multi_extractor.isle +0 -0
  816. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/link/multi_extractor_main.rs +0 -0
  817. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/link/test.isle +0 -0
  818. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/link/test_main.rs +0 -0
  819. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/pass/bound_var.isle +0 -0
  820. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/pass/construct_and_extract.isle +0 -0
  821. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/pass/conversions.isle +0 -0
  822. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/pass/conversions_extern.isle +0 -0
  823. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/pass/let.isle +0 -0
  824. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/pass/nodebug.isle +0 -0
  825. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/pass/prio_trie_bug.isle +0 -0
  826. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/pass/test2.isle +0 -0
  827. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/pass/test3.isle +0 -0
  828. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/pass/test4.isle +0 -0
  829. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/pass/tutorial.isle +0 -0
  830. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/run/iconst.isle +0 -0
  831. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/run/iconst_main.rs +0 -0
  832. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/run/let_shadowing.isle +0 -0
  833. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/run/let_shadowing_main.rs +0 -0
  834. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/src/ast.rs +0 -0
  835. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/src/codegen.rs +0 -0
  836. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/src/compile.rs +0 -0
  837. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/src/disjointsets.rs +0 -0
  838. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/src/error.rs +0 -0
  839. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/src/files.rs +0 -0
  840. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/src/lexer.rs +0 -0
  841. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/src/lib.rs +0 -0
  842. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/src/log.rs +0 -0
  843. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/src/overlap.rs +0 -0
  844. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/src/parser.rs +0 -0
  845. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/src/sema.rs +0 -0
  846. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/src/serialize.rs +0 -0
  847. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/src/stablemapset.rs +0 -0
  848. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/src/trie_again.rs +0 -0
  849. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/tests/run_tests.rs +0 -0
  850. /data/ext/cargo-vendor/{cranelift-native-0.112.1 → cranelift-native-0.112.2}/LICENSE +0 -0
  851. /data/ext/cargo-vendor/{cranelift-native-0.112.1 → cranelift-native-0.112.2}/README.md +0 -0
  852. /data/ext/cargo-vendor/{cranelift-native-0.112.1 → cranelift-native-0.112.2}/src/lib.rs +0 -0
  853. /data/ext/cargo-vendor/{cranelift-native-0.112.1 → cranelift-native-0.112.2}/src/riscv.rs +0 -0
  854. /data/ext/cargo-vendor/{cranelift-wasm-0.112.1 → cranelift-wasm-0.112.2}/LICENSE +0 -0
  855. /data/ext/cargo-vendor/{cranelift-wasm-0.112.1 → cranelift-wasm-0.112.2}/README.md +0 -0
  856. /data/ext/cargo-vendor/{cranelift-wasm-0.112.1 → cranelift-wasm-0.112.2}/src/code_translator/bounds_checks.rs +0 -0
  857. /data/ext/cargo-vendor/{cranelift-wasm-0.112.1 → cranelift-wasm-0.112.2}/src/code_translator.rs +0 -0
  858. /data/ext/cargo-vendor/{cranelift-wasm-0.112.1 → cranelift-wasm-0.112.2}/src/environ/dummy.rs +0 -0
  859. /data/ext/cargo-vendor/{cranelift-wasm-0.112.1 → cranelift-wasm-0.112.2}/src/environ/mod.rs +0 -0
  860. /data/ext/cargo-vendor/{cranelift-wasm-0.112.1 → cranelift-wasm-0.112.2}/src/environ/spec.rs +0 -0
  861. /data/ext/cargo-vendor/{cranelift-wasm-0.112.1 → cranelift-wasm-0.112.2}/src/func_translator.rs +0 -0
  862. /data/ext/cargo-vendor/{cranelift-wasm-0.112.1 → cranelift-wasm-0.112.2}/src/heap.rs +0 -0
  863. /data/ext/cargo-vendor/{cranelift-wasm-0.112.1 → cranelift-wasm-0.112.2}/src/lib.rs +0 -0
  864. /data/ext/cargo-vendor/{cranelift-wasm-0.112.1 → cranelift-wasm-0.112.2}/src/module_translator.rs +0 -0
  865. /data/ext/cargo-vendor/{cranelift-wasm-0.112.1 → cranelift-wasm-0.112.2}/src/sections_translator.rs +0 -0
  866. /data/ext/cargo-vendor/{cranelift-wasm-0.112.1 → cranelift-wasm-0.112.2}/src/state.rs +0 -0
  867. /data/ext/cargo-vendor/{cranelift-wasm-0.112.1 → cranelift-wasm-0.112.2}/src/table.rs +0 -0
  868. /data/ext/cargo-vendor/{cranelift-wasm-0.112.1 → cranelift-wasm-0.112.2}/src/translation_utils.rs +0 -0
  869. /data/ext/cargo-vendor/{pulley-interpreter-0.1.1 → pulley-interpreter-0.1.2}/README.md +0 -0
  870. /data/ext/cargo-vendor/{pulley-interpreter-0.1.1 → pulley-interpreter-0.1.2}/src/decode.rs +0 -0
  871. /data/ext/cargo-vendor/{pulley-interpreter-0.1.1 → pulley-interpreter-0.1.2}/src/disas.rs +0 -0
  872. /data/ext/cargo-vendor/{pulley-interpreter-0.1.1 → pulley-interpreter-0.1.2}/src/encode.rs +0 -0
  873. /data/ext/cargo-vendor/{pulley-interpreter-0.1.1 → pulley-interpreter-0.1.2}/src/imms.rs +0 -0
  874. /data/ext/cargo-vendor/{pulley-interpreter-0.1.1 → pulley-interpreter-0.1.2}/src/interp.rs +0 -0
  875. /data/ext/cargo-vendor/{pulley-interpreter-0.1.1 → pulley-interpreter-0.1.2}/src/lib.rs +0 -0
  876. /data/ext/cargo-vendor/{pulley-interpreter-0.1.1 → pulley-interpreter-0.1.2}/src/op.rs +0 -0
  877. /data/ext/cargo-vendor/{pulley-interpreter-0.1.1 → pulley-interpreter-0.1.2}/src/opcode.rs +0 -0
  878. /data/ext/cargo-vendor/{pulley-interpreter-0.1.1 → pulley-interpreter-0.1.2}/src/regs.rs +0 -0
  879. /data/ext/cargo-vendor/{pulley-interpreter-0.1.1 → pulley-interpreter-0.1.2}/tests/all/disas.rs +0 -0
  880. /data/ext/cargo-vendor/{pulley-interpreter-0.1.1 → pulley-interpreter-0.1.2}/tests/all/interp.rs +0 -0
  881. /data/ext/cargo-vendor/{pulley-interpreter-0.1.1 → pulley-interpreter-0.1.2}/tests/all/main.rs +0 -0
  882. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/LICENSE +0 -0
  883. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/docs/reactor-refactor.md +0 -0
  884. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/blocking.rs +0 -0
  885. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/doc/mod.rs +0 -0
  886. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/doc/os.rs +0 -0
  887. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/canonicalize.rs +0 -0
  888. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/copy.rs +0 -0
  889. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/create_dir.rs +0 -0
  890. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/create_dir_all.rs +0 -0
  891. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/dir_builder.rs +0 -0
  892. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/file/tests.rs +0 -0
  893. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/hard_link.rs +0 -0
  894. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/metadata.rs +0 -0
  895. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/mocks.rs +0 -0
  896. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/mod.rs +0 -0
  897. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/open_options/mock_open_options.rs +0 -0
  898. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/open_options.rs +0 -0
  899. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/read.rs +0 -0
  900. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/read_link.rs +0 -0
  901. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/read_to_string.rs +0 -0
  902. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/remove_dir.rs +0 -0
  903. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/remove_dir_all.rs +0 -0
  904. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/remove_file.rs +0 -0
  905. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/rename.rs +0 -0
  906. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/set_permissions.rs +0 -0
  907. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/symlink.rs +0 -0
  908. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/symlink_dir.rs +0 -0
  909. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/symlink_file.rs +0 -0
  910. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/symlink_metadata.rs +0 -0
  911. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/write.rs +0 -0
  912. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/future/block_on.rs +0 -0
  913. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/future/mod.rs +0 -0
  914. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/future/poll_fn.rs +0 -0
  915. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/future/trace.rs +0 -0
  916. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/future/try_join.rs +0 -0
  917. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fuzz.rs +0 -0
  918. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/async_buf_read.rs +0 -0
  919. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/async_seek.rs +0 -0
  920. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/async_write.rs +0 -0
  921. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/interest.rs +0 -0
  922. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/join.rs +0 -0
  923. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/read_buf.rs +0 -0
  924. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/ready.rs +0 -0
  925. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/split.rs +0 -0
  926. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/stderr.rs +0 -0
  927. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/stdin.rs +0 -0
  928. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/stdio_common.rs +0 -0
  929. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/stdout.rs +0 -0
  930. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/util/async_buf_read_ext.rs +0 -0
  931. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/util/async_read_ext.rs +0 -0
  932. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/util/async_seek_ext.rs +0 -0
  933. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/util/async_write_ext.rs +0 -0
  934. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/util/buf_stream.rs +0 -0
  935. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/util/fill_buf.rs +0 -0
  936. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/util/flush.rs +0 -0
  937. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/util/shutdown.rs +0 -0
  938. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/util/vec_with_initialized.rs +0 -0
  939. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/util/write.rs +0 -0
  940. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/util/write_vectored.rs +0 -0
  941. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/loom/mod.rs +0 -0
  942. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/loom/std/atomic_u64.rs +0 -0
  943. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/loom/std/atomic_u64_as_mutex.rs +0 -0
  944. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/loom/std/atomic_u64_native.rs +0 -0
  945. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/loom/std/atomic_u64_static_const_new.rs +0 -0
  946. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/loom/std/atomic_u64_static_once_cell.rs +0 -0
  947. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/loom/std/barrier.rs +0 -0
  948. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/loom/std/mod.rs +0 -0
  949. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/loom/std/parking_lot.rs +0 -0
  950. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/loom/std/unsafe_cell.rs +0 -0
  951. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/macros/addr_of.rs +0 -0
  952. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/macros/cfg.rs +0 -0
  953. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/macros/join.rs +0 -0
  954. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/macros/loom.rs +0 -0
  955. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/macros/pin.rs +0 -0
  956. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/macros/support.rs +0 -0
  957. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/macros/thread_local.rs +0 -0
  958. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/macros/trace.rs +0 -0
  959. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/macros/try_join.rs +0 -0
  960. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/lookup_host.rs +0 -0
  961. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/mod.rs +0 -0
  962. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/tcp/mod.rs +0 -0
  963. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/tcp/socket.rs +0 -0
  964. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/tcp/split.rs +0 -0
  965. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/tcp/split_owned.rs +0 -0
  966. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/unix/datagram/mod.rs +0 -0
  967. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/unix/mod.rs +0 -0
  968. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/unix/pipe.rs +0 -0
  969. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/unix/socket.rs +0 -0
  970. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/unix/socketaddr.rs +0 -0
  971. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/unix/split.rs +0 -0
  972. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/unix/split_owned.rs +0 -0
  973. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/unix/stream.rs +0 -0
  974. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/unix/ucred.rs +0 -0
  975. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/windows/mod.rs +0 -0
  976. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/windows/named_pipe.rs +0 -0
  977. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/process/kill.rs +0 -0
  978. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/process/unix/mod.rs +0 -0
  979. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/process/unix/orphan.rs +0 -0
  980. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/process/unix/reap.rs +0 -0
  981. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/process/windows.rs +0 -0
  982. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/blocking/mod.rs +0 -0
  983. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/blocking/shutdown.rs +0 -0
  984. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/blocking/task.rs +0 -0
  985. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/context/blocking.rs +0 -0
  986. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/context/current.rs +0 -0
  987. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/context/runtime.rs +0 -0
  988. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/context/runtime_mt.rs +0 -0
  989. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/context/scoped.rs +0 -0
  990. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/context.rs +0 -0
  991. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/driver.rs +0 -0
  992. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/dump.rs +0 -0
  993. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/handle.rs +0 -0
  994. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/id.rs +0 -0
  995. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/io/driver/signal.rs +0 -0
  996. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/io/driver.rs +0 -0
  997. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/io/metrics.rs +0 -0
  998. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/io/mod.rs +0 -0
  999. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/io/registration_set.rs +0 -0
  1000. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/io/scheduled_io.rs +0 -0
  1001. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/metrics/batch.rs +0 -0
  1002. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/metrics/histogram.rs +0 -0
  1003. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/metrics/io.rs +0 -0
  1004. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/metrics/mock.rs +0 -0
  1005. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/metrics/mod.rs +0 -0
  1006. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/metrics/runtime.rs +0 -0
  1007. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/metrics/scheduler.rs +0 -0
  1008. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/metrics/worker.rs +0 -0
  1009. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/park.rs +0 -0
  1010. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/process.rs +0 -0
  1011. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/runtime.rs +0 -0
  1012. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/block_in_place.rs +0 -0
  1013. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/defer.rs +0 -0
  1014. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/inject/metrics.rs +0 -0
  1015. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/inject/pop.rs +0 -0
  1016. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/inject/rt_multi_thread.rs +0 -0
  1017. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/inject/shared.rs +0 -0
  1018. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/inject/synced.rs +0 -0
  1019. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/inject.rs +0 -0
  1020. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/lock.rs +0 -0
  1021. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread/counters.rs +0 -0
  1022. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread/handle/metrics.rs +0 -0
  1023. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread/handle/taskdump.rs +0 -0
  1024. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread/idle.rs +0 -0
  1025. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread/mod.rs +0 -0
  1026. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread/overflow.rs +0 -0
  1027. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread/park.rs +0 -0
  1028. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread/queue.rs +0 -0
  1029. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread/stats.rs +0 -0
  1030. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread/trace.rs +0 -0
  1031. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread/trace_mock.rs +0 -0
  1032. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread/worker/metrics.rs +0 -0
  1033. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread/worker/taskdump.rs +0 -0
  1034. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread/worker/taskdump_mock.rs +0 -0
  1035. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread_alt/counters.rs +0 -0
  1036. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread_alt/handle/metrics.rs +0 -0
  1037. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread_alt/handle/taskdump.rs +0 -0
  1038. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread_alt/idle.rs +0 -0
  1039. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread_alt/mod.rs +0 -0
  1040. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread_alt/overflow.rs +0 -0
  1041. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread_alt/park.rs +0 -0
  1042. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread_alt/queue.rs +0 -0
  1043. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread_alt/stats.rs +0 -0
  1044. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread_alt/trace.rs +0 -0
  1045. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread_alt/trace_mock.rs +0 -0
  1046. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread_alt/worker/metrics.rs +0 -0
  1047. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread_alt/worker/taskdump.rs +0 -0
  1048. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread_alt/worker/taskdump_mock.rs +0 -0
  1049. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/signal/mod.rs +0 -0
  1050. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/task/abort.rs +0 -0
  1051. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/task/list.rs +0 -0
  1052. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/task/raw.rs +0 -0
  1053. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/task/state.rs +0 -0
  1054. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/task/trace/mod.rs +0 -0
  1055. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/task/trace/symbol.rs +0 -0
  1056. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/task/trace/tree.rs +0 -0
  1057. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/task/waker.rs +0 -0
  1058. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/tests/inject.rs +0 -0
  1059. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/tests/loom_blocking.rs +0 -0
  1060. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/tests/loom_current_thread/yield_now.rs +0 -0
  1061. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/tests/loom_current_thread.rs +0 -0
  1062. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/tests/loom_join_set.rs +0 -0
  1063. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/tests/loom_local.rs +0 -0
  1064. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/tests/loom_multi_thread/queue.rs +0 -0
  1065. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/tests/loom_multi_thread/shutdown.rs +0 -0
  1066. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/tests/loom_multi_thread/yield_now.rs +0 -0
  1067. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/tests/loom_multi_thread_alt/queue.rs +0 -0
  1068. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/tests/loom_multi_thread_alt/shutdown.rs +0 -0
  1069. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/tests/loom_multi_thread_alt/yield_now.rs +0 -0
  1070. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/tests/loom_oneshot.rs +0 -0
  1071. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/tests/task_combinations.rs +0 -0
  1072. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/thread_id.rs +0 -0
  1073. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/time/entry.rs +0 -0
  1074. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/time/handle.rs +0 -0
  1075. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/time/source.rs +0 -0
  1076. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/time/tests/mod.rs +0 -0
  1077. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/time/wheel/level.rs +0 -0
  1078. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/time/wheel/mod.rs +0 -0
  1079. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/signal/ctrl_c.rs +0 -0
  1080. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/signal/mod.rs +0 -0
  1081. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/signal/registry.rs +0 -0
  1082. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/signal/reusable_box.rs +0 -0
  1083. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/signal/unix.rs +0 -0
  1084. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/signal/windows/stub.rs +0 -0
  1085. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/signal/windows/sys.rs +0 -0
  1086. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/signal/windows.rs +0 -0
  1087. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/barrier.rs +0 -0
  1088. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/mod.rs +0 -0
  1089. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/mpsc/block.rs +0 -0
  1090. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/mpsc/bounded.rs +0 -0
  1091. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/mpsc/list.rs +0 -0
  1092. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/mpsc/unbounded.rs +0 -0
  1093. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/mutex.rs +0 -0
  1094. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/once_cell.rs +0 -0
  1095. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/rwlock/owned_read_guard.rs +0 -0
  1096. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/rwlock/owned_write_guard.rs +0 -0
  1097. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/rwlock/owned_write_guard_mapped.rs +0 -0
  1098. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/rwlock/read_guard.rs +0 -0
  1099. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/rwlock/write_guard.rs +0 -0
  1100. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/rwlock/write_guard_mapped.rs +0 -0
  1101. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/rwlock.rs +0 -0
  1102. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/semaphore.rs +0 -0
  1103. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/task/atomic_waker.rs +0 -0
  1104. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/task/mod.rs +0 -0
  1105. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/tests/atomic_waker.rs +0 -0
  1106. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/tests/loom_atomic_waker.rs +0 -0
  1107. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/tests/loom_broadcast.rs +0 -0
  1108. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/tests/loom_list.rs +0 -0
  1109. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/tests/loom_mpsc.rs +0 -0
  1110. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/tests/loom_notify.rs +0 -0
  1111. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/tests/loom_oneshot.rs +0 -0
  1112. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/tests/loom_rwlock.rs +0 -0
  1113. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/tests/loom_semaphore_batch.rs +0 -0
  1114. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/tests/loom_watch.rs +0 -0
  1115. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/tests/mod.rs +0 -0
  1116. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/tests/notify.rs +0 -0
  1117. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/tests/semaphore_batch.rs +0 -0
  1118. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/watch.rs +0 -0
  1119. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/task/blocking.rs +0 -0
  1120. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/task/builder.rs +0 -0
  1121. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/task/mod.rs +0 -0
  1122. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/task/task_local.rs +0 -0
  1123. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/task/unconstrained.rs +0 -0
  1124. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/time/clock.rs +0 -0
  1125. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/time/error.rs +0 -0
  1126. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/time/instant.rs +0 -0
  1127. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/time/mod.rs +0 -0
  1128. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/time/timeout.rs +0 -0
  1129. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/atomic_cell.rs +0 -0
  1130. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/cacheline.rs +0 -0
  1131. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/error.rs +0 -0
  1132. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/idle_notified_set.rs +0 -0
  1133. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/linked_list.rs +0 -0
  1134. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/markers.rs +0 -0
  1135. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/memchr.rs +0 -0
  1136. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/metric_atomics.rs +0 -0
  1137. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/mod.rs +0 -0
  1138. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/once_cell.rs +0 -0
  1139. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/rand/rt.rs +0 -0
  1140. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/rand/rt_unstable.rs +0 -0
  1141. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/rand.rs +0 -0
  1142. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/rc_cell.rs +0 -0
  1143. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/sharded_list.rs +0 -0
  1144. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/trace.rs +0 -0
  1145. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/try_lock.rs +0 -0
  1146. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/wake.rs +0 -0
  1147. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/wake_list.rs +0 -0
  1148. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/_require_full.rs +0 -0
  1149. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/buffered.rs +0 -0
  1150. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/coop_budget.rs +0 -0
  1151. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/dump.rs +0 -0
  1152. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/duplex_stream.rs +0 -0
  1153. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/fs.rs +0 -0
  1154. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/fs_canonicalize_dir.rs +0 -0
  1155. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/fs_copy.rs +0 -0
  1156. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/fs_dir.rs +0 -0
  1157. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/fs_file.rs +0 -0
  1158. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/fs_link.rs +0 -0
  1159. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/fs_open_options.rs +0 -0
  1160. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/fs_open_options_windows.rs +0 -0
  1161. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/fs_remove_dir_all.rs +0 -0
  1162. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/fs_remove_file.rs +0 -0
  1163. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/fs_rename.rs +0 -0
  1164. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/fs_symlink_dir_windows.rs +0 -0
  1165. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/fs_symlink_file_windows.rs +0 -0
  1166. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/fs_try_exists.rs +0 -0
  1167. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_async_read.rs +0 -0
  1168. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_buf_reader.rs +0 -0
  1169. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_buf_writer.rs +0 -0
  1170. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_chain.rs +0 -0
  1171. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_copy_bidirectional.rs +0 -0
  1172. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_driver.rs +0 -0
  1173. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_driver_drop.rs +0 -0
  1174. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_fill_buf.rs +0 -0
  1175. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_join.rs +0 -0
  1176. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_lines.rs +0 -0
  1177. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_mem_stream.rs +0 -0
  1178. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_panic.rs +0 -0
  1179. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_poll_aio.rs +0 -0
  1180. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_read.rs +0 -0
  1181. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_read_buf.rs +0 -0
  1182. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_read_exact.rs +0 -0
  1183. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_read_line.rs +0 -0
  1184. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_read_to_end.rs +0 -0
  1185. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_read_to_string.rs +0 -0
  1186. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_read_until.rs +0 -0
  1187. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_repeat.rs +0 -0
  1188. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_sink.rs +0 -0
  1189. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_split.rs +0 -0
  1190. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_take.rs +0 -0
  1191. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_util_empty.rs +0 -0
  1192. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_write.rs +0 -0
  1193. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_write_all.rs +0 -0
  1194. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_write_buf.rs +0 -0
  1195. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_write_int.rs +0 -0
  1196. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/join_handle_panic.rs +0 -0
  1197. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/macros_pin.rs +0 -0
  1198. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/macros_rename_test.rs +0 -0
  1199. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/macros_select.rs +0 -0
  1200. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/macros_test.rs +0 -0
  1201. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/macros_try_join.rs +0 -0
  1202. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/net_bind_resource.rs +0 -0
  1203. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/net_lookup_host.rs +0 -0
  1204. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/net_named_pipe.rs +0 -0
  1205. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/net_panic.rs +0 -0
  1206. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/net_unix_pipe.rs +0 -0
  1207. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/no_rt.rs +0 -0
  1208. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/process_arg0.rs +0 -0
  1209. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/process_change_of_runtime.rs +0 -0
  1210. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/process_issue_2174.rs +0 -0
  1211. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/process_issue_42.rs +0 -0
  1212. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/process_kill_on_drop.rs +0 -0
  1213. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/process_raw_handle.rs +0 -0
  1214. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/process_smoke.rs +0 -0
  1215. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/rt_basic.rs +0 -0
  1216. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/rt_common.rs +0 -0
  1217. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/rt_handle.rs +0 -0
  1218. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/rt_handle_block_on.rs +0 -0
  1219. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/rt_metrics.rs +0 -0
  1220. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/rt_panic.rs +0 -0
  1221. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/rt_threaded.rs +0 -0
  1222. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/rt_threaded_alt.rs +0 -0
  1223. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/rt_time_start_paused.rs +0 -0
  1224. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/rt_unstable_metrics.rs +0 -0
  1225. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/signal_ctrl_c.rs +0 -0
  1226. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/signal_drop_recv.rs +0 -0
  1227. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/signal_drop_rt.rs +0 -0
  1228. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/signal_drop_signal.rs +0 -0
  1229. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/signal_multi_rt.rs +0 -0
  1230. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/signal_no_rt.rs +0 -0
  1231. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/signal_notify_both.rs +0 -0
  1232. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/signal_panic.rs +0 -0
  1233. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/signal_twice.rs +0 -0
  1234. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/signal_usr1.rs +0 -0
  1235. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/support/io_vec.rs +0 -0
  1236. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/support/leaked_buffers.rs +0 -0
  1237. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/support/mpsc_stream.rs +0 -0
  1238. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/support/panic.rs +0 -0
  1239. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/support/signal.rs +0 -0
  1240. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/sync_barrier.rs +0 -0
  1241. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/sync_broadcast.rs +0 -0
  1242. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/sync_errors.rs +0 -0
  1243. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/sync_mpsc_weak.rs +0 -0
  1244. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/sync_mutex.rs +0 -0
  1245. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/sync_mutex_owned.rs +0 -0
  1246. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/sync_notify.rs +0 -0
  1247. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/sync_once_cell.rs +0 -0
  1248. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/sync_oneshot.rs +0 -0
  1249. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/sync_panic.rs +0 -0
  1250. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/sync_rwlock.rs +0 -0
  1251. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/sync_semaphore.rs +0 -0
  1252. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/sync_semaphore_owned.rs +0 -0
  1253. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/sync_watch.rs +0 -0
  1254. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/task_blocking.rs +0 -0
  1255. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/task_builder.rs +0 -0
  1256. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/task_id.rs +0 -0
  1257. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/task_local.rs +0 -0
  1258. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/task_local_set.rs +0 -0
  1259. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/task_panic.rs +0 -0
  1260. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/task_yield_now.rs +0 -0
  1261. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/tcp_accept.rs +0 -0
  1262. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/tcp_connect.rs +0 -0
  1263. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/tcp_echo.rs +0 -0
  1264. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/tcp_into_split.rs +0 -0
  1265. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/tcp_into_std.rs +0 -0
  1266. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/tcp_peek.rs +0 -0
  1267. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/tcp_shutdown.rs +0 -0
  1268. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/tcp_socket.rs +0 -0
  1269. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/tcp_split.rs +0 -0
  1270. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/tcp_stream.rs +0 -0
  1271. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/test_clock.rs +0 -0
  1272. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/time_interval.rs +0 -0
  1273. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/time_panic.rs +0 -0
  1274. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/time_pause.rs +0 -0
  1275. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/time_rt.rs +0 -0
  1276. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/time_sleep.rs +0 -0
  1277. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/time_timeout.rs +0 -0
  1278. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/udp.rs +0 -0
  1279. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/uds_cred.rs +0 -0
  1280. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/uds_datagram.rs +0 -0
  1281. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/uds_socket.rs +0 -0
  1282. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/uds_split.rs +0 -0
  1283. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/unwindsafe.rs +0 -0
  1284. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/LICENSE +0 -0
  1285. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/README.md +0 -0
  1286. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/clocks.rs +0 -0
  1287. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/ctx.rs +0 -0
  1288. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/dir.rs +0 -0
  1289. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/error.rs +0 -0
  1290. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/file.rs +0 -0
  1291. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/lib.rs +0 -0
  1292. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/pipe.rs +0 -0
  1293. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/random.rs +0 -0
  1294. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/sched/subscription.rs +0 -0
  1295. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/sched.rs +0 -0
  1296. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/snapshots/mod.rs +0 -0
  1297. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/snapshots/preview_0.rs +0 -0
  1298. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/snapshots/preview_1/error.rs +0 -0
  1299. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/snapshots/preview_1.rs +0 -0
  1300. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/string_array.rs +0 -0
  1301. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/sync/clocks.rs +0 -0
  1302. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/sync/dir.rs +0 -0
  1303. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/sync/file.rs +0 -0
  1304. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/sync/mod.rs +0 -0
  1305. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/sync/net.rs +0 -0
  1306. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/sync/sched/unix.rs +0 -0
  1307. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/sync/sched/windows.rs +0 -0
  1308. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/sync/sched.rs +0 -0
  1309. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/sync/stdio.rs +0 -0
  1310. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/table.rs +0 -0
  1311. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/tokio/dir.rs +0 -0
  1312. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/tokio/file.rs +0 -0
  1313. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/tokio/mod.rs +0 -0
  1314. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/tokio/net.rs +0 -0
  1315. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/tokio/sched/unix.rs +0 -0
  1316. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/tokio/sched/windows.rs +0 -0
  1317. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/tokio/sched.rs +0 -0
  1318. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/tokio/stdio.rs +0 -0
  1319. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/tests/all/async_.rs +0 -0
  1320. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/tests/all/main.rs +0 -0
  1321. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/tests/all/sync.rs +0 -0
  1322. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/witx/preview0/typenames.witx +0 -0
  1323. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/witx/preview0/wasi_unstable.witx +0 -0
  1324. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/witx/preview1/typenames.witx +0 -0
  1325. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/witx/preview1/wasi_snapshot_preview1.witx +0 -0
  1326. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/LICENSE +0 -0
  1327. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/README.md +0 -0
  1328. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/build.rs +0 -0
  1329. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/proptest-regressions/runtime/vm/instance/allocator/pooling/memory_pool.txt +0 -0
  1330. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/compile/code_builder.rs +0 -0
  1331. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/compile/runtime.rs +0 -0
  1332. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/compile.rs +0 -0
  1333. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/config.rs +0 -0
  1334. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/engine/serialization.rs +0 -0
  1335. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/engine.rs +0 -0
  1336. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/lib.rs +0 -0
  1337. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/profiling_agent/jitdump.rs +0 -0
  1338. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/profiling_agent/perfmap.rs +0 -0
  1339. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/profiling_agent/vtune.rs +0 -0
  1340. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/profiling_agent.rs +0 -0
  1341. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/code.rs +0 -0
  1342. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/code_memory.rs +0 -0
  1343. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/bindgen_examples/_0_hello_world.rs +0 -0
  1344. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/bindgen_examples/_1_world_imports.rs +0 -0
  1345. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/bindgen_examples/_2_world_exports.rs +0 -0
  1346. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/bindgen_examples/_3_interface_imports.rs +0 -0
  1347. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/bindgen_examples/_4_imported_resources.rs +0 -0
  1348. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/bindgen_examples/_5_all_world_export_kinds.rs +0 -0
  1349. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/bindgen_examples/_6_exported_resources.rs +0 -0
  1350. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/bindgen_examples/mod.rs +0 -0
  1351. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/component.rs +0 -0
  1352. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/func/host.rs +0 -0
  1353. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/func/options.rs +0 -0
  1354. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/func/typed.rs +0 -0
  1355. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/func.rs +0 -0
  1356. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/instance.rs +0 -0
  1357. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/linker.rs +0 -0
  1358. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/matching.rs +0 -0
  1359. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/mod.rs +0 -0
  1360. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/resource_table.rs +0 -0
  1361. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/resources.rs +0 -0
  1362. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/storage.rs +0 -0
  1363. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/store.rs +0 -0
  1364. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/types.rs +0 -0
  1365. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/values.rs +0 -0
  1366. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/coredump.rs +0 -0
  1367. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/debug.rs +0 -0
  1368. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/externals/global.rs +0 -0
  1369. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/externals/table.rs +0 -0
  1370. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/externals.rs +0 -0
  1371. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/func/typed.rs +0 -0
  1372. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/func.rs +0 -0
  1373. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/gc/disabled/anyref.rs +0 -0
  1374. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/gc/disabled/arrayref.rs +0 -0
  1375. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/gc/disabled/externref.rs +0 -0
  1376. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/gc/disabled/i31.rs +0 -0
  1377. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/gc/disabled/rooting.rs +0 -0
  1378. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/gc/disabled/structref.rs +0 -0
  1379. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/gc/disabled.rs +0 -0
  1380. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/gc/enabled/anyref.rs +0 -0
  1381. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/gc/enabled/arrayref.rs +0 -0
  1382. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/gc/enabled/externref.rs +0 -0
  1383. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/gc/enabled/i31.rs +0 -0
  1384. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/gc/enabled/rooting.rs +0 -0
  1385. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/gc/enabled/structref.rs +0 -0
  1386. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/gc/enabled.rs +0 -0
  1387. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/gc/noextern.rs +0 -0
  1388. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/gc.rs +0 -0
  1389. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/instance.rs +0 -0
  1390. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/instantiate.rs +0 -0
  1391. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/limits.rs +0 -0
  1392. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/linker.rs +0 -0
  1393. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/memory.rs +0 -0
  1394. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/module/registry.rs +0 -0
  1395. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/module.rs +0 -0
  1396. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/profiling.rs +0 -0
  1397. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/resources.rs +0 -0
  1398. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/signatures.rs +0 -0
  1399. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/stack.rs +0 -0
  1400. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/store/context.rs +0 -0
  1401. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/store/data.rs +0 -0
  1402. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/store/func_refs.rs +0 -0
  1403. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/store.rs +0 -0
  1404. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/trampoline/func.rs +0 -0
  1405. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/trampoline/global.rs +0 -0
  1406. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/trampoline/memory.rs +0 -0
  1407. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/trampoline/table.rs +0 -0
  1408. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/trampoline.rs +0 -0
  1409. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/trap.rs +0 -0
  1410. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/types/matching.rs +0 -0
  1411. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/types.rs +0 -0
  1412. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/uninhabited.rs +0 -0
  1413. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/unix.rs +0 -0
  1414. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/v128.rs +0 -0
  1415. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/values.rs +0 -0
  1416. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/arch/aarch64.rs +0 -0
  1417. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/arch/mod.rs +0 -0
  1418. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/arch/riscv64.rs +0 -0
  1419. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/arch/s390x.S +0 -0
  1420. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/arch/s390x.rs +0 -0
  1421. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/arch/unsupported.rs +0 -0
  1422. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/arch/x86_64.rs +0 -0
  1423. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/async_yield.rs +0 -0
  1424. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/component/libcalls.rs +0 -0
  1425. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/component/resources.rs +0 -0
  1426. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/component.rs +0 -0
  1427. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/const_expr.rs +0 -0
  1428. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/cow.rs +0 -0
  1429. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/debug_builtins.rs +0 -0
  1430. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/export.rs +0 -0
  1431. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/gc/disabled.rs +0 -0
  1432. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/gc/enabled/arrayref.rs +0 -0
  1433. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/gc/enabled/data.rs +0 -0
  1434. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/gc/enabled/drc.rs +0 -0
  1435. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/gc/enabled/externref.rs +0 -0
  1436. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/gc/enabled/free_list.rs +0 -0
  1437. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/gc/enabled/structref.rs +0 -0
  1438. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/gc/enabled.rs +0 -0
  1439. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/gc/gc_ref.rs +0 -0
  1440. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/gc/gc_runtime.rs +0 -0
  1441. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/gc/host_data.rs +0 -0
  1442. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/gc/i31.rs +0 -0
  1443. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/gc.rs +0 -0
  1444. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/helpers.c +0 -0
  1445. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/imports.rs +0 -0
  1446. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/instance/allocator/on_demand.rs +0 -0
  1447. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/instance/allocator/pooling/decommit_queue.rs +0 -0
  1448. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/instance/allocator/pooling/gc_heap_pool.rs +0 -0
  1449. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/instance/allocator/pooling/generic_stack_pool.rs +0 -0
  1450. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/instance/allocator/pooling/index_allocator.rs +0 -0
  1451. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/instance/allocator/pooling/memory_pool.rs +0 -0
  1452. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/instance/allocator/pooling/table_pool.rs +0 -0
  1453. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/instance/allocator/pooling/unix_stack_pool.rs +0 -0
  1454. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/instance/allocator/pooling.rs +0 -0
  1455. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/instance/allocator.rs +0 -0
  1456. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/instance.rs +0 -0
  1457. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/libcalls.rs +0 -0
  1458. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/memory.rs +0 -0
  1459. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/mmap.rs +0 -0
  1460. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/mmap_vec.rs +0 -0
  1461. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/module_id.rs +0 -0
  1462. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/mpk/disabled.rs +0 -0
  1463. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/mpk/enabled.rs +0 -0
  1464. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/mpk/mod.rs +0 -0
  1465. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/mpk/pkru.rs +0 -0
  1466. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/mpk/sys.rs +0 -0
  1467. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/send_sync_ptr.rs +0 -0
  1468. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/store_box.rs +0 -0
  1469. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/custom/capi.rs +0 -0
  1470. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/custom/mmap.rs +0 -0
  1471. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/custom/mod.rs +0 -0
  1472. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/custom/traphandlers.rs +0 -0
  1473. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/custom/unwind.rs +0 -0
  1474. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/custom/vm.rs +0 -0
  1475. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/miri/mmap.rs +0 -0
  1476. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/miri/mod.rs +0 -0
  1477. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/miri/traphandlers.rs +0 -0
  1478. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/miri/unwind.rs +0 -0
  1479. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/miri/vm.rs +0 -0
  1480. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/mod.rs +0 -0
  1481. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/unix/machports.rs +0 -0
  1482. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/unix/macos_traphandlers.rs +0 -0
  1483. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/unix/mmap.rs +0 -0
  1484. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/unix/mod.rs +0 -0
  1485. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/unix/signals.rs +0 -0
  1486. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/unix/unwind.rs +0 -0
  1487. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/unix/vm.rs +0 -0
  1488. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/windows/mmap.rs +0 -0
  1489. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/windows/mod.rs +0 -0
  1490. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/windows/traphandlers.rs +0 -0
  1491. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/windows/unwind.rs +0 -0
  1492. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/windows/vm.rs +0 -0
  1493. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/table.rs +0 -0
  1494. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/threads/mod.rs +0 -0
  1495. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/threads/parking_spot.rs +0 -0
  1496. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/threads/shared_memory.rs +0 -0
  1497. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/threads/shared_memory_disabled.rs +0 -0
  1498. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/traphandlers/coredump_disabled.rs +0 -0
  1499. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/traphandlers/coredump_enabled.rs +0 -0
  1500. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/traphandlers.rs +0 -0
  1501. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/vmcontext/vm_host_func_context.rs +0 -0
  1502. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/vmcontext.rs +0 -0
  1503. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm.rs +0 -0
  1504. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/windows.rs +0 -0
  1505. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime.rs +0 -0
  1506. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/sync_nostd.rs +0 -0
  1507. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/sync_std.rs +0 -0
  1508. /data/ext/cargo-vendor/{wasmtime-asm-macros-25.0.1 → wasmtime-asm-macros-25.0.2}/src/lib.rs +0 -0
  1509. /data/ext/cargo-vendor/{wasmtime-cache-25.0.1 → wasmtime-cache-25.0.2}/LICENSE +0 -0
  1510. /data/ext/cargo-vendor/{wasmtime-cache-25.0.1 → wasmtime-cache-25.0.2}/build.rs +0 -0
  1511. /data/ext/cargo-vendor/{wasmtime-cache-25.0.1 → wasmtime-cache-25.0.2}/src/config/tests.rs +0 -0
  1512. /data/ext/cargo-vendor/{wasmtime-cache-25.0.1 → wasmtime-cache-25.0.2}/src/config.rs +0 -0
  1513. /data/ext/cargo-vendor/{wasmtime-cache-25.0.1 → wasmtime-cache-25.0.2}/src/lib.rs +0 -0
  1514. /data/ext/cargo-vendor/{wasmtime-cache-25.0.1 → wasmtime-cache-25.0.2}/src/tests.rs +0 -0
  1515. /data/ext/cargo-vendor/{wasmtime-cache-25.0.1 → wasmtime-cache-25.0.2}/src/worker/tests/system_time_stub.rs +0 -0
  1516. /data/ext/cargo-vendor/{wasmtime-cache-25.0.1 → wasmtime-cache-25.0.2}/src/worker/tests.rs +0 -0
  1517. /data/ext/cargo-vendor/{wasmtime-cache-25.0.1 → wasmtime-cache-25.0.2}/src/worker.rs +0 -0
  1518. /data/ext/cargo-vendor/{wasmtime-cache-25.0.1 → wasmtime-cache-25.0.2}/tests/cache_write_default_config.rs +0 -0
  1519. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/build.rs +0 -0
  1520. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/src/bindgen.rs +0 -0
  1521. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/src/component.rs +0 -0
  1522. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/src/lib.rs +0 -0
  1523. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/char.wit +0 -0
  1524. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/conventions.wit +0 -0
  1525. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/dead-code.wit +0 -0
  1526. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/direct-import.wit +0 -0
  1527. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/empty.wit +0 -0
  1528. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/flags.wit +0 -0
  1529. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/floats.wit +0 -0
  1530. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/function-new.wit +0 -0
  1531. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/integers.wit +0 -0
  1532. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/lists.wit +0 -0
  1533. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/many-arguments.wit +0 -0
  1534. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/multi-return.wit +0 -0
  1535. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/multiversion/deps/v1/root.wit +0 -0
  1536. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/multiversion/deps/v2/root.wit +0 -0
  1537. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/multiversion/root.wit +0 -0
  1538. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/records.wit +0 -0
  1539. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/rename.wit +0 -0
  1540. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/resources-export.wit +0 -0
  1541. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/resources-import.wit +0 -0
  1542. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/share-types.wit +0 -0
  1543. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/simple-functions.wit +0 -0
  1544. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/simple-lists.wit +0 -0
  1545. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/simple-wasi.wit +0 -0
  1546. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/small-anonymous.wit +0 -0
  1547. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/smoke-default.wit +0 -0
  1548. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/smoke-export.wit +0 -0
  1549. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/smoke.wit +0 -0
  1550. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/strings.wit +0 -0
  1551. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/unversioned-foo.wit +0 -0
  1552. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/use-paths.wit +0 -0
  1553. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/variants.wit +0 -0
  1554. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/wat.wit +0 -0
  1555. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/worlds-with-types.wit +0 -0
  1556. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen.rs +0 -0
  1557. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen_no_std.rs +0 -0
  1558. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/char.rs +0 -0
  1559. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/char_async.rs +0 -0
  1560. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/char_tracing_async.rs +0 -0
  1561. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/conventions.rs +0 -0
  1562. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/conventions_async.rs +0 -0
  1563. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/conventions_tracing_async.rs +0 -0
  1564. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/dead-code.rs +0 -0
  1565. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/dead-code_async.rs +0 -0
  1566. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/dead-code_tracing_async.rs +0 -0
  1567. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/direct-import.rs +0 -0
  1568. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/direct-import_async.rs +0 -0
  1569. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/direct-import_tracing_async.rs +0 -0
  1570. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/empty.rs +0 -0
  1571. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/empty_async.rs +0 -0
  1572. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/empty_tracing_async.rs +0 -0
  1573. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/flags.rs +0 -0
  1574. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/flags_async.rs +0 -0
  1575. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/flags_tracing_async.rs +0 -0
  1576. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/floats.rs +0 -0
  1577. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/floats_async.rs +0 -0
  1578. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/floats_tracing_async.rs +0 -0
  1579. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/function-new.rs +0 -0
  1580. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/function-new_async.rs +0 -0
  1581. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/function-new_tracing_async.rs +0 -0
  1582. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/integers.rs +0 -0
  1583. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/integers_async.rs +0 -0
  1584. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/integers_tracing_async.rs +0 -0
  1585. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/lists.rs +0 -0
  1586. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/lists_async.rs +0 -0
  1587. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/lists_tracing_async.rs +0 -0
  1588. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/many-arguments.rs +0 -0
  1589. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/many-arguments_async.rs +0 -0
  1590. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/many-arguments_tracing_async.rs +0 -0
  1591. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/multi-return.rs +0 -0
  1592. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/multi-return_async.rs +0 -0
  1593. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/multi-return_tracing_async.rs +0 -0
  1594. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/multiversion.rs +0 -0
  1595. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/multiversion_async.rs +0 -0
  1596. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/multiversion_tracing_async.rs +0 -0
  1597. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/records.rs +0 -0
  1598. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/records_async.rs +0 -0
  1599. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/records_tracing_async.rs +0 -0
  1600. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/rename.rs +0 -0
  1601. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/rename_async.rs +0 -0
  1602. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/rename_tracing_async.rs +0 -0
  1603. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/resources-export.rs +0 -0
  1604. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/resources-export_async.rs +0 -0
  1605. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/resources-export_tracing_async.rs +0 -0
  1606. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/resources-import.rs +0 -0
  1607. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/resources-import_async.rs +0 -0
  1608. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/resources-import_tracing_async.rs +0 -0
  1609. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/share-types.rs +0 -0
  1610. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/share-types_async.rs +0 -0
  1611. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/share-types_tracing_async.rs +0 -0
  1612. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/simple-functions.rs +0 -0
  1613. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/simple-functions_async.rs +0 -0
  1614. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/simple-functions_tracing_async.rs +0 -0
  1615. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/simple-lists.rs +0 -0
  1616. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/simple-lists_async.rs +0 -0
  1617. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/simple-lists_tracing_async.rs +0 -0
  1618. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/simple-wasi.rs +0 -0
  1619. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/simple-wasi_async.rs +0 -0
  1620. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/simple-wasi_tracing_async.rs +0 -0
  1621. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/small-anonymous.rs +0 -0
  1622. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/small-anonymous_async.rs +0 -0
  1623. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/small-anonymous_tracing_async.rs +0 -0
  1624. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/smoke-default.rs +0 -0
  1625. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/smoke-default_async.rs +0 -0
  1626. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/smoke-default_tracing_async.rs +0 -0
  1627. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/smoke-export.rs +0 -0
  1628. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/smoke-export_async.rs +0 -0
  1629. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/smoke-export_tracing_async.rs +0 -0
  1630. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/smoke.rs +0 -0
  1631. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/smoke_async.rs +0 -0
  1632. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/smoke_tracing_async.rs +0 -0
  1633. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/strings.rs +0 -0
  1634. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/strings_async.rs +0 -0
  1635. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/strings_tracing_async.rs +0 -0
  1636. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/unversioned-foo.rs +0 -0
  1637. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/unversioned-foo_async.rs +0 -0
  1638. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/unversioned-foo_tracing_async.rs +0 -0
  1639. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/use-paths.rs +0 -0
  1640. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/use-paths_async.rs +0 -0
  1641. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/use-paths_tracing_async.rs +0 -0
  1642. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/variants.rs +0 -0
  1643. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/variants_async.rs +0 -0
  1644. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/variants_tracing_async.rs +0 -0
  1645. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/wat.rs +0 -0
  1646. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/wat_async.rs +0 -0
  1647. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/wat_tracing_async.rs +0 -0
  1648. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/worlds-with-types.rs +0 -0
  1649. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/worlds-with-types_async.rs +0 -0
  1650. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/worlds-with-types_tracing_async.rs +0 -0
  1651. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded.rs +0 -0
  1652. /data/ext/cargo-vendor/{wasmtime-component-util-25.0.1 → wasmtime-component-util-25.0.2}/src/lib.rs +0 -0
  1653. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/LICENSE +0 -0
  1654. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/SECURITY.md +0 -0
  1655. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/builder.rs +0 -0
  1656. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/compiled_function.rs +0 -0
  1657. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/compiler/component.rs +0 -0
  1658. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/compiler.rs +0 -0
  1659. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/debug/gc.rs +0 -0
  1660. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/debug/transform/address_transform.rs +0 -0
  1661. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/debug/transform/attr.rs +0 -0
  1662. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/debug/transform/expression.rs +0 -0
  1663. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/debug/transform/line_program.rs +0 -0
  1664. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/debug/transform/mod.rs +0 -0
  1665. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/debug/transform/range_info_builder.rs +0 -0
  1666. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/debug/transform/refs.rs +0 -0
  1667. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/debug/transform/simulate.rs +0 -0
  1668. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/debug/transform/unit.rs +0 -0
  1669. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/debug/transform/utils.rs +0 -0
  1670. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/debug/write_debuginfo.rs +0 -0
  1671. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/debug.rs +0 -0
  1672. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/func_environ.rs +0 -0
  1673. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/gc/disabled.rs +0 -0
  1674. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/gc/enabled.rs +0 -0
  1675. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/gc.rs +0 -0
  1676. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/isa_builder.rs +0 -0
  1677. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/lib.rs +0 -0
  1678. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/obj.rs +0 -0
  1679. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/LICENSE +0 -0
  1680. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/examples/factc.rs +0 -0
  1681. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/address_map.rs +0 -0
  1682. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/builtin.rs +0 -0
  1683. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/compile/address_map.rs +0 -0
  1684. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/compile/mod.rs +0 -0
  1685. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/compile/module_artifacts.rs +0 -0
  1686. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/compile/module_types.rs +0 -0
  1687. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/compile/trap_encoding.rs +0 -0
  1688. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/component/artifacts.rs +0 -0
  1689. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/component/compiler.rs +0 -0
  1690. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/component/dfg.rs +0 -0
  1691. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/component/info.rs +0 -0
  1692. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/component/names.rs +0 -0
  1693. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/component/translate/adapt.rs +0 -0
  1694. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/component/translate/inline.rs +0 -0
  1695. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/component/translate.rs +0 -0
  1696. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/component/types.rs +0 -0
  1697. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/component/types_builder/resources.rs +0 -0
  1698. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/component/types_builder.rs +0 -0
  1699. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/component/vmcomponent_offsets.rs +0 -0
  1700. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/component.rs +0 -0
  1701. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/demangling.rs +0 -0
  1702. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/fact/core_types.rs +0 -0
  1703. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/fact/signature.rs +0 -0
  1704. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/fact/trampoline.rs +0 -0
  1705. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/fact/transcode.rs +0 -0
  1706. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/fact/traps.rs +0 -0
  1707. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/fact.rs +0 -0
  1708. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/gc.rs +0 -0
  1709. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/lib.rs +0 -0
  1710. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/module.rs +0 -0
  1711. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/module_artifacts.rs +0 -0
  1712. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/module_types.rs +0 -0
  1713. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/obj.rs +0 -0
  1714. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/ref_bits.rs +0 -0
  1715. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/scopevec.rs +0 -0
  1716. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/stack_map.rs +0 -0
  1717. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/trap_encoding.rs +0 -0
  1718. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/tunables.rs +0 -0
  1719. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/vmoffsets.rs +0 -0
  1720. /data/ext/cargo-vendor/{wasmtime-fiber-25.0.1 → wasmtime-fiber-25.0.2}/LICENSE +0 -0
  1721. /data/ext/cargo-vendor/{wasmtime-fiber-25.0.1 → wasmtime-fiber-25.0.2}/build.rs +0 -0
  1722. /data/ext/cargo-vendor/{wasmtime-fiber-25.0.1 → wasmtime-fiber-25.0.2}/src/lib.rs +0 -0
  1723. /data/ext/cargo-vendor/{wasmtime-fiber-25.0.1 → wasmtime-fiber-25.0.2}/src/unix/aarch64.rs +0 -0
  1724. /data/ext/cargo-vendor/{wasmtime-fiber-25.0.1 → wasmtime-fiber-25.0.2}/src/unix/arm.rs +0 -0
  1725. /data/ext/cargo-vendor/{wasmtime-fiber-25.0.1 → wasmtime-fiber-25.0.2}/src/unix/riscv64.rs +0 -0
  1726. /data/ext/cargo-vendor/{wasmtime-fiber-25.0.1 → wasmtime-fiber-25.0.2}/src/unix/s390x.S +0 -0
  1727. /data/ext/cargo-vendor/{wasmtime-fiber-25.0.1 → wasmtime-fiber-25.0.2}/src/unix/x86.rs +0 -0
  1728. /data/ext/cargo-vendor/{wasmtime-fiber-25.0.1 → wasmtime-fiber-25.0.2}/src/unix/x86_64.rs +0 -0
  1729. /data/ext/cargo-vendor/{wasmtime-fiber-25.0.1 → wasmtime-fiber-25.0.2}/src/unix.rs +0 -0
  1730. /data/ext/cargo-vendor/{wasmtime-fiber-25.0.1 → wasmtime-fiber-25.0.2}/src/windows.c +0 -0
  1731. /data/ext/cargo-vendor/{wasmtime-fiber-25.0.1 → wasmtime-fiber-25.0.2}/src/windows.rs +0 -0
  1732. /data/ext/cargo-vendor/{wasmtime-jit-debug-25.0.1 → wasmtime-jit-debug-25.0.2}/README.md +0 -0
  1733. /data/ext/cargo-vendor/{wasmtime-jit-debug-25.0.1 → wasmtime-jit-debug-25.0.2}/src/gdb_jit_int.rs +0 -0
  1734. /data/ext/cargo-vendor/{wasmtime-jit-debug-25.0.1 → wasmtime-jit-debug-25.0.2}/src/lib.rs +0 -0
  1735. /data/ext/cargo-vendor/{wasmtime-jit-debug-25.0.1 → wasmtime-jit-debug-25.0.2}/src/perf_jitdump.rs +0 -0
  1736. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-25.0.1 → wasmtime-jit-icache-coherence-25.0.2}/src/lib.rs +0 -0
  1737. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-25.0.1 → wasmtime-jit-icache-coherence-25.0.2}/src/libc.rs +0 -0
  1738. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-25.0.1 → wasmtime-jit-icache-coherence-25.0.2}/src/miri.rs +0 -0
  1739. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-25.0.1 → wasmtime-jit-icache-coherence-25.0.2}/src/win.rs +0 -0
  1740. /data/ext/cargo-vendor/{wasmtime-slab-25.0.1 → wasmtime-slab-25.0.2}/src/lib.rs +0 -0
  1741. /data/ext/cargo-vendor/{wasmtime-types-25.0.1 → wasmtime-types-25.0.2}/LICENSE +0 -0
  1742. /data/ext/cargo-vendor/{wasmtime-types-25.0.1 → wasmtime-types-25.0.2}/src/error.rs +0 -0
  1743. /data/ext/cargo-vendor/{wasmtime-types-25.0.1 → wasmtime-types-25.0.2}/src/lib.rs +0 -0
  1744. /data/ext/cargo-vendor/{wasmtime-types-25.0.1 → wasmtime-types-25.0.2}/src/prelude.rs +0 -0
  1745. /data/ext/cargo-vendor/{wasmtime-versioned-export-macros-25.0.1 → wasmtime-versioned-export-macros-25.0.2}/src/lib.rs +0 -0
  1746. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/LICENSE +0 -0
  1747. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/README.md +0 -0
  1748. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/bindings.rs +0 -0
  1749. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/clocks/host.rs +0 -0
  1750. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/clocks.rs +0 -0
  1751. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/ctx.rs +0 -0
  1752. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/error.rs +0 -0
  1753. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/filesystem.rs +0 -0
  1754. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/host/clocks.rs +0 -0
  1755. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/host/env.rs +0 -0
  1756. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/host/exit.rs +0 -0
  1757. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/host/filesystem/sync.rs +0 -0
  1758. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/host/filesystem.rs +0 -0
  1759. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/host/instance_network.rs +0 -0
  1760. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/host/io.rs +0 -0
  1761. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/host/mod.rs +0 -0
  1762. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/host/network.rs +0 -0
  1763. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/host/random.rs +0 -0
  1764. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/host/tcp.rs +0 -0
  1765. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/host/tcp_create_socket.rs +0 -0
  1766. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/host/udp.rs +0 -0
  1767. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/host/udp_create_socket.rs +0 -0
  1768. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/ip_name_lookup.rs +0 -0
  1769. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/lib.rs +0 -0
  1770. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/network.rs +0 -0
  1771. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/pipe.rs +0 -0
  1772. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/poll.rs +0 -0
  1773. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/preview0.rs +0 -0
  1774. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/preview1.rs +0 -0
  1775. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/random.rs +0 -0
  1776. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/runtime.rs +0 -0
  1777. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/stdio/worker_thread_stdin.rs +0 -0
  1778. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/stdio.rs +0 -0
  1779. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/stream.rs +0 -0
  1780. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/tcp.rs +0 -0
  1781. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/udp.rs +0 -0
  1782. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/write_stream.rs +0 -0
  1783. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/tests/all/api.rs +0 -0
  1784. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/tests/all/async_.rs +0 -0
  1785. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/tests/all/main.rs +0 -0
  1786. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/tests/all/preview1.rs +0 -0
  1787. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/tests/all/sync.rs +0 -0
  1788. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/tests/process_stdin.rs +0 -0
  1789. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/cli/command.wit +0 -0
  1790. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/cli/environment.wit +0 -0
  1791. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/cli/exit.wit +0 -0
  1792. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/cli/imports.wit +0 -0
  1793. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/cli/run.wit +0 -0
  1794. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/cli/stdio.wit +0 -0
  1795. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/cli/terminal.wit +0 -0
  1796. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/clocks/monotonic-clock.wit +0 -0
  1797. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/clocks/timezone.wit +0 -0
  1798. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/clocks/wall-clock.wit +0 -0
  1799. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/clocks/world.wit +0 -0
  1800. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/filesystem/preopens.wit +0 -0
  1801. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/filesystem/types.wit +0 -0
  1802. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/filesystem/world.wit +0 -0
  1803. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/io/error.wit +0 -0
  1804. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/io/poll.wit +0 -0
  1805. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/io/streams.wit +0 -0
  1806. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/io/world.wit +0 -0
  1807. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/random/insecure-seed.wit +0 -0
  1808. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/random/insecure.wit +0 -0
  1809. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/random/random.wit +0 -0
  1810. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/random/world.wit +0 -0
  1811. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/sockets/instance-network.wit +0 -0
  1812. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/sockets/ip-name-lookup.wit +0 -0
  1813. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/sockets/network.wit +0 -0
  1814. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/sockets/tcp-create-socket.wit +0 -0
  1815. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/sockets/tcp.wit +0 -0
  1816. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/sockets/udp-create-socket.wit +0 -0
  1817. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/sockets/udp.wit +0 -0
  1818. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/sockets/world.wit +0 -0
  1819. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/test.wit +0 -0
  1820. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/world.wit +0 -0
  1821. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/witx/preview0/typenames.witx +0 -0
  1822. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/witx/preview0/wasi_unstable.witx +0 -0
  1823. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/witx/preview1/typenames.witx +0 -0
  1824. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/witx/preview1/wasi_snapshot_preview1.witx +0 -0
  1825. /data/ext/cargo-vendor/{wasmtime-winch-25.0.1 → wasmtime-winch-25.0.2}/LICENSE +0 -0
  1826. /data/ext/cargo-vendor/{wasmtime-winch-25.0.1 → wasmtime-winch-25.0.2}/src/builder.rs +0 -0
  1827. /data/ext/cargo-vendor/{wasmtime-winch-25.0.1 → wasmtime-winch-25.0.2}/src/compiler.rs +0 -0
  1828. /data/ext/cargo-vendor/{wasmtime-winch-25.0.1 → wasmtime-winch-25.0.2}/src/lib.rs +0 -0
  1829. /data/ext/cargo-vendor/{wasmtime-wit-bindgen-25.0.1 → wasmtime-wit-bindgen-25.0.2}/src/lib.rs +0 -0
  1830. /data/ext/cargo-vendor/{wasmtime-wit-bindgen-25.0.1 → wasmtime-wit-bindgen-25.0.2}/src/rust.rs +0 -0
  1831. /data/ext/cargo-vendor/{wasmtime-wit-bindgen-25.0.1 → wasmtime-wit-bindgen-25.0.2}/src/source.rs +0 -0
  1832. /data/ext/cargo-vendor/{wasmtime-wit-bindgen-25.0.1 → wasmtime-wit-bindgen-25.0.2}/src/types.rs +0 -0
  1833. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/README.md +0 -0
  1834. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/component/alias.rs +0 -0
  1835. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/component/custom.rs +0 -0
  1836. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/component/export.rs +0 -0
  1837. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/component/import.rs +0 -0
  1838. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/component/instance.rs +0 -0
  1839. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/component/item_ref.rs +0 -0
  1840. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/component/module.rs +0 -0
  1841. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/component/wast.rs +0 -0
  1842. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/component.rs +0 -0
  1843. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/core/binary/dwarf.rs +0 -0
  1844. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/core/binary/dwarf_disabled.rs +0 -0
  1845. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/core/custom.rs +0 -0
  1846. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/core/export.rs +0 -0
  1847. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/core/func.rs +0 -0
  1848. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/core/global.rs +0 -0
  1849. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/core/import.rs +0 -0
  1850. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/core/memory.rs +0 -0
  1851. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/core/module.rs +0 -0
  1852. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/core/resolve/mod.rs +0 -0
  1853. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/core/tag.rs +0 -0
  1854. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/core/wast.rs +0 -0
  1855. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/core.rs +0 -0
  1856. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/encode.rs +0 -0
  1857. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/error.rs +0 -0
  1858. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/gensym.rs +0 -0
  1859. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/lexer.rs +0 -0
  1860. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/names.rs +0 -0
  1861. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/parser.rs +0 -0
  1862. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/token.rs +0 -0
  1863. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/wat.rs +0 -0
  1864. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/annotations.rs +0 -0
  1865. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/comments.rs +0 -0
  1866. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/bad-core-func-alias.wat +0 -0
  1867. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/bad-core-func-alias.wat.err +0 -0
  1868. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/bad-func-alias.wat +0 -0
  1869. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/bad-func-alias.wat.err +0 -0
  1870. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/bad-index.wat +0 -0
  1871. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/bad-index.wat.err +0 -0
  1872. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/bad-name.wat +0 -0
  1873. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/bad-name.wat.err +0 -0
  1874. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/bad-name2.wat +0 -0
  1875. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/bad-name2.wat.err +0 -0
  1876. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/bad-name3.wat +0 -0
  1877. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/bad-name3.wat.err +0 -0
  1878. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/block1.wat +0 -0
  1879. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/block1.wat.err +0 -0
  1880. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/block2.wat +0 -0
  1881. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/block2.wat.err +0 -0
  1882. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/block3.wat +0 -0
  1883. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/block3.wat.err +0 -0
  1884. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment0.wat +0 -0
  1885. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment0.wat.err +0 -0
  1886. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment1.wat +0 -0
  1887. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment1.wat.err +0 -0
  1888. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment2.wat +0 -0
  1889. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment2.wat.err +0 -0
  1890. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment3.wat +0 -0
  1891. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment3.wat.err +0 -0
  1892. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment4.wat +0 -0
  1893. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment4.wat.err +0 -0
  1894. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment5.wat +0 -0
  1895. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment5.wat.err +0 -0
  1896. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment6.wat +0 -0
  1897. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment6.wat.err +0 -0
  1898. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment7.wat +0 -0
  1899. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment7.wat.err +0 -0
  1900. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment8.wat +0 -0
  1901. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment8.wat.err +0 -0
  1902. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment0.wat +0 -0
  1903. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment0.wat.err +0 -0
  1904. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment1.wat +0 -0
  1905. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment1.wat.err +0 -0
  1906. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment2.wat +0 -0
  1907. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment2.wat.err +0 -0
  1908. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment3.wat +0 -0
  1909. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment3.wat.err +0 -0
  1910. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment4.wat +0 -0
  1911. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment4.wat.err +0 -0
  1912. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment5.wat +0 -0
  1913. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment5.wat.err +0 -0
  1914. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment6.wat +0 -0
  1915. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment6.wat.err +0 -0
  1916. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment7.wat +0 -0
  1917. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment7.wat.err +0 -0
  1918. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment8.wat +0 -0
  1919. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment8.wat.err +0 -0
  1920. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string0.wat +0 -0
  1921. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string0.wat.err +0 -0
  1922. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string1.wat +0 -0
  1923. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string1.wat.err +0 -0
  1924. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string2.wat +0 -0
  1925. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string2.wat.err +0 -0
  1926. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string3.wat +0 -0
  1927. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string3.wat.err +0 -0
  1928. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string4.wat +0 -0
  1929. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string4.wat.err +0 -0
  1930. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string5.wat +0 -0
  1931. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string5.wat.err +0 -0
  1932. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string6.wat +0 -0
  1933. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string6.wat.err +0 -0
  1934. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string7.wat +0 -0
  1935. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string7.wat.err +0 -0
  1936. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string8.wat +0 -0
  1937. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string8.wat.err +0 -0
  1938. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/inline1.wat +0 -0
  1939. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/inline1.wat.err +0 -0
  1940. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/newline-in-string.wat +0 -0
  1941. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/newline-in-string.wat.err +0 -0
  1942. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string1.wat +0 -0
  1943. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string1.wat.err +0 -0
  1944. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string10.wat +0 -0
  1945. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string10.wat.err +0 -0
  1946. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string11.wat +0 -0
  1947. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string11.wat.err +0 -0
  1948. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string12.wat +0 -0
  1949. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string12.wat.err +0 -0
  1950. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string13.wat +0 -0
  1951. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string13.wat.err +0 -0
  1952. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string14.wat +0 -0
  1953. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string14.wat.err +0 -0
  1954. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string15.wat +0 -0
  1955. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string15.wat.err +0 -0
  1956. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string16.wat +0 -0
  1957. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string16.wat.err +0 -0
  1958. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string2.wat +0 -0
  1959. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string2.wat.err +0 -0
  1960. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string3.wat +0 -0
  1961. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string3.wat.err +0 -0
  1962. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string4.wat +0 -0
  1963. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string4.wat.err +0 -0
  1964. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string5.wat +0 -0
  1965. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string5.wat.err +0 -0
  1966. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string6.wat +0 -0
  1967. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string6.wat.err +0 -0
  1968. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string7.wat +0 -0
  1969. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string7.wat.err +0 -0
  1970. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string8.wat +0 -0
  1971. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string8.wat.err +0 -0
  1972. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string9.wat +0 -0
  1973. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string9.wat.err +0 -0
  1974. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/unbalanced.wat +0 -0
  1975. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/unbalanced.wat.err +0 -0
  1976. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail.rs +0 -0
  1977. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/recursive.rs +0 -0
  1978. /data/ext/cargo-vendor/{wat-1.217.0 → wat-1.218.0}/README.md +0 -0
  1979. /data/ext/cargo-vendor/{wat-1.217.0 → wat-1.218.0}/src/lib.rs +0 -0
  1980. /data/ext/cargo-vendor/{wiggle-25.0.1 → wiggle-25.0.2}/LICENSE +0 -0
  1981. /data/ext/cargo-vendor/{wiggle-25.0.1 → wiggle-25.0.2}/README.md +0 -0
  1982. /data/ext/cargo-vendor/{wiggle-25.0.1 → wiggle-25.0.2}/src/error.rs +0 -0
  1983. /data/ext/cargo-vendor/{wiggle-25.0.1 → wiggle-25.0.2}/src/guest_type.rs +0 -0
  1984. /data/ext/cargo-vendor/{wiggle-25.0.1 → wiggle-25.0.2}/src/lib.rs +0 -0
  1985. /data/ext/cargo-vendor/{wiggle-25.0.1 → wiggle-25.0.2}/src/region.rs +0 -0
  1986. /data/ext/cargo-vendor/{wiggle-generate-25.0.1 → wiggle-generate-25.0.2}/LICENSE +0 -0
  1987. /data/ext/cargo-vendor/{wiggle-generate-25.0.1 → wiggle-generate-25.0.2}/README.md +0 -0
  1988. /data/ext/cargo-vendor/{wiggle-generate-25.0.1 → wiggle-generate-25.0.2}/src/codegen_settings.rs +0 -0
  1989. /data/ext/cargo-vendor/{wiggle-generate-25.0.1 → wiggle-generate-25.0.2}/src/config.rs +0 -0
  1990. /data/ext/cargo-vendor/{wiggle-generate-25.0.1 → wiggle-generate-25.0.2}/src/funcs.rs +0 -0
  1991. /data/ext/cargo-vendor/{wiggle-generate-25.0.1 → wiggle-generate-25.0.2}/src/lib.rs +0 -0
  1992. /data/ext/cargo-vendor/{wiggle-generate-25.0.1 → wiggle-generate-25.0.2}/src/lifetimes.rs +0 -0
  1993. /data/ext/cargo-vendor/{wiggle-generate-25.0.1 → wiggle-generate-25.0.2}/src/module_trait.rs +0 -0
  1994. /data/ext/cargo-vendor/{wiggle-generate-25.0.1 → wiggle-generate-25.0.2}/src/names.rs +0 -0
  1995. /data/ext/cargo-vendor/{wiggle-generate-25.0.1 → wiggle-generate-25.0.2}/src/types/error.rs +0 -0
  1996. /data/ext/cargo-vendor/{wiggle-generate-25.0.1 → wiggle-generate-25.0.2}/src/types/flags.rs +0 -0
  1997. /data/ext/cargo-vendor/{wiggle-generate-25.0.1 → wiggle-generate-25.0.2}/src/types/handle.rs +0 -0
  1998. /data/ext/cargo-vendor/{wiggle-generate-25.0.1 → wiggle-generate-25.0.2}/src/types/mod.rs +0 -0
  1999. /data/ext/cargo-vendor/{wiggle-generate-25.0.1 → wiggle-generate-25.0.2}/src/types/record.rs +0 -0
  2000. /data/ext/cargo-vendor/{wiggle-generate-25.0.1 → wiggle-generate-25.0.2}/src/types/variant.rs +0 -0
  2001. /data/ext/cargo-vendor/{wiggle-generate-25.0.1 → wiggle-generate-25.0.2}/src/wasmtime.rs +0 -0
  2002. /data/ext/cargo-vendor/{wiggle-macro-25.0.1 → wiggle-macro-25.0.2}/LICENSE +0 -0
  2003. /data/ext/cargo-vendor/{wiggle-macro-25.0.1 → wiggle-macro-25.0.2}/build.rs +0 -0
  2004. /data/ext/cargo-vendor/{wiggle-macro-25.0.1 → wiggle-macro-25.0.2}/src/lib.rs +0 -0
  2005. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/LICENSE +0 -0
  2006. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/build.rs +0 -0
  2007. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/abi/local.rs +0 -0
  2008. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/abi/mod.rs +0 -0
  2009. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/codegen/bounds.rs +0 -0
  2010. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/codegen/builtin.rs +0 -0
  2011. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/codegen/call.rs +0 -0
  2012. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/codegen/context.rs +0 -0
  2013. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/codegen/control.rs +0 -0
  2014. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/codegen/env.rs +0 -0
  2015. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/codegen/mod.rs +0 -0
  2016. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/frame/mod.rs +0 -0
  2017. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/isa/aarch64/abi.rs +0 -0
  2018. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/isa/aarch64/address.rs +0 -0
  2019. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/isa/aarch64/asm.rs +0 -0
  2020. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/isa/aarch64/masm.rs +0 -0
  2021. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/isa/aarch64/mod.rs +0 -0
  2022. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/isa/aarch64/regs.rs +0 -0
  2023. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/isa/mod.rs +0 -0
  2024. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/isa/reg.rs +0 -0
  2025. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/isa/x64/abi.rs +0 -0
  2026. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/isa/x64/address.rs +0 -0
  2027. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/isa/x64/asm.rs +0 -0
  2028. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/isa/x64/masm.rs +0 -0
  2029. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/isa/x64/mod.rs +0 -0
  2030. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/isa/x64/regs.rs +0 -0
  2031. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/lib.rs +0 -0
  2032. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/masm.rs +0 -0
  2033. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/regalloc.rs +0 -0
  2034. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/regset.rs +0 -0
  2035. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/stack.rs +0 -0
  2036. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/visitor.rs +0 -0
@@ -0,0 +1,4032 @@
1
+ use crate::{encode_section, Encode, HeapType, RefType, Section, SectionId, ValType};
2
+ use std::borrow::Cow;
3
+
4
+ /// An encoder for the code section.
5
+ ///
6
+ /// Code sections are only supported for modules.
7
+ ///
8
+ /// # Example
9
+ ///
10
+ /// ```
11
+ /// use wasm_encoder::{
12
+ /// CodeSection, Function, FunctionSection, Instruction, Module,
13
+ /// TypeSection, ValType
14
+ /// };
15
+ ///
16
+ /// let mut types = TypeSection::new();
17
+ /// types.ty().function(vec![], vec![ValType::I32]);
18
+ ///
19
+ /// let mut functions = FunctionSection::new();
20
+ /// let type_index = 0;
21
+ /// functions.function(type_index);
22
+ ///
23
+ /// let locals = vec![];
24
+ /// let mut func = Function::new(locals);
25
+ /// func.instruction(&Instruction::I32Const(42));
26
+ /// let mut code = CodeSection::new();
27
+ /// code.function(&func);
28
+ ///
29
+ /// let mut module = Module::new();
30
+ /// module
31
+ /// .section(&types)
32
+ /// .section(&functions)
33
+ /// .section(&code);
34
+ ///
35
+ /// let wasm_bytes = module.finish();
36
+ /// ```
37
+ #[derive(Clone, Default, Debug)]
38
+ pub struct CodeSection {
39
+ bytes: Vec<u8>,
40
+ num_added: u32,
41
+ }
42
+
43
+ impl CodeSection {
44
+ /// Create a new code section encoder.
45
+ pub fn new() -> Self {
46
+ Self::default()
47
+ }
48
+
49
+ /// The number of functions in the section.
50
+ pub fn len(&self) -> u32 {
51
+ self.num_added
52
+ }
53
+
54
+ /// The number of bytes already added to this section.
55
+ ///
56
+ /// This number doesn't include the vector length that precedes the
57
+ /// code entries, since it has a variable size that isn't known until all
58
+ /// functions are added.
59
+ pub fn byte_len(&self) -> usize {
60
+ self.bytes.len()
61
+ }
62
+
63
+ /// Determines if the section is empty.
64
+ pub fn is_empty(&self) -> bool {
65
+ self.num_added == 0
66
+ }
67
+
68
+ /// Write a function body into this code section.
69
+ pub fn function(&mut self, func: &Function) -> &mut Self {
70
+ func.encode(&mut self.bytes);
71
+ self.num_added += 1;
72
+ self
73
+ }
74
+
75
+ /// Add a raw byte slice into this code section as a function body.
76
+ ///
77
+ /// The length prefix of the function body will be automatically prepended,
78
+ /// and should not be included in the raw byte slice.
79
+ ///
80
+ /// # Example
81
+ ///
82
+ /// You can use the `raw` method to copy an already-encoded function body
83
+ /// into a new code section encoder:
84
+ ///
85
+ /// ```
86
+ /// # use wasmparser::{BinaryReader, CodeSectionReader};
87
+ /// // id, size, # entries, entry
88
+ /// let code_section = [10, 6, 1, 4, 0, 65, 0, 11];
89
+ ///
90
+ /// // Parse the code section.
91
+ /// let reader = BinaryReader::new(&code_section, 0);
92
+ /// let reader = CodeSectionReader::new(reader).unwrap();
93
+ /// let body = reader.into_iter().next().unwrap().unwrap();
94
+ /// let body_range = body.range();
95
+ ///
96
+ /// // Add the body to a new code section encoder by copying bytes rather
97
+ /// // than re-parsing and re-encoding it.
98
+ /// let mut encoder = wasm_encoder::CodeSection::new();
99
+ /// encoder.raw(&code_section[body_range.start..body_range.end]);
100
+ /// ```
101
+ pub fn raw(&mut self, data: &[u8]) -> &mut Self {
102
+ data.encode(&mut self.bytes);
103
+ self.num_added += 1;
104
+ self
105
+ }
106
+ }
107
+
108
+ impl Encode for CodeSection {
109
+ fn encode(&self, sink: &mut Vec<u8>) {
110
+ encode_section(sink, self.num_added, &self.bytes);
111
+ }
112
+ }
113
+
114
+ impl Section for CodeSection {
115
+ fn id(&self) -> u8 {
116
+ SectionId::Code.into()
117
+ }
118
+ }
119
+
120
+ /// An encoder for a function body within the code section.
121
+ ///
122
+ /// # Example
123
+ ///
124
+ /// ```
125
+ /// use wasm_encoder::{CodeSection, Function, Instruction};
126
+ ///
127
+ /// // Define the function body for:
128
+ /// //
129
+ /// // (func (param i32 i32) (result i32)
130
+ /// // local.get 0
131
+ /// // local.get 1
132
+ /// // i32.add)
133
+ /// let locals = vec![];
134
+ /// let mut func = Function::new(locals);
135
+ /// func.instruction(&Instruction::LocalGet(0));
136
+ /// func.instruction(&Instruction::LocalGet(1));
137
+ /// func.instruction(&Instruction::I32Add);
138
+ ///
139
+ /// // Add our function to the code section.
140
+ /// let mut code = CodeSection::new();
141
+ /// code.function(&func);
142
+ /// ```
143
+ #[derive(Clone, Debug, Eq, PartialEq)]
144
+ pub struct Function {
145
+ bytes: Vec<u8>,
146
+ }
147
+
148
+ impl Function {
149
+ /// Create a new function body with the given locals.
150
+ ///
151
+ /// The argument is an iterator over `(N, Ty)`, which defines
152
+ /// that the next `N` locals will be of type `Ty`.
153
+ ///
154
+ /// For example, a function with locals 0 and 1 of type I32 and
155
+ /// local 2 of type F32 would be created as:
156
+ ///
157
+ /// ```
158
+ /// # use wasm_encoder::{Function, ValType};
159
+ /// let f = Function::new([(2, ValType::I32), (1, ValType::F32)]);
160
+ /// ```
161
+ ///
162
+ /// For more information about the code section (and function definition) in the WASM binary format
163
+ /// see the [WebAssembly spec](https://webassembly.github.io/spec/core/binary/modules.html#binary-func)
164
+ pub fn new<L>(locals: L) -> Self
165
+ where
166
+ L: IntoIterator<Item = (u32, ValType)>,
167
+ L::IntoIter: ExactSizeIterator,
168
+ {
169
+ let locals = locals.into_iter();
170
+ let mut bytes = vec![];
171
+ locals.len().encode(&mut bytes);
172
+ for (count, ty) in locals {
173
+ count.encode(&mut bytes);
174
+ ty.encode(&mut bytes);
175
+ }
176
+ Function { bytes }
177
+ }
178
+
179
+ /// Create a function from a list of locals' types.
180
+ ///
181
+ /// Unlike [`Function::new`], this constructor simply takes a list of types
182
+ /// which are in order associated with locals.
183
+ ///
184
+ /// For example:
185
+ ///
186
+ /// ```
187
+ /// # use wasm_encoder::{Function, ValType};
188
+ /// let f = Function::new([(2, ValType::I32), (1, ValType::F32)]);
189
+ /// let g = Function::new_with_locals_types([
190
+ /// ValType::I32, ValType::I32, ValType::F32
191
+ /// ]);
192
+ ///
193
+ /// assert_eq!(f, g)
194
+ /// ```
195
+ pub fn new_with_locals_types<L>(locals: L) -> Self
196
+ where
197
+ L: IntoIterator<Item = ValType>,
198
+ {
199
+ let locals = locals.into_iter();
200
+
201
+ let mut locals_collected: Vec<(u32, ValType)> = vec![];
202
+ for l in locals {
203
+ if let Some((last_count, last_type)) = locals_collected.last_mut() {
204
+ if l == *last_type {
205
+ // Increment the count of consecutive locals of this type
206
+ *last_count += 1;
207
+ continue;
208
+ }
209
+ }
210
+ // If we didn't increment, a new type of local appeared
211
+ locals_collected.push((1, l));
212
+ }
213
+
214
+ Function::new(locals_collected)
215
+ }
216
+
217
+ /// Write an instruction into this function body.
218
+ pub fn instruction(&mut self, instruction: &Instruction) -> &mut Self {
219
+ instruction.encode(&mut self.bytes);
220
+ self
221
+ }
222
+
223
+ /// Add raw bytes to this function's body.
224
+ pub fn raw<B>(&mut self, bytes: B) -> &mut Self
225
+ where
226
+ B: IntoIterator<Item = u8>,
227
+ {
228
+ self.bytes.extend(bytes);
229
+ self
230
+ }
231
+
232
+ /// The number of bytes already added to this function.
233
+ ///
234
+ /// This number doesn't include the variable-width size field that `encode`
235
+ /// will write before the added bytes, since the size of that field isn't
236
+ /// known until all the instructions are added to this function.
237
+ pub fn byte_len(&self) -> usize {
238
+ self.bytes.len()
239
+ }
240
+
241
+ /// Unwraps and returns the raw byte encoding of this function.
242
+ ///
243
+ /// This encoding doesn't include the variable-width size field
244
+ /// that `encode` will write before the added bytes. As such, its
245
+ /// length will match the return value of [`byte_len`].
246
+ ///
247
+ /// # Use Case
248
+ ///
249
+ /// This raw byte form is suitable for later using with
250
+ /// [`CodeSection::raw`]. Note that it *differs* from what results
251
+ /// from [`Function::encode`] precisely due to the *lack* of the
252
+ /// length prefix; [`CodeSection::raw`] will use this. Using
253
+ /// [`Function::encode`] instead produces bytes that cannot be fed
254
+ /// into other wasm-encoder types without stripping off the length
255
+ /// prefix, which is awkward and error-prone.
256
+ ///
257
+ /// This method combined with [`CodeSection::raw`] may be useful
258
+ /// together if one wants to save the result of function encoding
259
+ /// and use it later: for example, caching the result of some code
260
+ /// generation process.
261
+ ///
262
+ /// For example:
263
+ ///
264
+ /// ```
265
+ /// # use wasm_encoder::{CodeSection, Function, Instruction};
266
+ /// let mut f = Function::new([]);
267
+ /// f.instruction(&Instruction::End);
268
+ /// let bytes = f.into_raw_body();
269
+ /// // (save `bytes` somewhere for later use)
270
+ /// let mut code = CodeSection::new();
271
+ /// code.raw(&bytes[..]);
272
+ ///
273
+ /// assert_eq!(2, bytes.len()); // Locals count, then `end`
274
+ /// assert_eq!(3, code.byte_len()); // Function length byte, function body
275
+ /// ```
276
+ pub fn into_raw_body(self) -> Vec<u8> {
277
+ self.bytes
278
+ }
279
+ }
280
+
281
+ impl Encode for Function {
282
+ fn encode(&self, sink: &mut Vec<u8>) {
283
+ self.bytes.encode(sink);
284
+ }
285
+ }
286
+
287
+ /// The immediate for a memory instruction.
288
+ #[derive(Clone, Copy, Debug)]
289
+ pub struct MemArg {
290
+ /// A static offset to add to the instruction's dynamic address operand.
291
+ ///
292
+ /// This is a `u64` field for the memory64 proposal, but 32-bit memories
293
+ /// limit offsets to at most `u32::MAX` bytes. This will be encoded as a LEB
294
+ /// but it won't generate a valid module if an offset is specified which is
295
+ /// larger than the maximum size of the index space for the memory indicated
296
+ /// by `memory_index`.
297
+ pub offset: u64,
298
+ /// The expected alignment of the instruction's dynamic address operand
299
+ /// (expressed the exponent of a power of two).
300
+ pub align: u32,
301
+ /// The index of the memory this instruction is operating upon.
302
+ pub memory_index: u32,
303
+ }
304
+
305
+ impl Encode for MemArg {
306
+ fn encode(&self, sink: &mut Vec<u8>) {
307
+ if self.memory_index == 0 {
308
+ self.align.encode(sink);
309
+ self.offset.encode(sink);
310
+ } else {
311
+ (self.align | (1 << 6)).encode(sink);
312
+ self.memory_index.encode(sink);
313
+ self.offset.encode(sink);
314
+ }
315
+ }
316
+ }
317
+
318
+ /// The memory ordering for atomic instructions.
319
+ ///
320
+ /// For an in-depth explanation of memory orderings, see the C++ documentation
321
+ /// for [`memory_order`] or the Rust documentation for [`atomic::Ordering`].
322
+ ///
323
+ /// [`memory_order`]: https://en.cppreference.com/w/cpp/atomic/memory_order
324
+ /// [`atomic::Ordering`]: https://doc.rust-lang.org/std/sync/atomic/enum.Ordering.html
325
+ #[derive(Clone, Copy, Debug)]
326
+ pub enum Ordering {
327
+ /// For a load, it acquires; this orders all operations before the last
328
+ /// "releasing" store. For a store, it releases; this orders all operations
329
+ /// before it at the next "acquiring" load.
330
+ AcqRel,
331
+ /// Like `AcqRel` but all threads see all sequentially consistent operations
332
+ /// in the same order.
333
+ SeqCst,
334
+ }
335
+
336
+ impl Encode for Ordering {
337
+ fn encode(&self, sink: &mut Vec<u8>) {
338
+ let flag: u8 = match self {
339
+ Ordering::SeqCst => 0,
340
+ Ordering::AcqRel => 1,
341
+ };
342
+ sink.push(flag);
343
+ }
344
+ }
345
+
346
+ /// Describe an unchecked SIMD lane index.
347
+ pub type Lane = u8;
348
+
349
+ /// The type for a `block`/`if`/`loop`.
350
+ #[derive(Clone, Copy, Debug)]
351
+ pub enum BlockType {
352
+ /// `[] -> []`
353
+ Empty,
354
+ /// `[] -> [t]`
355
+ Result(ValType),
356
+ /// The `n`th function type.
357
+ FunctionType(u32),
358
+ }
359
+
360
+ impl Encode for BlockType {
361
+ fn encode(&self, sink: &mut Vec<u8>) {
362
+ match *self {
363
+ Self::Empty => sink.push(0x40),
364
+ Self::Result(ty) => ty.encode(sink),
365
+ Self::FunctionType(f) => (f as i64).encode(sink),
366
+ }
367
+ }
368
+ }
369
+
370
+ /// WebAssembly instructions.
371
+ #[derive(Clone, Debug)]
372
+ #[non_exhaustive]
373
+ #[allow(missing_docs, non_camel_case_types)]
374
+ pub enum Instruction<'a> {
375
+ // Control instructions.
376
+ Unreachable,
377
+ Nop,
378
+ Block(BlockType),
379
+ Loop(BlockType),
380
+ If(BlockType),
381
+ Else,
382
+ End,
383
+ Br(u32),
384
+ BrIf(u32),
385
+ BrTable(Cow<'a, [u32]>, u32),
386
+ BrOnNull(u32),
387
+ BrOnNonNull(u32),
388
+ Return,
389
+ Call(u32),
390
+ CallRef(u32),
391
+ CallIndirect {
392
+ type_index: u32,
393
+ table_index: u32,
394
+ },
395
+ ReturnCallRef(u32),
396
+ ReturnCall(u32),
397
+ ReturnCallIndirect {
398
+ type_index: u32,
399
+ table_index: u32,
400
+ },
401
+ TryTable(BlockType, Cow<'a, [Catch]>),
402
+ Throw(u32),
403
+ ThrowRef,
404
+
405
+ // Deprecated exception-handling instructions
406
+ Try(BlockType),
407
+ Delegate(u32),
408
+ Catch(u32),
409
+ CatchAll,
410
+ Rethrow(u32),
411
+
412
+ // Parametric instructions.
413
+ Drop,
414
+ Select,
415
+
416
+ // Variable instructions.
417
+ LocalGet(u32),
418
+ LocalSet(u32),
419
+ LocalTee(u32),
420
+ GlobalGet(u32),
421
+ GlobalSet(u32),
422
+
423
+ // Memory instructions.
424
+ I32Load(MemArg),
425
+ I64Load(MemArg),
426
+ F32Load(MemArg),
427
+ F64Load(MemArg),
428
+ I32Load8S(MemArg),
429
+ I32Load8U(MemArg),
430
+ I32Load16S(MemArg),
431
+ I32Load16U(MemArg),
432
+ I64Load8S(MemArg),
433
+ I64Load8U(MemArg),
434
+ I64Load16S(MemArg),
435
+ I64Load16U(MemArg),
436
+ I64Load32S(MemArg),
437
+ I64Load32U(MemArg),
438
+ I32Store(MemArg),
439
+ I64Store(MemArg),
440
+ F32Store(MemArg),
441
+ F64Store(MemArg),
442
+ I32Store8(MemArg),
443
+ I32Store16(MemArg),
444
+ I64Store8(MemArg),
445
+ I64Store16(MemArg),
446
+ I64Store32(MemArg),
447
+ MemorySize(u32),
448
+ MemoryGrow(u32),
449
+ MemoryInit {
450
+ mem: u32,
451
+ data_index: u32,
452
+ },
453
+ DataDrop(u32),
454
+ MemoryCopy {
455
+ src_mem: u32,
456
+ dst_mem: u32,
457
+ },
458
+ MemoryFill(u32),
459
+ MemoryDiscard(u32),
460
+
461
+ // Numeric instructions.
462
+ I32Const(i32),
463
+ I64Const(i64),
464
+ F32Const(f32),
465
+ F64Const(f64),
466
+ I32Eqz,
467
+ I32Eq,
468
+ I32Ne,
469
+ I32LtS,
470
+ I32LtU,
471
+ I32GtS,
472
+ I32GtU,
473
+ I32LeS,
474
+ I32LeU,
475
+ I32GeS,
476
+ I32GeU,
477
+ I64Eqz,
478
+ I64Eq,
479
+ I64Ne,
480
+ I64LtS,
481
+ I64LtU,
482
+ I64GtS,
483
+ I64GtU,
484
+ I64LeS,
485
+ I64LeU,
486
+ I64GeS,
487
+ I64GeU,
488
+ F32Eq,
489
+ F32Ne,
490
+ F32Lt,
491
+ F32Gt,
492
+ F32Le,
493
+ F32Ge,
494
+ F64Eq,
495
+ F64Ne,
496
+ F64Lt,
497
+ F64Gt,
498
+ F64Le,
499
+ F64Ge,
500
+ I32Clz,
501
+ I32Ctz,
502
+ I32Popcnt,
503
+ I32Add,
504
+ I32Sub,
505
+ I32Mul,
506
+ I32DivS,
507
+ I32DivU,
508
+ I32RemS,
509
+ I32RemU,
510
+ I32And,
511
+ I32Or,
512
+ I32Xor,
513
+ I32Shl,
514
+ I32ShrS,
515
+ I32ShrU,
516
+ I32Rotl,
517
+ I32Rotr,
518
+ I64Clz,
519
+ I64Ctz,
520
+ I64Popcnt,
521
+ I64Add,
522
+ I64Sub,
523
+ I64Mul,
524
+ I64DivS,
525
+ I64DivU,
526
+ I64RemS,
527
+ I64RemU,
528
+ I64And,
529
+ I64Or,
530
+ I64Xor,
531
+ I64Shl,
532
+ I64ShrS,
533
+ I64ShrU,
534
+ I64Rotl,
535
+ I64Rotr,
536
+ F32Abs,
537
+ F32Neg,
538
+ F32Ceil,
539
+ F32Floor,
540
+ F32Trunc,
541
+ F32Nearest,
542
+ F32Sqrt,
543
+ F32Add,
544
+ F32Sub,
545
+ F32Mul,
546
+ F32Div,
547
+ F32Min,
548
+ F32Max,
549
+ F32Copysign,
550
+ F64Abs,
551
+ F64Neg,
552
+ F64Ceil,
553
+ F64Floor,
554
+ F64Trunc,
555
+ F64Nearest,
556
+ F64Sqrt,
557
+ F64Add,
558
+ F64Sub,
559
+ F64Mul,
560
+ F64Div,
561
+ F64Min,
562
+ F64Max,
563
+ F64Copysign,
564
+ I32WrapI64,
565
+ I32TruncF32S,
566
+ I32TruncF32U,
567
+ I32TruncF64S,
568
+ I32TruncF64U,
569
+ I64ExtendI32S,
570
+ I64ExtendI32U,
571
+ I64TruncF32S,
572
+ I64TruncF32U,
573
+ I64TruncF64S,
574
+ I64TruncF64U,
575
+ F32ConvertI32S,
576
+ F32ConvertI32U,
577
+ F32ConvertI64S,
578
+ F32ConvertI64U,
579
+ F32DemoteF64,
580
+ F64ConvertI32S,
581
+ F64ConvertI32U,
582
+ F64ConvertI64S,
583
+ F64ConvertI64U,
584
+ F64PromoteF32,
585
+ I32ReinterpretF32,
586
+ I64ReinterpretF64,
587
+ F32ReinterpretI32,
588
+ F64ReinterpretI64,
589
+ I32Extend8S,
590
+ I32Extend16S,
591
+ I64Extend8S,
592
+ I64Extend16S,
593
+ I64Extend32S,
594
+ I32TruncSatF32S,
595
+ I32TruncSatF32U,
596
+ I32TruncSatF64S,
597
+ I32TruncSatF64U,
598
+ I64TruncSatF32S,
599
+ I64TruncSatF32U,
600
+ I64TruncSatF64S,
601
+ I64TruncSatF64U,
602
+
603
+ // Reference types instructions.
604
+ TypedSelect(ValType),
605
+ RefNull(HeapType),
606
+ RefIsNull,
607
+ RefFunc(u32),
608
+ RefEq,
609
+ RefAsNonNull,
610
+
611
+ // GC types instructions.
612
+ StructNew(u32),
613
+ StructNewDefault(u32),
614
+ StructGet {
615
+ struct_type_index: u32,
616
+ field_index: u32,
617
+ },
618
+ StructGetS {
619
+ struct_type_index: u32,
620
+ field_index: u32,
621
+ },
622
+ StructGetU {
623
+ struct_type_index: u32,
624
+ field_index: u32,
625
+ },
626
+ StructSet {
627
+ struct_type_index: u32,
628
+ field_index: u32,
629
+ },
630
+
631
+ ArrayNew(u32),
632
+ ArrayNewDefault(u32),
633
+ ArrayNewFixed {
634
+ array_type_index: u32,
635
+ array_size: u32,
636
+ },
637
+ ArrayNewData {
638
+ array_type_index: u32,
639
+ array_data_index: u32,
640
+ },
641
+ ArrayNewElem {
642
+ array_type_index: u32,
643
+ array_elem_index: u32,
644
+ },
645
+ ArrayGet(u32),
646
+ ArrayGetS(u32),
647
+ ArrayGetU(u32),
648
+ ArraySet(u32),
649
+ ArrayLen,
650
+ ArrayFill(u32),
651
+ ArrayCopy {
652
+ array_type_index_dst: u32,
653
+ array_type_index_src: u32,
654
+ },
655
+ ArrayInitData {
656
+ array_type_index: u32,
657
+ array_data_index: u32,
658
+ },
659
+ ArrayInitElem {
660
+ array_type_index: u32,
661
+ array_elem_index: u32,
662
+ },
663
+ RefTestNonNull(HeapType),
664
+ RefTestNullable(HeapType),
665
+ RefCastNonNull(HeapType),
666
+ RefCastNullable(HeapType),
667
+ BrOnCast {
668
+ relative_depth: u32,
669
+ from_ref_type: RefType,
670
+ to_ref_type: RefType,
671
+ },
672
+ BrOnCastFail {
673
+ relative_depth: u32,
674
+ from_ref_type: RefType,
675
+ to_ref_type: RefType,
676
+ },
677
+ AnyConvertExtern,
678
+ ExternConvertAny,
679
+
680
+ RefI31,
681
+ I31GetS,
682
+ I31GetU,
683
+
684
+ // Bulk memory instructions.
685
+ TableInit {
686
+ elem_index: u32,
687
+ table: u32,
688
+ },
689
+ ElemDrop(u32),
690
+ TableFill(u32),
691
+ TableSet(u32),
692
+ TableGet(u32),
693
+ TableGrow(u32),
694
+ TableSize(u32),
695
+ TableCopy {
696
+ src_table: u32,
697
+ dst_table: u32,
698
+ },
699
+
700
+ // SIMD instructions.
701
+ V128Load(MemArg),
702
+ V128Load8x8S(MemArg),
703
+ V128Load8x8U(MemArg),
704
+ V128Load16x4S(MemArg),
705
+ V128Load16x4U(MemArg),
706
+ V128Load32x2S(MemArg),
707
+ V128Load32x2U(MemArg),
708
+ V128Load8Splat(MemArg),
709
+ V128Load16Splat(MemArg),
710
+ V128Load32Splat(MemArg),
711
+ V128Load64Splat(MemArg),
712
+ V128Load32Zero(MemArg),
713
+ V128Load64Zero(MemArg),
714
+ V128Store(MemArg),
715
+ V128Load8Lane {
716
+ memarg: MemArg,
717
+ lane: Lane,
718
+ },
719
+ V128Load16Lane {
720
+ memarg: MemArg,
721
+ lane: Lane,
722
+ },
723
+ V128Load32Lane {
724
+ memarg: MemArg,
725
+ lane: Lane,
726
+ },
727
+ V128Load64Lane {
728
+ memarg: MemArg,
729
+ lane: Lane,
730
+ },
731
+ V128Store8Lane {
732
+ memarg: MemArg,
733
+ lane: Lane,
734
+ },
735
+ V128Store16Lane {
736
+ memarg: MemArg,
737
+ lane: Lane,
738
+ },
739
+ V128Store32Lane {
740
+ memarg: MemArg,
741
+ lane: Lane,
742
+ },
743
+ V128Store64Lane {
744
+ memarg: MemArg,
745
+ lane: Lane,
746
+ },
747
+ V128Const(i128),
748
+ I8x16Shuffle([Lane; 16]),
749
+ I8x16ExtractLaneS(Lane),
750
+ I8x16ExtractLaneU(Lane),
751
+ I8x16ReplaceLane(Lane),
752
+ I16x8ExtractLaneS(Lane),
753
+ I16x8ExtractLaneU(Lane),
754
+ I16x8ReplaceLane(Lane),
755
+ I32x4ExtractLane(Lane),
756
+ I32x4ReplaceLane(Lane),
757
+ I64x2ExtractLane(Lane),
758
+ I64x2ReplaceLane(Lane),
759
+ F32x4ExtractLane(Lane),
760
+ F32x4ReplaceLane(Lane),
761
+ F64x2ExtractLane(Lane),
762
+ F64x2ReplaceLane(Lane),
763
+ I8x16Swizzle,
764
+ I8x16Splat,
765
+ I16x8Splat,
766
+ I32x4Splat,
767
+ I64x2Splat,
768
+ F32x4Splat,
769
+ F64x2Splat,
770
+ I8x16Eq,
771
+ I8x16Ne,
772
+ I8x16LtS,
773
+ I8x16LtU,
774
+ I8x16GtS,
775
+ I8x16GtU,
776
+ I8x16LeS,
777
+ I8x16LeU,
778
+ I8x16GeS,
779
+ I8x16GeU,
780
+ I16x8Eq,
781
+ I16x8Ne,
782
+ I16x8LtS,
783
+ I16x8LtU,
784
+ I16x8GtS,
785
+ I16x8GtU,
786
+ I16x8LeS,
787
+ I16x8LeU,
788
+ I16x8GeS,
789
+ I16x8GeU,
790
+ I32x4Eq,
791
+ I32x4Ne,
792
+ I32x4LtS,
793
+ I32x4LtU,
794
+ I32x4GtS,
795
+ I32x4GtU,
796
+ I32x4LeS,
797
+ I32x4LeU,
798
+ I32x4GeS,
799
+ I32x4GeU,
800
+ I64x2Eq,
801
+ I64x2Ne,
802
+ I64x2LtS,
803
+ I64x2GtS,
804
+ I64x2LeS,
805
+ I64x2GeS,
806
+ F32x4Eq,
807
+ F32x4Ne,
808
+ F32x4Lt,
809
+ F32x4Gt,
810
+ F32x4Le,
811
+ F32x4Ge,
812
+ F64x2Eq,
813
+ F64x2Ne,
814
+ F64x2Lt,
815
+ F64x2Gt,
816
+ F64x2Le,
817
+ F64x2Ge,
818
+ V128Not,
819
+ V128And,
820
+ V128AndNot,
821
+ V128Or,
822
+ V128Xor,
823
+ V128Bitselect,
824
+ V128AnyTrue,
825
+ I8x16Abs,
826
+ I8x16Neg,
827
+ I8x16Popcnt,
828
+ I8x16AllTrue,
829
+ I8x16Bitmask,
830
+ I8x16NarrowI16x8S,
831
+ I8x16NarrowI16x8U,
832
+ I8x16Shl,
833
+ I8x16ShrS,
834
+ I8x16ShrU,
835
+ I8x16Add,
836
+ I8x16AddSatS,
837
+ I8x16AddSatU,
838
+ I8x16Sub,
839
+ I8x16SubSatS,
840
+ I8x16SubSatU,
841
+ I8x16MinS,
842
+ I8x16MinU,
843
+ I8x16MaxS,
844
+ I8x16MaxU,
845
+ I8x16AvgrU,
846
+ I16x8ExtAddPairwiseI8x16S,
847
+ I16x8ExtAddPairwiseI8x16U,
848
+ I16x8Abs,
849
+ I16x8Neg,
850
+ I16x8Q15MulrSatS,
851
+ I16x8AllTrue,
852
+ I16x8Bitmask,
853
+ I16x8NarrowI32x4S,
854
+ I16x8NarrowI32x4U,
855
+ I16x8ExtendLowI8x16S,
856
+ I16x8ExtendHighI8x16S,
857
+ I16x8ExtendLowI8x16U,
858
+ I16x8ExtendHighI8x16U,
859
+ I16x8Shl,
860
+ I16x8ShrS,
861
+ I16x8ShrU,
862
+ I16x8Add,
863
+ I16x8AddSatS,
864
+ I16x8AddSatU,
865
+ I16x8Sub,
866
+ I16x8SubSatS,
867
+ I16x8SubSatU,
868
+ I16x8Mul,
869
+ I16x8MinS,
870
+ I16x8MinU,
871
+ I16x8MaxS,
872
+ I16x8MaxU,
873
+ I16x8AvgrU,
874
+ I16x8ExtMulLowI8x16S,
875
+ I16x8ExtMulHighI8x16S,
876
+ I16x8ExtMulLowI8x16U,
877
+ I16x8ExtMulHighI8x16U,
878
+ I32x4ExtAddPairwiseI16x8S,
879
+ I32x4ExtAddPairwiseI16x8U,
880
+ I32x4Abs,
881
+ I32x4Neg,
882
+ I32x4AllTrue,
883
+ I32x4Bitmask,
884
+ I32x4ExtendLowI16x8S,
885
+ I32x4ExtendHighI16x8S,
886
+ I32x4ExtendLowI16x8U,
887
+ I32x4ExtendHighI16x8U,
888
+ I32x4Shl,
889
+ I32x4ShrS,
890
+ I32x4ShrU,
891
+ I32x4Add,
892
+ I32x4Sub,
893
+ I32x4Mul,
894
+ I32x4MinS,
895
+ I32x4MinU,
896
+ I32x4MaxS,
897
+ I32x4MaxU,
898
+ I32x4DotI16x8S,
899
+ I32x4ExtMulLowI16x8S,
900
+ I32x4ExtMulHighI16x8S,
901
+ I32x4ExtMulLowI16x8U,
902
+ I32x4ExtMulHighI16x8U,
903
+ I64x2Abs,
904
+ I64x2Neg,
905
+ I64x2AllTrue,
906
+ I64x2Bitmask,
907
+ I64x2ExtendLowI32x4S,
908
+ I64x2ExtendHighI32x4S,
909
+ I64x2ExtendLowI32x4U,
910
+ I64x2ExtendHighI32x4U,
911
+ I64x2Shl,
912
+ I64x2ShrS,
913
+ I64x2ShrU,
914
+ I64x2Add,
915
+ I64x2Sub,
916
+ I64x2Mul,
917
+ I64x2ExtMulLowI32x4S,
918
+ I64x2ExtMulHighI32x4S,
919
+ I64x2ExtMulLowI32x4U,
920
+ I64x2ExtMulHighI32x4U,
921
+ F32x4Ceil,
922
+ F32x4Floor,
923
+ F32x4Trunc,
924
+ F32x4Nearest,
925
+ F32x4Abs,
926
+ F32x4Neg,
927
+ F32x4Sqrt,
928
+ F32x4Add,
929
+ F32x4Sub,
930
+ F32x4Mul,
931
+ F32x4Div,
932
+ F32x4Min,
933
+ F32x4Max,
934
+ F32x4PMin,
935
+ F32x4PMax,
936
+ F64x2Ceil,
937
+ F64x2Floor,
938
+ F64x2Trunc,
939
+ F64x2Nearest,
940
+ F64x2Abs,
941
+ F64x2Neg,
942
+ F64x2Sqrt,
943
+ F64x2Add,
944
+ F64x2Sub,
945
+ F64x2Mul,
946
+ F64x2Div,
947
+ F64x2Min,
948
+ F64x2Max,
949
+ F64x2PMin,
950
+ F64x2PMax,
951
+ I32x4TruncSatF32x4S,
952
+ I32x4TruncSatF32x4U,
953
+ F32x4ConvertI32x4S,
954
+ F32x4ConvertI32x4U,
955
+ I32x4TruncSatF64x2SZero,
956
+ I32x4TruncSatF64x2UZero,
957
+ F64x2ConvertLowI32x4S,
958
+ F64x2ConvertLowI32x4U,
959
+ F32x4DemoteF64x2Zero,
960
+ F64x2PromoteLowF32x4,
961
+
962
+ // Relaxed simd proposal
963
+ I8x16RelaxedSwizzle,
964
+ I32x4RelaxedTruncF32x4S,
965
+ I32x4RelaxedTruncF32x4U,
966
+ I32x4RelaxedTruncF64x2SZero,
967
+ I32x4RelaxedTruncF64x2UZero,
968
+ F32x4RelaxedMadd,
969
+ F32x4RelaxedNmadd,
970
+ F64x2RelaxedMadd,
971
+ F64x2RelaxedNmadd,
972
+ I8x16RelaxedLaneselect,
973
+ I16x8RelaxedLaneselect,
974
+ I32x4RelaxedLaneselect,
975
+ I64x2RelaxedLaneselect,
976
+ F32x4RelaxedMin,
977
+ F32x4RelaxedMax,
978
+ F64x2RelaxedMin,
979
+ F64x2RelaxedMax,
980
+ I16x8RelaxedQ15mulrS,
981
+ I16x8RelaxedDotI8x16I7x16S,
982
+ I32x4RelaxedDotI8x16I7x16AddS,
983
+
984
+ // Atomic instructions (the threads proposal)
985
+ MemoryAtomicNotify(MemArg),
986
+ MemoryAtomicWait32(MemArg),
987
+ MemoryAtomicWait64(MemArg),
988
+ AtomicFence,
989
+ I32AtomicLoad(MemArg),
990
+ I64AtomicLoad(MemArg),
991
+ I32AtomicLoad8U(MemArg),
992
+ I32AtomicLoad16U(MemArg),
993
+ I64AtomicLoad8U(MemArg),
994
+ I64AtomicLoad16U(MemArg),
995
+ I64AtomicLoad32U(MemArg),
996
+ I32AtomicStore(MemArg),
997
+ I64AtomicStore(MemArg),
998
+ I32AtomicStore8(MemArg),
999
+ I32AtomicStore16(MemArg),
1000
+ I64AtomicStore8(MemArg),
1001
+ I64AtomicStore16(MemArg),
1002
+ I64AtomicStore32(MemArg),
1003
+ I32AtomicRmwAdd(MemArg),
1004
+ I64AtomicRmwAdd(MemArg),
1005
+ I32AtomicRmw8AddU(MemArg),
1006
+ I32AtomicRmw16AddU(MemArg),
1007
+ I64AtomicRmw8AddU(MemArg),
1008
+ I64AtomicRmw16AddU(MemArg),
1009
+ I64AtomicRmw32AddU(MemArg),
1010
+ I32AtomicRmwSub(MemArg),
1011
+ I64AtomicRmwSub(MemArg),
1012
+ I32AtomicRmw8SubU(MemArg),
1013
+ I32AtomicRmw16SubU(MemArg),
1014
+ I64AtomicRmw8SubU(MemArg),
1015
+ I64AtomicRmw16SubU(MemArg),
1016
+ I64AtomicRmw32SubU(MemArg),
1017
+ I32AtomicRmwAnd(MemArg),
1018
+ I64AtomicRmwAnd(MemArg),
1019
+ I32AtomicRmw8AndU(MemArg),
1020
+ I32AtomicRmw16AndU(MemArg),
1021
+ I64AtomicRmw8AndU(MemArg),
1022
+ I64AtomicRmw16AndU(MemArg),
1023
+ I64AtomicRmw32AndU(MemArg),
1024
+ I32AtomicRmwOr(MemArg),
1025
+ I64AtomicRmwOr(MemArg),
1026
+ I32AtomicRmw8OrU(MemArg),
1027
+ I32AtomicRmw16OrU(MemArg),
1028
+ I64AtomicRmw8OrU(MemArg),
1029
+ I64AtomicRmw16OrU(MemArg),
1030
+ I64AtomicRmw32OrU(MemArg),
1031
+ I32AtomicRmwXor(MemArg),
1032
+ I64AtomicRmwXor(MemArg),
1033
+ I32AtomicRmw8XorU(MemArg),
1034
+ I32AtomicRmw16XorU(MemArg),
1035
+ I64AtomicRmw8XorU(MemArg),
1036
+ I64AtomicRmw16XorU(MemArg),
1037
+ I64AtomicRmw32XorU(MemArg),
1038
+ I32AtomicRmwXchg(MemArg),
1039
+ I64AtomicRmwXchg(MemArg),
1040
+ I32AtomicRmw8XchgU(MemArg),
1041
+ I32AtomicRmw16XchgU(MemArg),
1042
+ I64AtomicRmw8XchgU(MemArg),
1043
+ I64AtomicRmw16XchgU(MemArg),
1044
+ I64AtomicRmw32XchgU(MemArg),
1045
+ I32AtomicRmwCmpxchg(MemArg),
1046
+ I64AtomicRmwCmpxchg(MemArg),
1047
+ I32AtomicRmw8CmpxchgU(MemArg),
1048
+ I32AtomicRmw16CmpxchgU(MemArg),
1049
+ I64AtomicRmw8CmpxchgU(MemArg),
1050
+ I64AtomicRmw16CmpxchgU(MemArg),
1051
+ I64AtomicRmw32CmpxchgU(MemArg),
1052
+
1053
+ // More atomic instructions (the shared-everything-threads proposal)
1054
+ GlobalAtomicGet {
1055
+ ordering: Ordering,
1056
+ global_index: u32,
1057
+ },
1058
+ GlobalAtomicSet {
1059
+ ordering: Ordering,
1060
+ global_index: u32,
1061
+ },
1062
+ GlobalAtomicRmwAdd {
1063
+ ordering: Ordering,
1064
+ global_index: u32,
1065
+ },
1066
+ GlobalAtomicRmwSub {
1067
+ ordering: Ordering,
1068
+ global_index: u32,
1069
+ },
1070
+ GlobalAtomicRmwAnd {
1071
+ ordering: Ordering,
1072
+ global_index: u32,
1073
+ },
1074
+ GlobalAtomicRmwOr {
1075
+ ordering: Ordering,
1076
+ global_index: u32,
1077
+ },
1078
+ GlobalAtomicRmwXor {
1079
+ ordering: Ordering,
1080
+ global_index: u32,
1081
+ },
1082
+ GlobalAtomicRmwXchg {
1083
+ ordering: Ordering,
1084
+ global_index: u32,
1085
+ },
1086
+ GlobalAtomicRmwCmpxchg {
1087
+ ordering: Ordering,
1088
+ global_index: u32,
1089
+ },
1090
+ TableAtomicGet {
1091
+ ordering: Ordering,
1092
+ table_index: u32,
1093
+ },
1094
+ TableAtomicSet {
1095
+ ordering: Ordering,
1096
+ table_index: u32,
1097
+ },
1098
+ TableAtomicRmwXchg {
1099
+ ordering: Ordering,
1100
+ table_index: u32,
1101
+ },
1102
+ TableAtomicRmwCmpxchg {
1103
+ ordering: Ordering,
1104
+ table_index: u32,
1105
+ },
1106
+ StructAtomicGet {
1107
+ ordering: Ordering,
1108
+ struct_type_index: u32,
1109
+ field_index: u32,
1110
+ },
1111
+ StructAtomicGetS {
1112
+ ordering: Ordering,
1113
+ struct_type_index: u32,
1114
+ field_index: u32,
1115
+ },
1116
+ StructAtomicGetU {
1117
+ ordering: Ordering,
1118
+ struct_type_index: u32,
1119
+ field_index: u32,
1120
+ },
1121
+ StructAtomicSet {
1122
+ ordering: Ordering,
1123
+ struct_type_index: u32,
1124
+ field_index: u32,
1125
+ },
1126
+ StructAtomicRmwAdd {
1127
+ ordering: Ordering,
1128
+ struct_type_index: u32,
1129
+ field_index: u32,
1130
+ },
1131
+ StructAtomicRmwSub {
1132
+ ordering: Ordering,
1133
+ struct_type_index: u32,
1134
+ field_index: u32,
1135
+ },
1136
+ StructAtomicRmwAnd {
1137
+ ordering: Ordering,
1138
+ struct_type_index: u32,
1139
+ field_index: u32,
1140
+ },
1141
+ StructAtomicRmwOr {
1142
+ ordering: Ordering,
1143
+ struct_type_index: u32,
1144
+ field_index: u32,
1145
+ },
1146
+ StructAtomicRmwXor {
1147
+ ordering: Ordering,
1148
+ struct_type_index: u32,
1149
+ field_index: u32,
1150
+ },
1151
+ StructAtomicRmwXchg {
1152
+ ordering: Ordering,
1153
+ struct_type_index: u32,
1154
+ field_index: u32,
1155
+ },
1156
+ StructAtomicRmwCmpxchg {
1157
+ ordering: Ordering,
1158
+ struct_type_index: u32,
1159
+ field_index: u32,
1160
+ },
1161
+ ArrayAtomicGet {
1162
+ ordering: Ordering,
1163
+ array_type_index: u32,
1164
+ },
1165
+ ArrayAtomicGetS {
1166
+ ordering: Ordering,
1167
+ array_type_index: u32,
1168
+ },
1169
+ ArrayAtomicGetU {
1170
+ ordering: Ordering,
1171
+ array_type_index: u32,
1172
+ },
1173
+ ArrayAtomicSet {
1174
+ ordering: Ordering,
1175
+ array_type_index: u32,
1176
+ },
1177
+ ArrayAtomicRmwAdd {
1178
+ ordering: Ordering,
1179
+ array_type_index: u32,
1180
+ },
1181
+ ArrayAtomicRmwSub {
1182
+ ordering: Ordering,
1183
+ array_type_index: u32,
1184
+ },
1185
+ ArrayAtomicRmwAnd {
1186
+ ordering: Ordering,
1187
+ array_type_index: u32,
1188
+ },
1189
+ ArrayAtomicRmwOr {
1190
+ ordering: Ordering,
1191
+ array_type_index: u32,
1192
+ },
1193
+ ArrayAtomicRmwXor {
1194
+ ordering: Ordering,
1195
+ array_type_index: u32,
1196
+ },
1197
+ ArrayAtomicRmwXchg {
1198
+ ordering: Ordering,
1199
+ array_type_index: u32,
1200
+ },
1201
+ ArrayAtomicRmwCmpxchg {
1202
+ ordering: Ordering,
1203
+ array_type_index: u32,
1204
+ },
1205
+ RefI31Shared,
1206
+ // Stack switching
1207
+ ContNew(u32),
1208
+ ContBind {
1209
+ argument_index: u32,
1210
+ result_index: u32,
1211
+ },
1212
+ Suspend(u32),
1213
+ Resume {
1214
+ cont_type_index: u32,
1215
+ resume_table: Cow<'a, [Handle]>,
1216
+ },
1217
+ ResumeThrow {
1218
+ cont_type_index: u32,
1219
+ tag_index: u32,
1220
+ resume_table: Cow<'a, [Handle]>,
1221
+ },
1222
+ Switch {
1223
+ cont_type_index: u32,
1224
+ tag_index: u32,
1225
+ },
1226
+ }
1227
+
1228
+ impl Encode for Instruction<'_> {
1229
+ fn encode(&self, sink: &mut Vec<u8>) {
1230
+ match *self {
1231
+ // Control instructions.
1232
+ Instruction::Unreachable => sink.push(0x00),
1233
+ Instruction::Nop => sink.push(0x01),
1234
+ Instruction::Block(bt) => {
1235
+ sink.push(0x02);
1236
+ bt.encode(sink);
1237
+ }
1238
+ Instruction::Loop(bt) => {
1239
+ sink.push(0x03);
1240
+ bt.encode(sink);
1241
+ }
1242
+ Instruction::If(bt) => {
1243
+ sink.push(0x04);
1244
+ bt.encode(sink);
1245
+ }
1246
+ Instruction::Else => sink.push(0x05),
1247
+ Instruction::Try(bt) => {
1248
+ sink.push(0x06);
1249
+ bt.encode(sink);
1250
+ }
1251
+ Instruction::Catch(t) => {
1252
+ sink.push(0x07);
1253
+ t.encode(sink);
1254
+ }
1255
+ Instruction::Throw(t) => {
1256
+ sink.push(0x08);
1257
+ t.encode(sink);
1258
+ }
1259
+ Instruction::Rethrow(l) => {
1260
+ sink.push(0x09);
1261
+ l.encode(sink);
1262
+ }
1263
+ Instruction::ThrowRef => {
1264
+ sink.push(0x0A);
1265
+ }
1266
+ Instruction::End => sink.push(0x0B),
1267
+ Instruction::Br(l) => {
1268
+ sink.push(0x0C);
1269
+ l.encode(sink);
1270
+ }
1271
+ Instruction::BrIf(l) => {
1272
+ sink.push(0x0D);
1273
+ l.encode(sink);
1274
+ }
1275
+ Instruction::BrTable(ref ls, l) => {
1276
+ sink.push(0x0E);
1277
+ ls.encode(sink);
1278
+ l.encode(sink);
1279
+ }
1280
+ Instruction::BrOnNull(l) => {
1281
+ sink.push(0xD5);
1282
+ l.encode(sink);
1283
+ }
1284
+ Instruction::BrOnNonNull(l) => {
1285
+ sink.push(0xD6);
1286
+ l.encode(sink);
1287
+ }
1288
+ Instruction::Return => sink.push(0x0F),
1289
+ Instruction::Call(f) => {
1290
+ sink.push(0x10);
1291
+ f.encode(sink);
1292
+ }
1293
+ Instruction::CallRef(ty) => {
1294
+ sink.push(0x14);
1295
+ ty.encode(sink);
1296
+ }
1297
+ Instruction::CallIndirect {
1298
+ type_index,
1299
+ table_index,
1300
+ } => {
1301
+ sink.push(0x11);
1302
+ type_index.encode(sink);
1303
+ table_index.encode(sink);
1304
+ }
1305
+ Instruction::ReturnCallRef(ty) => {
1306
+ sink.push(0x15);
1307
+ ty.encode(sink);
1308
+ }
1309
+
1310
+ Instruction::ReturnCall(f) => {
1311
+ sink.push(0x12);
1312
+ f.encode(sink);
1313
+ }
1314
+ Instruction::ReturnCallIndirect {
1315
+ type_index,
1316
+ table_index,
1317
+ } => {
1318
+ sink.push(0x13);
1319
+ type_index.encode(sink);
1320
+ table_index.encode(sink);
1321
+ }
1322
+ Instruction::Delegate(l) => {
1323
+ sink.push(0x18);
1324
+ l.encode(sink);
1325
+ }
1326
+ Instruction::CatchAll => {
1327
+ sink.push(0x19);
1328
+ }
1329
+
1330
+ // Parametric instructions.
1331
+ Instruction::Drop => sink.push(0x1A),
1332
+ Instruction::Select => sink.push(0x1B),
1333
+ Instruction::TypedSelect(ty) => {
1334
+ sink.push(0x1c);
1335
+ [ty].encode(sink);
1336
+ }
1337
+
1338
+ Instruction::TryTable(ty, ref catches) => {
1339
+ sink.push(0x1f);
1340
+ ty.encode(sink);
1341
+ catches.encode(sink);
1342
+ }
1343
+
1344
+ // Variable instructions.
1345
+ Instruction::LocalGet(l) => {
1346
+ sink.push(0x20);
1347
+ l.encode(sink);
1348
+ }
1349
+ Instruction::LocalSet(l) => {
1350
+ sink.push(0x21);
1351
+ l.encode(sink);
1352
+ }
1353
+ Instruction::LocalTee(l) => {
1354
+ sink.push(0x22);
1355
+ l.encode(sink);
1356
+ }
1357
+ Instruction::GlobalGet(g) => {
1358
+ sink.push(0x23);
1359
+ g.encode(sink);
1360
+ }
1361
+ Instruction::GlobalSet(g) => {
1362
+ sink.push(0x24);
1363
+ g.encode(sink);
1364
+ }
1365
+ Instruction::TableGet(table) => {
1366
+ sink.push(0x25);
1367
+ table.encode(sink);
1368
+ }
1369
+ Instruction::TableSet(table) => {
1370
+ sink.push(0x26);
1371
+ table.encode(sink);
1372
+ }
1373
+
1374
+ // Memory instructions.
1375
+ Instruction::I32Load(m) => {
1376
+ sink.push(0x28);
1377
+ m.encode(sink);
1378
+ }
1379
+ Instruction::I64Load(m) => {
1380
+ sink.push(0x29);
1381
+ m.encode(sink);
1382
+ }
1383
+ Instruction::F32Load(m) => {
1384
+ sink.push(0x2A);
1385
+ m.encode(sink);
1386
+ }
1387
+ Instruction::F64Load(m) => {
1388
+ sink.push(0x2B);
1389
+ m.encode(sink);
1390
+ }
1391
+ Instruction::I32Load8S(m) => {
1392
+ sink.push(0x2C);
1393
+ m.encode(sink);
1394
+ }
1395
+ Instruction::I32Load8U(m) => {
1396
+ sink.push(0x2D);
1397
+ m.encode(sink);
1398
+ }
1399
+ Instruction::I32Load16S(m) => {
1400
+ sink.push(0x2E);
1401
+ m.encode(sink);
1402
+ }
1403
+ Instruction::I32Load16U(m) => {
1404
+ sink.push(0x2F);
1405
+ m.encode(sink);
1406
+ }
1407
+ Instruction::I64Load8S(m) => {
1408
+ sink.push(0x30);
1409
+ m.encode(sink);
1410
+ }
1411
+ Instruction::I64Load8U(m) => {
1412
+ sink.push(0x31);
1413
+ m.encode(sink);
1414
+ }
1415
+ Instruction::I64Load16S(m) => {
1416
+ sink.push(0x32);
1417
+ m.encode(sink);
1418
+ }
1419
+ Instruction::I64Load16U(m) => {
1420
+ sink.push(0x33);
1421
+ m.encode(sink);
1422
+ }
1423
+ Instruction::I64Load32S(m) => {
1424
+ sink.push(0x34);
1425
+ m.encode(sink);
1426
+ }
1427
+ Instruction::I64Load32U(m) => {
1428
+ sink.push(0x35);
1429
+ m.encode(sink);
1430
+ }
1431
+ Instruction::I32Store(m) => {
1432
+ sink.push(0x36);
1433
+ m.encode(sink);
1434
+ }
1435
+ Instruction::I64Store(m) => {
1436
+ sink.push(0x37);
1437
+ m.encode(sink);
1438
+ }
1439
+ Instruction::F32Store(m) => {
1440
+ sink.push(0x38);
1441
+ m.encode(sink);
1442
+ }
1443
+ Instruction::F64Store(m) => {
1444
+ sink.push(0x39);
1445
+ m.encode(sink);
1446
+ }
1447
+ Instruction::I32Store8(m) => {
1448
+ sink.push(0x3A);
1449
+ m.encode(sink);
1450
+ }
1451
+ Instruction::I32Store16(m) => {
1452
+ sink.push(0x3B);
1453
+ m.encode(sink);
1454
+ }
1455
+ Instruction::I64Store8(m) => {
1456
+ sink.push(0x3C);
1457
+ m.encode(sink);
1458
+ }
1459
+ Instruction::I64Store16(m) => {
1460
+ sink.push(0x3D);
1461
+ m.encode(sink);
1462
+ }
1463
+ Instruction::I64Store32(m) => {
1464
+ sink.push(0x3E);
1465
+ m.encode(sink);
1466
+ }
1467
+ Instruction::MemorySize(i) => {
1468
+ sink.push(0x3F);
1469
+ i.encode(sink);
1470
+ }
1471
+ Instruction::MemoryGrow(i) => {
1472
+ sink.push(0x40);
1473
+ i.encode(sink);
1474
+ }
1475
+ Instruction::MemoryInit { mem, data_index } => {
1476
+ sink.push(0xfc);
1477
+ sink.push(0x08);
1478
+ data_index.encode(sink);
1479
+ mem.encode(sink);
1480
+ }
1481
+ Instruction::DataDrop(data) => {
1482
+ sink.push(0xfc);
1483
+ sink.push(0x09);
1484
+ data.encode(sink);
1485
+ }
1486
+ Instruction::MemoryCopy { src_mem, dst_mem } => {
1487
+ sink.push(0xfc);
1488
+ sink.push(0x0a);
1489
+ dst_mem.encode(sink);
1490
+ src_mem.encode(sink);
1491
+ }
1492
+ Instruction::MemoryFill(mem) => {
1493
+ sink.push(0xfc);
1494
+ sink.push(0x0b);
1495
+ mem.encode(sink);
1496
+ }
1497
+ Instruction::MemoryDiscard(mem) => {
1498
+ sink.push(0xfc);
1499
+ sink.push(0x12);
1500
+ mem.encode(sink);
1501
+ }
1502
+
1503
+ // Numeric instructions.
1504
+ Instruction::I32Const(x) => {
1505
+ sink.push(0x41);
1506
+ x.encode(sink);
1507
+ }
1508
+ Instruction::I64Const(x) => {
1509
+ sink.push(0x42);
1510
+ x.encode(sink);
1511
+ }
1512
+ Instruction::F32Const(x) => {
1513
+ sink.push(0x43);
1514
+ let x = x.to_bits();
1515
+ sink.extend(x.to_le_bytes().iter().copied());
1516
+ }
1517
+ Instruction::F64Const(x) => {
1518
+ sink.push(0x44);
1519
+ let x = x.to_bits();
1520
+ sink.extend(x.to_le_bytes().iter().copied());
1521
+ }
1522
+ Instruction::I32Eqz => sink.push(0x45),
1523
+ Instruction::I32Eq => sink.push(0x46),
1524
+ Instruction::I32Ne => sink.push(0x47),
1525
+ Instruction::I32LtS => sink.push(0x48),
1526
+ Instruction::I32LtU => sink.push(0x49),
1527
+ Instruction::I32GtS => sink.push(0x4A),
1528
+ Instruction::I32GtU => sink.push(0x4B),
1529
+ Instruction::I32LeS => sink.push(0x4C),
1530
+ Instruction::I32LeU => sink.push(0x4D),
1531
+ Instruction::I32GeS => sink.push(0x4E),
1532
+ Instruction::I32GeU => sink.push(0x4F),
1533
+ Instruction::I64Eqz => sink.push(0x50),
1534
+ Instruction::I64Eq => sink.push(0x51),
1535
+ Instruction::I64Ne => sink.push(0x52),
1536
+ Instruction::I64LtS => sink.push(0x53),
1537
+ Instruction::I64LtU => sink.push(0x54),
1538
+ Instruction::I64GtS => sink.push(0x55),
1539
+ Instruction::I64GtU => sink.push(0x56),
1540
+ Instruction::I64LeS => sink.push(0x57),
1541
+ Instruction::I64LeU => sink.push(0x58),
1542
+ Instruction::I64GeS => sink.push(0x59),
1543
+ Instruction::I64GeU => sink.push(0x5A),
1544
+ Instruction::F32Eq => sink.push(0x5B),
1545
+ Instruction::F32Ne => sink.push(0x5C),
1546
+ Instruction::F32Lt => sink.push(0x5D),
1547
+ Instruction::F32Gt => sink.push(0x5E),
1548
+ Instruction::F32Le => sink.push(0x5F),
1549
+ Instruction::F32Ge => sink.push(0x60),
1550
+ Instruction::F64Eq => sink.push(0x61),
1551
+ Instruction::F64Ne => sink.push(0x62),
1552
+ Instruction::F64Lt => sink.push(0x63),
1553
+ Instruction::F64Gt => sink.push(0x64),
1554
+ Instruction::F64Le => sink.push(0x65),
1555
+ Instruction::F64Ge => sink.push(0x66),
1556
+ Instruction::I32Clz => sink.push(0x67),
1557
+ Instruction::I32Ctz => sink.push(0x68),
1558
+ Instruction::I32Popcnt => sink.push(0x69),
1559
+ Instruction::I32Add => sink.push(0x6A),
1560
+ Instruction::I32Sub => sink.push(0x6B),
1561
+ Instruction::I32Mul => sink.push(0x6C),
1562
+ Instruction::I32DivS => sink.push(0x6D),
1563
+ Instruction::I32DivU => sink.push(0x6E),
1564
+ Instruction::I32RemS => sink.push(0x6F),
1565
+ Instruction::I32RemU => sink.push(0x70),
1566
+ Instruction::I32And => sink.push(0x71),
1567
+ Instruction::I32Or => sink.push(0x72),
1568
+ Instruction::I32Xor => sink.push(0x73),
1569
+ Instruction::I32Shl => sink.push(0x74),
1570
+ Instruction::I32ShrS => sink.push(0x75),
1571
+ Instruction::I32ShrU => sink.push(0x76),
1572
+ Instruction::I32Rotl => sink.push(0x77),
1573
+ Instruction::I32Rotr => sink.push(0x78),
1574
+ Instruction::I64Clz => sink.push(0x79),
1575
+ Instruction::I64Ctz => sink.push(0x7A),
1576
+ Instruction::I64Popcnt => sink.push(0x7B),
1577
+ Instruction::I64Add => sink.push(0x7C),
1578
+ Instruction::I64Sub => sink.push(0x7D),
1579
+ Instruction::I64Mul => sink.push(0x7E),
1580
+ Instruction::I64DivS => sink.push(0x7F),
1581
+ Instruction::I64DivU => sink.push(0x80),
1582
+ Instruction::I64RemS => sink.push(0x81),
1583
+ Instruction::I64RemU => sink.push(0x82),
1584
+ Instruction::I64And => sink.push(0x83),
1585
+ Instruction::I64Or => sink.push(0x84),
1586
+ Instruction::I64Xor => sink.push(0x85),
1587
+ Instruction::I64Shl => sink.push(0x86),
1588
+ Instruction::I64ShrS => sink.push(0x87),
1589
+ Instruction::I64ShrU => sink.push(0x88),
1590
+ Instruction::I64Rotl => sink.push(0x89),
1591
+ Instruction::I64Rotr => sink.push(0x8A),
1592
+ Instruction::F32Abs => sink.push(0x8B),
1593
+ Instruction::F32Neg => sink.push(0x8C),
1594
+ Instruction::F32Ceil => sink.push(0x8D),
1595
+ Instruction::F32Floor => sink.push(0x8E),
1596
+ Instruction::F32Trunc => sink.push(0x8F),
1597
+ Instruction::F32Nearest => sink.push(0x90),
1598
+ Instruction::F32Sqrt => sink.push(0x91),
1599
+ Instruction::F32Add => sink.push(0x92),
1600
+ Instruction::F32Sub => sink.push(0x93),
1601
+ Instruction::F32Mul => sink.push(0x94),
1602
+ Instruction::F32Div => sink.push(0x95),
1603
+ Instruction::F32Min => sink.push(0x96),
1604
+ Instruction::F32Max => sink.push(0x97),
1605
+ Instruction::F32Copysign => sink.push(0x98),
1606
+ Instruction::F64Abs => sink.push(0x99),
1607
+ Instruction::F64Neg => sink.push(0x9A),
1608
+ Instruction::F64Ceil => sink.push(0x9B),
1609
+ Instruction::F64Floor => sink.push(0x9C),
1610
+ Instruction::F64Trunc => sink.push(0x9D),
1611
+ Instruction::F64Nearest => sink.push(0x9E),
1612
+ Instruction::F64Sqrt => sink.push(0x9F),
1613
+ Instruction::F64Add => sink.push(0xA0),
1614
+ Instruction::F64Sub => sink.push(0xA1),
1615
+ Instruction::F64Mul => sink.push(0xA2),
1616
+ Instruction::F64Div => sink.push(0xA3),
1617
+ Instruction::F64Min => sink.push(0xA4),
1618
+ Instruction::F64Max => sink.push(0xA5),
1619
+ Instruction::F64Copysign => sink.push(0xA6),
1620
+ Instruction::I32WrapI64 => sink.push(0xA7),
1621
+ Instruction::I32TruncF32S => sink.push(0xA8),
1622
+ Instruction::I32TruncF32U => sink.push(0xA9),
1623
+ Instruction::I32TruncF64S => sink.push(0xAA),
1624
+ Instruction::I32TruncF64U => sink.push(0xAB),
1625
+ Instruction::I64ExtendI32S => sink.push(0xAC),
1626
+ Instruction::I64ExtendI32U => sink.push(0xAD),
1627
+ Instruction::I64TruncF32S => sink.push(0xAE),
1628
+ Instruction::I64TruncF32U => sink.push(0xAF),
1629
+ Instruction::I64TruncF64S => sink.push(0xB0),
1630
+ Instruction::I64TruncF64U => sink.push(0xB1),
1631
+ Instruction::F32ConvertI32S => sink.push(0xB2),
1632
+ Instruction::F32ConvertI32U => sink.push(0xB3),
1633
+ Instruction::F32ConvertI64S => sink.push(0xB4),
1634
+ Instruction::F32ConvertI64U => sink.push(0xB5),
1635
+ Instruction::F32DemoteF64 => sink.push(0xB6),
1636
+ Instruction::F64ConvertI32S => sink.push(0xB7),
1637
+ Instruction::F64ConvertI32U => sink.push(0xB8),
1638
+ Instruction::F64ConvertI64S => sink.push(0xB9),
1639
+ Instruction::F64ConvertI64U => sink.push(0xBA),
1640
+ Instruction::F64PromoteF32 => sink.push(0xBB),
1641
+ Instruction::I32ReinterpretF32 => sink.push(0xBC),
1642
+ Instruction::I64ReinterpretF64 => sink.push(0xBD),
1643
+ Instruction::F32ReinterpretI32 => sink.push(0xBE),
1644
+ Instruction::F64ReinterpretI64 => sink.push(0xBF),
1645
+ Instruction::I32Extend8S => sink.push(0xC0),
1646
+ Instruction::I32Extend16S => sink.push(0xC1),
1647
+ Instruction::I64Extend8S => sink.push(0xC2),
1648
+ Instruction::I64Extend16S => sink.push(0xC3),
1649
+ Instruction::I64Extend32S => sink.push(0xC4),
1650
+
1651
+ Instruction::I32TruncSatF32S => {
1652
+ sink.push(0xFC);
1653
+ sink.push(0x00);
1654
+ }
1655
+ Instruction::I32TruncSatF32U => {
1656
+ sink.push(0xFC);
1657
+ sink.push(0x01);
1658
+ }
1659
+ Instruction::I32TruncSatF64S => {
1660
+ sink.push(0xFC);
1661
+ sink.push(0x02);
1662
+ }
1663
+ Instruction::I32TruncSatF64U => {
1664
+ sink.push(0xFC);
1665
+ sink.push(0x03);
1666
+ }
1667
+ Instruction::I64TruncSatF32S => {
1668
+ sink.push(0xFC);
1669
+ sink.push(0x04);
1670
+ }
1671
+ Instruction::I64TruncSatF32U => {
1672
+ sink.push(0xFC);
1673
+ sink.push(0x05);
1674
+ }
1675
+ Instruction::I64TruncSatF64S => {
1676
+ sink.push(0xFC);
1677
+ sink.push(0x06);
1678
+ }
1679
+ Instruction::I64TruncSatF64U => {
1680
+ sink.push(0xFC);
1681
+ sink.push(0x07);
1682
+ }
1683
+
1684
+ // Reference types instructions.
1685
+ Instruction::RefNull(ty) => {
1686
+ sink.push(0xd0);
1687
+ ty.encode(sink);
1688
+ }
1689
+ Instruction::RefIsNull => sink.push(0xd1),
1690
+ Instruction::RefFunc(f) => {
1691
+ sink.push(0xd2);
1692
+ f.encode(sink);
1693
+ }
1694
+ Instruction::RefEq => sink.push(0xd3),
1695
+ Instruction::RefAsNonNull => sink.push(0xd4),
1696
+
1697
+ // GC instructions.
1698
+ Instruction::StructNew(type_index) => {
1699
+ sink.push(0xfb);
1700
+ sink.push(0x00);
1701
+ type_index.encode(sink);
1702
+ }
1703
+ Instruction::StructNewDefault(type_index) => {
1704
+ sink.push(0xfb);
1705
+ sink.push(0x01);
1706
+ type_index.encode(sink);
1707
+ }
1708
+ Instruction::StructGet {
1709
+ struct_type_index,
1710
+ field_index,
1711
+ } => {
1712
+ sink.push(0xfb);
1713
+ sink.push(0x02);
1714
+ struct_type_index.encode(sink);
1715
+ field_index.encode(sink);
1716
+ }
1717
+ Instruction::StructGetS {
1718
+ struct_type_index,
1719
+ field_index,
1720
+ } => {
1721
+ sink.push(0xfb);
1722
+ sink.push(0x03);
1723
+ struct_type_index.encode(sink);
1724
+ field_index.encode(sink);
1725
+ }
1726
+ Instruction::StructGetU {
1727
+ struct_type_index,
1728
+ field_index,
1729
+ } => {
1730
+ sink.push(0xfb);
1731
+ sink.push(0x04);
1732
+ struct_type_index.encode(sink);
1733
+ field_index.encode(sink);
1734
+ }
1735
+ Instruction::StructSet {
1736
+ struct_type_index,
1737
+ field_index,
1738
+ } => {
1739
+ sink.push(0xfb);
1740
+ sink.push(0x05);
1741
+ struct_type_index.encode(sink);
1742
+ field_index.encode(sink);
1743
+ }
1744
+ Instruction::ArrayNew(type_index) => {
1745
+ sink.push(0xfb);
1746
+ sink.push(0x06);
1747
+ type_index.encode(sink);
1748
+ }
1749
+ Instruction::ArrayNewDefault(type_index) => {
1750
+ sink.push(0xfb);
1751
+ sink.push(0x07);
1752
+ type_index.encode(sink);
1753
+ }
1754
+ Instruction::ArrayNewFixed {
1755
+ array_type_index,
1756
+ array_size,
1757
+ } => {
1758
+ sink.push(0xfb);
1759
+ sink.push(0x08);
1760
+ array_type_index.encode(sink);
1761
+ array_size.encode(sink);
1762
+ }
1763
+ Instruction::ArrayNewData {
1764
+ array_type_index,
1765
+ array_data_index,
1766
+ } => {
1767
+ sink.push(0xfb);
1768
+ sink.push(0x09);
1769
+ array_type_index.encode(sink);
1770
+ array_data_index.encode(sink);
1771
+ }
1772
+ Instruction::ArrayNewElem {
1773
+ array_type_index,
1774
+ array_elem_index,
1775
+ } => {
1776
+ sink.push(0xfb);
1777
+ sink.push(0x0a);
1778
+ array_type_index.encode(sink);
1779
+ array_elem_index.encode(sink);
1780
+ }
1781
+ Instruction::ArrayGet(type_index) => {
1782
+ sink.push(0xfb);
1783
+ sink.push(0x0b);
1784
+ type_index.encode(sink);
1785
+ }
1786
+ Instruction::ArrayGetS(type_index) => {
1787
+ sink.push(0xfb);
1788
+ sink.push(0x0c);
1789
+ type_index.encode(sink);
1790
+ }
1791
+ Instruction::ArrayGetU(type_index) => {
1792
+ sink.push(0xfb);
1793
+ sink.push(0x0d);
1794
+ type_index.encode(sink);
1795
+ }
1796
+ Instruction::ArraySet(type_index) => {
1797
+ sink.push(0xfb);
1798
+ sink.push(0x0e);
1799
+ type_index.encode(sink);
1800
+ }
1801
+ Instruction::ArrayLen => {
1802
+ sink.push(0xfb);
1803
+ sink.push(0x0f);
1804
+ }
1805
+ Instruction::ArrayFill(type_index) => {
1806
+ sink.push(0xfb);
1807
+ sink.push(0x10);
1808
+ type_index.encode(sink);
1809
+ }
1810
+ Instruction::ArrayCopy {
1811
+ array_type_index_dst,
1812
+ array_type_index_src,
1813
+ } => {
1814
+ sink.push(0xfb);
1815
+ sink.push(0x11);
1816
+ array_type_index_dst.encode(sink);
1817
+ array_type_index_src.encode(sink);
1818
+ }
1819
+ Instruction::ArrayInitData {
1820
+ array_type_index,
1821
+ array_data_index,
1822
+ } => {
1823
+ sink.push(0xfb);
1824
+ sink.push(0x12);
1825
+ array_type_index.encode(sink);
1826
+ array_data_index.encode(sink);
1827
+ }
1828
+ Instruction::ArrayInitElem {
1829
+ array_type_index,
1830
+ array_elem_index,
1831
+ } => {
1832
+ sink.push(0xfb);
1833
+ sink.push(0x13);
1834
+ array_type_index.encode(sink);
1835
+ array_elem_index.encode(sink);
1836
+ }
1837
+ Instruction::RefTestNonNull(heap_type) => {
1838
+ sink.push(0xfb);
1839
+ sink.push(0x14);
1840
+ heap_type.encode(sink);
1841
+ }
1842
+ Instruction::RefTestNullable(heap_type) => {
1843
+ sink.push(0xfb);
1844
+ sink.push(0x15);
1845
+ heap_type.encode(sink);
1846
+ }
1847
+ Instruction::RefCastNonNull(heap_type) => {
1848
+ sink.push(0xfb);
1849
+ sink.push(0x16);
1850
+ heap_type.encode(sink);
1851
+ }
1852
+ Instruction::RefCastNullable(heap_type) => {
1853
+ sink.push(0xfb);
1854
+ sink.push(0x17);
1855
+ heap_type.encode(sink);
1856
+ }
1857
+ Instruction::BrOnCast {
1858
+ relative_depth,
1859
+ from_ref_type,
1860
+ to_ref_type,
1861
+ } => {
1862
+ sink.push(0xfb);
1863
+ sink.push(0x18);
1864
+ let cast_flags =
1865
+ (from_ref_type.nullable as u8) | ((to_ref_type.nullable as u8) << 1);
1866
+ sink.push(cast_flags);
1867
+ relative_depth.encode(sink);
1868
+ from_ref_type.heap_type.encode(sink);
1869
+ to_ref_type.heap_type.encode(sink);
1870
+ }
1871
+ Instruction::BrOnCastFail {
1872
+ relative_depth,
1873
+ from_ref_type,
1874
+ to_ref_type,
1875
+ } => {
1876
+ sink.push(0xfb);
1877
+ sink.push(0x19);
1878
+ let cast_flags =
1879
+ (from_ref_type.nullable as u8) | ((to_ref_type.nullable as u8) << 1);
1880
+ sink.push(cast_flags);
1881
+ relative_depth.encode(sink);
1882
+ from_ref_type.heap_type.encode(sink);
1883
+ to_ref_type.heap_type.encode(sink);
1884
+ }
1885
+ Instruction::AnyConvertExtern => {
1886
+ sink.push(0xfb);
1887
+ sink.push(0x1a);
1888
+ }
1889
+ Instruction::ExternConvertAny => {
1890
+ sink.push(0xfb);
1891
+ sink.push(0x1b);
1892
+ }
1893
+ Instruction::RefI31 => {
1894
+ sink.push(0xfb);
1895
+ sink.push(0x1c);
1896
+ }
1897
+ Instruction::I31GetS => {
1898
+ sink.push(0xfb);
1899
+ sink.push(0x1d);
1900
+ }
1901
+ Instruction::I31GetU => {
1902
+ sink.push(0xfb);
1903
+ sink.push(0x1e);
1904
+ }
1905
+
1906
+ // Bulk memory instructions.
1907
+ Instruction::TableInit { elem_index, table } => {
1908
+ sink.push(0xfc);
1909
+ sink.push(0x0c);
1910
+ elem_index.encode(sink);
1911
+ table.encode(sink);
1912
+ }
1913
+ Instruction::ElemDrop(segment) => {
1914
+ sink.push(0xfc);
1915
+ sink.push(0x0d);
1916
+ segment.encode(sink);
1917
+ }
1918
+ Instruction::TableCopy {
1919
+ src_table,
1920
+ dst_table,
1921
+ } => {
1922
+ sink.push(0xfc);
1923
+ sink.push(0x0e);
1924
+ dst_table.encode(sink);
1925
+ src_table.encode(sink);
1926
+ }
1927
+ Instruction::TableGrow(table) => {
1928
+ sink.push(0xfc);
1929
+ sink.push(0x0f);
1930
+ table.encode(sink);
1931
+ }
1932
+ Instruction::TableSize(table) => {
1933
+ sink.push(0xfc);
1934
+ sink.push(0x10);
1935
+ table.encode(sink);
1936
+ }
1937
+ Instruction::TableFill(table) => {
1938
+ sink.push(0xfc);
1939
+ sink.push(0x11);
1940
+ table.encode(sink);
1941
+ }
1942
+
1943
+ // SIMD instructions.
1944
+ Instruction::V128Load(memarg) => {
1945
+ sink.push(0xFD);
1946
+ 0x00u32.encode(sink);
1947
+ memarg.encode(sink);
1948
+ }
1949
+ Instruction::V128Load8x8S(memarg) => {
1950
+ sink.push(0xFD);
1951
+ 0x01u32.encode(sink);
1952
+ memarg.encode(sink);
1953
+ }
1954
+ Instruction::V128Load8x8U(memarg) => {
1955
+ sink.push(0xFD);
1956
+ 0x02u32.encode(sink);
1957
+ memarg.encode(sink);
1958
+ }
1959
+ Instruction::V128Load16x4S(memarg) => {
1960
+ sink.push(0xFD);
1961
+ 0x03u32.encode(sink);
1962
+ memarg.encode(sink);
1963
+ }
1964
+ Instruction::V128Load16x4U(memarg) => {
1965
+ sink.push(0xFD);
1966
+ 0x04u32.encode(sink);
1967
+ memarg.encode(sink);
1968
+ }
1969
+ Instruction::V128Load32x2S(memarg) => {
1970
+ sink.push(0xFD);
1971
+ 0x05u32.encode(sink);
1972
+ memarg.encode(sink);
1973
+ }
1974
+ Instruction::V128Load32x2U(memarg) => {
1975
+ sink.push(0xFD);
1976
+ 0x06u32.encode(sink);
1977
+ memarg.encode(sink);
1978
+ }
1979
+ Instruction::V128Load8Splat(memarg) => {
1980
+ sink.push(0xFD);
1981
+ 0x07u32.encode(sink);
1982
+ memarg.encode(sink);
1983
+ }
1984
+ Instruction::V128Load16Splat(memarg) => {
1985
+ sink.push(0xFD);
1986
+ 0x08u32.encode(sink);
1987
+ memarg.encode(sink);
1988
+ }
1989
+ Instruction::V128Load32Splat(memarg) => {
1990
+ sink.push(0xFD);
1991
+ 0x09u32.encode(sink);
1992
+ memarg.encode(sink);
1993
+ }
1994
+ Instruction::V128Load64Splat(memarg) => {
1995
+ sink.push(0xFD);
1996
+ 0x0Au32.encode(sink);
1997
+ memarg.encode(sink);
1998
+ }
1999
+ Instruction::V128Store(memarg) => {
2000
+ sink.push(0xFD);
2001
+ 0x0Bu32.encode(sink);
2002
+ memarg.encode(sink);
2003
+ }
2004
+ Instruction::V128Const(x) => {
2005
+ sink.push(0xFD);
2006
+ 0x0Cu32.encode(sink);
2007
+ sink.extend(x.to_le_bytes().iter().copied());
2008
+ }
2009
+ Instruction::I8x16Shuffle(lanes) => {
2010
+ sink.push(0xFD);
2011
+ 0x0Du32.encode(sink);
2012
+ assert!(lanes.iter().all(|l: &u8| *l < 32));
2013
+ sink.extend(lanes.iter().copied());
2014
+ }
2015
+ Instruction::I8x16Swizzle => {
2016
+ sink.push(0xFD);
2017
+ 0x0Eu32.encode(sink);
2018
+ }
2019
+ Instruction::I8x16Splat => {
2020
+ sink.push(0xFD);
2021
+ 0x0Fu32.encode(sink);
2022
+ }
2023
+ Instruction::I16x8Splat => {
2024
+ sink.push(0xFD);
2025
+ 0x10u32.encode(sink);
2026
+ }
2027
+ Instruction::I32x4Splat => {
2028
+ sink.push(0xFD);
2029
+ 0x11u32.encode(sink);
2030
+ }
2031
+ Instruction::I64x2Splat => {
2032
+ sink.push(0xFD);
2033
+ 0x12u32.encode(sink);
2034
+ }
2035
+ Instruction::F32x4Splat => {
2036
+ sink.push(0xFD);
2037
+ 0x13u32.encode(sink);
2038
+ }
2039
+ Instruction::F64x2Splat => {
2040
+ sink.push(0xFD);
2041
+ 0x14u32.encode(sink);
2042
+ }
2043
+ Instruction::I8x16ExtractLaneS(lane) => {
2044
+ sink.push(0xFD);
2045
+ 0x15u32.encode(sink);
2046
+ assert!(lane < 16);
2047
+ sink.push(lane);
2048
+ }
2049
+ Instruction::I8x16ExtractLaneU(lane) => {
2050
+ sink.push(0xFD);
2051
+ 0x16u32.encode(sink);
2052
+ assert!(lane < 16);
2053
+ sink.push(lane);
2054
+ }
2055
+ Instruction::I8x16ReplaceLane(lane) => {
2056
+ sink.push(0xFD);
2057
+ 0x17u32.encode(sink);
2058
+ assert!(lane < 16);
2059
+ sink.push(lane);
2060
+ }
2061
+ Instruction::I16x8ExtractLaneS(lane) => {
2062
+ sink.push(0xFD);
2063
+ 0x18u32.encode(sink);
2064
+ assert!(lane < 8);
2065
+ sink.push(lane);
2066
+ }
2067
+ Instruction::I16x8ExtractLaneU(lane) => {
2068
+ sink.push(0xFD);
2069
+ 0x19u32.encode(sink);
2070
+ assert!(lane < 8);
2071
+ sink.push(lane);
2072
+ }
2073
+ Instruction::I16x8ReplaceLane(lane) => {
2074
+ sink.push(0xFD);
2075
+ 0x1Au32.encode(sink);
2076
+ assert!(lane < 8);
2077
+ sink.push(lane);
2078
+ }
2079
+ Instruction::I32x4ExtractLane(lane) => {
2080
+ sink.push(0xFD);
2081
+ 0x1Bu32.encode(sink);
2082
+ assert!(lane < 4);
2083
+ sink.push(lane);
2084
+ }
2085
+ Instruction::I32x4ReplaceLane(lane) => {
2086
+ sink.push(0xFD);
2087
+ 0x1Cu32.encode(sink);
2088
+ assert!(lane < 4);
2089
+ sink.push(lane);
2090
+ }
2091
+ Instruction::I64x2ExtractLane(lane) => {
2092
+ sink.push(0xFD);
2093
+ 0x1Du32.encode(sink);
2094
+ assert!(lane < 2);
2095
+ sink.push(lane);
2096
+ }
2097
+ Instruction::I64x2ReplaceLane(lane) => {
2098
+ sink.push(0xFD);
2099
+ 0x1Eu32.encode(sink);
2100
+ assert!(lane < 2);
2101
+ sink.push(lane);
2102
+ }
2103
+ Instruction::F32x4ExtractLane(lane) => {
2104
+ sink.push(0xFD);
2105
+ 0x1Fu32.encode(sink);
2106
+ assert!(lane < 4);
2107
+ sink.push(lane);
2108
+ }
2109
+ Instruction::F32x4ReplaceLane(lane) => {
2110
+ sink.push(0xFD);
2111
+ 0x20u32.encode(sink);
2112
+ assert!(lane < 4);
2113
+ sink.push(lane);
2114
+ }
2115
+ Instruction::F64x2ExtractLane(lane) => {
2116
+ sink.push(0xFD);
2117
+ 0x21u32.encode(sink);
2118
+ assert!(lane < 2);
2119
+ sink.push(lane);
2120
+ }
2121
+ Instruction::F64x2ReplaceLane(lane) => {
2122
+ sink.push(0xFD);
2123
+ 0x22u32.encode(sink);
2124
+ assert!(lane < 2);
2125
+ sink.push(lane);
2126
+ }
2127
+
2128
+ Instruction::I8x16Eq => {
2129
+ sink.push(0xFD);
2130
+ 0x23u32.encode(sink);
2131
+ }
2132
+ Instruction::I8x16Ne => {
2133
+ sink.push(0xFD);
2134
+ 0x24u32.encode(sink);
2135
+ }
2136
+ Instruction::I8x16LtS => {
2137
+ sink.push(0xFD);
2138
+ 0x25u32.encode(sink);
2139
+ }
2140
+ Instruction::I8x16LtU => {
2141
+ sink.push(0xFD);
2142
+ 0x26u32.encode(sink);
2143
+ }
2144
+ Instruction::I8x16GtS => {
2145
+ sink.push(0xFD);
2146
+ 0x27u32.encode(sink);
2147
+ }
2148
+ Instruction::I8x16GtU => {
2149
+ sink.push(0xFD);
2150
+ 0x28u32.encode(sink);
2151
+ }
2152
+ Instruction::I8x16LeS => {
2153
+ sink.push(0xFD);
2154
+ 0x29u32.encode(sink);
2155
+ }
2156
+ Instruction::I8x16LeU => {
2157
+ sink.push(0xFD);
2158
+ 0x2Au32.encode(sink);
2159
+ }
2160
+ Instruction::I8x16GeS => {
2161
+ sink.push(0xFD);
2162
+ 0x2Bu32.encode(sink);
2163
+ }
2164
+ Instruction::I8x16GeU => {
2165
+ sink.push(0xFD);
2166
+ 0x2Cu32.encode(sink);
2167
+ }
2168
+ Instruction::I16x8Eq => {
2169
+ sink.push(0xFD);
2170
+ 0x2Du32.encode(sink);
2171
+ }
2172
+ Instruction::I16x8Ne => {
2173
+ sink.push(0xFD);
2174
+ 0x2Eu32.encode(sink);
2175
+ }
2176
+ Instruction::I16x8LtS => {
2177
+ sink.push(0xFD);
2178
+ 0x2Fu32.encode(sink);
2179
+ }
2180
+ Instruction::I16x8LtU => {
2181
+ sink.push(0xFD);
2182
+ 0x30u32.encode(sink);
2183
+ }
2184
+ Instruction::I16x8GtS => {
2185
+ sink.push(0xFD);
2186
+ 0x31u32.encode(sink);
2187
+ }
2188
+ Instruction::I16x8GtU => {
2189
+ sink.push(0xFD);
2190
+ 0x32u32.encode(sink);
2191
+ }
2192
+ Instruction::I16x8LeS => {
2193
+ sink.push(0xFD);
2194
+ 0x33u32.encode(sink);
2195
+ }
2196
+ Instruction::I16x8LeU => {
2197
+ sink.push(0xFD);
2198
+ 0x34u32.encode(sink);
2199
+ }
2200
+ Instruction::I16x8GeS => {
2201
+ sink.push(0xFD);
2202
+ 0x35u32.encode(sink);
2203
+ }
2204
+ Instruction::I16x8GeU => {
2205
+ sink.push(0xFD);
2206
+ 0x36u32.encode(sink);
2207
+ }
2208
+ Instruction::I32x4Eq => {
2209
+ sink.push(0xFD);
2210
+ 0x37u32.encode(sink);
2211
+ }
2212
+ Instruction::I32x4Ne => {
2213
+ sink.push(0xFD);
2214
+ 0x38u32.encode(sink);
2215
+ }
2216
+ Instruction::I32x4LtS => {
2217
+ sink.push(0xFD);
2218
+ 0x39u32.encode(sink);
2219
+ }
2220
+ Instruction::I32x4LtU => {
2221
+ sink.push(0xFD);
2222
+ 0x3Au32.encode(sink);
2223
+ }
2224
+ Instruction::I32x4GtS => {
2225
+ sink.push(0xFD);
2226
+ 0x3Bu32.encode(sink);
2227
+ }
2228
+ Instruction::I32x4GtU => {
2229
+ sink.push(0xFD);
2230
+ 0x3Cu32.encode(sink);
2231
+ }
2232
+ Instruction::I32x4LeS => {
2233
+ sink.push(0xFD);
2234
+ 0x3Du32.encode(sink);
2235
+ }
2236
+ Instruction::I32x4LeU => {
2237
+ sink.push(0xFD);
2238
+ 0x3Eu32.encode(sink);
2239
+ }
2240
+ Instruction::I32x4GeS => {
2241
+ sink.push(0xFD);
2242
+ 0x3Fu32.encode(sink);
2243
+ }
2244
+ Instruction::I32x4GeU => {
2245
+ sink.push(0xFD);
2246
+ 0x40u32.encode(sink);
2247
+ }
2248
+ Instruction::F32x4Eq => {
2249
+ sink.push(0xFD);
2250
+ 0x41u32.encode(sink);
2251
+ }
2252
+ Instruction::F32x4Ne => {
2253
+ sink.push(0xFD);
2254
+ 0x42u32.encode(sink);
2255
+ }
2256
+ Instruction::F32x4Lt => {
2257
+ sink.push(0xFD);
2258
+ 0x43u32.encode(sink);
2259
+ }
2260
+ Instruction::F32x4Gt => {
2261
+ sink.push(0xFD);
2262
+ 0x44u32.encode(sink);
2263
+ }
2264
+ Instruction::F32x4Le => {
2265
+ sink.push(0xFD);
2266
+ 0x45u32.encode(sink);
2267
+ }
2268
+ Instruction::F32x4Ge => {
2269
+ sink.push(0xFD);
2270
+ 0x46u32.encode(sink);
2271
+ }
2272
+ Instruction::F64x2Eq => {
2273
+ sink.push(0xFD);
2274
+ 0x47u32.encode(sink);
2275
+ }
2276
+ Instruction::F64x2Ne => {
2277
+ sink.push(0xFD);
2278
+ 0x48u32.encode(sink);
2279
+ }
2280
+ Instruction::F64x2Lt => {
2281
+ sink.push(0xFD);
2282
+ 0x49u32.encode(sink);
2283
+ }
2284
+ Instruction::F64x2Gt => {
2285
+ sink.push(0xFD);
2286
+ 0x4Au32.encode(sink);
2287
+ }
2288
+ Instruction::F64x2Le => {
2289
+ sink.push(0xFD);
2290
+ 0x4Bu32.encode(sink);
2291
+ }
2292
+ Instruction::F64x2Ge => {
2293
+ sink.push(0xFD);
2294
+ 0x4Cu32.encode(sink);
2295
+ }
2296
+ Instruction::V128Not => {
2297
+ sink.push(0xFD);
2298
+ 0x4Du32.encode(sink);
2299
+ }
2300
+ Instruction::V128And => {
2301
+ sink.push(0xFD);
2302
+ 0x4Eu32.encode(sink);
2303
+ }
2304
+ Instruction::V128AndNot => {
2305
+ sink.push(0xFD);
2306
+ 0x4Fu32.encode(sink);
2307
+ }
2308
+ Instruction::V128Or => {
2309
+ sink.push(0xFD);
2310
+ 0x50u32.encode(sink);
2311
+ }
2312
+ Instruction::V128Xor => {
2313
+ sink.push(0xFD);
2314
+ 0x51u32.encode(sink);
2315
+ }
2316
+ Instruction::V128Bitselect => {
2317
+ sink.push(0xFD);
2318
+ 0x52u32.encode(sink);
2319
+ }
2320
+ Instruction::V128AnyTrue => {
2321
+ sink.push(0xFD);
2322
+ 0x53u32.encode(sink);
2323
+ }
2324
+ Instruction::I8x16Abs => {
2325
+ sink.push(0xFD);
2326
+ 0x60u32.encode(sink);
2327
+ }
2328
+ Instruction::I8x16Neg => {
2329
+ sink.push(0xFD);
2330
+ 0x61u32.encode(sink);
2331
+ }
2332
+ Instruction::I8x16Popcnt => {
2333
+ sink.push(0xFD);
2334
+ 0x62u32.encode(sink);
2335
+ }
2336
+ Instruction::I8x16AllTrue => {
2337
+ sink.push(0xFD);
2338
+ 0x63u32.encode(sink);
2339
+ }
2340
+ Instruction::I8x16Bitmask => {
2341
+ sink.push(0xFD);
2342
+ 0x64u32.encode(sink);
2343
+ }
2344
+ Instruction::I8x16NarrowI16x8S => {
2345
+ sink.push(0xFD);
2346
+ 0x65u32.encode(sink);
2347
+ }
2348
+ Instruction::I8x16NarrowI16x8U => {
2349
+ sink.push(0xFD);
2350
+ 0x66u32.encode(sink);
2351
+ }
2352
+ Instruction::I8x16Shl => {
2353
+ sink.push(0xFD);
2354
+ 0x6bu32.encode(sink);
2355
+ }
2356
+ Instruction::I8x16ShrS => {
2357
+ sink.push(0xFD);
2358
+ 0x6cu32.encode(sink);
2359
+ }
2360
+ Instruction::I8x16ShrU => {
2361
+ sink.push(0xFD);
2362
+ 0x6du32.encode(sink);
2363
+ }
2364
+ Instruction::I8x16Add => {
2365
+ sink.push(0xFD);
2366
+ 0x6eu32.encode(sink);
2367
+ }
2368
+ Instruction::I8x16AddSatS => {
2369
+ sink.push(0xFD);
2370
+ 0x6fu32.encode(sink);
2371
+ }
2372
+ Instruction::I8x16AddSatU => {
2373
+ sink.push(0xFD);
2374
+ 0x70u32.encode(sink);
2375
+ }
2376
+ Instruction::I8x16Sub => {
2377
+ sink.push(0xFD);
2378
+ 0x71u32.encode(sink);
2379
+ }
2380
+ Instruction::I8x16SubSatS => {
2381
+ sink.push(0xFD);
2382
+ 0x72u32.encode(sink);
2383
+ }
2384
+ Instruction::I8x16SubSatU => {
2385
+ sink.push(0xFD);
2386
+ 0x73u32.encode(sink);
2387
+ }
2388
+ Instruction::I8x16MinS => {
2389
+ sink.push(0xFD);
2390
+ 0x76u32.encode(sink);
2391
+ }
2392
+ Instruction::I8x16MinU => {
2393
+ sink.push(0xFD);
2394
+ 0x77u32.encode(sink);
2395
+ }
2396
+ Instruction::I8x16MaxS => {
2397
+ sink.push(0xFD);
2398
+ 0x78u32.encode(sink);
2399
+ }
2400
+ Instruction::I8x16MaxU => {
2401
+ sink.push(0xFD);
2402
+ 0x79u32.encode(sink);
2403
+ }
2404
+ Instruction::I8x16AvgrU => {
2405
+ sink.push(0xFD);
2406
+ 0x7Bu32.encode(sink);
2407
+ }
2408
+ Instruction::I16x8ExtAddPairwiseI8x16S => {
2409
+ sink.push(0xFD);
2410
+ 0x7Cu32.encode(sink);
2411
+ }
2412
+ Instruction::I16x8ExtAddPairwiseI8x16U => {
2413
+ sink.push(0xFD);
2414
+ 0x7Du32.encode(sink);
2415
+ }
2416
+ Instruction::I32x4ExtAddPairwiseI16x8S => {
2417
+ sink.push(0xFD);
2418
+ 0x7Eu32.encode(sink);
2419
+ }
2420
+ Instruction::I32x4ExtAddPairwiseI16x8U => {
2421
+ sink.push(0xFD);
2422
+ 0x7Fu32.encode(sink);
2423
+ }
2424
+ Instruction::I16x8Abs => {
2425
+ sink.push(0xFD);
2426
+ 0x80u32.encode(sink);
2427
+ }
2428
+ Instruction::I16x8Neg => {
2429
+ sink.push(0xFD);
2430
+ 0x81u32.encode(sink);
2431
+ }
2432
+ Instruction::I16x8Q15MulrSatS => {
2433
+ sink.push(0xFD);
2434
+ 0x82u32.encode(sink);
2435
+ }
2436
+ Instruction::I16x8AllTrue => {
2437
+ sink.push(0xFD);
2438
+ 0x83u32.encode(sink);
2439
+ }
2440
+ Instruction::I16x8Bitmask => {
2441
+ sink.push(0xFD);
2442
+ 0x84u32.encode(sink);
2443
+ }
2444
+ Instruction::I16x8NarrowI32x4S => {
2445
+ sink.push(0xFD);
2446
+ 0x85u32.encode(sink);
2447
+ }
2448
+ Instruction::I16x8NarrowI32x4U => {
2449
+ sink.push(0xFD);
2450
+ 0x86u32.encode(sink);
2451
+ }
2452
+ Instruction::I16x8ExtendLowI8x16S => {
2453
+ sink.push(0xFD);
2454
+ 0x87u32.encode(sink);
2455
+ }
2456
+ Instruction::I16x8ExtendHighI8x16S => {
2457
+ sink.push(0xFD);
2458
+ 0x88u32.encode(sink);
2459
+ }
2460
+ Instruction::I16x8ExtendLowI8x16U => {
2461
+ sink.push(0xFD);
2462
+ 0x89u32.encode(sink);
2463
+ }
2464
+ Instruction::I16x8ExtendHighI8x16U => {
2465
+ sink.push(0xFD);
2466
+ 0x8Au32.encode(sink);
2467
+ }
2468
+ Instruction::I16x8Shl => {
2469
+ sink.push(0xFD);
2470
+ 0x8Bu32.encode(sink);
2471
+ }
2472
+ Instruction::I16x8ShrS => {
2473
+ sink.push(0xFD);
2474
+ 0x8Cu32.encode(sink);
2475
+ }
2476
+ Instruction::I16x8ShrU => {
2477
+ sink.push(0xFD);
2478
+ 0x8Du32.encode(sink);
2479
+ }
2480
+ Instruction::I16x8Add => {
2481
+ sink.push(0xFD);
2482
+ 0x8Eu32.encode(sink);
2483
+ }
2484
+ Instruction::I16x8AddSatS => {
2485
+ sink.push(0xFD);
2486
+ 0x8Fu32.encode(sink);
2487
+ }
2488
+ Instruction::I16x8AddSatU => {
2489
+ sink.push(0xFD);
2490
+ 0x90u32.encode(sink);
2491
+ }
2492
+ Instruction::I16x8Sub => {
2493
+ sink.push(0xFD);
2494
+ 0x91u32.encode(sink);
2495
+ }
2496
+ Instruction::I16x8SubSatS => {
2497
+ sink.push(0xFD);
2498
+ 0x92u32.encode(sink);
2499
+ }
2500
+ Instruction::I16x8SubSatU => {
2501
+ sink.push(0xFD);
2502
+ 0x93u32.encode(sink);
2503
+ }
2504
+ Instruction::I16x8Mul => {
2505
+ sink.push(0xFD);
2506
+ 0x95u32.encode(sink);
2507
+ }
2508
+ Instruction::I16x8MinS => {
2509
+ sink.push(0xFD);
2510
+ 0x96u32.encode(sink);
2511
+ }
2512
+ Instruction::I16x8MinU => {
2513
+ sink.push(0xFD);
2514
+ 0x97u32.encode(sink);
2515
+ }
2516
+ Instruction::I16x8MaxS => {
2517
+ sink.push(0xFD);
2518
+ 0x98u32.encode(sink);
2519
+ }
2520
+ Instruction::I16x8MaxU => {
2521
+ sink.push(0xFD);
2522
+ 0x99u32.encode(sink);
2523
+ }
2524
+ Instruction::I16x8AvgrU => {
2525
+ sink.push(0xFD);
2526
+ 0x9Bu32.encode(sink);
2527
+ }
2528
+ Instruction::I16x8ExtMulLowI8x16S => {
2529
+ sink.push(0xFD);
2530
+ 0x9Cu32.encode(sink);
2531
+ }
2532
+ Instruction::I16x8ExtMulHighI8x16S => {
2533
+ sink.push(0xFD);
2534
+ 0x9Du32.encode(sink);
2535
+ }
2536
+ Instruction::I16x8ExtMulLowI8x16U => {
2537
+ sink.push(0xFD);
2538
+ 0x9Eu32.encode(sink);
2539
+ }
2540
+ Instruction::I16x8ExtMulHighI8x16U => {
2541
+ sink.push(0xFD);
2542
+ 0x9Fu32.encode(sink);
2543
+ }
2544
+ Instruction::I32x4Abs => {
2545
+ sink.push(0xFD);
2546
+ 0xA0u32.encode(sink);
2547
+ }
2548
+ Instruction::I32x4Neg => {
2549
+ sink.push(0xFD);
2550
+ 0xA1u32.encode(sink);
2551
+ }
2552
+ Instruction::I32x4AllTrue => {
2553
+ sink.push(0xFD);
2554
+ 0xA3u32.encode(sink);
2555
+ }
2556
+ Instruction::I32x4Bitmask => {
2557
+ sink.push(0xFD);
2558
+ 0xA4u32.encode(sink);
2559
+ }
2560
+ Instruction::I32x4ExtendLowI16x8S => {
2561
+ sink.push(0xFD);
2562
+ 0xA7u32.encode(sink);
2563
+ }
2564
+ Instruction::I32x4ExtendHighI16x8S => {
2565
+ sink.push(0xFD);
2566
+ 0xA8u32.encode(sink);
2567
+ }
2568
+ Instruction::I32x4ExtendLowI16x8U => {
2569
+ sink.push(0xFD);
2570
+ 0xA9u32.encode(sink);
2571
+ }
2572
+ Instruction::I32x4ExtendHighI16x8U => {
2573
+ sink.push(0xFD);
2574
+ 0xAAu32.encode(sink);
2575
+ }
2576
+ Instruction::I32x4Shl => {
2577
+ sink.push(0xFD);
2578
+ 0xABu32.encode(sink);
2579
+ }
2580
+ Instruction::I32x4ShrS => {
2581
+ sink.push(0xFD);
2582
+ 0xACu32.encode(sink);
2583
+ }
2584
+ Instruction::I32x4ShrU => {
2585
+ sink.push(0xFD);
2586
+ 0xADu32.encode(sink);
2587
+ }
2588
+ Instruction::I32x4Add => {
2589
+ sink.push(0xFD);
2590
+ 0xAEu32.encode(sink);
2591
+ }
2592
+ Instruction::I32x4Sub => {
2593
+ sink.push(0xFD);
2594
+ 0xB1u32.encode(sink);
2595
+ }
2596
+ Instruction::I32x4Mul => {
2597
+ sink.push(0xFD);
2598
+ 0xB5u32.encode(sink);
2599
+ }
2600
+ Instruction::I32x4MinS => {
2601
+ sink.push(0xFD);
2602
+ 0xB6u32.encode(sink);
2603
+ }
2604
+ Instruction::I32x4MinU => {
2605
+ sink.push(0xFD);
2606
+ 0xB7u32.encode(sink);
2607
+ }
2608
+ Instruction::I32x4MaxS => {
2609
+ sink.push(0xFD);
2610
+ 0xB8u32.encode(sink);
2611
+ }
2612
+ Instruction::I32x4MaxU => {
2613
+ sink.push(0xFD);
2614
+ 0xB9u32.encode(sink);
2615
+ }
2616
+ Instruction::I32x4DotI16x8S => {
2617
+ sink.push(0xFD);
2618
+ 0xBAu32.encode(sink);
2619
+ }
2620
+ Instruction::I32x4ExtMulLowI16x8S => {
2621
+ sink.push(0xFD);
2622
+ 0xBCu32.encode(sink);
2623
+ }
2624
+ Instruction::I32x4ExtMulHighI16x8S => {
2625
+ sink.push(0xFD);
2626
+ 0xBDu32.encode(sink);
2627
+ }
2628
+ Instruction::I32x4ExtMulLowI16x8U => {
2629
+ sink.push(0xFD);
2630
+ 0xBEu32.encode(sink);
2631
+ }
2632
+ Instruction::I32x4ExtMulHighI16x8U => {
2633
+ sink.push(0xFD);
2634
+ 0xBFu32.encode(sink);
2635
+ }
2636
+ Instruction::I64x2Abs => {
2637
+ sink.push(0xFD);
2638
+ 0xC0u32.encode(sink);
2639
+ }
2640
+ Instruction::I64x2Neg => {
2641
+ sink.push(0xFD);
2642
+ 0xC1u32.encode(sink);
2643
+ }
2644
+ Instruction::I64x2AllTrue => {
2645
+ sink.push(0xFD);
2646
+ 0xC3u32.encode(sink);
2647
+ }
2648
+ Instruction::I64x2Bitmask => {
2649
+ sink.push(0xFD);
2650
+ 0xC4u32.encode(sink);
2651
+ }
2652
+ Instruction::I64x2ExtendLowI32x4S => {
2653
+ sink.push(0xFD);
2654
+ 0xC7u32.encode(sink);
2655
+ }
2656
+ Instruction::I64x2ExtendHighI32x4S => {
2657
+ sink.push(0xFD);
2658
+ 0xC8u32.encode(sink);
2659
+ }
2660
+ Instruction::I64x2ExtendLowI32x4U => {
2661
+ sink.push(0xFD);
2662
+ 0xC9u32.encode(sink);
2663
+ }
2664
+ Instruction::I64x2ExtendHighI32x4U => {
2665
+ sink.push(0xFD);
2666
+ 0xCAu32.encode(sink);
2667
+ }
2668
+ Instruction::I64x2Shl => {
2669
+ sink.push(0xFD);
2670
+ 0xCBu32.encode(sink);
2671
+ }
2672
+ Instruction::I64x2ShrS => {
2673
+ sink.push(0xFD);
2674
+ 0xCCu32.encode(sink);
2675
+ }
2676
+ Instruction::I64x2ShrU => {
2677
+ sink.push(0xFD);
2678
+ 0xCDu32.encode(sink);
2679
+ }
2680
+ Instruction::I64x2Add => {
2681
+ sink.push(0xFD);
2682
+ 0xCEu32.encode(sink);
2683
+ }
2684
+ Instruction::I64x2Sub => {
2685
+ sink.push(0xFD);
2686
+ 0xD1u32.encode(sink);
2687
+ }
2688
+ Instruction::I64x2Mul => {
2689
+ sink.push(0xFD);
2690
+ 0xD5u32.encode(sink);
2691
+ }
2692
+ Instruction::I64x2ExtMulLowI32x4S => {
2693
+ sink.push(0xFD);
2694
+ 0xDCu32.encode(sink);
2695
+ }
2696
+ Instruction::I64x2ExtMulHighI32x4S => {
2697
+ sink.push(0xFD);
2698
+ 0xDDu32.encode(sink);
2699
+ }
2700
+ Instruction::I64x2ExtMulLowI32x4U => {
2701
+ sink.push(0xFD);
2702
+ 0xDEu32.encode(sink);
2703
+ }
2704
+ Instruction::I64x2ExtMulHighI32x4U => {
2705
+ sink.push(0xFD);
2706
+ 0xDFu32.encode(sink);
2707
+ }
2708
+ Instruction::F32x4Ceil => {
2709
+ sink.push(0xFD);
2710
+ 0x67u32.encode(sink);
2711
+ }
2712
+ Instruction::F32x4Floor => {
2713
+ sink.push(0xFD);
2714
+ 0x68u32.encode(sink);
2715
+ }
2716
+ Instruction::F32x4Trunc => {
2717
+ sink.push(0xFD);
2718
+ 0x69u32.encode(sink);
2719
+ }
2720
+ Instruction::F32x4Nearest => {
2721
+ sink.push(0xFD);
2722
+ 0x6Au32.encode(sink);
2723
+ }
2724
+ Instruction::F32x4Abs => {
2725
+ sink.push(0xFD);
2726
+ 0xE0u32.encode(sink);
2727
+ }
2728
+ Instruction::F32x4Neg => {
2729
+ sink.push(0xFD);
2730
+ 0xE1u32.encode(sink);
2731
+ }
2732
+ Instruction::F32x4Sqrt => {
2733
+ sink.push(0xFD);
2734
+ 0xE3u32.encode(sink);
2735
+ }
2736
+ Instruction::F32x4Add => {
2737
+ sink.push(0xFD);
2738
+ 0xE4u32.encode(sink);
2739
+ }
2740
+ Instruction::F32x4Sub => {
2741
+ sink.push(0xFD);
2742
+ 0xE5u32.encode(sink);
2743
+ }
2744
+ Instruction::F32x4Mul => {
2745
+ sink.push(0xFD);
2746
+ 0xE6u32.encode(sink);
2747
+ }
2748
+ Instruction::F32x4Div => {
2749
+ sink.push(0xFD);
2750
+ 0xE7u32.encode(sink);
2751
+ }
2752
+ Instruction::F32x4Min => {
2753
+ sink.push(0xFD);
2754
+ 0xE8u32.encode(sink);
2755
+ }
2756
+ Instruction::F32x4Max => {
2757
+ sink.push(0xFD);
2758
+ 0xE9u32.encode(sink);
2759
+ }
2760
+ Instruction::F32x4PMin => {
2761
+ sink.push(0xFD);
2762
+ 0xEAu32.encode(sink);
2763
+ }
2764
+ Instruction::F32x4PMax => {
2765
+ sink.push(0xFD);
2766
+ 0xEBu32.encode(sink);
2767
+ }
2768
+ Instruction::F64x2Ceil => {
2769
+ sink.push(0xFD);
2770
+ 0x74u32.encode(sink);
2771
+ }
2772
+ Instruction::F64x2Floor => {
2773
+ sink.push(0xFD);
2774
+ 0x75u32.encode(sink);
2775
+ }
2776
+ Instruction::F64x2Trunc => {
2777
+ sink.push(0xFD);
2778
+ 0x7Au32.encode(sink);
2779
+ }
2780
+ Instruction::F64x2Nearest => {
2781
+ sink.push(0xFD);
2782
+ 0x94u32.encode(sink);
2783
+ }
2784
+ Instruction::F64x2Abs => {
2785
+ sink.push(0xFD);
2786
+ 0xECu32.encode(sink);
2787
+ }
2788
+ Instruction::F64x2Neg => {
2789
+ sink.push(0xFD);
2790
+ 0xEDu32.encode(sink);
2791
+ }
2792
+ Instruction::F64x2Sqrt => {
2793
+ sink.push(0xFD);
2794
+ 0xEFu32.encode(sink);
2795
+ }
2796
+ Instruction::F64x2Add => {
2797
+ sink.push(0xFD);
2798
+ 0xF0u32.encode(sink);
2799
+ }
2800
+ Instruction::F64x2Sub => {
2801
+ sink.push(0xFD);
2802
+ 0xF1u32.encode(sink);
2803
+ }
2804
+ Instruction::F64x2Mul => {
2805
+ sink.push(0xFD);
2806
+ 0xF2u32.encode(sink);
2807
+ }
2808
+ Instruction::F64x2Div => {
2809
+ sink.push(0xFD);
2810
+ 0xF3u32.encode(sink);
2811
+ }
2812
+ Instruction::F64x2Min => {
2813
+ sink.push(0xFD);
2814
+ 0xF4u32.encode(sink);
2815
+ }
2816
+ Instruction::F64x2Max => {
2817
+ sink.push(0xFD);
2818
+ 0xF5u32.encode(sink);
2819
+ }
2820
+ Instruction::F64x2PMin => {
2821
+ sink.push(0xFD);
2822
+ 0xF6u32.encode(sink);
2823
+ }
2824
+ Instruction::F64x2PMax => {
2825
+ sink.push(0xFD);
2826
+ 0xF7u32.encode(sink);
2827
+ }
2828
+ Instruction::I32x4TruncSatF32x4S => {
2829
+ sink.push(0xFD);
2830
+ 0xF8u32.encode(sink);
2831
+ }
2832
+ Instruction::I32x4TruncSatF32x4U => {
2833
+ sink.push(0xFD);
2834
+ 0xF9u32.encode(sink);
2835
+ }
2836
+ Instruction::F32x4ConvertI32x4S => {
2837
+ sink.push(0xFD);
2838
+ 0xFAu32.encode(sink);
2839
+ }
2840
+ Instruction::F32x4ConvertI32x4U => {
2841
+ sink.push(0xFD);
2842
+ 0xFBu32.encode(sink);
2843
+ }
2844
+ Instruction::I32x4TruncSatF64x2SZero => {
2845
+ sink.push(0xFD);
2846
+ 0xFCu32.encode(sink);
2847
+ }
2848
+ Instruction::I32x4TruncSatF64x2UZero => {
2849
+ sink.push(0xFD);
2850
+ 0xFDu32.encode(sink);
2851
+ }
2852
+ Instruction::F64x2ConvertLowI32x4S => {
2853
+ sink.push(0xFD);
2854
+ 0xFEu32.encode(sink);
2855
+ }
2856
+ Instruction::F64x2ConvertLowI32x4U => {
2857
+ sink.push(0xFD);
2858
+ 0xFFu32.encode(sink);
2859
+ }
2860
+ Instruction::F32x4DemoteF64x2Zero => {
2861
+ sink.push(0xFD);
2862
+ 0x5Eu32.encode(sink);
2863
+ }
2864
+ Instruction::F64x2PromoteLowF32x4 => {
2865
+ sink.push(0xFD);
2866
+ 0x5Fu32.encode(sink);
2867
+ }
2868
+ Instruction::V128Load32Zero(memarg) => {
2869
+ sink.push(0xFD);
2870
+ 0x5Cu32.encode(sink);
2871
+ memarg.encode(sink);
2872
+ }
2873
+ Instruction::V128Load64Zero(memarg) => {
2874
+ sink.push(0xFD);
2875
+ 0x5Du32.encode(sink);
2876
+ memarg.encode(sink);
2877
+ }
2878
+ Instruction::V128Load8Lane { memarg, lane } => {
2879
+ sink.push(0xFD);
2880
+ 0x54u32.encode(sink);
2881
+ memarg.encode(sink);
2882
+ assert!(lane < 16);
2883
+ sink.push(lane);
2884
+ }
2885
+ Instruction::V128Load16Lane { memarg, lane } => {
2886
+ sink.push(0xFD);
2887
+ 0x55u32.encode(sink);
2888
+ memarg.encode(sink);
2889
+ assert!(lane < 8);
2890
+ sink.push(lane);
2891
+ }
2892
+ Instruction::V128Load32Lane { memarg, lane } => {
2893
+ sink.push(0xFD);
2894
+ 0x56u32.encode(sink);
2895
+ memarg.encode(sink);
2896
+ assert!(lane < 4);
2897
+ sink.push(lane);
2898
+ }
2899
+ Instruction::V128Load64Lane { memarg, lane } => {
2900
+ sink.push(0xFD);
2901
+ 0x57u32.encode(sink);
2902
+ memarg.encode(sink);
2903
+ assert!(lane < 2);
2904
+ sink.push(lane);
2905
+ }
2906
+ Instruction::V128Store8Lane { memarg, lane } => {
2907
+ sink.push(0xFD);
2908
+ 0x58u32.encode(sink);
2909
+ memarg.encode(sink);
2910
+ assert!(lane < 16);
2911
+ sink.push(lane);
2912
+ }
2913
+ Instruction::V128Store16Lane { memarg, lane } => {
2914
+ sink.push(0xFD);
2915
+ 0x59u32.encode(sink);
2916
+ memarg.encode(sink);
2917
+ assert!(lane < 8);
2918
+ sink.push(lane);
2919
+ }
2920
+ Instruction::V128Store32Lane { memarg, lane } => {
2921
+ sink.push(0xFD);
2922
+ 0x5Au32.encode(sink);
2923
+ memarg.encode(sink);
2924
+ assert!(lane < 4);
2925
+ sink.push(lane);
2926
+ }
2927
+ Instruction::V128Store64Lane { memarg, lane } => {
2928
+ sink.push(0xFD);
2929
+ 0x5Bu32.encode(sink);
2930
+ memarg.encode(sink);
2931
+ assert!(lane < 2);
2932
+ sink.push(lane);
2933
+ }
2934
+ Instruction::I64x2Eq => {
2935
+ sink.push(0xFD);
2936
+ 0xD6u32.encode(sink);
2937
+ }
2938
+ Instruction::I64x2Ne => {
2939
+ sink.push(0xFD);
2940
+ 0xD7u32.encode(sink);
2941
+ }
2942
+ Instruction::I64x2LtS => {
2943
+ sink.push(0xFD);
2944
+ 0xD8u32.encode(sink);
2945
+ }
2946
+ Instruction::I64x2GtS => {
2947
+ sink.push(0xFD);
2948
+ 0xD9u32.encode(sink);
2949
+ }
2950
+ Instruction::I64x2LeS => {
2951
+ sink.push(0xFD);
2952
+ 0xDAu32.encode(sink);
2953
+ }
2954
+ Instruction::I64x2GeS => {
2955
+ sink.push(0xFD);
2956
+ 0xDBu32.encode(sink);
2957
+ }
2958
+ Instruction::I8x16RelaxedSwizzle => {
2959
+ sink.push(0xFD);
2960
+ 0x100u32.encode(sink);
2961
+ }
2962
+ Instruction::I32x4RelaxedTruncF32x4S => {
2963
+ sink.push(0xFD);
2964
+ 0x101u32.encode(sink);
2965
+ }
2966
+ Instruction::I32x4RelaxedTruncF32x4U => {
2967
+ sink.push(0xFD);
2968
+ 0x102u32.encode(sink);
2969
+ }
2970
+ Instruction::I32x4RelaxedTruncF64x2SZero => {
2971
+ sink.push(0xFD);
2972
+ 0x103u32.encode(sink);
2973
+ }
2974
+ Instruction::I32x4RelaxedTruncF64x2UZero => {
2975
+ sink.push(0xFD);
2976
+ 0x104u32.encode(sink);
2977
+ }
2978
+ Instruction::F32x4RelaxedMadd => {
2979
+ sink.push(0xFD);
2980
+ 0x105u32.encode(sink);
2981
+ }
2982
+ Instruction::F32x4RelaxedNmadd => {
2983
+ sink.push(0xFD);
2984
+ 0x106u32.encode(sink);
2985
+ }
2986
+ Instruction::F64x2RelaxedMadd => {
2987
+ sink.push(0xFD);
2988
+ 0x107u32.encode(sink);
2989
+ }
2990
+ Instruction::F64x2RelaxedNmadd => {
2991
+ sink.push(0xFD);
2992
+ 0x108u32.encode(sink);
2993
+ }
2994
+ Instruction::I8x16RelaxedLaneselect => {
2995
+ sink.push(0xFD);
2996
+ 0x109u32.encode(sink);
2997
+ }
2998
+ Instruction::I16x8RelaxedLaneselect => {
2999
+ sink.push(0xFD);
3000
+ 0x10Au32.encode(sink);
3001
+ }
3002
+ Instruction::I32x4RelaxedLaneselect => {
3003
+ sink.push(0xFD);
3004
+ 0x10Bu32.encode(sink);
3005
+ }
3006
+ Instruction::I64x2RelaxedLaneselect => {
3007
+ sink.push(0xFD);
3008
+ 0x10Cu32.encode(sink);
3009
+ }
3010
+ Instruction::F32x4RelaxedMin => {
3011
+ sink.push(0xFD);
3012
+ 0x10Du32.encode(sink);
3013
+ }
3014
+ Instruction::F32x4RelaxedMax => {
3015
+ sink.push(0xFD);
3016
+ 0x10Eu32.encode(sink);
3017
+ }
3018
+ Instruction::F64x2RelaxedMin => {
3019
+ sink.push(0xFD);
3020
+ 0x10Fu32.encode(sink);
3021
+ }
3022
+ Instruction::F64x2RelaxedMax => {
3023
+ sink.push(0xFD);
3024
+ 0x110u32.encode(sink);
3025
+ }
3026
+ Instruction::I16x8RelaxedQ15mulrS => {
3027
+ sink.push(0xFD);
3028
+ 0x111u32.encode(sink);
3029
+ }
3030
+ Instruction::I16x8RelaxedDotI8x16I7x16S => {
3031
+ sink.push(0xFD);
3032
+ 0x112u32.encode(sink);
3033
+ }
3034
+ Instruction::I32x4RelaxedDotI8x16I7x16AddS => {
3035
+ sink.push(0xFD);
3036
+ 0x113u32.encode(sink);
3037
+ }
3038
+
3039
+ // Atomic instructions from the thread proposal
3040
+ Instruction::MemoryAtomicNotify(memarg) => {
3041
+ sink.push(0xFE);
3042
+ sink.push(0x00);
3043
+ memarg.encode(sink);
3044
+ }
3045
+ Instruction::MemoryAtomicWait32(memarg) => {
3046
+ sink.push(0xFE);
3047
+ sink.push(0x01);
3048
+ memarg.encode(sink);
3049
+ }
3050
+ Instruction::MemoryAtomicWait64(memarg) => {
3051
+ sink.push(0xFE);
3052
+ sink.push(0x02);
3053
+ memarg.encode(sink);
3054
+ }
3055
+ Instruction::AtomicFence => {
3056
+ sink.push(0xFE);
3057
+ sink.push(0x03);
3058
+ sink.push(0x00);
3059
+ }
3060
+ Instruction::I32AtomicLoad(memarg) => {
3061
+ sink.push(0xFE);
3062
+ sink.push(0x10);
3063
+ memarg.encode(sink);
3064
+ }
3065
+ Instruction::I64AtomicLoad(memarg) => {
3066
+ sink.push(0xFE);
3067
+ sink.push(0x11);
3068
+ memarg.encode(sink);
3069
+ }
3070
+ Instruction::I32AtomicLoad8U(memarg) => {
3071
+ sink.push(0xFE);
3072
+ sink.push(0x12);
3073
+ memarg.encode(sink);
3074
+ }
3075
+ Instruction::I32AtomicLoad16U(memarg) => {
3076
+ sink.push(0xFE);
3077
+ sink.push(0x13);
3078
+ memarg.encode(sink);
3079
+ }
3080
+ Instruction::I64AtomicLoad8U(memarg) => {
3081
+ sink.push(0xFE);
3082
+ sink.push(0x14);
3083
+ memarg.encode(sink);
3084
+ }
3085
+ Instruction::I64AtomicLoad16U(memarg) => {
3086
+ sink.push(0xFE);
3087
+ sink.push(0x15);
3088
+ memarg.encode(sink);
3089
+ }
3090
+ Instruction::I64AtomicLoad32U(memarg) => {
3091
+ sink.push(0xFE);
3092
+ sink.push(0x16);
3093
+ memarg.encode(sink);
3094
+ }
3095
+ Instruction::I32AtomicStore(memarg) => {
3096
+ sink.push(0xFE);
3097
+ sink.push(0x17);
3098
+ memarg.encode(sink);
3099
+ }
3100
+ Instruction::I64AtomicStore(memarg) => {
3101
+ sink.push(0xFE);
3102
+ sink.push(0x18);
3103
+ memarg.encode(sink);
3104
+ }
3105
+ Instruction::I32AtomicStore8(memarg) => {
3106
+ sink.push(0xFE);
3107
+ sink.push(0x19);
3108
+ memarg.encode(sink);
3109
+ }
3110
+ Instruction::I32AtomicStore16(memarg) => {
3111
+ sink.push(0xFE);
3112
+ sink.push(0x1A);
3113
+ memarg.encode(sink);
3114
+ }
3115
+ Instruction::I64AtomicStore8(memarg) => {
3116
+ sink.push(0xFE);
3117
+ sink.push(0x1B);
3118
+ memarg.encode(sink);
3119
+ }
3120
+ Instruction::I64AtomicStore16(memarg) => {
3121
+ sink.push(0xFE);
3122
+ sink.push(0x1C);
3123
+ memarg.encode(sink);
3124
+ }
3125
+ Instruction::I64AtomicStore32(memarg) => {
3126
+ sink.push(0xFE);
3127
+ sink.push(0x1D);
3128
+ memarg.encode(sink);
3129
+ }
3130
+ Instruction::I32AtomicRmwAdd(memarg) => {
3131
+ sink.push(0xFE);
3132
+ sink.push(0x1E);
3133
+ memarg.encode(sink);
3134
+ }
3135
+ Instruction::I64AtomicRmwAdd(memarg) => {
3136
+ sink.push(0xFE);
3137
+ sink.push(0x1F);
3138
+ memarg.encode(sink);
3139
+ }
3140
+ Instruction::I32AtomicRmw8AddU(memarg) => {
3141
+ sink.push(0xFE);
3142
+ sink.push(0x20);
3143
+ memarg.encode(sink);
3144
+ }
3145
+ Instruction::I32AtomicRmw16AddU(memarg) => {
3146
+ sink.push(0xFE);
3147
+ sink.push(0x21);
3148
+ memarg.encode(sink);
3149
+ }
3150
+ Instruction::I64AtomicRmw8AddU(memarg) => {
3151
+ sink.push(0xFE);
3152
+ sink.push(0x22);
3153
+ memarg.encode(sink);
3154
+ }
3155
+ Instruction::I64AtomicRmw16AddU(memarg) => {
3156
+ sink.push(0xFE);
3157
+ sink.push(0x23);
3158
+ memarg.encode(sink);
3159
+ }
3160
+ Instruction::I64AtomicRmw32AddU(memarg) => {
3161
+ sink.push(0xFE);
3162
+ sink.push(0x24);
3163
+ memarg.encode(sink);
3164
+ }
3165
+ Instruction::I32AtomicRmwSub(memarg) => {
3166
+ sink.push(0xFE);
3167
+ sink.push(0x25);
3168
+ memarg.encode(sink);
3169
+ }
3170
+ Instruction::I64AtomicRmwSub(memarg) => {
3171
+ sink.push(0xFE);
3172
+ sink.push(0x26);
3173
+ memarg.encode(sink);
3174
+ }
3175
+ Instruction::I32AtomicRmw8SubU(memarg) => {
3176
+ sink.push(0xFE);
3177
+ sink.push(0x27);
3178
+ memarg.encode(sink);
3179
+ }
3180
+ Instruction::I32AtomicRmw16SubU(memarg) => {
3181
+ sink.push(0xFE);
3182
+ sink.push(0x28);
3183
+ memarg.encode(sink);
3184
+ }
3185
+ Instruction::I64AtomicRmw8SubU(memarg) => {
3186
+ sink.push(0xFE);
3187
+ sink.push(0x29);
3188
+ memarg.encode(sink);
3189
+ }
3190
+ Instruction::I64AtomicRmw16SubU(memarg) => {
3191
+ sink.push(0xFE);
3192
+ sink.push(0x2A);
3193
+ memarg.encode(sink);
3194
+ }
3195
+ Instruction::I64AtomicRmw32SubU(memarg) => {
3196
+ sink.push(0xFE);
3197
+ sink.push(0x2B);
3198
+ memarg.encode(sink);
3199
+ }
3200
+ Instruction::I32AtomicRmwAnd(memarg) => {
3201
+ sink.push(0xFE);
3202
+ sink.push(0x2C);
3203
+ memarg.encode(sink);
3204
+ }
3205
+ Instruction::I64AtomicRmwAnd(memarg) => {
3206
+ sink.push(0xFE);
3207
+ sink.push(0x2D);
3208
+ memarg.encode(sink);
3209
+ }
3210
+ Instruction::I32AtomicRmw8AndU(memarg) => {
3211
+ sink.push(0xFE);
3212
+ sink.push(0x2E);
3213
+ memarg.encode(sink);
3214
+ }
3215
+ Instruction::I32AtomicRmw16AndU(memarg) => {
3216
+ sink.push(0xFE);
3217
+ sink.push(0x2F);
3218
+ memarg.encode(sink);
3219
+ }
3220
+ Instruction::I64AtomicRmw8AndU(memarg) => {
3221
+ sink.push(0xFE);
3222
+ sink.push(0x30);
3223
+ memarg.encode(sink);
3224
+ }
3225
+ Instruction::I64AtomicRmw16AndU(memarg) => {
3226
+ sink.push(0xFE);
3227
+ sink.push(0x31);
3228
+ memarg.encode(sink);
3229
+ }
3230
+ Instruction::I64AtomicRmw32AndU(memarg) => {
3231
+ sink.push(0xFE);
3232
+ sink.push(0x32);
3233
+ memarg.encode(sink);
3234
+ }
3235
+ Instruction::I32AtomicRmwOr(memarg) => {
3236
+ sink.push(0xFE);
3237
+ sink.push(0x33);
3238
+ memarg.encode(sink);
3239
+ }
3240
+ Instruction::I64AtomicRmwOr(memarg) => {
3241
+ sink.push(0xFE);
3242
+ sink.push(0x34);
3243
+ memarg.encode(sink);
3244
+ }
3245
+ Instruction::I32AtomicRmw8OrU(memarg) => {
3246
+ sink.push(0xFE);
3247
+ sink.push(0x35);
3248
+ memarg.encode(sink);
3249
+ }
3250
+ Instruction::I32AtomicRmw16OrU(memarg) => {
3251
+ sink.push(0xFE);
3252
+ sink.push(0x36);
3253
+ memarg.encode(sink);
3254
+ }
3255
+ Instruction::I64AtomicRmw8OrU(memarg) => {
3256
+ sink.push(0xFE);
3257
+ sink.push(0x37);
3258
+ memarg.encode(sink);
3259
+ }
3260
+ Instruction::I64AtomicRmw16OrU(memarg) => {
3261
+ sink.push(0xFE);
3262
+ sink.push(0x38);
3263
+ memarg.encode(sink);
3264
+ }
3265
+ Instruction::I64AtomicRmw32OrU(memarg) => {
3266
+ sink.push(0xFE);
3267
+ sink.push(0x39);
3268
+ memarg.encode(sink);
3269
+ }
3270
+ Instruction::I32AtomicRmwXor(memarg) => {
3271
+ sink.push(0xFE);
3272
+ sink.push(0x3A);
3273
+ memarg.encode(sink);
3274
+ }
3275
+ Instruction::I64AtomicRmwXor(memarg) => {
3276
+ sink.push(0xFE);
3277
+ sink.push(0x3B);
3278
+ memarg.encode(sink);
3279
+ }
3280
+ Instruction::I32AtomicRmw8XorU(memarg) => {
3281
+ sink.push(0xFE);
3282
+ sink.push(0x3C);
3283
+ memarg.encode(sink);
3284
+ }
3285
+ Instruction::I32AtomicRmw16XorU(memarg) => {
3286
+ sink.push(0xFE);
3287
+ sink.push(0x3D);
3288
+ memarg.encode(sink);
3289
+ }
3290
+ Instruction::I64AtomicRmw8XorU(memarg) => {
3291
+ sink.push(0xFE);
3292
+ sink.push(0x3E);
3293
+ memarg.encode(sink);
3294
+ }
3295
+ Instruction::I64AtomicRmw16XorU(memarg) => {
3296
+ sink.push(0xFE);
3297
+ sink.push(0x3F);
3298
+ memarg.encode(sink);
3299
+ }
3300
+ Instruction::I64AtomicRmw32XorU(memarg) => {
3301
+ sink.push(0xFE);
3302
+ sink.push(0x40);
3303
+ memarg.encode(sink);
3304
+ }
3305
+ Instruction::I32AtomicRmwXchg(memarg) => {
3306
+ sink.push(0xFE);
3307
+ sink.push(0x41);
3308
+ memarg.encode(sink);
3309
+ }
3310
+ Instruction::I64AtomicRmwXchg(memarg) => {
3311
+ sink.push(0xFE);
3312
+ sink.push(0x42);
3313
+ memarg.encode(sink);
3314
+ }
3315
+ Instruction::I32AtomicRmw8XchgU(memarg) => {
3316
+ sink.push(0xFE);
3317
+ sink.push(0x43);
3318
+ memarg.encode(sink);
3319
+ }
3320
+ Instruction::I32AtomicRmw16XchgU(memarg) => {
3321
+ sink.push(0xFE);
3322
+ sink.push(0x44);
3323
+ memarg.encode(sink);
3324
+ }
3325
+ Instruction::I64AtomicRmw8XchgU(memarg) => {
3326
+ sink.push(0xFE);
3327
+ sink.push(0x45);
3328
+ memarg.encode(sink);
3329
+ }
3330
+ Instruction::I64AtomicRmw16XchgU(memarg) => {
3331
+ sink.push(0xFE);
3332
+ sink.push(0x46);
3333
+ memarg.encode(sink);
3334
+ }
3335
+ Instruction::I64AtomicRmw32XchgU(memarg) => {
3336
+ sink.push(0xFE);
3337
+ sink.push(0x47);
3338
+ memarg.encode(sink);
3339
+ }
3340
+ Instruction::I32AtomicRmwCmpxchg(memarg) => {
3341
+ sink.push(0xFE);
3342
+ sink.push(0x48);
3343
+ memarg.encode(sink);
3344
+ }
3345
+ Instruction::I64AtomicRmwCmpxchg(memarg) => {
3346
+ sink.push(0xFE);
3347
+ sink.push(0x49);
3348
+ memarg.encode(sink);
3349
+ }
3350
+ Instruction::I32AtomicRmw8CmpxchgU(memarg) => {
3351
+ sink.push(0xFE);
3352
+ sink.push(0x4A);
3353
+ memarg.encode(sink);
3354
+ }
3355
+ Instruction::I32AtomicRmw16CmpxchgU(memarg) => {
3356
+ sink.push(0xFE);
3357
+ sink.push(0x4B);
3358
+ memarg.encode(sink);
3359
+ }
3360
+ Instruction::I64AtomicRmw8CmpxchgU(memarg) => {
3361
+ sink.push(0xFE);
3362
+ sink.push(0x4C);
3363
+ memarg.encode(sink);
3364
+ }
3365
+ Instruction::I64AtomicRmw16CmpxchgU(memarg) => {
3366
+ sink.push(0xFE);
3367
+ sink.push(0x4D);
3368
+ memarg.encode(sink);
3369
+ }
3370
+ Instruction::I64AtomicRmw32CmpxchgU(memarg) => {
3371
+ sink.push(0xFE);
3372
+ sink.push(0x4E);
3373
+ memarg.encode(sink);
3374
+ }
3375
+
3376
+ // Atomic instructions from the shared-everything-threads proposal
3377
+ Instruction::GlobalAtomicGet {
3378
+ ordering,
3379
+ global_index,
3380
+ } => {
3381
+ sink.push(0xFE);
3382
+ sink.push(0x4F);
3383
+ ordering.encode(sink);
3384
+ global_index.encode(sink);
3385
+ }
3386
+ Instruction::GlobalAtomicSet {
3387
+ ordering,
3388
+ global_index,
3389
+ } => {
3390
+ sink.push(0xFE);
3391
+ sink.push(0x50);
3392
+ ordering.encode(sink);
3393
+ global_index.encode(sink);
3394
+ }
3395
+ Instruction::GlobalAtomicRmwAdd {
3396
+ ordering,
3397
+ global_index,
3398
+ } => {
3399
+ sink.push(0xFE);
3400
+ sink.push(0x51);
3401
+ ordering.encode(sink);
3402
+ global_index.encode(sink);
3403
+ }
3404
+ Instruction::GlobalAtomicRmwSub {
3405
+ ordering,
3406
+ global_index,
3407
+ } => {
3408
+ sink.push(0xFE);
3409
+ sink.push(0x52);
3410
+ ordering.encode(sink);
3411
+ global_index.encode(sink);
3412
+ }
3413
+ Instruction::GlobalAtomicRmwAnd {
3414
+ ordering,
3415
+ global_index,
3416
+ } => {
3417
+ sink.push(0xFE);
3418
+ sink.push(0x53);
3419
+ ordering.encode(sink);
3420
+ global_index.encode(sink);
3421
+ }
3422
+ Instruction::GlobalAtomicRmwOr {
3423
+ ordering,
3424
+ global_index,
3425
+ } => {
3426
+ sink.push(0xFE);
3427
+ sink.push(0x54);
3428
+ ordering.encode(sink);
3429
+ global_index.encode(sink);
3430
+ }
3431
+ Instruction::GlobalAtomicRmwXor {
3432
+ ordering,
3433
+ global_index,
3434
+ } => {
3435
+ sink.push(0xFE);
3436
+ sink.push(0x55);
3437
+ ordering.encode(sink);
3438
+ global_index.encode(sink);
3439
+ }
3440
+ Instruction::GlobalAtomicRmwXchg {
3441
+ ordering,
3442
+ global_index,
3443
+ } => {
3444
+ sink.push(0xFE);
3445
+ sink.push(0x56);
3446
+ ordering.encode(sink);
3447
+ global_index.encode(sink);
3448
+ }
3449
+ Instruction::GlobalAtomicRmwCmpxchg {
3450
+ ordering,
3451
+ global_index,
3452
+ } => {
3453
+ sink.push(0xFE);
3454
+ sink.push(0x57);
3455
+ ordering.encode(sink);
3456
+ global_index.encode(sink);
3457
+ }
3458
+ Instruction::TableAtomicGet {
3459
+ ordering,
3460
+ table_index,
3461
+ } => {
3462
+ sink.push(0xFE);
3463
+ sink.push(0x58);
3464
+ ordering.encode(sink);
3465
+ table_index.encode(sink);
3466
+ }
3467
+ Instruction::TableAtomicSet {
3468
+ ordering,
3469
+ table_index,
3470
+ } => {
3471
+ sink.push(0xFE);
3472
+ sink.push(0x59);
3473
+ ordering.encode(sink);
3474
+ table_index.encode(sink);
3475
+ }
3476
+ Instruction::TableAtomicRmwXchg {
3477
+ ordering,
3478
+ table_index,
3479
+ } => {
3480
+ sink.push(0xFE);
3481
+ sink.push(0x5A);
3482
+ ordering.encode(sink);
3483
+ table_index.encode(sink);
3484
+ }
3485
+ Instruction::TableAtomicRmwCmpxchg {
3486
+ ordering,
3487
+ table_index,
3488
+ } => {
3489
+ sink.push(0xFE);
3490
+ sink.push(0x5B);
3491
+ ordering.encode(sink);
3492
+ table_index.encode(sink);
3493
+ }
3494
+ Instruction::StructAtomicGet {
3495
+ ordering,
3496
+ struct_type_index,
3497
+ field_index,
3498
+ } => {
3499
+ sink.push(0xFE);
3500
+ sink.push(0x5C);
3501
+ ordering.encode(sink);
3502
+ struct_type_index.encode(sink);
3503
+ field_index.encode(sink);
3504
+ }
3505
+ Instruction::StructAtomicGetS {
3506
+ ordering,
3507
+ struct_type_index,
3508
+ field_index,
3509
+ } => {
3510
+ sink.push(0xFE);
3511
+ sink.push(0x5D);
3512
+ ordering.encode(sink);
3513
+ struct_type_index.encode(sink);
3514
+ field_index.encode(sink);
3515
+ }
3516
+ Instruction::StructAtomicGetU {
3517
+ ordering,
3518
+ struct_type_index,
3519
+ field_index,
3520
+ } => {
3521
+ sink.push(0xFE);
3522
+ sink.push(0x5E);
3523
+ ordering.encode(sink);
3524
+ struct_type_index.encode(sink);
3525
+ field_index.encode(sink);
3526
+ }
3527
+ Instruction::StructAtomicSet {
3528
+ ordering,
3529
+ struct_type_index,
3530
+ field_index,
3531
+ } => {
3532
+ sink.push(0xFE);
3533
+ sink.push(0x5F);
3534
+ ordering.encode(sink);
3535
+ struct_type_index.encode(sink);
3536
+ field_index.encode(sink);
3537
+ }
3538
+ Instruction::StructAtomicRmwAdd {
3539
+ ordering,
3540
+ struct_type_index,
3541
+ field_index,
3542
+ } => {
3543
+ sink.push(0xFE);
3544
+ sink.push(0x60);
3545
+ ordering.encode(sink);
3546
+ struct_type_index.encode(sink);
3547
+ field_index.encode(sink);
3548
+ }
3549
+ Instruction::StructAtomicRmwSub {
3550
+ ordering,
3551
+ struct_type_index,
3552
+ field_index,
3553
+ } => {
3554
+ sink.push(0xFE);
3555
+ sink.push(0x61);
3556
+ ordering.encode(sink);
3557
+ struct_type_index.encode(sink);
3558
+ field_index.encode(sink);
3559
+ }
3560
+ Instruction::StructAtomicRmwAnd {
3561
+ ordering,
3562
+ struct_type_index,
3563
+ field_index,
3564
+ } => {
3565
+ sink.push(0xFE);
3566
+ sink.push(0x62);
3567
+ ordering.encode(sink);
3568
+ struct_type_index.encode(sink);
3569
+ field_index.encode(sink);
3570
+ }
3571
+ Instruction::StructAtomicRmwOr {
3572
+ ordering,
3573
+ struct_type_index,
3574
+ field_index,
3575
+ } => {
3576
+ sink.push(0xFE);
3577
+ sink.push(0x63);
3578
+ ordering.encode(sink);
3579
+ struct_type_index.encode(sink);
3580
+ field_index.encode(sink);
3581
+ }
3582
+ Instruction::StructAtomicRmwXor {
3583
+ ordering,
3584
+ struct_type_index,
3585
+ field_index,
3586
+ } => {
3587
+ sink.push(0xFE);
3588
+ sink.push(0x64);
3589
+ ordering.encode(sink);
3590
+ struct_type_index.encode(sink);
3591
+ field_index.encode(sink);
3592
+ }
3593
+ Instruction::StructAtomicRmwXchg {
3594
+ ordering,
3595
+ struct_type_index,
3596
+ field_index,
3597
+ } => {
3598
+ sink.push(0xFE);
3599
+ sink.push(0x65);
3600
+ ordering.encode(sink);
3601
+ struct_type_index.encode(sink);
3602
+ field_index.encode(sink);
3603
+ }
3604
+ Instruction::StructAtomicRmwCmpxchg {
3605
+ ordering,
3606
+ struct_type_index,
3607
+ field_index,
3608
+ } => {
3609
+ sink.push(0xFE);
3610
+ sink.push(0x66);
3611
+ ordering.encode(sink);
3612
+ struct_type_index.encode(sink);
3613
+ field_index.encode(sink);
3614
+ }
3615
+ Instruction::ArrayAtomicGet {
3616
+ ordering,
3617
+ array_type_index,
3618
+ } => {
3619
+ sink.push(0xFE);
3620
+ sink.push(0x67);
3621
+ ordering.encode(sink);
3622
+ array_type_index.encode(sink);
3623
+ }
3624
+ Instruction::ArrayAtomicGetS {
3625
+ ordering,
3626
+ array_type_index,
3627
+ } => {
3628
+ sink.push(0xFE);
3629
+ sink.push(0x68);
3630
+ ordering.encode(sink);
3631
+ array_type_index.encode(sink);
3632
+ }
3633
+ Instruction::ArrayAtomicGetU {
3634
+ ordering,
3635
+ array_type_index,
3636
+ } => {
3637
+ sink.push(0xFE);
3638
+ sink.push(0x69);
3639
+ ordering.encode(sink);
3640
+ array_type_index.encode(sink);
3641
+ }
3642
+ Instruction::ArrayAtomicSet {
3643
+ ordering,
3644
+ array_type_index,
3645
+ } => {
3646
+ sink.push(0xFE);
3647
+ sink.push(0x6A);
3648
+ ordering.encode(sink);
3649
+ array_type_index.encode(sink);
3650
+ }
3651
+ Instruction::ArrayAtomicRmwAdd {
3652
+ ordering,
3653
+ array_type_index,
3654
+ } => {
3655
+ sink.push(0xFE);
3656
+ sink.push(0x6B);
3657
+ ordering.encode(sink);
3658
+ array_type_index.encode(sink);
3659
+ }
3660
+ Instruction::ArrayAtomicRmwSub {
3661
+ ordering,
3662
+ array_type_index,
3663
+ } => {
3664
+ sink.push(0xFE);
3665
+ sink.push(0x6C);
3666
+ ordering.encode(sink);
3667
+ array_type_index.encode(sink);
3668
+ }
3669
+ Instruction::ArrayAtomicRmwAnd {
3670
+ ordering,
3671
+ array_type_index,
3672
+ } => {
3673
+ sink.push(0xFE);
3674
+ sink.push(0x6D);
3675
+ ordering.encode(sink);
3676
+ array_type_index.encode(sink);
3677
+ }
3678
+ Instruction::ArrayAtomicRmwOr {
3679
+ ordering,
3680
+ array_type_index,
3681
+ } => {
3682
+ sink.push(0xFE);
3683
+ sink.push(0x6E);
3684
+ ordering.encode(sink);
3685
+ array_type_index.encode(sink);
3686
+ }
3687
+ Instruction::ArrayAtomicRmwXor {
3688
+ ordering,
3689
+ array_type_index,
3690
+ } => {
3691
+ sink.push(0xFE);
3692
+ sink.push(0x6F);
3693
+ ordering.encode(sink);
3694
+ array_type_index.encode(sink);
3695
+ }
3696
+ Instruction::ArrayAtomicRmwXchg {
3697
+ ordering,
3698
+ array_type_index,
3699
+ } => {
3700
+ sink.push(0xFE);
3701
+ sink.push(0x70);
3702
+ ordering.encode(sink);
3703
+ array_type_index.encode(sink);
3704
+ }
3705
+ Instruction::ArrayAtomicRmwCmpxchg {
3706
+ ordering,
3707
+ array_type_index,
3708
+ } => {
3709
+ sink.push(0xFE);
3710
+ sink.push(0x71);
3711
+ ordering.encode(sink);
3712
+ array_type_index.encode(sink);
3713
+ }
3714
+ Instruction::RefI31Shared => {
3715
+ sink.push(0xFE);
3716
+ sink.push(0x72);
3717
+ }
3718
+ Instruction::ContNew(type_index) => {
3719
+ sink.push(0xE0);
3720
+ type_index.encode(sink);
3721
+ }
3722
+ Instruction::ContBind {
3723
+ argument_index,
3724
+ result_index,
3725
+ } => {
3726
+ sink.push(0xE1);
3727
+ argument_index.encode(sink);
3728
+ result_index.encode(sink);
3729
+ }
3730
+ Instruction::Suspend(tag_index) => {
3731
+ sink.push(0xE2);
3732
+ tag_index.encode(sink);
3733
+ }
3734
+ Instruction::Resume {
3735
+ cont_type_index,
3736
+ ref resume_table,
3737
+ } => {
3738
+ sink.push(0xE3);
3739
+ cont_type_index.encode(sink);
3740
+ resume_table.encode(sink);
3741
+ }
3742
+ Instruction::ResumeThrow {
3743
+ cont_type_index,
3744
+ tag_index,
3745
+ ref resume_table,
3746
+ } => {
3747
+ sink.push(0xE4);
3748
+ cont_type_index.encode(sink);
3749
+ tag_index.encode(sink);
3750
+ resume_table.encode(sink);
3751
+ }
3752
+ Instruction::Switch {
3753
+ cont_type_index,
3754
+ tag_index,
3755
+ } => {
3756
+ sink.push(0xE5);
3757
+ cont_type_index.encode(sink);
3758
+ tag_index.encode(sink);
3759
+ }
3760
+ }
3761
+ }
3762
+ }
3763
+
3764
+ #[derive(Clone, Debug)]
3765
+ #[allow(missing_docs)]
3766
+ pub enum Catch {
3767
+ One { tag: u32, label: u32 },
3768
+ OneRef { tag: u32, label: u32 },
3769
+ All { label: u32 },
3770
+ AllRef { label: u32 },
3771
+ }
3772
+
3773
+ impl Encode for Catch {
3774
+ fn encode(&self, sink: &mut Vec<u8>) {
3775
+ match self {
3776
+ Catch::One { tag, label } => {
3777
+ sink.push(0x00);
3778
+ tag.encode(sink);
3779
+ label.encode(sink);
3780
+ }
3781
+ Catch::OneRef { tag, label } => {
3782
+ sink.push(0x01);
3783
+ tag.encode(sink);
3784
+ label.encode(sink);
3785
+ }
3786
+ Catch::All { label } => {
3787
+ sink.push(0x02);
3788
+ label.encode(sink);
3789
+ }
3790
+ Catch::AllRef { label } => {
3791
+ sink.push(0x03);
3792
+ label.encode(sink);
3793
+ }
3794
+ }
3795
+ }
3796
+ }
3797
+
3798
+ #[derive(Clone, Debug)]
3799
+ #[allow(missing_docs)]
3800
+ pub enum Handle {
3801
+ OnLabel { tag: u32, label: u32 },
3802
+ OnSwitch { tag: u32 },
3803
+ }
3804
+
3805
+ impl Encode for Handle {
3806
+ fn encode(&self, sink: &mut Vec<u8>) {
3807
+ match self {
3808
+ Handle::OnLabel { tag, label } => {
3809
+ sink.push(0x00);
3810
+ tag.encode(sink);
3811
+ label.encode(sink);
3812
+ }
3813
+ Handle::OnSwitch { tag } => {
3814
+ sink.push(0x01);
3815
+ tag.encode(sink);
3816
+ }
3817
+ }
3818
+ }
3819
+ }
3820
+
3821
+ /// A constant expression.
3822
+ ///
3823
+ /// Usable in contexts such as offsets or initializers.
3824
+ #[derive(Clone, Debug)]
3825
+ pub struct ConstExpr {
3826
+ bytes: Vec<u8>,
3827
+ }
3828
+
3829
+ impl ConstExpr {
3830
+ /// Create a new empty constant expression builder.
3831
+ pub fn empty() -> Self {
3832
+ Self { bytes: Vec::new() }
3833
+ }
3834
+
3835
+ /// Create a constant expression with the specified raw encoding of instructions.
3836
+ pub fn raw(bytes: impl IntoIterator<Item = u8>) -> Self {
3837
+ Self {
3838
+ bytes: bytes.into_iter().collect(),
3839
+ }
3840
+ }
3841
+
3842
+ fn new_insn(insn: Instruction) -> Self {
3843
+ let mut bytes = vec![];
3844
+ insn.encode(&mut bytes);
3845
+ Self { bytes }
3846
+ }
3847
+
3848
+ fn with_insn(mut self, insn: Instruction) -> Self {
3849
+ insn.encode(&mut self.bytes);
3850
+ self
3851
+ }
3852
+
3853
+ /// Create a constant expression containing a single `global.get` instruction.
3854
+ pub fn global_get(index: u32) -> Self {
3855
+ Self::new_insn(Instruction::GlobalGet(index))
3856
+ }
3857
+
3858
+ /// Create a constant expression containing a single `ref.null` instruction.
3859
+ pub fn ref_null(ty: HeapType) -> Self {
3860
+ Self::new_insn(Instruction::RefNull(ty))
3861
+ }
3862
+
3863
+ /// Create a constant expression containing a single `ref.func` instruction.
3864
+ pub fn ref_func(func: u32) -> Self {
3865
+ Self::new_insn(Instruction::RefFunc(func))
3866
+ }
3867
+
3868
+ /// Create a constant expression containing a single `i32.const` instruction.
3869
+ pub fn i32_const(value: i32) -> Self {
3870
+ Self::new_insn(Instruction::I32Const(value))
3871
+ }
3872
+
3873
+ /// Create a constant expression containing a single `i64.const` instruction.
3874
+ pub fn i64_const(value: i64) -> Self {
3875
+ Self::new_insn(Instruction::I64Const(value))
3876
+ }
3877
+
3878
+ /// Create a constant expression containing a single `f32.const` instruction.
3879
+ pub fn f32_const(value: f32) -> Self {
3880
+ Self::new_insn(Instruction::F32Const(value))
3881
+ }
3882
+
3883
+ /// Create a constant expression containing a single `f64.const` instruction.
3884
+ pub fn f64_const(value: f64) -> Self {
3885
+ Self::new_insn(Instruction::F64Const(value))
3886
+ }
3887
+
3888
+ /// Create a constant expression containing a single `v128.const` instruction.
3889
+ pub fn v128_const(value: i128) -> Self {
3890
+ Self::new_insn(Instruction::V128Const(value))
3891
+ }
3892
+
3893
+ /// Add a `global.get` instruction to this constant expression.
3894
+ pub fn with_global_get(self, index: u32) -> Self {
3895
+ self.with_insn(Instruction::GlobalGet(index))
3896
+ }
3897
+
3898
+ /// Add a `ref.null` instruction to this constant expression.
3899
+ pub fn with_ref_null(self, ty: HeapType) -> Self {
3900
+ self.with_insn(Instruction::RefNull(ty))
3901
+ }
3902
+
3903
+ /// Add a `ref.func` instruction to this constant expression.
3904
+ pub fn with_ref_func(self, func: u32) -> Self {
3905
+ self.with_insn(Instruction::RefFunc(func))
3906
+ }
3907
+
3908
+ /// Add an `i32.const` instruction to this constant expression.
3909
+ pub fn with_i32_const(self, value: i32) -> Self {
3910
+ self.with_insn(Instruction::I32Const(value))
3911
+ }
3912
+
3913
+ /// Add an `i64.const` instruction to this constant expression.
3914
+ pub fn with_i64_const(self, value: i64) -> Self {
3915
+ self.with_insn(Instruction::I64Const(value))
3916
+ }
3917
+
3918
+ /// Add a `f32.const` instruction to this constant expression.
3919
+ pub fn with_f32_const(self, value: f32) -> Self {
3920
+ self.with_insn(Instruction::F32Const(value))
3921
+ }
3922
+
3923
+ /// Add a `f64.const` instruction to this constant expression.
3924
+ pub fn with_f64_const(self, value: f64) -> Self {
3925
+ self.with_insn(Instruction::F64Const(value))
3926
+ }
3927
+
3928
+ /// Add a `v128.const` instruction to this constant expression.
3929
+ pub fn with_v128_const(self, value: i128) -> Self {
3930
+ self.with_insn(Instruction::V128Const(value))
3931
+ }
3932
+
3933
+ /// Add an `i32.add` instruction to this constant expression.
3934
+ pub fn with_i32_add(self) -> Self {
3935
+ self.with_insn(Instruction::I32Add)
3936
+ }
3937
+
3938
+ /// Add an `i32.sub` instruction to this constant expression.
3939
+ pub fn with_i32_sub(self) -> Self {
3940
+ self.with_insn(Instruction::I32Sub)
3941
+ }
3942
+
3943
+ /// Add an `i32.mul` instruction to this constant expression.
3944
+ pub fn with_i32_mul(self) -> Self {
3945
+ self.with_insn(Instruction::I32Mul)
3946
+ }
3947
+
3948
+ /// Add an `i64.add` instruction to this constant expression.
3949
+ pub fn with_i64_add(self) -> Self {
3950
+ self.with_insn(Instruction::I64Add)
3951
+ }
3952
+
3953
+ /// Add an `i64.sub` instruction to this constant expression.
3954
+ pub fn with_i64_sub(self) -> Self {
3955
+ self.with_insn(Instruction::I64Sub)
3956
+ }
3957
+
3958
+ /// Add an `i64.mul` instruction to this constant expression.
3959
+ pub fn with_i64_mul(self) -> Self {
3960
+ self.with_insn(Instruction::I64Mul)
3961
+ }
3962
+
3963
+ /// Returns the function, if any, referenced by this global.
3964
+ pub fn get_ref_func(&self) -> Option<u32> {
3965
+ let prefix = *self.bytes.get(0)?;
3966
+ // 0xd2 == `ref.func` opcode, and if that's found then load the leb
3967
+ // corresponding to the function index.
3968
+ if prefix != 0xd2 {
3969
+ return None;
3970
+ }
3971
+ leb128::read::unsigned(&mut &self.bytes[1..])
3972
+ .ok()?
3973
+ .try_into()
3974
+ .ok()
3975
+ }
3976
+ }
3977
+
3978
+ impl Encode for ConstExpr {
3979
+ fn encode(&self, sink: &mut Vec<u8>) {
3980
+ sink.extend(&self.bytes);
3981
+ Instruction::End.encode(sink);
3982
+ }
3983
+ }
3984
+
3985
+ #[cfg(test)]
3986
+ mod tests {
3987
+ #[test]
3988
+ fn function_new_with_locals_test() {
3989
+ use super::*;
3990
+
3991
+ // Test the algorithm for conversion is correct
3992
+ let f1 = Function::new_with_locals_types([
3993
+ ValType::I32,
3994
+ ValType::I32,
3995
+ ValType::I64,
3996
+ ValType::F32,
3997
+ ValType::F32,
3998
+ ValType::F32,
3999
+ ValType::I32,
4000
+ ValType::I64,
4001
+ ValType::I64,
4002
+ ]);
4003
+ let f2 = Function::new([
4004
+ (2, ValType::I32),
4005
+ (1, ValType::I64),
4006
+ (3, ValType::F32),
4007
+ (1, ValType::I32),
4008
+ (2, ValType::I64),
4009
+ ]);
4010
+
4011
+ assert_eq!(f1.bytes, f2.bytes)
4012
+ }
4013
+
4014
+ #[test]
4015
+ fn func_raw_bytes() {
4016
+ use super::*;
4017
+
4018
+ let mut f = Function::new([(1, ValType::I32), (1, ValType::F32)]);
4019
+ f.instruction(&Instruction::End);
4020
+ let mut code_from_func = CodeSection::new();
4021
+ code_from_func.function(&f);
4022
+ let bytes = f.into_raw_body();
4023
+ let mut code_from_raw = CodeSection::new();
4024
+ code_from_raw.raw(&bytes[..]);
4025
+
4026
+ let mut c1 = vec![];
4027
+ code_from_func.encode(&mut c1);
4028
+ let mut c2 = vec![];
4029
+ code_from_raw.encode(&mut c2);
4030
+ assert_eq!(c1, c2);
4031
+ }
4032
+ }