wasmtime 25.0.0 → 25.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2044) hide show
  1. checksums.yaml +4 -4
  2. data/Cargo.lock +89 -80
  3. data/ext/Cargo.toml +8 -8
  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/ext/src/ruby_api/convert.rs +17 -2
  261. data/ext/src/ruby_api/engine.rs +1 -1
  262. data/ext/src/ruby_api/externals.rs +112 -2
  263. data/ext/src/ruby_api/func.rs +57 -0
  264. data/ext/src/ruby_api/global.rs +56 -3
  265. data/ext/src/ruby_api/memory.rs +43 -0
  266. data/ext/src/ruby_api/module.rs +29 -3
  267. data/ext/src/ruby_api/table.rs +49 -3
  268. data/lib/wasmtime/version.rb +1 -1
  269. metadata +1816 -1777
  270. data/ext/cargo-vendor/anyhow-1.0.86/.cargo-checksum.json +0 -1
  271. data/ext/cargo-vendor/anyhow-1.0.86/Cargo.toml +0 -130
  272. data/ext/cargo-vendor/anyhow-1.0.86/README.md +0 -181
  273. data/ext/cargo-vendor/anyhow-1.0.86/build/probe.rs +0 -35
  274. data/ext/cargo-vendor/anyhow-1.0.86/build.rs +0 -179
  275. data/ext/cargo-vendor/anyhow-1.0.86/src/backtrace.rs +0 -406
  276. data/ext/cargo-vendor/anyhow-1.0.86/src/chain.rs +0 -102
  277. data/ext/cargo-vendor/anyhow-1.0.86/src/context.rs +0 -193
  278. data/ext/cargo-vendor/anyhow-1.0.86/src/error.rs +0 -1024
  279. data/ext/cargo-vendor/anyhow-1.0.86/src/kind.rs +0 -121
  280. data/ext/cargo-vendor/anyhow-1.0.86/src/lib.rs +0 -730
  281. data/ext/cargo-vendor/anyhow-1.0.86/src/wrapper.rs +0 -84
  282. data/ext/cargo-vendor/anyhow-1.0.86/tests/compiletest.rs +0 -7
  283. data/ext/cargo-vendor/anyhow-1.0.86/tests/test_autotrait.rs +0 -15
  284. data/ext/cargo-vendor/anyhow-1.0.86/tests/test_backtrace.rs +0 -15
  285. data/ext/cargo-vendor/anyhow-1.0.86/tests/test_ensure.rs +0 -741
  286. data/ext/cargo-vendor/anyhow-1.0.86/tests/test_fmt.rs +0 -94
  287. data/ext/cargo-vendor/async-timer-1.0.0-beta.14/.cargo-checksum.json +0 -1
  288. data/ext/cargo-vendor/async-timer-1.0.0-beta.14/Cargo.toml +0 -78
  289. data/ext/cargo-vendor/async-timer-1.0.0-beta.14/src/timer/async_tokio1.rs +0 -299
  290. data/ext/cargo-vendor/cranelift-bforest-0.112.0/.cargo-checksum.json +0 -1
  291. data/ext/cargo-vendor/cranelift-bforest-0.112.0/Cargo.toml +0 -59
  292. data/ext/cargo-vendor/cranelift-bitset-0.112.0/.cargo-checksum.json +0 -1
  293. data/ext/cargo-vendor/cranelift-bitset-0.112.0/Cargo.toml +0 -74
  294. data/ext/cargo-vendor/cranelift-codegen-0.112.0/.cargo-checksum.json +0 -1
  295. data/ext/cargo-vendor/cranelift-codegen-0.112.0/Cargo.toml +0 -222
  296. data/ext/cargo-vendor/cranelift-codegen-meta-0.112.0/.cargo-checksum.json +0 -1
  297. data/ext/cargo-vendor/cranelift-codegen-meta-0.112.0/Cargo.toml +0 -54
  298. data/ext/cargo-vendor/cranelift-codegen-shared-0.112.0/.cargo-checksum.json +0 -1
  299. data/ext/cargo-vendor/cranelift-codegen-shared-0.112.0/Cargo.toml +0 -32
  300. data/ext/cargo-vendor/cranelift-control-0.112.0/.cargo-checksum.json +0 -1
  301. data/ext/cargo-vendor/cranelift-control-0.112.0/Cargo.toml +0 -43
  302. data/ext/cargo-vendor/cranelift-entity-0.112.0/.cargo-checksum.json +0 -1
  303. data/ext/cargo-vendor/cranelift-entity-0.112.0/Cargo.toml +0 -75
  304. data/ext/cargo-vendor/cranelift-frontend-0.112.0/.cargo-checksum.json +0 -1
  305. data/ext/cargo-vendor/cranelift-frontend-0.112.0/Cargo.toml +0 -97
  306. data/ext/cargo-vendor/cranelift-isle-0.112.0/.cargo-checksum.json +0 -1
  307. data/ext/cargo-vendor/cranelift-isle-0.112.0/Cargo.toml +0 -69
  308. data/ext/cargo-vendor/cranelift-native-0.112.0/.cargo-checksum.json +0 -1
  309. data/ext/cargo-vendor/cranelift-native-0.112.0/Cargo.toml +0 -52
  310. data/ext/cargo-vendor/cranelift-wasm-0.112.0/.cargo-checksum.json +0 -1
  311. data/ext/cargo-vendor/cranelift-wasm-0.112.0/Cargo.toml +0 -128
  312. data/ext/cargo-vendor/pulley-interpreter-0.1.0/.cargo-checksum.json +0 -1
  313. data/ext/cargo-vendor/pulley-interpreter-0.1.0/Cargo.toml +0 -85
  314. data/ext/cargo-vendor/tokio-1.39.3/.cargo-checksum.json +0 -1
  315. data/ext/cargo-vendor/tokio-1.39.3/CHANGELOG.md +0 -3525
  316. data/ext/cargo-vendor/tokio-1.39.3/Cargo.toml +0 -800
  317. data/ext/cargo-vendor/tokio-1.39.3/README.md +0 -252
  318. data/ext/cargo-vendor/tokio-1.39.3/src/fs/file.rs +0 -979
  319. data/ext/cargo-vendor/tokio-1.39.3/src/fs/read_dir.rs +0 -358
  320. data/ext/cargo-vendor/tokio-1.39.3/src/fs/try_exists.rs +0 -34
  321. data/ext/cargo-vendor/tokio-1.39.3/src/future/maybe_done.rs +0 -71
  322. data/ext/cargo-vendor/tokio-1.39.3/src/io/async_fd.rs +0 -1359
  323. data/ext/cargo-vendor/tokio-1.39.3/src/io/async_read.rs +0 -131
  324. data/ext/cargo-vendor/tokio-1.39.3/src/io/blocking.rs +0 -294
  325. data/ext/cargo-vendor/tokio-1.39.3/src/io/bsd/poll_aio.rs +0 -197
  326. data/ext/cargo-vendor/tokio-1.39.3/src/io/mod.rs +0 -292
  327. data/ext/cargo-vendor/tokio-1.39.3/src/io/poll_evented.rs +0 -304
  328. data/ext/cargo-vendor/tokio-1.39.3/src/io/seek.rs +0 -57
  329. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/buf_reader.rs +0 -311
  330. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/buf_writer.rs +0 -310
  331. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/chain.rs +0 -144
  332. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/copy.rs +0 -295
  333. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/copy_bidirectional.rs +0 -137
  334. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/copy_buf.rs +0 -108
  335. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/empty.rs +0 -164
  336. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/lines.rs +0 -145
  337. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/mem.rs +0 -374
  338. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/mod.rs +0 -111
  339. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/read.rs +0 -55
  340. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/read_buf.rs +0 -72
  341. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/read_exact.rs +0 -69
  342. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/read_int.rs +0 -159
  343. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/read_line.rs +0 -119
  344. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/read_to_end.rs +0 -143
  345. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/read_to_string.rs +0 -78
  346. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/read_until.rs +0 -80
  347. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/repeat.rs +0 -75
  348. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/sink.rs +0 -94
  349. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/split.rs +0 -121
  350. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/take.rs +0 -138
  351. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/write_all.rs +0 -55
  352. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/write_all_buf.rs +0 -56
  353. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/write_buf.rs +0 -55
  354. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/write_int.rs +0 -152
  355. data/ext/cargo-vendor/tokio-1.39.3/src/lib.rs +0 -690
  356. data/ext/cargo-vendor/tokio-1.39.3/src/loom/mocked.rs +0 -53
  357. data/ext/cargo-vendor/tokio-1.39.3/src/loom/std/atomic_u16.rs +0 -45
  358. data/ext/cargo-vendor/tokio-1.39.3/src/loom/std/atomic_u32.rs +0 -45
  359. data/ext/cargo-vendor/tokio-1.39.3/src/loom/std/atomic_usize.rs +0 -57
  360. data/ext/cargo-vendor/tokio-1.39.3/src/loom/std/mutex.rs +0 -36
  361. data/ext/cargo-vendor/tokio-1.39.3/src/macros/mod.rs +0 -39
  362. data/ext/cargo-vendor/tokio-1.39.3/src/macros/ready.rs +0 -8
  363. data/ext/cargo-vendor/tokio-1.39.3/src/macros/select.rs +0 -1261
  364. data/ext/cargo-vendor/tokio-1.39.3/src/net/addr.rs +0 -333
  365. data/ext/cargo-vendor/tokio-1.39.3/src/net/tcp/listener.rs +0 -451
  366. data/ext/cargo-vendor/tokio-1.39.3/src/net/tcp/stream.rs +0 -1424
  367. data/ext/cargo-vendor/tokio-1.39.3/src/net/udp.rs +0 -2049
  368. data/ext/cargo-vendor/tokio-1.39.3/src/net/unix/datagram/socket.rs +0 -1595
  369. data/ext/cargo-vendor/tokio-1.39.3/src/net/unix/listener.rs +0 -240
  370. data/ext/cargo-vendor/tokio-1.39.3/src/process/mod.rs +0 -1686
  371. data/ext/cargo-vendor/tokio-1.39.3/src/process/unix/pidfd_reaper.rs +0 -322
  372. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/blocking/pool.rs +0 -608
  373. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/blocking/schedule.rs +0 -60
  374. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/builder.rs +0 -1352
  375. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/config.rs +0 -43
  376. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/coop.rs +0 -323
  377. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/io/registration.rs +0 -259
  378. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/mod.rs +0 -410
  379. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/scheduler/current_thread/mod.rs +0 -772
  380. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/scheduler/mod.rs +0 -271
  381. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/scheduler/multi_thread/handle.rs +0 -74
  382. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/scheduler/multi_thread/worker.rs +0 -1260
  383. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/scheduler/multi_thread_alt/handle.rs +0 -75
  384. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/scheduler/multi_thread_alt/worker.rs +0 -1603
  385. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/task/core.rs +0 -494
  386. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/task/error.rs +0 -169
  387. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/task/harness.rs +0 -517
  388. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/task/id.rs +0 -98
  389. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/task/join.rs +0 -377
  390. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/task/mod.rs +0 -537
  391. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/tests/loom_multi_thread.rs +0 -462
  392. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/tests/loom_multi_thread_alt.rs +0 -572
  393. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/tests/mod.rs +0 -76
  394. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/tests/queue.rs +0 -287
  395. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/tests/task.rs +0 -353
  396. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/time/mod.rs +0 -474
  397. data/ext/cargo-vendor/tokio-1.39.3/src/sync/batch_semaphore.rs +0 -779
  398. data/ext/cargo-vendor/tokio-1.39.3/src/sync/broadcast.rs +0 -1541
  399. data/ext/cargo-vendor/tokio-1.39.3/src/sync/mpsc/chan.rs +0 -597
  400. data/ext/cargo-vendor/tokio-1.39.3/src/sync/mpsc/error.rs +0 -149
  401. data/ext/cargo-vendor/tokio-1.39.3/src/sync/mpsc/mod.rs +0 -124
  402. data/ext/cargo-vendor/tokio-1.39.3/src/sync/notify.rs +0 -1218
  403. data/ext/cargo-vendor/tokio-1.39.3/src/sync/oneshot.rs +0 -1408
  404. data/ext/cargo-vendor/tokio-1.39.3/src/task/consume_budget.rs +0 -41
  405. data/ext/cargo-vendor/tokio-1.39.3/src/task/join_set.rs +0 -725
  406. data/ext/cargo-vendor/tokio-1.39.3/src/task/local.rs +0 -1250
  407. data/ext/cargo-vendor/tokio-1.39.3/src/task/spawn.rs +0 -207
  408. data/ext/cargo-vendor/tokio-1.39.3/src/task/yield_now.rs +0 -64
  409. data/ext/cargo-vendor/tokio-1.39.3/src/time/interval.rs +0 -644
  410. data/ext/cargo-vendor/tokio-1.39.3/src/time/sleep.rs +0 -452
  411. data/ext/cargo-vendor/tokio-1.39.3/src/util/bit.rs +0 -69
  412. data/ext/cargo-vendor/tokio-1.39.3/src/util/sync_wrapper.rs +0 -26
  413. data/ext/cargo-vendor/tokio-1.39.3/tests/async_send_sync.rs +0 -753
  414. data/ext/cargo-vendor/tokio-1.39.3/tests/io_async_fd.rs +0 -853
  415. data/ext/cargo-vendor/tokio-1.39.3/tests/io_copy.rs +0 -102
  416. data/ext/cargo-vendor/tokio-1.39.3/tests/io_write_all_buf.rs +0 -96
  417. data/ext/cargo-vendor/tokio-1.39.3/tests/macros_join.rs +0 -176
  418. data/ext/cargo-vendor/tokio-1.39.3/tests/sync_mpsc.rs +0 -1436
  419. data/ext/cargo-vendor/tokio-1.39.3/tests/task_abort.rs +0 -222
  420. data/ext/cargo-vendor/tokio-1.39.3/tests/task_join_set.rs +0 -307
  421. data/ext/cargo-vendor/tokio-1.39.3/tests/uds_stream.rs +0 -424
  422. data/ext/cargo-vendor/wasi-common-25.0.0/.cargo-checksum.json +0 -1
  423. data/ext/cargo-vendor/wasi-common-25.0.0/Cargo.toml +0 -242
  424. data/ext/cargo-vendor/wasmtime-25.0.0/.cargo-checksum.json +0 -1
  425. data/ext/cargo-vendor/wasmtime-25.0.0/Cargo.toml +0 -407
  426. data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/type_registry.rs +0 -1099
  427. data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/vm/traphandlers/backtrace.rs +0 -267
  428. data/ext/cargo-vendor/wasmtime-asm-macros-25.0.0/.cargo-checksum.json +0 -1
  429. data/ext/cargo-vendor/wasmtime-asm-macros-25.0.0/Cargo.toml +0 -33
  430. data/ext/cargo-vendor/wasmtime-cache-25.0.0/.cargo-checksum.json +0 -1
  431. data/ext/cargo-vendor/wasmtime-cache-25.0.0/Cargo.toml +0 -112
  432. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/.cargo-checksum.json +0 -1
  433. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/Cargo.toml +0 -115
  434. data/ext/cargo-vendor/wasmtime-component-util-25.0.0/.cargo-checksum.json +0 -1
  435. data/ext/cargo-vendor/wasmtime-component-util-25.0.0/Cargo.toml +0 -36
  436. data/ext/cargo-vendor/wasmtime-cranelift-25.0.0/.cargo-checksum.json +0 -1
  437. data/ext/cargo-vendor/wasmtime-cranelift-25.0.0/Cargo.toml +0 -137
  438. data/ext/cargo-vendor/wasmtime-environ-25.0.0/.cargo-checksum.json +0 -1
  439. data/ext/cargo-vendor/wasmtime-environ-25.0.0/Cargo.lock +0 -792
  440. data/ext/cargo-vendor/wasmtime-environ-25.0.0/Cargo.toml +0 -195
  441. data/ext/cargo-vendor/wasmtime-environ-25.0.0/src/compile/module_environ.rs +0 -1264
  442. data/ext/cargo-vendor/wasmtime-fiber-25.0.0/.cargo-checksum.json +0 -1
  443. data/ext/cargo-vendor/wasmtime-fiber-25.0.0/Cargo.toml +0 -84
  444. data/ext/cargo-vendor/wasmtime-jit-debug-25.0.0/.cargo-checksum.json +0 -1
  445. data/ext/cargo-vendor/wasmtime-jit-debug-25.0.0/Cargo.toml +0 -86
  446. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-25.0.0/.cargo-checksum.json +0 -1
  447. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-25.0.0/Cargo.toml +0 -71
  448. data/ext/cargo-vendor/wasmtime-slab-25.0.0/.cargo-checksum.json +0 -1
  449. data/ext/cargo-vendor/wasmtime-slab-25.0.0/Cargo.toml +0 -50
  450. data/ext/cargo-vendor/wasmtime-types-25.0.0/.cargo-checksum.json +0 -1
  451. data/ext/cargo-vendor/wasmtime-types-25.0.0/Cargo.toml +0 -80
  452. data/ext/cargo-vendor/wasmtime-versioned-export-macros-25.0.0/.cargo-checksum.json +0 -1
  453. data/ext/cargo-vendor/wasmtime-versioned-export-macros-25.0.0/Cargo.toml +0 -41
  454. data/ext/cargo-vendor/wasmtime-wasi-25.0.0/.cargo-checksum.json +0 -1
  455. data/ext/cargo-vendor/wasmtime-wasi-25.0.0/Cargo.toml +0 -224
  456. data/ext/cargo-vendor/wasmtime-winch-25.0.0/.cargo-checksum.json +0 -1
  457. data/ext/cargo-vendor/wasmtime-winch-25.0.0/Cargo.toml +0 -100
  458. data/ext/cargo-vendor/wasmtime-wit-bindgen-25.0.0/.cargo-checksum.json +0 -1
  459. data/ext/cargo-vendor/wasmtime-wit-bindgen-25.0.0/Cargo.toml +0 -66
  460. data/ext/cargo-vendor/wast-217.0.0/.cargo-checksum.json +0 -1
  461. data/ext/cargo-vendor/wast-217.0.0/Cargo.toml +0 -101
  462. data/ext/cargo-vendor/wast-217.0.0/src/component/binary.rs +0 -1014
  463. data/ext/cargo-vendor/wast-217.0.0/src/component/component.rs +0 -324
  464. data/ext/cargo-vendor/wast-217.0.0/src/component/expand.rs +0 -879
  465. data/ext/cargo-vendor/wast-217.0.0/src/component/func.rs +0 -486
  466. data/ext/cargo-vendor/wast-217.0.0/src/component/resolve.rs +0 -994
  467. data/ext/cargo-vendor/wast-217.0.0/src/component/types.rs +0 -999
  468. data/ext/cargo-vendor/wast-217.0.0/src/core/binary.rs +0 -1556
  469. data/ext/cargo-vendor/wast-217.0.0/src/core/expr.rs +0 -2110
  470. data/ext/cargo-vendor/wast-217.0.0/src/core/resolve/deinline_import_export.rs +0 -232
  471. data/ext/cargo-vendor/wast-217.0.0/src/core/resolve/names.rs +0 -808
  472. data/ext/cargo-vendor/wast-217.0.0/src/core/resolve/types.rs +0 -273
  473. data/ext/cargo-vendor/wast-217.0.0/src/core/table.rs +0 -308
  474. data/ext/cargo-vendor/wast-217.0.0/src/core/types.rs +0 -1057
  475. data/ext/cargo-vendor/wast-217.0.0/src/lib.rs +0 -557
  476. data/ext/cargo-vendor/wast-217.0.0/src/wast.rs +0 -552
  477. data/ext/cargo-vendor/wat-1.217.0/.cargo-checksum.json +0 -1
  478. data/ext/cargo-vendor/wat-1.217.0/Cargo.toml +0 -56
  479. data/ext/cargo-vendor/wiggle-25.0.0/.cargo-checksum.json +0 -1
  480. data/ext/cargo-vendor/wiggle-25.0.0/Cargo.toml +0 -119
  481. data/ext/cargo-vendor/wiggle-generate-25.0.0/.cargo-checksum.json +0 -1
  482. data/ext/cargo-vendor/wiggle-generate-25.0.0/Cargo.toml +0 -85
  483. data/ext/cargo-vendor/wiggle-macro-25.0.0/.cargo-checksum.json +0 -1
  484. data/ext/cargo-vendor/wiggle-macro-25.0.0/Cargo.toml +0 -78
  485. data/ext/cargo-vendor/winch-codegen-0.23.0/.cargo-checksum.json +0 -1
  486. data/ext/cargo-vendor/winch-codegen-0.23.0/Cargo.toml +0 -95
  487. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/LICENSE-APACHE +0 -0
  488. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/LICENSE-MIT +0 -0
  489. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/rust-toolchain.toml +0 -0
  490. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/src/ensure.rs +0 -0
  491. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/src/fmt.rs +0 -0
  492. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/src/macros.rs +0 -0
  493. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/src/ptr.rs +0 -0
  494. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/common/mod.rs +0 -0
  495. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/drop/mod.rs +0 -0
  496. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/test_boxed.rs +0 -0
  497. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/test_chain.rs +0 -0
  498. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/test_context.rs +0 -0
  499. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/test_convert.rs +0 -0
  500. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/test_downcast.rs +0 -0
  501. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/test_ffi.rs +0 -0
  502. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/test_macros.rs +0 -0
  503. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/test_repr.rs +0 -0
  504. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/test_source.rs +0 -0
  505. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/ui/chained-comparison.rs +0 -0
  506. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/ui/chained-comparison.stderr +0 -0
  507. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/ui/empty-ensure.rs +0 -0
  508. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/ui/empty-ensure.stderr +0 -0
  509. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/ui/ensure-nonbool.rs +0 -0
  510. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/ui/ensure-nonbool.stderr +0 -0
  511. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/ui/must-use.rs +0 -0
  512. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/ui/must-use.stderr +0 -0
  513. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/ui/no-impl.rs +0 -0
  514. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/ui/no-impl.stderr +0 -0
  515. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/ui/temporary-value.rs +0 -0
  516. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/ui/temporary-value.stderr +0 -0
  517. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/ui/wrong-interpolation.rs +0 -0
  518. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/ui/wrong-interpolation.stderr +0 -0
  519. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/README.md +0 -0
  520. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/build.rs +0 -0
  521. /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
  522. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/src/interval.rs +0 -0
  523. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/src/lib.rs +0 -0
  524. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/src/state.rs +0 -0
  525. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/src/timed.rs +0 -0
  526. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/src/timer/apple.rs +0 -0
  527. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/src/timer/dummy.rs +0 -0
  528. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/src/timer/mod.rs +0 -0
  529. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/src/timer/posix.rs +0 -0
  530. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/src/timer/web.rs +0 -0
  531. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/src/timer/win.rs +0 -0
  532. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/src/utils.rs +0 -0
  533. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/tests/interval.rs +0 -0
  534. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/tests/timed.rs +0 -0
  535. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/tests/timer.rs +0 -0
  536. /data/ext/cargo-vendor/{cranelift-bforest-0.112.0 → cranelift-bforest-0.112.2}/LICENSE +0 -0
  537. /data/ext/cargo-vendor/{cranelift-bforest-0.112.0 → cranelift-bforest-0.112.2}/README.md +0 -0
  538. /data/ext/cargo-vendor/{cranelift-bforest-0.112.0 → cranelift-bforest-0.112.2}/src/lib.rs +0 -0
  539. /data/ext/cargo-vendor/{cranelift-bforest-0.112.0 → cranelift-bforest-0.112.2}/src/map.rs +0 -0
  540. /data/ext/cargo-vendor/{cranelift-bforest-0.112.0 → cranelift-bforest-0.112.2}/src/node.rs +0 -0
  541. /data/ext/cargo-vendor/{cranelift-bforest-0.112.0 → cranelift-bforest-0.112.2}/src/path.rs +0 -0
  542. /data/ext/cargo-vendor/{cranelift-bforest-0.112.0 → cranelift-bforest-0.112.2}/src/pool.rs +0 -0
  543. /data/ext/cargo-vendor/{cranelift-bforest-0.112.0 → cranelift-bforest-0.112.2}/src/set.rs +0 -0
  544. /data/ext/cargo-vendor/{cranelift-bitset-0.112.0 → cranelift-bitset-0.112.2}/src/compound.rs +0 -0
  545. /data/ext/cargo-vendor/{cranelift-bitset-0.112.0 → cranelift-bitset-0.112.2}/src/lib.rs +0 -0
  546. /data/ext/cargo-vendor/{cranelift-bitset-0.112.0 → cranelift-bitset-0.112.2}/src/scalar.rs +0 -0
  547. /data/ext/cargo-vendor/{cranelift-bitset-0.112.0 → cranelift-bitset-0.112.2}/tests/bitset.rs +0 -0
  548. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/LICENSE +0 -0
  549. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/README.md +0 -0
  550. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/benches/x64-evex-encoding.rs +0 -0
  551. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/build.rs +0 -0
  552. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/alias_analysis.rs +0 -0
  553. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/binemit/mod.rs +0 -0
  554. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/cfg_printer.rs +0 -0
  555. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/constant_hash.rs +0 -0
  556. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/context.rs +0 -0
  557. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/ctxhash.rs +0 -0
  558. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/cursor.rs +0 -0
  559. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/data_value.rs +0 -0
  560. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/dbg.rs +0 -0
  561. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/dominator_tree.rs +0 -0
  562. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/egraph/cost.rs +0 -0
  563. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/egraph/elaborate.rs +0 -0
  564. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/egraph.rs +0 -0
  565. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/flowgraph.rs +0 -0
  566. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/incremental_cache.rs +0 -0
  567. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/inst_predicates.rs +0 -0
  568. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/ir/atomic_rmw_op.rs +0 -0
  569. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/ir/builder.rs +0 -0
  570. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/ir/condcodes.rs +0 -0
  571. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/ir/constant.rs +0 -0
  572. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/ir/dfg.rs +0 -0
  573. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/ir/dynamic_type.rs +0 -0
  574. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/ir/entities.rs +0 -0
  575. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/ir/extfunc.rs +0 -0
  576. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/ir/extname.rs +0 -0
  577. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/ir/function.rs +0 -0
  578. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/ir/globalvalue.rs +0 -0
  579. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/ir/immediates.rs +0 -0
  580. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/ir/instructions.rs +0 -0
  581. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/ir/jumptable.rs +0 -0
  582. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/ir/known_symbol.rs +0 -0
  583. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/ir/layout.rs +0 -0
  584. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/ir/libcall.rs +0 -0
  585. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/ir/memflags.rs +0 -0
  586. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/ir/memtype.rs +0 -0
  587. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/ir/mod.rs +0 -0
  588. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/ir/pcc.rs +0 -0
  589. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/ir/progpoint.rs +0 -0
  590. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/ir/sourceloc.rs +0 -0
  591. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/ir/stackslot.rs +0 -0
  592. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/ir/trapcode.rs +0 -0
  593. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/ir/types.rs +0 -0
  594. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/ir/user_stack_maps.rs +0 -0
  595. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/aarch64/abi.rs +0 -0
  596. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/aarch64/inst/args.rs +0 -0
  597. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/aarch64/inst/emit.rs +0 -0
  598. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/aarch64/inst/emit_tests.rs +0 -0
  599. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/aarch64/inst/imms.rs +0 -0
  600. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/aarch64/inst/mod.rs +0 -0
  601. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/aarch64/inst/regs.rs +0 -0
  602. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/aarch64/inst/unwind/systemv.rs +0 -0
  603. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/aarch64/inst/unwind.rs +0 -0
  604. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/aarch64/inst.isle +0 -0
  605. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/aarch64/inst_neon.isle +0 -0
  606. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/aarch64/lower/isle/generated_code.rs +0 -0
  607. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/aarch64/lower/isle.rs +0 -0
  608. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/aarch64/lower.isle +0 -0
  609. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/aarch64/lower.rs +0 -0
  610. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/aarch64/lower_dynamic_neon.isle +0 -0
  611. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/aarch64/mod.rs +0 -0
  612. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/aarch64/pcc.rs +0 -0
  613. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/aarch64/settings.rs +0 -0
  614. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/call_conv.rs +0 -0
  615. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/mod.rs +0 -0
  616. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/pulley32.rs +0 -0
  617. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/pulley64.rs +0 -0
  618. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/pulley_shared/abi.rs +0 -0
  619. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/pulley_shared/inst/args.rs +0 -0
  620. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/pulley_shared/inst/emit.rs +0 -0
  621. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/pulley_shared/inst/mod.rs +0 -0
  622. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/pulley_shared/inst/regs.rs +0 -0
  623. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/pulley_shared/inst.isle +0 -0
  624. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/pulley_shared/lower/isle/generated_code.rs +0 -0
  625. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/pulley_shared/lower/isle.rs +0 -0
  626. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/pulley_shared/lower.isle +0 -0
  627. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/pulley_shared/lower.rs +0 -0
  628. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/pulley_shared/mod.rs +0 -0
  629. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/pulley_shared/settings.rs +0 -0
  630. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/riscv64/abi.rs +0 -0
  631. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/riscv64/inst/args.rs +0 -0
  632. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/riscv64/inst/emit.rs +0 -0
  633. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/riscv64/inst/emit_tests.rs +0 -0
  634. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/riscv64/inst/encode.rs +0 -0
  635. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/riscv64/inst/imms.rs +0 -0
  636. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/riscv64/inst/mod.rs +0 -0
  637. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/riscv64/inst/regs.rs +0 -0
  638. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/riscv64/inst/unwind/systemv.rs +0 -0
  639. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/riscv64/inst/unwind.rs +0 -0
  640. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/riscv64/inst/vector.rs +0 -0
  641. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/riscv64/inst.isle +0 -0
  642. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/riscv64/inst_vector.isle +0 -0
  643. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/riscv64/lower/isle/generated_code.rs +0 -0
  644. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/riscv64/lower/isle.rs +0 -0
  645. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/riscv64/lower.isle +0 -0
  646. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/riscv64/lower.rs +0 -0
  647. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/riscv64/mod.rs +0 -0
  648. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/riscv64/settings.rs +0 -0
  649. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/s390x/abi.rs +0 -0
  650. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/s390x/inst/args.rs +0 -0
  651. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/s390x/inst/emit.rs +0 -0
  652. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/s390x/inst/emit_tests.rs +0 -0
  653. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/s390x/inst/imms.rs +0 -0
  654. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/s390x/inst/mod.rs +0 -0
  655. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/s390x/inst/regs.rs +0 -0
  656. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/s390x/inst/unwind/systemv.rs +0 -0
  657. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/s390x/inst/unwind.rs +0 -0
  658. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/s390x/inst.isle +0 -0
  659. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/s390x/lower/isle/generated_code.rs +0 -0
  660. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/s390x/lower/isle.rs +0 -0
  661. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/s390x/lower.isle +0 -0
  662. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/s390x/lower.rs +0 -0
  663. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/s390x/mod.rs +0 -0
  664. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/s390x/settings.rs +0 -0
  665. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/unwind/systemv.rs +0 -0
  666. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/unwind/winx64.rs +0 -0
  667. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/unwind.rs +0 -0
  668. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/x64/abi.rs +0 -0
  669. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/x64/encoding/evex.rs +0 -0
  670. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/x64/encoding/mod.rs +0 -0
  671. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/x64/encoding/rex.rs +0 -0
  672. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/x64/encoding/vex.rs +0 -0
  673. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/x64/inst/args.rs +0 -0
  674. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/x64/inst/emit.rs +0 -0
  675. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/x64/inst/emit_state.rs +0 -0
  676. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/x64/inst/emit_tests.rs +0 -0
  677. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/x64/inst/mod.rs +0 -0
  678. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/x64/inst/regs.rs +0 -0
  679. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/x64/inst/stack_switch.rs +0 -0
  680. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/x64/inst/unwind/systemv.rs +0 -0
  681. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/x64/inst/unwind/winx64.rs +0 -0
  682. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/x64/inst/unwind.rs +0 -0
  683. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/x64/inst.isle +0 -0
  684. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/x64/lower/isle/generated_code.rs +0 -0
  685. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/x64/lower/isle.rs +0 -0
  686. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/x64/lower.isle +0 -0
  687. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/x64/lower.rs +0 -0
  688. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/x64/mod.rs +0 -0
  689. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/x64/pcc.rs +0 -0
  690. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/x64/settings.rs +0 -0
  691. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isle_prelude.rs +0 -0
  692. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/iterators.rs +0 -0
  693. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/legalizer/globalvalue.rs +0 -0
  694. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/legalizer/mod.rs +0 -0
  695. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/lib.rs +0 -0
  696. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/loop_analysis.rs +0 -0
  697. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/machinst/abi.rs +0 -0
  698. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/machinst/blockorder.rs +0 -0
  699. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/machinst/buffer.rs +0 -0
  700. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/machinst/compile.rs +0 -0
  701. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/machinst/helpers.rs +0 -0
  702. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/machinst/inst_common.rs +0 -0
  703. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/machinst/isle.rs +0 -0
  704. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/machinst/lower.rs +0 -0
  705. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/machinst/mod.rs +0 -0
  706. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/machinst/pcc.rs +0 -0
  707. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/machinst/reg.rs +0 -0
  708. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/machinst/valueregs.rs +0 -0
  709. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/machinst/vcode.rs +0 -0
  710. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/nan_canonicalization.rs +0 -0
  711. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/opts/README.md +0 -0
  712. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/opts/arithmetic.isle +0 -0
  713. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/opts/bitops.isle +0 -0
  714. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/opts/cprop.isle +0 -0
  715. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/opts/extends.isle +0 -0
  716. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/opts/generated_code.rs +0 -0
  717. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/opts/icmp.isle +0 -0
  718. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/opts/remat.isle +0 -0
  719. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/opts/selects.isle +0 -0
  720. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/opts/shifts.isle +0 -0
  721. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/opts/spaceship.isle +0 -0
  722. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/opts/spectre.isle +0 -0
  723. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/opts/vector.isle +0 -0
  724. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/opts.rs +0 -0
  725. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/prelude.isle +0 -0
  726. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/prelude_lower.isle +0 -0
  727. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/prelude_opt.isle +0 -0
  728. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/print_errors.rs +0 -0
  729. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/ranges.rs +0 -0
  730. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/remove_constant_phis.rs +0 -0
  731. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/result.rs +0 -0
  732. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/scoped_hash_map.rs +0 -0
  733. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/settings.rs +0 -0
  734. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/souper_harvest.rs +0 -0
  735. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/timing.rs +0 -0
  736. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/traversals.rs +0 -0
  737. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/unionfind.rs +0 -0
  738. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/unreachable_code.rs +0 -0
  739. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/value_label.rs +0 -0
  740. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/verifier/mod.rs +0 -0
  741. /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/write.rs +0 -0
  742. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.0 → cranelift-codegen-meta-0.112.2}/LICENSE +0 -0
  743. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.0 → cranelift-codegen-meta-0.112.2}/README.md +0 -0
  744. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.0 → cranelift-codegen-meta-0.112.2}/src/cdsl/formats.rs +0 -0
  745. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.0 → cranelift-codegen-meta-0.112.2}/src/cdsl/instructions.rs +0 -0
  746. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.0 → cranelift-codegen-meta-0.112.2}/src/cdsl/isa.rs +0 -0
  747. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.0 → cranelift-codegen-meta-0.112.2}/src/cdsl/mod.rs +0 -0
  748. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.0 → cranelift-codegen-meta-0.112.2}/src/cdsl/operands.rs +0 -0
  749. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.0 → cranelift-codegen-meta-0.112.2}/src/cdsl/settings.rs +0 -0
  750. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.0 → cranelift-codegen-meta-0.112.2}/src/cdsl/types.rs +0 -0
  751. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.0 → cranelift-codegen-meta-0.112.2}/src/cdsl/typevar.rs +0 -0
  752. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.0 → cranelift-codegen-meta-0.112.2}/src/constant_hash.rs +0 -0
  753. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.0 → cranelift-codegen-meta-0.112.2}/src/error.rs +0 -0
  754. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.0 → cranelift-codegen-meta-0.112.2}/src/gen_inst.rs +0 -0
  755. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.0 → cranelift-codegen-meta-0.112.2}/src/gen_isle.rs +0 -0
  756. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.0 → cranelift-codegen-meta-0.112.2}/src/gen_settings.rs +0 -0
  757. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.0 → cranelift-codegen-meta-0.112.2}/src/gen_types.rs +0 -0
  758. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.0 → cranelift-codegen-meta-0.112.2}/src/isa/arm64.rs +0 -0
  759. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.0 → cranelift-codegen-meta-0.112.2}/src/isa/mod.rs +0 -0
  760. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.0 → cranelift-codegen-meta-0.112.2}/src/isa/pulley.rs +0 -0
  761. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.0 → cranelift-codegen-meta-0.112.2}/src/isa/riscv64.rs +0 -0
  762. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.0 → cranelift-codegen-meta-0.112.2}/src/isa/s390x.rs +0 -0
  763. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.0 → cranelift-codegen-meta-0.112.2}/src/isa/x86.rs +0 -0
  764. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.0 → cranelift-codegen-meta-0.112.2}/src/isle.rs +0 -0
  765. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.0 → cranelift-codegen-meta-0.112.2}/src/lib.rs +0 -0
  766. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.0 → cranelift-codegen-meta-0.112.2}/src/shared/entities.rs +0 -0
  767. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.0 → cranelift-codegen-meta-0.112.2}/src/shared/formats.rs +0 -0
  768. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.0 → cranelift-codegen-meta-0.112.2}/src/shared/immediates.rs +0 -0
  769. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.0 → cranelift-codegen-meta-0.112.2}/src/shared/instructions.rs +0 -0
  770. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.0 → cranelift-codegen-meta-0.112.2}/src/shared/mod.rs +0 -0
  771. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.0 → cranelift-codegen-meta-0.112.2}/src/shared/settings.rs +0 -0
  772. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.0 → cranelift-codegen-meta-0.112.2}/src/shared/types.rs +0 -0
  773. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.0 → cranelift-codegen-meta-0.112.2}/src/srcgen.rs +0 -0
  774. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.0 → cranelift-codegen-meta-0.112.2}/src/unique_table.rs +0 -0
  775. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.112.0 → cranelift-codegen-shared-0.112.2}/LICENSE +0 -0
  776. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.112.0 → cranelift-codegen-shared-0.112.2}/README.md +0 -0
  777. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.112.0 → cranelift-codegen-shared-0.112.2}/src/constant_hash.rs +0 -0
  778. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.112.0 → cranelift-codegen-shared-0.112.2}/src/constants.rs +0 -0
  779. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.112.0 → cranelift-codegen-shared-0.112.2}/src/lib.rs +0 -0
  780. /data/ext/cargo-vendor/{cranelift-control-0.112.0 → cranelift-control-0.112.2}/LICENSE +0 -0
  781. /data/ext/cargo-vendor/{cranelift-control-0.112.0 → cranelift-control-0.112.2}/README.md +0 -0
  782. /data/ext/cargo-vendor/{cranelift-control-0.112.0 → cranelift-control-0.112.2}/src/chaos.rs +0 -0
  783. /data/ext/cargo-vendor/{cranelift-control-0.112.0 → cranelift-control-0.112.2}/src/lib.rs +0 -0
  784. /data/ext/cargo-vendor/{cranelift-control-0.112.0 → cranelift-control-0.112.2}/src/zero_sized.rs +0 -0
  785. /data/ext/cargo-vendor/{cranelift-entity-0.112.0 → cranelift-entity-0.112.2}/LICENSE +0 -0
  786. /data/ext/cargo-vendor/{cranelift-entity-0.112.0 → cranelift-entity-0.112.2}/README.md +0 -0
  787. /data/ext/cargo-vendor/{cranelift-entity-0.112.0 → cranelift-entity-0.112.2}/src/boxed_slice.rs +0 -0
  788. /data/ext/cargo-vendor/{cranelift-entity-0.112.0 → cranelift-entity-0.112.2}/src/iter.rs +0 -0
  789. /data/ext/cargo-vendor/{cranelift-entity-0.112.0 → cranelift-entity-0.112.2}/src/keys.rs +0 -0
  790. /data/ext/cargo-vendor/{cranelift-entity-0.112.0 → cranelift-entity-0.112.2}/src/lib.rs +0 -0
  791. /data/ext/cargo-vendor/{cranelift-entity-0.112.0 → cranelift-entity-0.112.2}/src/list.rs +0 -0
  792. /data/ext/cargo-vendor/{cranelift-entity-0.112.0 → cranelift-entity-0.112.2}/src/map.rs +0 -0
  793. /data/ext/cargo-vendor/{cranelift-entity-0.112.0 → cranelift-entity-0.112.2}/src/packed_option.rs +0 -0
  794. /data/ext/cargo-vendor/{cranelift-entity-0.112.0 → cranelift-entity-0.112.2}/src/primary.rs +0 -0
  795. /data/ext/cargo-vendor/{cranelift-entity-0.112.0 → cranelift-entity-0.112.2}/src/set.rs +0 -0
  796. /data/ext/cargo-vendor/{cranelift-entity-0.112.0 → cranelift-entity-0.112.2}/src/sparse.rs +0 -0
  797. /data/ext/cargo-vendor/{cranelift-entity-0.112.0 → cranelift-entity-0.112.2}/src/unsigned.rs +0 -0
  798. /data/ext/cargo-vendor/{cranelift-frontend-0.112.0 → cranelift-frontend-0.112.2}/LICENSE +0 -0
  799. /data/ext/cargo-vendor/{cranelift-frontend-0.112.0 → cranelift-frontend-0.112.2}/README.md +0 -0
  800. /data/ext/cargo-vendor/{cranelift-frontend-0.112.0 → cranelift-frontend-0.112.2}/src/frontend/safepoints.rs +0 -0
  801. /data/ext/cargo-vendor/{cranelift-frontend-0.112.0 → cranelift-frontend-0.112.2}/src/frontend.rs +0 -0
  802. /data/ext/cargo-vendor/{cranelift-frontend-0.112.0 → cranelift-frontend-0.112.2}/src/lib.rs +0 -0
  803. /data/ext/cargo-vendor/{cranelift-frontend-0.112.0 → cranelift-frontend-0.112.2}/src/ssa.rs +0 -0
  804. /data/ext/cargo-vendor/{cranelift-frontend-0.112.0 → cranelift-frontend-0.112.2}/src/switch.rs +0 -0
  805. /data/ext/cargo-vendor/{cranelift-frontend-0.112.0 → cranelift-frontend-0.112.2}/src/variable.rs +0 -0
  806. /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/README.md +0 -0
  807. /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/build.rs +0 -0
  808. /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/isle_examples/fail/bad_converters.isle +0 -0
  809. /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/isle_examples/fail/bound_var_type_mismatch.isle +0 -0
  810. /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/isle_examples/fail/converter_extractor_constructor.isle +0 -0
  811. /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/isle_examples/fail/error1.isle +0 -0
  812. /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/isle_examples/fail/extra_parens.isle +0 -0
  813. /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/isle_examples/fail/impure_expression.isle +0 -0
  814. /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/isle_examples/fail/impure_rhs.isle +0 -0
  815. /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/isle_examples/fail/multi_internal_etor.isle +0 -0
  816. /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/isle_examples/fail/multi_prio.isle +0 -0
  817. /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/isle_examples/link/borrows.isle +0 -0
  818. /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/isle_examples/link/borrows_main.rs +0 -0
  819. /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/isle_examples/link/iflets.isle +0 -0
  820. /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/isle_examples/link/iflets_main.rs +0 -0
  821. /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/isle_examples/link/multi_constructor.isle +0 -0
  822. /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/isle_examples/link/multi_constructor_main.rs +0 -0
  823. /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/isle_examples/link/multi_extractor.isle +0 -0
  824. /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/isle_examples/link/multi_extractor_main.rs +0 -0
  825. /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/isle_examples/link/test.isle +0 -0
  826. /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/isle_examples/link/test_main.rs +0 -0
  827. /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/isle_examples/pass/bound_var.isle +0 -0
  828. /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/isle_examples/pass/construct_and_extract.isle +0 -0
  829. /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/isle_examples/pass/conversions.isle +0 -0
  830. /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/isle_examples/pass/conversions_extern.isle +0 -0
  831. /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/isle_examples/pass/let.isle +0 -0
  832. /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/isle_examples/pass/nodebug.isle +0 -0
  833. /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/isle_examples/pass/prio_trie_bug.isle +0 -0
  834. /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/isle_examples/pass/test2.isle +0 -0
  835. /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/isle_examples/pass/test3.isle +0 -0
  836. /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/isle_examples/pass/test4.isle +0 -0
  837. /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/isle_examples/pass/tutorial.isle +0 -0
  838. /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/isle_examples/run/iconst.isle +0 -0
  839. /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/isle_examples/run/iconst_main.rs +0 -0
  840. /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/isle_examples/run/let_shadowing.isle +0 -0
  841. /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/isle_examples/run/let_shadowing_main.rs +0 -0
  842. /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/src/ast.rs +0 -0
  843. /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/src/codegen.rs +0 -0
  844. /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/src/compile.rs +0 -0
  845. /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/src/disjointsets.rs +0 -0
  846. /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/src/error.rs +0 -0
  847. /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/src/files.rs +0 -0
  848. /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/src/lexer.rs +0 -0
  849. /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/src/lib.rs +0 -0
  850. /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/src/log.rs +0 -0
  851. /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/src/overlap.rs +0 -0
  852. /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/src/parser.rs +0 -0
  853. /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/src/sema.rs +0 -0
  854. /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/src/serialize.rs +0 -0
  855. /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/src/stablemapset.rs +0 -0
  856. /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/src/trie_again.rs +0 -0
  857. /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/tests/run_tests.rs +0 -0
  858. /data/ext/cargo-vendor/{cranelift-native-0.112.0 → cranelift-native-0.112.2}/LICENSE +0 -0
  859. /data/ext/cargo-vendor/{cranelift-native-0.112.0 → cranelift-native-0.112.2}/README.md +0 -0
  860. /data/ext/cargo-vendor/{cranelift-native-0.112.0 → cranelift-native-0.112.2}/src/lib.rs +0 -0
  861. /data/ext/cargo-vendor/{cranelift-native-0.112.0 → cranelift-native-0.112.2}/src/riscv.rs +0 -0
  862. /data/ext/cargo-vendor/{cranelift-wasm-0.112.0 → cranelift-wasm-0.112.2}/LICENSE +0 -0
  863. /data/ext/cargo-vendor/{cranelift-wasm-0.112.0 → cranelift-wasm-0.112.2}/README.md +0 -0
  864. /data/ext/cargo-vendor/{cranelift-wasm-0.112.0 → cranelift-wasm-0.112.2}/src/code_translator/bounds_checks.rs +0 -0
  865. /data/ext/cargo-vendor/{cranelift-wasm-0.112.0 → cranelift-wasm-0.112.2}/src/code_translator.rs +0 -0
  866. /data/ext/cargo-vendor/{cranelift-wasm-0.112.0 → cranelift-wasm-0.112.2}/src/environ/dummy.rs +0 -0
  867. /data/ext/cargo-vendor/{cranelift-wasm-0.112.0 → cranelift-wasm-0.112.2}/src/environ/mod.rs +0 -0
  868. /data/ext/cargo-vendor/{cranelift-wasm-0.112.0 → cranelift-wasm-0.112.2}/src/environ/spec.rs +0 -0
  869. /data/ext/cargo-vendor/{cranelift-wasm-0.112.0 → cranelift-wasm-0.112.2}/src/func_translator.rs +0 -0
  870. /data/ext/cargo-vendor/{cranelift-wasm-0.112.0 → cranelift-wasm-0.112.2}/src/heap.rs +0 -0
  871. /data/ext/cargo-vendor/{cranelift-wasm-0.112.0 → cranelift-wasm-0.112.2}/src/lib.rs +0 -0
  872. /data/ext/cargo-vendor/{cranelift-wasm-0.112.0 → cranelift-wasm-0.112.2}/src/module_translator.rs +0 -0
  873. /data/ext/cargo-vendor/{cranelift-wasm-0.112.0 → cranelift-wasm-0.112.2}/src/sections_translator.rs +0 -0
  874. /data/ext/cargo-vendor/{cranelift-wasm-0.112.0 → cranelift-wasm-0.112.2}/src/state.rs +0 -0
  875. /data/ext/cargo-vendor/{cranelift-wasm-0.112.0 → cranelift-wasm-0.112.2}/src/table.rs +0 -0
  876. /data/ext/cargo-vendor/{cranelift-wasm-0.112.0 → cranelift-wasm-0.112.2}/src/translation_utils.rs +0 -0
  877. /data/ext/cargo-vendor/{pulley-interpreter-0.1.0 → pulley-interpreter-0.1.2}/README.md +0 -0
  878. /data/ext/cargo-vendor/{pulley-interpreter-0.1.0 → pulley-interpreter-0.1.2}/src/decode.rs +0 -0
  879. /data/ext/cargo-vendor/{pulley-interpreter-0.1.0 → pulley-interpreter-0.1.2}/src/disas.rs +0 -0
  880. /data/ext/cargo-vendor/{pulley-interpreter-0.1.0 → pulley-interpreter-0.1.2}/src/encode.rs +0 -0
  881. /data/ext/cargo-vendor/{pulley-interpreter-0.1.0 → pulley-interpreter-0.1.2}/src/imms.rs +0 -0
  882. /data/ext/cargo-vendor/{pulley-interpreter-0.1.0 → pulley-interpreter-0.1.2}/src/interp.rs +0 -0
  883. /data/ext/cargo-vendor/{pulley-interpreter-0.1.0 → pulley-interpreter-0.1.2}/src/lib.rs +0 -0
  884. /data/ext/cargo-vendor/{pulley-interpreter-0.1.0 → pulley-interpreter-0.1.2}/src/op.rs +0 -0
  885. /data/ext/cargo-vendor/{pulley-interpreter-0.1.0 → pulley-interpreter-0.1.2}/src/opcode.rs +0 -0
  886. /data/ext/cargo-vendor/{pulley-interpreter-0.1.0 → pulley-interpreter-0.1.2}/src/regs.rs +0 -0
  887. /data/ext/cargo-vendor/{pulley-interpreter-0.1.0 → pulley-interpreter-0.1.2}/tests/all/disas.rs +0 -0
  888. /data/ext/cargo-vendor/{pulley-interpreter-0.1.0 → pulley-interpreter-0.1.2}/tests/all/interp.rs +0 -0
  889. /data/ext/cargo-vendor/{pulley-interpreter-0.1.0 → pulley-interpreter-0.1.2}/tests/all/main.rs +0 -0
  890. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/LICENSE +0 -0
  891. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/docs/reactor-refactor.md +0 -0
  892. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/blocking.rs +0 -0
  893. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/doc/mod.rs +0 -0
  894. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/doc/os.rs +0 -0
  895. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/canonicalize.rs +0 -0
  896. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/copy.rs +0 -0
  897. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/create_dir.rs +0 -0
  898. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/create_dir_all.rs +0 -0
  899. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/dir_builder.rs +0 -0
  900. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/file/tests.rs +0 -0
  901. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/hard_link.rs +0 -0
  902. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/metadata.rs +0 -0
  903. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/mocks.rs +0 -0
  904. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/mod.rs +0 -0
  905. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/open_options/mock_open_options.rs +0 -0
  906. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/open_options.rs +0 -0
  907. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/read.rs +0 -0
  908. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/read_link.rs +0 -0
  909. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/read_to_string.rs +0 -0
  910. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/remove_dir.rs +0 -0
  911. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/remove_dir_all.rs +0 -0
  912. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/remove_file.rs +0 -0
  913. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/rename.rs +0 -0
  914. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/set_permissions.rs +0 -0
  915. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/symlink.rs +0 -0
  916. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/symlink_dir.rs +0 -0
  917. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/symlink_file.rs +0 -0
  918. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/symlink_metadata.rs +0 -0
  919. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/write.rs +0 -0
  920. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/future/block_on.rs +0 -0
  921. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/future/mod.rs +0 -0
  922. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/future/poll_fn.rs +0 -0
  923. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/future/trace.rs +0 -0
  924. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/future/try_join.rs +0 -0
  925. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fuzz.rs +0 -0
  926. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/async_buf_read.rs +0 -0
  927. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/async_seek.rs +0 -0
  928. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/async_write.rs +0 -0
  929. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/interest.rs +0 -0
  930. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/join.rs +0 -0
  931. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/read_buf.rs +0 -0
  932. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/ready.rs +0 -0
  933. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/split.rs +0 -0
  934. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/stderr.rs +0 -0
  935. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/stdin.rs +0 -0
  936. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/stdio_common.rs +0 -0
  937. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/stdout.rs +0 -0
  938. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/util/async_buf_read_ext.rs +0 -0
  939. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/util/async_read_ext.rs +0 -0
  940. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/util/async_seek_ext.rs +0 -0
  941. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/util/async_write_ext.rs +0 -0
  942. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/util/buf_stream.rs +0 -0
  943. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/util/fill_buf.rs +0 -0
  944. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/util/flush.rs +0 -0
  945. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/util/shutdown.rs +0 -0
  946. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/util/vec_with_initialized.rs +0 -0
  947. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/util/write.rs +0 -0
  948. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/util/write_vectored.rs +0 -0
  949. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/loom/mod.rs +0 -0
  950. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/loom/std/atomic_u64.rs +0 -0
  951. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/loom/std/atomic_u64_as_mutex.rs +0 -0
  952. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/loom/std/atomic_u64_native.rs +0 -0
  953. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/loom/std/atomic_u64_static_const_new.rs +0 -0
  954. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/loom/std/atomic_u64_static_once_cell.rs +0 -0
  955. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/loom/std/barrier.rs +0 -0
  956. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/loom/std/mod.rs +0 -0
  957. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/loom/std/parking_lot.rs +0 -0
  958. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/loom/std/unsafe_cell.rs +0 -0
  959. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/macros/addr_of.rs +0 -0
  960. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/macros/cfg.rs +0 -0
  961. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/macros/join.rs +0 -0
  962. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/macros/loom.rs +0 -0
  963. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/macros/pin.rs +0 -0
  964. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/macros/support.rs +0 -0
  965. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/macros/thread_local.rs +0 -0
  966. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/macros/trace.rs +0 -0
  967. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/macros/try_join.rs +0 -0
  968. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/lookup_host.rs +0 -0
  969. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/mod.rs +0 -0
  970. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/tcp/mod.rs +0 -0
  971. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/tcp/socket.rs +0 -0
  972. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/tcp/split.rs +0 -0
  973. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/tcp/split_owned.rs +0 -0
  974. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/unix/datagram/mod.rs +0 -0
  975. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/unix/mod.rs +0 -0
  976. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/unix/pipe.rs +0 -0
  977. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/unix/socket.rs +0 -0
  978. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/unix/socketaddr.rs +0 -0
  979. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/unix/split.rs +0 -0
  980. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/unix/split_owned.rs +0 -0
  981. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/unix/stream.rs +0 -0
  982. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/unix/ucred.rs +0 -0
  983. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/windows/mod.rs +0 -0
  984. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/windows/named_pipe.rs +0 -0
  985. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/process/kill.rs +0 -0
  986. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/process/unix/mod.rs +0 -0
  987. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/process/unix/orphan.rs +0 -0
  988. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/process/unix/reap.rs +0 -0
  989. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/process/windows.rs +0 -0
  990. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/blocking/mod.rs +0 -0
  991. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/blocking/shutdown.rs +0 -0
  992. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/blocking/task.rs +0 -0
  993. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/context/blocking.rs +0 -0
  994. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/context/current.rs +0 -0
  995. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/context/runtime.rs +0 -0
  996. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/context/runtime_mt.rs +0 -0
  997. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/context/scoped.rs +0 -0
  998. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/context.rs +0 -0
  999. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/driver.rs +0 -0
  1000. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/dump.rs +0 -0
  1001. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/handle.rs +0 -0
  1002. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/id.rs +0 -0
  1003. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/io/driver/signal.rs +0 -0
  1004. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/io/driver.rs +0 -0
  1005. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/io/metrics.rs +0 -0
  1006. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/io/mod.rs +0 -0
  1007. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/io/registration_set.rs +0 -0
  1008. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/io/scheduled_io.rs +0 -0
  1009. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/metrics/batch.rs +0 -0
  1010. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/metrics/histogram.rs +0 -0
  1011. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/metrics/io.rs +0 -0
  1012. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/metrics/mock.rs +0 -0
  1013. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/metrics/mod.rs +0 -0
  1014. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/metrics/runtime.rs +0 -0
  1015. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/metrics/scheduler.rs +0 -0
  1016. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/metrics/worker.rs +0 -0
  1017. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/park.rs +0 -0
  1018. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/process.rs +0 -0
  1019. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/runtime.rs +0 -0
  1020. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/block_in_place.rs +0 -0
  1021. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/defer.rs +0 -0
  1022. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/inject/metrics.rs +0 -0
  1023. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/inject/pop.rs +0 -0
  1024. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/inject/rt_multi_thread.rs +0 -0
  1025. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/inject/shared.rs +0 -0
  1026. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/inject/synced.rs +0 -0
  1027. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/inject.rs +0 -0
  1028. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/lock.rs +0 -0
  1029. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread/counters.rs +0 -0
  1030. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread/handle/metrics.rs +0 -0
  1031. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread/handle/taskdump.rs +0 -0
  1032. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread/idle.rs +0 -0
  1033. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread/mod.rs +0 -0
  1034. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread/overflow.rs +0 -0
  1035. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread/park.rs +0 -0
  1036. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread/queue.rs +0 -0
  1037. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread/stats.rs +0 -0
  1038. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread/trace.rs +0 -0
  1039. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread/trace_mock.rs +0 -0
  1040. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread/worker/metrics.rs +0 -0
  1041. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread/worker/taskdump.rs +0 -0
  1042. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread/worker/taskdump_mock.rs +0 -0
  1043. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread_alt/counters.rs +0 -0
  1044. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread_alt/handle/metrics.rs +0 -0
  1045. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread_alt/handle/taskdump.rs +0 -0
  1046. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread_alt/idle.rs +0 -0
  1047. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread_alt/mod.rs +0 -0
  1048. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread_alt/overflow.rs +0 -0
  1049. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread_alt/park.rs +0 -0
  1050. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread_alt/queue.rs +0 -0
  1051. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread_alt/stats.rs +0 -0
  1052. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread_alt/trace.rs +0 -0
  1053. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread_alt/trace_mock.rs +0 -0
  1054. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread_alt/worker/metrics.rs +0 -0
  1055. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread_alt/worker/taskdump.rs +0 -0
  1056. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread_alt/worker/taskdump_mock.rs +0 -0
  1057. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/signal/mod.rs +0 -0
  1058. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/task/abort.rs +0 -0
  1059. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/task/list.rs +0 -0
  1060. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/task/raw.rs +0 -0
  1061. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/task/state.rs +0 -0
  1062. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/task/trace/mod.rs +0 -0
  1063. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/task/trace/symbol.rs +0 -0
  1064. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/task/trace/tree.rs +0 -0
  1065. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/task/waker.rs +0 -0
  1066. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/tests/inject.rs +0 -0
  1067. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/tests/loom_blocking.rs +0 -0
  1068. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/tests/loom_current_thread/yield_now.rs +0 -0
  1069. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/tests/loom_current_thread.rs +0 -0
  1070. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/tests/loom_join_set.rs +0 -0
  1071. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/tests/loom_local.rs +0 -0
  1072. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/tests/loom_multi_thread/queue.rs +0 -0
  1073. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/tests/loom_multi_thread/shutdown.rs +0 -0
  1074. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/tests/loom_multi_thread/yield_now.rs +0 -0
  1075. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/tests/loom_multi_thread_alt/queue.rs +0 -0
  1076. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/tests/loom_multi_thread_alt/shutdown.rs +0 -0
  1077. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/tests/loom_multi_thread_alt/yield_now.rs +0 -0
  1078. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/tests/loom_oneshot.rs +0 -0
  1079. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/tests/task_combinations.rs +0 -0
  1080. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/thread_id.rs +0 -0
  1081. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/time/entry.rs +0 -0
  1082. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/time/handle.rs +0 -0
  1083. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/time/source.rs +0 -0
  1084. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/time/tests/mod.rs +0 -0
  1085. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/time/wheel/level.rs +0 -0
  1086. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/time/wheel/mod.rs +0 -0
  1087. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/signal/ctrl_c.rs +0 -0
  1088. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/signal/mod.rs +0 -0
  1089. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/signal/registry.rs +0 -0
  1090. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/signal/reusable_box.rs +0 -0
  1091. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/signal/unix.rs +0 -0
  1092. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/signal/windows/stub.rs +0 -0
  1093. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/signal/windows/sys.rs +0 -0
  1094. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/signal/windows.rs +0 -0
  1095. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/barrier.rs +0 -0
  1096. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/mod.rs +0 -0
  1097. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/mpsc/block.rs +0 -0
  1098. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/mpsc/bounded.rs +0 -0
  1099. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/mpsc/list.rs +0 -0
  1100. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/mpsc/unbounded.rs +0 -0
  1101. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/mutex.rs +0 -0
  1102. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/once_cell.rs +0 -0
  1103. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/rwlock/owned_read_guard.rs +0 -0
  1104. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/rwlock/owned_write_guard.rs +0 -0
  1105. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/rwlock/owned_write_guard_mapped.rs +0 -0
  1106. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/rwlock/read_guard.rs +0 -0
  1107. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/rwlock/write_guard.rs +0 -0
  1108. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/rwlock/write_guard_mapped.rs +0 -0
  1109. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/rwlock.rs +0 -0
  1110. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/semaphore.rs +0 -0
  1111. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/task/atomic_waker.rs +0 -0
  1112. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/task/mod.rs +0 -0
  1113. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/tests/atomic_waker.rs +0 -0
  1114. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/tests/loom_atomic_waker.rs +0 -0
  1115. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/tests/loom_broadcast.rs +0 -0
  1116. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/tests/loom_list.rs +0 -0
  1117. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/tests/loom_mpsc.rs +0 -0
  1118. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/tests/loom_notify.rs +0 -0
  1119. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/tests/loom_oneshot.rs +0 -0
  1120. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/tests/loom_rwlock.rs +0 -0
  1121. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/tests/loom_semaphore_batch.rs +0 -0
  1122. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/tests/loom_watch.rs +0 -0
  1123. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/tests/mod.rs +0 -0
  1124. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/tests/notify.rs +0 -0
  1125. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/tests/semaphore_batch.rs +0 -0
  1126. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/watch.rs +0 -0
  1127. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/task/blocking.rs +0 -0
  1128. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/task/builder.rs +0 -0
  1129. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/task/mod.rs +0 -0
  1130. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/task/task_local.rs +0 -0
  1131. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/task/unconstrained.rs +0 -0
  1132. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/time/clock.rs +0 -0
  1133. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/time/error.rs +0 -0
  1134. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/time/instant.rs +0 -0
  1135. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/time/mod.rs +0 -0
  1136. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/time/timeout.rs +0 -0
  1137. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/atomic_cell.rs +0 -0
  1138. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/cacheline.rs +0 -0
  1139. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/error.rs +0 -0
  1140. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/idle_notified_set.rs +0 -0
  1141. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/linked_list.rs +0 -0
  1142. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/markers.rs +0 -0
  1143. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/memchr.rs +0 -0
  1144. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/metric_atomics.rs +0 -0
  1145. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/mod.rs +0 -0
  1146. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/once_cell.rs +0 -0
  1147. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/rand/rt.rs +0 -0
  1148. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/rand/rt_unstable.rs +0 -0
  1149. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/rand.rs +0 -0
  1150. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/rc_cell.rs +0 -0
  1151. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/sharded_list.rs +0 -0
  1152. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/trace.rs +0 -0
  1153. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/try_lock.rs +0 -0
  1154. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/wake.rs +0 -0
  1155. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/wake_list.rs +0 -0
  1156. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/_require_full.rs +0 -0
  1157. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/buffered.rs +0 -0
  1158. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/coop_budget.rs +0 -0
  1159. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/dump.rs +0 -0
  1160. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/duplex_stream.rs +0 -0
  1161. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/fs.rs +0 -0
  1162. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/fs_canonicalize_dir.rs +0 -0
  1163. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/fs_copy.rs +0 -0
  1164. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/fs_dir.rs +0 -0
  1165. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/fs_file.rs +0 -0
  1166. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/fs_link.rs +0 -0
  1167. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/fs_open_options.rs +0 -0
  1168. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/fs_open_options_windows.rs +0 -0
  1169. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/fs_remove_dir_all.rs +0 -0
  1170. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/fs_remove_file.rs +0 -0
  1171. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/fs_rename.rs +0 -0
  1172. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/fs_symlink_dir_windows.rs +0 -0
  1173. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/fs_symlink_file_windows.rs +0 -0
  1174. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/fs_try_exists.rs +0 -0
  1175. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_async_read.rs +0 -0
  1176. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_buf_reader.rs +0 -0
  1177. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_buf_writer.rs +0 -0
  1178. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_chain.rs +0 -0
  1179. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_copy_bidirectional.rs +0 -0
  1180. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_driver.rs +0 -0
  1181. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_driver_drop.rs +0 -0
  1182. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_fill_buf.rs +0 -0
  1183. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_join.rs +0 -0
  1184. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_lines.rs +0 -0
  1185. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_mem_stream.rs +0 -0
  1186. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_panic.rs +0 -0
  1187. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_poll_aio.rs +0 -0
  1188. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_read.rs +0 -0
  1189. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_read_buf.rs +0 -0
  1190. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_read_exact.rs +0 -0
  1191. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_read_line.rs +0 -0
  1192. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_read_to_end.rs +0 -0
  1193. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_read_to_string.rs +0 -0
  1194. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_read_until.rs +0 -0
  1195. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_repeat.rs +0 -0
  1196. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_sink.rs +0 -0
  1197. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_split.rs +0 -0
  1198. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_take.rs +0 -0
  1199. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_util_empty.rs +0 -0
  1200. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_write.rs +0 -0
  1201. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_write_all.rs +0 -0
  1202. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_write_buf.rs +0 -0
  1203. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_write_int.rs +0 -0
  1204. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/join_handle_panic.rs +0 -0
  1205. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/macros_pin.rs +0 -0
  1206. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/macros_rename_test.rs +0 -0
  1207. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/macros_select.rs +0 -0
  1208. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/macros_test.rs +0 -0
  1209. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/macros_try_join.rs +0 -0
  1210. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/net_bind_resource.rs +0 -0
  1211. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/net_lookup_host.rs +0 -0
  1212. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/net_named_pipe.rs +0 -0
  1213. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/net_panic.rs +0 -0
  1214. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/net_unix_pipe.rs +0 -0
  1215. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/no_rt.rs +0 -0
  1216. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/process_arg0.rs +0 -0
  1217. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/process_change_of_runtime.rs +0 -0
  1218. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/process_issue_2174.rs +0 -0
  1219. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/process_issue_42.rs +0 -0
  1220. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/process_kill_on_drop.rs +0 -0
  1221. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/process_raw_handle.rs +0 -0
  1222. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/process_smoke.rs +0 -0
  1223. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/rt_basic.rs +0 -0
  1224. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/rt_common.rs +0 -0
  1225. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/rt_handle.rs +0 -0
  1226. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/rt_handle_block_on.rs +0 -0
  1227. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/rt_metrics.rs +0 -0
  1228. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/rt_panic.rs +0 -0
  1229. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/rt_threaded.rs +0 -0
  1230. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/rt_threaded_alt.rs +0 -0
  1231. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/rt_time_start_paused.rs +0 -0
  1232. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/rt_unstable_metrics.rs +0 -0
  1233. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/signal_ctrl_c.rs +0 -0
  1234. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/signal_drop_recv.rs +0 -0
  1235. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/signal_drop_rt.rs +0 -0
  1236. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/signal_drop_signal.rs +0 -0
  1237. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/signal_multi_rt.rs +0 -0
  1238. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/signal_no_rt.rs +0 -0
  1239. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/signal_notify_both.rs +0 -0
  1240. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/signal_panic.rs +0 -0
  1241. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/signal_twice.rs +0 -0
  1242. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/signal_usr1.rs +0 -0
  1243. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/support/io_vec.rs +0 -0
  1244. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/support/leaked_buffers.rs +0 -0
  1245. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/support/mpsc_stream.rs +0 -0
  1246. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/support/panic.rs +0 -0
  1247. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/support/signal.rs +0 -0
  1248. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/sync_barrier.rs +0 -0
  1249. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/sync_broadcast.rs +0 -0
  1250. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/sync_errors.rs +0 -0
  1251. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/sync_mpsc_weak.rs +0 -0
  1252. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/sync_mutex.rs +0 -0
  1253. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/sync_mutex_owned.rs +0 -0
  1254. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/sync_notify.rs +0 -0
  1255. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/sync_once_cell.rs +0 -0
  1256. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/sync_oneshot.rs +0 -0
  1257. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/sync_panic.rs +0 -0
  1258. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/sync_rwlock.rs +0 -0
  1259. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/sync_semaphore.rs +0 -0
  1260. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/sync_semaphore_owned.rs +0 -0
  1261. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/sync_watch.rs +0 -0
  1262. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/task_blocking.rs +0 -0
  1263. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/task_builder.rs +0 -0
  1264. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/task_id.rs +0 -0
  1265. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/task_local.rs +0 -0
  1266. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/task_local_set.rs +0 -0
  1267. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/task_panic.rs +0 -0
  1268. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/task_yield_now.rs +0 -0
  1269. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/tcp_accept.rs +0 -0
  1270. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/tcp_connect.rs +0 -0
  1271. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/tcp_echo.rs +0 -0
  1272. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/tcp_into_split.rs +0 -0
  1273. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/tcp_into_std.rs +0 -0
  1274. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/tcp_peek.rs +0 -0
  1275. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/tcp_shutdown.rs +0 -0
  1276. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/tcp_socket.rs +0 -0
  1277. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/tcp_split.rs +0 -0
  1278. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/tcp_stream.rs +0 -0
  1279. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/test_clock.rs +0 -0
  1280. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/time_interval.rs +0 -0
  1281. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/time_panic.rs +0 -0
  1282. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/time_pause.rs +0 -0
  1283. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/time_rt.rs +0 -0
  1284. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/time_sleep.rs +0 -0
  1285. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/time_timeout.rs +0 -0
  1286. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/udp.rs +0 -0
  1287. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/uds_cred.rs +0 -0
  1288. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/uds_datagram.rs +0 -0
  1289. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/uds_socket.rs +0 -0
  1290. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/uds_split.rs +0 -0
  1291. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/unwindsafe.rs +0 -0
  1292. /data/ext/cargo-vendor/{wasi-common-25.0.0 → wasi-common-25.0.2}/LICENSE +0 -0
  1293. /data/ext/cargo-vendor/{wasi-common-25.0.0 → wasi-common-25.0.2}/README.md +0 -0
  1294. /data/ext/cargo-vendor/{wasi-common-25.0.0 → wasi-common-25.0.2}/src/clocks.rs +0 -0
  1295. /data/ext/cargo-vendor/{wasi-common-25.0.0 → wasi-common-25.0.2}/src/ctx.rs +0 -0
  1296. /data/ext/cargo-vendor/{wasi-common-25.0.0 → wasi-common-25.0.2}/src/dir.rs +0 -0
  1297. /data/ext/cargo-vendor/{wasi-common-25.0.0 → wasi-common-25.0.2}/src/error.rs +0 -0
  1298. /data/ext/cargo-vendor/{wasi-common-25.0.0 → wasi-common-25.0.2}/src/file.rs +0 -0
  1299. /data/ext/cargo-vendor/{wasi-common-25.0.0 → wasi-common-25.0.2}/src/lib.rs +0 -0
  1300. /data/ext/cargo-vendor/{wasi-common-25.0.0 → wasi-common-25.0.2}/src/pipe.rs +0 -0
  1301. /data/ext/cargo-vendor/{wasi-common-25.0.0 → wasi-common-25.0.2}/src/random.rs +0 -0
  1302. /data/ext/cargo-vendor/{wasi-common-25.0.0 → wasi-common-25.0.2}/src/sched/subscription.rs +0 -0
  1303. /data/ext/cargo-vendor/{wasi-common-25.0.0 → wasi-common-25.0.2}/src/sched.rs +0 -0
  1304. /data/ext/cargo-vendor/{wasi-common-25.0.0 → wasi-common-25.0.2}/src/snapshots/mod.rs +0 -0
  1305. /data/ext/cargo-vendor/{wasi-common-25.0.0 → wasi-common-25.0.2}/src/snapshots/preview_0.rs +0 -0
  1306. /data/ext/cargo-vendor/{wasi-common-25.0.0 → wasi-common-25.0.2}/src/snapshots/preview_1/error.rs +0 -0
  1307. /data/ext/cargo-vendor/{wasi-common-25.0.0 → wasi-common-25.0.2}/src/snapshots/preview_1.rs +0 -0
  1308. /data/ext/cargo-vendor/{wasi-common-25.0.0 → wasi-common-25.0.2}/src/string_array.rs +0 -0
  1309. /data/ext/cargo-vendor/{wasi-common-25.0.0 → wasi-common-25.0.2}/src/sync/clocks.rs +0 -0
  1310. /data/ext/cargo-vendor/{wasi-common-25.0.0 → wasi-common-25.0.2}/src/sync/dir.rs +0 -0
  1311. /data/ext/cargo-vendor/{wasi-common-25.0.0 → wasi-common-25.0.2}/src/sync/file.rs +0 -0
  1312. /data/ext/cargo-vendor/{wasi-common-25.0.0 → wasi-common-25.0.2}/src/sync/mod.rs +0 -0
  1313. /data/ext/cargo-vendor/{wasi-common-25.0.0 → wasi-common-25.0.2}/src/sync/net.rs +0 -0
  1314. /data/ext/cargo-vendor/{wasi-common-25.0.0 → wasi-common-25.0.2}/src/sync/sched/unix.rs +0 -0
  1315. /data/ext/cargo-vendor/{wasi-common-25.0.0 → wasi-common-25.0.2}/src/sync/sched/windows.rs +0 -0
  1316. /data/ext/cargo-vendor/{wasi-common-25.0.0 → wasi-common-25.0.2}/src/sync/sched.rs +0 -0
  1317. /data/ext/cargo-vendor/{wasi-common-25.0.0 → wasi-common-25.0.2}/src/sync/stdio.rs +0 -0
  1318. /data/ext/cargo-vendor/{wasi-common-25.0.0 → wasi-common-25.0.2}/src/table.rs +0 -0
  1319. /data/ext/cargo-vendor/{wasi-common-25.0.0 → wasi-common-25.0.2}/src/tokio/dir.rs +0 -0
  1320. /data/ext/cargo-vendor/{wasi-common-25.0.0 → wasi-common-25.0.2}/src/tokio/file.rs +0 -0
  1321. /data/ext/cargo-vendor/{wasi-common-25.0.0 → wasi-common-25.0.2}/src/tokio/mod.rs +0 -0
  1322. /data/ext/cargo-vendor/{wasi-common-25.0.0 → wasi-common-25.0.2}/src/tokio/net.rs +0 -0
  1323. /data/ext/cargo-vendor/{wasi-common-25.0.0 → wasi-common-25.0.2}/src/tokio/sched/unix.rs +0 -0
  1324. /data/ext/cargo-vendor/{wasi-common-25.0.0 → wasi-common-25.0.2}/src/tokio/sched/windows.rs +0 -0
  1325. /data/ext/cargo-vendor/{wasi-common-25.0.0 → wasi-common-25.0.2}/src/tokio/sched.rs +0 -0
  1326. /data/ext/cargo-vendor/{wasi-common-25.0.0 → wasi-common-25.0.2}/src/tokio/stdio.rs +0 -0
  1327. /data/ext/cargo-vendor/{wasi-common-25.0.0 → wasi-common-25.0.2}/tests/all/async_.rs +0 -0
  1328. /data/ext/cargo-vendor/{wasi-common-25.0.0 → wasi-common-25.0.2}/tests/all/main.rs +0 -0
  1329. /data/ext/cargo-vendor/{wasi-common-25.0.0 → wasi-common-25.0.2}/tests/all/sync.rs +0 -0
  1330. /data/ext/cargo-vendor/{wasi-common-25.0.0 → wasi-common-25.0.2}/witx/preview0/typenames.witx +0 -0
  1331. /data/ext/cargo-vendor/{wasi-common-25.0.0 → wasi-common-25.0.2}/witx/preview0/wasi_unstable.witx +0 -0
  1332. /data/ext/cargo-vendor/{wasi-common-25.0.0 → wasi-common-25.0.2}/witx/preview1/typenames.witx +0 -0
  1333. /data/ext/cargo-vendor/{wasi-common-25.0.0 → wasi-common-25.0.2}/witx/preview1/wasi_snapshot_preview1.witx +0 -0
  1334. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/LICENSE +0 -0
  1335. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/README.md +0 -0
  1336. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/build.rs +0 -0
  1337. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/proptest-regressions/runtime/vm/instance/allocator/pooling/memory_pool.txt +0 -0
  1338. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/compile/code_builder.rs +0 -0
  1339. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/compile/runtime.rs +0 -0
  1340. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/compile.rs +0 -0
  1341. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/config.rs +0 -0
  1342. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/engine/serialization.rs +0 -0
  1343. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/engine.rs +0 -0
  1344. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/lib.rs +0 -0
  1345. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/profiling_agent/jitdump.rs +0 -0
  1346. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/profiling_agent/perfmap.rs +0 -0
  1347. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/profiling_agent/vtune.rs +0 -0
  1348. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/profiling_agent.rs +0 -0
  1349. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/code.rs +0 -0
  1350. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/code_memory.rs +0 -0
  1351. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/component/bindgen_examples/_0_hello_world.rs +0 -0
  1352. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/component/bindgen_examples/_1_world_imports.rs +0 -0
  1353. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/component/bindgen_examples/_2_world_exports.rs +0 -0
  1354. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/component/bindgen_examples/_3_interface_imports.rs +0 -0
  1355. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/component/bindgen_examples/_4_imported_resources.rs +0 -0
  1356. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/component/bindgen_examples/_5_all_world_export_kinds.rs +0 -0
  1357. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/component/bindgen_examples/_6_exported_resources.rs +0 -0
  1358. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/component/bindgen_examples/mod.rs +0 -0
  1359. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/component/component.rs +0 -0
  1360. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/component/func/host.rs +0 -0
  1361. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/component/func/options.rs +0 -0
  1362. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/component/func/typed.rs +0 -0
  1363. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/component/func.rs +0 -0
  1364. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/component/instance.rs +0 -0
  1365. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/component/linker.rs +0 -0
  1366. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/component/matching.rs +0 -0
  1367. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/component/mod.rs +0 -0
  1368. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/component/resource_table.rs +0 -0
  1369. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/component/resources.rs +0 -0
  1370. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/component/storage.rs +0 -0
  1371. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/component/store.rs +0 -0
  1372. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/component/types.rs +0 -0
  1373. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/component/values.rs +0 -0
  1374. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/coredump.rs +0 -0
  1375. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/debug.rs +0 -0
  1376. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/externals/global.rs +0 -0
  1377. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/externals/table.rs +0 -0
  1378. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/externals.rs +0 -0
  1379. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/func/typed.rs +0 -0
  1380. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/func.rs +0 -0
  1381. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/gc/disabled/anyref.rs +0 -0
  1382. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/gc/disabled/arrayref.rs +0 -0
  1383. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/gc/disabled/externref.rs +0 -0
  1384. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/gc/disabled/i31.rs +0 -0
  1385. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/gc/disabled/rooting.rs +0 -0
  1386. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/gc/disabled/structref.rs +0 -0
  1387. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/gc/disabled.rs +0 -0
  1388. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/gc/enabled/anyref.rs +0 -0
  1389. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/gc/enabled/arrayref.rs +0 -0
  1390. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/gc/enabled/externref.rs +0 -0
  1391. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/gc/enabled/i31.rs +0 -0
  1392. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/gc/enabled/rooting.rs +0 -0
  1393. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/gc/enabled/structref.rs +0 -0
  1394. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/gc/enabled.rs +0 -0
  1395. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/gc/noextern.rs +0 -0
  1396. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/gc.rs +0 -0
  1397. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/instance.rs +0 -0
  1398. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/instantiate.rs +0 -0
  1399. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/limits.rs +0 -0
  1400. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/linker.rs +0 -0
  1401. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/memory.rs +0 -0
  1402. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/module/registry.rs +0 -0
  1403. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/module.rs +0 -0
  1404. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/profiling.rs +0 -0
  1405. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/resources.rs +0 -0
  1406. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/signatures.rs +0 -0
  1407. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/stack.rs +0 -0
  1408. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/store/context.rs +0 -0
  1409. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/store/data.rs +0 -0
  1410. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/store/func_refs.rs +0 -0
  1411. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/store.rs +0 -0
  1412. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/trampoline/func.rs +0 -0
  1413. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/trampoline/global.rs +0 -0
  1414. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/trampoline/memory.rs +0 -0
  1415. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/trampoline/table.rs +0 -0
  1416. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/trampoline.rs +0 -0
  1417. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/trap.rs +0 -0
  1418. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/types/matching.rs +0 -0
  1419. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/types.rs +0 -0
  1420. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/uninhabited.rs +0 -0
  1421. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/unix.rs +0 -0
  1422. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/v128.rs +0 -0
  1423. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/values.rs +0 -0
  1424. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/arch/aarch64.rs +0 -0
  1425. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/arch/mod.rs +0 -0
  1426. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/arch/riscv64.rs +0 -0
  1427. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/arch/s390x.S +0 -0
  1428. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/arch/s390x.rs +0 -0
  1429. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/arch/unsupported.rs +0 -0
  1430. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/arch/x86_64.rs +0 -0
  1431. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/async_yield.rs +0 -0
  1432. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/component/libcalls.rs +0 -0
  1433. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/component/resources.rs +0 -0
  1434. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/component.rs +0 -0
  1435. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/const_expr.rs +0 -0
  1436. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/cow.rs +0 -0
  1437. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/debug_builtins.rs +0 -0
  1438. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/export.rs +0 -0
  1439. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/gc/disabled.rs +0 -0
  1440. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/gc/enabled/arrayref.rs +0 -0
  1441. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/gc/enabled/data.rs +0 -0
  1442. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/gc/enabled/drc.rs +0 -0
  1443. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/gc/enabled/externref.rs +0 -0
  1444. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/gc/enabled/free_list.rs +0 -0
  1445. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/gc/enabled/structref.rs +0 -0
  1446. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/gc/enabled.rs +0 -0
  1447. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/gc/gc_ref.rs +0 -0
  1448. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/gc/gc_runtime.rs +0 -0
  1449. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/gc/host_data.rs +0 -0
  1450. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/gc/i31.rs +0 -0
  1451. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/gc.rs +0 -0
  1452. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/helpers.c +0 -0
  1453. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/imports.rs +0 -0
  1454. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/instance/allocator/on_demand.rs +0 -0
  1455. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/instance/allocator/pooling/decommit_queue.rs +0 -0
  1456. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/instance/allocator/pooling/gc_heap_pool.rs +0 -0
  1457. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/instance/allocator/pooling/generic_stack_pool.rs +0 -0
  1458. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/instance/allocator/pooling/index_allocator.rs +0 -0
  1459. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/instance/allocator/pooling/memory_pool.rs +0 -0
  1460. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/instance/allocator/pooling/table_pool.rs +0 -0
  1461. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/instance/allocator/pooling/unix_stack_pool.rs +0 -0
  1462. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/instance/allocator/pooling.rs +0 -0
  1463. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/instance/allocator.rs +0 -0
  1464. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/instance.rs +0 -0
  1465. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/libcalls.rs +0 -0
  1466. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/memory.rs +0 -0
  1467. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/mmap.rs +0 -0
  1468. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/mmap_vec.rs +0 -0
  1469. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/module_id.rs +0 -0
  1470. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/mpk/disabled.rs +0 -0
  1471. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/mpk/enabled.rs +0 -0
  1472. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/mpk/mod.rs +0 -0
  1473. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/mpk/pkru.rs +0 -0
  1474. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/mpk/sys.rs +0 -0
  1475. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/send_sync_ptr.rs +0 -0
  1476. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/store_box.rs +0 -0
  1477. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/sys/custom/capi.rs +0 -0
  1478. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/sys/custom/mmap.rs +0 -0
  1479. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/sys/custom/mod.rs +0 -0
  1480. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/sys/custom/traphandlers.rs +0 -0
  1481. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/sys/custom/unwind.rs +0 -0
  1482. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/sys/custom/vm.rs +0 -0
  1483. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/sys/miri/mmap.rs +0 -0
  1484. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/sys/miri/mod.rs +0 -0
  1485. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/sys/miri/traphandlers.rs +0 -0
  1486. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/sys/miri/unwind.rs +0 -0
  1487. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/sys/miri/vm.rs +0 -0
  1488. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/sys/mod.rs +0 -0
  1489. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/sys/unix/machports.rs +0 -0
  1490. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/sys/unix/macos_traphandlers.rs +0 -0
  1491. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/sys/unix/mmap.rs +0 -0
  1492. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/sys/unix/mod.rs +0 -0
  1493. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/sys/unix/signals.rs +0 -0
  1494. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/sys/unix/unwind.rs +0 -0
  1495. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/sys/unix/vm.rs +0 -0
  1496. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/sys/windows/mmap.rs +0 -0
  1497. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/sys/windows/mod.rs +0 -0
  1498. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/sys/windows/traphandlers.rs +0 -0
  1499. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/sys/windows/unwind.rs +0 -0
  1500. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/sys/windows/vm.rs +0 -0
  1501. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/table.rs +0 -0
  1502. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/threads/mod.rs +0 -0
  1503. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/threads/parking_spot.rs +0 -0
  1504. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/threads/shared_memory.rs +0 -0
  1505. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/threads/shared_memory_disabled.rs +0 -0
  1506. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/traphandlers/coredump_disabled.rs +0 -0
  1507. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/traphandlers/coredump_enabled.rs +0 -0
  1508. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/traphandlers.rs +0 -0
  1509. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/vmcontext/vm_host_func_context.rs +0 -0
  1510. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/vmcontext.rs +0 -0
  1511. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm.rs +0 -0
  1512. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/windows.rs +0 -0
  1513. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime.rs +0 -0
  1514. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/sync_nostd.rs +0 -0
  1515. /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/sync_std.rs +0 -0
  1516. /data/ext/cargo-vendor/{wasmtime-asm-macros-25.0.0 → wasmtime-asm-macros-25.0.2}/src/lib.rs +0 -0
  1517. /data/ext/cargo-vendor/{wasmtime-cache-25.0.0 → wasmtime-cache-25.0.2}/LICENSE +0 -0
  1518. /data/ext/cargo-vendor/{wasmtime-cache-25.0.0 → wasmtime-cache-25.0.2}/build.rs +0 -0
  1519. /data/ext/cargo-vendor/{wasmtime-cache-25.0.0 → wasmtime-cache-25.0.2}/src/config/tests.rs +0 -0
  1520. /data/ext/cargo-vendor/{wasmtime-cache-25.0.0 → wasmtime-cache-25.0.2}/src/config.rs +0 -0
  1521. /data/ext/cargo-vendor/{wasmtime-cache-25.0.0 → wasmtime-cache-25.0.2}/src/lib.rs +0 -0
  1522. /data/ext/cargo-vendor/{wasmtime-cache-25.0.0 → wasmtime-cache-25.0.2}/src/tests.rs +0 -0
  1523. /data/ext/cargo-vendor/{wasmtime-cache-25.0.0 → wasmtime-cache-25.0.2}/src/worker/tests/system_time_stub.rs +0 -0
  1524. /data/ext/cargo-vendor/{wasmtime-cache-25.0.0 → wasmtime-cache-25.0.2}/src/worker/tests.rs +0 -0
  1525. /data/ext/cargo-vendor/{wasmtime-cache-25.0.0 → wasmtime-cache-25.0.2}/src/worker.rs +0 -0
  1526. /data/ext/cargo-vendor/{wasmtime-cache-25.0.0 → wasmtime-cache-25.0.2}/tests/cache_write_default_config.rs +0 -0
  1527. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/build.rs +0 -0
  1528. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/src/bindgen.rs +0 -0
  1529. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/src/component.rs +0 -0
  1530. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/src/lib.rs +0 -0
  1531. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/codegen/char.wit +0 -0
  1532. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/codegen/conventions.wit +0 -0
  1533. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/codegen/dead-code.wit +0 -0
  1534. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/codegen/direct-import.wit +0 -0
  1535. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/codegen/empty.wit +0 -0
  1536. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/codegen/flags.wit +0 -0
  1537. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/codegen/floats.wit +0 -0
  1538. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/codegen/function-new.wit +0 -0
  1539. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/codegen/integers.wit +0 -0
  1540. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/codegen/lists.wit +0 -0
  1541. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/codegen/many-arguments.wit +0 -0
  1542. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/codegen/multi-return.wit +0 -0
  1543. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/codegen/multiversion/deps/v1/root.wit +0 -0
  1544. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/codegen/multiversion/deps/v2/root.wit +0 -0
  1545. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/codegen/multiversion/root.wit +0 -0
  1546. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/codegen/records.wit +0 -0
  1547. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/codegen/rename.wit +0 -0
  1548. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/codegen/resources-export.wit +0 -0
  1549. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/codegen/resources-import.wit +0 -0
  1550. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/codegen/share-types.wit +0 -0
  1551. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/codegen/simple-functions.wit +0 -0
  1552. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/codegen/simple-lists.wit +0 -0
  1553. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/codegen/simple-wasi.wit +0 -0
  1554. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/codegen/small-anonymous.wit +0 -0
  1555. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/codegen/smoke-default.wit +0 -0
  1556. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/codegen/smoke-export.wit +0 -0
  1557. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/codegen/smoke.wit +0 -0
  1558. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/codegen/strings.wit +0 -0
  1559. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/codegen/unversioned-foo.wit +0 -0
  1560. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/codegen/use-paths.wit +0 -0
  1561. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/codegen/variants.wit +0 -0
  1562. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/codegen/wat.wit +0 -0
  1563. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/codegen/worlds-with-types.wit +0 -0
  1564. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/codegen.rs +0 -0
  1565. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/codegen_no_std.rs +0 -0
  1566. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/char.rs +0 -0
  1567. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/char_async.rs +0 -0
  1568. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/char_tracing_async.rs +0 -0
  1569. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/conventions.rs +0 -0
  1570. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/conventions_async.rs +0 -0
  1571. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/conventions_tracing_async.rs +0 -0
  1572. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/dead-code.rs +0 -0
  1573. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/dead-code_async.rs +0 -0
  1574. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/dead-code_tracing_async.rs +0 -0
  1575. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/direct-import.rs +0 -0
  1576. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/direct-import_async.rs +0 -0
  1577. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/direct-import_tracing_async.rs +0 -0
  1578. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/empty.rs +0 -0
  1579. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/empty_async.rs +0 -0
  1580. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/empty_tracing_async.rs +0 -0
  1581. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/flags.rs +0 -0
  1582. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/flags_async.rs +0 -0
  1583. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/flags_tracing_async.rs +0 -0
  1584. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/floats.rs +0 -0
  1585. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/floats_async.rs +0 -0
  1586. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/floats_tracing_async.rs +0 -0
  1587. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/function-new.rs +0 -0
  1588. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/function-new_async.rs +0 -0
  1589. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/function-new_tracing_async.rs +0 -0
  1590. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/integers.rs +0 -0
  1591. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/integers_async.rs +0 -0
  1592. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/integers_tracing_async.rs +0 -0
  1593. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/lists.rs +0 -0
  1594. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/lists_async.rs +0 -0
  1595. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/lists_tracing_async.rs +0 -0
  1596. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/many-arguments.rs +0 -0
  1597. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/many-arguments_async.rs +0 -0
  1598. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/many-arguments_tracing_async.rs +0 -0
  1599. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/multi-return.rs +0 -0
  1600. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/multi-return_async.rs +0 -0
  1601. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/multi-return_tracing_async.rs +0 -0
  1602. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/multiversion.rs +0 -0
  1603. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/multiversion_async.rs +0 -0
  1604. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/multiversion_tracing_async.rs +0 -0
  1605. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/records.rs +0 -0
  1606. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/records_async.rs +0 -0
  1607. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/records_tracing_async.rs +0 -0
  1608. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/rename.rs +0 -0
  1609. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/rename_async.rs +0 -0
  1610. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/rename_tracing_async.rs +0 -0
  1611. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/resources-export.rs +0 -0
  1612. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/resources-export_async.rs +0 -0
  1613. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/resources-export_tracing_async.rs +0 -0
  1614. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/resources-import.rs +0 -0
  1615. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/resources-import_async.rs +0 -0
  1616. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/resources-import_tracing_async.rs +0 -0
  1617. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/share-types.rs +0 -0
  1618. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/share-types_async.rs +0 -0
  1619. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/share-types_tracing_async.rs +0 -0
  1620. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/simple-functions.rs +0 -0
  1621. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/simple-functions_async.rs +0 -0
  1622. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/simple-functions_tracing_async.rs +0 -0
  1623. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/simple-lists.rs +0 -0
  1624. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/simple-lists_async.rs +0 -0
  1625. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/simple-lists_tracing_async.rs +0 -0
  1626. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/simple-wasi.rs +0 -0
  1627. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/simple-wasi_async.rs +0 -0
  1628. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/simple-wasi_tracing_async.rs +0 -0
  1629. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/small-anonymous.rs +0 -0
  1630. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/small-anonymous_async.rs +0 -0
  1631. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/small-anonymous_tracing_async.rs +0 -0
  1632. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/smoke-default.rs +0 -0
  1633. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/smoke-default_async.rs +0 -0
  1634. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/smoke-default_tracing_async.rs +0 -0
  1635. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/smoke-export.rs +0 -0
  1636. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/smoke-export_async.rs +0 -0
  1637. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/smoke-export_tracing_async.rs +0 -0
  1638. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/smoke.rs +0 -0
  1639. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/smoke_async.rs +0 -0
  1640. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/smoke_tracing_async.rs +0 -0
  1641. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/strings.rs +0 -0
  1642. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/strings_async.rs +0 -0
  1643. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/strings_tracing_async.rs +0 -0
  1644. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/unversioned-foo.rs +0 -0
  1645. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/unversioned-foo_async.rs +0 -0
  1646. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/unversioned-foo_tracing_async.rs +0 -0
  1647. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/use-paths.rs +0 -0
  1648. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/use-paths_async.rs +0 -0
  1649. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/use-paths_tracing_async.rs +0 -0
  1650. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/variants.rs +0 -0
  1651. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/variants_async.rs +0 -0
  1652. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/variants_tracing_async.rs +0 -0
  1653. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/wat.rs +0 -0
  1654. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/wat_async.rs +0 -0
  1655. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/wat_tracing_async.rs +0 -0
  1656. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/worlds-with-types.rs +0 -0
  1657. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/worlds-with-types_async.rs +0 -0
  1658. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/worlds-with-types_tracing_async.rs +0 -0
  1659. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded.rs +0 -0
  1660. /data/ext/cargo-vendor/{wasmtime-component-util-25.0.0 → wasmtime-component-util-25.0.2}/src/lib.rs +0 -0
  1661. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.0 → wasmtime-cranelift-25.0.2}/LICENSE +0 -0
  1662. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.0 → wasmtime-cranelift-25.0.2}/SECURITY.md +0 -0
  1663. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.0 → wasmtime-cranelift-25.0.2}/src/builder.rs +0 -0
  1664. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.0 → wasmtime-cranelift-25.0.2}/src/compiled_function.rs +0 -0
  1665. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.0 → wasmtime-cranelift-25.0.2}/src/compiler/component.rs +0 -0
  1666. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.0 → wasmtime-cranelift-25.0.2}/src/compiler.rs +0 -0
  1667. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.0 → wasmtime-cranelift-25.0.2}/src/debug/gc.rs +0 -0
  1668. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.0 → wasmtime-cranelift-25.0.2}/src/debug/transform/address_transform.rs +0 -0
  1669. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.0 → wasmtime-cranelift-25.0.2}/src/debug/transform/attr.rs +0 -0
  1670. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.0 → wasmtime-cranelift-25.0.2}/src/debug/transform/expression.rs +0 -0
  1671. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.0 → wasmtime-cranelift-25.0.2}/src/debug/transform/line_program.rs +0 -0
  1672. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.0 → wasmtime-cranelift-25.0.2}/src/debug/transform/mod.rs +0 -0
  1673. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.0 → wasmtime-cranelift-25.0.2}/src/debug/transform/range_info_builder.rs +0 -0
  1674. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.0 → wasmtime-cranelift-25.0.2}/src/debug/transform/refs.rs +0 -0
  1675. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.0 → wasmtime-cranelift-25.0.2}/src/debug/transform/simulate.rs +0 -0
  1676. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.0 → wasmtime-cranelift-25.0.2}/src/debug/transform/unit.rs +0 -0
  1677. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.0 → wasmtime-cranelift-25.0.2}/src/debug/transform/utils.rs +0 -0
  1678. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.0 → wasmtime-cranelift-25.0.2}/src/debug/write_debuginfo.rs +0 -0
  1679. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.0 → wasmtime-cranelift-25.0.2}/src/debug.rs +0 -0
  1680. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.0 → wasmtime-cranelift-25.0.2}/src/func_environ.rs +0 -0
  1681. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.0 → wasmtime-cranelift-25.0.2}/src/gc/disabled.rs +0 -0
  1682. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.0 → wasmtime-cranelift-25.0.2}/src/gc/enabled.rs +0 -0
  1683. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.0 → wasmtime-cranelift-25.0.2}/src/gc.rs +0 -0
  1684. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.0 → wasmtime-cranelift-25.0.2}/src/isa_builder.rs +0 -0
  1685. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.0 → wasmtime-cranelift-25.0.2}/src/lib.rs +0 -0
  1686. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.0 → wasmtime-cranelift-25.0.2}/src/obj.rs +0 -0
  1687. /data/ext/cargo-vendor/{wasmtime-environ-25.0.0 → wasmtime-environ-25.0.2}/LICENSE +0 -0
  1688. /data/ext/cargo-vendor/{wasmtime-environ-25.0.0 → wasmtime-environ-25.0.2}/examples/factc.rs +0 -0
  1689. /data/ext/cargo-vendor/{wasmtime-environ-25.0.0 → wasmtime-environ-25.0.2}/src/address_map.rs +0 -0
  1690. /data/ext/cargo-vendor/{wasmtime-environ-25.0.0 → wasmtime-environ-25.0.2}/src/builtin.rs +0 -0
  1691. /data/ext/cargo-vendor/{wasmtime-environ-25.0.0 → wasmtime-environ-25.0.2}/src/compile/address_map.rs +0 -0
  1692. /data/ext/cargo-vendor/{wasmtime-environ-25.0.0 → wasmtime-environ-25.0.2}/src/compile/mod.rs +0 -0
  1693. /data/ext/cargo-vendor/{wasmtime-environ-25.0.0 → wasmtime-environ-25.0.2}/src/compile/module_artifacts.rs +0 -0
  1694. /data/ext/cargo-vendor/{wasmtime-environ-25.0.0 → wasmtime-environ-25.0.2}/src/compile/module_types.rs +0 -0
  1695. /data/ext/cargo-vendor/{wasmtime-environ-25.0.0 → wasmtime-environ-25.0.2}/src/compile/trap_encoding.rs +0 -0
  1696. /data/ext/cargo-vendor/{wasmtime-environ-25.0.0 → wasmtime-environ-25.0.2}/src/component/artifacts.rs +0 -0
  1697. /data/ext/cargo-vendor/{wasmtime-environ-25.0.0 → wasmtime-environ-25.0.2}/src/component/compiler.rs +0 -0
  1698. /data/ext/cargo-vendor/{wasmtime-environ-25.0.0 → wasmtime-environ-25.0.2}/src/component/dfg.rs +0 -0
  1699. /data/ext/cargo-vendor/{wasmtime-environ-25.0.0 → wasmtime-environ-25.0.2}/src/component/info.rs +0 -0
  1700. /data/ext/cargo-vendor/{wasmtime-environ-25.0.0 → wasmtime-environ-25.0.2}/src/component/names.rs +0 -0
  1701. /data/ext/cargo-vendor/{wasmtime-environ-25.0.0 → wasmtime-environ-25.0.2}/src/component/translate/adapt.rs +0 -0
  1702. /data/ext/cargo-vendor/{wasmtime-environ-25.0.0 → wasmtime-environ-25.0.2}/src/component/translate/inline.rs +0 -0
  1703. /data/ext/cargo-vendor/{wasmtime-environ-25.0.0 → wasmtime-environ-25.0.2}/src/component/translate.rs +0 -0
  1704. /data/ext/cargo-vendor/{wasmtime-environ-25.0.0 → wasmtime-environ-25.0.2}/src/component/types.rs +0 -0
  1705. /data/ext/cargo-vendor/{wasmtime-environ-25.0.0 → wasmtime-environ-25.0.2}/src/component/types_builder/resources.rs +0 -0
  1706. /data/ext/cargo-vendor/{wasmtime-environ-25.0.0 → wasmtime-environ-25.0.2}/src/component/types_builder.rs +0 -0
  1707. /data/ext/cargo-vendor/{wasmtime-environ-25.0.0 → wasmtime-environ-25.0.2}/src/component/vmcomponent_offsets.rs +0 -0
  1708. /data/ext/cargo-vendor/{wasmtime-environ-25.0.0 → wasmtime-environ-25.0.2}/src/component.rs +0 -0
  1709. /data/ext/cargo-vendor/{wasmtime-environ-25.0.0 → wasmtime-environ-25.0.2}/src/demangling.rs +0 -0
  1710. /data/ext/cargo-vendor/{wasmtime-environ-25.0.0 → wasmtime-environ-25.0.2}/src/fact/core_types.rs +0 -0
  1711. /data/ext/cargo-vendor/{wasmtime-environ-25.0.0 → wasmtime-environ-25.0.2}/src/fact/signature.rs +0 -0
  1712. /data/ext/cargo-vendor/{wasmtime-environ-25.0.0 → wasmtime-environ-25.0.2}/src/fact/trampoline.rs +0 -0
  1713. /data/ext/cargo-vendor/{wasmtime-environ-25.0.0 → wasmtime-environ-25.0.2}/src/fact/transcode.rs +0 -0
  1714. /data/ext/cargo-vendor/{wasmtime-environ-25.0.0 → wasmtime-environ-25.0.2}/src/fact/traps.rs +0 -0
  1715. /data/ext/cargo-vendor/{wasmtime-environ-25.0.0 → wasmtime-environ-25.0.2}/src/fact.rs +0 -0
  1716. /data/ext/cargo-vendor/{wasmtime-environ-25.0.0 → wasmtime-environ-25.0.2}/src/gc.rs +0 -0
  1717. /data/ext/cargo-vendor/{wasmtime-environ-25.0.0 → wasmtime-environ-25.0.2}/src/lib.rs +0 -0
  1718. /data/ext/cargo-vendor/{wasmtime-environ-25.0.0 → wasmtime-environ-25.0.2}/src/module.rs +0 -0
  1719. /data/ext/cargo-vendor/{wasmtime-environ-25.0.0 → wasmtime-environ-25.0.2}/src/module_artifacts.rs +0 -0
  1720. /data/ext/cargo-vendor/{wasmtime-environ-25.0.0 → wasmtime-environ-25.0.2}/src/module_types.rs +0 -0
  1721. /data/ext/cargo-vendor/{wasmtime-environ-25.0.0 → wasmtime-environ-25.0.2}/src/obj.rs +0 -0
  1722. /data/ext/cargo-vendor/{wasmtime-environ-25.0.0 → wasmtime-environ-25.0.2}/src/ref_bits.rs +0 -0
  1723. /data/ext/cargo-vendor/{wasmtime-environ-25.0.0 → wasmtime-environ-25.0.2}/src/scopevec.rs +0 -0
  1724. /data/ext/cargo-vendor/{wasmtime-environ-25.0.0 → wasmtime-environ-25.0.2}/src/stack_map.rs +0 -0
  1725. /data/ext/cargo-vendor/{wasmtime-environ-25.0.0 → wasmtime-environ-25.0.2}/src/trap_encoding.rs +0 -0
  1726. /data/ext/cargo-vendor/{wasmtime-environ-25.0.0 → wasmtime-environ-25.0.2}/src/tunables.rs +0 -0
  1727. /data/ext/cargo-vendor/{wasmtime-environ-25.0.0 → wasmtime-environ-25.0.2}/src/vmoffsets.rs +0 -0
  1728. /data/ext/cargo-vendor/{wasmtime-fiber-25.0.0 → wasmtime-fiber-25.0.2}/LICENSE +0 -0
  1729. /data/ext/cargo-vendor/{wasmtime-fiber-25.0.0 → wasmtime-fiber-25.0.2}/build.rs +0 -0
  1730. /data/ext/cargo-vendor/{wasmtime-fiber-25.0.0 → wasmtime-fiber-25.0.2}/src/lib.rs +0 -0
  1731. /data/ext/cargo-vendor/{wasmtime-fiber-25.0.0 → wasmtime-fiber-25.0.2}/src/unix/aarch64.rs +0 -0
  1732. /data/ext/cargo-vendor/{wasmtime-fiber-25.0.0 → wasmtime-fiber-25.0.2}/src/unix/arm.rs +0 -0
  1733. /data/ext/cargo-vendor/{wasmtime-fiber-25.0.0 → wasmtime-fiber-25.0.2}/src/unix/riscv64.rs +0 -0
  1734. /data/ext/cargo-vendor/{wasmtime-fiber-25.0.0 → wasmtime-fiber-25.0.2}/src/unix/s390x.S +0 -0
  1735. /data/ext/cargo-vendor/{wasmtime-fiber-25.0.0 → wasmtime-fiber-25.0.2}/src/unix/x86.rs +0 -0
  1736. /data/ext/cargo-vendor/{wasmtime-fiber-25.0.0 → wasmtime-fiber-25.0.2}/src/unix/x86_64.rs +0 -0
  1737. /data/ext/cargo-vendor/{wasmtime-fiber-25.0.0 → wasmtime-fiber-25.0.2}/src/unix.rs +0 -0
  1738. /data/ext/cargo-vendor/{wasmtime-fiber-25.0.0 → wasmtime-fiber-25.0.2}/src/windows.c +0 -0
  1739. /data/ext/cargo-vendor/{wasmtime-fiber-25.0.0 → wasmtime-fiber-25.0.2}/src/windows.rs +0 -0
  1740. /data/ext/cargo-vendor/{wasmtime-jit-debug-25.0.0 → wasmtime-jit-debug-25.0.2}/README.md +0 -0
  1741. /data/ext/cargo-vendor/{wasmtime-jit-debug-25.0.0 → wasmtime-jit-debug-25.0.2}/src/gdb_jit_int.rs +0 -0
  1742. /data/ext/cargo-vendor/{wasmtime-jit-debug-25.0.0 → wasmtime-jit-debug-25.0.2}/src/lib.rs +0 -0
  1743. /data/ext/cargo-vendor/{wasmtime-jit-debug-25.0.0 → wasmtime-jit-debug-25.0.2}/src/perf_jitdump.rs +0 -0
  1744. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-25.0.0 → wasmtime-jit-icache-coherence-25.0.2}/src/lib.rs +0 -0
  1745. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-25.0.0 → wasmtime-jit-icache-coherence-25.0.2}/src/libc.rs +0 -0
  1746. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-25.0.0 → wasmtime-jit-icache-coherence-25.0.2}/src/miri.rs +0 -0
  1747. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-25.0.0 → wasmtime-jit-icache-coherence-25.0.2}/src/win.rs +0 -0
  1748. /data/ext/cargo-vendor/{wasmtime-slab-25.0.0 → wasmtime-slab-25.0.2}/src/lib.rs +0 -0
  1749. /data/ext/cargo-vendor/{wasmtime-types-25.0.0 → wasmtime-types-25.0.2}/LICENSE +0 -0
  1750. /data/ext/cargo-vendor/{wasmtime-types-25.0.0 → wasmtime-types-25.0.2}/src/error.rs +0 -0
  1751. /data/ext/cargo-vendor/{wasmtime-types-25.0.0 → wasmtime-types-25.0.2}/src/lib.rs +0 -0
  1752. /data/ext/cargo-vendor/{wasmtime-types-25.0.0 → wasmtime-types-25.0.2}/src/prelude.rs +0 -0
  1753. /data/ext/cargo-vendor/{wasmtime-versioned-export-macros-25.0.0 → wasmtime-versioned-export-macros-25.0.2}/src/lib.rs +0 -0
  1754. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/LICENSE +0 -0
  1755. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/README.md +0 -0
  1756. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/src/bindings.rs +0 -0
  1757. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/src/clocks/host.rs +0 -0
  1758. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/src/clocks.rs +0 -0
  1759. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/src/ctx.rs +0 -0
  1760. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/src/error.rs +0 -0
  1761. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/src/filesystem.rs +0 -0
  1762. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/src/host/clocks.rs +0 -0
  1763. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/src/host/env.rs +0 -0
  1764. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/src/host/exit.rs +0 -0
  1765. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/src/host/filesystem/sync.rs +0 -0
  1766. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/src/host/filesystem.rs +0 -0
  1767. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/src/host/instance_network.rs +0 -0
  1768. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/src/host/io.rs +0 -0
  1769. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/src/host/mod.rs +0 -0
  1770. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/src/host/network.rs +0 -0
  1771. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/src/host/random.rs +0 -0
  1772. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/src/host/tcp.rs +0 -0
  1773. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/src/host/tcp_create_socket.rs +0 -0
  1774. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/src/host/udp.rs +0 -0
  1775. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/src/host/udp_create_socket.rs +0 -0
  1776. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/src/ip_name_lookup.rs +0 -0
  1777. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/src/lib.rs +0 -0
  1778. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/src/network.rs +0 -0
  1779. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/src/pipe.rs +0 -0
  1780. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/src/poll.rs +0 -0
  1781. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/src/preview0.rs +0 -0
  1782. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/src/preview1.rs +0 -0
  1783. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/src/random.rs +0 -0
  1784. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/src/runtime.rs +0 -0
  1785. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/src/stdio/worker_thread_stdin.rs +0 -0
  1786. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/src/stdio.rs +0 -0
  1787. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/src/stream.rs +0 -0
  1788. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/src/tcp.rs +0 -0
  1789. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/src/udp.rs +0 -0
  1790. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/src/write_stream.rs +0 -0
  1791. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/tests/all/api.rs +0 -0
  1792. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/tests/all/async_.rs +0 -0
  1793. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/tests/all/main.rs +0 -0
  1794. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/tests/all/preview1.rs +0 -0
  1795. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/tests/all/sync.rs +0 -0
  1796. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/tests/process_stdin.rs +0 -0
  1797. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/wit/deps/cli/command.wit +0 -0
  1798. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/wit/deps/cli/environment.wit +0 -0
  1799. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/wit/deps/cli/exit.wit +0 -0
  1800. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/wit/deps/cli/imports.wit +0 -0
  1801. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/wit/deps/cli/run.wit +0 -0
  1802. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/wit/deps/cli/stdio.wit +0 -0
  1803. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/wit/deps/cli/terminal.wit +0 -0
  1804. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/wit/deps/clocks/monotonic-clock.wit +0 -0
  1805. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/wit/deps/clocks/timezone.wit +0 -0
  1806. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/wit/deps/clocks/wall-clock.wit +0 -0
  1807. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/wit/deps/clocks/world.wit +0 -0
  1808. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/wit/deps/filesystem/preopens.wit +0 -0
  1809. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/wit/deps/filesystem/types.wit +0 -0
  1810. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/wit/deps/filesystem/world.wit +0 -0
  1811. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/wit/deps/io/error.wit +0 -0
  1812. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/wit/deps/io/poll.wit +0 -0
  1813. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/wit/deps/io/streams.wit +0 -0
  1814. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/wit/deps/io/world.wit +0 -0
  1815. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/wit/deps/random/insecure-seed.wit +0 -0
  1816. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/wit/deps/random/insecure.wit +0 -0
  1817. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/wit/deps/random/random.wit +0 -0
  1818. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/wit/deps/random/world.wit +0 -0
  1819. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/wit/deps/sockets/instance-network.wit +0 -0
  1820. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/wit/deps/sockets/ip-name-lookup.wit +0 -0
  1821. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/wit/deps/sockets/network.wit +0 -0
  1822. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/wit/deps/sockets/tcp-create-socket.wit +0 -0
  1823. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/wit/deps/sockets/tcp.wit +0 -0
  1824. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/wit/deps/sockets/udp-create-socket.wit +0 -0
  1825. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/wit/deps/sockets/udp.wit +0 -0
  1826. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/wit/deps/sockets/world.wit +0 -0
  1827. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/wit/test.wit +0 -0
  1828. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/wit/world.wit +0 -0
  1829. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/witx/preview0/typenames.witx +0 -0
  1830. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/witx/preview0/wasi_unstable.witx +0 -0
  1831. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/witx/preview1/typenames.witx +0 -0
  1832. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/witx/preview1/wasi_snapshot_preview1.witx +0 -0
  1833. /data/ext/cargo-vendor/{wasmtime-winch-25.0.0 → wasmtime-winch-25.0.2}/LICENSE +0 -0
  1834. /data/ext/cargo-vendor/{wasmtime-winch-25.0.0 → wasmtime-winch-25.0.2}/src/builder.rs +0 -0
  1835. /data/ext/cargo-vendor/{wasmtime-winch-25.0.0 → wasmtime-winch-25.0.2}/src/compiler.rs +0 -0
  1836. /data/ext/cargo-vendor/{wasmtime-winch-25.0.0 → wasmtime-winch-25.0.2}/src/lib.rs +0 -0
  1837. /data/ext/cargo-vendor/{wasmtime-wit-bindgen-25.0.0 → wasmtime-wit-bindgen-25.0.2}/src/lib.rs +0 -0
  1838. /data/ext/cargo-vendor/{wasmtime-wit-bindgen-25.0.0 → wasmtime-wit-bindgen-25.0.2}/src/rust.rs +0 -0
  1839. /data/ext/cargo-vendor/{wasmtime-wit-bindgen-25.0.0 → wasmtime-wit-bindgen-25.0.2}/src/source.rs +0 -0
  1840. /data/ext/cargo-vendor/{wasmtime-wit-bindgen-25.0.0 → wasmtime-wit-bindgen-25.0.2}/src/types.rs +0 -0
  1841. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/README.md +0 -0
  1842. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/component/alias.rs +0 -0
  1843. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/component/custom.rs +0 -0
  1844. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/component/export.rs +0 -0
  1845. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/component/import.rs +0 -0
  1846. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/component/instance.rs +0 -0
  1847. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/component/item_ref.rs +0 -0
  1848. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/component/module.rs +0 -0
  1849. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/component/wast.rs +0 -0
  1850. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/component.rs +0 -0
  1851. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/core/binary/dwarf.rs +0 -0
  1852. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/core/binary/dwarf_disabled.rs +0 -0
  1853. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/core/custom.rs +0 -0
  1854. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/core/export.rs +0 -0
  1855. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/core/func.rs +0 -0
  1856. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/core/global.rs +0 -0
  1857. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/core/import.rs +0 -0
  1858. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/core/memory.rs +0 -0
  1859. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/core/module.rs +0 -0
  1860. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/core/resolve/mod.rs +0 -0
  1861. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/core/tag.rs +0 -0
  1862. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/core/wast.rs +0 -0
  1863. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/core.rs +0 -0
  1864. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/encode.rs +0 -0
  1865. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/error.rs +0 -0
  1866. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/gensym.rs +0 -0
  1867. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/lexer.rs +0 -0
  1868. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/names.rs +0 -0
  1869. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/parser.rs +0 -0
  1870. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/token.rs +0 -0
  1871. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/wat.rs +0 -0
  1872. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/annotations.rs +0 -0
  1873. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/comments.rs +0 -0
  1874. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/bad-core-func-alias.wat +0 -0
  1875. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/bad-core-func-alias.wat.err +0 -0
  1876. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/bad-func-alias.wat +0 -0
  1877. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/bad-func-alias.wat.err +0 -0
  1878. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/bad-index.wat +0 -0
  1879. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/bad-index.wat.err +0 -0
  1880. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/bad-name.wat +0 -0
  1881. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/bad-name.wat.err +0 -0
  1882. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/bad-name2.wat +0 -0
  1883. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/bad-name2.wat.err +0 -0
  1884. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/bad-name3.wat +0 -0
  1885. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/bad-name3.wat.err +0 -0
  1886. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/block1.wat +0 -0
  1887. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/block1.wat.err +0 -0
  1888. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/block2.wat +0 -0
  1889. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/block2.wat.err +0 -0
  1890. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/block3.wat +0 -0
  1891. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/block3.wat.err +0 -0
  1892. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment0.wat +0 -0
  1893. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment0.wat.err +0 -0
  1894. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment1.wat +0 -0
  1895. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment1.wat.err +0 -0
  1896. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment2.wat +0 -0
  1897. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment2.wat.err +0 -0
  1898. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment3.wat +0 -0
  1899. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment3.wat.err +0 -0
  1900. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment4.wat +0 -0
  1901. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment4.wat.err +0 -0
  1902. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment5.wat +0 -0
  1903. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment5.wat.err +0 -0
  1904. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment6.wat +0 -0
  1905. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment6.wat.err +0 -0
  1906. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment7.wat +0 -0
  1907. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment7.wat.err +0 -0
  1908. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment8.wat +0 -0
  1909. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment8.wat.err +0 -0
  1910. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment0.wat +0 -0
  1911. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment0.wat.err +0 -0
  1912. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment1.wat +0 -0
  1913. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment1.wat.err +0 -0
  1914. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment2.wat +0 -0
  1915. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment2.wat.err +0 -0
  1916. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment3.wat +0 -0
  1917. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment3.wat.err +0 -0
  1918. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment4.wat +0 -0
  1919. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment4.wat.err +0 -0
  1920. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment5.wat +0 -0
  1921. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment5.wat.err +0 -0
  1922. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment6.wat +0 -0
  1923. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment6.wat.err +0 -0
  1924. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment7.wat +0 -0
  1925. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment7.wat.err +0 -0
  1926. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment8.wat +0 -0
  1927. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment8.wat.err +0 -0
  1928. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string0.wat +0 -0
  1929. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string0.wat.err +0 -0
  1930. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string1.wat +0 -0
  1931. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string1.wat.err +0 -0
  1932. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string2.wat +0 -0
  1933. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string2.wat.err +0 -0
  1934. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string3.wat +0 -0
  1935. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string3.wat.err +0 -0
  1936. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string4.wat +0 -0
  1937. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string4.wat.err +0 -0
  1938. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string5.wat +0 -0
  1939. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string5.wat.err +0 -0
  1940. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string6.wat +0 -0
  1941. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string6.wat.err +0 -0
  1942. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string7.wat +0 -0
  1943. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string7.wat.err +0 -0
  1944. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string8.wat +0 -0
  1945. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string8.wat.err +0 -0
  1946. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/inline1.wat +0 -0
  1947. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/inline1.wat.err +0 -0
  1948. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/newline-in-string.wat +0 -0
  1949. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/newline-in-string.wat.err +0 -0
  1950. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string1.wat +0 -0
  1951. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string1.wat.err +0 -0
  1952. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string10.wat +0 -0
  1953. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string10.wat.err +0 -0
  1954. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string11.wat +0 -0
  1955. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string11.wat.err +0 -0
  1956. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string12.wat +0 -0
  1957. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string12.wat.err +0 -0
  1958. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string13.wat +0 -0
  1959. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string13.wat.err +0 -0
  1960. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string14.wat +0 -0
  1961. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string14.wat.err +0 -0
  1962. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string15.wat +0 -0
  1963. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string15.wat.err +0 -0
  1964. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string16.wat +0 -0
  1965. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string16.wat.err +0 -0
  1966. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string2.wat +0 -0
  1967. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string2.wat.err +0 -0
  1968. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string3.wat +0 -0
  1969. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string3.wat.err +0 -0
  1970. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string4.wat +0 -0
  1971. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string4.wat.err +0 -0
  1972. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string5.wat +0 -0
  1973. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string5.wat.err +0 -0
  1974. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string6.wat +0 -0
  1975. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string6.wat.err +0 -0
  1976. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string7.wat +0 -0
  1977. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string7.wat.err +0 -0
  1978. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string8.wat +0 -0
  1979. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string8.wat.err +0 -0
  1980. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string9.wat +0 -0
  1981. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string9.wat.err +0 -0
  1982. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/unbalanced.wat +0 -0
  1983. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/unbalanced.wat.err +0 -0
  1984. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail.rs +0 -0
  1985. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/recursive.rs +0 -0
  1986. /data/ext/cargo-vendor/{wat-1.217.0 → wat-1.218.0}/README.md +0 -0
  1987. /data/ext/cargo-vendor/{wat-1.217.0 → wat-1.218.0}/src/lib.rs +0 -0
  1988. /data/ext/cargo-vendor/{wiggle-25.0.0 → wiggle-25.0.2}/LICENSE +0 -0
  1989. /data/ext/cargo-vendor/{wiggle-25.0.0 → wiggle-25.0.2}/README.md +0 -0
  1990. /data/ext/cargo-vendor/{wiggle-25.0.0 → wiggle-25.0.2}/src/error.rs +0 -0
  1991. /data/ext/cargo-vendor/{wiggle-25.0.0 → wiggle-25.0.2}/src/guest_type.rs +0 -0
  1992. /data/ext/cargo-vendor/{wiggle-25.0.0 → wiggle-25.0.2}/src/lib.rs +0 -0
  1993. /data/ext/cargo-vendor/{wiggle-25.0.0 → wiggle-25.0.2}/src/region.rs +0 -0
  1994. /data/ext/cargo-vendor/{wiggle-generate-25.0.0 → wiggle-generate-25.0.2}/LICENSE +0 -0
  1995. /data/ext/cargo-vendor/{wiggle-generate-25.0.0 → wiggle-generate-25.0.2}/README.md +0 -0
  1996. /data/ext/cargo-vendor/{wiggle-generate-25.0.0 → wiggle-generate-25.0.2}/src/codegen_settings.rs +0 -0
  1997. /data/ext/cargo-vendor/{wiggle-generate-25.0.0 → wiggle-generate-25.0.2}/src/config.rs +0 -0
  1998. /data/ext/cargo-vendor/{wiggle-generate-25.0.0 → wiggle-generate-25.0.2}/src/funcs.rs +0 -0
  1999. /data/ext/cargo-vendor/{wiggle-generate-25.0.0 → wiggle-generate-25.0.2}/src/lib.rs +0 -0
  2000. /data/ext/cargo-vendor/{wiggle-generate-25.0.0 → wiggle-generate-25.0.2}/src/lifetimes.rs +0 -0
  2001. /data/ext/cargo-vendor/{wiggle-generate-25.0.0 → wiggle-generate-25.0.2}/src/module_trait.rs +0 -0
  2002. /data/ext/cargo-vendor/{wiggle-generate-25.0.0 → wiggle-generate-25.0.2}/src/names.rs +0 -0
  2003. /data/ext/cargo-vendor/{wiggle-generate-25.0.0 → wiggle-generate-25.0.2}/src/types/error.rs +0 -0
  2004. /data/ext/cargo-vendor/{wiggle-generate-25.0.0 → wiggle-generate-25.0.2}/src/types/flags.rs +0 -0
  2005. /data/ext/cargo-vendor/{wiggle-generate-25.0.0 → wiggle-generate-25.0.2}/src/types/handle.rs +0 -0
  2006. /data/ext/cargo-vendor/{wiggle-generate-25.0.0 → wiggle-generate-25.0.2}/src/types/mod.rs +0 -0
  2007. /data/ext/cargo-vendor/{wiggle-generate-25.0.0 → wiggle-generate-25.0.2}/src/types/record.rs +0 -0
  2008. /data/ext/cargo-vendor/{wiggle-generate-25.0.0 → wiggle-generate-25.0.2}/src/types/variant.rs +0 -0
  2009. /data/ext/cargo-vendor/{wiggle-generate-25.0.0 → wiggle-generate-25.0.2}/src/wasmtime.rs +0 -0
  2010. /data/ext/cargo-vendor/{wiggle-macro-25.0.0 → wiggle-macro-25.0.2}/LICENSE +0 -0
  2011. /data/ext/cargo-vendor/{wiggle-macro-25.0.0 → wiggle-macro-25.0.2}/build.rs +0 -0
  2012. /data/ext/cargo-vendor/{wiggle-macro-25.0.0 → wiggle-macro-25.0.2}/src/lib.rs +0 -0
  2013. /data/ext/cargo-vendor/{winch-codegen-0.23.0 → winch-codegen-0.23.2}/LICENSE +0 -0
  2014. /data/ext/cargo-vendor/{winch-codegen-0.23.0 → winch-codegen-0.23.2}/build.rs +0 -0
  2015. /data/ext/cargo-vendor/{winch-codegen-0.23.0 → winch-codegen-0.23.2}/src/abi/local.rs +0 -0
  2016. /data/ext/cargo-vendor/{winch-codegen-0.23.0 → winch-codegen-0.23.2}/src/abi/mod.rs +0 -0
  2017. /data/ext/cargo-vendor/{winch-codegen-0.23.0 → winch-codegen-0.23.2}/src/codegen/bounds.rs +0 -0
  2018. /data/ext/cargo-vendor/{winch-codegen-0.23.0 → winch-codegen-0.23.2}/src/codegen/builtin.rs +0 -0
  2019. /data/ext/cargo-vendor/{winch-codegen-0.23.0 → winch-codegen-0.23.2}/src/codegen/call.rs +0 -0
  2020. /data/ext/cargo-vendor/{winch-codegen-0.23.0 → winch-codegen-0.23.2}/src/codegen/context.rs +0 -0
  2021. /data/ext/cargo-vendor/{winch-codegen-0.23.0 → winch-codegen-0.23.2}/src/codegen/control.rs +0 -0
  2022. /data/ext/cargo-vendor/{winch-codegen-0.23.0 → winch-codegen-0.23.2}/src/codegen/env.rs +0 -0
  2023. /data/ext/cargo-vendor/{winch-codegen-0.23.0 → winch-codegen-0.23.2}/src/codegen/mod.rs +0 -0
  2024. /data/ext/cargo-vendor/{winch-codegen-0.23.0 → winch-codegen-0.23.2}/src/frame/mod.rs +0 -0
  2025. /data/ext/cargo-vendor/{winch-codegen-0.23.0 → winch-codegen-0.23.2}/src/isa/aarch64/abi.rs +0 -0
  2026. /data/ext/cargo-vendor/{winch-codegen-0.23.0 → winch-codegen-0.23.2}/src/isa/aarch64/address.rs +0 -0
  2027. /data/ext/cargo-vendor/{winch-codegen-0.23.0 → winch-codegen-0.23.2}/src/isa/aarch64/asm.rs +0 -0
  2028. /data/ext/cargo-vendor/{winch-codegen-0.23.0 → winch-codegen-0.23.2}/src/isa/aarch64/masm.rs +0 -0
  2029. /data/ext/cargo-vendor/{winch-codegen-0.23.0 → winch-codegen-0.23.2}/src/isa/aarch64/mod.rs +0 -0
  2030. /data/ext/cargo-vendor/{winch-codegen-0.23.0 → winch-codegen-0.23.2}/src/isa/aarch64/regs.rs +0 -0
  2031. /data/ext/cargo-vendor/{winch-codegen-0.23.0 → winch-codegen-0.23.2}/src/isa/mod.rs +0 -0
  2032. /data/ext/cargo-vendor/{winch-codegen-0.23.0 → winch-codegen-0.23.2}/src/isa/reg.rs +0 -0
  2033. /data/ext/cargo-vendor/{winch-codegen-0.23.0 → winch-codegen-0.23.2}/src/isa/x64/abi.rs +0 -0
  2034. /data/ext/cargo-vendor/{winch-codegen-0.23.0 → winch-codegen-0.23.2}/src/isa/x64/address.rs +0 -0
  2035. /data/ext/cargo-vendor/{winch-codegen-0.23.0 → winch-codegen-0.23.2}/src/isa/x64/asm.rs +0 -0
  2036. /data/ext/cargo-vendor/{winch-codegen-0.23.0 → winch-codegen-0.23.2}/src/isa/x64/masm.rs +0 -0
  2037. /data/ext/cargo-vendor/{winch-codegen-0.23.0 → winch-codegen-0.23.2}/src/isa/x64/mod.rs +0 -0
  2038. /data/ext/cargo-vendor/{winch-codegen-0.23.0 → winch-codegen-0.23.2}/src/isa/x64/regs.rs +0 -0
  2039. /data/ext/cargo-vendor/{winch-codegen-0.23.0 → winch-codegen-0.23.2}/src/lib.rs +0 -0
  2040. /data/ext/cargo-vendor/{winch-codegen-0.23.0 → winch-codegen-0.23.2}/src/masm.rs +0 -0
  2041. /data/ext/cargo-vendor/{winch-codegen-0.23.0 → winch-codegen-0.23.2}/src/regalloc.rs +0 -0
  2042. /data/ext/cargo-vendor/{winch-codegen-0.23.0 → winch-codegen-0.23.2}/src/regset.rs +0 -0
  2043. /data/ext/cargo-vendor/{winch-codegen-0.23.0 → winch-codegen-0.23.2}/src/stack.rs +0 -0
  2044. /data/ext/cargo-vendor/{winch-codegen-0.23.0 → winch-codegen-0.23.2}/src/visitor.rs +0 -0
@@ -1,2110 +0,0 @@
1
- use crate::annotation;
2
- use crate::core::*;
3
- use crate::encode::Encode;
4
- use crate::kw;
5
- use crate::parser::{Cursor, Parse, Parser, Result};
6
- use crate::token::*;
7
- use std::mem;
8
-
9
- /// An expression, or a list of instructions, in the WebAssembly text format.
10
- ///
11
- /// This expression type will parse s-expression-folded instructions into a flat
12
- /// list of instructions for emission later on. The implicit `end` instruction
13
- /// at the end of an expression is not included in the `instrs` field.
14
- #[derive(Debug)]
15
- #[allow(missing_docs)]
16
- pub struct Expression<'a> {
17
- /// Instructions in this expression.
18
- pub instrs: Box<[Instruction<'a>]>,
19
-
20
- /// Branch hints, if any, found while parsing instructions.
21
- pub branch_hints: Box<[BranchHint]>,
22
-
23
- /// Optionally parsed spans of all instructions in `instrs`.
24
- ///
25
- /// This value is `None` as it's disabled by default. This can be enabled
26
- /// through the
27
- /// [`ParseBuffer::track_instr_spans`](crate::parser::ParseBuffer::track_instr_spans)
28
- /// function.
29
- ///
30
- /// This is not tracked by default due to the memory overhead and limited
31
- /// use of this field.
32
- pub instr_spans: Option<Box<[Span]>>,
33
- }
34
-
35
- /// A `@metadata.code.branch_hint` in the code, associated with a If or BrIf
36
- /// This instruction is a placeholder and won't produce anything. Its purpose
37
- /// is to store the offset of the following instruction and check that
38
- /// it's followed by `br_if` or `if`.
39
- #[derive(Debug)]
40
- pub struct BranchHint {
41
- /// Index of instructions in `instrs` field of `Expression` that this hint
42
- /// applies to.
43
- pub instr_index: usize,
44
- /// The value of this branch hint
45
- pub value: u32,
46
- }
47
-
48
- impl<'a> Parse<'a> for Expression<'a> {
49
- fn parse(parser: Parser<'a>) -> Result<Self> {
50
- let mut exprs = ExpressionParser::new(parser);
51
- exprs.parse(parser)?;
52
- Ok(Expression {
53
- instrs: exprs.raw_instrs.into(),
54
- branch_hints: exprs.branch_hints.into(),
55
- instr_spans: exprs.spans.map(|s| s.into()),
56
- })
57
- }
58
- }
59
-
60
- impl<'a> Expression<'a> {
61
- /// Creates an expression from the single `instr` specified.
62
- pub fn one(instr: Instruction<'a>) -> Expression<'a> {
63
- Expression {
64
- instrs: [instr].into(),
65
- branch_hints: Box::new([]),
66
- instr_spans: None,
67
- }
68
- }
69
-
70
- /// Parse an expression formed from a single folded instruction.
71
- ///
72
- /// Attempts to parse an expression formed from a single folded instruction.
73
- ///
74
- /// This method will mutate the state of `parser` after attempting to parse
75
- /// the expression. If an error happens then it is likely fatal and
76
- /// there is no guarantee of how many tokens have been consumed from
77
- /// `parser`.
78
- ///
79
- /// # Errors
80
- ///
81
- /// This function will return an error if the expression could not be
82
- /// parsed. Note that creating an [`crate::Error`] is not exactly a cheap
83
- /// operation, so [`crate::Error`] is typically fatal and propagated all the
84
- /// way back to the top parse call site.
85
- pub fn parse_folded_instruction(parser: Parser<'a>) -> Result<Self> {
86
- let mut exprs = ExpressionParser::new(parser);
87
- exprs.parse_folded_instruction(parser)?;
88
- Ok(Expression {
89
- instrs: exprs.raw_instrs.into(),
90
- branch_hints: exprs.branch_hints.into(),
91
- instr_spans: exprs.spans.map(|s| s.into()),
92
- })
93
- }
94
- }
95
-
96
- /// Helper struct used to parse an `Expression` with helper methods and such.
97
- ///
98
- /// The primary purpose of this is to avoid defining expression parsing as a
99
- /// call-thread-stack recursive function. Since we're parsing user input that
100
- /// runs the risk of blowing the call stack, so we want to be sure to use a heap
101
- /// stack structure wherever possible.
102
- struct ExpressionParser<'a> {
103
- /// The flat list of instructions that we've parsed so far, and will
104
- /// eventually become the final `Expression`.
105
- ///
106
- /// Appended to with `push_instr` to ensure that this is the same length of
107
- /// `spans` if `spans` is used.
108
- raw_instrs: Vec<Instruction<'a>>,
109
-
110
- /// Descriptor of all our nested s-expr blocks. This only happens when
111
- /// instructions themselves are nested.
112
- stack: Vec<Level<'a>>,
113
-
114
- /// Related to the branch hints proposal.
115
- /// Will be used later to collect the offsets in the final binary.
116
- /// <(index of branch instructions, BranchHintAnnotation)>
117
- branch_hints: Vec<BranchHint>,
118
-
119
- /// Storage for all span information in `raw_instrs`. Optionally disabled to
120
- /// reduce memory consumption of parsing expressions.
121
- spans: Option<Vec<Span>>,
122
- }
123
-
124
- enum Paren {
125
- None,
126
- Left,
127
- Right(Span),
128
- }
129
-
130
- /// A "kind" of nested block that we can be parsing inside of.
131
- enum Level<'a> {
132
- /// This is a normal `block` or `loop` or similar, where the instruction
133
- /// payload here is pushed when the block is exited.
134
- EndWith(Instruction<'a>, Option<Span>),
135
-
136
- /// This is a pretty special variant which means that we're parsing an `if`
137
- /// statement, and the state of the `if` parsing is tracked internally in
138
- /// the payload.
139
- If(If<'a>),
140
-
141
- /// This means we're either parsing inside of `(then ...)` or `(else ...)`
142
- /// which don't correspond to terminating instructions, we're just in a
143
- /// nested block.
144
- IfArm,
145
-
146
- /// This means we are finishing the parsing of a branch hint annotation.
147
- BranchHint,
148
- }
149
-
150
- /// Possible states of "what is currently being parsed?" in an `if` expression.
151
- enum If<'a> {
152
- /// Only the `if` instruction has been parsed, next thing to parse is the
153
- /// clause, if any, of the `if` instruction.
154
- ///
155
- /// This parse ends when `(then ...)` is encountered.
156
- Clause(Instruction<'a>, Span),
157
- /// Currently parsing the `then` block, and afterwards a closing paren is
158
- /// required or an `(else ...)` expression.
159
- Then,
160
- /// Parsing the `else` expression, nothing can come after.
161
- Else,
162
- }
163
-
164
- impl<'a> ExpressionParser<'a> {
165
- fn new(parser: Parser<'a>) -> ExpressionParser<'a> {
166
- ExpressionParser {
167
- raw_instrs: Vec::new(),
168
- stack: Vec::new(),
169
- branch_hints: Vec::new(),
170
- spans: if parser.track_instr_spans() {
171
- Some(Vec::new())
172
- } else {
173
- None
174
- },
175
- }
176
- }
177
-
178
- fn parse(&mut self, parser: Parser<'a>) -> Result<()> {
179
- // Here we parse instructions in a loop, and we do not recursively
180
- // invoke this parse function to avoid blowing the stack on
181
- // deeply-recursive parses.
182
- //
183
- // Our loop generally only finishes once there's no more input left int
184
- // the `parser`. If there's some unclosed delimiters though (on our
185
- // `stack`), then we also keep parsing to generate error messages if
186
- // there's no input left.
187
- while !parser.is_empty() || !self.stack.is_empty() {
188
- // As a small ease-of-life adjustment here, if we're parsing inside
189
- // of an `if block then we require that all sub-components are
190
- // s-expressions surrounded by `(` and `)`, so verify that here.
191
- if let Some(Level::If(_)) = self.stack.last() {
192
- if !parser.is_empty() && !parser.peek::<LParen>()? {
193
- return Err(parser.error("expected `(`"));
194
- }
195
- }
196
-
197
- match self.paren(parser)? {
198
- // No parenthesis seen? Then we just parse the next instruction
199
- // and move on.
200
- Paren::None => {
201
- let span = parser.cur_span();
202
- self.push_instr(parser.parse()?, span);
203
- }
204
-
205
- // If we see a left-parenthesis then things are a little
206
- // special. We handle block-like instructions specially
207
- // (`block`, `loop`, and `if`), and otherwise all other
208
- // instructions simply get appended once we reach the end of the
209
- // s-expression.
210
- //
211
- // In all cases here we push something onto the `stack` to get
212
- // popped when the `)` character is seen.
213
- Paren::Left => {
214
- // First up is handling `if` parsing, which is funky in a
215
- // whole bunch of ways. See the method internally for more
216
- // information.
217
- if self.handle_if_lparen(parser)? {
218
- continue;
219
- }
220
-
221
- // Handle the case of a branch hint annotation
222
- if parser.peek::<annotation::metadata_code_branch_hint>()? {
223
- self.parse_branch_hint(parser)?;
224
- self.stack.push(Level::BranchHint);
225
- continue;
226
- }
227
-
228
- let span = parser.cur_span();
229
- match parser.parse()? {
230
- // If block/loop show up then we just need to be sure to
231
- // push an `end` instruction whenever the `)` token is
232
- // seen
233
- i @ Instruction::Block(_)
234
- | i @ Instruction::Loop(_)
235
- | i @ Instruction::TryTable(_) => {
236
- self.push_instr(i, span);
237
- self.stack
238
- .push(Level::EndWith(Instruction::End(None), None));
239
- }
240
-
241
- // Parsing an `if` instruction is super tricky, so we
242
- // push an `If` scope and we let all our scope-based
243
- // parsing handle the remaining items.
244
- i @ Instruction::If(_) => {
245
- self.stack.push(Level::If(If::Clause(i, span)));
246
- }
247
-
248
- // Anything else means that we're parsing a nested form
249
- // such as `(i32.add ...)` which means that the
250
- // instruction we parsed will be coming at the end.
251
- other => self.stack.push(Level::EndWith(other, Some(span))),
252
- }
253
- }
254
-
255
- // If we registered a `)` token as being seen, then we're
256
- // guaranteed there's an item in the `stack` stack for us to
257
- // pop. We peel that off and take a look at what it says to do.
258
- Paren::Right(span) => match self.stack.pop().unwrap() {
259
- Level::EndWith(i, s) => self.push_instr(i, s.unwrap_or(span)),
260
- Level::IfArm => {}
261
- Level::BranchHint => {}
262
-
263
- // If an `if` statement hasn't parsed the clause or `then`
264
- // block, then that's an error because there weren't enough
265
- // items in the `if` statement. Otherwise we're just careful
266
- // to terminate with an `end` instruction.
267
- Level::If(If::Clause(..)) => {
268
- return Err(parser.error("previous `if` had no `then`"));
269
- }
270
- Level::If(_) => {
271
- self.push_instr(Instruction::End(None), span);
272
- }
273
- },
274
- }
275
- }
276
- Ok(())
277
- }
278
-
279
- fn parse_folded_instruction(&mut self, parser: Parser<'a>) -> Result<()> {
280
- let mut done = false;
281
- while !done {
282
- match self.paren(parser)? {
283
- Paren::Left => {
284
- let span = parser.cur_span();
285
- self.stack.push(Level::EndWith(parser.parse()?, Some(span)));
286
- }
287
- Paren::Right(span) => {
288
- let (top_instr, span) = match self.stack.pop().unwrap() {
289
- Level::EndWith(i, s) => (i, s.unwrap_or(span)),
290
- _ => panic!("unknown level type"),
291
- };
292
- self.push_instr(top_instr, span);
293
- if self.stack.is_empty() {
294
- done = true;
295
- }
296
- }
297
- Paren::None => {
298
- return Err(parser.error("expected to continue a folded instruction"))
299
- }
300
- }
301
- }
302
- Ok(())
303
- }
304
-
305
- /// Parses either `(`, `)`, or nothing.
306
- fn paren(&self, parser: Parser<'a>) -> Result<Paren> {
307
- parser.step(|cursor| {
308
- Ok(match cursor.lparen()? {
309
- Some(rest) => (Paren::Left, rest),
310
- None if self.stack.is_empty() => (Paren::None, cursor),
311
- None => match cursor.rparen()? {
312
- Some(rest) => (Paren::Right(cursor.cur_span()), rest),
313
- None => (Paren::None, cursor),
314
- },
315
- })
316
- })
317
- }
318
-
319
- /// State transitions with parsing an `if` statement.
320
- ///
321
- /// The syntactical form of an `if` statement looks like:
322
- ///
323
- /// ```wat
324
- /// (if ($clause)... (then $then) (else $else))
325
- /// ```
326
- ///
327
- /// THis method is called after a `(` is parsed within the `(if ...` block.
328
- /// This determines what to do next.
329
- ///
330
- /// Returns `true` if the rest of the arm above should be skipped, or
331
- /// `false` if we should parse the next item as an instruction (because we
332
- /// didn't handle the lparen here).
333
- fn handle_if_lparen(&mut self, parser: Parser<'a>) -> Result<bool> {
334
- // Only execute the code below if there's an `If` listed last.
335
- let i = match self.stack.last_mut() {
336
- Some(Level::If(i)) => i,
337
- _ => return Ok(false),
338
- };
339
-
340
- match i {
341
- // If the clause is still being parsed then interpret this `(` as a
342
- // folded instruction unless it starts with `then`, in which case
343
- // this transitions to the `Then` state and a new level has been
344
- // reached.
345
- If::Clause(if_instr, if_instr_span) => {
346
- if !parser.peek::<kw::then>()? {
347
- return Ok(false);
348
- }
349
- parser.parse::<kw::then>()?;
350
- let instr = mem::replace(if_instr, Instruction::End(None));
351
- let span = *if_instr_span;
352
- *i = If::Then;
353
- self.push_instr(instr, span);
354
- self.stack.push(Level::IfArm);
355
- Ok(true)
356
- }
357
-
358
- // Previously we were parsing the `(then ...)` clause so this next
359
- // `(` must be followed by `else`.
360
- If::Then => {
361
- let span = parser.parse::<kw::r#else>()?.0;
362
- *i = If::Else;
363
- self.push_instr(Instruction::Else(None), span);
364
- self.stack.push(Level::IfArm);
365
- Ok(true)
366
- }
367
-
368
- // If after a `(else ...` clause is parsed there's another `(` then
369
- // that's not syntactically allowed.
370
- If::Else => Err(parser.error("unexpected token: too many payloads inside of `(if)`")),
371
- }
372
- }
373
-
374
- fn parse_branch_hint(&mut self, parser: Parser<'a>) -> Result<()> {
375
- parser.parse::<annotation::metadata_code_branch_hint>()?;
376
-
377
- let hint = parser.parse::<String>()?;
378
-
379
- let value = match hint.as_bytes() {
380
- [0] => 0,
381
- [1] => 1,
382
- _ => return Err(parser.error("invalid value for branch hint")),
383
- };
384
-
385
- self.branch_hints.push(BranchHint {
386
- instr_index: self.raw_instrs.len(),
387
- value,
388
- });
389
- Ok(())
390
- }
391
-
392
- fn push_instr(&mut self, instr: Instruction<'a>, span: Span) {
393
- self.raw_instrs.push(instr);
394
- if let Some(spans) = &mut self.spans {
395
- spans.push(span);
396
- }
397
- }
398
- }
399
-
400
- // TODO: document this obscenity
401
- macro_rules! instructions {
402
- (pub enum Instruction<'a> {
403
- $(
404
- $(#[$doc:meta])*
405
- $name:ident $(($($arg:tt)*))? : [$($binary:tt)*] : $instr:tt $( | $deprecated:tt )?,
406
- )*
407
- }) => (
408
- /// A listing of all WebAssembly instructions that can be in a module
409
- /// that this crate currently parses.
410
- #[derive(Debug, Clone)]
411
- #[allow(missing_docs)]
412
- pub enum Instruction<'a> {
413
- $(
414
- $(#[$doc])*
415
- $name $(( instructions!(@ty $($arg)*) ))?,
416
- )*
417
- }
418
-
419
- #[allow(non_snake_case)]
420
- impl<'a> Parse<'a> for Instruction<'a> {
421
- fn parse(parser: Parser<'a>) -> Result<Self> {
422
- $(
423
- fn $name<'a>(_parser: Parser<'a>) -> Result<Instruction<'a>> {
424
- Ok(Instruction::$name $((
425
- instructions!(@parse _parser $($arg)*)?
426
- ))?)
427
- }
428
- )*
429
- let parse_remainder = parser.step(|c| {
430
- let (kw, rest) = match c.keyword() ?{
431
- Some(pair) => pair,
432
- None => return Err(c.error("expected an instruction")),
433
- };
434
- match kw {
435
- $($instr $( | $deprecated )?=> Ok(($name as fn(_) -> _, rest)),)*
436
- _ => return Err(c.error("unknown operator or unexpected token")),
437
- }
438
- })?;
439
- parse_remainder(parser)
440
- }
441
- }
442
-
443
- impl Encode for Instruction<'_> {
444
- #[allow(non_snake_case)]
445
- fn encode(&self, v: &mut Vec<u8>) {
446
- match self {
447
- $(
448
- Instruction::$name $((instructions!(@first x $($arg)*)))? => {
449
- fn encode<'a>($(arg: &instructions!(@ty $($arg)*),)? v: &mut Vec<u8>) {
450
- instructions!(@encode v $($binary)*);
451
- $(<instructions!(@ty $($arg)*) as Encode>::encode(arg, v);)?
452
- }
453
- encode($( instructions!(@first x $($arg)*), )? v)
454
- }
455
- )*
456
- }
457
- }
458
- }
459
-
460
- impl<'a> Instruction<'a> {
461
- /// Returns the associated [`MemArg`] if one is available for this
462
- /// instruction.
463
- #[allow(unused_variables, non_snake_case)]
464
- pub fn memarg_mut(&mut self) -> Option<&mut MemArg<'a>> {
465
- match self {
466
- $(
467
- Instruction::$name $((instructions!(@memarg_binding a $($arg)*)))? => {
468
- instructions!(@get_memarg a $($($arg)*)?)
469
- }
470
- )*
471
- }
472
- }
473
- }
474
- );
475
-
476
- (@ty MemArg<$amt:tt>) => (MemArg<'a>);
477
- (@ty LoadOrStoreLane<$amt:tt>) => (LoadOrStoreLane<'a>);
478
- (@ty $other:ty) => ($other);
479
-
480
- (@first $first:ident $($t:tt)*) => ($first);
481
-
482
- (@parse $parser:ident MemArg<$amt:tt>) => (MemArg::parse($parser, $amt));
483
- (@parse $parser:ident MemArg) => (compile_error!("must specify `MemArg` default"));
484
- (@parse $parser:ident LoadOrStoreLane<$amt:tt>) => (LoadOrStoreLane::parse($parser, $amt));
485
- (@parse $parser:ident LoadOrStoreLane) => (compile_error!("must specify `LoadOrStoreLane` default"));
486
- (@parse $parser:ident $other:ty) => ($parser.parse::<$other>());
487
-
488
- // simd opcodes prefixed with `0xfd` get a varuint32 encoding for their payload
489
- (@encode $dst:ident 0xfd, $simd:tt) => ({
490
- $dst.push(0xfd);
491
- <u32 as Encode>::encode(&$simd, $dst);
492
- });
493
- (@encode $dst:ident $($bytes:tt)*) => ($dst.extend_from_slice(&[$($bytes)*]););
494
-
495
- (@get_memarg $name:ident MemArg<$amt:tt>) => (Some($name));
496
- (@get_memarg $name:ident LoadOrStoreLane<$amt:tt>) => (Some(&mut $name.memarg));
497
- (@get_memarg $($other:tt)*) => (None);
498
-
499
- (@memarg_binding $name:ident MemArg<$amt:tt>) => ($name);
500
- (@memarg_binding $name:ident LoadOrStoreLane<$amt:tt>) => ($name);
501
- (@memarg_binding $name:ident $other:ty) => (_);
502
- }
503
-
504
- instructions! {
505
- pub enum Instruction<'a> {
506
- Block(Box<BlockType<'a>>) : [0x02] : "block",
507
- If(Box<BlockType<'a>>) : [0x04] : "if",
508
- Else(Option<Id<'a>>) : [0x05] : "else",
509
- Loop(Box<BlockType<'a>>) : [0x03] : "loop",
510
- End(Option<Id<'a>>) : [0x0b] : "end",
511
-
512
- Unreachable : [0x00] : "unreachable",
513
- Nop : [0x01] : "nop",
514
- Br(Index<'a>) : [0x0c] : "br",
515
- BrIf(Index<'a>) : [0x0d] : "br_if",
516
- BrTable(BrTableIndices<'a>) : [0x0e] : "br_table",
517
- Return : [0x0f] : "return",
518
- Call(Index<'a>) : [0x10] : "call",
519
- CallIndirect(Box<CallIndirect<'a>>) : [0x11] : "call_indirect",
520
-
521
- // tail-call proposal
522
- ReturnCall(Index<'a>) : [0x12] : "return_call",
523
- ReturnCallIndirect(Box<CallIndirect<'a>>) : [0x13] : "return_call_indirect",
524
-
525
- // function-references proposal
526
- CallRef(Index<'a>) : [0x14] : "call_ref",
527
- ReturnCallRef(Index<'a>) : [0x15] : "return_call_ref",
528
-
529
- Drop : [0x1a] : "drop",
530
- Select(SelectTypes<'a>) : [] : "select",
531
- LocalGet(Index<'a>) : [0x20] : "local.get",
532
- LocalSet(Index<'a>) : [0x21] : "local.set",
533
- LocalTee(Index<'a>) : [0x22] : "local.tee",
534
- GlobalGet(Index<'a>) : [0x23] : "global.get",
535
- GlobalSet(Index<'a>) : [0x24] : "global.set",
536
-
537
- TableGet(TableArg<'a>) : [0x25] : "table.get",
538
- TableSet(TableArg<'a>) : [0x26] : "table.set",
539
-
540
- I32Load(MemArg<4>) : [0x28] : "i32.load",
541
- I64Load(MemArg<8>) : [0x29] : "i64.load",
542
- F32Load(MemArg<4>) : [0x2a] : "f32.load",
543
- F64Load(MemArg<8>) : [0x2b] : "f64.load",
544
- I32Load8s(MemArg<1>) : [0x2c] : "i32.load8_s",
545
- I32Load8u(MemArg<1>) : [0x2d] : "i32.load8_u",
546
- I32Load16s(MemArg<2>) : [0x2e] : "i32.load16_s",
547
- I32Load16u(MemArg<2>) : [0x2f] : "i32.load16_u",
548
- I64Load8s(MemArg<1>) : [0x30] : "i64.load8_s",
549
- I64Load8u(MemArg<1>) : [0x31] : "i64.load8_u",
550
- I64Load16s(MemArg<2>) : [0x32] : "i64.load16_s",
551
- I64Load16u(MemArg<2>) : [0x33] : "i64.load16_u",
552
- I64Load32s(MemArg<4>) : [0x34] : "i64.load32_s",
553
- I64Load32u(MemArg<4>) : [0x35] : "i64.load32_u",
554
- I32Store(MemArg<4>) : [0x36] : "i32.store",
555
- I64Store(MemArg<8>) : [0x37] : "i64.store",
556
- F32Store(MemArg<4>) : [0x38] : "f32.store",
557
- F64Store(MemArg<8>) : [0x39] : "f64.store",
558
- I32Store8(MemArg<1>) : [0x3a] : "i32.store8",
559
- I32Store16(MemArg<2>) : [0x3b] : "i32.store16",
560
- I64Store8(MemArg<1>) : [0x3c] : "i64.store8",
561
- I64Store16(MemArg<2>) : [0x3d] : "i64.store16",
562
- I64Store32(MemArg<4>) : [0x3e] : "i64.store32",
563
-
564
- // Lots of bulk memory proposal here as well
565
- MemorySize(MemoryArg<'a>) : [0x3f] : "memory.size",
566
- MemoryGrow(MemoryArg<'a>) : [0x40] : "memory.grow",
567
- MemoryInit(MemoryInit<'a>) : [0xfc, 0x08] : "memory.init",
568
- MemoryCopy(MemoryCopy<'a>) : [0xfc, 0x0a] : "memory.copy",
569
- MemoryFill(MemoryArg<'a>) : [0xfc, 0x0b] : "memory.fill",
570
- MemoryDiscard(MemoryArg<'a>) : [0xfc, 0x12] : "memory.discard",
571
- DataDrop(Index<'a>) : [0xfc, 0x09] : "data.drop",
572
- ElemDrop(Index<'a>) : [0xfc, 0x0d] : "elem.drop",
573
- TableInit(TableInit<'a>) : [0xfc, 0x0c] : "table.init",
574
- TableCopy(TableCopy<'a>) : [0xfc, 0x0e] : "table.copy",
575
- TableFill(TableArg<'a>) : [0xfc, 0x11] : "table.fill",
576
- TableSize(TableArg<'a>) : [0xfc, 0x10] : "table.size",
577
- TableGrow(TableArg<'a>) : [0xfc, 0x0f] : "table.grow",
578
-
579
- RefNull(HeapType<'a>) : [0xd0] : "ref.null",
580
- RefIsNull : [0xd1] : "ref.is_null",
581
- RefFunc(Index<'a>) : [0xd2] : "ref.func",
582
-
583
- // function-references proposal
584
- RefAsNonNull : [0xd4] : "ref.as_non_null",
585
- BrOnNull(Index<'a>) : [0xd5] : "br_on_null",
586
- BrOnNonNull(Index<'a>) : [0xd6] : "br_on_non_null",
587
-
588
- // gc proposal: eqref
589
- RefEq : [0xd3] : "ref.eq",
590
-
591
- // gc proposal: struct
592
- StructNew(Index<'a>) : [0xfb, 0x00] : "struct.new",
593
- StructNewDefault(Index<'a>) : [0xfb, 0x01] : "struct.new_default",
594
- StructGet(StructAccess<'a>) : [0xfb, 0x02] : "struct.get",
595
- StructGetS(StructAccess<'a>) : [0xfb, 0x03] : "struct.get_s",
596
- StructGetU(StructAccess<'a>) : [0xfb, 0x04] : "struct.get_u",
597
- StructSet(StructAccess<'a>) : [0xfb, 0x05] : "struct.set",
598
-
599
- // gc proposal: array
600
- ArrayNew(Index<'a>) : [0xfb, 0x06] : "array.new",
601
- ArrayNewDefault(Index<'a>) : [0xfb, 0x07] : "array.new_default",
602
- ArrayNewFixed(ArrayNewFixed<'a>) : [0xfb, 0x08] : "array.new_fixed",
603
- ArrayNewData(ArrayNewData<'a>) : [0xfb, 0x09] : "array.new_data",
604
- ArrayNewElem(ArrayNewElem<'a>) : [0xfb, 0x0a] : "array.new_elem",
605
- ArrayGet(Index<'a>) : [0xfb, 0x0b] : "array.get",
606
- ArrayGetS(Index<'a>) : [0xfb, 0x0c] : "array.get_s",
607
- ArrayGetU(Index<'a>) : [0xfb, 0x0d] : "array.get_u",
608
- ArraySet(Index<'a>) : [0xfb, 0x0e] : "array.set",
609
- ArrayLen : [0xfb, 0x0f] : "array.len",
610
- ArrayFill(ArrayFill<'a>) : [0xfb, 0x10] : "array.fill",
611
- ArrayCopy(ArrayCopy<'a>) : [0xfb, 0x11] : "array.copy",
612
- ArrayInitData(ArrayInit<'a>) : [0xfb, 0x12] : "array.init_data",
613
- ArrayInitElem(ArrayInit<'a>) : [0xfb, 0x13] : "array.init_elem",
614
-
615
- // gc proposal, i31
616
- RefI31 : [0xfb, 0x1c] : "ref.i31",
617
- I31GetS : [0xfb, 0x1d] : "i31.get_s",
618
- I31GetU : [0xfb, 0x1e] : "i31.get_u",
619
-
620
- // gc proposal, concrete casting
621
- RefTest(RefTest<'a>) : [] : "ref.test",
622
- RefCast(RefCast<'a>) : [] : "ref.cast",
623
- BrOnCast(Box<BrOnCast<'a>>) : [] : "br_on_cast",
624
- BrOnCastFail(Box<BrOnCastFail<'a>>) : [] : "br_on_cast_fail",
625
-
626
- // gc proposal extern/any coercion operations
627
- AnyConvertExtern : [0xfb, 0x1a] : "any.convert_extern",
628
- ExternConvertAny : [0xfb, 0x1b] : "extern.convert_any",
629
-
630
- I32Const(i32) : [0x41] : "i32.const",
631
- I64Const(i64) : [0x42] : "i64.const",
632
- F32Const(F32) : [0x43] : "f32.const",
633
- F64Const(F64) : [0x44] : "f64.const",
634
-
635
- I32Clz : [0x67] : "i32.clz",
636
- I32Ctz : [0x68] : "i32.ctz",
637
- I32Popcnt : [0x69] : "i32.popcnt",
638
- I32Add : [0x6a] : "i32.add",
639
- I32Sub : [0x6b] : "i32.sub",
640
- I32Mul : [0x6c] : "i32.mul",
641
- I32DivS : [0x6d] : "i32.div_s",
642
- I32DivU : [0x6e] : "i32.div_u",
643
- I32RemS : [0x6f] : "i32.rem_s",
644
- I32RemU : [0x70] : "i32.rem_u",
645
- I32And : [0x71] : "i32.and",
646
- I32Or : [0x72] : "i32.or",
647
- I32Xor : [0x73] : "i32.xor",
648
- I32Shl : [0x74] : "i32.shl",
649
- I32ShrS : [0x75] : "i32.shr_s",
650
- I32ShrU : [0x76] : "i32.shr_u",
651
- I32Rotl : [0x77] : "i32.rotl",
652
- I32Rotr : [0x78] : "i32.rotr",
653
-
654
- I64Clz : [0x79] : "i64.clz",
655
- I64Ctz : [0x7a] : "i64.ctz",
656
- I64Popcnt : [0x7b] : "i64.popcnt",
657
- I64Add : [0x7c] : "i64.add",
658
- I64Sub : [0x7d] : "i64.sub",
659
- I64Mul : [0x7e] : "i64.mul",
660
- I64DivS : [0x7f] : "i64.div_s",
661
- I64DivU : [0x80] : "i64.div_u",
662
- I64RemS : [0x81] : "i64.rem_s",
663
- I64RemU : [0x82] : "i64.rem_u",
664
- I64And : [0x83] : "i64.and",
665
- I64Or : [0x84] : "i64.or",
666
- I64Xor : [0x85] : "i64.xor",
667
- I64Shl : [0x86] : "i64.shl",
668
- I64ShrS : [0x87] : "i64.shr_s",
669
- I64ShrU : [0x88] : "i64.shr_u",
670
- I64Rotl : [0x89] : "i64.rotl",
671
- I64Rotr : [0x8a] : "i64.rotr",
672
-
673
- F32Abs : [0x8b] : "f32.abs",
674
- F32Neg : [0x8c] : "f32.neg",
675
- F32Ceil : [0x8d] : "f32.ceil",
676
- F32Floor : [0x8e] : "f32.floor",
677
- F32Trunc : [0x8f] : "f32.trunc",
678
- F32Nearest : [0x90] : "f32.nearest",
679
- F32Sqrt : [0x91] : "f32.sqrt",
680
- F32Add : [0x92] : "f32.add",
681
- F32Sub : [0x93] : "f32.sub",
682
- F32Mul : [0x94] : "f32.mul",
683
- F32Div : [0x95] : "f32.div",
684
- F32Min : [0x96] : "f32.min",
685
- F32Max : [0x97] : "f32.max",
686
- F32Copysign : [0x98] : "f32.copysign",
687
-
688
- F64Abs : [0x99] : "f64.abs",
689
- F64Neg : [0x9a] : "f64.neg",
690
- F64Ceil : [0x9b] : "f64.ceil",
691
- F64Floor : [0x9c] : "f64.floor",
692
- F64Trunc : [0x9d] : "f64.trunc",
693
- F64Nearest : [0x9e] : "f64.nearest",
694
- F64Sqrt : [0x9f] : "f64.sqrt",
695
- F64Add : [0xa0] : "f64.add",
696
- F64Sub : [0xa1] : "f64.sub",
697
- F64Mul : [0xa2] : "f64.mul",
698
- F64Div : [0xa3] : "f64.div",
699
- F64Min : [0xa4] : "f64.min",
700
- F64Max : [0xa5] : "f64.max",
701
- F64Copysign : [0xa6] : "f64.copysign",
702
-
703
- I32Eqz : [0x45] : "i32.eqz",
704
- I32Eq : [0x46] : "i32.eq",
705
- I32Ne : [0x47] : "i32.ne",
706
- I32LtS : [0x48] : "i32.lt_s",
707
- I32LtU : [0x49] : "i32.lt_u",
708
- I32GtS : [0x4a] : "i32.gt_s",
709
- I32GtU : [0x4b] : "i32.gt_u",
710
- I32LeS : [0x4c] : "i32.le_s",
711
- I32LeU : [0x4d] : "i32.le_u",
712
- I32GeS : [0x4e] : "i32.ge_s",
713
- I32GeU : [0x4f] : "i32.ge_u",
714
-
715
- I64Eqz : [0x50] : "i64.eqz",
716
- I64Eq : [0x51] : "i64.eq",
717
- I64Ne : [0x52] : "i64.ne",
718
- I64LtS : [0x53] : "i64.lt_s",
719
- I64LtU : [0x54] : "i64.lt_u",
720
- I64GtS : [0x55] : "i64.gt_s",
721
- I64GtU : [0x56] : "i64.gt_u",
722
- I64LeS : [0x57] : "i64.le_s",
723
- I64LeU : [0x58] : "i64.le_u",
724
- I64GeS : [0x59] : "i64.ge_s",
725
- I64GeU : [0x5a] : "i64.ge_u",
726
-
727
- F32Eq : [0x5b] : "f32.eq",
728
- F32Ne : [0x5c] : "f32.ne",
729
- F32Lt : [0x5d] : "f32.lt",
730
- F32Gt : [0x5e] : "f32.gt",
731
- F32Le : [0x5f] : "f32.le",
732
- F32Ge : [0x60] : "f32.ge",
733
-
734
- F64Eq : [0x61] : "f64.eq",
735
- F64Ne : [0x62] : "f64.ne",
736
- F64Lt : [0x63] : "f64.lt",
737
- F64Gt : [0x64] : "f64.gt",
738
- F64Le : [0x65] : "f64.le",
739
- F64Ge : [0x66] : "f64.ge",
740
-
741
- I32WrapI64 : [0xa7] : "i32.wrap_i64",
742
- I32TruncF32S : [0xa8] : "i32.trunc_f32_s",
743
- I32TruncF32U : [0xa9] : "i32.trunc_f32_u",
744
- I32TruncF64S : [0xaa] : "i32.trunc_f64_s",
745
- I32TruncF64U : [0xab] : "i32.trunc_f64_u",
746
- I64ExtendI32S : [0xac] : "i64.extend_i32_s",
747
- I64ExtendI32U : [0xad] : "i64.extend_i32_u",
748
- I64TruncF32S : [0xae] : "i64.trunc_f32_s",
749
- I64TruncF32U : [0xaf] : "i64.trunc_f32_u",
750
- I64TruncF64S : [0xb0] : "i64.trunc_f64_s",
751
- I64TruncF64U : [0xb1] : "i64.trunc_f64_u",
752
- F32ConvertI32S : [0xb2] : "f32.convert_i32_s",
753
- F32ConvertI32U : [0xb3] : "f32.convert_i32_u",
754
- F32ConvertI64S : [0xb4] : "f32.convert_i64_s",
755
- F32ConvertI64U : [0xb5] : "f32.convert_i64_u",
756
- F32DemoteF64 : [0xb6] : "f32.demote_f64",
757
- F64ConvertI32S : [0xb7] : "f64.convert_i32_s",
758
- F64ConvertI32U : [0xb8] : "f64.convert_i32_u",
759
- F64ConvertI64S : [0xb9] : "f64.convert_i64_s",
760
- F64ConvertI64U : [0xba] : "f64.convert_i64_u",
761
- F64PromoteF32 : [0xbb] : "f64.promote_f32",
762
- I32ReinterpretF32 : [0xbc] : "i32.reinterpret_f32",
763
- I64ReinterpretF64 : [0xbd] : "i64.reinterpret_f64",
764
- F32ReinterpretI32 : [0xbe] : "f32.reinterpret_i32",
765
- F64ReinterpretI64 : [0xbf] : "f64.reinterpret_i64",
766
-
767
- // non-trapping float to int
768
- I32TruncSatF32S : [0xfc, 0x00] : "i32.trunc_sat_f32_s",
769
- I32TruncSatF32U : [0xfc, 0x01] : "i32.trunc_sat_f32_u",
770
- I32TruncSatF64S : [0xfc, 0x02] : "i32.trunc_sat_f64_s",
771
- I32TruncSatF64U : [0xfc, 0x03] : "i32.trunc_sat_f64_u",
772
- I64TruncSatF32S : [0xfc, 0x04] : "i64.trunc_sat_f32_s",
773
- I64TruncSatF32U : [0xfc, 0x05] : "i64.trunc_sat_f32_u",
774
- I64TruncSatF64S : [0xfc, 0x06] : "i64.trunc_sat_f64_s",
775
- I64TruncSatF64U : [0xfc, 0x07] : "i64.trunc_sat_f64_u",
776
-
777
- // sign extension proposal
778
- I32Extend8S : [0xc0] : "i32.extend8_s",
779
- I32Extend16S : [0xc1] : "i32.extend16_s",
780
- I64Extend8S : [0xc2] : "i64.extend8_s",
781
- I64Extend16S : [0xc3] : "i64.extend16_s",
782
- I64Extend32S : [0xc4] : "i64.extend32_s",
783
-
784
- // atomics proposal
785
- MemoryAtomicNotify(MemArg<4>) : [0xfe, 0x00] : "memory.atomic.notify",
786
- MemoryAtomicWait32(MemArg<4>) : [0xfe, 0x01] : "memory.atomic.wait32",
787
- MemoryAtomicWait64(MemArg<8>) : [0xfe, 0x02] : "memory.atomic.wait64",
788
- AtomicFence : [0xfe, 0x03, 0x00] : "atomic.fence",
789
-
790
- I32AtomicLoad(MemArg<4>) : [0xfe, 0x10] : "i32.atomic.load",
791
- I64AtomicLoad(MemArg<8>) : [0xfe, 0x11] : "i64.atomic.load",
792
- I32AtomicLoad8u(MemArg<1>) : [0xfe, 0x12] : "i32.atomic.load8_u",
793
- I32AtomicLoad16u(MemArg<2>) : [0xfe, 0x13] : "i32.atomic.load16_u",
794
- I64AtomicLoad8u(MemArg<1>) : [0xfe, 0x14] : "i64.atomic.load8_u",
795
- I64AtomicLoad16u(MemArg<2>) : [0xfe, 0x15] : "i64.atomic.load16_u",
796
- I64AtomicLoad32u(MemArg<4>) : [0xfe, 0x16] : "i64.atomic.load32_u",
797
- I32AtomicStore(MemArg<4>) : [0xfe, 0x17] : "i32.atomic.store",
798
- I64AtomicStore(MemArg<8>) : [0xfe, 0x18] : "i64.atomic.store",
799
- I32AtomicStore8(MemArg<1>) : [0xfe, 0x19] : "i32.atomic.store8",
800
- I32AtomicStore16(MemArg<2>) : [0xfe, 0x1a] : "i32.atomic.store16",
801
- I64AtomicStore8(MemArg<1>) : [0xfe, 0x1b] : "i64.atomic.store8",
802
- I64AtomicStore16(MemArg<2>) : [0xfe, 0x1c] : "i64.atomic.store16",
803
- I64AtomicStore32(MemArg<4>) : [0xfe, 0x1d] : "i64.atomic.store32",
804
-
805
- I32AtomicRmwAdd(MemArg<4>) : [0xfe, 0x1e] : "i32.atomic.rmw.add",
806
- I64AtomicRmwAdd(MemArg<8>) : [0xfe, 0x1f] : "i64.atomic.rmw.add",
807
- I32AtomicRmw8AddU(MemArg<1>) : [0xfe, 0x20] : "i32.atomic.rmw8.add_u",
808
- I32AtomicRmw16AddU(MemArg<2>) : [0xfe, 0x21] : "i32.atomic.rmw16.add_u",
809
- I64AtomicRmw8AddU(MemArg<1>) : [0xfe, 0x22] : "i64.atomic.rmw8.add_u",
810
- I64AtomicRmw16AddU(MemArg<2>) : [0xfe, 0x23] : "i64.atomic.rmw16.add_u",
811
- I64AtomicRmw32AddU(MemArg<4>) : [0xfe, 0x24] : "i64.atomic.rmw32.add_u",
812
-
813
- I32AtomicRmwSub(MemArg<4>) : [0xfe, 0x25] : "i32.atomic.rmw.sub",
814
- I64AtomicRmwSub(MemArg<8>) : [0xfe, 0x26] : "i64.atomic.rmw.sub",
815
- I32AtomicRmw8SubU(MemArg<1>) : [0xfe, 0x27] : "i32.atomic.rmw8.sub_u",
816
- I32AtomicRmw16SubU(MemArg<2>) : [0xfe, 0x28] : "i32.atomic.rmw16.sub_u",
817
- I64AtomicRmw8SubU(MemArg<1>) : [0xfe, 0x29] : "i64.atomic.rmw8.sub_u",
818
- I64AtomicRmw16SubU(MemArg<2>) : [0xfe, 0x2a] : "i64.atomic.rmw16.sub_u",
819
- I64AtomicRmw32SubU(MemArg<4>) : [0xfe, 0x2b] : "i64.atomic.rmw32.sub_u",
820
-
821
- I32AtomicRmwAnd(MemArg<4>) : [0xfe, 0x2c] : "i32.atomic.rmw.and",
822
- I64AtomicRmwAnd(MemArg<8>) : [0xfe, 0x2d] : "i64.atomic.rmw.and",
823
- I32AtomicRmw8AndU(MemArg<1>) : [0xfe, 0x2e] : "i32.atomic.rmw8.and_u",
824
- I32AtomicRmw16AndU(MemArg<2>) : [0xfe, 0x2f] : "i32.atomic.rmw16.and_u",
825
- I64AtomicRmw8AndU(MemArg<1>) : [0xfe, 0x30] : "i64.atomic.rmw8.and_u",
826
- I64AtomicRmw16AndU(MemArg<2>) : [0xfe, 0x31] : "i64.atomic.rmw16.and_u",
827
- I64AtomicRmw32AndU(MemArg<4>) : [0xfe, 0x32] : "i64.atomic.rmw32.and_u",
828
-
829
- I32AtomicRmwOr(MemArg<4>) : [0xfe, 0x33] : "i32.atomic.rmw.or",
830
- I64AtomicRmwOr(MemArg<8>) : [0xfe, 0x34] : "i64.atomic.rmw.or",
831
- I32AtomicRmw8OrU(MemArg<1>) : [0xfe, 0x35] : "i32.atomic.rmw8.or_u",
832
- I32AtomicRmw16OrU(MemArg<2>) : [0xfe, 0x36] : "i32.atomic.rmw16.or_u",
833
- I64AtomicRmw8OrU(MemArg<1>) : [0xfe, 0x37] : "i64.atomic.rmw8.or_u",
834
- I64AtomicRmw16OrU(MemArg<2>) : [0xfe, 0x38] : "i64.atomic.rmw16.or_u",
835
- I64AtomicRmw32OrU(MemArg<4>) : [0xfe, 0x39] : "i64.atomic.rmw32.or_u",
836
-
837
- I32AtomicRmwXor(MemArg<4>) : [0xfe, 0x3a] : "i32.atomic.rmw.xor",
838
- I64AtomicRmwXor(MemArg<8>) : [0xfe, 0x3b] : "i64.atomic.rmw.xor",
839
- I32AtomicRmw8XorU(MemArg<1>) : [0xfe, 0x3c] : "i32.atomic.rmw8.xor_u",
840
- I32AtomicRmw16XorU(MemArg<2>) : [0xfe, 0x3d] : "i32.atomic.rmw16.xor_u",
841
- I64AtomicRmw8XorU(MemArg<1>) : [0xfe, 0x3e] : "i64.atomic.rmw8.xor_u",
842
- I64AtomicRmw16XorU(MemArg<2>) : [0xfe, 0x3f] : "i64.atomic.rmw16.xor_u",
843
- I64AtomicRmw32XorU(MemArg<4>) : [0xfe, 0x40] : "i64.atomic.rmw32.xor_u",
844
-
845
- I32AtomicRmwXchg(MemArg<4>) : [0xfe, 0x41] : "i32.atomic.rmw.xchg",
846
- I64AtomicRmwXchg(MemArg<8>) : [0xfe, 0x42] : "i64.atomic.rmw.xchg",
847
- I32AtomicRmw8XchgU(MemArg<1>) : [0xfe, 0x43] : "i32.atomic.rmw8.xchg_u",
848
- I32AtomicRmw16XchgU(MemArg<2>) : [0xfe, 0x44] : "i32.atomic.rmw16.xchg_u",
849
- I64AtomicRmw8XchgU(MemArg<1>) : [0xfe, 0x45] : "i64.atomic.rmw8.xchg_u",
850
- I64AtomicRmw16XchgU(MemArg<2>) : [0xfe, 0x46] : "i64.atomic.rmw16.xchg_u",
851
- I64AtomicRmw32XchgU(MemArg<4>) : [0xfe, 0x47] : "i64.atomic.rmw32.xchg_u",
852
-
853
- I32AtomicRmwCmpxchg(MemArg<4>) : [0xfe, 0x48] : "i32.atomic.rmw.cmpxchg",
854
- I64AtomicRmwCmpxchg(MemArg<8>) : [0xfe, 0x49] : "i64.atomic.rmw.cmpxchg",
855
- I32AtomicRmw8CmpxchgU(MemArg<1>) : [0xfe, 0x4a] : "i32.atomic.rmw8.cmpxchg_u",
856
- I32AtomicRmw16CmpxchgU(MemArg<2>) : [0xfe, 0x4b] : "i32.atomic.rmw16.cmpxchg_u",
857
- I64AtomicRmw8CmpxchgU(MemArg<1>) : [0xfe, 0x4c] : "i64.atomic.rmw8.cmpxchg_u",
858
- I64AtomicRmw16CmpxchgU(MemArg<2>) : [0xfe, 0x4d] : "i64.atomic.rmw16.cmpxchg_u",
859
- I64AtomicRmw32CmpxchgU(MemArg<4>) : [0xfe, 0x4e] : "i64.atomic.rmw32.cmpxchg_u",
860
-
861
- // proposal: shared-everything-threads
862
- GlobalAtomicGet(Ordered<Index<'a>>) : [0xfe, 0x4f] : "global.atomic.get",
863
- GlobalAtomicSet(Ordered<Index<'a>>) : [0xfe, 0x50] : "global.atomic.set",
864
- GlobalAtomicRmwAdd(Ordered<Index<'a>>) : [0xfe, 0x51] : "global.atomic.rmw.add",
865
- GlobalAtomicRmwSub(Ordered<Index<'a>>) : [0xfe, 0x52] : "global.atomic.rmw.sub",
866
- GlobalAtomicRmwAnd(Ordered<Index<'a>>) : [0xfe, 0x53] : "global.atomic.rmw.and",
867
- GlobalAtomicRmwOr(Ordered<Index<'a>>) : [0xfe, 0x54] : "global.atomic.rmw.or",
868
- GlobalAtomicRmwXor(Ordered<Index<'a>>) : [0xfe, 0x55] : "global.atomic.rmw.xor",
869
- GlobalAtomicRmwXchg(Ordered<Index<'a>>) : [0xfe, 0x56] : "global.atomic.rmw.xchg",
870
- GlobalAtomicRmwCmpxchg(Ordered<Index<'a>>) : [0xfe, 0x57] : "global.atomic.rmw.cmpxchg",
871
- TableAtomicGet(Ordered<TableArg<'a>>) : [0xfe, 0x58] : "table.atomic.get",
872
- TableAtomicSet(Ordered<TableArg<'a>>) : [0xfe, 0x59] : "table.atomic.set",
873
- TableAtomicRmwXchg(Ordered<TableArg<'a>>) : [0xfe, 0x5a] : "table.atomic.rmw.xchg",
874
- TableAtomicRmwCmpxchg(Ordered<TableArg<'a>>) : [0xfe, 0x5b] : "table.atomic.rmw.cmpxchg",
875
- StructAtomicGet(Ordered<StructAccess<'a>>) : [0xfe, 0x5c] : "struct.atomic.get",
876
- StructAtomicGetS(Ordered<StructAccess<'a>>) : [0xfe, 0x5d] : "struct.atomic.get_s",
877
- StructAtomicGetU(Ordered<StructAccess<'a>>) : [0xfe, 0x5e] : "struct.atomic.get_u",
878
- StructAtomicSet(Ordered<StructAccess<'a>>) : [0xfe, 0x5f] : "struct.atomic.set",
879
- StructAtomicRmwAdd(Ordered<StructAccess<'a>>) : [0xfe, 0x60] : "struct.atomic.rmw.add",
880
- StructAtomicRmwSub(Ordered<StructAccess<'a>>) : [0xfe, 0x61] : "struct.atomic.rmw.sub",
881
- StructAtomicRmwAnd(Ordered<StructAccess<'a>>) : [0xfe, 0x62] : "struct.atomic.rmw.and",
882
- StructAtomicRmwOr(Ordered<StructAccess<'a>>) : [0xfe, 0x63] : "struct.atomic.rmw.or",
883
- StructAtomicRmwXor(Ordered<StructAccess<'a>>) : [0xfe, 0x64] : "struct.atomic.rmw.xor",
884
- StructAtomicRmwXchg(Ordered<StructAccess<'a>>) : [0xfe, 0x65] : "struct.atomic.rmw.xchg",
885
- StructAtomicRmwCmpxchg(Ordered<StructAccess<'a>>) : [0xfe, 0x66] : "struct.atomic.rmw.cmpxchg",
886
- ArrayAtomicGet(Ordered<Index<'a>>) : [0xfe, 0x67] : "array.atomic.get",
887
- ArrayAtomicGetS(Ordered<Index<'a>>) : [0xfe, 0x68] : "array.atomic.get_s",
888
- ArrayAtomicGetU(Ordered<Index<'a>>) : [0xfe, 0x69] : "array.atomic.get_u",
889
- ArrayAtomicSet(Ordered<Index<'a>>) : [0xfe, 0x6a] : "array.atomic.set",
890
- ArrayAtomicRmwAdd(Ordered<Index<'a>>) : [0xfe, 0x6b] : "array.atomic.rmw.add",
891
- ArrayAtomicRmwSub(Ordered<Index<'a>>) : [0xfe, 0x6c] : "array.atomic.rmw.sub",
892
- ArrayAtomicRmwAnd(Ordered<Index<'a>>) : [0xfe, 0x6d] : "array.atomic.rmw.and",
893
- ArrayAtomicRmwOr(Ordered<Index<'a>>) : [0xfe, 0x6e] : "array.atomic.rmw.or",
894
- ArrayAtomicRmwXor(Ordered<Index<'a>>) : [0xfe, 0x6f] : "array.atomic.rmw.xor",
895
- ArrayAtomicRmwXchg(Ordered<Index<'a>>) : [0xfe, 0x70] : "array.atomic.rmw.xchg",
896
- ArrayAtomicRmwCmpxchg(Ordered<Index<'a>>) : [0xfe, 0x71] : "array.atomic.rmw.cmpxchg",
897
- RefI31Shared : [0xfe, 0x72] : "ref.i31_shared",
898
-
899
- // proposal: simd
900
- //
901
- // https://webassembly.github.io/simd/core/binary/instructions.html
902
- V128Load(MemArg<16>) : [0xfd, 0] : "v128.load",
903
- V128Load8x8S(MemArg<8>) : [0xfd, 1] : "v128.load8x8_s",
904
- V128Load8x8U(MemArg<8>) : [0xfd, 2] : "v128.load8x8_u",
905
- V128Load16x4S(MemArg<8>) : [0xfd, 3] : "v128.load16x4_s",
906
- V128Load16x4U(MemArg<8>) : [0xfd, 4] : "v128.load16x4_u",
907
- V128Load32x2S(MemArg<8>) : [0xfd, 5] : "v128.load32x2_s",
908
- V128Load32x2U(MemArg<8>) : [0xfd, 6] : "v128.load32x2_u",
909
- V128Load8Splat(MemArg<1>) : [0xfd, 7] : "v128.load8_splat",
910
- V128Load16Splat(MemArg<2>) : [0xfd, 8] : "v128.load16_splat",
911
- V128Load32Splat(MemArg<4>) : [0xfd, 9] : "v128.load32_splat",
912
- V128Load64Splat(MemArg<8>) : [0xfd, 10] : "v128.load64_splat",
913
- V128Load32Zero(MemArg<4>) : [0xfd, 92] : "v128.load32_zero",
914
- V128Load64Zero(MemArg<8>) : [0xfd, 93] : "v128.load64_zero",
915
- V128Store(MemArg<16>) : [0xfd, 11] : "v128.store",
916
-
917
- V128Load8Lane(LoadOrStoreLane<1>) : [0xfd, 84] : "v128.load8_lane",
918
- V128Load16Lane(LoadOrStoreLane<2>) : [0xfd, 85] : "v128.load16_lane",
919
- V128Load32Lane(LoadOrStoreLane<4>) : [0xfd, 86] : "v128.load32_lane",
920
- V128Load64Lane(LoadOrStoreLane<8>): [0xfd, 87] : "v128.load64_lane",
921
- V128Store8Lane(LoadOrStoreLane<1>) : [0xfd, 88] : "v128.store8_lane",
922
- V128Store16Lane(LoadOrStoreLane<2>) : [0xfd, 89] : "v128.store16_lane",
923
- V128Store32Lane(LoadOrStoreLane<4>) : [0xfd, 90] : "v128.store32_lane",
924
- V128Store64Lane(LoadOrStoreLane<8>) : [0xfd, 91] : "v128.store64_lane",
925
-
926
- V128Const(V128Const) : [0xfd, 12] : "v128.const",
927
- I8x16Shuffle(I8x16Shuffle) : [0xfd, 13] : "i8x16.shuffle",
928
-
929
- I8x16ExtractLaneS(LaneArg) : [0xfd, 21] : "i8x16.extract_lane_s",
930
- I8x16ExtractLaneU(LaneArg) : [0xfd, 22] : "i8x16.extract_lane_u",
931
- I8x16ReplaceLane(LaneArg) : [0xfd, 23] : "i8x16.replace_lane",
932
- I16x8ExtractLaneS(LaneArg) : [0xfd, 24] : "i16x8.extract_lane_s",
933
- I16x8ExtractLaneU(LaneArg) : [0xfd, 25] : "i16x8.extract_lane_u",
934
- I16x8ReplaceLane(LaneArg) : [0xfd, 26] : "i16x8.replace_lane",
935
- I32x4ExtractLane(LaneArg) : [0xfd, 27] : "i32x4.extract_lane",
936
- I32x4ReplaceLane(LaneArg) : [0xfd, 28] : "i32x4.replace_lane",
937
- I64x2ExtractLane(LaneArg) : [0xfd, 29] : "i64x2.extract_lane",
938
- I64x2ReplaceLane(LaneArg) : [0xfd, 30] : "i64x2.replace_lane",
939
- F32x4ExtractLane(LaneArg) : [0xfd, 31] : "f32x4.extract_lane",
940
- F32x4ReplaceLane(LaneArg) : [0xfd, 32] : "f32x4.replace_lane",
941
- F64x2ExtractLane(LaneArg) : [0xfd, 33] : "f64x2.extract_lane",
942
- F64x2ReplaceLane(LaneArg) : [0xfd, 34] : "f64x2.replace_lane",
943
-
944
- I8x16Swizzle : [0xfd, 14] : "i8x16.swizzle",
945
- I8x16Splat : [0xfd, 15] : "i8x16.splat",
946
- I16x8Splat : [0xfd, 16] : "i16x8.splat",
947
- I32x4Splat : [0xfd, 17] : "i32x4.splat",
948
- I64x2Splat : [0xfd, 18] : "i64x2.splat",
949
- F32x4Splat : [0xfd, 19] : "f32x4.splat",
950
- F64x2Splat : [0xfd, 20] : "f64x2.splat",
951
-
952
- I8x16Eq : [0xfd, 35] : "i8x16.eq",
953
- I8x16Ne : [0xfd, 36] : "i8x16.ne",
954
- I8x16LtS : [0xfd, 37] : "i8x16.lt_s",
955
- I8x16LtU : [0xfd, 38] : "i8x16.lt_u",
956
- I8x16GtS : [0xfd, 39] : "i8x16.gt_s",
957
- I8x16GtU : [0xfd, 40] : "i8x16.gt_u",
958
- I8x16LeS : [0xfd, 41] : "i8x16.le_s",
959
- I8x16LeU : [0xfd, 42] : "i8x16.le_u",
960
- I8x16GeS : [0xfd, 43] : "i8x16.ge_s",
961
- I8x16GeU : [0xfd, 44] : "i8x16.ge_u",
962
-
963
- I16x8Eq : [0xfd, 45] : "i16x8.eq",
964
- I16x8Ne : [0xfd, 46] : "i16x8.ne",
965
- I16x8LtS : [0xfd, 47] : "i16x8.lt_s",
966
- I16x8LtU : [0xfd, 48] : "i16x8.lt_u",
967
- I16x8GtS : [0xfd, 49] : "i16x8.gt_s",
968
- I16x8GtU : [0xfd, 50] : "i16x8.gt_u",
969
- I16x8LeS : [0xfd, 51] : "i16x8.le_s",
970
- I16x8LeU : [0xfd, 52] : "i16x8.le_u",
971
- I16x8GeS : [0xfd, 53] : "i16x8.ge_s",
972
- I16x8GeU : [0xfd, 54] : "i16x8.ge_u",
973
-
974
- I32x4Eq : [0xfd, 55] : "i32x4.eq",
975
- I32x4Ne : [0xfd, 56] : "i32x4.ne",
976
- I32x4LtS : [0xfd, 57] : "i32x4.lt_s",
977
- I32x4LtU : [0xfd, 58] : "i32x4.lt_u",
978
- I32x4GtS : [0xfd, 59] : "i32x4.gt_s",
979
- I32x4GtU : [0xfd, 60] : "i32x4.gt_u",
980
- I32x4LeS : [0xfd, 61] : "i32x4.le_s",
981
- I32x4LeU : [0xfd, 62] : "i32x4.le_u",
982
- I32x4GeS : [0xfd, 63] : "i32x4.ge_s",
983
- I32x4GeU : [0xfd, 64] : "i32x4.ge_u",
984
-
985
- I64x2Eq : [0xfd, 214] : "i64x2.eq",
986
- I64x2Ne : [0xfd, 215] : "i64x2.ne",
987
- I64x2LtS : [0xfd, 216] : "i64x2.lt_s",
988
- I64x2GtS : [0xfd, 217] : "i64x2.gt_s",
989
- I64x2LeS : [0xfd, 218] : "i64x2.le_s",
990
- I64x2GeS : [0xfd, 219] : "i64x2.ge_s",
991
-
992
- F32x4Eq : [0xfd, 65] : "f32x4.eq",
993
- F32x4Ne : [0xfd, 66] : "f32x4.ne",
994
- F32x4Lt : [0xfd, 67] : "f32x4.lt",
995
- F32x4Gt : [0xfd, 68] : "f32x4.gt",
996
- F32x4Le : [0xfd, 69] : "f32x4.le",
997
- F32x4Ge : [0xfd, 70] : "f32x4.ge",
998
-
999
- F64x2Eq : [0xfd, 71] : "f64x2.eq",
1000
- F64x2Ne : [0xfd, 72] : "f64x2.ne",
1001
- F64x2Lt : [0xfd, 73] : "f64x2.lt",
1002
- F64x2Gt : [0xfd, 74] : "f64x2.gt",
1003
- F64x2Le : [0xfd, 75] : "f64x2.le",
1004
- F64x2Ge : [0xfd, 76] : "f64x2.ge",
1005
-
1006
- V128Not : [0xfd, 77] : "v128.not",
1007
- V128And : [0xfd, 78] : "v128.and",
1008
- V128Andnot : [0xfd, 79] : "v128.andnot",
1009
- V128Or : [0xfd, 80] : "v128.or",
1010
- V128Xor : [0xfd, 81] : "v128.xor",
1011
- V128Bitselect : [0xfd, 82] : "v128.bitselect",
1012
- V128AnyTrue : [0xfd, 83] : "v128.any_true",
1013
-
1014
- I8x16Abs : [0xfd, 96] : "i8x16.abs",
1015
- I8x16Neg : [0xfd, 97] : "i8x16.neg",
1016
- I8x16Popcnt : [0xfd, 98] : "i8x16.popcnt",
1017
- I8x16AllTrue : [0xfd, 99] : "i8x16.all_true",
1018
- I8x16Bitmask : [0xfd, 100] : "i8x16.bitmask",
1019
- I8x16NarrowI16x8S : [0xfd, 101] : "i8x16.narrow_i16x8_s",
1020
- I8x16NarrowI16x8U : [0xfd, 102] : "i8x16.narrow_i16x8_u",
1021
- I8x16Shl : [0xfd, 107] : "i8x16.shl",
1022
- I8x16ShrS : [0xfd, 108] : "i8x16.shr_s",
1023
- I8x16ShrU : [0xfd, 109] : "i8x16.shr_u",
1024
- I8x16Add : [0xfd, 110] : "i8x16.add",
1025
- I8x16AddSatS : [0xfd, 111] : "i8x16.add_sat_s",
1026
- I8x16AddSatU : [0xfd, 112] : "i8x16.add_sat_u",
1027
- I8x16Sub : [0xfd, 113] : "i8x16.sub",
1028
- I8x16SubSatS : [0xfd, 114] : "i8x16.sub_sat_s",
1029
- I8x16SubSatU : [0xfd, 115] : "i8x16.sub_sat_u",
1030
- I8x16MinS : [0xfd, 118] : "i8x16.min_s",
1031
- I8x16MinU : [0xfd, 119] : "i8x16.min_u",
1032
- I8x16MaxS : [0xfd, 120] : "i8x16.max_s",
1033
- I8x16MaxU : [0xfd, 121] : "i8x16.max_u",
1034
- I8x16AvgrU : [0xfd, 123] : "i8x16.avgr_u",
1035
-
1036
- I16x8ExtAddPairwiseI8x16S : [0xfd, 124] : "i16x8.extadd_pairwise_i8x16_s",
1037
- I16x8ExtAddPairwiseI8x16U : [0xfd, 125] : "i16x8.extadd_pairwise_i8x16_u",
1038
- I16x8Abs : [0xfd, 128] : "i16x8.abs",
1039
- I16x8Neg : [0xfd, 129] : "i16x8.neg",
1040
- I16x8Q15MulrSatS : [0xfd, 130] : "i16x8.q15mulr_sat_s",
1041
- I16x8AllTrue : [0xfd, 131] : "i16x8.all_true",
1042
- I16x8Bitmask : [0xfd, 132] : "i16x8.bitmask",
1043
- I16x8NarrowI32x4S : [0xfd, 133] : "i16x8.narrow_i32x4_s",
1044
- I16x8NarrowI32x4U : [0xfd, 134] : "i16x8.narrow_i32x4_u",
1045
- I16x8ExtendLowI8x16S : [0xfd, 135] : "i16x8.extend_low_i8x16_s",
1046
- I16x8ExtendHighI8x16S : [0xfd, 136] : "i16x8.extend_high_i8x16_s",
1047
- I16x8ExtendLowI8x16U : [0xfd, 137] : "i16x8.extend_low_i8x16_u",
1048
- I16x8ExtendHighI8x16u : [0xfd, 138] : "i16x8.extend_high_i8x16_u",
1049
- I16x8Shl : [0xfd, 139] : "i16x8.shl",
1050
- I16x8ShrS : [0xfd, 140] : "i16x8.shr_s",
1051
- I16x8ShrU : [0xfd, 141] : "i16x8.shr_u",
1052
- I16x8Add : [0xfd, 142] : "i16x8.add",
1053
- I16x8AddSatS : [0xfd, 143] : "i16x8.add_sat_s",
1054
- I16x8AddSatU : [0xfd, 144] : "i16x8.add_sat_u",
1055
- I16x8Sub : [0xfd, 145] : "i16x8.sub",
1056
- I16x8SubSatS : [0xfd, 146] : "i16x8.sub_sat_s",
1057
- I16x8SubSatU : [0xfd, 147] : "i16x8.sub_sat_u",
1058
- I16x8Mul : [0xfd, 149] : "i16x8.mul",
1059
- I16x8MinS : [0xfd, 150] : "i16x8.min_s",
1060
- I16x8MinU : [0xfd, 151] : "i16x8.min_u",
1061
- I16x8MaxS : [0xfd, 152] : "i16x8.max_s",
1062
- I16x8MaxU : [0xfd, 153] : "i16x8.max_u",
1063
- I16x8AvgrU : [0xfd, 155] : "i16x8.avgr_u",
1064
- I16x8ExtMulLowI8x16S : [0xfd, 156] : "i16x8.extmul_low_i8x16_s",
1065
- I16x8ExtMulHighI8x16S : [0xfd, 157] : "i16x8.extmul_high_i8x16_s",
1066
- I16x8ExtMulLowI8x16U : [0xfd, 158] : "i16x8.extmul_low_i8x16_u",
1067
- I16x8ExtMulHighI8x16U : [0xfd, 159] : "i16x8.extmul_high_i8x16_u",
1068
-
1069
- I32x4ExtAddPairwiseI16x8S : [0xfd, 126] : "i32x4.extadd_pairwise_i16x8_s",
1070
- I32x4ExtAddPairwiseI16x8U : [0xfd, 127] : "i32x4.extadd_pairwise_i16x8_u",
1071
- I32x4Abs : [0xfd, 160] : "i32x4.abs",
1072
- I32x4Neg : [0xfd, 161] : "i32x4.neg",
1073
- I32x4AllTrue : [0xfd, 163] : "i32x4.all_true",
1074
- I32x4Bitmask : [0xfd, 164] : "i32x4.bitmask",
1075
- I32x4ExtendLowI16x8S : [0xfd, 167] : "i32x4.extend_low_i16x8_s",
1076
- I32x4ExtendHighI16x8S : [0xfd, 168] : "i32x4.extend_high_i16x8_s",
1077
- I32x4ExtendLowI16x8U : [0xfd, 169] : "i32x4.extend_low_i16x8_u",
1078
- I32x4ExtendHighI16x8U : [0xfd, 170] : "i32x4.extend_high_i16x8_u",
1079
- I32x4Shl : [0xfd, 171] : "i32x4.shl",
1080
- I32x4ShrS : [0xfd, 172] : "i32x4.shr_s",
1081
- I32x4ShrU : [0xfd, 173] : "i32x4.shr_u",
1082
- I32x4Add : [0xfd, 174] : "i32x4.add",
1083
- I32x4Sub : [0xfd, 177] : "i32x4.sub",
1084
- I32x4Mul : [0xfd, 181] : "i32x4.mul",
1085
- I32x4MinS : [0xfd, 182] : "i32x4.min_s",
1086
- I32x4MinU : [0xfd, 183] : "i32x4.min_u",
1087
- I32x4MaxS : [0xfd, 184] : "i32x4.max_s",
1088
- I32x4MaxU : [0xfd, 185] : "i32x4.max_u",
1089
- I32x4DotI16x8S : [0xfd, 186] : "i32x4.dot_i16x8_s",
1090
- I32x4ExtMulLowI16x8S : [0xfd, 188] : "i32x4.extmul_low_i16x8_s",
1091
- I32x4ExtMulHighI16x8S : [0xfd, 189] : "i32x4.extmul_high_i16x8_s",
1092
- I32x4ExtMulLowI16x8U : [0xfd, 190] : "i32x4.extmul_low_i16x8_u",
1093
- I32x4ExtMulHighI16x8U : [0xfd, 191] : "i32x4.extmul_high_i16x8_u",
1094
-
1095
- I64x2Abs : [0xfd, 192] : "i64x2.abs",
1096
- I64x2Neg : [0xfd, 193] : "i64x2.neg",
1097
- I64x2AllTrue : [0xfd, 195] : "i64x2.all_true",
1098
- I64x2Bitmask : [0xfd, 196] : "i64x2.bitmask",
1099
- I64x2ExtendLowI32x4S : [0xfd, 199] : "i64x2.extend_low_i32x4_s",
1100
- I64x2ExtendHighI32x4S : [0xfd, 200] : "i64x2.extend_high_i32x4_s",
1101
- I64x2ExtendLowI32x4U : [0xfd, 201] : "i64x2.extend_low_i32x4_u",
1102
- I64x2ExtendHighI32x4U : [0xfd, 202] : "i64x2.extend_high_i32x4_u",
1103
- I64x2Shl : [0xfd, 203] : "i64x2.shl",
1104
- I64x2ShrS : [0xfd, 204] : "i64x2.shr_s",
1105
- I64x2ShrU : [0xfd, 205] : "i64x2.shr_u",
1106
- I64x2Add : [0xfd, 206] : "i64x2.add",
1107
- I64x2Sub : [0xfd, 209] : "i64x2.sub",
1108
- I64x2Mul : [0xfd, 213] : "i64x2.mul",
1109
- I64x2ExtMulLowI32x4S : [0xfd, 220] : "i64x2.extmul_low_i32x4_s",
1110
- I64x2ExtMulHighI32x4S : [0xfd, 221] : "i64x2.extmul_high_i32x4_s",
1111
- I64x2ExtMulLowI32x4U : [0xfd, 222] : "i64x2.extmul_low_i32x4_u",
1112
- I64x2ExtMulHighI32x4U : [0xfd, 223] : "i64x2.extmul_high_i32x4_u",
1113
-
1114
- F32x4Ceil : [0xfd, 103] : "f32x4.ceil",
1115
- F32x4Floor : [0xfd, 104] : "f32x4.floor",
1116
- F32x4Trunc : [0xfd, 105] : "f32x4.trunc",
1117
- F32x4Nearest : [0xfd, 106] : "f32x4.nearest",
1118
- F32x4Abs : [0xfd, 224] : "f32x4.abs",
1119
- F32x4Neg : [0xfd, 225] : "f32x4.neg",
1120
- F32x4Sqrt : [0xfd, 227] : "f32x4.sqrt",
1121
- F32x4Add : [0xfd, 228] : "f32x4.add",
1122
- F32x4Sub : [0xfd, 229] : "f32x4.sub",
1123
- F32x4Mul : [0xfd, 230] : "f32x4.mul",
1124
- F32x4Div : [0xfd, 231] : "f32x4.div",
1125
- F32x4Min : [0xfd, 232] : "f32x4.min",
1126
- F32x4Max : [0xfd, 233] : "f32x4.max",
1127
- F32x4PMin : [0xfd, 234] : "f32x4.pmin",
1128
- F32x4PMax : [0xfd, 235] : "f32x4.pmax",
1129
-
1130
- F64x2Ceil : [0xfd, 116] : "f64x2.ceil",
1131
- F64x2Floor : [0xfd, 117] : "f64x2.floor",
1132
- F64x2Trunc : [0xfd, 122] : "f64x2.trunc",
1133
- F64x2Nearest : [0xfd, 148] : "f64x2.nearest",
1134
- F64x2Abs : [0xfd, 236] : "f64x2.abs",
1135
- F64x2Neg : [0xfd, 237] : "f64x2.neg",
1136
- F64x2Sqrt : [0xfd, 239] : "f64x2.sqrt",
1137
- F64x2Add : [0xfd, 240] : "f64x2.add",
1138
- F64x2Sub : [0xfd, 241] : "f64x2.sub",
1139
- F64x2Mul : [0xfd, 242] : "f64x2.mul",
1140
- F64x2Div : [0xfd, 243] : "f64x2.div",
1141
- F64x2Min : [0xfd, 244] : "f64x2.min",
1142
- F64x2Max : [0xfd, 245] : "f64x2.max",
1143
- F64x2PMin : [0xfd, 246] : "f64x2.pmin",
1144
- F64x2PMax : [0xfd, 247] : "f64x2.pmax",
1145
-
1146
- I32x4TruncSatF32x4S : [0xfd, 248] : "i32x4.trunc_sat_f32x4_s",
1147
- I32x4TruncSatF32x4U : [0xfd, 249] : "i32x4.trunc_sat_f32x4_u",
1148
- F32x4ConvertI32x4S : [0xfd, 250] : "f32x4.convert_i32x4_s",
1149
- F32x4ConvertI32x4U : [0xfd, 251] : "f32x4.convert_i32x4_u",
1150
- I32x4TruncSatF64x2SZero : [0xfd, 252] : "i32x4.trunc_sat_f64x2_s_zero",
1151
- I32x4TruncSatF64x2UZero : [0xfd, 253] : "i32x4.trunc_sat_f64x2_u_zero",
1152
- F64x2ConvertLowI32x4S : [0xfd, 254] : "f64x2.convert_low_i32x4_s",
1153
- F64x2ConvertLowI32x4U : [0xfd, 255] : "f64x2.convert_low_i32x4_u",
1154
- F32x4DemoteF64x2Zero : [0xfd, 94] : "f32x4.demote_f64x2_zero",
1155
- F64x2PromoteLowF32x4 : [0xfd, 95] : "f64x2.promote_low_f32x4",
1156
-
1157
- // Exception handling proposal
1158
- ThrowRef : [0x0a] : "throw_ref",
1159
- TryTable(TryTable<'a>) : [0x1f] : "try_table",
1160
- Throw(Index<'a>) : [0x08] : "throw",
1161
-
1162
- // Deprecated exception handling opcodes
1163
- Try(Box<BlockType<'a>>) : [0x06] : "try",
1164
- Catch(Index<'a>) : [0x07] : "catch",
1165
- Rethrow(Index<'a>) : [0x09] : "rethrow",
1166
- Delegate(Index<'a>) : [0x18] : "delegate",
1167
- CatchAll : [0x19] : "catch_all",
1168
-
1169
- // Relaxed SIMD proposal
1170
- I8x16RelaxedSwizzle : [0xfd, 0x100]: "i8x16.relaxed_swizzle",
1171
- I32x4RelaxedTruncF32x4S : [0xfd, 0x101]: "i32x4.relaxed_trunc_f32x4_s",
1172
- I32x4RelaxedTruncF32x4U : [0xfd, 0x102]: "i32x4.relaxed_trunc_f32x4_u",
1173
- I32x4RelaxedTruncF64x2SZero : [0xfd, 0x103]: "i32x4.relaxed_trunc_f64x2_s_zero",
1174
- I32x4RelaxedTruncF64x2UZero : [0xfd, 0x104]: "i32x4.relaxed_trunc_f64x2_u_zero",
1175
- F32x4RelaxedMadd : [0xfd, 0x105]: "f32x4.relaxed_madd",
1176
- F32x4RelaxedNmadd : [0xfd, 0x106]: "f32x4.relaxed_nmadd",
1177
- F64x2RelaxedMadd : [0xfd, 0x107]: "f64x2.relaxed_madd",
1178
- F64x2RelaxedNmadd : [0xfd, 0x108]: "f64x2.relaxed_nmadd",
1179
- I8x16RelaxedLaneselect : [0xfd, 0x109]: "i8x16.relaxed_laneselect",
1180
- I16x8RelaxedLaneselect : [0xfd, 0x10A]: "i16x8.relaxed_laneselect",
1181
- I32x4RelaxedLaneselect : [0xfd, 0x10B]: "i32x4.relaxed_laneselect",
1182
- I64x2RelaxedLaneselect : [0xfd, 0x10C]: "i64x2.relaxed_laneselect",
1183
- F32x4RelaxedMin : [0xfd, 0x10D]: "f32x4.relaxed_min",
1184
- F32x4RelaxedMax : [0xfd, 0x10E]: "f32x4.relaxed_max",
1185
- F64x2RelaxedMin : [0xfd, 0x10F]: "f64x2.relaxed_min",
1186
- F64x2RelaxedMax : [0xfd, 0x110]: "f64x2.relaxed_max",
1187
- I16x8RelaxedQ15mulrS: [0xfd, 0x111]: "i16x8.relaxed_q15mulr_s",
1188
- I16x8RelaxedDotI8x16I7x16S: [0xfd, 0x112]: "i16x8.relaxed_dot_i8x16_i7x16_s",
1189
- I32x4RelaxedDotI8x16I7x16AddS: [0xfd, 0x113]: "i32x4.relaxed_dot_i8x16_i7x16_add_s",
1190
- }
1191
- }
1192
-
1193
- // As shown in #1095 the size of this variant is somewhat performance-sensitive
1194
- // since big `*.wat` files will have a lot of these. This is a small ratchet to
1195
- // make sure that this enum doesn't become larger than it already is, although
1196
- // ideally it also wouldn't be as large as it is now.
1197
- const _: () = {
1198
- let size = std::mem::size_of::<Instruction<'_>>();
1199
- let pointer = std::mem::size_of::<u64>();
1200
- assert!(size <= pointer * 10);
1201
- };
1202
-
1203
- impl<'a> Instruction<'a> {
1204
- pub(crate) fn needs_data_count(&self) -> bool {
1205
- match self {
1206
- Instruction::MemoryInit(_)
1207
- | Instruction::DataDrop(_)
1208
- | Instruction::ArrayNewData(_)
1209
- | Instruction::ArrayInitData(_) => true,
1210
- _ => false,
1211
- }
1212
- }
1213
- }
1214
-
1215
- /// Extra information associated with block-related instructions.
1216
- ///
1217
- /// This is used to label blocks and also annotate what types are expected for
1218
- /// the block.
1219
- #[derive(Debug, Clone)]
1220
- #[allow(missing_docs)]
1221
- pub struct BlockType<'a> {
1222
- pub label: Option<Id<'a>>,
1223
- pub label_name: Option<NameAnnotation<'a>>,
1224
- pub ty: TypeUse<'a, FunctionType<'a>>,
1225
- }
1226
-
1227
- impl<'a> Parse<'a> for BlockType<'a> {
1228
- fn parse(parser: Parser<'a>) -> Result<Self> {
1229
- Ok(BlockType {
1230
- label: parser.parse()?,
1231
- label_name: parser.parse()?,
1232
- ty: parser
1233
- .parse::<TypeUse<'a, FunctionTypeNoNames<'a>>>()?
1234
- .into(),
1235
- })
1236
- }
1237
- }
1238
-
1239
- #[derive(Debug, Clone)]
1240
- #[allow(missing_docs)]
1241
- pub struct TryTable<'a> {
1242
- pub block: Box<BlockType<'a>>,
1243
- pub catches: Vec<TryTableCatch<'a>>,
1244
- }
1245
-
1246
- impl<'a> Parse<'a> for TryTable<'a> {
1247
- fn parse(parser: Parser<'a>) -> Result<Self> {
1248
- let block = parser.parse()?;
1249
-
1250
- let mut catches = Vec::new();
1251
- while parser.peek::<LParen>()?
1252
- && (parser.peek2::<kw::catch>()?
1253
- || parser.peek2::<kw::catch_ref>()?
1254
- || parser.peek2::<kw::catch_all>()?
1255
- || parser.peek2::<kw::catch_all_ref>()?)
1256
- {
1257
- catches.push(parser.parens(|p| {
1258
- let kind = if parser.peek::<kw::catch_ref>()? {
1259
- p.parse::<kw::catch_ref>()?;
1260
- TryTableCatchKind::CatchRef(p.parse()?)
1261
- } else if parser.peek::<kw::catch>()? {
1262
- p.parse::<kw::catch>()?;
1263
- TryTableCatchKind::Catch(p.parse()?)
1264
- } else if parser.peek::<kw::catch_all>()? {
1265
- p.parse::<kw::catch_all>()?;
1266
- TryTableCatchKind::CatchAll
1267
- } else {
1268
- p.parse::<kw::catch_all_ref>()?;
1269
- TryTableCatchKind::CatchAllRef
1270
- };
1271
-
1272
- Ok(TryTableCatch {
1273
- kind,
1274
- label: p.parse()?,
1275
- })
1276
- })?);
1277
- }
1278
-
1279
- Ok(TryTable { block, catches })
1280
- }
1281
- }
1282
-
1283
- #[derive(Debug, Clone)]
1284
- #[allow(missing_docs)]
1285
- pub enum TryTableCatchKind<'a> {
1286
- // Catch a tagged exception, do not capture an exnref.
1287
- Catch(Index<'a>),
1288
- // Catch a tagged exception, and capture the exnref.
1289
- CatchRef(Index<'a>),
1290
- // Catch any exception, do not capture an exnref.
1291
- CatchAll,
1292
- // Catch any exception, and capture the exnref.
1293
- CatchAllRef,
1294
- }
1295
-
1296
- impl<'a> TryTableCatchKind<'a> {
1297
- #[allow(missing_docs)]
1298
- pub fn tag_index_mut(&mut self) -> Option<&mut Index<'a>> {
1299
- match self {
1300
- TryTableCatchKind::Catch(tag) | TryTableCatchKind::CatchRef(tag) => Some(tag),
1301
- TryTableCatchKind::CatchAll | TryTableCatchKind::CatchAllRef => None,
1302
- }
1303
- }
1304
- }
1305
-
1306
- #[derive(Debug, Clone)]
1307
- #[allow(missing_docs)]
1308
- pub struct TryTableCatch<'a> {
1309
- pub kind: TryTableCatchKind<'a>,
1310
- pub label: Index<'a>,
1311
- }
1312
-
1313
- /// Extra information associated with the `br_table` instruction.
1314
- #[allow(missing_docs)]
1315
- #[derive(Debug, Clone)]
1316
- pub struct BrTableIndices<'a> {
1317
- pub labels: Vec<Index<'a>>,
1318
- pub default: Index<'a>,
1319
- }
1320
-
1321
- impl<'a> Parse<'a> for BrTableIndices<'a> {
1322
- fn parse(parser: Parser<'a>) -> Result<Self> {
1323
- let mut labels = vec![parser.parse()?];
1324
- while parser.peek::<Index>()? {
1325
- labels.push(parser.parse()?);
1326
- }
1327
- let default = labels.pop().unwrap();
1328
- Ok(BrTableIndices { labels, default })
1329
- }
1330
- }
1331
-
1332
- /// Payload for lane-related instructions. Unsigned with no + prefix.
1333
- #[derive(Debug, Clone)]
1334
- pub struct LaneArg {
1335
- /// The lane argument.
1336
- pub lane: u8,
1337
- }
1338
-
1339
- impl<'a> Parse<'a> for LaneArg {
1340
- fn parse(parser: Parser<'a>) -> Result<Self> {
1341
- let lane = parser.step(|c| {
1342
- if let Some((i, rest)) = c.integer()? {
1343
- if i.sign() == None {
1344
- let (src, radix) = i.val();
1345
- let val = u8::from_str_radix(src, radix)
1346
- .map_err(|_| c.error("malformed lane index"))?;
1347
- Ok((val, rest))
1348
- } else {
1349
- Err(c.error("unexpected token"))
1350
- }
1351
- } else {
1352
- Err(c.error("expected a lane index"))
1353
- }
1354
- })?;
1355
- Ok(LaneArg { lane })
1356
- }
1357
- }
1358
-
1359
- /// Payload for memory-related instructions indicating offset/alignment of
1360
- /// memory accesses.
1361
- #[derive(Debug, Clone)]
1362
- pub struct MemArg<'a> {
1363
- /// The alignment of this access.
1364
- ///
1365
- /// This is not stored as a log, this is the actual alignment (e.g. 1, 2, 4,
1366
- /// 8, etc).
1367
- pub align: u32,
1368
- /// The offset, in bytes of this access.
1369
- pub offset: u64,
1370
- /// The memory index we're accessing
1371
- pub memory: Index<'a>,
1372
- }
1373
-
1374
- impl<'a> MemArg<'a> {
1375
- fn parse(parser: Parser<'a>, default_align: u32) -> Result<Self> {
1376
- fn parse_field<T>(
1377
- name: &str,
1378
- parser: Parser<'_>,
1379
- f: impl FnOnce(Cursor<'_>, &str, u32) -> Result<T>,
1380
- ) -> Result<Option<T>> {
1381
- parser.step(|c| {
1382
- let (kw, rest) = match c.keyword()? {
1383
- Some(p) => p,
1384
- None => return Ok((None, c)),
1385
- };
1386
- if !kw.starts_with(name) {
1387
- return Ok((None, c));
1388
- }
1389
- let kw = &kw[name.len()..];
1390
- if !kw.starts_with('=') {
1391
- return Ok((None, c));
1392
- }
1393
- let num = &kw[1..];
1394
- let num = if let Some(stripped) = num.strip_prefix("0x") {
1395
- f(c, stripped, 16)?
1396
- } else {
1397
- f(c, num, 10)?
1398
- };
1399
-
1400
- Ok((Some(num), rest))
1401
- })
1402
- }
1403
-
1404
- fn parse_u32(name: &str, parser: Parser<'_>) -> Result<Option<u32>> {
1405
- parse_field(name, parser, |c, num, radix| {
1406
- u32::from_str_radix(num, radix).map_err(|_| c.error("i32 constant out of range"))
1407
- })
1408
- }
1409
-
1410
- fn parse_u64(name: &str, parser: Parser<'_>) -> Result<Option<u64>> {
1411
- parse_field(name, parser, |c, num, radix| {
1412
- u64::from_str_radix(num, radix).map_err(|_| c.error("i64 constant out of range"))
1413
- })
1414
- }
1415
-
1416
- let memory = parser
1417
- .parse::<Option<_>>()?
1418
- .unwrap_or_else(|| Index::Num(0, parser.prev_span()));
1419
- let offset = parse_u64("offset", parser)?.unwrap_or(0);
1420
- let align = match parse_u32("align", parser)? {
1421
- Some(n) if !n.is_power_of_two() => {
1422
- return Err(parser.error("alignment must be a power of two"))
1423
- }
1424
- n => n.unwrap_or(default_align),
1425
- };
1426
-
1427
- Ok(MemArg {
1428
- offset,
1429
- align,
1430
- memory,
1431
- })
1432
- }
1433
- }
1434
-
1435
- /// Extra data associated with the `loadN_lane` and `storeN_lane` instructions.
1436
- #[derive(Debug, Clone)]
1437
- pub struct LoadOrStoreLane<'a> {
1438
- /// The memory argument for this instruction.
1439
- pub memarg: MemArg<'a>,
1440
- /// The lane argument for this instruction.
1441
- pub lane: LaneArg,
1442
- }
1443
-
1444
- impl<'a> LoadOrStoreLane<'a> {
1445
- fn parse(parser: Parser<'a>, default_align: u32) -> Result<Self> {
1446
- // This is sort of funky. The first integer we see could be the lane
1447
- // index, but it could also be the memory index. To determine what it is
1448
- // then if we see a second integer we need to look further.
1449
- let has_memarg = parser.step(|c| match c.integer()? {
1450
- Some((_, after_int)) => {
1451
- // Two integers in a row? That means that the first one is the
1452
- // memory index and the second must be the lane index.
1453
- if after_int.integer()?.is_some() {
1454
- return Ok((true, c));
1455
- }
1456
-
1457
- // If the first integer is trailed by `offset=...` or
1458
- // `align=...` then this is definitely a memarg.
1459
- if let Some((kw, _)) = after_int.keyword()? {
1460
- if kw.starts_with("offset=") || kw.starts_with("align=") {
1461
- return Ok((true, c));
1462
- }
1463
- }
1464
-
1465
- // Otherwise the first integer was trailed by something that
1466
- // didn't look like a memarg, so this must be the lane index.
1467
- Ok((false, c))
1468
- }
1469
-
1470
- // Not an integer here? That must mean that this must be the memarg
1471
- // first followed by the trailing index.
1472
- None => Ok((true, c)),
1473
- })?;
1474
- Ok(LoadOrStoreLane {
1475
- memarg: if has_memarg {
1476
- MemArg::parse(parser, default_align)?
1477
- } else {
1478
- MemArg {
1479
- align: default_align,
1480
- offset: 0,
1481
- memory: Index::Num(0, parser.prev_span()),
1482
- }
1483
- },
1484
- lane: LaneArg::parse(parser)?,
1485
- })
1486
- }
1487
- }
1488
-
1489
- /// Extra data associated with the `call_indirect` instruction.
1490
- #[derive(Debug, Clone)]
1491
- pub struct CallIndirect<'a> {
1492
- /// The table that this call is going to be indexing.
1493
- pub table: Index<'a>,
1494
- /// Type type signature that this `call_indirect` instruction is using.
1495
- pub ty: TypeUse<'a, FunctionType<'a>>,
1496
- }
1497
-
1498
- impl<'a> Parse<'a> for CallIndirect<'a> {
1499
- fn parse(parser: Parser<'a>) -> Result<Self> {
1500
- let prev_span = parser.prev_span();
1501
- let table: Option<_> = parser.parse()?;
1502
- let ty = parser.parse::<TypeUse<'a, FunctionTypeNoNames<'a>>>()?;
1503
- Ok(CallIndirect {
1504
- table: table.unwrap_or(Index::Num(0, prev_span)),
1505
- ty: ty.into(),
1506
- })
1507
- }
1508
- }
1509
-
1510
- /// Extra data associated with the `table.init` instruction
1511
- #[derive(Debug, Clone)]
1512
- pub struct TableInit<'a> {
1513
- /// The index of the table we're copying into.
1514
- pub table: Index<'a>,
1515
- /// The index of the element segment we're copying into a table.
1516
- pub elem: Index<'a>,
1517
- }
1518
-
1519
- impl<'a> Parse<'a> for TableInit<'a> {
1520
- fn parse(parser: Parser<'a>) -> Result<Self> {
1521
- let prev_span = parser.prev_span();
1522
- let (elem, table) = if parser.peek2::<Index>()? {
1523
- let table = parser.parse()?;
1524
- (parser.parse()?, table)
1525
- } else {
1526
- (parser.parse()?, Index::Num(0, prev_span))
1527
- };
1528
- Ok(TableInit { table, elem })
1529
- }
1530
- }
1531
-
1532
- /// Extra data associated with the `table.copy` instruction.
1533
- #[derive(Debug, Clone)]
1534
- pub struct TableCopy<'a> {
1535
- /// The index of the destination table to copy into.
1536
- pub dst: Index<'a>,
1537
- /// The index of the source table to copy from.
1538
- pub src: Index<'a>,
1539
- }
1540
-
1541
- impl<'a> Parse<'a> for TableCopy<'a> {
1542
- fn parse(parser: Parser<'a>) -> Result<Self> {
1543
- let (dst, src) = match parser.parse::<Option<_>>()? {
1544
- Some(dst) => (dst, parser.parse()?),
1545
- None => (
1546
- Index::Num(0, parser.prev_span()),
1547
- Index::Num(0, parser.prev_span()),
1548
- ),
1549
- };
1550
- Ok(TableCopy { dst, src })
1551
- }
1552
- }
1553
-
1554
- /// Extra data associated with unary table instructions.
1555
- #[derive(Debug, Clone)]
1556
- pub struct TableArg<'a> {
1557
- /// The index of the table argument.
1558
- pub dst: Index<'a>,
1559
- }
1560
-
1561
- // `TableArg` could be an unwrapped as an `Index` if not for this custom parse
1562
- // behavior: if we cannot parse a table index, we default to table `0`.
1563
- impl<'a> Parse<'a> for TableArg<'a> {
1564
- fn parse(parser: Parser<'a>) -> Result<Self> {
1565
- let dst = if let Some(dst) = parser.parse()? {
1566
- dst
1567
- } else {
1568
- Index::Num(0, parser.prev_span())
1569
- };
1570
- Ok(TableArg { dst })
1571
- }
1572
- }
1573
-
1574
- /// Extra data associated with unary memory instructions.
1575
- #[derive(Debug, Clone)]
1576
- pub struct MemoryArg<'a> {
1577
- /// The index of the memory space.
1578
- pub mem: Index<'a>,
1579
- }
1580
-
1581
- impl<'a> Parse<'a> for MemoryArg<'a> {
1582
- fn parse(parser: Parser<'a>) -> Result<Self> {
1583
- let mem = if let Some(mem) = parser.parse()? {
1584
- mem
1585
- } else {
1586
- Index::Num(0, parser.prev_span())
1587
- };
1588
- Ok(MemoryArg { mem })
1589
- }
1590
- }
1591
-
1592
- /// Extra data associated with the `memory.init` instruction
1593
- #[derive(Debug, Clone)]
1594
- pub struct MemoryInit<'a> {
1595
- /// The index of the data segment we're copying into memory.
1596
- pub data: Index<'a>,
1597
- /// The index of the memory we're copying into,
1598
- pub mem: Index<'a>,
1599
- }
1600
-
1601
- impl<'a> Parse<'a> for MemoryInit<'a> {
1602
- fn parse(parser: Parser<'a>) -> Result<Self> {
1603
- let prev_span = parser.prev_span();
1604
- let (data, mem) = if parser.peek2::<Index>()? {
1605
- let memory = parser.parse()?;
1606
- (parser.parse()?, memory)
1607
- } else {
1608
- (parser.parse()?, Index::Num(0, prev_span))
1609
- };
1610
- Ok(MemoryInit { data, mem })
1611
- }
1612
- }
1613
-
1614
- /// Extra data associated with the `memory.copy` instruction
1615
- #[derive(Debug, Clone)]
1616
- pub struct MemoryCopy<'a> {
1617
- /// The index of the memory we're copying from.
1618
- pub src: Index<'a>,
1619
- /// The index of the memory we're copying to.
1620
- pub dst: Index<'a>,
1621
- }
1622
-
1623
- impl<'a> Parse<'a> for MemoryCopy<'a> {
1624
- fn parse(parser: Parser<'a>) -> Result<Self> {
1625
- let (src, dst) = match parser.parse()? {
1626
- Some(dst) => (parser.parse()?, dst),
1627
- None => (
1628
- Index::Num(0, parser.prev_span()),
1629
- Index::Num(0, parser.prev_span()),
1630
- ),
1631
- };
1632
- Ok(MemoryCopy { src, dst })
1633
- }
1634
- }
1635
-
1636
- /// Extra data associated with the `struct.get/set` instructions
1637
- #[derive(Debug, Clone)]
1638
- pub struct StructAccess<'a> {
1639
- /// The index of the struct type we're accessing.
1640
- pub r#struct: Index<'a>,
1641
- /// The index of the field of the struct we're accessing
1642
- pub field: Index<'a>,
1643
- }
1644
-
1645
- impl<'a> Parse<'a> for StructAccess<'a> {
1646
- fn parse(parser: Parser<'a>) -> Result<Self> {
1647
- Ok(StructAccess {
1648
- r#struct: parser.parse()?,
1649
- field: parser.parse()?,
1650
- })
1651
- }
1652
- }
1653
-
1654
- /// Extra data associated with the `array.fill` instruction
1655
- #[derive(Debug, Clone)]
1656
- pub struct ArrayFill<'a> {
1657
- /// The index of the array type we're filling.
1658
- pub array: Index<'a>,
1659
- }
1660
-
1661
- impl<'a> Parse<'a> for ArrayFill<'a> {
1662
- fn parse(parser: Parser<'a>) -> Result<Self> {
1663
- Ok(ArrayFill {
1664
- array: parser.parse()?,
1665
- })
1666
- }
1667
- }
1668
-
1669
- /// Extra data associated with the `array.copy` instruction
1670
- #[derive(Debug, Clone)]
1671
- pub struct ArrayCopy<'a> {
1672
- /// The index of the array type we're copying to.
1673
- pub dest_array: Index<'a>,
1674
- /// The index of the array type we're copying from.
1675
- pub src_array: Index<'a>,
1676
- }
1677
-
1678
- impl<'a> Parse<'a> for ArrayCopy<'a> {
1679
- fn parse(parser: Parser<'a>) -> Result<Self> {
1680
- Ok(ArrayCopy {
1681
- dest_array: parser.parse()?,
1682
- src_array: parser.parse()?,
1683
- })
1684
- }
1685
- }
1686
-
1687
- /// Extra data associated with the `array.init_[data/elem]` instruction
1688
- #[derive(Debug, Clone)]
1689
- pub struct ArrayInit<'a> {
1690
- /// The index of the array type we're initializing.
1691
- pub array: Index<'a>,
1692
- /// The index of the data or elem segment we're reading from.
1693
- pub segment: Index<'a>,
1694
- }
1695
-
1696
- impl<'a> Parse<'a> for ArrayInit<'a> {
1697
- fn parse(parser: Parser<'a>) -> Result<Self> {
1698
- Ok(ArrayInit {
1699
- array: parser.parse()?,
1700
- segment: parser.parse()?,
1701
- })
1702
- }
1703
- }
1704
-
1705
- /// Extra data associated with the `array.new_fixed` instruction
1706
- #[derive(Debug, Clone)]
1707
- pub struct ArrayNewFixed<'a> {
1708
- /// The index of the array type we're accessing.
1709
- pub array: Index<'a>,
1710
- /// The amount of values to initialize the array with.
1711
- pub length: u32,
1712
- }
1713
-
1714
- impl<'a> Parse<'a> for ArrayNewFixed<'a> {
1715
- fn parse(parser: Parser<'a>) -> Result<Self> {
1716
- Ok(ArrayNewFixed {
1717
- array: parser.parse()?,
1718
- length: parser.parse()?,
1719
- })
1720
- }
1721
- }
1722
-
1723
- /// Extra data associated with the `array.new_data` instruction
1724
- #[derive(Debug, Clone)]
1725
- pub struct ArrayNewData<'a> {
1726
- /// The index of the array type we're accessing.
1727
- pub array: Index<'a>,
1728
- /// The data segment to initialize from.
1729
- pub data_idx: Index<'a>,
1730
- }
1731
-
1732
- impl<'a> Parse<'a> for ArrayNewData<'a> {
1733
- fn parse(parser: Parser<'a>) -> Result<Self> {
1734
- Ok(ArrayNewData {
1735
- array: parser.parse()?,
1736
- data_idx: parser.parse()?,
1737
- })
1738
- }
1739
- }
1740
-
1741
- /// Extra data associated with the `array.new_elem` instruction
1742
- #[derive(Debug, Clone)]
1743
- pub struct ArrayNewElem<'a> {
1744
- /// The index of the array type we're accessing.
1745
- pub array: Index<'a>,
1746
- /// The elem segment to initialize from.
1747
- pub elem_idx: Index<'a>,
1748
- }
1749
-
1750
- impl<'a> Parse<'a> for ArrayNewElem<'a> {
1751
- fn parse(parser: Parser<'a>) -> Result<Self> {
1752
- Ok(ArrayNewElem {
1753
- array: parser.parse()?,
1754
- elem_idx: parser.parse()?,
1755
- })
1756
- }
1757
- }
1758
-
1759
- /// Extra data associated with the `ref.cast` instruction
1760
- #[derive(Debug, Clone)]
1761
- pub struct RefCast<'a> {
1762
- /// The type to cast to.
1763
- pub r#type: RefType<'a>,
1764
- }
1765
-
1766
- impl<'a> Parse<'a> for RefCast<'a> {
1767
- fn parse(parser: Parser<'a>) -> Result<Self> {
1768
- Ok(RefCast {
1769
- r#type: parser.parse()?,
1770
- })
1771
- }
1772
- }
1773
-
1774
- /// Extra data associated with the `ref.test` instruction
1775
- #[derive(Debug, Clone)]
1776
- pub struct RefTest<'a> {
1777
- /// The type to test for.
1778
- pub r#type: RefType<'a>,
1779
- }
1780
-
1781
- impl<'a> Parse<'a> for RefTest<'a> {
1782
- fn parse(parser: Parser<'a>) -> Result<Self> {
1783
- Ok(RefTest {
1784
- r#type: parser.parse()?,
1785
- })
1786
- }
1787
- }
1788
-
1789
- /// Extra data associated with the `br_on_cast` instruction
1790
- #[derive(Debug, Clone)]
1791
- pub struct BrOnCast<'a> {
1792
- /// The label to branch to.
1793
- pub label: Index<'a>,
1794
- /// The type we're casting from.
1795
- pub from_type: RefType<'a>,
1796
- /// The type we're casting to.
1797
- pub to_type: RefType<'a>,
1798
- }
1799
-
1800
- impl<'a> Parse<'a> for BrOnCast<'a> {
1801
- fn parse(parser: Parser<'a>) -> Result<Self> {
1802
- Ok(BrOnCast {
1803
- label: parser.parse()?,
1804
- from_type: parser.parse()?,
1805
- to_type: parser.parse()?,
1806
- })
1807
- }
1808
- }
1809
-
1810
- /// Extra data associated with the `br_on_cast_fail` instruction
1811
- #[derive(Debug, Clone)]
1812
- pub struct BrOnCastFail<'a> {
1813
- /// The label to branch to.
1814
- pub label: Index<'a>,
1815
- /// The type we're casting from.
1816
- pub from_type: RefType<'a>,
1817
- /// The type we're casting to.
1818
- pub to_type: RefType<'a>,
1819
- }
1820
-
1821
- impl<'a> Parse<'a> for BrOnCastFail<'a> {
1822
- fn parse(parser: Parser<'a>) -> Result<Self> {
1823
- Ok(BrOnCastFail {
1824
- label: parser.parse()?,
1825
- from_type: parser.parse()?,
1826
- to_type: parser.parse()?,
1827
- })
1828
- }
1829
- }
1830
-
1831
- /// The memory ordering for atomic instructions.
1832
- ///
1833
- /// For an in-depth explanation of memory orderings, see the C++ documentation
1834
- /// for [`memory_order`] or the Rust documentation for [`atomic::Ordering`].
1835
- ///
1836
- /// [`memory_order`]: https://en.cppreference.com/w/cpp/atomic/memory_order
1837
- /// [`atomic::Ordering`]: https://doc.rust-lang.org/std/sync/atomic/enum.Ordering.html
1838
- #[derive(Clone, Debug)]
1839
- pub enum Ordering {
1840
- /// Like `AcqRel` but all threads see all sequentially consistent operations
1841
- /// in the same order.
1842
- AcqRel,
1843
- /// For a load, it acquires; this orders all operations before the last
1844
- /// "releasing" store. For a store, it releases; this orders all operations
1845
- /// before it at the next "acquiring" load.
1846
- SeqCst,
1847
- }
1848
-
1849
- impl<'a> Parse<'a> for Ordering {
1850
- fn parse(parser: Parser<'a>) -> Result<Self> {
1851
- if parser.peek::<kw::seq_cst>()? {
1852
- parser.parse::<kw::seq_cst>()?;
1853
- Ok(Ordering::SeqCst)
1854
- } else if parser.peek::<kw::acq_rel>()? {
1855
- parser.parse::<kw::acq_rel>()?;
1856
- Ok(Ordering::AcqRel)
1857
- } else {
1858
- Err(parser.error("expected a memory ordering: `seq_cst` or `acq_rel`"))
1859
- }
1860
- }
1861
- }
1862
-
1863
- /// Add a memory [`Ordering`] to the argument `T` of some instruction.
1864
- ///
1865
- /// This is helpful for many kinds of `*.atomic.*` instructions introduced by
1866
- /// the shared-everything-threads proposal. Many of these instructions "build
1867
- /// on" existing instructions by simply adding a memory order to them.
1868
- #[derive(Clone, Debug)]
1869
- pub struct Ordered<T> {
1870
- /// The memory ordering for this atomic instruction.
1871
- pub ordering: Ordering,
1872
- /// The original argument type.
1873
- pub inner: T,
1874
- }
1875
-
1876
- impl<'a, T> Parse<'a> for Ordered<T>
1877
- where
1878
- T: Parse<'a>,
1879
- {
1880
- fn parse(parser: Parser<'a>) -> Result<Self> {
1881
- let ordering = parser.parse()?;
1882
- let inner = parser.parse()?;
1883
- Ok(Ordered { ordering, inner })
1884
- }
1885
- }
1886
-
1887
- /// Different ways to specify a `v128.const` instruction
1888
- #[derive(Clone, Debug)]
1889
- #[allow(missing_docs)]
1890
- pub enum V128Const {
1891
- I8x16([i8; 16]),
1892
- I16x8([i16; 8]),
1893
- I32x4([i32; 4]),
1894
- I64x2([i64; 2]),
1895
- F32x4([F32; 4]),
1896
- F64x2([F64; 2]),
1897
- }
1898
-
1899
- impl V128Const {
1900
- /// Returns the raw little-ended byte sequence used to represent this
1901
- /// `v128` constant`
1902
- ///
1903
- /// This is typically suitable for encoding as the payload of the
1904
- /// `v128.const` instruction.
1905
- #[rustfmt::skip]
1906
- pub fn to_le_bytes(&self) -> [u8; 16] {
1907
- match self {
1908
- V128Const::I8x16(arr) => [
1909
- arr[0] as u8,
1910
- arr[1] as u8,
1911
- arr[2] as u8,
1912
- arr[3] as u8,
1913
- arr[4] as u8,
1914
- arr[5] as u8,
1915
- arr[6] as u8,
1916
- arr[7] as u8,
1917
- arr[8] as u8,
1918
- arr[9] as u8,
1919
- arr[10] as u8,
1920
- arr[11] as u8,
1921
- arr[12] as u8,
1922
- arr[13] as u8,
1923
- arr[14] as u8,
1924
- arr[15] as u8,
1925
- ],
1926
- V128Const::I16x8(arr) => {
1927
- let a1 = arr[0].to_le_bytes();
1928
- let a2 = arr[1].to_le_bytes();
1929
- let a3 = arr[2].to_le_bytes();
1930
- let a4 = arr[3].to_le_bytes();
1931
- let a5 = arr[4].to_le_bytes();
1932
- let a6 = arr[5].to_le_bytes();
1933
- let a7 = arr[6].to_le_bytes();
1934
- let a8 = arr[7].to_le_bytes();
1935
- [
1936
- a1[0], a1[1],
1937
- a2[0], a2[1],
1938
- a3[0], a3[1],
1939
- a4[0], a4[1],
1940
- a5[0], a5[1],
1941
- a6[0], a6[1],
1942
- a7[0], a7[1],
1943
- a8[0], a8[1],
1944
- ]
1945
- }
1946
- V128Const::I32x4(arr) => {
1947
- let a1 = arr[0].to_le_bytes();
1948
- let a2 = arr[1].to_le_bytes();
1949
- let a3 = arr[2].to_le_bytes();
1950
- let a4 = arr[3].to_le_bytes();
1951
- [
1952
- a1[0], a1[1], a1[2], a1[3],
1953
- a2[0], a2[1], a2[2], a2[3],
1954
- a3[0], a3[1], a3[2], a3[3],
1955
- a4[0], a4[1], a4[2], a4[3],
1956
- ]
1957
- }
1958
- V128Const::I64x2(arr) => {
1959
- let a1 = arr[0].to_le_bytes();
1960
- let a2 = arr[1].to_le_bytes();
1961
- [
1962
- a1[0], a1[1], a1[2], a1[3], a1[4], a1[5], a1[6], a1[7],
1963
- a2[0], a2[1], a2[2], a2[3], a2[4], a2[5], a2[6], a2[7],
1964
- ]
1965
- }
1966
- V128Const::F32x4(arr) => {
1967
- let a1 = arr[0].bits.to_le_bytes();
1968
- let a2 = arr[1].bits.to_le_bytes();
1969
- let a3 = arr[2].bits.to_le_bytes();
1970
- let a4 = arr[3].bits.to_le_bytes();
1971
- [
1972
- a1[0], a1[1], a1[2], a1[3],
1973
- a2[0], a2[1], a2[2], a2[3],
1974
- a3[0], a3[1], a3[2], a3[3],
1975
- a4[0], a4[1], a4[2], a4[3],
1976
- ]
1977
- }
1978
- V128Const::F64x2(arr) => {
1979
- let a1 = arr[0].bits.to_le_bytes();
1980
- let a2 = arr[1].bits.to_le_bytes();
1981
- [
1982
- a1[0], a1[1], a1[2], a1[3], a1[4], a1[5], a1[6], a1[7],
1983
- a2[0], a2[1], a2[2], a2[3], a2[4], a2[5], a2[6], a2[7],
1984
- ]
1985
- }
1986
- }
1987
- }
1988
- }
1989
-
1990
- impl<'a> Parse<'a> for V128Const {
1991
- fn parse(parser: Parser<'a>) -> Result<Self> {
1992
- let mut l = parser.lookahead1();
1993
- if l.peek::<kw::i8x16>()? {
1994
- parser.parse::<kw::i8x16>()?;
1995
- Ok(V128Const::I8x16([
1996
- parser.parse()?,
1997
- parser.parse()?,
1998
- parser.parse()?,
1999
- parser.parse()?,
2000
- parser.parse()?,
2001
- parser.parse()?,
2002
- parser.parse()?,
2003
- parser.parse()?,
2004
- parser.parse()?,
2005
- parser.parse()?,
2006
- parser.parse()?,
2007
- parser.parse()?,
2008
- parser.parse()?,
2009
- parser.parse()?,
2010
- parser.parse()?,
2011
- parser.parse()?,
2012
- ]))
2013
- } else if l.peek::<kw::i16x8>()? {
2014
- parser.parse::<kw::i16x8>()?;
2015
- Ok(V128Const::I16x8([
2016
- parser.parse()?,
2017
- parser.parse()?,
2018
- parser.parse()?,
2019
- parser.parse()?,
2020
- parser.parse()?,
2021
- parser.parse()?,
2022
- parser.parse()?,
2023
- parser.parse()?,
2024
- ]))
2025
- } else if l.peek::<kw::i32x4>()? {
2026
- parser.parse::<kw::i32x4>()?;
2027
- Ok(V128Const::I32x4([
2028
- parser.parse()?,
2029
- parser.parse()?,
2030
- parser.parse()?,
2031
- parser.parse()?,
2032
- ]))
2033
- } else if l.peek::<kw::i64x2>()? {
2034
- parser.parse::<kw::i64x2>()?;
2035
- Ok(V128Const::I64x2([parser.parse()?, parser.parse()?]))
2036
- } else if l.peek::<kw::f32x4>()? {
2037
- parser.parse::<kw::f32x4>()?;
2038
- Ok(V128Const::F32x4([
2039
- parser.parse()?,
2040
- parser.parse()?,
2041
- parser.parse()?,
2042
- parser.parse()?,
2043
- ]))
2044
- } else if l.peek::<kw::f64x2>()? {
2045
- parser.parse::<kw::f64x2>()?;
2046
- Ok(V128Const::F64x2([parser.parse()?, parser.parse()?]))
2047
- } else {
2048
- Err(l.error())
2049
- }
2050
- }
2051
- }
2052
-
2053
- /// Lanes being shuffled in the `i8x16.shuffle` instruction
2054
- #[derive(Debug, Clone)]
2055
- pub struct I8x16Shuffle {
2056
- #[allow(missing_docs)]
2057
- pub lanes: [u8; 16],
2058
- }
2059
-
2060
- impl<'a> Parse<'a> for I8x16Shuffle {
2061
- fn parse(parser: Parser<'a>) -> Result<Self> {
2062
- Ok(I8x16Shuffle {
2063
- lanes: [
2064
- parser.parse()?,
2065
- parser.parse()?,
2066
- parser.parse()?,
2067
- parser.parse()?,
2068
- parser.parse()?,
2069
- parser.parse()?,
2070
- parser.parse()?,
2071
- parser.parse()?,
2072
- parser.parse()?,
2073
- parser.parse()?,
2074
- parser.parse()?,
2075
- parser.parse()?,
2076
- parser.parse()?,
2077
- parser.parse()?,
2078
- parser.parse()?,
2079
- parser.parse()?,
2080
- ],
2081
- })
2082
- }
2083
- }
2084
-
2085
- /// Payload of the `select` instructions
2086
- #[derive(Debug, Clone)]
2087
- pub struct SelectTypes<'a> {
2088
- #[allow(missing_docs)]
2089
- pub tys: Option<Vec<ValType<'a>>>,
2090
- }
2091
-
2092
- impl<'a> Parse<'a> for SelectTypes<'a> {
2093
- fn parse(parser: Parser<'a>) -> Result<Self> {
2094
- let mut found = false;
2095
- let mut list = Vec::new();
2096
- while parser.peek2::<kw::result>()? {
2097
- found = true;
2098
- parser.parens(|p| {
2099
- p.parse::<kw::result>()?;
2100
- while !p.is_empty() {
2101
- list.push(p.parse()?);
2102
- }
2103
- Ok(())
2104
- })?;
2105
- }
2106
- Ok(SelectTypes {
2107
- tys: if found { Some(list) } else { None },
2108
- })
2109
- }
2110
- }