wasmtime 14.0.3 → 14.0.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (733) hide show
  1. checksums.yaml +4 -4
  2. data/Cargo.lock +68 -59
  3. data/ext/Cargo.toml +8 -8
  4. data/ext/cargo-vendor/{async-timer-1.0.0-beta.10 → async-timer-1.0.0-beta.11}/.cargo-checksum.json +1 -1
  5. data/ext/cargo-vendor/{async-timer-1.0.0-beta.10 → async-timer-1.0.0-beta.11}/Cargo.toml +1 -2
  6. data/ext/cargo-vendor/{async-timer-1.0.0-beta.10 → async-timer-1.0.0-beta.11}/README.md +1 -2
  7. data/ext/cargo-vendor/{async-timer-1.0.0-beta.10 → async-timer-1.0.0-beta.11}/src/interval.rs +0 -11
  8. data/ext/cargo-vendor/{async-timer-1.0.0-beta.10 → async-timer-1.0.0-beta.11}/src/lib.rs +0 -1
  9. data/ext/cargo-vendor/{async-timer-1.0.0-beta.10 → async-timer-1.0.0-beta.11}/src/state.rs +20 -13
  10. data/ext/cargo-vendor/async-timer-1.0.0-beta.11/tests/interval.rs +23 -0
  11. data/ext/cargo-vendor/{wasi-cap-std-sync-14.0.3 → wasi-cap-std-sync-14.0.4}/.cargo-checksum.json +1 -1
  12. data/ext/cargo-vendor/{wasi-cap-std-sync-14.0.3 → wasi-cap-std-sync-14.0.4}/Cargo.toml +2 -2
  13. data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/.cargo-checksum.json +1 -1
  14. data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/Cargo.toml +3 -3
  15. data/ext/cargo-vendor/wasm-encoder-0.36.2/.cargo-checksum.json +1 -0
  16. data/ext/cargo-vendor/wasm-encoder-0.36.2/Cargo.toml +37 -0
  17. data/ext/cargo-vendor/wasm-encoder-0.36.2/README.md +80 -0
  18. data/ext/cargo-vendor/wasm-encoder-0.36.2/src/component/aliases.rs +160 -0
  19. data/ext/cargo-vendor/wasm-encoder-0.36.2/src/component/builder.rs +455 -0
  20. data/ext/cargo-vendor/wasm-encoder-0.36.2/src/component/canonicals.rs +159 -0
  21. data/ext/cargo-vendor/wasm-encoder-0.36.2/src/component/components.rs +29 -0
  22. data/ext/cargo-vendor/wasm-encoder-0.36.2/src/component/exports.rs +124 -0
  23. data/ext/cargo-vendor/wasm-encoder-0.36.2/src/component/imports.rs +175 -0
  24. data/ext/cargo-vendor/wasm-encoder-0.36.2/src/component/instances.rs +200 -0
  25. data/ext/cargo-vendor/wasm-encoder-0.36.2/src/component/modules.rs +29 -0
  26. data/ext/cargo-vendor/wasm-encoder-0.36.2/src/component/names.rs +149 -0
  27. data/ext/cargo-vendor/wasm-encoder-0.36.2/src/component/start.rs +52 -0
  28. data/ext/cargo-vendor/wasm-encoder-0.36.2/src/component/types.rs +771 -0
  29. data/ext/cargo-vendor/wasm-encoder-0.36.2/src/component.rs +168 -0
  30. data/ext/cargo-vendor/wasm-encoder-0.36.2/src/core/code.rs +2989 -0
  31. data/ext/cargo-vendor/wasm-encoder-0.36.2/src/core/custom.rs +73 -0
  32. data/ext/cargo-vendor/wasm-encoder-0.36.2/src/core/data.rs +185 -0
  33. data/ext/cargo-vendor/wasm-encoder-0.36.2/src/core/dump.rs +627 -0
  34. data/ext/cargo-vendor/wasm-encoder-0.36.2/src/core/elements.rs +220 -0
  35. data/ext/cargo-vendor/wasm-encoder-0.36.2/src/core/exports.rs +98 -0
  36. data/ext/cargo-vendor/wasm-encoder-0.36.2/src/core/functions.rs +63 -0
  37. data/ext/cargo-vendor/wasm-encoder-0.36.2/src/core/globals.rs +100 -0
  38. data/ext/cargo-vendor/wasm-encoder-0.36.2/src/core/imports.rs +155 -0
  39. data/ext/cargo-vendor/wasm-encoder-0.36.2/src/core/linking.rs +263 -0
  40. data/ext/cargo-vendor/wasm-encoder-0.36.2/src/core/memories.rs +111 -0
  41. data/ext/cargo-vendor/wasm-encoder-0.36.2/src/core/names.rs +265 -0
  42. data/ext/cargo-vendor/wasm-encoder-0.36.2/src/core/producers.rs +180 -0
  43. data/ext/cargo-vendor/wasm-encoder-0.36.2/src/core/start.rs +39 -0
  44. data/ext/cargo-vendor/wasm-encoder-0.36.2/src/core/tables.rs +115 -0
  45. data/ext/cargo-vendor/wasm-encoder-0.36.2/src/core/tags.rs +104 -0
  46. data/ext/cargo-vendor/wasm-encoder-0.36.2/src/core/types.rs +584 -0
  47. data/ext/cargo-vendor/wasm-encoder-0.36.2/src/core.rs +168 -0
  48. data/ext/cargo-vendor/wasm-encoder-0.36.2/src/lib.rs +215 -0
  49. data/ext/cargo-vendor/wasm-encoder-0.36.2/src/raw.rs +30 -0
  50. data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/.cargo-checksum.json +1 -1
  51. data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/Cargo.toml +10 -10
  52. data/ext/cargo-vendor/wasmtime-asm-macros-14.0.4/.cargo-checksum.json +1 -0
  53. data/ext/cargo-vendor/{wasmtime-asm-macros-14.0.3 → wasmtime-asm-macros-14.0.4}/Cargo.toml +1 -1
  54. data/ext/cargo-vendor/{wasmtime-cache-14.0.3 → wasmtime-cache-14.0.4}/.cargo-checksum.json +1 -1
  55. data/ext/cargo-vendor/{wasmtime-cache-14.0.3 → wasmtime-cache-14.0.4}/Cargo.toml +1 -1
  56. data/ext/cargo-vendor/{wasmtime-component-macro-14.0.3 → wasmtime-component-macro-14.0.4}/.cargo-checksum.json +1 -1
  57. data/ext/cargo-vendor/{wasmtime-component-macro-14.0.3 → wasmtime-component-macro-14.0.4}/Cargo.toml +3 -3
  58. data/ext/cargo-vendor/wasmtime-component-util-14.0.4/.cargo-checksum.json +1 -0
  59. data/ext/cargo-vendor/{wasmtime-component-util-14.0.3 → wasmtime-component-util-14.0.4}/Cargo.toml +1 -1
  60. data/ext/cargo-vendor/{wasmtime-cranelift-14.0.3 → wasmtime-cranelift-14.0.4}/.cargo-checksum.json +1 -1
  61. data/ext/cargo-vendor/{wasmtime-cranelift-14.0.3 → wasmtime-cranelift-14.0.4}/Cargo.toml +10 -10
  62. data/ext/cargo-vendor/{wasmtime-cranelift-shared-14.0.3 → wasmtime-cranelift-shared-14.0.4}/.cargo-checksum.json +1 -1
  63. data/ext/cargo-vendor/{wasmtime-cranelift-shared-14.0.3 → wasmtime-cranelift-shared-14.0.4}/Cargo.toml +5 -5
  64. data/ext/cargo-vendor/{wasmtime-environ-14.0.3 → wasmtime-environ-14.0.4}/.cargo-checksum.json +1 -1
  65. data/ext/cargo-vendor/{wasmtime-environ-14.0.3 → wasmtime-environ-14.0.4}/Cargo.lock +7 -7
  66. data/ext/cargo-vendor/{wasmtime-environ-14.0.3 → wasmtime-environ-14.0.4}/Cargo.toml +4 -4
  67. data/ext/cargo-vendor/{wasmtime-fiber-14.0.3 → wasmtime-fiber-14.0.4}/.cargo-checksum.json +1 -1
  68. data/ext/cargo-vendor/{wasmtime-fiber-14.0.3 → wasmtime-fiber-14.0.4}/Cargo.toml +4 -4
  69. data/ext/cargo-vendor/{wasmtime-jit-14.0.3 → wasmtime-jit-14.0.4}/.cargo-checksum.json +1 -1
  70. data/ext/cargo-vendor/{wasmtime-jit-14.0.3 → wasmtime-jit-14.0.4}/Cargo.toml +5 -5
  71. data/ext/cargo-vendor/{wasmtime-jit-debug-14.0.3 → wasmtime-jit-debug-14.0.4}/.cargo-checksum.json +1 -1
  72. data/ext/cargo-vendor/{wasmtime-jit-debug-14.0.3 → wasmtime-jit-debug-14.0.4}/Cargo.toml +2 -2
  73. data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-14.0.3 → wasmtime-jit-icache-coherence-14.0.4}/.cargo-checksum.json +1 -1
  74. data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-14.0.3 → wasmtime-jit-icache-coherence-14.0.4}/Cargo.toml +1 -1
  75. data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/.cargo-checksum.json +1 -1
  76. data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/Cargo.toml +8 -8
  77. data/ext/cargo-vendor/wasmtime-versioned-export-macros-14.0.4/.cargo-checksum.json +1 -0
  78. data/ext/cargo-vendor/{wasmtime-versioned-export-macros-14.0.3 → wasmtime-versioned-export-macros-14.0.4}/Cargo.toml +1 -1
  79. data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/.cargo-checksum.json +1 -1
  80. data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/Cargo.toml +6 -6
  81. data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/src/preview2/filesystem.rs +13 -4
  82. data/ext/cargo-vendor/{wasmtime-winch-14.0.3 → wasmtime-winch-14.0.4}/.cargo-checksum.json +1 -1
  83. data/ext/cargo-vendor/{wasmtime-winch-14.0.3 → wasmtime-winch-14.0.4}/Cargo.toml +5 -5
  84. data/ext/cargo-vendor/{wasmtime-wit-bindgen-14.0.3 → wasmtime-wit-bindgen-14.0.4}/.cargo-checksum.json +1 -1
  85. data/ext/cargo-vendor/{wasmtime-wit-bindgen-14.0.3 → wasmtime-wit-bindgen-14.0.4}/Cargo.toml +1 -1
  86. data/ext/cargo-vendor/wasmtime-wmemcheck-14.0.4/.cargo-checksum.json +1 -0
  87. data/ext/cargo-vendor/{wasmtime-wmemcheck-14.0.3 → wasmtime-wmemcheck-14.0.4}/Cargo.toml +1 -1
  88. data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/.cargo-checksum.json +1 -1
  89. data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/Cargo.toml +2 -2
  90. data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/component/binary.rs +9 -29
  91. data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/component/import.rs +13 -11
  92. data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/component/resolve.rs +1 -1
  93. data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/core/binary.rs +2 -2
  94. data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/core/resolve/names.rs +1 -1
  95. data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/core/types.rs +4 -4
  96. data/ext/cargo-vendor/wat-1.0.79/.cargo-checksum.json +1 -0
  97. data/ext/cargo-vendor/{wat-1.0.77 → wat-1.0.79}/Cargo.toml +2 -2
  98. data/ext/cargo-vendor/{wiggle-14.0.3 → wiggle-14.0.4}/.cargo-checksum.json +1 -1
  99. data/ext/cargo-vendor/{wiggle-14.0.3 → wiggle-14.0.4}/Cargo.toml +3 -3
  100. data/ext/cargo-vendor/{wiggle-generate-14.0.3 → wiggle-generate-14.0.4}/.cargo-checksum.json +1 -1
  101. data/ext/cargo-vendor/{wiggle-generate-14.0.3 → wiggle-generate-14.0.4}/Cargo.toml +1 -1
  102. data/ext/cargo-vendor/wiggle-macro-14.0.4/.cargo-checksum.json +1 -0
  103. data/ext/cargo-vendor/{wiggle-macro-14.0.3 → wiggle-macro-14.0.4}/Cargo.toml +2 -2
  104. data/ext/cargo-vendor/wiggle-macro-14.0.4/LICENSE +220 -0
  105. data/ext/cargo-vendor/{winch-codegen-0.12.3 → winch-codegen-0.12.4}/.cargo-checksum.json +1 -1
  106. data/ext/cargo-vendor/{winch-codegen-0.12.3 → winch-codegen-0.12.4}/Cargo.toml +3 -3
  107. data/lib/wasmtime/version.rb +1 -1
  108. metadata +723 -687
  109. data/ext/cargo-vendor/async-timer-1.0.0-beta.10/tests/interval.rs +0 -69
  110. data/ext/cargo-vendor/wasmtime-asm-macros-14.0.3/.cargo-checksum.json +0 -1
  111. data/ext/cargo-vendor/wasmtime-component-util-14.0.3/.cargo-checksum.json +0 -1
  112. data/ext/cargo-vendor/wasmtime-versioned-export-macros-14.0.3/.cargo-checksum.json +0 -1
  113. data/ext/cargo-vendor/wasmtime-wmemcheck-14.0.3/.cargo-checksum.json +0 -1
  114. data/ext/cargo-vendor/wat-1.0.77/.cargo-checksum.json +0 -1
  115. data/ext/cargo-vendor/wiggle-macro-14.0.3/.cargo-checksum.json +0 -1
  116. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.10 → async-timer-1.0.0-beta.11}/build.rs +0 -0
  117. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.10 → async-timer-1.0.0-beta.11}/src/c_wrapper/posix.c +0 -0
  118. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.10 → async-timer-1.0.0-beta.11}/src/timed.rs +0 -0
  119. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.10 → async-timer-1.0.0-beta.11}/src/timer/apple.rs +0 -0
  120. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.10 → async-timer-1.0.0-beta.11}/src/timer/async_tokio1.rs +0 -0
  121. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.10 → async-timer-1.0.0-beta.11}/src/timer/dummy.rs +0 -0
  122. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.10 → async-timer-1.0.0-beta.11}/src/timer/mod.rs +0 -0
  123. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.10 → async-timer-1.0.0-beta.11}/src/timer/posix.rs +0 -0
  124. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.10 → async-timer-1.0.0-beta.11}/src/timer/web.rs +0 -0
  125. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.10 → async-timer-1.0.0-beta.11}/src/timer/win.rs +0 -0
  126. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.10 → async-timer-1.0.0-beta.11}/src/utils.rs +0 -0
  127. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.10 → async-timer-1.0.0-beta.11}/tests/timed.rs +0 -0
  128. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.10 → async-timer-1.0.0-beta.11}/tests/timer.rs +0 -0
  129. /data/ext/cargo-vendor/{wasi-cap-std-sync-14.0.3 → wasi-cap-std-sync-14.0.4}/LICENSE +0 -0
  130. /data/ext/cargo-vendor/{wasi-cap-std-sync-14.0.3 → wasi-cap-std-sync-14.0.4}/README.md +0 -0
  131. /data/ext/cargo-vendor/{wasi-cap-std-sync-14.0.3 → wasi-cap-std-sync-14.0.4}/src/clocks.rs +0 -0
  132. /data/ext/cargo-vendor/{wasi-cap-std-sync-14.0.3 → wasi-cap-std-sync-14.0.4}/src/dir.rs +0 -0
  133. /data/ext/cargo-vendor/{wasi-cap-std-sync-14.0.3 → wasi-cap-std-sync-14.0.4}/src/file.rs +0 -0
  134. /data/ext/cargo-vendor/{wasi-cap-std-sync-14.0.3 → wasi-cap-std-sync-14.0.4}/src/lib.rs +0 -0
  135. /data/ext/cargo-vendor/{wasi-cap-std-sync-14.0.3 → wasi-cap-std-sync-14.0.4}/src/net.rs +0 -0
  136. /data/ext/cargo-vendor/{wasi-cap-std-sync-14.0.3 → wasi-cap-std-sync-14.0.4}/src/sched/unix.rs +0 -0
  137. /data/ext/cargo-vendor/{wasi-cap-std-sync-14.0.3 → wasi-cap-std-sync-14.0.4}/src/sched/windows.rs +0 -0
  138. /data/ext/cargo-vendor/{wasi-cap-std-sync-14.0.3 → wasi-cap-std-sync-14.0.4}/src/sched.rs +0 -0
  139. /data/ext/cargo-vendor/{wasi-cap-std-sync-14.0.3 → wasi-cap-std-sync-14.0.4}/src/stdio.rs +0 -0
  140. /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/LICENSE +0 -0
  141. /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/README.md +0 -0
  142. /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/WASI/README.md +0 -0
  143. /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/WASI/docs/README.md +0 -0
  144. /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/WASI/phases/README.md +0 -0
  145. /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/WASI/phases/ephemeral/docs.md +0 -0
  146. /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/WASI/phases/ephemeral/witx/typenames.witx +0 -0
  147. /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/WASI/phases/ephemeral/witx/wasi_ephemeral_args.witx +0 -0
  148. /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/WASI/phases/ephemeral/witx/wasi_ephemeral_clock.witx +0 -0
  149. /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/WASI/phases/ephemeral/witx/wasi_ephemeral_environ.witx +0 -0
  150. /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/WASI/phases/ephemeral/witx/wasi_ephemeral_fd.witx +0 -0
  151. /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/WASI/phases/ephemeral/witx/wasi_ephemeral_path.witx +0 -0
  152. /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/WASI/phases/ephemeral/witx/wasi_ephemeral_poll.witx +0 -0
  153. /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/WASI/phases/ephemeral/witx/wasi_ephemeral_proc.witx +0 -0
  154. /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/WASI/phases/ephemeral/witx/wasi_ephemeral_random.witx +0 -0
  155. /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/WASI/phases/ephemeral/witx/wasi_ephemeral_sched.witx +0 -0
  156. /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/WASI/phases/ephemeral/witx/wasi_ephemeral_sock.witx +0 -0
  157. /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/WASI/phases/old/snapshot_0/docs.md +0 -0
  158. /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/WASI/phases/old/snapshot_0/witx/typenames.witx +0 -0
  159. /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/WASI/phases/old/snapshot_0/witx/wasi_unstable.witx +0 -0
  160. /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/WASI/phases/snapshot/docs.html +0 -0
  161. /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/WASI/phases/snapshot/docs.md +0 -0
  162. /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/WASI/phases/snapshot/witx/typenames.witx +0 -0
  163. /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/WASI/phases/snapshot/witx/wasi_snapshot_preview1.witx +0 -0
  164. /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/WASI/proposal-template/README.md +0 -0
  165. /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/WASI/proposals/README.md +0 -0
  166. /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/WASI/snapshots/README.md +0 -0
  167. /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/WASI/standard/README.md +0 -0
  168. /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/build.rs +0 -0
  169. /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/src/clocks.rs +0 -0
  170. /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/src/ctx.rs +0 -0
  171. /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/src/dir.rs +0 -0
  172. /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/src/error.rs +0 -0
  173. /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/src/file.rs +0 -0
  174. /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/src/lib.rs +0 -0
  175. /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/src/pipe.rs +0 -0
  176. /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/src/random.rs +0 -0
  177. /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/src/sched/subscription.rs +0 -0
  178. /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/src/sched.rs +0 -0
  179. /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/src/snapshots/mod.rs +0 -0
  180. /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/src/snapshots/preview_0.rs +0 -0
  181. /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/src/snapshots/preview_1/error.rs +0 -0
  182. /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/src/snapshots/preview_1.rs +0 -0
  183. /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/src/string_array.rs +0 -0
  184. /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/src/table.rs +0 -0
  185. /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasm-encoder-0.36.2}/LICENSE +0 -0
  186. /data/ext/cargo-vendor/{wasmtime-cache-14.0.3 → wasmtime-14.0.4}/LICENSE +0 -0
  187. /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/README.md +0 -0
  188. /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/code.rs +0 -0
  189. /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/compiler.rs +0 -0
  190. /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/component/component.rs +0 -0
  191. /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/component/func/host.rs +0 -0
  192. /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/component/func/options.rs +0 -0
  193. /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/component/func/typed.rs +0 -0
  194. /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/component/func.rs +0 -0
  195. /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/component/instance.rs +0 -0
  196. /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/component/linker.rs +0 -0
  197. /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/component/matching.rs +0 -0
  198. /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/component/mod.rs +0 -0
  199. /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/component/resources.rs +0 -0
  200. /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/component/storage.rs +0 -0
  201. /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/component/store.rs +0 -0
  202. /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/component/types.rs +0 -0
  203. /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/component/values.rs +0 -0
  204. /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/config.rs +0 -0
  205. /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/coredump.rs +0 -0
  206. /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/engine/serialization.rs +0 -0
  207. /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/engine.rs +0 -0
  208. /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/externals/global.rs +0 -0
  209. /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/externals/table.rs +0 -0
  210. /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/externals.rs +0 -0
  211. /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/func/typed.rs +0 -0
  212. /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/func.rs +0 -0
  213. /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/instance.rs +0 -0
  214. /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/lib.rs +0 -0
  215. /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/limits.rs +0 -0
  216. /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/linker.rs +0 -0
  217. /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/memory.rs +0 -0
  218. /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/module/registry.rs +0 -0
  219. /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/module.rs +0 -0
  220. /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/profiling.rs +0 -0
  221. /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/ref.rs +0 -0
  222. /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/resources.rs +0 -0
  223. /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/signatures.rs +0 -0
  224. /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/store/context.rs +0 -0
  225. /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/store/data.rs +0 -0
  226. /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/store/func_refs.rs +0 -0
  227. /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/store.rs +0 -0
  228. /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/trampoline/func.rs +0 -0
  229. /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/trampoline/global.rs +0 -0
  230. /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/trampoline/memory.rs +0 -0
  231. /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/trampoline/table.rs +0 -0
  232. /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/trampoline.rs +0 -0
  233. /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/trap.rs +0 -0
  234. /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/types/matching.rs +0 -0
  235. /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/types.rs +0 -0
  236. /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/unix.rs +0 -0
  237. /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/v128.rs +0 -0
  238. /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/values.rs +0 -0
  239. /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/windows.rs +0 -0
  240. /data/ext/cargo-vendor/{wasmtime-asm-macros-14.0.3 → wasmtime-asm-macros-14.0.4}/src/lib.rs +0 -0
  241. /data/ext/cargo-vendor/{wasmtime-cranelift-14.0.3 → wasmtime-cache-14.0.4}/LICENSE +0 -0
  242. /data/ext/cargo-vendor/{wasmtime-cache-14.0.3 → wasmtime-cache-14.0.4}/build.rs +0 -0
  243. /data/ext/cargo-vendor/{wasmtime-cache-14.0.3 → wasmtime-cache-14.0.4}/src/config/tests.rs +0 -0
  244. /data/ext/cargo-vendor/{wasmtime-cache-14.0.3 → wasmtime-cache-14.0.4}/src/config.rs +0 -0
  245. /data/ext/cargo-vendor/{wasmtime-cache-14.0.3 → wasmtime-cache-14.0.4}/src/lib.rs +0 -0
  246. /data/ext/cargo-vendor/{wasmtime-cache-14.0.3 → wasmtime-cache-14.0.4}/src/tests.rs +0 -0
  247. /data/ext/cargo-vendor/{wasmtime-cache-14.0.3 → wasmtime-cache-14.0.4}/src/worker/tests/system_time_stub.rs +0 -0
  248. /data/ext/cargo-vendor/{wasmtime-cache-14.0.3 → wasmtime-cache-14.0.4}/src/worker/tests.rs +0 -0
  249. /data/ext/cargo-vendor/{wasmtime-cache-14.0.3 → wasmtime-cache-14.0.4}/src/worker.rs +0 -0
  250. /data/ext/cargo-vendor/{wasmtime-cache-14.0.3 → wasmtime-cache-14.0.4}/tests/cache_write_default_config.rs +0 -0
  251. /data/ext/cargo-vendor/{wasmtime-component-macro-14.0.3 → wasmtime-component-macro-14.0.4}/src/bindgen.rs +0 -0
  252. /data/ext/cargo-vendor/{wasmtime-component-macro-14.0.3 → wasmtime-component-macro-14.0.4}/src/component.rs +0 -0
  253. /data/ext/cargo-vendor/{wasmtime-component-macro-14.0.3 → wasmtime-component-macro-14.0.4}/src/lib.rs +0 -0
  254. /data/ext/cargo-vendor/{wasmtime-component-macro-14.0.3 → wasmtime-component-macro-14.0.4}/tests/codegen/char.wit +0 -0
  255. /data/ext/cargo-vendor/{wasmtime-component-macro-14.0.3 → wasmtime-component-macro-14.0.4}/tests/codegen/conventions.wit +0 -0
  256. /data/ext/cargo-vendor/{wasmtime-component-macro-14.0.3 → wasmtime-component-macro-14.0.4}/tests/codegen/direct-import.wit +0 -0
  257. /data/ext/cargo-vendor/{wasmtime-component-macro-14.0.3 → wasmtime-component-macro-14.0.4}/tests/codegen/empty.wit +0 -0
  258. /data/ext/cargo-vendor/{wasmtime-component-macro-14.0.3 → wasmtime-component-macro-14.0.4}/tests/codegen/flags.wit +0 -0
  259. /data/ext/cargo-vendor/{wasmtime-component-macro-14.0.3 → wasmtime-component-macro-14.0.4}/tests/codegen/floats.wit +0 -0
  260. /data/ext/cargo-vendor/{wasmtime-component-macro-14.0.3 → wasmtime-component-macro-14.0.4}/tests/codegen/function-new.wit +0 -0
  261. /data/ext/cargo-vendor/{wasmtime-component-macro-14.0.3 → wasmtime-component-macro-14.0.4}/tests/codegen/integers.wit +0 -0
  262. /data/ext/cargo-vendor/{wasmtime-component-macro-14.0.3 → wasmtime-component-macro-14.0.4}/tests/codegen/lists.wit +0 -0
  263. /data/ext/cargo-vendor/{wasmtime-component-macro-14.0.3 → wasmtime-component-macro-14.0.4}/tests/codegen/many-arguments.wit +0 -0
  264. /data/ext/cargo-vendor/{wasmtime-component-macro-14.0.3 → wasmtime-component-macro-14.0.4}/tests/codegen/multi-return.wit +0 -0
  265. /data/ext/cargo-vendor/{wasmtime-component-macro-14.0.3 → wasmtime-component-macro-14.0.4}/tests/codegen/multiversion/deps/v1/root.wit +0 -0
  266. /data/ext/cargo-vendor/{wasmtime-component-macro-14.0.3 → wasmtime-component-macro-14.0.4}/tests/codegen/multiversion/deps/v2/root.wit +0 -0
  267. /data/ext/cargo-vendor/{wasmtime-component-macro-14.0.3 → wasmtime-component-macro-14.0.4}/tests/codegen/multiversion/root.wit +0 -0
  268. /data/ext/cargo-vendor/{wasmtime-component-macro-14.0.3 → wasmtime-component-macro-14.0.4}/tests/codegen/records.wit +0 -0
  269. /data/ext/cargo-vendor/{wasmtime-component-macro-14.0.3 → wasmtime-component-macro-14.0.4}/tests/codegen/rename.wit +0 -0
  270. /data/ext/cargo-vendor/{wasmtime-component-macro-14.0.3 → wasmtime-component-macro-14.0.4}/tests/codegen/resources-export.wit +0 -0
  271. /data/ext/cargo-vendor/{wasmtime-component-macro-14.0.3 → wasmtime-component-macro-14.0.4}/tests/codegen/resources-import.wit +0 -0
  272. /data/ext/cargo-vendor/{wasmtime-component-macro-14.0.3 → wasmtime-component-macro-14.0.4}/tests/codegen/share-types.wit +0 -0
  273. /data/ext/cargo-vendor/{wasmtime-component-macro-14.0.3 → wasmtime-component-macro-14.0.4}/tests/codegen/simple-functions.wit +0 -0
  274. /data/ext/cargo-vendor/{wasmtime-component-macro-14.0.3 → wasmtime-component-macro-14.0.4}/tests/codegen/simple-lists.wit +0 -0
  275. /data/ext/cargo-vendor/{wasmtime-component-macro-14.0.3 → wasmtime-component-macro-14.0.4}/tests/codegen/simple-wasi.wit +0 -0
  276. /data/ext/cargo-vendor/{wasmtime-component-macro-14.0.3 → wasmtime-component-macro-14.0.4}/tests/codegen/small-anonymous.wit +0 -0
  277. /data/ext/cargo-vendor/{wasmtime-component-macro-14.0.3 → wasmtime-component-macro-14.0.4}/tests/codegen/smoke-default.wit +0 -0
  278. /data/ext/cargo-vendor/{wasmtime-component-macro-14.0.3 → wasmtime-component-macro-14.0.4}/tests/codegen/smoke-export.wit +0 -0
  279. /data/ext/cargo-vendor/{wasmtime-component-macro-14.0.3 → wasmtime-component-macro-14.0.4}/tests/codegen/smoke.wit +0 -0
  280. /data/ext/cargo-vendor/{wasmtime-component-macro-14.0.3 → wasmtime-component-macro-14.0.4}/tests/codegen/strings.wit +0 -0
  281. /data/ext/cargo-vendor/{wasmtime-component-macro-14.0.3 → wasmtime-component-macro-14.0.4}/tests/codegen/use-paths.wit +0 -0
  282. /data/ext/cargo-vendor/{wasmtime-component-macro-14.0.3 → wasmtime-component-macro-14.0.4}/tests/codegen/variants.wit +0 -0
  283. /data/ext/cargo-vendor/{wasmtime-component-macro-14.0.3 → wasmtime-component-macro-14.0.4}/tests/codegen/worlds-with-types.wit +0 -0
  284. /data/ext/cargo-vendor/{wasmtime-component-macro-14.0.3 → wasmtime-component-macro-14.0.4}/tests/codegen.rs +0 -0
  285. /data/ext/cargo-vendor/{wasmtime-component-util-14.0.3 → wasmtime-component-util-14.0.4}/src/lib.rs +0 -0
  286. /data/ext/cargo-vendor/{wasmtime-environ-14.0.3 → wasmtime-cranelift-14.0.4}/LICENSE +0 -0
  287. /data/ext/cargo-vendor/{wasmtime-cranelift-14.0.3 → wasmtime-cranelift-14.0.4}/SECURITY.md +0 -0
  288. /data/ext/cargo-vendor/{wasmtime-cranelift-14.0.3 → wasmtime-cranelift-14.0.4}/src/builder.rs +0 -0
  289. /data/ext/cargo-vendor/{wasmtime-cranelift-14.0.3 → wasmtime-cranelift-14.0.4}/src/compiler/component.rs +0 -0
  290. /data/ext/cargo-vendor/{wasmtime-cranelift-14.0.3 → wasmtime-cranelift-14.0.4}/src/compiler.rs +0 -0
  291. /data/ext/cargo-vendor/{wasmtime-cranelift-14.0.3 → wasmtime-cranelift-14.0.4}/src/debug/gc.rs +0 -0
  292. /data/ext/cargo-vendor/{wasmtime-cranelift-14.0.3 → wasmtime-cranelift-14.0.4}/src/debug/transform/address_transform.rs +0 -0
  293. /data/ext/cargo-vendor/{wasmtime-cranelift-14.0.3 → wasmtime-cranelift-14.0.4}/src/debug/transform/attr.rs +0 -0
  294. /data/ext/cargo-vendor/{wasmtime-cranelift-14.0.3 → wasmtime-cranelift-14.0.4}/src/debug/transform/expression.rs +0 -0
  295. /data/ext/cargo-vendor/{wasmtime-cranelift-14.0.3 → wasmtime-cranelift-14.0.4}/src/debug/transform/line_program.rs +0 -0
  296. /data/ext/cargo-vendor/{wasmtime-cranelift-14.0.3 → wasmtime-cranelift-14.0.4}/src/debug/transform/mod.rs +0 -0
  297. /data/ext/cargo-vendor/{wasmtime-cranelift-14.0.3 → wasmtime-cranelift-14.0.4}/src/debug/transform/range_info_builder.rs +0 -0
  298. /data/ext/cargo-vendor/{wasmtime-cranelift-14.0.3 → wasmtime-cranelift-14.0.4}/src/debug/transform/refs.rs +0 -0
  299. /data/ext/cargo-vendor/{wasmtime-cranelift-14.0.3 → wasmtime-cranelift-14.0.4}/src/debug/transform/simulate.rs +0 -0
  300. /data/ext/cargo-vendor/{wasmtime-cranelift-14.0.3 → wasmtime-cranelift-14.0.4}/src/debug/transform/unit.rs +0 -0
  301. /data/ext/cargo-vendor/{wasmtime-cranelift-14.0.3 → wasmtime-cranelift-14.0.4}/src/debug/transform/utils.rs +0 -0
  302. /data/ext/cargo-vendor/{wasmtime-cranelift-14.0.3 → wasmtime-cranelift-14.0.4}/src/debug/write_debuginfo.rs +0 -0
  303. /data/ext/cargo-vendor/{wasmtime-cranelift-14.0.3 → wasmtime-cranelift-14.0.4}/src/debug.rs +0 -0
  304. /data/ext/cargo-vendor/{wasmtime-cranelift-14.0.3 → wasmtime-cranelift-14.0.4}/src/func_environ.rs +0 -0
  305. /data/ext/cargo-vendor/{wasmtime-cranelift-14.0.3 → wasmtime-cranelift-14.0.4}/src/lib.rs +0 -0
  306. /data/ext/cargo-vendor/{wasmtime-cranelift-shared-14.0.3 → wasmtime-cranelift-shared-14.0.4}/src/compiled_function.rs +0 -0
  307. /data/ext/cargo-vendor/{wasmtime-cranelift-shared-14.0.3 → wasmtime-cranelift-shared-14.0.4}/src/isa_builder.rs +0 -0
  308. /data/ext/cargo-vendor/{wasmtime-cranelift-shared-14.0.3 → wasmtime-cranelift-shared-14.0.4}/src/lib.rs +0 -0
  309. /data/ext/cargo-vendor/{wasmtime-cranelift-shared-14.0.3 → wasmtime-cranelift-shared-14.0.4}/src/obj.rs +0 -0
  310. /data/ext/cargo-vendor/{wasmtime-fiber-14.0.3 → wasmtime-environ-14.0.4}/LICENSE +0 -0
  311. /data/ext/cargo-vendor/{wasmtime-environ-14.0.3 → wasmtime-environ-14.0.4}/examples/factc.rs +0 -0
  312. /data/ext/cargo-vendor/{wasmtime-environ-14.0.3 → wasmtime-environ-14.0.4}/src/address_map.rs +0 -0
  313. /data/ext/cargo-vendor/{wasmtime-environ-14.0.3 → wasmtime-environ-14.0.4}/src/builtin.rs +0 -0
  314. /data/ext/cargo-vendor/{wasmtime-environ-14.0.3 → wasmtime-environ-14.0.4}/src/compilation.rs +0 -0
  315. /data/ext/cargo-vendor/{wasmtime-environ-14.0.3 → wasmtime-environ-14.0.4}/src/component/compiler.rs +0 -0
  316. /data/ext/cargo-vendor/{wasmtime-environ-14.0.3 → wasmtime-environ-14.0.4}/src/component/dfg.rs +0 -0
  317. /data/ext/cargo-vendor/{wasmtime-environ-14.0.3 → wasmtime-environ-14.0.4}/src/component/info.rs +0 -0
  318. /data/ext/cargo-vendor/{wasmtime-environ-14.0.3 → wasmtime-environ-14.0.4}/src/component/translate/adapt.rs +0 -0
  319. /data/ext/cargo-vendor/{wasmtime-environ-14.0.3 → wasmtime-environ-14.0.4}/src/component/translate/inline.rs +0 -0
  320. /data/ext/cargo-vendor/{wasmtime-environ-14.0.3 → wasmtime-environ-14.0.4}/src/component/translate.rs +0 -0
  321. /data/ext/cargo-vendor/{wasmtime-environ-14.0.3 → wasmtime-environ-14.0.4}/src/component/types/resources.rs +0 -0
  322. /data/ext/cargo-vendor/{wasmtime-environ-14.0.3 → wasmtime-environ-14.0.4}/src/component/types.rs +0 -0
  323. /data/ext/cargo-vendor/{wasmtime-environ-14.0.3 → wasmtime-environ-14.0.4}/src/component/vmcomponent_offsets.rs +0 -0
  324. /data/ext/cargo-vendor/{wasmtime-environ-14.0.3 → wasmtime-environ-14.0.4}/src/component.rs +0 -0
  325. /data/ext/cargo-vendor/{wasmtime-environ-14.0.3 → wasmtime-environ-14.0.4}/src/fact/core_types.rs +0 -0
  326. /data/ext/cargo-vendor/{wasmtime-environ-14.0.3 → wasmtime-environ-14.0.4}/src/fact/signature.rs +0 -0
  327. /data/ext/cargo-vendor/{wasmtime-environ-14.0.3 → wasmtime-environ-14.0.4}/src/fact/trampoline.rs +0 -0
  328. /data/ext/cargo-vendor/{wasmtime-environ-14.0.3 → wasmtime-environ-14.0.4}/src/fact/transcode.rs +0 -0
  329. /data/ext/cargo-vendor/{wasmtime-environ-14.0.3 → wasmtime-environ-14.0.4}/src/fact/traps.rs +0 -0
  330. /data/ext/cargo-vendor/{wasmtime-environ-14.0.3 → wasmtime-environ-14.0.4}/src/fact.rs +0 -0
  331. /data/ext/cargo-vendor/{wasmtime-environ-14.0.3 → wasmtime-environ-14.0.4}/src/lib.rs +0 -0
  332. /data/ext/cargo-vendor/{wasmtime-environ-14.0.3 → wasmtime-environ-14.0.4}/src/module.rs +0 -0
  333. /data/ext/cargo-vendor/{wasmtime-environ-14.0.3 → wasmtime-environ-14.0.4}/src/module_environ.rs +0 -0
  334. /data/ext/cargo-vendor/{wasmtime-environ-14.0.3 → wasmtime-environ-14.0.4}/src/module_types.rs +0 -0
  335. /data/ext/cargo-vendor/{wasmtime-environ-14.0.3 → wasmtime-environ-14.0.4}/src/obj.rs +0 -0
  336. /data/ext/cargo-vendor/{wasmtime-environ-14.0.3 → wasmtime-environ-14.0.4}/src/ref_bits.rs +0 -0
  337. /data/ext/cargo-vendor/{wasmtime-environ-14.0.3 → wasmtime-environ-14.0.4}/src/scopevec.rs +0 -0
  338. /data/ext/cargo-vendor/{wasmtime-environ-14.0.3 → wasmtime-environ-14.0.4}/src/stack_map.rs +0 -0
  339. /data/ext/cargo-vendor/{wasmtime-environ-14.0.3 → wasmtime-environ-14.0.4}/src/trap_encoding.rs +0 -0
  340. /data/ext/cargo-vendor/{wasmtime-environ-14.0.3 → wasmtime-environ-14.0.4}/src/tunables.rs +0 -0
  341. /data/ext/cargo-vendor/{wasmtime-environ-14.0.3 → wasmtime-environ-14.0.4}/src/vmoffsets.rs +0 -0
  342. /data/ext/cargo-vendor/{wasmtime-jit-14.0.3 → wasmtime-fiber-14.0.4}/LICENSE +0 -0
  343. /data/ext/cargo-vendor/{wasmtime-fiber-14.0.3 → wasmtime-fiber-14.0.4}/build.rs +0 -0
  344. /data/ext/cargo-vendor/{wasmtime-fiber-14.0.3 → wasmtime-fiber-14.0.4}/src/lib.rs +0 -0
  345. /data/ext/cargo-vendor/{wasmtime-fiber-14.0.3 → wasmtime-fiber-14.0.4}/src/unix/aarch64.rs +0 -0
  346. /data/ext/cargo-vendor/{wasmtime-fiber-14.0.3 → wasmtime-fiber-14.0.4}/src/unix/arm.rs +0 -0
  347. /data/ext/cargo-vendor/{wasmtime-fiber-14.0.3 → wasmtime-fiber-14.0.4}/src/unix/riscv64.rs +0 -0
  348. /data/ext/cargo-vendor/{wasmtime-fiber-14.0.3 → wasmtime-fiber-14.0.4}/src/unix/s390x.S +0 -0
  349. /data/ext/cargo-vendor/{wasmtime-fiber-14.0.3 → wasmtime-fiber-14.0.4}/src/unix/x86.rs +0 -0
  350. /data/ext/cargo-vendor/{wasmtime-fiber-14.0.3 → wasmtime-fiber-14.0.4}/src/unix/x86_64.rs +0 -0
  351. /data/ext/cargo-vendor/{wasmtime-fiber-14.0.3 → wasmtime-fiber-14.0.4}/src/unix.rs +0 -0
  352. /data/ext/cargo-vendor/{wasmtime-fiber-14.0.3 → wasmtime-fiber-14.0.4}/src/windows.c +0 -0
  353. /data/ext/cargo-vendor/{wasmtime-fiber-14.0.3 → wasmtime-fiber-14.0.4}/src/windows.rs +0 -0
  354. /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-jit-14.0.4}/LICENSE +0 -0
  355. /data/ext/cargo-vendor/{wasmtime-jit-14.0.3 → wasmtime-jit-14.0.4}/src/code_memory.rs +0 -0
  356. /data/ext/cargo-vendor/{wasmtime-jit-14.0.3 → wasmtime-jit-14.0.4}/src/debug.rs +0 -0
  357. /data/ext/cargo-vendor/{wasmtime-jit-14.0.3 → wasmtime-jit-14.0.4}/src/demangling.rs +0 -0
  358. /data/ext/cargo-vendor/{wasmtime-jit-14.0.3 → wasmtime-jit-14.0.4}/src/instantiate.rs +0 -0
  359. /data/ext/cargo-vendor/{wasmtime-jit-14.0.3 → wasmtime-jit-14.0.4}/src/lib.rs +0 -0
  360. /data/ext/cargo-vendor/{wasmtime-jit-14.0.3 → wasmtime-jit-14.0.4}/src/profiling/jitdump.rs +0 -0
  361. /data/ext/cargo-vendor/{wasmtime-jit-14.0.3 → wasmtime-jit-14.0.4}/src/profiling/perfmap.rs +0 -0
  362. /data/ext/cargo-vendor/{wasmtime-jit-14.0.3 → wasmtime-jit-14.0.4}/src/profiling/vtune.rs +0 -0
  363. /data/ext/cargo-vendor/{wasmtime-jit-14.0.3 → wasmtime-jit-14.0.4}/src/profiling.rs +0 -0
  364. /data/ext/cargo-vendor/{wasmtime-jit-14.0.3 → wasmtime-jit-14.0.4}/src/unwind/miri.rs +0 -0
  365. /data/ext/cargo-vendor/{wasmtime-jit-14.0.3 → wasmtime-jit-14.0.4}/src/unwind/systemv.rs +0 -0
  366. /data/ext/cargo-vendor/{wasmtime-jit-14.0.3 → wasmtime-jit-14.0.4}/src/unwind/winx64.rs +0 -0
  367. /data/ext/cargo-vendor/{wasmtime-jit-14.0.3 → wasmtime-jit-14.0.4}/src/unwind.rs +0 -0
  368. /data/ext/cargo-vendor/{wasmtime-jit-debug-14.0.3 → wasmtime-jit-debug-14.0.4}/README.md +0 -0
  369. /data/ext/cargo-vendor/{wasmtime-jit-debug-14.0.3 → wasmtime-jit-debug-14.0.4}/src/gdb_jit_int.rs +0 -0
  370. /data/ext/cargo-vendor/{wasmtime-jit-debug-14.0.3 → wasmtime-jit-debug-14.0.4}/src/lib.rs +0 -0
  371. /data/ext/cargo-vendor/{wasmtime-jit-debug-14.0.3 → wasmtime-jit-debug-14.0.4}/src/perf_jitdump.rs +0 -0
  372. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-14.0.3 → wasmtime-jit-icache-coherence-14.0.4}/src/lib.rs +0 -0
  373. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-14.0.3 → wasmtime-jit-icache-coherence-14.0.4}/src/libc.rs +0 -0
  374. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-14.0.3 → wasmtime-jit-icache-coherence-14.0.4}/src/miri.rs +0 -0
  375. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-14.0.3 → wasmtime-jit-icache-coherence-14.0.4}/src/win.rs +0 -0
  376. /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-runtime-14.0.4}/LICENSE +0 -0
  377. /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/build.rs +0 -0
  378. /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/proptest-regressions/instance/allocator/pooling/memory_pool.txt +0 -0
  379. /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/component/libcalls.rs +0 -0
  380. /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/component/resources.rs +0 -0
  381. /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/component.rs +0 -0
  382. /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/cow.rs +0 -0
  383. /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/debug_builtins.rs +0 -0
  384. /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/export.rs +0 -0
  385. /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/externref.rs +0 -0
  386. /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/helpers.c +0 -0
  387. /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/imports.rs +0 -0
  388. /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/instance/allocator/on_demand.rs +0 -0
  389. /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/instance/allocator/pooling/index_allocator.rs +0 -0
  390. /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/instance/allocator/pooling/memory_pool.rs +0 -0
  391. /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/instance/allocator/pooling/stack_pool.rs +0 -0
  392. /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/instance/allocator/pooling/table_pool.rs +0 -0
  393. /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/instance/allocator/pooling/unix.rs +0 -0
  394. /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/instance/allocator/pooling/windows.rs +0 -0
  395. /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/instance/allocator/pooling.rs +0 -0
  396. /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/instance/allocator.rs +0 -0
  397. /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/instance.rs +0 -0
  398. /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/lib.rs +0 -0
  399. /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/libcalls.rs +0 -0
  400. /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/memory.rs +0 -0
  401. /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/mmap/miri.rs +0 -0
  402. /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/mmap/unix.rs +0 -0
  403. /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/mmap/windows.rs +0 -0
  404. /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/mmap.rs +0 -0
  405. /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/mmap_vec.rs +0 -0
  406. /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/module_id.rs +0 -0
  407. /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/mpk/disabled.rs +0 -0
  408. /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/mpk/enabled.rs +0 -0
  409. /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/mpk/mod.rs +0 -0
  410. /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/mpk/pkru.rs +0 -0
  411. /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/mpk/sys.rs +0 -0
  412. /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/parking_spot.rs +0 -0
  413. /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/send_sync_ptr.rs +0 -0
  414. /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/store_box.rs +0 -0
  415. /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/table.rs +0 -0
  416. /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/trampolines/aarch64.rs +0 -0
  417. /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/trampolines/riscv64.rs +0 -0
  418. /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/trampolines/s390x.S +0 -0
  419. /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/trampolines/s390x.rs +0 -0
  420. /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/trampolines/x86_64.rs +0 -0
  421. /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/trampolines.rs +0 -0
  422. /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/traphandlers/backtrace/aarch64.rs +0 -0
  423. /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/traphandlers/backtrace/riscv64.rs +0 -0
  424. /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/traphandlers/backtrace/s390x.rs +0 -0
  425. /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/traphandlers/backtrace/x86_64.rs +0 -0
  426. /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/traphandlers/backtrace.rs +0 -0
  427. /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/traphandlers/coredump.rs +0 -0
  428. /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/traphandlers/macos.rs +0 -0
  429. /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/traphandlers/unix.rs +0 -0
  430. /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/traphandlers/windows.rs +0 -0
  431. /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/traphandlers.rs +0 -0
  432. /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/vmcontext/vm_host_func_context.rs +0 -0
  433. /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/vmcontext.rs +0 -0
  434. /data/ext/cargo-vendor/{wasmtime-versioned-export-macros-14.0.3 → wasmtime-versioned-export-macros-14.0.4}/src/lib.rs +0 -0
  435. /data/ext/cargo-vendor/{wast-66.0.2 → wasmtime-wasi-14.0.4}/LICENSE +0 -0
  436. /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/README.md +0 -0
  437. /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/build.rs +0 -0
  438. /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/src/lib.rs +0 -0
  439. /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/src/preview2/clocks/host.rs +0 -0
  440. /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/src/preview2/clocks.rs +0 -0
  441. /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/src/preview2/command.rs +0 -0
  442. /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/src/preview2/ctx.rs +0 -0
  443. /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/src/preview2/error.rs +0 -0
  444. /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/src/preview2/host/clocks.rs +0 -0
  445. /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/src/preview2/host/env.rs +0 -0
  446. /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/src/preview2/host/exit.rs +0 -0
  447. /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/src/preview2/host/filesystem/sync.rs +0 -0
  448. /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/src/preview2/host/filesystem.rs +0 -0
  449. /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/src/preview2/host/instance_network.rs +0 -0
  450. /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/src/preview2/host/io.rs +0 -0
  451. /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/src/preview2/host/mod.rs +0 -0
  452. /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/src/preview2/host/network.rs +0 -0
  453. /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/src/preview2/host/random.rs +0 -0
  454. /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/src/preview2/host/tcp.rs +0 -0
  455. /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/src/preview2/host/tcp_create_socket.rs +0 -0
  456. /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/src/preview2/host/udp.rs +0 -0
  457. /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/src/preview2/host/udp_create_socket.rs +0 -0
  458. /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/src/preview2/ip_name_lookup.rs +0 -0
  459. /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/src/preview2/mod.rs +0 -0
  460. /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/src/preview2/network.rs +0 -0
  461. /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/src/preview2/pipe.rs +0 -0
  462. /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/src/preview2/poll.rs +0 -0
  463. /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/src/preview2/preview1.rs +0 -0
  464. /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/src/preview2/random.rs +0 -0
  465. /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/src/preview2/stdio/worker_thread_stdin.rs +0 -0
  466. /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/src/preview2/stdio.rs +0 -0
  467. /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/src/preview2/stream.rs +0 -0
  468. /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/src/preview2/table.rs +0 -0
  469. /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/src/preview2/tcp.rs +0 -0
  470. /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/src/preview2/udp.rs +0 -0
  471. /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/src/preview2/write_stream.rs +0 -0
  472. /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/wit/command-extended.wit +0 -0
  473. /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/wit/deps/cli/command.wit +0 -0
  474. /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/wit/deps/cli/environment.wit +0 -0
  475. /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/wit/deps/cli/exit.wit +0 -0
  476. /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/wit/deps/cli/reactor.wit +0 -0
  477. /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/wit/deps/cli/run.wit +0 -0
  478. /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/wit/deps/cli/stdio.wit +0 -0
  479. /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/wit/deps/cli/terminal.wit +0 -0
  480. /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/wit/deps/clocks/monotonic-clock.wit +0 -0
  481. /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/wit/deps/clocks/timezone.wit +0 -0
  482. /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/wit/deps/clocks/wall-clock.wit +0 -0
  483. /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/wit/deps/clocks/world.wit +0 -0
  484. /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/wit/deps/filesystem/preopens.wit +0 -0
  485. /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/wit/deps/filesystem/types.wit +0 -0
  486. /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/wit/deps/filesystem/world.wit +0 -0
  487. /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/wit/deps/http/incoming-handler.wit +0 -0
  488. /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/wit/deps/http/outgoing-handler.wit +0 -0
  489. /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/wit/deps/http/proxy.wit +0 -0
  490. /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/wit/deps/http/types.wit +0 -0
  491. /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/wit/deps/io/poll.wit +0 -0
  492. /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/wit/deps/io/streams.wit +0 -0
  493. /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/wit/deps/io/world.wit +0 -0
  494. /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/wit/deps/logging/logging.wit +0 -0
  495. /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/wit/deps/logging/world.wit +0 -0
  496. /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/wit/deps/random/insecure-seed.wit +0 -0
  497. /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/wit/deps/random/insecure.wit +0 -0
  498. /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/wit/deps/random/random.wit +0 -0
  499. /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/wit/deps/random/world.wit +0 -0
  500. /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/wit/deps/sockets/instance-network.wit +0 -0
  501. /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/wit/deps/sockets/ip-name-lookup.wit +0 -0
  502. /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/wit/deps/sockets/network.wit +0 -0
  503. /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/wit/deps/sockets/tcp-create-socket.wit +0 -0
  504. /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/wit/deps/sockets/tcp.wit +0 -0
  505. /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/wit/deps/sockets/udp-create-socket.wit +0 -0
  506. /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/wit/deps/sockets/udp.wit +0 -0
  507. /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/wit/deps/sockets/world.wit +0 -0
  508. /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/wit/main.wit +0 -0
  509. /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/wit/test.wit +0 -0
  510. /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/witx/typenames.witx +0 -0
  511. /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/witx/wasi_snapshot_preview1.witx +0 -0
  512. /data/ext/cargo-vendor/{wasmtime-winch-14.0.3 → wasmtime-winch-14.0.4}/LICENSE +0 -0
  513. /data/ext/cargo-vendor/{wasmtime-winch-14.0.3 → wasmtime-winch-14.0.4}/src/builder.rs +0 -0
  514. /data/ext/cargo-vendor/{wasmtime-winch-14.0.3 → wasmtime-winch-14.0.4}/src/compiler.rs +0 -0
  515. /data/ext/cargo-vendor/{wasmtime-winch-14.0.3 → wasmtime-winch-14.0.4}/src/lib.rs +0 -0
  516. /data/ext/cargo-vendor/{wasmtime-wit-bindgen-14.0.3 → wasmtime-wit-bindgen-14.0.4}/src/lib.rs +0 -0
  517. /data/ext/cargo-vendor/{wasmtime-wit-bindgen-14.0.3 → wasmtime-wit-bindgen-14.0.4}/src/rust.rs +0 -0
  518. /data/ext/cargo-vendor/{wasmtime-wit-bindgen-14.0.3 → wasmtime-wit-bindgen-14.0.4}/src/source.rs +0 -0
  519. /data/ext/cargo-vendor/{wasmtime-wit-bindgen-14.0.3 → wasmtime-wit-bindgen-14.0.4}/src/types.rs +0 -0
  520. /data/ext/cargo-vendor/{wasmtime-wmemcheck-14.0.3 → wasmtime-wmemcheck-14.0.4}/src/lib.rs +0 -0
  521. /data/ext/cargo-vendor/{wat-1.0.77 → wast-67.0.1}/LICENSE +0 -0
  522. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/README.md +0 -0
  523. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/component/alias.rs +0 -0
  524. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/component/component.rs +0 -0
  525. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/component/custom.rs +0 -0
  526. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/component/expand.rs +0 -0
  527. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/component/export.rs +0 -0
  528. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/component/func.rs +0 -0
  529. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/component/instance.rs +0 -0
  530. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/component/item_ref.rs +0 -0
  531. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/component/module.rs +0 -0
  532. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/component/types.rs +0 -0
  533. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/component/wast.rs +0 -0
  534. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/component.rs +0 -0
  535. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/core/custom.rs +0 -0
  536. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/core/export.rs +0 -0
  537. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/core/expr.rs +0 -0
  538. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/core/func.rs +0 -0
  539. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/core/global.rs +0 -0
  540. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/core/import.rs +0 -0
  541. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/core/memory.rs +0 -0
  542. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/core/module.rs +0 -0
  543. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/core/resolve/deinline_import_export.rs +0 -0
  544. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/core/resolve/mod.rs +0 -0
  545. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/core/resolve/types.rs +0 -0
  546. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/core/table.rs +0 -0
  547. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/core/tag.rs +0 -0
  548. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/core/wast.rs +0 -0
  549. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/core.rs +0 -0
  550. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/encode.rs +0 -0
  551. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/error.rs +0 -0
  552. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/gensym.rs +0 -0
  553. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/lexer.rs +0 -0
  554. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/lib.rs +0 -0
  555. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/names.rs +0 -0
  556. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/parser.rs +0 -0
  557. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/token.rs +0 -0
  558. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/wast.rs +0 -0
  559. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/wat.rs +0 -0
  560. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/annotations.rs +0 -0
  561. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/comments.rs +0 -0
  562. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/bad-core-func-alias.wat +0 -0
  563. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/bad-core-func-alias.wat.err +0 -0
  564. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/bad-func-alias.wat +0 -0
  565. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/bad-func-alias.wat.err +0 -0
  566. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/bad-index.wat +0 -0
  567. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/bad-index.wat.err +0 -0
  568. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/bad-name.wat +0 -0
  569. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/bad-name.wat.err +0 -0
  570. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/bad-name2.wat +0 -0
  571. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/bad-name2.wat.err +0 -0
  572. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/bad-name3.wat +0 -0
  573. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/bad-name3.wat.err +0 -0
  574. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/block1.wat +0 -0
  575. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/block1.wat.err +0 -0
  576. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/block2.wat +0 -0
  577. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/block2.wat.err +0 -0
  578. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/block3.wat +0 -0
  579. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/block3.wat.err +0 -0
  580. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-block-comment0.wat +0 -0
  581. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-block-comment0.wat.err +0 -0
  582. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-block-comment1.wat +0 -0
  583. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-block-comment1.wat.err +0 -0
  584. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-block-comment2.wat +0 -0
  585. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-block-comment2.wat.err +0 -0
  586. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-block-comment3.wat +0 -0
  587. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-block-comment3.wat.err +0 -0
  588. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-block-comment4.wat +0 -0
  589. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-block-comment4.wat.err +0 -0
  590. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-block-comment5.wat +0 -0
  591. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-block-comment5.wat.err +0 -0
  592. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-block-comment6.wat +0 -0
  593. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-block-comment6.wat.err +0 -0
  594. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-block-comment7.wat +0 -0
  595. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-block-comment7.wat.err +0 -0
  596. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-block-comment8.wat +0 -0
  597. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-block-comment8.wat.err +0 -0
  598. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-line-comment0.wat +0 -0
  599. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-line-comment0.wat.err +0 -0
  600. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-line-comment1.wat +0 -0
  601. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-line-comment1.wat.err +0 -0
  602. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-line-comment2.wat +0 -0
  603. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-line-comment2.wat.err +0 -0
  604. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-line-comment3.wat +0 -0
  605. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-line-comment3.wat.err +0 -0
  606. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-line-comment4.wat +0 -0
  607. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-line-comment4.wat.err +0 -0
  608. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-line-comment5.wat +0 -0
  609. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-line-comment5.wat.err +0 -0
  610. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-line-comment6.wat +0 -0
  611. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-line-comment6.wat.err +0 -0
  612. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-line-comment7.wat +0 -0
  613. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-line-comment7.wat.err +0 -0
  614. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-line-comment8.wat +0 -0
  615. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-line-comment8.wat.err +0 -0
  616. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-string0.wat +0 -0
  617. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-string0.wat.err +0 -0
  618. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-string1.wat +0 -0
  619. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-string1.wat.err +0 -0
  620. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-string2.wat +0 -0
  621. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-string2.wat.err +0 -0
  622. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-string3.wat +0 -0
  623. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-string3.wat.err +0 -0
  624. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-string4.wat +0 -0
  625. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-string4.wat.err +0 -0
  626. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-string5.wat +0 -0
  627. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-string5.wat.err +0 -0
  628. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-string6.wat +0 -0
  629. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-string6.wat.err +0 -0
  630. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-string7.wat +0 -0
  631. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-string7.wat.err +0 -0
  632. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-string8.wat +0 -0
  633. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-string8.wat.err +0 -0
  634. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/inline1.wat +0 -0
  635. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/inline1.wat.err +0 -0
  636. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/newline-in-string.wat +0 -0
  637. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/newline-in-string.wat.err +0 -0
  638. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/string1.wat +0 -0
  639. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/string1.wat.err +0 -0
  640. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/string10.wat +0 -0
  641. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/string10.wat.err +0 -0
  642. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/string11.wat +0 -0
  643. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/string11.wat.err +0 -0
  644. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/string12.wat +0 -0
  645. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/string12.wat.err +0 -0
  646. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/string13.wat +0 -0
  647. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/string13.wat.err +0 -0
  648. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/string14.wat +0 -0
  649. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/string14.wat.err +0 -0
  650. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/string15.wat +0 -0
  651. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/string15.wat.err +0 -0
  652. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/string16.wat +0 -0
  653. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/string16.wat.err +0 -0
  654. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/string2.wat +0 -0
  655. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/string2.wat.err +0 -0
  656. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/string3.wat +0 -0
  657. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/string3.wat.err +0 -0
  658. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/string4.wat +0 -0
  659. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/string4.wat.err +0 -0
  660. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/string5.wat +0 -0
  661. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/string5.wat.err +0 -0
  662. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/string6.wat +0 -0
  663. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/string6.wat.err +0 -0
  664. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/string7.wat +0 -0
  665. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/string7.wat.err +0 -0
  666. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/string8.wat +0 -0
  667. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/string8.wat.err +0 -0
  668. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/string9.wat +0 -0
  669. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/string9.wat.err +0 -0
  670. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/unbalanced.wat +0 -0
  671. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/unbalanced.wat.err +0 -0
  672. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail.rs +0 -0
  673. /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/recursive.rs +0 -0
  674. /data/ext/cargo-vendor/{wiggle-14.0.3 → wat-1.0.79}/LICENSE +0 -0
  675. /data/ext/cargo-vendor/{wat-1.0.77 → wat-1.0.79}/README.md +0 -0
  676. /data/ext/cargo-vendor/{wat-1.0.77 → wat-1.0.79}/src/lib.rs +0 -0
  677. /data/ext/cargo-vendor/{wiggle-generate-14.0.3 → wiggle-14.0.4}/LICENSE +0 -0
  678. /data/ext/cargo-vendor/{wiggle-14.0.3 → wiggle-14.0.4}/README.md +0 -0
  679. /data/ext/cargo-vendor/{wiggle-14.0.3 → wiggle-14.0.4}/src/borrow.rs +0 -0
  680. /data/ext/cargo-vendor/{wiggle-14.0.3 → wiggle-14.0.4}/src/error.rs +0 -0
  681. /data/ext/cargo-vendor/{wiggle-14.0.3 → wiggle-14.0.4}/src/guest_type.rs +0 -0
  682. /data/ext/cargo-vendor/{wiggle-14.0.3 → wiggle-14.0.4}/src/lib.rs +0 -0
  683. /data/ext/cargo-vendor/{wiggle-14.0.3 → wiggle-14.0.4}/src/region.rs +0 -0
  684. /data/ext/cargo-vendor/{wiggle-14.0.3 → wiggle-14.0.4}/src/wasmtime.rs +0 -0
  685. /data/ext/cargo-vendor/{wiggle-macro-14.0.3 → wiggle-generate-14.0.4}/LICENSE +0 -0
  686. /data/ext/cargo-vendor/{wiggle-generate-14.0.3 → wiggle-generate-14.0.4}/README.md +0 -0
  687. /data/ext/cargo-vendor/{wiggle-generate-14.0.3 → wiggle-generate-14.0.4}/src/codegen_settings.rs +0 -0
  688. /data/ext/cargo-vendor/{wiggle-generate-14.0.3 → wiggle-generate-14.0.4}/src/config.rs +0 -0
  689. /data/ext/cargo-vendor/{wiggle-generate-14.0.3 → wiggle-generate-14.0.4}/src/funcs.rs +0 -0
  690. /data/ext/cargo-vendor/{wiggle-generate-14.0.3 → wiggle-generate-14.0.4}/src/lib.rs +0 -0
  691. /data/ext/cargo-vendor/{wiggle-generate-14.0.3 → wiggle-generate-14.0.4}/src/lifetimes.rs +0 -0
  692. /data/ext/cargo-vendor/{wiggle-generate-14.0.3 → wiggle-generate-14.0.4}/src/module_trait.rs +0 -0
  693. /data/ext/cargo-vendor/{wiggle-generate-14.0.3 → wiggle-generate-14.0.4}/src/names.rs +0 -0
  694. /data/ext/cargo-vendor/{wiggle-generate-14.0.3 → wiggle-generate-14.0.4}/src/types/error.rs +0 -0
  695. /data/ext/cargo-vendor/{wiggle-generate-14.0.3 → wiggle-generate-14.0.4}/src/types/flags.rs +0 -0
  696. /data/ext/cargo-vendor/{wiggle-generate-14.0.3 → wiggle-generate-14.0.4}/src/types/handle.rs +0 -0
  697. /data/ext/cargo-vendor/{wiggle-generate-14.0.3 → wiggle-generate-14.0.4}/src/types/mod.rs +0 -0
  698. /data/ext/cargo-vendor/{wiggle-generate-14.0.3 → wiggle-generate-14.0.4}/src/types/record.rs +0 -0
  699. /data/ext/cargo-vendor/{wiggle-generate-14.0.3 → wiggle-generate-14.0.4}/src/types/variant.rs +0 -0
  700. /data/ext/cargo-vendor/{wiggle-generate-14.0.3 → wiggle-generate-14.0.4}/src/wasmtime.rs +0 -0
  701. /data/ext/cargo-vendor/{wiggle-macro-14.0.3 → wiggle-macro-14.0.4}/src/lib.rs +0 -0
  702. /data/ext/cargo-vendor/{winch-codegen-0.12.3 → winch-codegen-0.12.4}/LICENSE +0 -0
  703. /data/ext/cargo-vendor/{winch-codegen-0.12.3 → winch-codegen-0.12.4}/build.rs +0 -0
  704. /data/ext/cargo-vendor/{winch-codegen-0.12.3 → winch-codegen-0.12.4}/src/abi/local.rs +0 -0
  705. /data/ext/cargo-vendor/{winch-codegen-0.12.3 → winch-codegen-0.12.4}/src/abi/mod.rs +0 -0
  706. /data/ext/cargo-vendor/{winch-codegen-0.12.3 → winch-codegen-0.12.4}/src/codegen/builtin.rs +0 -0
  707. /data/ext/cargo-vendor/{winch-codegen-0.12.3 → winch-codegen-0.12.4}/src/codegen/call.rs +0 -0
  708. /data/ext/cargo-vendor/{winch-codegen-0.12.3 → winch-codegen-0.12.4}/src/codegen/context.rs +0 -0
  709. /data/ext/cargo-vendor/{winch-codegen-0.12.3 → winch-codegen-0.12.4}/src/codegen/control.rs +0 -0
  710. /data/ext/cargo-vendor/{winch-codegen-0.12.3 → winch-codegen-0.12.4}/src/codegen/env.rs +0 -0
  711. /data/ext/cargo-vendor/{winch-codegen-0.12.3 → winch-codegen-0.12.4}/src/codegen/mod.rs +0 -0
  712. /data/ext/cargo-vendor/{winch-codegen-0.12.3 → winch-codegen-0.12.4}/src/frame/mod.rs +0 -0
  713. /data/ext/cargo-vendor/{winch-codegen-0.12.3 → winch-codegen-0.12.4}/src/isa/aarch64/abi.rs +0 -0
  714. /data/ext/cargo-vendor/{winch-codegen-0.12.3 → winch-codegen-0.12.4}/src/isa/aarch64/address.rs +0 -0
  715. /data/ext/cargo-vendor/{winch-codegen-0.12.3 → winch-codegen-0.12.4}/src/isa/aarch64/asm.rs +0 -0
  716. /data/ext/cargo-vendor/{winch-codegen-0.12.3 → winch-codegen-0.12.4}/src/isa/aarch64/masm.rs +0 -0
  717. /data/ext/cargo-vendor/{winch-codegen-0.12.3 → winch-codegen-0.12.4}/src/isa/aarch64/mod.rs +0 -0
  718. /data/ext/cargo-vendor/{winch-codegen-0.12.3 → winch-codegen-0.12.4}/src/isa/aarch64/regs.rs +0 -0
  719. /data/ext/cargo-vendor/{winch-codegen-0.12.3 → winch-codegen-0.12.4}/src/isa/mod.rs +0 -0
  720. /data/ext/cargo-vendor/{winch-codegen-0.12.3 → winch-codegen-0.12.4}/src/isa/reg.rs +0 -0
  721. /data/ext/cargo-vendor/{winch-codegen-0.12.3 → winch-codegen-0.12.4}/src/isa/x64/abi.rs +0 -0
  722. /data/ext/cargo-vendor/{winch-codegen-0.12.3 → winch-codegen-0.12.4}/src/isa/x64/address.rs +0 -0
  723. /data/ext/cargo-vendor/{winch-codegen-0.12.3 → winch-codegen-0.12.4}/src/isa/x64/asm.rs +0 -0
  724. /data/ext/cargo-vendor/{winch-codegen-0.12.3 → winch-codegen-0.12.4}/src/isa/x64/masm.rs +0 -0
  725. /data/ext/cargo-vendor/{winch-codegen-0.12.3 → winch-codegen-0.12.4}/src/isa/x64/mod.rs +0 -0
  726. /data/ext/cargo-vendor/{winch-codegen-0.12.3 → winch-codegen-0.12.4}/src/isa/x64/regs.rs +0 -0
  727. /data/ext/cargo-vendor/{winch-codegen-0.12.3 → winch-codegen-0.12.4}/src/lib.rs +0 -0
  728. /data/ext/cargo-vendor/{winch-codegen-0.12.3 → winch-codegen-0.12.4}/src/masm.rs +0 -0
  729. /data/ext/cargo-vendor/{winch-codegen-0.12.3 → winch-codegen-0.12.4}/src/regalloc.rs +0 -0
  730. /data/ext/cargo-vendor/{winch-codegen-0.12.3 → winch-codegen-0.12.4}/src/regset.rs +0 -0
  731. /data/ext/cargo-vendor/{winch-codegen-0.12.3 → winch-codegen-0.12.4}/src/stack.rs +0 -0
  732. /data/ext/cargo-vendor/{winch-codegen-0.12.3 → winch-codegen-0.12.4}/src/trampoline.rs +0 -0
  733. /data/ext/cargo-vendor/{winch-codegen-0.12.3 → winch-codegen-0.12.4}/src/visitor.rs +0 -0
@@ -0,0 +1,220 @@
1
+ use crate::{encode_section, ConstExpr, Encode, RefType, Section, SectionId};
2
+
3
+ /// An encoder for the element section.
4
+ ///
5
+ /// Element sections are only supported for modules.
6
+ ///
7
+ /// # Example
8
+ ///
9
+ /// ```
10
+ /// use wasm_encoder::{
11
+ /// Elements, ElementSection, Module, TableSection, TableType,
12
+ /// RefType, ConstExpr
13
+ /// };
14
+ ///
15
+ /// let mut tables = TableSection::new();
16
+ /// tables.table(TableType {
17
+ /// element_type: RefType::FUNCREF,
18
+ /// minimum: 128,
19
+ /// maximum: None,
20
+ /// });
21
+ ///
22
+ /// let mut elements = ElementSection::new();
23
+ /// let table_index = 0;
24
+ /// let offset = ConstExpr::i32_const(42);
25
+ /// let functions = Elements::Functions(&[
26
+ /// // Function indices...
27
+ /// ]);
28
+ /// elements.active(Some(table_index), &offset, functions);
29
+ ///
30
+ /// let mut module = Module::new();
31
+ /// module
32
+ /// .section(&tables)
33
+ /// .section(&elements);
34
+ ///
35
+ /// let wasm_bytes = module.finish();
36
+ /// ```
37
+ #[derive(Clone, Default, Debug)]
38
+ pub struct ElementSection {
39
+ bytes: Vec<u8>,
40
+ num_added: u32,
41
+ }
42
+
43
+ /// A sequence of elements in a segment in the element section.
44
+ #[derive(Clone, Copy, Debug)]
45
+ pub enum Elements<'a> {
46
+ /// A sequences of references to functions by their indices.
47
+ Functions(&'a [u32]),
48
+ /// A sequence of reference expressions.
49
+ Expressions(RefType, &'a [ConstExpr]),
50
+ }
51
+
52
+ /// An element segment's mode.
53
+ #[derive(Clone, Debug)]
54
+ pub enum ElementMode<'a> {
55
+ /// A passive element segment.
56
+ ///
57
+ /// Passive segments are part of the bulk memory proposal.
58
+ Passive,
59
+ /// A declared element segment.
60
+ ///
61
+ /// Declared segments are part of the bulk memory proposal.
62
+ Declared,
63
+ /// An active element segment.
64
+ Active {
65
+ /// The table index.
66
+ ///
67
+ /// `Active` element specifying a `None` table forces the MVP encoding and refers to the
68
+ /// 0th table holding `funcref`s. Non-`None` tables use the encoding introduced with the
69
+ /// bulk memory proposal and can refer to tables with any valid reference type.
70
+ table: Option<u32>,
71
+ /// The offset within the table to place this segment.
72
+ offset: &'a ConstExpr,
73
+ },
74
+ }
75
+
76
+ /// An element segment in the element section.
77
+ #[derive(Clone, Debug)]
78
+ pub struct ElementSegment<'a> {
79
+ /// The element segment's mode.
80
+ pub mode: ElementMode<'a>,
81
+ /// This segment's elements.
82
+ pub elements: Elements<'a>,
83
+ }
84
+
85
+ impl ElementSection {
86
+ /// Create a new element section encoder.
87
+ pub fn new() -> Self {
88
+ Self::default()
89
+ }
90
+
91
+ /// The number of element segments in the section.
92
+ pub fn len(&self) -> u32 {
93
+ self.num_added
94
+ }
95
+
96
+ /// Determines if the section is empty.
97
+ pub fn is_empty(&self) -> bool {
98
+ self.num_added == 0
99
+ }
100
+
101
+ /// Define an element segment.
102
+ pub fn segment<'a>(&mut self, segment: ElementSegment<'a>) -> &mut Self {
103
+ let expr_bit = match segment.elements {
104
+ Elements::Expressions(..) => 0b100u32,
105
+ Elements::Functions(_) => 0b000u32,
106
+ };
107
+ let mut encode_type = false;
108
+ match &segment.mode {
109
+ ElementMode::Passive => {
110
+ (0x01 | expr_bit).encode(&mut self.bytes);
111
+ encode_type = true;
112
+ }
113
+ ElementMode::Active { table, offset } => {
114
+ match (table, &segment.elements) {
115
+ // If the `table` is not specified then the 0x00 encoding
116
+ // can be used with either function indices or expressions
117
+ // that have a `funcref` type.
118
+ (None, Elements::Functions(_) | Elements::Expressions(RefType::FUNCREF, _)) => {
119
+ (/* 0x00 | */expr_bit).encode(&mut self.bytes);
120
+ }
121
+
122
+ // ... otherwise fall through for all other expressions here
123
+ // with table 0 or an explicitly specified table to the 0x02
124
+ // encoding.
125
+ (None, Elements::Expressions(..)) | (Some(_), _) => {
126
+ (0x02 | expr_bit).encode(&mut self.bytes);
127
+ table.unwrap_or(0).encode(&mut self.bytes);
128
+ encode_type = true;
129
+ }
130
+ }
131
+ offset.encode(&mut self.bytes);
132
+ }
133
+ ElementMode::Declared => {
134
+ (0x03 | expr_bit).encode(&mut self.bytes);
135
+ encode_type = true;
136
+ }
137
+ }
138
+
139
+ match segment.elements {
140
+ Elements::Functions(fs) => {
141
+ if encode_type {
142
+ // elemkind == funcref
143
+ self.bytes.push(0x00);
144
+ }
145
+ fs.encode(&mut self.bytes);
146
+ }
147
+ Elements::Expressions(ty, e) => {
148
+ if encode_type {
149
+ ty.encode(&mut self.bytes);
150
+ }
151
+ e.len().encode(&mut self.bytes);
152
+ for expr in e {
153
+ expr.encode(&mut self.bytes);
154
+ }
155
+ }
156
+ }
157
+
158
+ self.num_added += 1;
159
+ self
160
+ }
161
+
162
+ /// Define an active element segment.
163
+ ///
164
+ /// `Active` element specifying a `None` table forces the MVP encoding and refers to the 0th
165
+ /// table holding `funcref`s. Non-`None` tables use the encoding introduced with the bulk
166
+ /// memory proposal and can refer to tables with any valid reference type.
167
+ pub fn active(
168
+ &mut self,
169
+ table_index: Option<u32>,
170
+ offset: &ConstExpr,
171
+ elements: Elements<'_>,
172
+ ) -> &mut Self {
173
+ self.segment(ElementSegment {
174
+ mode: ElementMode::Active {
175
+ table: table_index,
176
+ offset,
177
+ },
178
+ elements,
179
+ })
180
+ }
181
+
182
+ /// Encode a passive element segment.
183
+ ///
184
+ /// Passive segments are part of the bulk memory proposal.
185
+ pub fn passive<'a>(&mut self, elements: Elements<'a>) -> &mut Self {
186
+ self.segment(ElementSegment {
187
+ mode: ElementMode::Passive,
188
+ elements,
189
+ })
190
+ }
191
+
192
+ /// Encode a declared element segment.
193
+ ///
194
+ /// Declared segments are part of the bulk memory proposal.
195
+ pub fn declared<'a>(&mut self, elements: Elements<'a>) -> &mut Self {
196
+ self.segment(ElementSegment {
197
+ mode: ElementMode::Declared,
198
+ elements,
199
+ })
200
+ }
201
+
202
+ /// Copy a raw, already-encoded element segment into this elements section.
203
+ pub fn raw(&mut self, raw_bytes: &[u8]) -> &mut Self {
204
+ self.bytes.extend_from_slice(raw_bytes);
205
+ self.num_added += 1;
206
+ self
207
+ }
208
+ }
209
+
210
+ impl Encode for ElementSection {
211
+ fn encode(&self, sink: &mut Vec<u8>) {
212
+ encode_section(sink, self.num_added, &self.bytes);
213
+ }
214
+ }
215
+
216
+ impl Section for ElementSection {
217
+ fn id(&self) -> u8 {
218
+ SectionId::Element.into()
219
+ }
220
+ }
@@ -0,0 +1,98 @@
1
+ use super::{
2
+ CORE_FUNCTION_SORT, CORE_GLOBAL_SORT, CORE_MEMORY_SORT, CORE_TABLE_SORT, CORE_TAG_SORT,
3
+ };
4
+ use crate::{encode_section, Encode, Section, SectionId};
5
+
6
+ /// Represents the kind of an export from a WebAssembly module.
7
+ #[derive(Clone, Copy, Debug, Eq, PartialEq)]
8
+ #[repr(u8)]
9
+ pub enum ExportKind {
10
+ /// The export is a function.
11
+ Func = CORE_FUNCTION_SORT,
12
+ /// The export is a table.
13
+ Table = CORE_TABLE_SORT,
14
+ /// The export is a memory.
15
+ Memory = CORE_MEMORY_SORT,
16
+ /// The export is a global.
17
+ Global = CORE_GLOBAL_SORT,
18
+ /// The export is a tag.
19
+ Tag = CORE_TAG_SORT,
20
+ }
21
+
22
+ impl Encode for ExportKind {
23
+ fn encode(&self, sink: &mut Vec<u8>) {
24
+ sink.push(*self as u8);
25
+ }
26
+ }
27
+
28
+ #[cfg(feature = "wasmparser")]
29
+ impl From<wasmparser::ExternalKind> for ExportKind {
30
+ fn from(external_kind: wasmparser::ExternalKind) -> Self {
31
+ match external_kind {
32
+ wasmparser::ExternalKind::Func => ExportKind::Func,
33
+ wasmparser::ExternalKind::Table => ExportKind::Table,
34
+ wasmparser::ExternalKind::Memory => ExportKind::Memory,
35
+ wasmparser::ExternalKind::Global => ExportKind::Global,
36
+ wasmparser::ExternalKind::Tag => ExportKind::Tag,
37
+ }
38
+ }
39
+ }
40
+
41
+ /// An encoder for the export section of WebAssembly module.
42
+ ///
43
+ /// # Example
44
+ ///
45
+ /// ```rust
46
+ /// use wasm_encoder::{Module, ExportSection, ExportKind};
47
+ ///
48
+ /// let mut exports = ExportSection::new();
49
+ /// exports.export("foo", ExportKind::Func, 0);
50
+ ///
51
+ /// let mut module = Module::new();
52
+ /// module.section(&exports);
53
+ ///
54
+ /// let bytes = module.finish();
55
+ /// ```
56
+ #[derive(Clone, Debug, Default)]
57
+ pub struct ExportSection {
58
+ bytes: Vec<u8>,
59
+ num_added: u32,
60
+ }
61
+
62
+ impl ExportSection {
63
+ /// Create a new export section encoder.
64
+ pub fn new() -> Self {
65
+ Self::default()
66
+ }
67
+
68
+ /// The number of exports in the section.
69
+ pub fn len(&self) -> u32 {
70
+ self.num_added
71
+ }
72
+
73
+ /// Determines if the section is empty.
74
+ pub fn is_empty(&self) -> bool {
75
+ self.num_added == 0
76
+ }
77
+
78
+ /// Define an export in the export section.
79
+ pub fn export(&mut self, name: &str, kind: ExportKind, index: u32) -> &mut Self {
80
+ name.encode(&mut self.bytes);
81
+ kind.encode(&mut self.bytes);
82
+ index.encode(&mut self.bytes);
83
+ self.num_added += 1;
84
+ self
85
+ }
86
+ }
87
+
88
+ impl Encode for ExportSection {
89
+ fn encode(&self, sink: &mut Vec<u8>) {
90
+ encode_section(sink, self.num_added, &self.bytes);
91
+ }
92
+ }
93
+
94
+ impl Section for ExportSection {
95
+ fn id(&self) -> u8 {
96
+ SectionId::Export.into()
97
+ }
98
+ }
@@ -0,0 +1,63 @@
1
+ use crate::{encode_section, Encode, Section, SectionId};
2
+
3
+ /// An encoder for the function section of WebAssembly modules.
4
+ ///
5
+ /// # Example
6
+ ///
7
+ /// ```
8
+ /// use wasm_encoder::{Module, FunctionSection, ValType};
9
+ ///
10
+ /// let mut functions = FunctionSection::new();
11
+ /// let type_index = 0;
12
+ /// functions.function(type_index);
13
+ ///
14
+ /// let mut module = Module::new();
15
+ /// module.section(&functions);
16
+ ///
17
+ /// // Note: this will generate an invalid module because we didn't generate a
18
+ /// // code section containing the function body. See the documentation for
19
+ /// // `CodeSection` for details.
20
+ ///
21
+ /// let bytes = module.finish();
22
+ /// ```
23
+ #[derive(Clone, Debug, Default)]
24
+ pub struct FunctionSection {
25
+ bytes: Vec<u8>,
26
+ num_added: u32,
27
+ }
28
+
29
+ impl FunctionSection {
30
+ /// Construct a new module function section encoder.
31
+ pub fn new() -> Self {
32
+ Self::default()
33
+ }
34
+
35
+ /// The number of functions in the section.
36
+ pub fn len(&self) -> u32 {
37
+ self.num_added
38
+ }
39
+
40
+ /// Determines if the section is empty.
41
+ pub fn is_empty(&self) -> bool {
42
+ self.num_added == 0
43
+ }
44
+
45
+ /// Define a function in a module's function section.
46
+ pub fn function(&mut self, type_index: u32) -> &mut Self {
47
+ type_index.encode(&mut self.bytes);
48
+ self.num_added += 1;
49
+ self
50
+ }
51
+ }
52
+
53
+ impl Encode for FunctionSection {
54
+ fn encode(&self, sink: &mut Vec<u8>) {
55
+ encode_section(sink, self.num_added, &self.bytes);
56
+ }
57
+ }
58
+
59
+ impl Section for FunctionSection {
60
+ fn id(&self) -> u8 {
61
+ SectionId::Function.into()
62
+ }
63
+ }
@@ -0,0 +1,100 @@
1
+ use crate::{encode_section, ConstExpr, Encode, Section, SectionId, ValType};
2
+
3
+ /// An encoder for the global section.
4
+ ///
5
+ /// Global sections are only supported for modules.
6
+ ///
7
+ /// # Example
8
+ ///
9
+ /// ```
10
+ /// use wasm_encoder::{ConstExpr, Module, GlobalSection, GlobalType, Instruction, ValType};
11
+ ///
12
+ /// let mut globals = GlobalSection::new();
13
+ /// globals.global(
14
+ /// GlobalType {
15
+ /// val_type: ValType::I32,
16
+ /// mutable: false,
17
+ /// },
18
+ /// &ConstExpr::i32_const(42),
19
+ /// );
20
+ ///
21
+ /// let mut module = Module::new();
22
+ /// module.section(&globals);
23
+ ///
24
+ /// let wasm_bytes = module.finish();
25
+ /// ```
26
+ #[derive(Clone, Default, Debug)]
27
+ pub struct GlobalSection {
28
+ bytes: Vec<u8>,
29
+ num_added: u32,
30
+ }
31
+
32
+ impl GlobalSection {
33
+ /// Create a new global section encoder.
34
+ pub fn new() -> Self {
35
+ Self::default()
36
+ }
37
+
38
+ /// The number of globals in the section.
39
+ pub fn len(&self) -> u32 {
40
+ self.num_added
41
+ }
42
+
43
+ /// Determines if the section is empty.
44
+ pub fn is_empty(&self) -> bool {
45
+ self.num_added == 0
46
+ }
47
+
48
+ /// Define a global.
49
+ pub fn global(&mut self, global_type: GlobalType, init_expr: &ConstExpr) -> &mut Self {
50
+ global_type.encode(&mut self.bytes);
51
+ init_expr.encode(&mut self.bytes);
52
+ self.num_added += 1;
53
+ self
54
+ }
55
+
56
+ /// Add a raw byte slice into this code section as a global.
57
+ pub fn raw(&mut self, data: &[u8]) -> &mut Self {
58
+ self.bytes.extend(data);
59
+ self.num_added += 1;
60
+ self
61
+ }
62
+ }
63
+
64
+ impl Encode for GlobalSection {
65
+ fn encode(&self, sink: &mut Vec<u8>) {
66
+ encode_section(sink, self.num_added, &self.bytes);
67
+ }
68
+ }
69
+
70
+ impl Section for GlobalSection {
71
+ fn id(&self) -> u8 {
72
+ SectionId::Global.into()
73
+ }
74
+ }
75
+
76
+ /// A global's type.
77
+ #[derive(Clone, Copy, Debug, Eq, PartialEq, Hash)]
78
+ pub struct GlobalType {
79
+ /// This global's value type.
80
+ pub val_type: ValType,
81
+ /// Whether this global is mutable or not.
82
+ pub mutable: bool,
83
+ }
84
+
85
+ impl Encode for GlobalType {
86
+ fn encode(&self, sink: &mut Vec<u8>) {
87
+ self.val_type.encode(sink);
88
+ sink.push(self.mutable as u8);
89
+ }
90
+ }
91
+
92
+ #[cfg(feature = "wasmparser")]
93
+ impl From<wasmparser::GlobalType> for GlobalType {
94
+ fn from(global_ty: wasmparser::GlobalType) -> Self {
95
+ GlobalType {
96
+ val_type: global_ty.content_type.into(),
97
+ mutable: global_ty.mutable,
98
+ }
99
+ }
100
+ }
@@ -0,0 +1,155 @@
1
+ use crate::{
2
+ encode_section, Encode, GlobalType, MemoryType, Section, SectionId, TableType, TagType,
3
+ CORE_FUNCTION_SORT, CORE_GLOBAL_SORT, CORE_MEMORY_SORT, CORE_TABLE_SORT, CORE_TAG_SORT,
4
+ };
5
+
6
+ /// The type of an entity.
7
+ #[derive(Debug, Clone, Copy, PartialEq, Eq)]
8
+ pub enum EntityType {
9
+ /// A function type.
10
+ ///
11
+ /// The value is an index into the types section.
12
+ Function(u32),
13
+ /// A table type.
14
+ Table(TableType),
15
+ /// A memory type.
16
+ Memory(MemoryType),
17
+ /// A global type.
18
+ Global(GlobalType),
19
+ /// A tag type.
20
+ ///
21
+ /// This variant is used with the exception handling proposal.
22
+ Tag(TagType),
23
+ }
24
+
25
+ impl Encode for EntityType {
26
+ fn encode(&self, sink: &mut Vec<u8>) {
27
+ match self {
28
+ Self::Function(i) => {
29
+ sink.push(CORE_FUNCTION_SORT);
30
+ i.encode(sink);
31
+ }
32
+ Self::Table(t) => {
33
+ sink.push(CORE_TABLE_SORT);
34
+ t.encode(sink);
35
+ }
36
+ Self::Memory(t) => {
37
+ sink.push(CORE_MEMORY_SORT);
38
+ t.encode(sink);
39
+ }
40
+ Self::Global(t) => {
41
+ sink.push(CORE_GLOBAL_SORT);
42
+ t.encode(sink);
43
+ }
44
+ Self::Tag(t) => {
45
+ sink.push(CORE_TAG_SORT);
46
+ t.encode(sink);
47
+ }
48
+ }
49
+ }
50
+ }
51
+
52
+ impl From<TableType> for EntityType {
53
+ fn from(t: TableType) -> Self {
54
+ Self::Table(t)
55
+ }
56
+ }
57
+
58
+ impl From<MemoryType> for EntityType {
59
+ fn from(t: MemoryType) -> Self {
60
+ Self::Memory(t)
61
+ }
62
+ }
63
+
64
+ impl From<GlobalType> for EntityType {
65
+ fn from(t: GlobalType) -> Self {
66
+ Self::Global(t)
67
+ }
68
+ }
69
+
70
+ impl From<TagType> for EntityType {
71
+ fn from(t: TagType) -> Self {
72
+ Self::Tag(t)
73
+ }
74
+ }
75
+
76
+ #[cfg(feature = "wasmparser")]
77
+ impl From<wasmparser::TypeRef> for EntityType {
78
+ fn from(type_ref: wasmparser::TypeRef) -> Self {
79
+ match type_ref {
80
+ wasmparser::TypeRef::Func(i) => EntityType::Function(i),
81
+ wasmparser::TypeRef::Table(t) => EntityType::Table(t.into()),
82
+ wasmparser::TypeRef::Memory(m) => EntityType::Memory(m.into()),
83
+ wasmparser::TypeRef::Global(g) => EntityType::Global(g.into()),
84
+ wasmparser::TypeRef::Tag(t) => EntityType::Tag(t.into()),
85
+ }
86
+ }
87
+ }
88
+
89
+ /// An encoder for the import section of WebAssembly modules.
90
+ ///
91
+ /// # Example
92
+ ///
93
+ /// ```rust
94
+ /// use wasm_encoder::{MemoryType, Module, ImportSection};
95
+ ///
96
+ /// let mut imports = ImportSection::new();
97
+ /// imports.import(
98
+ /// "env",
99
+ /// "memory",
100
+ /// MemoryType {
101
+ /// minimum: 1,
102
+ /// maximum: None,
103
+ /// memory64: false,
104
+ /// shared: false,
105
+ /// }
106
+ /// );
107
+ ///
108
+ /// let mut module = Module::new();
109
+ /// module.section(&imports);
110
+ ///
111
+ /// let bytes = module.finish();
112
+ /// ```
113
+ #[derive(Clone, Debug, Default)]
114
+ pub struct ImportSection {
115
+ bytes: Vec<u8>,
116
+ num_added: u32,
117
+ }
118
+
119
+ impl ImportSection {
120
+ /// Create a new import section encoder.
121
+ pub fn new() -> Self {
122
+ Self::default()
123
+ }
124
+
125
+ /// The number of imports in the section.
126
+ pub fn len(&self) -> u32 {
127
+ self.num_added
128
+ }
129
+
130
+ /// Determines if the section is empty.
131
+ pub fn is_empty(&self) -> bool {
132
+ self.num_added == 0
133
+ }
134
+
135
+ /// Define an import in the import section.
136
+ pub fn import(&mut self, module: &str, field: &str, ty: impl Into<EntityType>) -> &mut Self {
137
+ module.encode(&mut self.bytes);
138
+ field.encode(&mut self.bytes);
139
+ ty.into().encode(&mut self.bytes);
140
+ self.num_added += 1;
141
+ self
142
+ }
143
+ }
144
+
145
+ impl Encode for ImportSection {
146
+ fn encode(&self, sink: &mut Vec<u8>) {
147
+ encode_section(sink, self.num_added, &self.bytes);
148
+ }
149
+ }
150
+
151
+ impl Section for ImportSection {
152
+ fn id(&self) -> u8 {
153
+ SectionId::Import.into()
154
+ }
155
+ }