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
@@ -0,0 +1,1958 @@
1
+ //! Conversions from `wasmparser` to `wasm-encoder` to [`Reencode`] parsed wasm.
2
+ //!
3
+ //! The [`RoundtripReencoder`] allows encoding identical wasm to the parsed
4
+ //! input.
5
+
6
+ use crate::CoreTypeEncoder;
7
+ use std::convert::Infallible;
8
+
9
+ mod component;
10
+
11
+ pub use self::component::*;
12
+
13
+ #[allow(missing_docs)] // FIXME
14
+ pub trait Reencode {
15
+ type Error;
16
+
17
+ fn data_index(&mut self, data: u32) -> u32 {
18
+ utils::data_index(self, data)
19
+ }
20
+
21
+ fn element_index(&mut self, element: u32) -> u32 {
22
+ utils::element_index(self, element)
23
+ }
24
+
25
+ fn function_index(&mut self, func: u32) -> u32 {
26
+ utils::function_index(self, func)
27
+ }
28
+
29
+ fn global_index(&mut self, global: u32) -> u32 {
30
+ utils::global_index(self, global)
31
+ }
32
+
33
+ fn memory_index(&mut self, memory: u32) -> u32 {
34
+ utils::memory_index(self, memory)
35
+ }
36
+
37
+ fn table_index(&mut self, table: u32) -> u32 {
38
+ utils::table_index(self, table)
39
+ }
40
+
41
+ fn tag_index(&mut self, tag: u32) -> u32 {
42
+ utils::tag_index(self, tag)
43
+ }
44
+
45
+ fn type_index(&mut self, ty: u32) -> u32 {
46
+ utils::type_index(self, ty)
47
+ }
48
+
49
+ fn type_index_unpacked(
50
+ &mut self,
51
+ ty: wasmparser::UnpackedIndex,
52
+ ) -> Result<u32, Error<Self::Error>> {
53
+ utils::type_index_unpacked(self, ty)
54
+ }
55
+
56
+ fn external_index(&mut self, kind: wasmparser::ExternalKind, index: u32) -> u32 {
57
+ match kind {
58
+ wasmparser::ExternalKind::Func => self.function_index(index),
59
+ wasmparser::ExternalKind::Table => self.table_index(index),
60
+ wasmparser::ExternalKind::Memory => self.memory_index(index),
61
+ wasmparser::ExternalKind::Global => self.global_index(index),
62
+ wasmparser::ExternalKind::Tag => self.tag_index(index),
63
+ }
64
+ }
65
+
66
+ fn abstract_heap_type(
67
+ &mut self,
68
+ value: wasmparser::AbstractHeapType,
69
+ ) -> crate::AbstractHeapType {
70
+ utils::abstract_heap_type(self, value)
71
+ }
72
+
73
+ fn array_type(
74
+ &mut self,
75
+ array_ty: wasmparser::ArrayType,
76
+ ) -> Result<crate::ArrayType, Error<Self::Error>> {
77
+ utils::array_type(self, array_ty)
78
+ }
79
+
80
+ fn block_type(
81
+ &mut self,
82
+ arg: wasmparser::BlockType,
83
+ ) -> Result<crate::BlockType, Error<Self::Error>> {
84
+ utils::block_type(self, arg)
85
+ }
86
+
87
+ fn const_expr(
88
+ &mut self,
89
+ const_expr: wasmparser::ConstExpr,
90
+ ) -> Result<crate::ConstExpr, Error<Self::Error>> {
91
+ utils::const_expr(self, const_expr)
92
+ }
93
+
94
+ fn catch(&mut self, arg: wasmparser::Catch) -> crate::Catch {
95
+ utils::catch(self, arg)
96
+ }
97
+
98
+ fn composite_type(
99
+ &mut self,
100
+ composite_ty: wasmparser::CompositeType,
101
+ ) -> Result<crate::CompositeType, Error<Self::Error>> {
102
+ utils::composite_type(self, composite_ty)
103
+ }
104
+
105
+ fn entity_type(
106
+ &mut self,
107
+ type_ref: wasmparser::TypeRef,
108
+ ) -> Result<crate::EntityType, Error<Self::Error>> {
109
+ utils::entity_type(self, type_ref)
110
+ }
111
+
112
+ fn export_kind(&mut self, external_kind: wasmparser::ExternalKind) -> crate::ExportKind {
113
+ utils::export_kind(self, external_kind)
114
+ }
115
+
116
+ fn field_type(
117
+ &mut self,
118
+ field_ty: wasmparser::FieldType,
119
+ ) -> Result<crate::FieldType, Error<Self::Error>> {
120
+ utils::field_type(self, field_ty)
121
+ }
122
+
123
+ fn func_type(
124
+ &mut self,
125
+ func_ty: wasmparser::FuncType,
126
+ ) -> Result<crate::FuncType, Error<Self::Error>> {
127
+ utils::func_type(self, func_ty)
128
+ }
129
+
130
+ fn cont_type(
131
+ &mut self,
132
+ cont_ty: wasmparser::ContType,
133
+ ) -> Result<crate::ContType, Error<Self::Error>> {
134
+ utils::cont_type(self, cont_ty)
135
+ }
136
+
137
+ fn global_type(
138
+ &mut self,
139
+ global_ty: wasmparser::GlobalType,
140
+ ) -> Result<crate::GlobalType, Error<Self::Error>> {
141
+ utils::global_type(self, global_ty)
142
+ }
143
+
144
+ fn handle(&mut self, on: wasmparser::Handle) -> crate::Handle {
145
+ utils::handle(self, on)
146
+ }
147
+
148
+ fn heap_type(
149
+ &mut self,
150
+ heap_type: wasmparser::HeapType,
151
+ ) -> Result<crate::HeapType, Error<Self::Error>> {
152
+ utils::heap_type(self, heap_type)
153
+ }
154
+
155
+ fn instruction<'a>(
156
+ &mut self,
157
+ arg: wasmparser::Operator<'a>,
158
+ ) -> Result<crate::Instruction<'a>, Error<Self::Error>> {
159
+ utils::instruction(self, arg)
160
+ }
161
+
162
+ fn memory_type(&mut self, memory_ty: wasmparser::MemoryType) -> crate::MemoryType {
163
+ utils::memory_type(self, memory_ty)
164
+ }
165
+
166
+ fn mem_arg(&mut self, arg: wasmparser::MemArg) -> crate::MemArg {
167
+ utils::mem_arg(self, arg)
168
+ }
169
+
170
+ fn ordering(&mut self, arg: wasmparser::Ordering) -> crate::Ordering {
171
+ utils::ordering(self, arg)
172
+ }
173
+
174
+ fn ref_type(
175
+ &mut self,
176
+ ref_type: wasmparser::RefType,
177
+ ) -> Result<crate::RefType, Error<Self::Error>> {
178
+ utils::ref_type(self, ref_type)
179
+ }
180
+
181
+ fn storage_type(
182
+ &mut self,
183
+ storage_ty: wasmparser::StorageType,
184
+ ) -> Result<crate::StorageType, Error<Self::Error>> {
185
+ utils::storage_type(self, storage_ty)
186
+ }
187
+
188
+ fn struct_type(
189
+ &mut self,
190
+ struct_ty: wasmparser::StructType,
191
+ ) -> Result<crate::StructType, Error<Self::Error>> {
192
+ utils::struct_type(self, struct_ty)
193
+ }
194
+
195
+ fn sub_type(
196
+ &mut self,
197
+ sub_ty: wasmparser::SubType,
198
+ ) -> Result<crate::SubType, Error<Self::Error>> {
199
+ utils::sub_type(self, sub_ty)
200
+ }
201
+
202
+ fn table_type(
203
+ &mut self,
204
+ table_ty: wasmparser::TableType,
205
+ ) -> Result<crate::TableType, Error<Self::Error>> {
206
+ utils::table_type(self, table_ty)
207
+ }
208
+
209
+ fn tag_kind(&mut self, kind: wasmparser::TagKind) -> crate::TagKind {
210
+ utils::tag_kind(self, kind)
211
+ }
212
+
213
+ fn tag_type(&mut self, tag_ty: wasmparser::TagType) -> crate::TagType {
214
+ utils::tag_type(self, tag_ty)
215
+ }
216
+
217
+ fn val_type(
218
+ &mut self,
219
+ val_ty: wasmparser::ValType,
220
+ ) -> Result<crate::ValType, Error<Self::Error>> {
221
+ utils::val_type(self, val_ty)
222
+ }
223
+
224
+ /// Parses the input `section` given from the `wasmparser` crate and
225
+ /// adds the custom section to the `module`.
226
+ fn parse_custom_section(
227
+ &mut self,
228
+ module: &mut crate::Module,
229
+ section: wasmparser::CustomSectionReader<'_>,
230
+ ) -> Result<(), Error<Self::Error>> {
231
+ utils::parse_custom_section(self, module, section)
232
+ }
233
+
234
+ /// Converts the input `section` given from the `wasmparser` crate into an
235
+ /// encoded custom section.
236
+ fn custom_section<'a>(
237
+ &mut self,
238
+ section: wasmparser::CustomSectionReader<'a>,
239
+ ) -> crate::CustomSection<'a> {
240
+ utils::custom_section(self, section)
241
+ }
242
+
243
+ /// Parses the input `section` given from the `wasmparser` crate and adds
244
+ /// all the code to the `code` section.
245
+ fn parse_code_section(
246
+ &mut self,
247
+ code: &mut crate::CodeSection,
248
+ section: wasmparser::CodeSectionReader<'_>,
249
+ ) -> Result<(), Error<Self::Error>> {
250
+ utils::parse_code_section(self, code, section)
251
+ }
252
+
253
+ /// Parses a single [`wasmparser::FunctionBody`] and adds it to the `code` section.
254
+ fn parse_function_body(
255
+ &mut self,
256
+ code: &mut crate::CodeSection,
257
+ func: wasmparser::FunctionBody<'_>,
258
+ ) -> Result<(), Error<Self::Error>> {
259
+ utils::parse_function_body(self, code, func)
260
+ }
261
+
262
+ /// Create a new [`crate::Function`] by parsing the locals declarations from the
263
+ /// provided [`wasmparser::FunctionBody`].
264
+ fn new_function_with_parsed_locals(
265
+ &mut self,
266
+ func: &wasmparser::FunctionBody<'_>,
267
+ ) -> Result<crate::Function, Error<Self::Error>> {
268
+ utils::new_function_with_parsed_locals(self, func)
269
+ }
270
+
271
+ /// Parses a single instruction from `reader` and adds it to `function`.
272
+ fn parse_instruction<'a>(
273
+ &mut self,
274
+ reader: &mut wasmparser::OperatorsReader<'a>,
275
+ ) -> Result<crate::Instruction<'a>, Error<Self::Error>> {
276
+ utils::parse_instruction(self, reader)
277
+ }
278
+
279
+ /// Parses the input `section` given from the `wasmparser` crate and adds
280
+ /// all the data to the `data` section.
281
+ fn parse_data_section(
282
+ &mut self,
283
+ data: &mut crate::DataSection,
284
+ section: wasmparser::DataSectionReader<'_>,
285
+ ) -> Result<(), Error<Self::Error>> {
286
+ utils::parse_data_section(self, data, section)
287
+ }
288
+
289
+ /// Parses a single [`wasmparser::Data`] and adds it to the `data` section.
290
+ fn parse_data(
291
+ &mut self,
292
+ data: &mut crate::DataSection,
293
+ datum: wasmparser::Data<'_>,
294
+ ) -> Result<(), Error<Self::Error>> {
295
+ utils::parse_data(self, data, datum)
296
+ }
297
+
298
+ /// Parses the input `section` given from the `wasmparser` crate and adds
299
+ /// all the elements to the `element` section.
300
+ fn parse_element_section(
301
+ &mut self,
302
+ elements: &mut crate::ElementSection,
303
+ section: wasmparser::ElementSectionReader<'_>,
304
+ ) -> Result<(), Error<Self::Error>> {
305
+ utils::parse_element_section(self, elements, section)
306
+ }
307
+
308
+ /// Parses the single [`wasmparser::Element`] provided and adds it to the
309
+ /// `element` section.
310
+ fn parse_element(
311
+ &mut self,
312
+ elements: &mut crate::ElementSection,
313
+ element: wasmparser::Element<'_>,
314
+ ) -> Result<(), Error<Self::Error>> {
315
+ utils::parse_element(self, elements, element)
316
+ }
317
+
318
+ fn element_items<'a>(
319
+ &mut self,
320
+ items: wasmparser::ElementItems<'a>,
321
+ ) -> Result<crate::Elements<'a>, Error<Self::Error>> {
322
+ utils::element_items(self, items)
323
+ }
324
+
325
+ /// Parses the input `section` given from the `wasmparser` crate and adds
326
+ /// all the exports to the `exports` section.
327
+ fn parse_export_section(
328
+ &mut self,
329
+ exports: &mut crate::ExportSection,
330
+ section: wasmparser::ExportSectionReader<'_>,
331
+ ) -> Result<(), Error<Self::Error>> {
332
+ utils::parse_export_section(self, exports, section)
333
+ }
334
+
335
+ /// Parses the single [`wasmparser::Export`] provided and adds it to the
336
+ /// `exports` section.
337
+ fn parse_export(&mut self, exports: &mut crate::ExportSection, export: wasmparser::Export<'_>) {
338
+ utils::parse_export(self, exports, export)
339
+ }
340
+
341
+ /// Parses the input `section` given from the `wasmparser` crate and adds
342
+ /// all the functions to the `functions` section.
343
+ fn parse_function_section(
344
+ &mut self,
345
+ functions: &mut crate::FunctionSection,
346
+ section: wasmparser::FunctionSectionReader<'_>,
347
+ ) -> Result<(), Error<Self::Error>> {
348
+ utils::parse_function_section(self, functions, section)
349
+ }
350
+
351
+ /// Parses the input `section` given from the `wasmparser` crate and adds
352
+ /// all the globals to the `globals` section.
353
+ fn parse_global_section(
354
+ &mut self,
355
+ globals: &mut crate::GlobalSection,
356
+ section: wasmparser::GlobalSectionReader<'_>,
357
+ ) -> Result<(), Error<Self::Error>> {
358
+ utils::parse_global_section(self, globals, section)
359
+ }
360
+
361
+ /// Parses the single [`wasmparser::Global`] provided and adds it to the
362
+ /// `globals` section.
363
+ fn parse_global(
364
+ &mut self,
365
+ globals: &mut crate::GlobalSection,
366
+ global: wasmparser::Global<'_>,
367
+ ) -> Result<(), Error<Self::Error>> {
368
+ utils::parse_global(self, globals, global)
369
+ }
370
+
371
+ /// Parses the input `section` given from the `wasmparser` crate and adds
372
+ /// all the imports to the `import` section.
373
+ fn parse_import_section(
374
+ &mut self,
375
+ imports: &mut crate::ImportSection,
376
+ section: wasmparser::ImportSectionReader<'_>,
377
+ ) -> Result<(), Error<Self::Error>> {
378
+ utils::parse_import_section(self, imports, section)
379
+ }
380
+
381
+ /// Parses the single [`wasmparser::Import`] provided and adds it to the
382
+ /// `import` section.
383
+ fn parse_import(
384
+ &mut self,
385
+ imports: &mut crate::ImportSection,
386
+ import: wasmparser::Import<'_>,
387
+ ) -> Result<(), Error<Self::Error>> {
388
+ utils::parse_import(self, imports, import)
389
+ }
390
+
391
+ /// Parses the input `section` given from the `wasmparser` crate and adds
392
+ /// all the memories to the `memories` section.
393
+ fn parse_memory_section(
394
+ &mut self,
395
+ memories: &mut crate::MemorySection,
396
+ section: wasmparser::MemorySectionReader<'_>,
397
+ ) -> Result<(), Error<Self::Error>> {
398
+ utils::parse_memory_section(self, memories, section)
399
+ }
400
+
401
+ /// Parses the input `section` given from the `wasmparser` crate and adds
402
+ /// all the tables to the `tables` section.
403
+ fn parse_table_section(
404
+ &mut self,
405
+ tables: &mut crate::TableSection,
406
+ section: wasmparser::TableSectionReader<'_>,
407
+ ) -> Result<(), Error<Self::Error>> {
408
+ utils::parse_table_section(self, tables, section)
409
+ }
410
+
411
+ /// Parses a single [`wasmparser::Table`] and adds it to the `tables` section.
412
+ fn parse_table(
413
+ &mut self,
414
+ tables: &mut crate::TableSection,
415
+ table: wasmparser::Table<'_>,
416
+ ) -> Result<(), Error<Self::Error>> {
417
+ utils::parse_table(self, tables, table)
418
+ }
419
+
420
+ /// Parses the input `section` given from the `wasmparser` crate and adds
421
+ /// all the tags to the `tags` section.
422
+ fn parse_tag_section(
423
+ &mut self,
424
+ tags: &mut crate::TagSection,
425
+ section: wasmparser::TagSectionReader<'_>,
426
+ ) -> Result<(), Error<Self::Error>> {
427
+ utils::parse_tag_section(self, tags, section)
428
+ }
429
+
430
+ /// Parses the input `section` given from the `wasmparser` crate and adds
431
+ /// all the types to the `types` section.
432
+ fn parse_type_section(
433
+ &mut self,
434
+ types: &mut crate::TypeSection,
435
+ section: wasmparser::TypeSectionReader<'_>,
436
+ ) -> Result<(), Error<Self::Error>> {
437
+ utils::parse_type_section(self, types, section)
438
+ }
439
+
440
+ /// Parses a single [`wasmparser::RecGroup`] and adds it to the `types` section.
441
+ fn parse_recursive_type_group(
442
+ &mut self,
443
+ encoder: CoreTypeEncoder,
444
+ rec_group: wasmparser::RecGroup,
445
+ ) -> Result<(), Error<Self::Error>> {
446
+ utils::parse_recursive_type_group(self, encoder, rec_group)
447
+ }
448
+
449
+ fn parse_unknown_section(
450
+ &mut self,
451
+ module: &mut crate::Module,
452
+ id: u8,
453
+ contents: &[u8],
454
+ ) -> Result<(), Error<Self::Error>> {
455
+ utils::parse_unknown_section(self, module, id, contents)
456
+ }
457
+
458
+ /// A hook method that is called inside [`Reencode::parse_core_module`]
459
+ /// before and after every non-custom core wasm section.
460
+ ///
461
+ /// This method can be used to insert new custom sections in between those
462
+ /// sections, or to detect when a non-custom section is missing and insert
463
+ /// it in the [proper order].
464
+ ///
465
+ /// The `after` parameter is `None` iff the hook is called before the first
466
+ /// non-custom section, and `Some(s)` afterwards, where `s` is the
467
+ /// [`SectionId`] of the previous non-custom section.
468
+ ///
469
+ /// The `before` parameter is `None` iff the hook is called after the last
470
+ /// non-custom section, and `Some(s)` beforehand, where `s` is the
471
+ /// [`SectionId`] of the following non-custom section.
472
+ ///
473
+ /// [proper order]: https://webassembly.github.io/spec/core/binary/modules.html#binary-module
474
+ /// [`SectionId`]: crate::SectionId
475
+ fn intersperse_section_hook(
476
+ &mut self,
477
+ module: &mut crate::Module,
478
+ after: Option<crate::SectionId>,
479
+ before: Option<crate::SectionId>,
480
+ ) -> Result<(), Error<Self::Error>> {
481
+ utils::intersperse_section_hook(self, module, after, before)
482
+ }
483
+
484
+ fn parse_core_module(
485
+ &mut self,
486
+ module: &mut crate::Module,
487
+ parser: wasmparser::Parser,
488
+ data: &[u8],
489
+ ) -> Result<(), Error<Self::Error>> {
490
+ utils::parse_core_module(self, module, parser, data)
491
+ }
492
+
493
+ fn custom_name_section(
494
+ &mut self,
495
+ section: wasmparser::NameSectionReader<'_>,
496
+ ) -> Result<crate::NameSection, Error<Self::Error>> {
497
+ utils::custom_name_section(self, section)
498
+ }
499
+
500
+ fn parse_custom_name_subsection(
501
+ &mut self,
502
+ names: &mut crate::NameSection,
503
+ section: wasmparser::Name<'_>,
504
+ ) -> Result<(), Error<Self::Error>> {
505
+ utils::parse_custom_name_subsection(self, names, section)
506
+ }
507
+
508
+ fn data_count(&mut self, count: u32) -> u32 {
509
+ count
510
+ }
511
+
512
+ fn start_section(&mut self, start: u32) -> u32 {
513
+ self.function_index(start)
514
+ }
515
+ }
516
+
517
+ /// An error when re-encoding from `wasmparser` to `wasm-encoder`.
518
+ #[derive(Debug)]
519
+ pub enum Error<E = Infallible> {
520
+ /// There was a type reference that was canonicalized and no longer
521
+ /// references an index into a module's types space, so we cannot encode it
522
+ /// into a Wasm binary again.
523
+ CanonicalizedHeapTypeReference,
524
+ /// The const expression is invalid: not actually constant or something like
525
+ /// that.
526
+ InvalidConstExpr,
527
+ /// The code section size listed was not valid for the wasm binary provided.
528
+ InvalidCodeSectionSize,
529
+ /// There was a section that does not belong into a core wasm module.
530
+ UnexpectedNonCoreModuleSection,
531
+ /// There was a section that does not belong into a compoennt module.
532
+ UnexpectedNonComponentSection,
533
+ /// A core type definition was found in a component that's not supported.
534
+ UnsupportedCoreTypeInComponent,
535
+ /// There was an error when parsing.
536
+ ParseError(wasmparser::BinaryReaderError),
537
+ /// There was a user-defined error when re-encoding.
538
+ UserError(E),
539
+ }
540
+
541
+ impl<E> From<wasmparser::BinaryReaderError> for Error<E> {
542
+ fn from(err: wasmparser::BinaryReaderError) -> Self {
543
+ Self::ParseError(err)
544
+ }
545
+ }
546
+
547
+ impl<E: std::fmt::Display> std::fmt::Display for Error<E> {
548
+ fn fmt(&self, fmt: &mut std::fmt::Formatter) -> std::fmt::Result {
549
+ match self {
550
+ Self::ParseError(_e) => {
551
+ write!(fmt, "There was an error when parsing")
552
+ }
553
+ Self::UserError(e) => write!(fmt, "{e}"),
554
+ Self::InvalidConstExpr => write!(fmt, "The const expression was invalid"),
555
+ Self::UnexpectedNonCoreModuleSection => write!(
556
+ fmt,
557
+ "There was a section that does not belong into a core wasm module"
558
+ ),
559
+ Self::UnexpectedNonComponentSection => write!(
560
+ fmt,
561
+ "There was a section that does not belong into a component"
562
+ ),
563
+ Self::CanonicalizedHeapTypeReference => write!(
564
+ fmt,
565
+ "There was a canonicalized heap type reference without type index information"
566
+ ),
567
+ Self::UnsupportedCoreTypeInComponent => {
568
+ fmt.write_str("unsupported core type in a component")
569
+ }
570
+ Self::InvalidCodeSectionSize => fmt.write_str("invalid code section size"),
571
+ }
572
+ }
573
+ }
574
+
575
+ impl<E: 'static + std::error::Error> std::error::Error for Error<E> {
576
+ fn source(&self) -> Option<&(dyn std::error::Error + 'static)> {
577
+ match self {
578
+ Self::ParseError(e) => Some(e),
579
+ Self::UserError(e) => Some(e),
580
+ Self::InvalidConstExpr
581
+ | Self::CanonicalizedHeapTypeReference
582
+ | Self::UnexpectedNonCoreModuleSection
583
+ | Self::UnexpectedNonComponentSection
584
+ | Self::UnsupportedCoreTypeInComponent
585
+ | Self::InvalidCodeSectionSize => None,
586
+ }
587
+ }
588
+ }
589
+
590
+ /// Reencodes `wasmparser` into `wasm-encoder` so that the encoded wasm is
591
+ /// identical to the input and can be parsed and encoded again.
592
+ #[derive(Debug)]
593
+ pub struct RoundtripReencoder;
594
+
595
+ impl Reencode for RoundtripReencoder {
596
+ type Error = Infallible;
597
+ }
598
+
599
+ #[allow(missing_docs)] // FIXME
600
+ pub mod utils {
601
+ use super::{Error, Reencode};
602
+ use crate::{CoreTypeEncoder, Encode};
603
+
604
+ pub fn parse_core_module<T: ?Sized + Reencode>(
605
+ reencoder: &mut T,
606
+ module: &mut crate::Module,
607
+ parser: wasmparser::Parser,
608
+ data: &[u8],
609
+ ) -> Result<(), Error<T::Error>> {
610
+ fn handle_intersperse_section_hook<T: ?Sized + Reencode>(
611
+ reencoder: &mut T,
612
+ module: &mut crate::Module,
613
+ last_section: &mut Option<crate::SectionId>,
614
+ next_section: Option<crate::SectionId>,
615
+ ) -> Result<(), Error<T::Error>> {
616
+ let after = std::mem::replace(last_section, next_section);
617
+ let before = next_section;
618
+ reencoder.intersperse_section_hook(module, after, before)
619
+ }
620
+
621
+ let orig_offset = parser.offset() as usize;
622
+ let mut last_section = None;
623
+
624
+ for section in parser.parse_all(data) {
625
+ match section? {
626
+ wasmparser::Payload::Version {
627
+ encoding: wasmparser::Encoding::Module,
628
+ ..
629
+ } => (),
630
+ wasmparser::Payload::Version { .. } => {
631
+ return Err(Error::UnexpectedNonCoreModuleSection)
632
+ }
633
+ wasmparser::Payload::TypeSection(section) => {
634
+ handle_intersperse_section_hook(
635
+ reencoder,
636
+ module,
637
+ &mut last_section,
638
+ Some(crate::SectionId::Type),
639
+ )?;
640
+ let mut types = crate::TypeSection::new();
641
+ reencoder.parse_type_section(&mut types, section)?;
642
+ module.section(&types);
643
+ }
644
+ wasmparser::Payload::ImportSection(section) => {
645
+ handle_intersperse_section_hook(
646
+ reencoder,
647
+ module,
648
+ &mut last_section,
649
+ Some(crate::SectionId::Import),
650
+ )?;
651
+ let mut imports = crate::ImportSection::new();
652
+ reencoder.parse_import_section(&mut imports, section)?;
653
+ module.section(&imports);
654
+ }
655
+ wasmparser::Payload::FunctionSection(section) => {
656
+ handle_intersperse_section_hook(
657
+ reencoder,
658
+ module,
659
+ &mut last_section,
660
+ Some(crate::SectionId::Function),
661
+ )?;
662
+ let mut functions = crate::FunctionSection::new();
663
+ reencoder.parse_function_section(&mut functions, section)?;
664
+ module.section(&functions);
665
+ }
666
+ wasmparser::Payload::TableSection(section) => {
667
+ handle_intersperse_section_hook(
668
+ reencoder,
669
+ module,
670
+ &mut last_section,
671
+ Some(crate::SectionId::Table),
672
+ )?;
673
+ let mut tables = crate::TableSection::new();
674
+ reencoder.parse_table_section(&mut tables, section)?;
675
+ module.section(&tables);
676
+ }
677
+ wasmparser::Payload::MemorySection(section) => {
678
+ handle_intersperse_section_hook(
679
+ reencoder,
680
+ module,
681
+ &mut last_section,
682
+ Some(crate::SectionId::Memory),
683
+ )?;
684
+ let mut memories = crate::MemorySection::new();
685
+ reencoder.parse_memory_section(&mut memories, section)?;
686
+ module.section(&memories);
687
+ }
688
+ wasmparser::Payload::TagSection(section) => {
689
+ handle_intersperse_section_hook(
690
+ reencoder,
691
+ module,
692
+ &mut last_section,
693
+ Some(crate::SectionId::Tag),
694
+ )?;
695
+ let mut tags = crate::TagSection::new();
696
+ reencoder.parse_tag_section(&mut tags, section)?;
697
+ module.section(&tags);
698
+ }
699
+ wasmparser::Payload::GlobalSection(section) => {
700
+ handle_intersperse_section_hook(
701
+ reencoder,
702
+ module,
703
+ &mut last_section,
704
+ Some(crate::SectionId::Global),
705
+ )?;
706
+ let mut globals = crate::GlobalSection::new();
707
+ reencoder.parse_global_section(&mut globals, section)?;
708
+ module.section(&globals);
709
+ }
710
+ wasmparser::Payload::ExportSection(section) => {
711
+ handle_intersperse_section_hook(
712
+ reencoder,
713
+ module,
714
+ &mut last_section,
715
+ Some(crate::SectionId::Export),
716
+ )?;
717
+ let mut exports = crate::ExportSection::new();
718
+ reencoder.parse_export_section(&mut exports, section)?;
719
+ module.section(&exports);
720
+ }
721
+ wasmparser::Payload::StartSection { func, .. } => {
722
+ handle_intersperse_section_hook(
723
+ reencoder,
724
+ module,
725
+ &mut last_section,
726
+ Some(crate::SectionId::Start),
727
+ )?;
728
+ module.section(&crate::StartSection {
729
+ function_index: reencoder.start_section(func),
730
+ });
731
+ }
732
+ wasmparser::Payload::ElementSection(section) => {
733
+ handle_intersperse_section_hook(
734
+ reencoder,
735
+ module,
736
+ &mut last_section,
737
+ Some(crate::SectionId::Element),
738
+ )?;
739
+ let mut elements = crate::ElementSection::new();
740
+ reencoder.parse_element_section(&mut elements, section)?;
741
+ module.section(&elements);
742
+ }
743
+ wasmparser::Payload::DataCountSection { count, .. } => {
744
+ handle_intersperse_section_hook(
745
+ reencoder,
746
+ module,
747
+ &mut last_section,
748
+ Some(crate::SectionId::DataCount),
749
+ )?;
750
+ let count = reencoder.data_count(count);
751
+ module.section(&crate::DataCountSection { count });
752
+ }
753
+ wasmparser::Payload::DataSection(section) => {
754
+ handle_intersperse_section_hook(
755
+ reencoder,
756
+ module,
757
+ &mut last_section,
758
+ Some(crate::SectionId::Data),
759
+ )?;
760
+ let mut data = crate::DataSection::new();
761
+ reencoder.parse_data_section(&mut data, section)?;
762
+ module.section(&data);
763
+ }
764
+ wasmparser::Payload::CodeSectionStart { range, .. } => {
765
+ handle_intersperse_section_hook(
766
+ reencoder,
767
+ module,
768
+ &mut last_section,
769
+ Some(crate::SectionId::Code),
770
+ )?;
771
+ let mut codes = crate::CodeSection::new();
772
+
773
+ // Convert from `range` to a byte range within `data` while
774
+ // accounting for various offsets. Then create a
775
+ // `CodeSectionReader` (which notably the payload does not
776
+ // give us here) and recurse with that. This means that
777
+ // users overridding `parse_code_section` always get that
778
+ // function called.
779
+ let section = match data.get(range.start - orig_offset..range.end - orig_offset)
780
+ {
781
+ Some(section) => section,
782
+ None => return Err(Error::InvalidCodeSectionSize),
783
+ };
784
+ let reader = wasmparser::BinaryReader::new(section, range.start);
785
+ let section = wasmparser::CodeSectionReader::new(reader)?;
786
+ reencoder.parse_code_section(&mut codes, section)?;
787
+ module.section(&codes);
788
+ }
789
+
790
+ // Parsing of code section entries (function bodies) happens
791
+ // above during the handling of the code section. That means
792
+ // that we just skip all these payloads.
793
+ wasmparser::Payload::CodeSectionEntry(_) => {}
794
+
795
+ wasmparser::Payload::ModuleSection { .. }
796
+ | wasmparser::Payload::InstanceSection(_)
797
+ | wasmparser::Payload::CoreTypeSection(_)
798
+ | wasmparser::Payload::ComponentSection { .. }
799
+ | wasmparser::Payload::ComponentInstanceSection(_)
800
+ | wasmparser::Payload::ComponentAliasSection(_)
801
+ | wasmparser::Payload::ComponentTypeSection(_)
802
+ | wasmparser::Payload::ComponentCanonicalSection(_)
803
+ | wasmparser::Payload::ComponentStartSection { .. }
804
+ | wasmparser::Payload::ComponentImportSection(_)
805
+ | wasmparser::Payload::ComponentExportSection(_) => {
806
+ return Err(Error::UnexpectedNonCoreModuleSection)
807
+ }
808
+ wasmparser::Payload::CustomSection(section) => {
809
+ reencoder.parse_custom_section(module, section)?;
810
+ }
811
+ wasmparser::Payload::UnknownSection { id, contents, .. } => {
812
+ reencoder.parse_unknown_section(module, id, contents)?;
813
+ }
814
+ wasmparser::Payload::End(_) => {
815
+ handle_intersperse_section_hook(reencoder, module, &mut last_section, None)?;
816
+ }
817
+ }
818
+ }
819
+
820
+ Ok(())
821
+ }
822
+
823
+ /// A hook method that is called inside [`Reencode::parse_core_module`]
824
+ /// before and after every non-custom core wasm section.
825
+ ///
826
+ /// This method can be used to insert new custom sections in between those
827
+ /// sections, or to detect when a non-custom section is missing and insert
828
+ /// it in the [proper order].
829
+ ///
830
+ /// The `after` parameter is `None` iff the hook is called before the first
831
+ /// non-custom section, and `Some(s)` afterwards, where `s` is the
832
+ /// [`SectionId`] of the previous non-custom section.
833
+ ///
834
+ /// The `before` parameter is `None` iff the hook is called after the last
835
+ /// non-custom section, and `Some(s)` beforehand, where `s` is the
836
+ /// [`SectionId`] of the following non-custom section.
837
+ ///
838
+ /// [proper order]: https://webassembly.github.io/spec/core/binary/modules.html#binary-module
839
+ /// [`SectionId`]: crate::SectionId
840
+ pub fn intersperse_section_hook<T: ?Sized + Reencode>(
841
+ _reencoder: &mut T,
842
+ _module: &mut crate::Module,
843
+ _after: Option<crate::SectionId>,
844
+ _before: Option<crate::SectionId>,
845
+ ) -> Result<(), Error<T::Error>> {
846
+ Ok(())
847
+ }
848
+
849
+ pub fn memory_index<T: ?Sized + Reencode>(_reencoder: &mut T, memory: u32) -> u32 {
850
+ memory
851
+ }
852
+
853
+ pub fn mem_arg<T: ?Sized + Reencode>(
854
+ reencoder: &mut T,
855
+ arg: wasmparser::MemArg,
856
+ ) -> crate::MemArg {
857
+ crate::MemArg {
858
+ offset: arg.offset,
859
+ align: arg.align.into(),
860
+ memory_index: reencoder.memory_index(arg.memory),
861
+ }
862
+ }
863
+
864
+ pub fn ordering<T: ?Sized + Reencode>(
865
+ _reencoder: &mut T,
866
+ arg: wasmparser::Ordering,
867
+ ) -> crate::Ordering {
868
+ match arg {
869
+ wasmparser::Ordering::SeqCst => crate::Ordering::SeqCst,
870
+ wasmparser::Ordering::AcqRel => crate::Ordering::AcqRel,
871
+ }
872
+ }
873
+
874
+ pub fn function_index<T: ?Sized + Reencode>(_reencoder: &mut T, func: u32) -> u32 {
875
+ func
876
+ }
877
+
878
+ pub fn tag_index<T: ?Sized + Reencode>(_reencoder: &mut T, tag: u32) -> u32 {
879
+ tag
880
+ }
881
+
882
+ pub fn catch<T: ?Sized + Reencode>(reencoder: &mut T, arg: wasmparser::Catch) -> crate::Catch {
883
+ match arg {
884
+ wasmparser::Catch::One { tag, label } => crate::Catch::One {
885
+ tag: reencoder.tag_index(tag),
886
+ label,
887
+ },
888
+ wasmparser::Catch::OneRef { tag, label } => crate::Catch::OneRef {
889
+ tag: reencoder.tag_index(tag),
890
+ label,
891
+ },
892
+ wasmparser::Catch::All { label } => crate::Catch::All { label },
893
+ wasmparser::Catch::AllRef { label } => crate::Catch::AllRef { label },
894
+ }
895
+ }
896
+
897
+ pub fn handle<T: ?Sized + Reencode>(
898
+ reencoder: &mut T,
899
+ arg: wasmparser::Handle,
900
+ ) -> crate::Handle {
901
+ match arg {
902
+ wasmparser::Handle::OnLabel { tag, label } => crate::Handle::OnLabel {
903
+ tag: reencoder.tag_index(tag),
904
+ label,
905
+ },
906
+ wasmparser::Handle::OnSwitch { tag } => crate::Handle::OnSwitch {
907
+ tag: reencoder.tag_index(tag),
908
+ },
909
+ }
910
+ }
911
+
912
+ /// Parses the input `section` given from the `wasmparser` crate and
913
+ /// adds the custom section to the `module`.
914
+ pub fn parse_custom_section<T: ?Sized + Reencode>(
915
+ reencoder: &mut T,
916
+ module: &mut crate::Module,
917
+ section: wasmparser::CustomSectionReader<'_>,
918
+ ) -> Result<(), Error<T::Error>> {
919
+ match section.as_known() {
920
+ wasmparser::KnownCustom::Name(name) => {
921
+ module.section(&reencoder.custom_name_section(name)?);
922
+ }
923
+ _ => {
924
+ module.section(&reencoder.custom_section(section));
925
+ }
926
+ }
927
+ Ok(())
928
+ }
929
+
930
+ /// Converts the input `section` given from the `wasmparser` crate into an
931
+ /// encoded custom section.
932
+ pub fn custom_section<'a, T: ?Sized + Reencode>(
933
+ _reencoder: &mut T,
934
+ section: wasmparser::CustomSectionReader<'a>,
935
+ ) -> crate::CustomSection<'a> {
936
+ crate::CustomSection {
937
+ data: section.data().into(),
938
+ name: section.name().into(),
939
+ }
940
+ }
941
+
942
+ pub fn export_kind<T: ?Sized + Reencode>(
943
+ _reencoder: &mut T,
944
+ external_kind: wasmparser::ExternalKind,
945
+ ) -> crate::ExportKind {
946
+ match external_kind {
947
+ wasmparser::ExternalKind::Func => crate::ExportKind::Func,
948
+ wasmparser::ExternalKind::Table => crate::ExportKind::Table,
949
+ wasmparser::ExternalKind::Memory => crate::ExportKind::Memory,
950
+ wasmparser::ExternalKind::Global => crate::ExportKind::Global,
951
+ wasmparser::ExternalKind::Tag => crate::ExportKind::Tag,
952
+ }
953
+ }
954
+
955
+ pub fn memory_type<T: ?Sized + Reencode>(
956
+ _reencoder: &mut T,
957
+ memory_ty: wasmparser::MemoryType,
958
+ ) -> crate::MemoryType {
959
+ crate::MemoryType {
960
+ minimum: memory_ty.initial,
961
+ maximum: memory_ty.maximum,
962
+ memory64: memory_ty.memory64,
963
+ shared: memory_ty.shared,
964
+ page_size_log2: memory_ty.page_size_log2,
965
+ }
966
+ }
967
+
968
+ pub fn tag_kind<T: ?Sized + Reencode>(
969
+ _reencoder: &mut T,
970
+ kind: wasmparser::TagKind,
971
+ ) -> crate::TagKind {
972
+ match kind {
973
+ wasmparser::TagKind::Exception => crate::TagKind::Exception,
974
+ }
975
+ }
976
+
977
+ pub fn type_index<T: ?Sized + Reencode>(_reencoder: &mut T, ty: u32) -> u32 {
978
+ ty
979
+ }
980
+
981
+ pub fn type_index_unpacked<T: ?Sized + Reencode>(
982
+ reencoder: &mut T,
983
+ ty: wasmparser::UnpackedIndex,
984
+ ) -> Result<u32, Error<T::Error>> {
985
+ ty.as_module_index()
986
+ .map(|ty| reencoder.type_index(ty))
987
+ .ok_or(Error::CanonicalizedHeapTypeReference)
988
+ }
989
+
990
+ pub fn tag_type<T: ?Sized + Reencode>(
991
+ reencoder: &mut T,
992
+ tag_ty: wasmparser::TagType,
993
+ ) -> crate::TagType {
994
+ crate::TagType {
995
+ kind: reencoder.tag_kind(tag_ty.kind),
996
+ func_type_idx: reencoder.type_index(tag_ty.func_type_idx),
997
+ }
998
+ }
999
+
1000
+ pub fn abstract_heap_type<T: ?Sized + Reencode>(
1001
+ _reencoder: &mut T,
1002
+ value: wasmparser::AbstractHeapType,
1003
+ ) -> crate::AbstractHeapType {
1004
+ use wasmparser::AbstractHeapType::*;
1005
+ match value {
1006
+ Func => crate::AbstractHeapType::Func,
1007
+ Extern => crate::AbstractHeapType::Extern,
1008
+ Any => crate::AbstractHeapType::Any,
1009
+ None => crate::AbstractHeapType::None,
1010
+ NoExtern => crate::AbstractHeapType::NoExtern,
1011
+ NoFunc => crate::AbstractHeapType::NoFunc,
1012
+ Eq => crate::AbstractHeapType::Eq,
1013
+ Struct => crate::AbstractHeapType::Struct,
1014
+ Array => crate::AbstractHeapType::Array,
1015
+ I31 => crate::AbstractHeapType::I31,
1016
+ Exn => crate::AbstractHeapType::Exn,
1017
+ NoExn => crate::AbstractHeapType::NoExn,
1018
+ Cont => crate::AbstractHeapType::Cont,
1019
+ NoCont => crate::AbstractHeapType::NoCont,
1020
+ }
1021
+ }
1022
+
1023
+ /// Parses the input `section` given from the `wasmparser` crate and adds
1024
+ /// all the types to the `types` section.
1025
+ pub fn parse_type_section<T: ?Sized + Reencode>(
1026
+ reencoder: &mut T,
1027
+ types: &mut crate::TypeSection,
1028
+ section: wasmparser::TypeSectionReader<'_>,
1029
+ ) -> Result<(), Error<T::Error>> {
1030
+ for rec_group in section {
1031
+ reencoder.parse_recursive_type_group(types.ty(), rec_group?)?;
1032
+ }
1033
+ Ok(())
1034
+ }
1035
+
1036
+ /// Parses a single [`wasmparser::RecGroup`] and adds it to the `types` section.
1037
+ pub fn parse_recursive_type_group<T: ?Sized + Reencode>(
1038
+ reencoder: &mut T,
1039
+ encoder: CoreTypeEncoder,
1040
+ rec_group: wasmparser::RecGroup,
1041
+ ) -> Result<(), Error<T::Error>> {
1042
+ if rec_group.is_explicit_rec_group() {
1043
+ let subtypes = rec_group
1044
+ .into_types()
1045
+ .map(|t| reencoder.sub_type(t))
1046
+ .collect::<Result<Vec<_>, _>>()?;
1047
+ encoder.rec(subtypes);
1048
+ } else {
1049
+ let ty = rec_group.into_types().next().unwrap();
1050
+ encoder.subtype(&reencoder.sub_type(ty)?);
1051
+ }
1052
+ Ok(())
1053
+ }
1054
+
1055
+ pub fn sub_type<T: ?Sized + Reencode>(
1056
+ reencoder: &mut T,
1057
+ sub_ty: wasmparser::SubType,
1058
+ ) -> Result<crate::SubType, Error<T::Error>> {
1059
+ Ok(crate::SubType {
1060
+ is_final: sub_ty.is_final,
1061
+ supertype_idx: sub_ty
1062
+ .supertype_idx
1063
+ .map(|i| reencoder.type_index_unpacked(i.unpack()))
1064
+ .transpose()?,
1065
+ composite_type: reencoder.composite_type(sub_ty.composite_type)?,
1066
+ })
1067
+ }
1068
+
1069
+ pub fn composite_type<T: ?Sized + Reencode>(
1070
+ reencoder: &mut T,
1071
+ composite_ty: wasmparser::CompositeType,
1072
+ ) -> Result<crate::CompositeType, Error<T::Error>> {
1073
+ let inner = match composite_ty.inner {
1074
+ wasmparser::CompositeInnerType::Func(f) => {
1075
+ crate::CompositeInnerType::Func(reencoder.func_type(f)?)
1076
+ }
1077
+ wasmparser::CompositeInnerType::Array(a) => {
1078
+ crate::CompositeInnerType::Array(reencoder.array_type(a)?)
1079
+ }
1080
+ wasmparser::CompositeInnerType::Struct(s) => {
1081
+ crate::CompositeInnerType::Struct(reencoder.struct_type(s)?)
1082
+ }
1083
+ wasmparser::CompositeInnerType::Cont(c) => {
1084
+ crate::CompositeInnerType::Cont(reencoder.cont_type(c)?)
1085
+ }
1086
+ };
1087
+ Ok(crate::CompositeType {
1088
+ inner,
1089
+ shared: composite_ty.shared,
1090
+ })
1091
+ }
1092
+
1093
+ pub fn func_type<T: ?Sized + Reencode>(
1094
+ reencoder: &mut T,
1095
+ func_ty: wasmparser::FuncType,
1096
+ ) -> Result<crate::FuncType, Error<T::Error>> {
1097
+ let mut buf = Vec::with_capacity(func_ty.params().len() + func_ty.results().len());
1098
+ for ty in func_ty.params().iter().chain(func_ty.results()).copied() {
1099
+ buf.push(reencoder.val_type(ty)?);
1100
+ }
1101
+ Ok(crate::FuncType::from_parts(
1102
+ buf.into(),
1103
+ func_ty.params().len(),
1104
+ ))
1105
+ }
1106
+
1107
+ pub fn array_type<T: ?Sized + Reencode>(
1108
+ reencoder: &mut T,
1109
+ array_ty: wasmparser::ArrayType,
1110
+ ) -> Result<crate::ArrayType, Error<T::Error>> {
1111
+ Ok(crate::ArrayType(reencoder.field_type(array_ty.0)?))
1112
+ }
1113
+
1114
+ pub fn struct_type<T: ?Sized + Reencode>(
1115
+ reencoder: &mut T,
1116
+ struct_ty: wasmparser::StructType,
1117
+ ) -> Result<crate::StructType, Error<T::Error>> {
1118
+ Ok(crate::StructType {
1119
+ fields: struct_ty
1120
+ .fields
1121
+ .iter()
1122
+ .map(|field_ty| reencoder.field_type(*field_ty))
1123
+ .collect::<Result<_, _>>()?,
1124
+ })
1125
+ }
1126
+
1127
+ pub fn field_type<T: ?Sized + Reencode>(
1128
+ reencoder: &mut T,
1129
+ field_ty: wasmparser::FieldType,
1130
+ ) -> Result<crate::FieldType, Error<T::Error>> {
1131
+ Ok(crate::FieldType {
1132
+ element_type: reencoder.storage_type(field_ty.element_type)?,
1133
+ mutable: field_ty.mutable,
1134
+ })
1135
+ }
1136
+
1137
+ pub fn storage_type<T: ?Sized + Reencode>(
1138
+ reencoder: &mut T,
1139
+ storage_ty: wasmparser::StorageType,
1140
+ ) -> Result<crate::StorageType, Error<T::Error>> {
1141
+ Ok(match storage_ty {
1142
+ wasmparser::StorageType::I8 => crate::StorageType::I8,
1143
+ wasmparser::StorageType::I16 => crate::StorageType::I16,
1144
+ wasmparser::StorageType::Val(v) => crate::StorageType::Val(reencoder.val_type(v)?),
1145
+ })
1146
+ }
1147
+
1148
+ pub fn cont_type<T: ?Sized + Reencode>(
1149
+ reencoder: &mut T,
1150
+ cont_ty: wasmparser::ContType,
1151
+ ) -> Result<crate::ContType, Error<T::Error>> {
1152
+ Ok(crate::ContType(
1153
+ reencoder.type_index_unpacked(cont_ty.0.unpack())?,
1154
+ ))
1155
+ }
1156
+
1157
+ pub fn val_type<T: ?Sized + Reencode>(
1158
+ reencoder: &mut T,
1159
+ val_ty: wasmparser::ValType,
1160
+ ) -> Result<crate::ValType, Error<T::Error>> {
1161
+ Ok(match val_ty {
1162
+ wasmparser::ValType::I32 => crate::ValType::I32,
1163
+ wasmparser::ValType::I64 => crate::ValType::I64,
1164
+ wasmparser::ValType::F32 => crate::ValType::F32,
1165
+ wasmparser::ValType::F64 => crate::ValType::F64,
1166
+ wasmparser::ValType::V128 => crate::ValType::V128,
1167
+ wasmparser::ValType::Ref(r) => crate::ValType::Ref(reencoder.ref_type(r)?),
1168
+ })
1169
+ }
1170
+
1171
+ pub fn ref_type<T: ?Sized + Reencode>(
1172
+ reencoder: &mut T,
1173
+ ref_type: wasmparser::RefType,
1174
+ ) -> Result<crate::RefType, Error<T::Error>> {
1175
+ Ok(crate::RefType {
1176
+ nullable: ref_type.is_nullable(),
1177
+ heap_type: reencoder.heap_type(ref_type.heap_type())?,
1178
+ })
1179
+ }
1180
+
1181
+ pub fn heap_type<T: ?Sized + Reencode>(
1182
+ reencoder: &mut T,
1183
+ heap_type: wasmparser::HeapType,
1184
+ ) -> Result<crate::HeapType, Error<T::Error>> {
1185
+ Ok(match heap_type {
1186
+ wasmparser::HeapType::Concrete(i) => {
1187
+ crate::HeapType::Concrete(reencoder.type_index_unpacked(i)?)
1188
+ }
1189
+ wasmparser::HeapType::Abstract { shared, ty } => crate::HeapType::Abstract {
1190
+ shared,
1191
+ ty: reencoder.abstract_heap_type(ty),
1192
+ },
1193
+ })
1194
+ }
1195
+
1196
+ /// Parses the input `section` given from the `wasmparser` crate and adds
1197
+ /// all the tables to the `tables` section.
1198
+ pub fn parse_table_section<T: ?Sized + Reencode>(
1199
+ reencoder: &mut T,
1200
+ tables: &mut crate::TableSection,
1201
+ section: wasmparser::TableSectionReader<'_>,
1202
+ ) -> Result<(), Error<T::Error>> {
1203
+ for table in section {
1204
+ reencoder.parse_table(tables, table?)?;
1205
+ }
1206
+ Ok(())
1207
+ }
1208
+
1209
+ /// Parses a single [`wasmparser::Table`] and adds it to the `tables` section.
1210
+ pub fn parse_table<T: ?Sized + Reencode>(
1211
+ reencoder: &mut T,
1212
+ tables: &mut crate::TableSection,
1213
+ table: wasmparser::Table<'_>,
1214
+ ) -> Result<(), Error<T::Error>> {
1215
+ let ty = reencoder.table_type(table.ty)?;
1216
+ match table.init {
1217
+ wasmparser::TableInit::RefNull => {
1218
+ tables.table(ty);
1219
+ }
1220
+ wasmparser::TableInit::Expr(e) => {
1221
+ tables.table_with_init(ty, &reencoder.const_expr(e)?);
1222
+ }
1223
+ }
1224
+ Ok(())
1225
+ }
1226
+
1227
+ pub fn table_type<T: ?Sized + Reencode>(
1228
+ reencoder: &mut T,
1229
+ table_ty: wasmparser::TableType,
1230
+ ) -> Result<crate::TableType, Error<T::Error>> {
1231
+ Ok(crate::TableType {
1232
+ element_type: reencoder.ref_type(table_ty.element_type)?,
1233
+ minimum: table_ty.initial,
1234
+ maximum: table_ty.maximum,
1235
+ table64: table_ty.table64,
1236
+ shared: table_ty.shared,
1237
+ })
1238
+ }
1239
+
1240
+ /// Parses the input `section` given from the `wasmparser` crate and adds
1241
+ /// all the tags to the `tags` section.
1242
+ pub fn parse_tag_section<T: ?Sized + Reencode>(
1243
+ reencoder: &mut T,
1244
+ tags: &mut crate::TagSection,
1245
+ section: wasmparser::TagSectionReader<'_>,
1246
+ ) -> Result<(), Error<T::Error>> {
1247
+ for tag in section {
1248
+ let tag = tag?;
1249
+ tags.tag(reencoder.tag_type(tag));
1250
+ }
1251
+ Ok(())
1252
+ }
1253
+
1254
+ /// Parses the input `section` given from the `wasmparser` crate and adds
1255
+ /// all the exports to the `exports` section.
1256
+ pub fn parse_export_section<T: ?Sized + Reencode>(
1257
+ reencoder: &mut T,
1258
+ exports: &mut crate::ExportSection,
1259
+ section: wasmparser::ExportSectionReader<'_>,
1260
+ ) -> Result<(), Error<T::Error>> {
1261
+ for export in section {
1262
+ reencoder.parse_export(exports, export?);
1263
+ }
1264
+ Ok(())
1265
+ }
1266
+
1267
+ /// Parses the single [`wasmparser::Export`] provided and adds it to the
1268
+ /// `exports` section.
1269
+ pub fn parse_export<T: ?Sized + Reencode>(
1270
+ reencoder: &mut T,
1271
+ exports: &mut crate::ExportSection,
1272
+ export: wasmparser::Export<'_>,
1273
+ ) {
1274
+ exports.export(
1275
+ export.name,
1276
+ reencoder.export_kind(export.kind),
1277
+ reencoder.external_index(export.kind, export.index),
1278
+ );
1279
+ }
1280
+
1281
+ /// Parses the input `section` given from the `wasmparser` crate and adds
1282
+ /// all the globals to the `globals` section.
1283
+ pub fn parse_global_section<T: ?Sized + Reencode>(
1284
+ reencoder: &mut T,
1285
+ globals: &mut crate::GlobalSection,
1286
+ section: wasmparser::GlobalSectionReader<'_>,
1287
+ ) -> Result<(), Error<T::Error>> {
1288
+ for global in section {
1289
+ reencoder.parse_global(globals, global?)?;
1290
+ }
1291
+ Ok(())
1292
+ }
1293
+
1294
+ /// Parses the single [`wasmparser::Global`] provided and adds it to the
1295
+ /// `globals` section.
1296
+ pub fn parse_global<T: ?Sized + Reencode>(
1297
+ reencoder: &mut T,
1298
+ globals: &mut crate::GlobalSection,
1299
+ global: wasmparser::Global<'_>,
1300
+ ) -> Result<(), Error<T::Error>> {
1301
+ globals.global(
1302
+ reencoder.global_type(global.ty)?,
1303
+ &reencoder.const_expr(global.init_expr)?,
1304
+ );
1305
+ Ok(())
1306
+ }
1307
+
1308
+ pub fn global_type<T: ?Sized + Reencode>(
1309
+ reencoder: &mut T,
1310
+ global_ty: wasmparser::GlobalType,
1311
+ ) -> Result<crate::GlobalType, Error<T::Error>> {
1312
+ Ok(crate::GlobalType {
1313
+ val_type: reencoder.val_type(global_ty.content_type)?,
1314
+ mutable: global_ty.mutable,
1315
+ shared: global_ty.shared,
1316
+ })
1317
+ }
1318
+
1319
+ pub fn entity_type<T: ?Sized + Reencode>(
1320
+ reencoder: &mut T,
1321
+ type_ref: wasmparser::TypeRef,
1322
+ ) -> Result<crate::EntityType, Error<T::Error>> {
1323
+ Ok(match type_ref {
1324
+ wasmparser::TypeRef::Func(i) => crate::EntityType::Function(reencoder.type_index(i)),
1325
+ wasmparser::TypeRef::Table(t) => crate::EntityType::Table(reencoder.table_type(t)?),
1326
+ wasmparser::TypeRef::Memory(m) => crate::EntityType::Memory(reencoder.memory_type(m)),
1327
+ wasmparser::TypeRef::Global(g) => crate::EntityType::Global(reencoder.global_type(g)?),
1328
+ wasmparser::TypeRef::Tag(t) => crate::EntityType::Tag(reencoder.tag_type(t)),
1329
+ })
1330
+ }
1331
+
1332
+ /// Parses the input `section` given from the `wasmparser` crate and adds
1333
+ /// all the imports to the `import` section.
1334
+ pub fn parse_import_section<T: ?Sized + Reencode>(
1335
+ reencoder: &mut T,
1336
+ imports: &mut crate::ImportSection,
1337
+ section: wasmparser::ImportSectionReader<'_>,
1338
+ ) -> Result<(), Error<T::Error>> {
1339
+ for import in section {
1340
+ reencoder.parse_import(imports, import?)?;
1341
+ }
1342
+ Ok(())
1343
+ }
1344
+
1345
+ /// Parses the single [`wasmparser::Import`] provided and adds it to the
1346
+ /// `import` section.
1347
+ pub fn parse_import<T: ?Sized + Reencode>(
1348
+ reencoder: &mut T,
1349
+ imports: &mut crate::ImportSection,
1350
+ import: wasmparser::Import<'_>,
1351
+ ) -> Result<(), Error<T::Error>> {
1352
+ imports.import(
1353
+ import.module,
1354
+ import.name,
1355
+ reencoder.entity_type(import.ty)?,
1356
+ );
1357
+ Ok(())
1358
+ }
1359
+
1360
+ /// Parses the input `section` given from the `wasmparser` crate and adds
1361
+ /// all the memories to the `memories` section.
1362
+ pub fn parse_memory_section<T: ?Sized + Reencode>(
1363
+ reencoder: &mut T,
1364
+ memories: &mut crate::MemorySection,
1365
+ section: wasmparser::MemorySectionReader<'_>,
1366
+ ) -> Result<(), Error<T::Error>> {
1367
+ for memory in section {
1368
+ let memory = memory?;
1369
+ memories.memory(reencoder.memory_type(memory));
1370
+ }
1371
+ Ok(())
1372
+ }
1373
+
1374
+ /// Parses the input `section` given from the `wasmparser` crate and adds
1375
+ /// all the functions to the `functions` section.
1376
+ pub fn parse_function_section<T: ?Sized + Reencode>(
1377
+ reencoder: &mut T,
1378
+ functions: &mut crate::FunctionSection,
1379
+ section: wasmparser::FunctionSectionReader<'_>,
1380
+ ) -> Result<(), Error<T::Error>> {
1381
+ for func in section {
1382
+ functions.function(reencoder.type_index(func?));
1383
+ }
1384
+ Ok(())
1385
+ }
1386
+
1387
+ /// Parses the input `section` given from the `wasmparser` crate and adds
1388
+ /// all the data to the `data` section.
1389
+ pub fn parse_data_section<T: ?Sized + Reencode>(
1390
+ reencoder: &mut T,
1391
+ data: &mut crate::DataSection,
1392
+ section: wasmparser::DataSectionReader<'_>,
1393
+ ) -> Result<(), Error<T::Error>> {
1394
+ for datum in section {
1395
+ reencoder.parse_data(data, datum?)?;
1396
+ }
1397
+ Ok(())
1398
+ }
1399
+
1400
+ /// Parses a single [`wasmparser::Data`] and adds it to the `data` section.
1401
+ pub fn parse_data<T: ?Sized + Reencode>(
1402
+ reencoder: &mut T,
1403
+ data: &mut crate::DataSection,
1404
+ datum: wasmparser::Data<'_>,
1405
+ ) -> Result<(), Error<T::Error>> {
1406
+ match datum.kind {
1407
+ wasmparser::DataKind::Active {
1408
+ memory_index,
1409
+ offset_expr,
1410
+ } => data.active(
1411
+ reencoder.memory_index(memory_index),
1412
+ &reencoder.const_expr(offset_expr)?,
1413
+ datum.data.iter().copied(),
1414
+ ),
1415
+ wasmparser::DataKind::Passive => data.passive(datum.data.iter().copied()),
1416
+ };
1417
+ Ok(())
1418
+ }
1419
+
1420
+ /// Parses the input `section` given from the `wasmparser` crate and adds
1421
+ /// all the elements to the `element` section.
1422
+ pub fn parse_element_section<T: ?Sized + Reencode>(
1423
+ reencoder: &mut T,
1424
+ elements: &mut crate::ElementSection,
1425
+ section: wasmparser::ElementSectionReader<'_>,
1426
+ ) -> Result<(), Error<T::Error>> {
1427
+ for element in section {
1428
+ reencoder.parse_element(elements, element?)?;
1429
+ }
1430
+ Ok(())
1431
+ }
1432
+
1433
+ /// Parses the single [`wasmparser::Element`] provided and adds it to the
1434
+ /// `element` section.
1435
+ pub fn parse_element<T: ?Sized + Reencode>(
1436
+ reencoder: &mut T,
1437
+ elements: &mut crate::ElementSection,
1438
+ element: wasmparser::Element<'_>,
1439
+ ) -> Result<(), Error<T::Error>> {
1440
+ let elems = reencoder.element_items(element.items)?;
1441
+ match element.kind {
1442
+ wasmparser::ElementKind::Active {
1443
+ table_index,
1444
+ offset_expr,
1445
+ } => elements.active(
1446
+ // Inform the reencoder that a table index is being used even if
1447
+ // it's not actually present here. That helps wasm-mutate for
1448
+ // example which wants to track uses to know when it's ok to
1449
+ // remove a table.
1450
+ //
1451
+ // If the table index started at `None` and is still zero then
1452
+ // preserve this encoding and keep it at `None`. Otherwise if
1453
+ // the result is nonzero or it was previously nonzero then keep
1454
+ // that encoding too.
1455
+ match (table_index, reencoder.table_index(table_index.unwrap_or(0))) {
1456
+ (None, 0) => None,
1457
+ (_, n) => Some(n),
1458
+ },
1459
+ &reencoder.const_expr(offset_expr)?,
1460
+ elems,
1461
+ ),
1462
+ wasmparser::ElementKind::Passive => elements.passive(elems),
1463
+ wasmparser::ElementKind::Declared => elements.declared(elems),
1464
+ };
1465
+ Ok(())
1466
+ }
1467
+
1468
+ pub fn element_items<'a, T: ?Sized + Reencode>(
1469
+ reencoder: &mut T,
1470
+ items: wasmparser::ElementItems<'a>,
1471
+ ) -> Result<crate::Elements<'a>, Error<T::Error>> {
1472
+ Ok(match items {
1473
+ wasmparser::ElementItems::Functions(f) => {
1474
+ let mut funcs = Vec::new();
1475
+ for func in f {
1476
+ funcs.push(reencoder.function_index(func?));
1477
+ }
1478
+ crate::Elements::Functions(funcs.into())
1479
+ }
1480
+ wasmparser::ElementItems::Expressions(ty, e) => {
1481
+ let mut exprs = Vec::new();
1482
+ for expr in e {
1483
+ exprs.push(reencoder.const_expr(expr?)?);
1484
+ }
1485
+ crate::Elements::Expressions(reencoder.ref_type(ty)?, exprs.into())
1486
+ }
1487
+ })
1488
+ }
1489
+
1490
+ pub fn table_index<T: ?Sized + Reencode>(_reencoder: &mut T, table: u32) -> u32 {
1491
+ table
1492
+ }
1493
+
1494
+ pub fn global_index<T: ?Sized + Reencode>(_reencoder: &mut T, global: u32) -> u32 {
1495
+ global
1496
+ }
1497
+
1498
+ pub fn data_index<T: ?Sized + Reencode>(_reencoder: &mut T, data: u32) -> u32 {
1499
+ data
1500
+ }
1501
+
1502
+ pub fn element_index<T: ?Sized + Reencode>(_reencoder: &mut T, element: u32) -> u32 {
1503
+ element
1504
+ }
1505
+
1506
+ pub fn const_expr<T: ?Sized + Reencode>(
1507
+ reencoder: &mut T,
1508
+ const_expr: wasmparser::ConstExpr,
1509
+ ) -> Result<crate::ConstExpr, Error<T::Error>> {
1510
+ let mut ops = const_expr.get_operators_reader();
1511
+ let mut bytes = Vec::new();
1512
+
1513
+ while !ops.is_end_then_eof() {
1514
+ let insn = reencoder.parse_instruction(&mut ops)?;
1515
+ insn.encode(&mut bytes);
1516
+ }
1517
+
1518
+ Ok(crate::ConstExpr::raw(bytes))
1519
+ }
1520
+
1521
+ pub fn block_type<T: ?Sized + Reencode>(
1522
+ reencoder: &mut T,
1523
+ arg: wasmparser::BlockType,
1524
+ ) -> Result<crate::BlockType, Error<T::Error>> {
1525
+ match arg {
1526
+ wasmparser::BlockType::Empty => Ok(crate::BlockType::Empty),
1527
+ wasmparser::BlockType::FuncType(n) => {
1528
+ Ok(crate::BlockType::FunctionType(reencoder.type_index(n)))
1529
+ }
1530
+ wasmparser::BlockType::Type(t) => Ok(crate::BlockType::Result(reencoder.val_type(t)?)),
1531
+ }
1532
+ }
1533
+
1534
+ pub fn instruction<'a, T: ?Sized + Reencode>(
1535
+ reencoder: &mut T,
1536
+ arg: wasmparser::Operator<'a>,
1537
+ ) -> Result<crate::Instruction<'a>, Error<T::Error>> {
1538
+ use crate::Instruction;
1539
+
1540
+ macro_rules! translate {
1541
+ ($( @$proposal:ident $op:ident $({ $($arg:ident: $argty:ty),* })? => $visit:ident ($($ann:tt)*))*) => {
1542
+ Ok(match arg {
1543
+ $(
1544
+ wasmparser::Operator::$op $({ $($arg),* })? => {
1545
+ $(
1546
+ $(let $arg = translate!(map $arg $arg);)*
1547
+ )?
1548
+ translate!(build $op $($($arg)*)?)
1549
+ }
1550
+ )*
1551
+ })
1552
+ };
1553
+
1554
+ // This case is used to map, based on the name of the field, from the
1555
+ // wasmparser payload type to the wasm-encoder payload type through
1556
+ // `Translator` as applicable.
1557
+ (map $arg:ident tag_index) => (reencoder.tag_index($arg));
1558
+ (map $arg:ident function_index) => (reencoder.function_index($arg));
1559
+ (map $arg:ident table) => (reencoder.table_index($arg));
1560
+ (map $arg:ident table_index) => (reencoder.table_index($arg));
1561
+ (map $arg:ident dst_table) => (reencoder.table_index($arg));
1562
+ (map $arg:ident src_table) => (reencoder.table_index($arg));
1563
+ (map $arg:ident type_index) => (reencoder.type_index($arg));
1564
+ (map $arg:ident array_type_index) => (reencoder.type_index($arg));
1565
+ (map $arg:ident array_type_index_dst) => (reencoder.type_index($arg));
1566
+ (map $arg:ident array_type_index_src) => (reencoder.type_index($arg));
1567
+ (map $arg:ident struct_type_index) => (reencoder.type_index($arg));
1568
+ (map $arg:ident global_index) => (reencoder.global_index($arg));
1569
+ (map $arg:ident mem) => (reencoder.memory_index($arg));
1570
+ (map $arg:ident src_mem) => (reencoder.memory_index($arg));
1571
+ (map $arg:ident dst_mem) => (reencoder.memory_index($arg));
1572
+ (map $arg:ident data_index) => (reencoder.data_index($arg));
1573
+ (map $arg:ident elem_index) => (reencoder.element_index($arg));
1574
+ (map $arg:ident array_data_index) => (reencoder.data_index($arg));
1575
+ (map $arg:ident array_elem_index) => (reencoder.element_index($arg));
1576
+ (map $arg:ident blockty) => (reencoder.block_type($arg)?);
1577
+ (map $arg:ident relative_depth) => ($arg);
1578
+ (map $arg:ident targets) => ((
1579
+ $arg
1580
+ .targets()
1581
+ .collect::<Result<Vec<_>, wasmparser::BinaryReaderError>>()?
1582
+ .into(),
1583
+ $arg.default(),
1584
+ ));
1585
+ (map $arg:ident ty) => (reencoder.val_type($arg)?);
1586
+ (map $arg:ident hty) => (reencoder.heap_type($arg)?);
1587
+ (map $arg:ident from_ref_type) => (reencoder.ref_type($arg)?);
1588
+ (map $arg:ident to_ref_type) => (reencoder.ref_type($arg)?);
1589
+ (map $arg:ident memarg) => (reencoder.mem_arg($arg));
1590
+ (map $arg:ident ordering) => (reencoder.ordering($arg));
1591
+ (map $arg:ident local_index) => ($arg);
1592
+ (map $arg:ident value) => ($arg);
1593
+ (map $arg:ident lane) => ($arg);
1594
+ (map $arg:ident lanes) => ($arg);
1595
+ (map $arg:ident array_size) => ($arg);
1596
+ (map $arg:ident field_index) => ($arg);
1597
+ (map $arg:ident try_table) => ($arg);
1598
+ (map $arg:ident argument_index) => (reencoder.type_index($arg));
1599
+ (map $arg:ident result_index) => (reencoder.type_index($arg));
1600
+ (map $arg:ident cont_type_index) => (reencoder.type_index($arg));
1601
+ (map $arg:ident resume_table) => ((
1602
+ $arg.handlers.into_iter().map(|h| reencoder.handle(h)).collect::<Vec<_>>().into()
1603
+ ));
1604
+
1605
+ // This case takes the arguments of a wasmparser instruction and creates
1606
+ // a wasm-encoder instruction. There are a few special cases for where
1607
+ // the structure of a wasmparser instruction differs from that of
1608
+ // wasm-encoder.
1609
+ (build $op:ident) => (Instruction::$op);
1610
+ (build BrTable $arg:ident) => (Instruction::BrTable($arg.0, $arg.1));
1611
+ (build I32Const $arg:ident) => (Instruction::I32Const($arg));
1612
+ (build I64Const $arg:ident) => (Instruction::I64Const($arg));
1613
+ (build F32Const $arg:ident) => (Instruction::F32Const(f32::from_bits($arg.bits())));
1614
+ (build F64Const $arg:ident) => (Instruction::F64Const(f64::from_bits($arg.bits())));
1615
+ (build V128Const $arg:ident) => (Instruction::V128Const($arg.i128()));
1616
+ (build TryTable $table:ident) => (Instruction::TryTable(reencoder.block_type($table.ty)?, {
1617
+ $table.catches.into_iter().map(|c| reencoder.catch(c)).collect::<Vec<_>>().into()
1618
+ }));
1619
+ (build $op:ident $arg:ident) => (Instruction::$op($arg));
1620
+ (build $op:ident $($arg:ident)*) => (Instruction::$op { $($arg),* });
1621
+ }
1622
+
1623
+ wasmparser::for_each_operator!(translate)
1624
+ }
1625
+
1626
+ /// Parses the input `section` given from the `wasmparser` crate and adds
1627
+ /// all the code to the `code` section.
1628
+ pub fn parse_code_section<T: ?Sized + Reencode>(
1629
+ reencoder: &mut T,
1630
+ code: &mut crate::CodeSection,
1631
+ section: wasmparser::CodeSectionReader<'_>,
1632
+ ) -> Result<(), Error<T::Error>> {
1633
+ for func in section {
1634
+ reencoder.parse_function_body(code, func?)?;
1635
+ }
1636
+ Ok(())
1637
+ }
1638
+
1639
+ /// Parses a single [`wasmparser::FunctionBody`] and adds it to the `code` section.
1640
+ pub fn parse_function_body<T: ?Sized + Reencode>(
1641
+ reencoder: &mut T,
1642
+ code: &mut crate::CodeSection,
1643
+ func: wasmparser::FunctionBody<'_>,
1644
+ ) -> Result<(), Error<T::Error>> {
1645
+ let mut f = reencoder.new_function_with_parsed_locals(&func)?;
1646
+ let mut reader = func.get_operators_reader()?;
1647
+ while !reader.eof() {
1648
+ f.instruction(&reencoder.parse_instruction(&mut reader)?);
1649
+ }
1650
+ code.function(&f);
1651
+ Ok(())
1652
+ }
1653
+
1654
+ /// Create a new [`crate::Function`] by parsing the locals declarations from the
1655
+ /// provided [`wasmparser::FunctionBody`].
1656
+ pub fn new_function_with_parsed_locals<T: ?Sized + Reencode>(
1657
+ reencoder: &mut T,
1658
+ func: &wasmparser::FunctionBody<'_>,
1659
+ ) -> Result<crate::Function, Error<T::Error>> {
1660
+ let mut locals = Vec::new();
1661
+ for pair in func.get_locals_reader()? {
1662
+ let (cnt, ty) = pair?;
1663
+ locals.push((cnt, reencoder.val_type(ty)?));
1664
+ }
1665
+ Ok(crate::Function::new(locals))
1666
+ }
1667
+
1668
+ /// Parses a single instruction from `reader` and adds it to `function`.
1669
+ pub fn parse_instruction<'a, T: ?Sized + Reencode>(
1670
+ reencoder: &mut T,
1671
+ reader: &mut wasmparser::OperatorsReader<'a>,
1672
+ ) -> Result<crate::Instruction<'a>, Error<T::Error>> {
1673
+ let instruction = reencoder.instruction(reader.read()?)?;
1674
+ Ok(instruction)
1675
+ }
1676
+
1677
+ pub fn parse_unknown_section<T: ?Sized + Reencode>(
1678
+ _reencoder: &mut T,
1679
+ module: &mut crate::Module,
1680
+ id: u8,
1681
+ contents: &[u8],
1682
+ ) -> Result<(), Error<T::Error>> {
1683
+ module.section(&crate::RawSection { id, data: contents });
1684
+ Ok(())
1685
+ }
1686
+
1687
+ pub fn custom_name_section<T: ?Sized + Reencode>(
1688
+ reencoder: &mut T,
1689
+ section: wasmparser::NameSectionReader<'_>,
1690
+ ) -> Result<crate::NameSection, Error<T::Error>> {
1691
+ let mut ret = crate::NameSection::new();
1692
+ for subsection in section {
1693
+ reencoder.parse_custom_name_subsection(&mut ret, subsection?)?;
1694
+ }
1695
+ Ok(ret)
1696
+ }
1697
+
1698
+ pub fn parse_custom_name_subsection<T: ?Sized + Reencode>(
1699
+ reencoder: &mut T,
1700
+ names: &mut crate::NameSection,
1701
+ section: wasmparser::Name<'_>,
1702
+ ) -> Result<(), Error<T::Error>> {
1703
+ match section {
1704
+ wasmparser::Name::Module { name, .. } => {
1705
+ names.module(name);
1706
+ }
1707
+ wasmparser::Name::Function(map) => {
1708
+ names.functions(&name_map(map, |i| reencoder.function_index(i))?);
1709
+ }
1710
+ wasmparser::Name::Type(map) => {
1711
+ names.types(&name_map(map, |i| reencoder.type_index(i))?);
1712
+ }
1713
+ wasmparser::Name::Local(map) => {
1714
+ names.locals(&indirect_name_map(map, |i| reencoder.function_index(i))?);
1715
+ }
1716
+ wasmparser::Name::Label(map) => {
1717
+ names.labels(&indirect_name_map(map, |i| reencoder.function_index(i))?);
1718
+ }
1719
+ wasmparser::Name::Table(map) => {
1720
+ names.tables(&name_map(map, |i| reencoder.table_index(i))?);
1721
+ }
1722
+ wasmparser::Name::Memory(map) => {
1723
+ names.memories(&name_map(map, |i| reencoder.memory_index(i))?);
1724
+ }
1725
+ wasmparser::Name::Global(map) => {
1726
+ names.globals(&name_map(map, |i| reencoder.global_index(i))?);
1727
+ }
1728
+ wasmparser::Name::Element(map) => {
1729
+ names.elements(&name_map(map, |i| reencoder.element_index(i))?);
1730
+ }
1731
+ wasmparser::Name::Data(map) => {
1732
+ names.data(&name_map(map, |i| reencoder.data_index(i))?);
1733
+ }
1734
+ wasmparser::Name::Tag(map) => {
1735
+ names.tags(&name_map(map, |i| reencoder.tag_index(i))?);
1736
+ }
1737
+ wasmparser::Name::Field(map) => {
1738
+ names.fields(&indirect_name_map(map, |i| reencoder.type_index(i))?);
1739
+ }
1740
+ wasmparser::Name::Unknown { ty, data, .. } => {
1741
+ names.raw(ty, data);
1742
+ }
1743
+ }
1744
+ Ok(())
1745
+ }
1746
+
1747
+ pub fn name_map(
1748
+ map: wasmparser::NameMap<'_>,
1749
+ mut map_index: impl FnMut(u32) -> u32,
1750
+ ) -> wasmparser::Result<crate::NameMap> {
1751
+ let mut ret = crate::NameMap::new();
1752
+ for naming in map {
1753
+ let naming = naming?;
1754
+ ret.append(map_index(naming.index), naming.name);
1755
+ }
1756
+ Ok(ret)
1757
+ }
1758
+
1759
+ pub fn indirect_name_map(
1760
+ map: wasmparser::IndirectNameMap<'_>,
1761
+ mut map_index: impl FnMut(u32) -> u32,
1762
+ ) -> wasmparser::Result<crate::IndirectNameMap> {
1763
+ let mut ret = crate::IndirectNameMap::new();
1764
+ for naming in map {
1765
+ let naming = naming?;
1766
+ ret.append(map_index(naming.index), &name_map(naming.names, |i| i)?);
1767
+ }
1768
+ Ok(ret)
1769
+ }
1770
+ }
1771
+
1772
+ impl From<wasmparser::MemArg> for crate::MemArg {
1773
+ fn from(arg: wasmparser::MemArg) -> Self {
1774
+ RoundtripReencoder.mem_arg(arg)
1775
+ }
1776
+ }
1777
+
1778
+ impl From<wasmparser::Ordering> for crate::Ordering {
1779
+ fn from(arg: wasmparser::Ordering) -> Self {
1780
+ RoundtripReencoder.ordering(arg)
1781
+ }
1782
+ }
1783
+
1784
+ impl TryFrom<wasmparser::BlockType> for crate::BlockType {
1785
+ type Error = Error;
1786
+
1787
+ fn try_from(arg: wasmparser::BlockType) -> Result<Self, Self::Error> {
1788
+ RoundtripReencoder.block_type(arg)
1789
+ }
1790
+ }
1791
+
1792
+ impl<'a> TryFrom<wasmparser::Operator<'a>> for crate::Instruction<'a> {
1793
+ type Error = Error;
1794
+
1795
+ fn try_from(arg: wasmparser::Operator<'a>) -> Result<Self, Self::Error> {
1796
+ RoundtripReencoder.instruction(arg)
1797
+ }
1798
+ }
1799
+
1800
+ impl From<wasmparser::Catch> for crate::Catch {
1801
+ fn from(arg: wasmparser::Catch) -> Self {
1802
+ RoundtripReencoder.catch(arg)
1803
+ }
1804
+ }
1805
+
1806
+ impl<'a> TryFrom<wasmparser::ConstExpr<'a>> for crate::ConstExpr {
1807
+ type Error = Error;
1808
+
1809
+ fn try_from(const_expr: wasmparser::ConstExpr) -> Result<Self, Self::Error> {
1810
+ RoundtripReencoder.const_expr(const_expr)
1811
+ }
1812
+ }
1813
+
1814
+ impl<'a> From<wasmparser::CustomSectionReader<'a>> for crate::CustomSection<'a> {
1815
+ fn from(section: wasmparser::CustomSectionReader<'a>) -> Self {
1816
+ RoundtripReencoder.custom_section(section)
1817
+ }
1818
+ }
1819
+
1820
+ impl From<wasmparser::ExternalKind> for crate::ExportKind {
1821
+ fn from(external_kind: wasmparser::ExternalKind) -> Self {
1822
+ RoundtripReencoder.export_kind(external_kind)
1823
+ }
1824
+ }
1825
+
1826
+ impl TryFrom<wasmparser::GlobalType> for crate::GlobalType {
1827
+ type Error = Error;
1828
+
1829
+ fn try_from(global_ty: wasmparser::GlobalType) -> Result<Self, Self::Error> {
1830
+ RoundtripReencoder.global_type(global_ty)
1831
+ }
1832
+ }
1833
+
1834
+ impl From<wasmparser::Handle> for crate::Handle {
1835
+ fn from(arg: wasmparser::Handle) -> Self {
1836
+ RoundtripReencoder.handle(arg)
1837
+ }
1838
+ }
1839
+
1840
+ impl TryFrom<wasmparser::TypeRef> for crate::EntityType {
1841
+ type Error = Error;
1842
+
1843
+ fn try_from(type_ref: wasmparser::TypeRef) -> Result<Self, Self::Error> {
1844
+ RoundtripReencoder.entity_type(type_ref)
1845
+ }
1846
+ }
1847
+
1848
+ impl From<wasmparser::MemoryType> for crate::MemoryType {
1849
+ fn from(memory_ty: wasmparser::MemoryType) -> Self {
1850
+ RoundtripReencoder.memory_type(memory_ty)
1851
+ }
1852
+ }
1853
+
1854
+ impl TryFrom<wasmparser::TableType> for crate::TableType {
1855
+ type Error = Error;
1856
+
1857
+ fn try_from(table_ty: wasmparser::TableType) -> Result<Self, Self::Error> {
1858
+ RoundtripReencoder.table_type(table_ty)
1859
+ }
1860
+ }
1861
+
1862
+ impl From<wasmparser::TagKind> for crate::TagKind {
1863
+ fn from(kind: wasmparser::TagKind) -> Self {
1864
+ RoundtripReencoder.tag_kind(kind)
1865
+ }
1866
+ }
1867
+
1868
+ impl From<wasmparser::TagType> for crate::TagType {
1869
+ fn from(tag_ty: wasmparser::TagType) -> Self {
1870
+ RoundtripReencoder.tag_type(tag_ty)
1871
+ }
1872
+ }
1873
+
1874
+ impl TryFrom<wasmparser::SubType> for crate::SubType {
1875
+ type Error = Error;
1876
+
1877
+ fn try_from(sub_ty: wasmparser::SubType) -> Result<Self, Self::Error> {
1878
+ RoundtripReencoder.sub_type(sub_ty)
1879
+ }
1880
+ }
1881
+
1882
+ impl TryFrom<wasmparser::CompositeType> for crate::CompositeType {
1883
+ type Error = Error;
1884
+
1885
+ fn try_from(composite_ty: wasmparser::CompositeType) -> Result<Self, Self::Error> {
1886
+ RoundtripReencoder.composite_type(composite_ty)
1887
+ }
1888
+ }
1889
+
1890
+ impl TryFrom<wasmparser::FuncType> for crate::FuncType {
1891
+ type Error = Error;
1892
+
1893
+ fn try_from(func_ty: wasmparser::FuncType) -> Result<Self, Self::Error> {
1894
+ RoundtripReencoder.func_type(func_ty)
1895
+ }
1896
+ }
1897
+
1898
+ impl TryFrom<wasmparser::ArrayType> for crate::ArrayType {
1899
+ type Error = Error;
1900
+
1901
+ fn try_from(array_ty: wasmparser::ArrayType) -> Result<Self, Self::Error> {
1902
+ RoundtripReencoder.array_type(array_ty)
1903
+ }
1904
+ }
1905
+
1906
+ impl TryFrom<wasmparser::StructType> for crate::StructType {
1907
+ type Error = Error;
1908
+
1909
+ fn try_from(struct_ty: wasmparser::StructType) -> Result<Self, Self::Error> {
1910
+ RoundtripReencoder.struct_type(struct_ty)
1911
+ }
1912
+ }
1913
+
1914
+ impl TryFrom<wasmparser::FieldType> for crate::FieldType {
1915
+ type Error = Error;
1916
+
1917
+ fn try_from(field_ty: wasmparser::FieldType) -> Result<Self, Self::Error> {
1918
+ RoundtripReencoder.field_type(field_ty)
1919
+ }
1920
+ }
1921
+
1922
+ impl TryFrom<wasmparser::StorageType> for crate::StorageType {
1923
+ type Error = Error;
1924
+
1925
+ fn try_from(storage_ty: wasmparser::StorageType) -> Result<Self, Self::Error> {
1926
+ RoundtripReencoder.storage_type(storage_ty)
1927
+ }
1928
+ }
1929
+
1930
+ impl TryFrom<wasmparser::ValType> for crate::ValType {
1931
+ type Error = Error;
1932
+
1933
+ fn try_from(val_ty: wasmparser::ValType) -> Result<Self, Self::Error> {
1934
+ RoundtripReencoder.val_type(val_ty)
1935
+ }
1936
+ }
1937
+
1938
+ impl TryFrom<wasmparser::RefType> for crate::RefType {
1939
+ type Error = Error;
1940
+
1941
+ fn try_from(ref_type: wasmparser::RefType) -> Result<Self, Self::Error> {
1942
+ RoundtripReencoder.ref_type(ref_type)
1943
+ }
1944
+ }
1945
+
1946
+ impl TryFrom<wasmparser::HeapType> for crate::HeapType {
1947
+ type Error = Error;
1948
+
1949
+ fn try_from(heap_type: wasmparser::HeapType) -> Result<Self, Self::Error> {
1950
+ crate::reencode::utils::heap_type(&mut crate::reencode::RoundtripReencoder, heap_type)
1951
+ }
1952
+ }
1953
+
1954
+ impl From<wasmparser::AbstractHeapType> for crate::AbstractHeapType {
1955
+ fn from(value: wasmparser::AbstractHeapType) -> Self {
1956
+ RoundtripReencoder.abstract_heap_type(value)
1957
+ }
1958
+ }