wasmtime 25.0.1 → 25.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2036) hide show
  1. checksums.yaml +4 -4
  2. data/Cargo.lock +89 -80
  3. data/ext/Cargo.toml +7 -7
  4. data/ext/cargo-vendor/anyhow-1.0.89/.cargo-checksum.json +1 -0
  5. data/ext/cargo-vendor/anyhow-1.0.89/Cargo.toml +126 -0
  6. data/ext/cargo-vendor/anyhow-1.0.89/README.md +181 -0
  7. data/ext/cargo-vendor/anyhow-1.0.89/build/probe.rs +35 -0
  8. data/ext/cargo-vendor/anyhow-1.0.89/build.rs +192 -0
  9. data/ext/cargo-vendor/anyhow-1.0.89/src/backtrace.rs +411 -0
  10. data/ext/cargo-vendor/anyhow-1.0.89/src/chain.rs +102 -0
  11. data/ext/cargo-vendor/anyhow-1.0.89/src/context.rs +193 -0
  12. data/ext/cargo-vendor/anyhow-1.0.89/src/error.rs +1027 -0
  13. data/ext/cargo-vendor/anyhow-1.0.89/src/kind.rs +121 -0
  14. data/ext/cargo-vendor/anyhow-1.0.89/src/lib.rs +731 -0
  15. data/ext/cargo-vendor/anyhow-1.0.89/src/wrapper.rs +84 -0
  16. data/ext/cargo-vendor/anyhow-1.0.89/tests/compiletest.rs +7 -0
  17. data/ext/cargo-vendor/anyhow-1.0.89/tests/test_autotrait.rs +34 -0
  18. data/ext/cargo-vendor/anyhow-1.0.89/tests/test_backtrace.rs +15 -0
  19. data/ext/cargo-vendor/anyhow-1.0.89/tests/test_ensure.rs +741 -0
  20. data/ext/cargo-vendor/anyhow-1.0.89/tests/test_fmt.rs +93 -0
  21. data/ext/cargo-vendor/async-timer-1.0.0-beta.15/.cargo-checksum.json +1 -0
  22. data/ext/cargo-vendor/async-timer-1.0.0-beta.15/Cargo.toml +99 -0
  23. data/ext/cargo-vendor/async-timer-1.0.0-beta.15/src/timer/async_tokio1.rs +308 -0
  24. data/ext/cargo-vendor/cranelift-bforest-0.112.2/.cargo-checksum.json +1 -0
  25. data/ext/cargo-vendor/cranelift-bforest-0.112.2/Cargo.toml +59 -0
  26. data/ext/cargo-vendor/cranelift-bitset-0.112.2/.cargo-checksum.json +1 -0
  27. data/ext/cargo-vendor/cranelift-bitset-0.112.2/Cargo.toml +74 -0
  28. data/ext/cargo-vendor/cranelift-codegen-0.112.2/.cargo-checksum.json +1 -0
  29. data/ext/cargo-vendor/cranelift-codegen-0.112.2/Cargo.toml +222 -0
  30. data/ext/cargo-vendor/cranelift-codegen-meta-0.112.2/.cargo-checksum.json +1 -0
  31. data/ext/cargo-vendor/cranelift-codegen-meta-0.112.2/Cargo.toml +54 -0
  32. data/ext/cargo-vendor/cranelift-codegen-shared-0.112.2/.cargo-checksum.json +1 -0
  33. data/ext/cargo-vendor/cranelift-codegen-shared-0.112.2/Cargo.toml +32 -0
  34. data/ext/cargo-vendor/cranelift-control-0.112.2/.cargo-checksum.json +1 -0
  35. data/ext/cargo-vendor/cranelift-control-0.112.2/Cargo.toml +43 -0
  36. data/ext/cargo-vendor/cranelift-entity-0.112.2/.cargo-checksum.json +1 -0
  37. data/ext/cargo-vendor/cranelift-entity-0.112.2/Cargo.toml +75 -0
  38. data/ext/cargo-vendor/cranelift-frontend-0.112.2/.cargo-checksum.json +1 -0
  39. data/ext/cargo-vendor/cranelift-frontend-0.112.2/Cargo.toml +97 -0
  40. data/ext/cargo-vendor/cranelift-isle-0.112.2/.cargo-checksum.json +1 -0
  41. data/ext/cargo-vendor/cranelift-isle-0.112.2/Cargo.toml +69 -0
  42. data/ext/cargo-vendor/cranelift-native-0.112.2/.cargo-checksum.json +1 -0
  43. data/ext/cargo-vendor/cranelift-native-0.112.2/Cargo.toml +52 -0
  44. data/ext/cargo-vendor/cranelift-wasm-0.112.2/.cargo-checksum.json +1 -0
  45. data/ext/cargo-vendor/cranelift-wasm-0.112.2/Cargo.toml +128 -0
  46. data/ext/cargo-vendor/pulley-interpreter-0.1.2/.cargo-checksum.json +1 -0
  47. data/ext/cargo-vendor/pulley-interpreter-0.1.2/Cargo.toml +85 -0
  48. data/ext/cargo-vendor/tokio-1.40.0/.cargo-checksum.json +1 -0
  49. data/ext/cargo-vendor/tokio-1.40.0/CHANGELOG.md +3574 -0
  50. data/ext/cargo-vendor/tokio-1.40.0/Cargo.toml +804 -0
  51. data/ext/cargo-vendor/tokio-1.40.0/README.md +252 -0
  52. data/ext/cargo-vendor/tokio-1.40.0/src/fs/file.rs +978 -0
  53. data/ext/cargo-vendor/tokio-1.40.0/src/fs/read_dir.rs +357 -0
  54. data/ext/cargo-vendor/tokio-1.40.0/src/fs/try_exists.rs +28 -0
  55. data/ext/cargo-vendor/tokio-1.40.0/src/future/maybe_done.rs +123 -0
  56. data/ext/cargo-vendor/tokio-1.40.0/src/io/async_fd.rs +1358 -0
  57. data/ext/cargo-vendor/tokio-1.40.0/src/io/async_read.rs +132 -0
  58. data/ext/cargo-vendor/tokio-1.40.0/src/io/blocking.rs +294 -0
  59. data/ext/cargo-vendor/tokio-1.40.0/src/io/bsd/poll_aio.rs +197 -0
  60. data/ext/cargo-vendor/tokio-1.40.0/src/io/mod.rs +292 -0
  61. data/ext/cargo-vendor/tokio-1.40.0/src/io/poll_evented.rs +305 -0
  62. data/ext/cargo-vendor/tokio-1.40.0/src/io/seek.rs +57 -0
  63. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/buf_reader.rs +311 -0
  64. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/buf_writer.rs +310 -0
  65. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/chain.rs +144 -0
  66. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/copy.rs +295 -0
  67. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/copy_bidirectional.rs +137 -0
  68. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/copy_buf.rs +108 -0
  69. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/empty.rs +164 -0
  70. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/lines.rs +145 -0
  71. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/mem.rs +429 -0
  72. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/mod.rs +111 -0
  73. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/read.rs +55 -0
  74. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/read_buf.rs +72 -0
  75. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/read_exact.rs +69 -0
  76. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/read_int.rs +158 -0
  77. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/read_line.rs +119 -0
  78. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/read_to_end.rs +143 -0
  79. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/read_to_string.rs +78 -0
  80. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/read_until.rs +80 -0
  81. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/repeat.rs +75 -0
  82. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/sink.rs +94 -0
  83. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/split.rs +121 -0
  84. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/take.rs +138 -0
  85. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/write_all.rs +55 -0
  86. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/write_all_buf.rs +64 -0
  87. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/write_buf.rs +55 -0
  88. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/write_int.rs +151 -0
  89. data/ext/cargo-vendor/tokio-1.40.0/src/lib.rs +696 -0
  90. data/ext/cargo-vendor/tokio-1.40.0/src/loom/mocked.rs +58 -0
  91. data/ext/cargo-vendor/tokio-1.40.0/src/loom/std/atomic_u16.rs +48 -0
  92. data/ext/cargo-vendor/tokio-1.40.0/src/loom/std/atomic_u32.rs +48 -0
  93. data/ext/cargo-vendor/tokio-1.40.0/src/loom/std/atomic_usize.rs +60 -0
  94. data/ext/cargo-vendor/tokio-1.40.0/src/loom/std/mutex.rs +44 -0
  95. data/ext/cargo-vendor/tokio-1.40.0/src/macros/mod.rs +36 -0
  96. data/ext/cargo-vendor/tokio-1.40.0/src/macros/select.rs +1261 -0
  97. data/ext/cargo-vendor/tokio-1.40.0/src/net/addr.rs +333 -0
  98. data/ext/cargo-vendor/tokio-1.40.0/src/net/tcp/listener.rs +451 -0
  99. data/ext/cargo-vendor/tokio-1.40.0/src/net/tcp/stream.rs +1424 -0
  100. data/ext/cargo-vendor/tokio-1.40.0/src/net/udp.rs +2049 -0
  101. data/ext/cargo-vendor/tokio-1.40.0/src/net/unix/datagram/socket.rs +1595 -0
  102. data/ext/cargo-vendor/tokio-1.40.0/src/net/unix/listener.rs +240 -0
  103. data/ext/cargo-vendor/tokio-1.40.0/src/process/mod.rs +1690 -0
  104. data/ext/cargo-vendor/tokio-1.40.0/src/process/unix/pidfd_reaper.rs +322 -0
  105. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/blocking/pool.rs +608 -0
  106. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/blocking/schedule.rs +70 -0
  107. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/builder.rs +1456 -0
  108. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/config.rs +49 -0
  109. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/coop.rs +323 -0
  110. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/io/registration.rs +259 -0
  111. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/mod.rs +417 -0
  112. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/scheduler/current_thread/mod.rs +795 -0
  113. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/scheduler/mod.rs +283 -0
  114. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/scheduler/multi_thread/handle.rs +84 -0
  115. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/scheduler/multi_thread/worker.rs +1261 -0
  116. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/scheduler/multi_thread_alt/handle.rs +85 -0
  117. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/scheduler/multi_thread_alt/worker.rs +1604 -0
  118. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/task/core.rs +496 -0
  119. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/task/error.rs +202 -0
  120. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/task/harness.rs +532 -0
  121. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/task/id.rs +99 -0
  122. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/task/join.rs +378 -0
  123. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/task/mod.rs +546 -0
  124. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/task_hooks.rs +36 -0
  125. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/tests/loom_multi_thread.rs +462 -0
  126. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/tests/loom_multi_thread_alt.rs +572 -0
  127. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/tests/mod.rs +82 -0
  128. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/tests/queue.rs +293 -0
  129. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/tests/task.rs +455 -0
  130. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/time/mod.rs +513 -0
  131. data/ext/cargo-vendor/tokio-1.40.0/src/sync/batch_semaphore.rs +780 -0
  132. data/ext/cargo-vendor/tokio-1.40.0/src/sync/broadcast.rs +1541 -0
  133. data/ext/cargo-vendor/tokio-1.40.0/src/sync/mpsc/chan.rs +600 -0
  134. data/ext/cargo-vendor/tokio-1.40.0/src/sync/mpsc/error.rs +169 -0
  135. data/ext/cargo-vendor/tokio-1.40.0/src/sync/mpsc/mod.rs +140 -0
  136. data/ext/cargo-vendor/tokio-1.40.0/src/sync/notify.rs +1218 -0
  137. data/ext/cargo-vendor/tokio-1.40.0/src/sync/oneshot.rs +1408 -0
  138. data/ext/cargo-vendor/tokio-1.40.0/src/task/consume_budget.rs +41 -0
  139. data/ext/cargo-vendor/tokio-1.40.0/src/task/join_set.rs +798 -0
  140. data/ext/cargo-vendor/tokio-1.40.0/src/task/local.rs +1257 -0
  141. data/ext/cargo-vendor/tokio-1.40.0/src/task/spawn.rs +207 -0
  142. data/ext/cargo-vendor/tokio-1.40.0/src/task/yield_now.rs +64 -0
  143. data/ext/cargo-vendor/tokio-1.40.0/src/time/interval.rs +644 -0
  144. data/ext/cargo-vendor/tokio-1.40.0/src/time/sleep.rs +453 -0
  145. data/ext/cargo-vendor/tokio-1.40.0/src/util/bit.rs +64 -0
  146. data/ext/cargo-vendor/tokio-1.40.0/src/util/sync_wrapper.rs +37 -0
  147. data/ext/cargo-vendor/tokio-1.40.0/tests/async_send_sync.rs +759 -0
  148. data/ext/cargo-vendor/tokio-1.40.0/tests/io_async_fd.rs +855 -0
  149. data/ext/cargo-vendor/tokio-1.40.0/tests/io_copy.rs +101 -0
  150. data/ext/cargo-vendor/tokio-1.40.0/tests/io_write_all_buf.rs +145 -0
  151. data/ext/cargo-vendor/tokio-1.40.0/tests/macros_join.rs +176 -0
  152. data/ext/cargo-vendor/tokio-1.40.0/tests/sync_mpsc.rs +1456 -0
  153. data/ext/cargo-vendor/tokio-1.40.0/tests/task_abort.rs +332 -0
  154. data/ext/cargo-vendor/tokio-1.40.0/tests/task_hooks.rs +76 -0
  155. data/ext/cargo-vendor/tokio-1.40.0/tests/task_join_set.rs +347 -0
  156. data/ext/cargo-vendor/tokio-1.40.0/tests/uds_stream.rs +435 -0
  157. data/ext/cargo-vendor/wasi-common-25.0.2/.cargo-checksum.json +1 -0
  158. data/ext/cargo-vendor/wasi-common-25.0.2/Cargo.toml +242 -0
  159. data/ext/cargo-vendor/wasm-encoder-0.218.0/.cargo-checksum.json +1 -0
  160. data/ext/cargo-vendor/wasm-encoder-0.218.0/Cargo.toml +65 -0
  161. data/ext/cargo-vendor/wasm-encoder-0.218.0/README.md +80 -0
  162. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/component/aliases.rs +160 -0
  163. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/component/builder.rs +467 -0
  164. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/component/canonicals.rs +176 -0
  165. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/component/components.rs +29 -0
  166. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/component/exports.rs +129 -0
  167. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/component/imports.rs +169 -0
  168. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/component/instances.rs +199 -0
  169. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/component/modules.rs +29 -0
  170. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/component/names.rs +155 -0
  171. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/component/start.rs +52 -0
  172. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/component/types.rs +774 -0
  173. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/component.rs +168 -0
  174. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/branch_hints.rs +125 -0
  175. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/code.rs +4032 -0
  176. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/custom.rs +73 -0
  177. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/data.rs +186 -0
  178. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/dump.rs +627 -0
  179. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/elements.rs +224 -0
  180. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/exports.rs +85 -0
  181. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/functions.rs +63 -0
  182. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/globals.rs +100 -0
  183. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/imports.rs +143 -0
  184. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/linking.rs +263 -0
  185. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/memories.rs +115 -0
  186. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/names.rs +304 -0
  187. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/producers.rs +181 -0
  188. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/start.rs +39 -0
  189. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/tables.rs +129 -0
  190. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/tags.rs +85 -0
  191. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/types.rs +717 -0
  192. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core.rs +175 -0
  193. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/lib.rs +218 -0
  194. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/raw.rs +30 -0
  195. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/reencode/component.rs +1344 -0
  196. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/reencode.rs +1958 -0
  197. data/ext/cargo-vendor/wasmtime-25.0.2/.cargo-checksum.json +1 -0
  198. data/ext/cargo-vendor/wasmtime-25.0.2/Cargo.toml +407 -0
  199. data/ext/cargo-vendor/wasmtime-25.0.2/src/runtime/type_registry.rs +1233 -0
  200. data/ext/cargo-vendor/wasmtime-25.0.2/src/runtime/vm/traphandlers/backtrace.rs +287 -0
  201. data/ext/cargo-vendor/wasmtime-asm-macros-25.0.2/.cargo-checksum.json +1 -0
  202. data/ext/cargo-vendor/wasmtime-asm-macros-25.0.2/Cargo.toml +33 -0
  203. data/ext/cargo-vendor/wasmtime-cache-25.0.2/.cargo-checksum.json +1 -0
  204. data/ext/cargo-vendor/wasmtime-cache-25.0.2/Cargo.toml +112 -0
  205. data/ext/cargo-vendor/wasmtime-component-macro-25.0.2/.cargo-checksum.json +1 -0
  206. data/ext/cargo-vendor/wasmtime-component-macro-25.0.2/Cargo.toml +115 -0
  207. data/ext/cargo-vendor/wasmtime-component-util-25.0.2/.cargo-checksum.json +1 -0
  208. data/ext/cargo-vendor/wasmtime-component-util-25.0.2/Cargo.toml +36 -0
  209. data/ext/cargo-vendor/wasmtime-cranelift-25.0.2/.cargo-checksum.json +1 -0
  210. data/ext/cargo-vendor/wasmtime-cranelift-25.0.2/Cargo.toml +137 -0
  211. data/ext/cargo-vendor/wasmtime-environ-25.0.2/.cargo-checksum.json +1 -0
  212. data/ext/cargo-vendor/wasmtime-environ-25.0.2/Cargo.lock +792 -0
  213. data/ext/cargo-vendor/wasmtime-environ-25.0.2/Cargo.toml +195 -0
  214. data/ext/cargo-vendor/wasmtime-environ-25.0.2/src/compile/module_environ.rs +1267 -0
  215. data/ext/cargo-vendor/wasmtime-fiber-25.0.2/.cargo-checksum.json +1 -0
  216. data/ext/cargo-vendor/wasmtime-fiber-25.0.2/Cargo.toml +84 -0
  217. data/ext/cargo-vendor/wasmtime-jit-debug-25.0.2/.cargo-checksum.json +1 -0
  218. data/ext/cargo-vendor/wasmtime-jit-debug-25.0.2/Cargo.toml +86 -0
  219. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-25.0.2/.cargo-checksum.json +1 -0
  220. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-25.0.2/Cargo.toml +71 -0
  221. data/ext/cargo-vendor/wasmtime-slab-25.0.2/.cargo-checksum.json +1 -0
  222. data/ext/cargo-vendor/wasmtime-slab-25.0.2/Cargo.toml +50 -0
  223. data/ext/cargo-vendor/wasmtime-types-25.0.2/.cargo-checksum.json +1 -0
  224. data/ext/cargo-vendor/wasmtime-types-25.0.2/Cargo.toml +80 -0
  225. data/ext/cargo-vendor/wasmtime-versioned-export-macros-25.0.2/.cargo-checksum.json +1 -0
  226. data/ext/cargo-vendor/wasmtime-versioned-export-macros-25.0.2/Cargo.toml +41 -0
  227. data/ext/cargo-vendor/wasmtime-wasi-25.0.2/.cargo-checksum.json +1 -0
  228. data/ext/cargo-vendor/wasmtime-wasi-25.0.2/Cargo.toml +224 -0
  229. data/ext/cargo-vendor/wasmtime-winch-25.0.2/.cargo-checksum.json +1 -0
  230. data/ext/cargo-vendor/wasmtime-winch-25.0.2/Cargo.toml +100 -0
  231. data/ext/cargo-vendor/wasmtime-wit-bindgen-25.0.2/.cargo-checksum.json +1 -0
  232. data/ext/cargo-vendor/wasmtime-wit-bindgen-25.0.2/Cargo.toml +66 -0
  233. data/ext/cargo-vendor/wast-218.0.0/.cargo-checksum.json +1 -0
  234. data/ext/cargo-vendor/wast-218.0.0/Cargo.toml +101 -0
  235. data/ext/cargo-vendor/wast-218.0.0/src/component/binary.rs +878 -0
  236. data/ext/cargo-vendor/wast-218.0.0/src/component/component.rs +329 -0
  237. data/ext/cargo-vendor/wast-218.0.0/src/component/expand.rs +896 -0
  238. data/ext/cargo-vendor/wast-218.0.0/src/component/func.rs +537 -0
  239. data/ext/cargo-vendor/wast-218.0.0/src/component/resolve.rs +1075 -0
  240. data/ext/cargo-vendor/wast-218.0.0/src/component/types.rs +1003 -0
  241. data/ext/cargo-vendor/wast-218.0.0/src/core/binary.rs +1495 -0
  242. data/ext/cargo-vendor/wast-218.0.0/src/core/expr.rs +2225 -0
  243. data/ext/cargo-vendor/wast-218.0.0/src/core/resolve/deinline_import_export.rs +232 -0
  244. data/ext/cargo-vendor/wast-218.0.0/src/core/resolve/names.rs +868 -0
  245. data/ext/cargo-vendor/wast-218.0.0/src/core/resolve/types.rs +274 -0
  246. data/ext/cargo-vendor/wast-218.0.0/src/core/table.rs +308 -0
  247. data/ext/cargo-vendor/wast-218.0.0/src/core/types.rs +1117 -0
  248. data/ext/cargo-vendor/wast-218.0.0/src/lib.rs +566 -0
  249. data/ext/cargo-vendor/wast-218.0.0/src/wast.rs +567 -0
  250. data/ext/cargo-vendor/wat-1.218.0/.cargo-checksum.json +1 -0
  251. data/ext/cargo-vendor/wat-1.218.0/Cargo.toml +56 -0
  252. data/ext/cargo-vendor/wiggle-25.0.2/.cargo-checksum.json +1 -0
  253. data/ext/cargo-vendor/wiggle-25.0.2/Cargo.toml +119 -0
  254. data/ext/cargo-vendor/wiggle-generate-25.0.2/.cargo-checksum.json +1 -0
  255. data/ext/cargo-vendor/wiggle-generate-25.0.2/Cargo.toml +85 -0
  256. data/ext/cargo-vendor/wiggle-macro-25.0.2/.cargo-checksum.json +1 -0
  257. data/ext/cargo-vendor/wiggle-macro-25.0.2/Cargo.toml +78 -0
  258. data/ext/cargo-vendor/winch-codegen-0.23.2/.cargo-checksum.json +1 -0
  259. data/ext/cargo-vendor/winch-codegen-0.23.2/Cargo.toml +95 -0
  260. data/lib/wasmtime/version.rb +1 -1
  261. metadata +1816 -1777
  262. data/ext/cargo-vendor/anyhow-1.0.86/.cargo-checksum.json +0 -1
  263. data/ext/cargo-vendor/anyhow-1.0.86/Cargo.toml +0 -130
  264. data/ext/cargo-vendor/anyhow-1.0.86/README.md +0 -181
  265. data/ext/cargo-vendor/anyhow-1.0.86/build/probe.rs +0 -35
  266. data/ext/cargo-vendor/anyhow-1.0.86/build.rs +0 -179
  267. data/ext/cargo-vendor/anyhow-1.0.86/src/backtrace.rs +0 -406
  268. data/ext/cargo-vendor/anyhow-1.0.86/src/chain.rs +0 -102
  269. data/ext/cargo-vendor/anyhow-1.0.86/src/context.rs +0 -193
  270. data/ext/cargo-vendor/anyhow-1.0.86/src/error.rs +0 -1024
  271. data/ext/cargo-vendor/anyhow-1.0.86/src/kind.rs +0 -121
  272. data/ext/cargo-vendor/anyhow-1.0.86/src/lib.rs +0 -730
  273. data/ext/cargo-vendor/anyhow-1.0.86/src/wrapper.rs +0 -84
  274. data/ext/cargo-vendor/anyhow-1.0.86/tests/compiletest.rs +0 -7
  275. data/ext/cargo-vendor/anyhow-1.0.86/tests/test_autotrait.rs +0 -15
  276. data/ext/cargo-vendor/anyhow-1.0.86/tests/test_backtrace.rs +0 -15
  277. data/ext/cargo-vendor/anyhow-1.0.86/tests/test_ensure.rs +0 -741
  278. data/ext/cargo-vendor/anyhow-1.0.86/tests/test_fmt.rs +0 -94
  279. data/ext/cargo-vendor/async-timer-1.0.0-beta.14/.cargo-checksum.json +0 -1
  280. data/ext/cargo-vendor/async-timer-1.0.0-beta.14/Cargo.toml +0 -78
  281. data/ext/cargo-vendor/async-timer-1.0.0-beta.14/src/timer/async_tokio1.rs +0 -299
  282. data/ext/cargo-vendor/cranelift-bforest-0.112.1/.cargo-checksum.json +0 -1
  283. data/ext/cargo-vendor/cranelift-bforest-0.112.1/Cargo.toml +0 -59
  284. data/ext/cargo-vendor/cranelift-bitset-0.112.1/.cargo-checksum.json +0 -1
  285. data/ext/cargo-vendor/cranelift-bitset-0.112.1/Cargo.toml +0 -74
  286. data/ext/cargo-vendor/cranelift-codegen-0.112.1/.cargo-checksum.json +0 -1
  287. data/ext/cargo-vendor/cranelift-codegen-0.112.1/Cargo.toml +0 -222
  288. data/ext/cargo-vendor/cranelift-codegen-meta-0.112.1/.cargo-checksum.json +0 -1
  289. data/ext/cargo-vendor/cranelift-codegen-meta-0.112.1/Cargo.toml +0 -54
  290. data/ext/cargo-vendor/cranelift-codegen-shared-0.112.1/.cargo-checksum.json +0 -1
  291. data/ext/cargo-vendor/cranelift-codegen-shared-0.112.1/Cargo.toml +0 -32
  292. data/ext/cargo-vendor/cranelift-control-0.112.1/.cargo-checksum.json +0 -1
  293. data/ext/cargo-vendor/cranelift-control-0.112.1/Cargo.toml +0 -43
  294. data/ext/cargo-vendor/cranelift-entity-0.112.1/.cargo-checksum.json +0 -1
  295. data/ext/cargo-vendor/cranelift-entity-0.112.1/Cargo.toml +0 -75
  296. data/ext/cargo-vendor/cranelift-frontend-0.112.1/.cargo-checksum.json +0 -1
  297. data/ext/cargo-vendor/cranelift-frontend-0.112.1/Cargo.toml +0 -97
  298. data/ext/cargo-vendor/cranelift-isle-0.112.1/.cargo-checksum.json +0 -1
  299. data/ext/cargo-vendor/cranelift-isle-0.112.1/Cargo.toml +0 -69
  300. data/ext/cargo-vendor/cranelift-native-0.112.1/.cargo-checksum.json +0 -1
  301. data/ext/cargo-vendor/cranelift-native-0.112.1/Cargo.toml +0 -52
  302. data/ext/cargo-vendor/cranelift-wasm-0.112.1/.cargo-checksum.json +0 -1
  303. data/ext/cargo-vendor/cranelift-wasm-0.112.1/Cargo.toml +0 -128
  304. data/ext/cargo-vendor/pulley-interpreter-0.1.1/.cargo-checksum.json +0 -1
  305. data/ext/cargo-vendor/pulley-interpreter-0.1.1/Cargo.toml +0 -85
  306. data/ext/cargo-vendor/tokio-1.39.3/.cargo-checksum.json +0 -1
  307. data/ext/cargo-vendor/tokio-1.39.3/CHANGELOG.md +0 -3525
  308. data/ext/cargo-vendor/tokio-1.39.3/Cargo.toml +0 -800
  309. data/ext/cargo-vendor/tokio-1.39.3/README.md +0 -252
  310. data/ext/cargo-vendor/tokio-1.39.3/src/fs/file.rs +0 -979
  311. data/ext/cargo-vendor/tokio-1.39.3/src/fs/read_dir.rs +0 -358
  312. data/ext/cargo-vendor/tokio-1.39.3/src/fs/try_exists.rs +0 -34
  313. data/ext/cargo-vendor/tokio-1.39.3/src/future/maybe_done.rs +0 -71
  314. data/ext/cargo-vendor/tokio-1.39.3/src/io/async_fd.rs +0 -1359
  315. data/ext/cargo-vendor/tokio-1.39.3/src/io/async_read.rs +0 -131
  316. data/ext/cargo-vendor/tokio-1.39.3/src/io/blocking.rs +0 -294
  317. data/ext/cargo-vendor/tokio-1.39.3/src/io/bsd/poll_aio.rs +0 -197
  318. data/ext/cargo-vendor/tokio-1.39.3/src/io/mod.rs +0 -292
  319. data/ext/cargo-vendor/tokio-1.39.3/src/io/poll_evented.rs +0 -304
  320. data/ext/cargo-vendor/tokio-1.39.3/src/io/seek.rs +0 -57
  321. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/buf_reader.rs +0 -311
  322. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/buf_writer.rs +0 -310
  323. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/chain.rs +0 -144
  324. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/copy.rs +0 -295
  325. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/copy_bidirectional.rs +0 -137
  326. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/copy_buf.rs +0 -108
  327. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/empty.rs +0 -164
  328. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/lines.rs +0 -145
  329. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/mem.rs +0 -374
  330. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/mod.rs +0 -111
  331. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/read.rs +0 -55
  332. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/read_buf.rs +0 -72
  333. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/read_exact.rs +0 -69
  334. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/read_int.rs +0 -159
  335. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/read_line.rs +0 -119
  336. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/read_to_end.rs +0 -143
  337. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/read_to_string.rs +0 -78
  338. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/read_until.rs +0 -80
  339. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/repeat.rs +0 -75
  340. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/sink.rs +0 -94
  341. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/split.rs +0 -121
  342. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/take.rs +0 -138
  343. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/write_all.rs +0 -55
  344. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/write_all_buf.rs +0 -56
  345. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/write_buf.rs +0 -55
  346. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/write_int.rs +0 -152
  347. data/ext/cargo-vendor/tokio-1.39.3/src/lib.rs +0 -690
  348. data/ext/cargo-vendor/tokio-1.39.3/src/loom/mocked.rs +0 -53
  349. data/ext/cargo-vendor/tokio-1.39.3/src/loom/std/atomic_u16.rs +0 -45
  350. data/ext/cargo-vendor/tokio-1.39.3/src/loom/std/atomic_u32.rs +0 -45
  351. data/ext/cargo-vendor/tokio-1.39.3/src/loom/std/atomic_usize.rs +0 -57
  352. data/ext/cargo-vendor/tokio-1.39.3/src/loom/std/mutex.rs +0 -36
  353. data/ext/cargo-vendor/tokio-1.39.3/src/macros/mod.rs +0 -39
  354. data/ext/cargo-vendor/tokio-1.39.3/src/macros/ready.rs +0 -8
  355. data/ext/cargo-vendor/tokio-1.39.3/src/macros/select.rs +0 -1261
  356. data/ext/cargo-vendor/tokio-1.39.3/src/net/addr.rs +0 -333
  357. data/ext/cargo-vendor/tokio-1.39.3/src/net/tcp/listener.rs +0 -451
  358. data/ext/cargo-vendor/tokio-1.39.3/src/net/tcp/stream.rs +0 -1424
  359. data/ext/cargo-vendor/tokio-1.39.3/src/net/udp.rs +0 -2049
  360. data/ext/cargo-vendor/tokio-1.39.3/src/net/unix/datagram/socket.rs +0 -1595
  361. data/ext/cargo-vendor/tokio-1.39.3/src/net/unix/listener.rs +0 -240
  362. data/ext/cargo-vendor/tokio-1.39.3/src/process/mod.rs +0 -1686
  363. data/ext/cargo-vendor/tokio-1.39.3/src/process/unix/pidfd_reaper.rs +0 -322
  364. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/blocking/pool.rs +0 -608
  365. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/blocking/schedule.rs +0 -60
  366. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/builder.rs +0 -1352
  367. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/config.rs +0 -43
  368. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/coop.rs +0 -323
  369. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/io/registration.rs +0 -259
  370. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/mod.rs +0 -410
  371. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/scheduler/current_thread/mod.rs +0 -772
  372. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/scheduler/mod.rs +0 -271
  373. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/scheduler/multi_thread/handle.rs +0 -74
  374. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/scheduler/multi_thread/worker.rs +0 -1260
  375. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/scheduler/multi_thread_alt/handle.rs +0 -75
  376. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/scheduler/multi_thread_alt/worker.rs +0 -1603
  377. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/task/core.rs +0 -494
  378. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/task/error.rs +0 -169
  379. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/task/harness.rs +0 -517
  380. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/task/id.rs +0 -98
  381. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/task/join.rs +0 -377
  382. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/task/mod.rs +0 -537
  383. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/tests/loom_multi_thread.rs +0 -462
  384. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/tests/loom_multi_thread_alt.rs +0 -572
  385. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/tests/mod.rs +0 -76
  386. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/tests/queue.rs +0 -287
  387. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/tests/task.rs +0 -353
  388. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/time/mod.rs +0 -474
  389. data/ext/cargo-vendor/tokio-1.39.3/src/sync/batch_semaphore.rs +0 -779
  390. data/ext/cargo-vendor/tokio-1.39.3/src/sync/broadcast.rs +0 -1541
  391. data/ext/cargo-vendor/tokio-1.39.3/src/sync/mpsc/chan.rs +0 -597
  392. data/ext/cargo-vendor/tokio-1.39.3/src/sync/mpsc/error.rs +0 -149
  393. data/ext/cargo-vendor/tokio-1.39.3/src/sync/mpsc/mod.rs +0 -124
  394. data/ext/cargo-vendor/tokio-1.39.3/src/sync/notify.rs +0 -1218
  395. data/ext/cargo-vendor/tokio-1.39.3/src/sync/oneshot.rs +0 -1408
  396. data/ext/cargo-vendor/tokio-1.39.3/src/task/consume_budget.rs +0 -41
  397. data/ext/cargo-vendor/tokio-1.39.3/src/task/join_set.rs +0 -725
  398. data/ext/cargo-vendor/tokio-1.39.3/src/task/local.rs +0 -1250
  399. data/ext/cargo-vendor/tokio-1.39.3/src/task/spawn.rs +0 -207
  400. data/ext/cargo-vendor/tokio-1.39.3/src/task/yield_now.rs +0 -64
  401. data/ext/cargo-vendor/tokio-1.39.3/src/time/interval.rs +0 -644
  402. data/ext/cargo-vendor/tokio-1.39.3/src/time/sleep.rs +0 -452
  403. data/ext/cargo-vendor/tokio-1.39.3/src/util/bit.rs +0 -69
  404. data/ext/cargo-vendor/tokio-1.39.3/src/util/sync_wrapper.rs +0 -26
  405. data/ext/cargo-vendor/tokio-1.39.3/tests/async_send_sync.rs +0 -753
  406. data/ext/cargo-vendor/tokio-1.39.3/tests/io_async_fd.rs +0 -853
  407. data/ext/cargo-vendor/tokio-1.39.3/tests/io_copy.rs +0 -102
  408. data/ext/cargo-vendor/tokio-1.39.3/tests/io_write_all_buf.rs +0 -96
  409. data/ext/cargo-vendor/tokio-1.39.3/tests/macros_join.rs +0 -176
  410. data/ext/cargo-vendor/tokio-1.39.3/tests/sync_mpsc.rs +0 -1436
  411. data/ext/cargo-vendor/tokio-1.39.3/tests/task_abort.rs +0 -222
  412. data/ext/cargo-vendor/tokio-1.39.3/tests/task_join_set.rs +0 -307
  413. data/ext/cargo-vendor/tokio-1.39.3/tests/uds_stream.rs +0 -424
  414. data/ext/cargo-vendor/wasi-common-25.0.1/.cargo-checksum.json +0 -1
  415. data/ext/cargo-vendor/wasi-common-25.0.1/Cargo.toml +0 -242
  416. data/ext/cargo-vendor/wasmtime-25.0.1/.cargo-checksum.json +0 -1
  417. data/ext/cargo-vendor/wasmtime-25.0.1/Cargo.toml +0 -407
  418. data/ext/cargo-vendor/wasmtime-25.0.1/src/runtime/type_registry.rs +0 -1099
  419. data/ext/cargo-vendor/wasmtime-25.0.1/src/runtime/vm/traphandlers/backtrace.rs +0 -267
  420. data/ext/cargo-vendor/wasmtime-asm-macros-25.0.1/.cargo-checksum.json +0 -1
  421. data/ext/cargo-vendor/wasmtime-asm-macros-25.0.1/Cargo.toml +0 -33
  422. data/ext/cargo-vendor/wasmtime-cache-25.0.1/.cargo-checksum.json +0 -1
  423. data/ext/cargo-vendor/wasmtime-cache-25.0.1/Cargo.toml +0 -112
  424. data/ext/cargo-vendor/wasmtime-component-macro-25.0.1/.cargo-checksum.json +0 -1
  425. data/ext/cargo-vendor/wasmtime-component-macro-25.0.1/Cargo.toml +0 -115
  426. data/ext/cargo-vendor/wasmtime-component-util-25.0.1/.cargo-checksum.json +0 -1
  427. data/ext/cargo-vendor/wasmtime-component-util-25.0.1/Cargo.toml +0 -36
  428. data/ext/cargo-vendor/wasmtime-cranelift-25.0.1/.cargo-checksum.json +0 -1
  429. data/ext/cargo-vendor/wasmtime-cranelift-25.0.1/Cargo.toml +0 -137
  430. data/ext/cargo-vendor/wasmtime-environ-25.0.1/.cargo-checksum.json +0 -1
  431. data/ext/cargo-vendor/wasmtime-environ-25.0.1/Cargo.lock +0 -792
  432. data/ext/cargo-vendor/wasmtime-environ-25.0.1/Cargo.toml +0 -195
  433. data/ext/cargo-vendor/wasmtime-environ-25.0.1/src/compile/module_environ.rs +0 -1264
  434. data/ext/cargo-vendor/wasmtime-fiber-25.0.1/.cargo-checksum.json +0 -1
  435. data/ext/cargo-vendor/wasmtime-fiber-25.0.1/Cargo.toml +0 -84
  436. data/ext/cargo-vendor/wasmtime-jit-debug-25.0.1/.cargo-checksum.json +0 -1
  437. data/ext/cargo-vendor/wasmtime-jit-debug-25.0.1/Cargo.toml +0 -86
  438. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-25.0.1/.cargo-checksum.json +0 -1
  439. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-25.0.1/Cargo.toml +0 -71
  440. data/ext/cargo-vendor/wasmtime-slab-25.0.1/.cargo-checksum.json +0 -1
  441. data/ext/cargo-vendor/wasmtime-slab-25.0.1/Cargo.toml +0 -50
  442. data/ext/cargo-vendor/wasmtime-types-25.0.1/.cargo-checksum.json +0 -1
  443. data/ext/cargo-vendor/wasmtime-types-25.0.1/Cargo.toml +0 -80
  444. data/ext/cargo-vendor/wasmtime-versioned-export-macros-25.0.1/.cargo-checksum.json +0 -1
  445. data/ext/cargo-vendor/wasmtime-versioned-export-macros-25.0.1/Cargo.toml +0 -41
  446. data/ext/cargo-vendor/wasmtime-wasi-25.0.1/.cargo-checksum.json +0 -1
  447. data/ext/cargo-vendor/wasmtime-wasi-25.0.1/Cargo.toml +0 -224
  448. data/ext/cargo-vendor/wasmtime-winch-25.0.1/.cargo-checksum.json +0 -1
  449. data/ext/cargo-vendor/wasmtime-winch-25.0.1/Cargo.toml +0 -100
  450. data/ext/cargo-vendor/wasmtime-wit-bindgen-25.0.1/.cargo-checksum.json +0 -1
  451. data/ext/cargo-vendor/wasmtime-wit-bindgen-25.0.1/Cargo.toml +0 -66
  452. data/ext/cargo-vendor/wast-217.0.0/.cargo-checksum.json +0 -1
  453. data/ext/cargo-vendor/wast-217.0.0/Cargo.toml +0 -101
  454. data/ext/cargo-vendor/wast-217.0.0/src/component/binary.rs +0 -1014
  455. data/ext/cargo-vendor/wast-217.0.0/src/component/component.rs +0 -324
  456. data/ext/cargo-vendor/wast-217.0.0/src/component/expand.rs +0 -879
  457. data/ext/cargo-vendor/wast-217.0.0/src/component/func.rs +0 -486
  458. data/ext/cargo-vendor/wast-217.0.0/src/component/resolve.rs +0 -994
  459. data/ext/cargo-vendor/wast-217.0.0/src/component/types.rs +0 -999
  460. data/ext/cargo-vendor/wast-217.0.0/src/core/binary.rs +0 -1556
  461. data/ext/cargo-vendor/wast-217.0.0/src/core/expr.rs +0 -2110
  462. data/ext/cargo-vendor/wast-217.0.0/src/core/resolve/deinline_import_export.rs +0 -232
  463. data/ext/cargo-vendor/wast-217.0.0/src/core/resolve/names.rs +0 -808
  464. data/ext/cargo-vendor/wast-217.0.0/src/core/resolve/types.rs +0 -273
  465. data/ext/cargo-vendor/wast-217.0.0/src/core/table.rs +0 -308
  466. data/ext/cargo-vendor/wast-217.0.0/src/core/types.rs +0 -1057
  467. data/ext/cargo-vendor/wast-217.0.0/src/lib.rs +0 -557
  468. data/ext/cargo-vendor/wast-217.0.0/src/wast.rs +0 -552
  469. data/ext/cargo-vendor/wat-1.217.0/.cargo-checksum.json +0 -1
  470. data/ext/cargo-vendor/wat-1.217.0/Cargo.toml +0 -56
  471. data/ext/cargo-vendor/wiggle-25.0.1/.cargo-checksum.json +0 -1
  472. data/ext/cargo-vendor/wiggle-25.0.1/Cargo.toml +0 -119
  473. data/ext/cargo-vendor/wiggle-generate-25.0.1/.cargo-checksum.json +0 -1
  474. data/ext/cargo-vendor/wiggle-generate-25.0.1/Cargo.toml +0 -85
  475. data/ext/cargo-vendor/wiggle-macro-25.0.1/.cargo-checksum.json +0 -1
  476. data/ext/cargo-vendor/wiggle-macro-25.0.1/Cargo.toml +0 -78
  477. data/ext/cargo-vendor/winch-codegen-0.23.1/.cargo-checksum.json +0 -1
  478. data/ext/cargo-vendor/winch-codegen-0.23.1/Cargo.toml +0 -95
  479. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/LICENSE-APACHE +0 -0
  480. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/LICENSE-MIT +0 -0
  481. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/rust-toolchain.toml +0 -0
  482. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/src/ensure.rs +0 -0
  483. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/src/fmt.rs +0 -0
  484. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/src/macros.rs +0 -0
  485. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/src/ptr.rs +0 -0
  486. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/common/mod.rs +0 -0
  487. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/drop/mod.rs +0 -0
  488. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/test_boxed.rs +0 -0
  489. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/test_chain.rs +0 -0
  490. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/test_context.rs +0 -0
  491. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/test_convert.rs +0 -0
  492. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/test_downcast.rs +0 -0
  493. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/test_ffi.rs +0 -0
  494. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/test_macros.rs +0 -0
  495. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/test_repr.rs +0 -0
  496. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/test_source.rs +0 -0
  497. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/ui/chained-comparison.rs +0 -0
  498. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/ui/chained-comparison.stderr +0 -0
  499. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/ui/empty-ensure.rs +0 -0
  500. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/ui/empty-ensure.stderr +0 -0
  501. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/ui/ensure-nonbool.rs +0 -0
  502. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/ui/ensure-nonbool.stderr +0 -0
  503. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/ui/must-use.rs +0 -0
  504. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/ui/must-use.stderr +0 -0
  505. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/ui/no-impl.rs +0 -0
  506. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/ui/no-impl.stderr +0 -0
  507. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/ui/temporary-value.rs +0 -0
  508. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/ui/temporary-value.stderr +0 -0
  509. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/ui/wrong-interpolation.rs +0 -0
  510. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/ui/wrong-interpolation.stderr +0 -0
  511. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/README.md +0 -0
  512. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/build.rs +0 -0
  513. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/src/c_wrapper/posix.c +0 -0
  514. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/src/interval.rs +0 -0
  515. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/src/lib.rs +0 -0
  516. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/src/state.rs +0 -0
  517. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/src/timed.rs +0 -0
  518. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/src/timer/apple.rs +0 -0
  519. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/src/timer/dummy.rs +0 -0
  520. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/src/timer/mod.rs +0 -0
  521. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/src/timer/posix.rs +0 -0
  522. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/src/timer/web.rs +0 -0
  523. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/src/timer/win.rs +0 -0
  524. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/src/utils.rs +0 -0
  525. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/tests/interval.rs +0 -0
  526. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/tests/timed.rs +0 -0
  527. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/tests/timer.rs +0 -0
  528. /data/ext/cargo-vendor/{cranelift-bforest-0.112.1 → cranelift-bforest-0.112.2}/LICENSE +0 -0
  529. /data/ext/cargo-vendor/{cranelift-bforest-0.112.1 → cranelift-bforest-0.112.2}/README.md +0 -0
  530. /data/ext/cargo-vendor/{cranelift-bforest-0.112.1 → cranelift-bforest-0.112.2}/src/lib.rs +0 -0
  531. /data/ext/cargo-vendor/{cranelift-bforest-0.112.1 → cranelift-bforest-0.112.2}/src/map.rs +0 -0
  532. /data/ext/cargo-vendor/{cranelift-bforest-0.112.1 → cranelift-bforest-0.112.2}/src/node.rs +0 -0
  533. /data/ext/cargo-vendor/{cranelift-bforest-0.112.1 → cranelift-bforest-0.112.2}/src/path.rs +0 -0
  534. /data/ext/cargo-vendor/{cranelift-bforest-0.112.1 → cranelift-bforest-0.112.2}/src/pool.rs +0 -0
  535. /data/ext/cargo-vendor/{cranelift-bforest-0.112.1 → cranelift-bforest-0.112.2}/src/set.rs +0 -0
  536. /data/ext/cargo-vendor/{cranelift-bitset-0.112.1 → cranelift-bitset-0.112.2}/src/compound.rs +0 -0
  537. /data/ext/cargo-vendor/{cranelift-bitset-0.112.1 → cranelift-bitset-0.112.2}/src/lib.rs +0 -0
  538. /data/ext/cargo-vendor/{cranelift-bitset-0.112.1 → cranelift-bitset-0.112.2}/src/scalar.rs +0 -0
  539. /data/ext/cargo-vendor/{cranelift-bitset-0.112.1 → cranelift-bitset-0.112.2}/tests/bitset.rs +0 -0
  540. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/LICENSE +0 -0
  541. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/README.md +0 -0
  542. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/benches/x64-evex-encoding.rs +0 -0
  543. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/build.rs +0 -0
  544. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/alias_analysis.rs +0 -0
  545. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/binemit/mod.rs +0 -0
  546. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/cfg_printer.rs +0 -0
  547. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/constant_hash.rs +0 -0
  548. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/context.rs +0 -0
  549. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ctxhash.rs +0 -0
  550. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/cursor.rs +0 -0
  551. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/data_value.rs +0 -0
  552. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/dbg.rs +0 -0
  553. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/dominator_tree.rs +0 -0
  554. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/egraph/cost.rs +0 -0
  555. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/egraph/elaborate.rs +0 -0
  556. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/egraph.rs +0 -0
  557. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/flowgraph.rs +0 -0
  558. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/incremental_cache.rs +0 -0
  559. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/inst_predicates.rs +0 -0
  560. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/atomic_rmw_op.rs +0 -0
  561. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/builder.rs +0 -0
  562. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/condcodes.rs +0 -0
  563. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/constant.rs +0 -0
  564. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/dfg.rs +0 -0
  565. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/dynamic_type.rs +0 -0
  566. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/entities.rs +0 -0
  567. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/extfunc.rs +0 -0
  568. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/extname.rs +0 -0
  569. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/function.rs +0 -0
  570. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/globalvalue.rs +0 -0
  571. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/immediates.rs +0 -0
  572. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/instructions.rs +0 -0
  573. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/jumptable.rs +0 -0
  574. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/known_symbol.rs +0 -0
  575. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/layout.rs +0 -0
  576. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/libcall.rs +0 -0
  577. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/memflags.rs +0 -0
  578. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/memtype.rs +0 -0
  579. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/mod.rs +0 -0
  580. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/pcc.rs +0 -0
  581. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/progpoint.rs +0 -0
  582. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/sourceloc.rs +0 -0
  583. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/stackslot.rs +0 -0
  584. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/trapcode.rs +0 -0
  585. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/types.rs +0 -0
  586. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/user_stack_maps.rs +0 -0
  587. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/aarch64/abi.rs +0 -0
  588. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/aarch64/inst/args.rs +0 -0
  589. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/aarch64/inst/emit.rs +0 -0
  590. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/aarch64/inst/emit_tests.rs +0 -0
  591. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/aarch64/inst/imms.rs +0 -0
  592. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/aarch64/inst/mod.rs +0 -0
  593. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/aarch64/inst/regs.rs +0 -0
  594. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/aarch64/inst/unwind/systemv.rs +0 -0
  595. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/aarch64/inst/unwind.rs +0 -0
  596. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/aarch64/inst.isle +0 -0
  597. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/aarch64/inst_neon.isle +0 -0
  598. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/aarch64/lower/isle/generated_code.rs +0 -0
  599. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/aarch64/lower/isle.rs +0 -0
  600. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/aarch64/lower.isle +0 -0
  601. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/aarch64/lower.rs +0 -0
  602. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/aarch64/lower_dynamic_neon.isle +0 -0
  603. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/aarch64/mod.rs +0 -0
  604. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/aarch64/pcc.rs +0 -0
  605. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/aarch64/settings.rs +0 -0
  606. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/call_conv.rs +0 -0
  607. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/mod.rs +0 -0
  608. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/pulley32.rs +0 -0
  609. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/pulley64.rs +0 -0
  610. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/pulley_shared/abi.rs +0 -0
  611. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/pulley_shared/inst/args.rs +0 -0
  612. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/pulley_shared/inst/emit.rs +0 -0
  613. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/pulley_shared/inst/mod.rs +0 -0
  614. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/pulley_shared/inst/regs.rs +0 -0
  615. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/pulley_shared/inst.isle +0 -0
  616. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/pulley_shared/lower/isle/generated_code.rs +0 -0
  617. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/pulley_shared/lower/isle.rs +0 -0
  618. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/pulley_shared/lower.isle +0 -0
  619. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/pulley_shared/lower.rs +0 -0
  620. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/pulley_shared/mod.rs +0 -0
  621. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/pulley_shared/settings.rs +0 -0
  622. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/riscv64/abi.rs +0 -0
  623. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/riscv64/inst/args.rs +0 -0
  624. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/riscv64/inst/emit.rs +0 -0
  625. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/riscv64/inst/emit_tests.rs +0 -0
  626. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/riscv64/inst/encode.rs +0 -0
  627. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/riscv64/inst/imms.rs +0 -0
  628. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/riscv64/inst/mod.rs +0 -0
  629. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/riscv64/inst/regs.rs +0 -0
  630. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/riscv64/inst/unwind/systemv.rs +0 -0
  631. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/riscv64/inst/unwind.rs +0 -0
  632. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/riscv64/inst/vector.rs +0 -0
  633. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/riscv64/inst.isle +0 -0
  634. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/riscv64/inst_vector.isle +0 -0
  635. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/riscv64/lower/isle/generated_code.rs +0 -0
  636. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/riscv64/lower/isle.rs +0 -0
  637. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/riscv64/lower.isle +0 -0
  638. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/riscv64/lower.rs +0 -0
  639. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/riscv64/mod.rs +0 -0
  640. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/riscv64/settings.rs +0 -0
  641. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/s390x/abi.rs +0 -0
  642. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/s390x/inst/args.rs +0 -0
  643. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/s390x/inst/emit.rs +0 -0
  644. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/s390x/inst/emit_tests.rs +0 -0
  645. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/s390x/inst/imms.rs +0 -0
  646. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/s390x/inst/mod.rs +0 -0
  647. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/s390x/inst/regs.rs +0 -0
  648. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/s390x/inst/unwind/systemv.rs +0 -0
  649. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/s390x/inst/unwind.rs +0 -0
  650. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/s390x/inst.isle +0 -0
  651. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/s390x/lower/isle/generated_code.rs +0 -0
  652. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/s390x/lower/isle.rs +0 -0
  653. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/s390x/lower.isle +0 -0
  654. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/s390x/lower.rs +0 -0
  655. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/s390x/mod.rs +0 -0
  656. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/s390x/settings.rs +0 -0
  657. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/unwind/systemv.rs +0 -0
  658. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/unwind/winx64.rs +0 -0
  659. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/unwind.rs +0 -0
  660. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/abi.rs +0 -0
  661. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/encoding/evex.rs +0 -0
  662. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/encoding/mod.rs +0 -0
  663. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/encoding/rex.rs +0 -0
  664. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/encoding/vex.rs +0 -0
  665. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/inst/args.rs +0 -0
  666. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/inst/emit.rs +0 -0
  667. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/inst/emit_state.rs +0 -0
  668. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/inst/emit_tests.rs +0 -0
  669. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/inst/mod.rs +0 -0
  670. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/inst/regs.rs +0 -0
  671. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/inst/stack_switch.rs +0 -0
  672. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/inst/unwind/systemv.rs +0 -0
  673. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/inst/unwind/winx64.rs +0 -0
  674. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/inst/unwind.rs +0 -0
  675. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/inst.isle +0 -0
  676. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/lower/isle/generated_code.rs +0 -0
  677. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/lower/isle.rs +0 -0
  678. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/lower.isle +0 -0
  679. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/lower.rs +0 -0
  680. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/mod.rs +0 -0
  681. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/pcc.rs +0 -0
  682. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/settings.rs +0 -0
  683. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isle_prelude.rs +0 -0
  684. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/iterators.rs +0 -0
  685. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/legalizer/globalvalue.rs +0 -0
  686. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/legalizer/mod.rs +0 -0
  687. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/lib.rs +0 -0
  688. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/loop_analysis.rs +0 -0
  689. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/machinst/abi.rs +0 -0
  690. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/machinst/blockorder.rs +0 -0
  691. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/machinst/buffer.rs +0 -0
  692. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/machinst/compile.rs +0 -0
  693. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/machinst/helpers.rs +0 -0
  694. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/machinst/inst_common.rs +0 -0
  695. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/machinst/isle.rs +0 -0
  696. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/machinst/lower.rs +0 -0
  697. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/machinst/mod.rs +0 -0
  698. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/machinst/pcc.rs +0 -0
  699. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/machinst/reg.rs +0 -0
  700. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/machinst/valueregs.rs +0 -0
  701. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/machinst/vcode.rs +0 -0
  702. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/nan_canonicalization.rs +0 -0
  703. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/opts/README.md +0 -0
  704. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/opts/arithmetic.isle +0 -0
  705. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/opts/bitops.isle +0 -0
  706. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/opts/cprop.isle +0 -0
  707. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/opts/extends.isle +0 -0
  708. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/opts/generated_code.rs +0 -0
  709. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/opts/icmp.isle +0 -0
  710. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/opts/remat.isle +0 -0
  711. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/opts/selects.isle +0 -0
  712. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/opts/shifts.isle +0 -0
  713. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/opts/spaceship.isle +0 -0
  714. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/opts/spectre.isle +0 -0
  715. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/opts/vector.isle +0 -0
  716. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/opts.rs +0 -0
  717. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/prelude.isle +0 -0
  718. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/prelude_lower.isle +0 -0
  719. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/prelude_opt.isle +0 -0
  720. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/print_errors.rs +0 -0
  721. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ranges.rs +0 -0
  722. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/remove_constant_phis.rs +0 -0
  723. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/result.rs +0 -0
  724. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/scoped_hash_map.rs +0 -0
  725. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/settings.rs +0 -0
  726. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/souper_harvest.rs +0 -0
  727. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/timing.rs +0 -0
  728. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/traversals.rs +0 -0
  729. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/unionfind.rs +0 -0
  730. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/unreachable_code.rs +0 -0
  731. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/value_label.rs +0 -0
  732. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/verifier/mod.rs +0 -0
  733. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/write.rs +0 -0
  734. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/LICENSE +0 -0
  735. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/README.md +0 -0
  736. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/cdsl/formats.rs +0 -0
  737. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/cdsl/instructions.rs +0 -0
  738. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/cdsl/isa.rs +0 -0
  739. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/cdsl/mod.rs +0 -0
  740. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/cdsl/operands.rs +0 -0
  741. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/cdsl/settings.rs +0 -0
  742. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/cdsl/types.rs +0 -0
  743. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/cdsl/typevar.rs +0 -0
  744. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/constant_hash.rs +0 -0
  745. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/error.rs +0 -0
  746. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/gen_inst.rs +0 -0
  747. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/gen_isle.rs +0 -0
  748. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/gen_settings.rs +0 -0
  749. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/gen_types.rs +0 -0
  750. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/isa/arm64.rs +0 -0
  751. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/isa/mod.rs +0 -0
  752. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/isa/pulley.rs +0 -0
  753. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/isa/riscv64.rs +0 -0
  754. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/isa/s390x.rs +0 -0
  755. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/isa/x86.rs +0 -0
  756. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/isle.rs +0 -0
  757. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/lib.rs +0 -0
  758. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/shared/entities.rs +0 -0
  759. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/shared/formats.rs +0 -0
  760. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/shared/immediates.rs +0 -0
  761. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/shared/instructions.rs +0 -0
  762. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/shared/mod.rs +0 -0
  763. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/shared/settings.rs +0 -0
  764. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/shared/types.rs +0 -0
  765. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/srcgen.rs +0 -0
  766. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/unique_table.rs +0 -0
  767. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.112.1 → cranelift-codegen-shared-0.112.2}/LICENSE +0 -0
  768. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.112.1 → cranelift-codegen-shared-0.112.2}/README.md +0 -0
  769. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.112.1 → cranelift-codegen-shared-0.112.2}/src/constant_hash.rs +0 -0
  770. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.112.1 → cranelift-codegen-shared-0.112.2}/src/constants.rs +0 -0
  771. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.112.1 → cranelift-codegen-shared-0.112.2}/src/lib.rs +0 -0
  772. /data/ext/cargo-vendor/{cranelift-control-0.112.1 → cranelift-control-0.112.2}/LICENSE +0 -0
  773. /data/ext/cargo-vendor/{cranelift-control-0.112.1 → cranelift-control-0.112.2}/README.md +0 -0
  774. /data/ext/cargo-vendor/{cranelift-control-0.112.1 → cranelift-control-0.112.2}/src/chaos.rs +0 -0
  775. /data/ext/cargo-vendor/{cranelift-control-0.112.1 → cranelift-control-0.112.2}/src/lib.rs +0 -0
  776. /data/ext/cargo-vendor/{cranelift-control-0.112.1 → cranelift-control-0.112.2}/src/zero_sized.rs +0 -0
  777. /data/ext/cargo-vendor/{cranelift-entity-0.112.1 → cranelift-entity-0.112.2}/LICENSE +0 -0
  778. /data/ext/cargo-vendor/{cranelift-entity-0.112.1 → cranelift-entity-0.112.2}/README.md +0 -0
  779. /data/ext/cargo-vendor/{cranelift-entity-0.112.1 → cranelift-entity-0.112.2}/src/boxed_slice.rs +0 -0
  780. /data/ext/cargo-vendor/{cranelift-entity-0.112.1 → cranelift-entity-0.112.2}/src/iter.rs +0 -0
  781. /data/ext/cargo-vendor/{cranelift-entity-0.112.1 → cranelift-entity-0.112.2}/src/keys.rs +0 -0
  782. /data/ext/cargo-vendor/{cranelift-entity-0.112.1 → cranelift-entity-0.112.2}/src/lib.rs +0 -0
  783. /data/ext/cargo-vendor/{cranelift-entity-0.112.1 → cranelift-entity-0.112.2}/src/list.rs +0 -0
  784. /data/ext/cargo-vendor/{cranelift-entity-0.112.1 → cranelift-entity-0.112.2}/src/map.rs +0 -0
  785. /data/ext/cargo-vendor/{cranelift-entity-0.112.1 → cranelift-entity-0.112.2}/src/packed_option.rs +0 -0
  786. /data/ext/cargo-vendor/{cranelift-entity-0.112.1 → cranelift-entity-0.112.2}/src/primary.rs +0 -0
  787. /data/ext/cargo-vendor/{cranelift-entity-0.112.1 → cranelift-entity-0.112.2}/src/set.rs +0 -0
  788. /data/ext/cargo-vendor/{cranelift-entity-0.112.1 → cranelift-entity-0.112.2}/src/sparse.rs +0 -0
  789. /data/ext/cargo-vendor/{cranelift-entity-0.112.1 → cranelift-entity-0.112.2}/src/unsigned.rs +0 -0
  790. /data/ext/cargo-vendor/{cranelift-frontend-0.112.1 → cranelift-frontend-0.112.2}/LICENSE +0 -0
  791. /data/ext/cargo-vendor/{cranelift-frontend-0.112.1 → cranelift-frontend-0.112.2}/README.md +0 -0
  792. /data/ext/cargo-vendor/{cranelift-frontend-0.112.1 → cranelift-frontend-0.112.2}/src/frontend/safepoints.rs +0 -0
  793. /data/ext/cargo-vendor/{cranelift-frontend-0.112.1 → cranelift-frontend-0.112.2}/src/frontend.rs +0 -0
  794. /data/ext/cargo-vendor/{cranelift-frontend-0.112.1 → cranelift-frontend-0.112.2}/src/lib.rs +0 -0
  795. /data/ext/cargo-vendor/{cranelift-frontend-0.112.1 → cranelift-frontend-0.112.2}/src/ssa.rs +0 -0
  796. /data/ext/cargo-vendor/{cranelift-frontend-0.112.1 → cranelift-frontend-0.112.2}/src/switch.rs +0 -0
  797. /data/ext/cargo-vendor/{cranelift-frontend-0.112.1 → cranelift-frontend-0.112.2}/src/variable.rs +0 -0
  798. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/README.md +0 -0
  799. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/build.rs +0 -0
  800. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/fail/bad_converters.isle +0 -0
  801. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/fail/bound_var_type_mismatch.isle +0 -0
  802. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/fail/converter_extractor_constructor.isle +0 -0
  803. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/fail/error1.isle +0 -0
  804. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/fail/extra_parens.isle +0 -0
  805. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/fail/impure_expression.isle +0 -0
  806. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/fail/impure_rhs.isle +0 -0
  807. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/fail/multi_internal_etor.isle +0 -0
  808. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/fail/multi_prio.isle +0 -0
  809. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/link/borrows.isle +0 -0
  810. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/link/borrows_main.rs +0 -0
  811. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/link/iflets.isle +0 -0
  812. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/link/iflets_main.rs +0 -0
  813. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/link/multi_constructor.isle +0 -0
  814. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/link/multi_constructor_main.rs +0 -0
  815. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/link/multi_extractor.isle +0 -0
  816. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/link/multi_extractor_main.rs +0 -0
  817. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/link/test.isle +0 -0
  818. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/link/test_main.rs +0 -0
  819. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/pass/bound_var.isle +0 -0
  820. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/pass/construct_and_extract.isle +0 -0
  821. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/pass/conversions.isle +0 -0
  822. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/pass/conversions_extern.isle +0 -0
  823. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/pass/let.isle +0 -0
  824. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/pass/nodebug.isle +0 -0
  825. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/pass/prio_trie_bug.isle +0 -0
  826. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/pass/test2.isle +0 -0
  827. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/pass/test3.isle +0 -0
  828. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/pass/test4.isle +0 -0
  829. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/pass/tutorial.isle +0 -0
  830. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/run/iconst.isle +0 -0
  831. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/run/iconst_main.rs +0 -0
  832. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/run/let_shadowing.isle +0 -0
  833. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/run/let_shadowing_main.rs +0 -0
  834. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/src/ast.rs +0 -0
  835. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/src/codegen.rs +0 -0
  836. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/src/compile.rs +0 -0
  837. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/src/disjointsets.rs +0 -0
  838. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/src/error.rs +0 -0
  839. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/src/files.rs +0 -0
  840. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/src/lexer.rs +0 -0
  841. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/src/lib.rs +0 -0
  842. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/src/log.rs +0 -0
  843. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/src/overlap.rs +0 -0
  844. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/src/parser.rs +0 -0
  845. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/src/sema.rs +0 -0
  846. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/src/serialize.rs +0 -0
  847. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/src/stablemapset.rs +0 -0
  848. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/src/trie_again.rs +0 -0
  849. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/tests/run_tests.rs +0 -0
  850. /data/ext/cargo-vendor/{cranelift-native-0.112.1 → cranelift-native-0.112.2}/LICENSE +0 -0
  851. /data/ext/cargo-vendor/{cranelift-native-0.112.1 → cranelift-native-0.112.2}/README.md +0 -0
  852. /data/ext/cargo-vendor/{cranelift-native-0.112.1 → cranelift-native-0.112.2}/src/lib.rs +0 -0
  853. /data/ext/cargo-vendor/{cranelift-native-0.112.1 → cranelift-native-0.112.2}/src/riscv.rs +0 -0
  854. /data/ext/cargo-vendor/{cranelift-wasm-0.112.1 → cranelift-wasm-0.112.2}/LICENSE +0 -0
  855. /data/ext/cargo-vendor/{cranelift-wasm-0.112.1 → cranelift-wasm-0.112.2}/README.md +0 -0
  856. /data/ext/cargo-vendor/{cranelift-wasm-0.112.1 → cranelift-wasm-0.112.2}/src/code_translator/bounds_checks.rs +0 -0
  857. /data/ext/cargo-vendor/{cranelift-wasm-0.112.1 → cranelift-wasm-0.112.2}/src/code_translator.rs +0 -0
  858. /data/ext/cargo-vendor/{cranelift-wasm-0.112.1 → cranelift-wasm-0.112.2}/src/environ/dummy.rs +0 -0
  859. /data/ext/cargo-vendor/{cranelift-wasm-0.112.1 → cranelift-wasm-0.112.2}/src/environ/mod.rs +0 -0
  860. /data/ext/cargo-vendor/{cranelift-wasm-0.112.1 → cranelift-wasm-0.112.2}/src/environ/spec.rs +0 -0
  861. /data/ext/cargo-vendor/{cranelift-wasm-0.112.1 → cranelift-wasm-0.112.2}/src/func_translator.rs +0 -0
  862. /data/ext/cargo-vendor/{cranelift-wasm-0.112.1 → cranelift-wasm-0.112.2}/src/heap.rs +0 -0
  863. /data/ext/cargo-vendor/{cranelift-wasm-0.112.1 → cranelift-wasm-0.112.2}/src/lib.rs +0 -0
  864. /data/ext/cargo-vendor/{cranelift-wasm-0.112.1 → cranelift-wasm-0.112.2}/src/module_translator.rs +0 -0
  865. /data/ext/cargo-vendor/{cranelift-wasm-0.112.1 → cranelift-wasm-0.112.2}/src/sections_translator.rs +0 -0
  866. /data/ext/cargo-vendor/{cranelift-wasm-0.112.1 → cranelift-wasm-0.112.2}/src/state.rs +0 -0
  867. /data/ext/cargo-vendor/{cranelift-wasm-0.112.1 → cranelift-wasm-0.112.2}/src/table.rs +0 -0
  868. /data/ext/cargo-vendor/{cranelift-wasm-0.112.1 → cranelift-wasm-0.112.2}/src/translation_utils.rs +0 -0
  869. /data/ext/cargo-vendor/{pulley-interpreter-0.1.1 → pulley-interpreter-0.1.2}/README.md +0 -0
  870. /data/ext/cargo-vendor/{pulley-interpreter-0.1.1 → pulley-interpreter-0.1.2}/src/decode.rs +0 -0
  871. /data/ext/cargo-vendor/{pulley-interpreter-0.1.1 → pulley-interpreter-0.1.2}/src/disas.rs +0 -0
  872. /data/ext/cargo-vendor/{pulley-interpreter-0.1.1 → pulley-interpreter-0.1.2}/src/encode.rs +0 -0
  873. /data/ext/cargo-vendor/{pulley-interpreter-0.1.1 → pulley-interpreter-0.1.2}/src/imms.rs +0 -0
  874. /data/ext/cargo-vendor/{pulley-interpreter-0.1.1 → pulley-interpreter-0.1.2}/src/interp.rs +0 -0
  875. /data/ext/cargo-vendor/{pulley-interpreter-0.1.1 → pulley-interpreter-0.1.2}/src/lib.rs +0 -0
  876. /data/ext/cargo-vendor/{pulley-interpreter-0.1.1 → pulley-interpreter-0.1.2}/src/op.rs +0 -0
  877. /data/ext/cargo-vendor/{pulley-interpreter-0.1.1 → pulley-interpreter-0.1.2}/src/opcode.rs +0 -0
  878. /data/ext/cargo-vendor/{pulley-interpreter-0.1.1 → pulley-interpreter-0.1.2}/src/regs.rs +0 -0
  879. /data/ext/cargo-vendor/{pulley-interpreter-0.1.1 → pulley-interpreter-0.1.2}/tests/all/disas.rs +0 -0
  880. /data/ext/cargo-vendor/{pulley-interpreter-0.1.1 → pulley-interpreter-0.1.2}/tests/all/interp.rs +0 -0
  881. /data/ext/cargo-vendor/{pulley-interpreter-0.1.1 → pulley-interpreter-0.1.2}/tests/all/main.rs +0 -0
  882. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/LICENSE +0 -0
  883. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/docs/reactor-refactor.md +0 -0
  884. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/blocking.rs +0 -0
  885. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/doc/mod.rs +0 -0
  886. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/doc/os.rs +0 -0
  887. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/canonicalize.rs +0 -0
  888. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/copy.rs +0 -0
  889. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/create_dir.rs +0 -0
  890. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/create_dir_all.rs +0 -0
  891. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/dir_builder.rs +0 -0
  892. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/file/tests.rs +0 -0
  893. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/hard_link.rs +0 -0
  894. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/metadata.rs +0 -0
  895. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/mocks.rs +0 -0
  896. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/mod.rs +0 -0
  897. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/open_options/mock_open_options.rs +0 -0
  898. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/open_options.rs +0 -0
  899. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/read.rs +0 -0
  900. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/read_link.rs +0 -0
  901. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/read_to_string.rs +0 -0
  902. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/remove_dir.rs +0 -0
  903. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/remove_dir_all.rs +0 -0
  904. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/remove_file.rs +0 -0
  905. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/rename.rs +0 -0
  906. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/set_permissions.rs +0 -0
  907. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/symlink.rs +0 -0
  908. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/symlink_dir.rs +0 -0
  909. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/symlink_file.rs +0 -0
  910. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/symlink_metadata.rs +0 -0
  911. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/write.rs +0 -0
  912. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/future/block_on.rs +0 -0
  913. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/future/mod.rs +0 -0
  914. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/future/poll_fn.rs +0 -0
  915. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/future/trace.rs +0 -0
  916. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/future/try_join.rs +0 -0
  917. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fuzz.rs +0 -0
  918. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/async_buf_read.rs +0 -0
  919. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/async_seek.rs +0 -0
  920. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/async_write.rs +0 -0
  921. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/interest.rs +0 -0
  922. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/join.rs +0 -0
  923. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/read_buf.rs +0 -0
  924. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/ready.rs +0 -0
  925. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/split.rs +0 -0
  926. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/stderr.rs +0 -0
  927. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/stdin.rs +0 -0
  928. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/stdio_common.rs +0 -0
  929. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/stdout.rs +0 -0
  930. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/util/async_buf_read_ext.rs +0 -0
  931. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/util/async_read_ext.rs +0 -0
  932. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/util/async_seek_ext.rs +0 -0
  933. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/util/async_write_ext.rs +0 -0
  934. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/util/buf_stream.rs +0 -0
  935. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/util/fill_buf.rs +0 -0
  936. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/util/flush.rs +0 -0
  937. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/util/shutdown.rs +0 -0
  938. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/util/vec_with_initialized.rs +0 -0
  939. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/util/write.rs +0 -0
  940. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/util/write_vectored.rs +0 -0
  941. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/loom/mod.rs +0 -0
  942. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/loom/std/atomic_u64.rs +0 -0
  943. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/loom/std/atomic_u64_as_mutex.rs +0 -0
  944. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/loom/std/atomic_u64_native.rs +0 -0
  945. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/loom/std/atomic_u64_static_const_new.rs +0 -0
  946. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/loom/std/atomic_u64_static_once_cell.rs +0 -0
  947. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/loom/std/barrier.rs +0 -0
  948. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/loom/std/mod.rs +0 -0
  949. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/loom/std/parking_lot.rs +0 -0
  950. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/loom/std/unsafe_cell.rs +0 -0
  951. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/macros/addr_of.rs +0 -0
  952. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/macros/cfg.rs +0 -0
  953. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/macros/join.rs +0 -0
  954. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/macros/loom.rs +0 -0
  955. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/macros/pin.rs +0 -0
  956. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/macros/support.rs +0 -0
  957. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/macros/thread_local.rs +0 -0
  958. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/macros/trace.rs +0 -0
  959. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/macros/try_join.rs +0 -0
  960. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/lookup_host.rs +0 -0
  961. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/mod.rs +0 -0
  962. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/tcp/mod.rs +0 -0
  963. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/tcp/socket.rs +0 -0
  964. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/tcp/split.rs +0 -0
  965. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/tcp/split_owned.rs +0 -0
  966. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/unix/datagram/mod.rs +0 -0
  967. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/unix/mod.rs +0 -0
  968. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/unix/pipe.rs +0 -0
  969. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/unix/socket.rs +0 -0
  970. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/unix/socketaddr.rs +0 -0
  971. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/unix/split.rs +0 -0
  972. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/unix/split_owned.rs +0 -0
  973. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/unix/stream.rs +0 -0
  974. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/unix/ucred.rs +0 -0
  975. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/windows/mod.rs +0 -0
  976. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/windows/named_pipe.rs +0 -0
  977. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/process/kill.rs +0 -0
  978. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/process/unix/mod.rs +0 -0
  979. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/process/unix/orphan.rs +0 -0
  980. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/process/unix/reap.rs +0 -0
  981. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/process/windows.rs +0 -0
  982. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/blocking/mod.rs +0 -0
  983. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/blocking/shutdown.rs +0 -0
  984. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/blocking/task.rs +0 -0
  985. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/context/blocking.rs +0 -0
  986. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/context/current.rs +0 -0
  987. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/context/runtime.rs +0 -0
  988. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/context/runtime_mt.rs +0 -0
  989. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/context/scoped.rs +0 -0
  990. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/context.rs +0 -0
  991. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/driver.rs +0 -0
  992. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/dump.rs +0 -0
  993. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/handle.rs +0 -0
  994. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/id.rs +0 -0
  995. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/io/driver/signal.rs +0 -0
  996. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/io/driver.rs +0 -0
  997. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/io/metrics.rs +0 -0
  998. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/io/mod.rs +0 -0
  999. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/io/registration_set.rs +0 -0
  1000. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/io/scheduled_io.rs +0 -0
  1001. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/metrics/batch.rs +0 -0
  1002. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/metrics/histogram.rs +0 -0
  1003. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/metrics/io.rs +0 -0
  1004. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/metrics/mock.rs +0 -0
  1005. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/metrics/mod.rs +0 -0
  1006. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/metrics/runtime.rs +0 -0
  1007. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/metrics/scheduler.rs +0 -0
  1008. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/metrics/worker.rs +0 -0
  1009. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/park.rs +0 -0
  1010. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/process.rs +0 -0
  1011. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/runtime.rs +0 -0
  1012. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/block_in_place.rs +0 -0
  1013. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/defer.rs +0 -0
  1014. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/inject/metrics.rs +0 -0
  1015. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/inject/pop.rs +0 -0
  1016. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/inject/rt_multi_thread.rs +0 -0
  1017. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/inject/shared.rs +0 -0
  1018. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/inject/synced.rs +0 -0
  1019. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/inject.rs +0 -0
  1020. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/lock.rs +0 -0
  1021. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread/counters.rs +0 -0
  1022. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread/handle/metrics.rs +0 -0
  1023. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread/handle/taskdump.rs +0 -0
  1024. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread/idle.rs +0 -0
  1025. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread/mod.rs +0 -0
  1026. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread/overflow.rs +0 -0
  1027. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread/park.rs +0 -0
  1028. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread/queue.rs +0 -0
  1029. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread/stats.rs +0 -0
  1030. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread/trace.rs +0 -0
  1031. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread/trace_mock.rs +0 -0
  1032. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread/worker/metrics.rs +0 -0
  1033. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread/worker/taskdump.rs +0 -0
  1034. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread/worker/taskdump_mock.rs +0 -0
  1035. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread_alt/counters.rs +0 -0
  1036. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread_alt/handle/metrics.rs +0 -0
  1037. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread_alt/handle/taskdump.rs +0 -0
  1038. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread_alt/idle.rs +0 -0
  1039. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread_alt/mod.rs +0 -0
  1040. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread_alt/overflow.rs +0 -0
  1041. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread_alt/park.rs +0 -0
  1042. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread_alt/queue.rs +0 -0
  1043. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread_alt/stats.rs +0 -0
  1044. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread_alt/trace.rs +0 -0
  1045. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread_alt/trace_mock.rs +0 -0
  1046. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread_alt/worker/metrics.rs +0 -0
  1047. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread_alt/worker/taskdump.rs +0 -0
  1048. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread_alt/worker/taskdump_mock.rs +0 -0
  1049. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/signal/mod.rs +0 -0
  1050. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/task/abort.rs +0 -0
  1051. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/task/list.rs +0 -0
  1052. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/task/raw.rs +0 -0
  1053. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/task/state.rs +0 -0
  1054. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/task/trace/mod.rs +0 -0
  1055. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/task/trace/symbol.rs +0 -0
  1056. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/task/trace/tree.rs +0 -0
  1057. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/task/waker.rs +0 -0
  1058. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/tests/inject.rs +0 -0
  1059. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/tests/loom_blocking.rs +0 -0
  1060. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/tests/loom_current_thread/yield_now.rs +0 -0
  1061. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/tests/loom_current_thread.rs +0 -0
  1062. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/tests/loom_join_set.rs +0 -0
  1063. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/tests/loom_local.rs +0 -0
  1064. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/tests/loom_multi_thread/queue.rs +0 -0
  1065. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/tests/loom_multi_thread/shutdown.rs +0 -0
  1066. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/tests/loom_multi_thread/yield_now.rs +0 -0
  1067. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/tests/loom_multi_thread_alt/queue.rs +0 -0
  1068. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/tests/loom_multi_thread_alt/shutdown.rs +0 -0
  1069. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/tests/loom_multi_thread_alt/yield_now.rs +0 -0
  1070. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/tests/loom_oneshot.rs +0 -0
  1071. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/tests/task_combinations.rs +0 -0
  1072. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/thread_id.rs +0 -0
  1073. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/time/entry.rs +0 -0
  1074. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/time/handle.rs +0 -0
  1075. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/time/source.rs +0 -0
  1076. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/time/tests/mod.rs +0 -0
  1077. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/time/wheel/level.rs +0 -0
  1078. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/time/wheel/mod.rs +0 -0
  1079. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/signal/ctrl_c.rs +0 -0
  1080. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/signal/mod.rs +0 -0
  1081. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/signal/registry.rs +0 -0
  1082. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/signal/reusable_box.rs +0 -0
  1083. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/signal/unix.rs +0 -0
  1084. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/signal/windows/stub.rs +0 -0
  1085. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/signal/windows/sys.rs +0 -0
  1086. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/signal/windows.rs +0 -0
  1087. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/barrier.rs +0 -0
  1088. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/mod.rs +0 -0
  1089. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/mpsc/block.rs +0 -0
  1090. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/mpsc/bounded.rs +0 -0
  1091. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/mpsc/list.rs +0 -0
  1092. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/mpsc/unbounded.rs +0 -0
  1093. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/mutex.rs +0 -0
  1094. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/once_cell.rs +0 -0
  1095. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/rwlock/owned_read_guard.rs +0 -0
  1096. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/rwlock/owned_write_guard.rs +0 -0
  1097. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/rwlock/owned_write_guard_mapped.rs +0 -0
  1098. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/rwlock/read_guard.rs +0 -0
  1099. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/rwlock/write_guard.rs +0 -0
  1100. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/rwlock/write_guard_mapped.rs +0 -0
  1101. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/rwlock.rs +0 -0
  1102. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/semaphore.rs +0 -0
  1103. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/task/atomic_waker.rs +0 -0
  1104. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/task/mod.rs +0 -0
  1105. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/tests/atomic_waker.rs +0 -0
  1106. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/tests/loom_atomic_waker.rs +0 -0
  1107. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/tests/loom_broadcast.rs +0 -0
  1108. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/tests/loom_list.rs +0 -0
  1109. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/tests/loom_mpsc.rs +0 -0
  1110. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/tests/loom_notify.rs +0 -0
  1111. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/tests/loom_oneshot.rs +0 -0
  1112. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/tests/loom_rwlock.rs +0 -0
  1113. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/tests/loom_semaphore_batch.rs +0 -0
  1114. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/tests/loom_watch.rs +0 -0
  1115. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/tests/mod.rs +0 -0
  1116. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/tests/notify.rs +0 -0
  1117. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/tests/semaphore_batch.rs +0 -0
  1118. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/watch.rs +0 -0
  1119. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/task/blocking.rs +0 -0
  1120. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/task/builder.rs +0 -0
  1121. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/task/mod.rs +0 -0
  1122. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/task/task_local.rs +0 -0
  1123. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/task/unconstrained.rs +0 -0
  1124. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/time/clock.rs +0 -0
  1125. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/time/error.rs +0 -0
  1126. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/time/instant.rs +0 -0
  1127. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/time/mod.rs +0 -0
  1128. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/time/timeout.rs +0 -0
  1129. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/atomic_cell.rs +0 -0
  1130. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/cacheline.rs +0 -0
  1131. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/error.rs +0 -0
  1132. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/idle_notified_set.rs +0 -0
  1133. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/linked_list.rs +0 -0
  1134. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/markers.rs +0 -0
  1135. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/memchr.rs +0 -0
  1136. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/metric_atomics.rs +0 -0
  1137. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/mod.rs +0 -0
  1138. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/once_cell.rs +0 -0
  1139. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/rand/rt.rs +0 -0
  1140. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/rand/rt_unstable.rs +0 -0
  1141. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/rand.rs +0 -0
  1142. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/rc_cell.rs +0 -0
  1143. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/sharded_list.rs +0 -0
  1144. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/trace.rs +0 -0
  1145. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/try_lock.rs +0 -0
  1146. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/wake.rs +0 -0
  1147. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/wake_list.rs +0 -0
  1148. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/_require_full.rs +0 -0
  1149. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/buffered.rs +0 -0
  1150. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/coop_budget.rs +0 -0
  1151. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/dump.rs +0 -0
  1152. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/duplex_stream.rs +0 -0
  1153. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/fs.rs +0 -0
  1154. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/fs_canonicalize_dir.rs +0 -0
  1155. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/fs_copy.rs +0 -0
  1156. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/fs_dir.rs +0 -0
  1157. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/fs_file.rs +0 -0
  1158. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/fs_link.rs +0 -0
  1159. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/fs_open_options.rs +0 -0
  1160. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/fs_open_options_windows.rs +0 -0
  1161. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/fs_remove_dir_all.rs +0 -0
  1162. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/fs_remove_file.rs +0 -0
  1163. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/fs_rename.rs +0 -0
  1164. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/fs_symlink_dir_windows.rs +0 -0
  1165. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/fs_symlink_file_windows.rs +0 -0
  1166. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/fs_try_exists.rs +0 -0
  1167. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_async_read.rs +0 -0
  1168. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_buf_reader.rs +0 -0
  1169. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_buf_writer.rs +0 -0
  1170. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_chain.rs +0 -0
  1171. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_copy_bidirectional.rs +0 -0
  1172. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_driver.rs +0 -0
  1173. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_driver_drop.rs +0 -0
  1174. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_fill_buf.rs +0 -0
  1175. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_join.rs +0 -0
  1176. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_lines.rs +0 -0
  1177. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_mem_stream.rs +0 -0
  1178. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_panic.rs +0 -0
  1179. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_poll_aio.rs +0 -0
  1180. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_read.rs +0 -0
  1181. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_read_buf.rs +0 -0
  1182. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_read_exact.rs +0 -0
  1183. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_read_line.rs +0 -0
  1184. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_read_to_end.rs +0 -0
  1185. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_read_to_string.rs +0 -0
  1186. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_read_until.rs +0 -0
  1187. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_repeat.rs +0 -0
  1188. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_sink.rs +0 -0
  1189. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_split.rs +0 -0
  1190. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_take.rs +0 -0
  1191. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_util_empty.rs +0 -0
  1192. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_write.rs +0 -0
  1193. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_write_all.rs +0 -0
  1194. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_write_buf.rs +0 -0
  1195. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_write_int.rs +0 -0
  1196. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/join_handle_panic.rs +0 -0
  1197. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/macros_pin.rs +0 -0
  1198. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/macros_rename_test.rs +0 -0
  1199. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/macros_select.rs +0 -0
  1200. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/macros_test.rs +0 -0
  1201. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/macros_try_join.rs +0 -0
  1202. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/net_bind_resource.rs +0 -0
  1203. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/net_lookup_host.rs +0 -0
  1204. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/net_named_pipe.rs +0 -0
  1205. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/net_panic.rs +0 -0
  1206. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/net_unix_pipe.rs +0 -0
  1207. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/no_rt.rs +0 -0
  1208. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/process_arg0.rs +0 -0
  1209. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/process_change_of_runtime.rs +0 -0
  1210. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/process_issue_2174.rs +0 -0
  1211. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/process_issue_42.rs +0 -0
  1212. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/process_kill_on_drop.rs +0 -0
  1213. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/process_raw_handle.rs +0 -0
  1214. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/process_smoke.rs +0 -0
  1215. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/rt_basic.rs +0 -0
  1216. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/rt_common.rs +0 -0
  1217. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/rt_handle.rs +0 -0
  1218. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/rt_handle_block_on.rs +0 -0
  1219. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/rt_metrics.rs +0 -0
  1220. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/rt_panic.rs +0 -0
  1221. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/rt_threaded.rs +0 -0
  1222. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/rt_threaded_alt.rs +0 -0
  1223. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/rt_time_start_paused.rs +0 -0
  1224. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/rt_unstable_metrics.rs +0 -0
  1225. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/signal_ctrl_c.rs +0 -0
  1226. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/signal_drop_recv.rs +0 -0
  1227. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/signal_drop_rt.rs +0 -0
  1228. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/signal_drop_signal.rs +0 -0
  1229. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/signal_multi_rt.rs +0 -0
  1230. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/signal_no_rt.rs +0 -0
  1231. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/signal_notify_both.rs +0 -0
  1232. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/signal_panic.rs +0 -0
  1233. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/signal_twice.rs +0 -0
  1234. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/signal_usr1.rs +0 -0
  1235. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/support/io_vec.rs +0 -0
  1236. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/support/leaked_buffers.rs +0 -0
  1237. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/support/mpsc_stream.rs +0 -0
  1238. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/support/panic.rs +0 -0
  1239. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/support/signal.rs +0 -0
  1240. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/sync_barrier.rs +0 -0
  1241. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/sync_broadcast.rs +0 -0
  1242. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/sync_errors.rs +0 -0
  1243. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/sync_mpsc_weak.rs +0 -0
  1244. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/sync_mutex.rs +0 -0
  1245. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/sync_mutex_owned.rs +0 -0
  1246. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/sync_notify.rs +0 -0
  1247. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/sync_once_cell.rs +0 -0
  1248. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/sync_oneshot.rs +0 -0
  1249. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/sync_panic.rs +0 -0
  1250. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/sync_rwlock.rs +0 -0
  1251. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/sync_semaphore.rs +0 -0
  1252. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/sync_semaphore_owned.rs +0 -0
  1253. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/sync_watch.rs +0 -0
  1254. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/task_blocking.rs +0 -0
  1255. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/task_builder.rs +0 -0
  1256. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/task_id.rs +0 -0
  1257. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/task_local.rs +0 -0
  1258. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/task_local_set.rs +0 -0
  1259. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/task_panic.rs +0 -0
  1260. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/task_yield_now.rs +0 -0
  1261. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/tcp_accept.rs +0 -0
  1262. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/tcp_connect.rs +0 -0
  1263. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/tcp_echo.rs +0 -0
  1264. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/tcp_into_split.rs +0 -0
  1265. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/tcp_into_std.rs +0 -0
  1266. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/tcp_peek.rs +0 -0
  1267. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/tcp_shutdown.rs +0 -0
  1268. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/tcp_socket.rs +0 -0
  1269. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/tcp_split.rs +0 -0
  1270. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/tcp_stream.rs +0 -0
  1271. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/test_clock.rs +0 -0
  1272. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/time_interval.rs +0 -0
  1273. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/time_panic.rs +0 -0
  1274. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/time_pause.rs +0 -0
  1275. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/time_rt.rs +0 -0
  1276. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/time_sleep.rs +0 -0
  1277. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/time_timeout.rs +0 -0
  1278. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/udp.rs +0 -0
  1279. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/uds_cred.rs +0 -0
  1280. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/uds_datagram.rs +0 -0
  1281. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/uds_socket.rs +0 -0
  1282. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/uds_split.rs +0 -0
  1283. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/unwindsafe.rs +0 -0
  1284. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/LICENSE +0 -0
  1285. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/README.md +0 -0
  1286. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/clocks.rs +0 -0
  1287. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/ctx.rs +0 -0
  1288. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/dir.rs +0 -0
  1289. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/error.rs +0 -0
  1290. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/file.rs +0 -0
  1291. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/lib.rs +0 -0
  1292. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/pipe.rs +0 -0
  1293. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/random.rs +0 -0
  1294. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/sched/subscription.rs +0 -0
  1295. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/sched.rs +0 -0
  1296. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/snapshots/mod.rs +0 -0
  1297. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/snapshots/preview_0.rs +0 -0
  1298. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/snapshots/preview_1/error.rs +0 -0
  1299. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/snapshots/preview_1.rs +0 -0
  1300. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/string_array.rs +0 -0
  1301. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/sync/clocks.rs +0 -0
  1302. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/sync/dir.rs +0 -0
  1303. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/sync/file.rs +0 -0
  1304. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/sync/mod.rs +0 -0
  1305. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/sync/net.rs +0 -0
  1306. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/sync/sched/unix.rs +0 -0
  1307. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/sync/sched/windows.rs +0 -0
  1308. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/sync/sched.rs +0 -0
  1309. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/sync/stdio.rs +0 -0
  1310. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/table.rs +0 -0
  1311. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/tokio/dir.rs +0 -0
  1312. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/tokio/file.rs +0 -0
  1313. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/tokio/mod.rs +0 -0
  1314. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/tokio/net.rs +0 -0
  1315. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/tokio/sched/unix.rs +0 -0
  1316. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/tokio/sched/windows.rs +0 -0
  1317. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/tokio/sched.rs +0 -0
  1318. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/tokio/stdio.rs +0 -0
  1319. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/tests/all/async_.rs +0 -0
  1320. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/tests/all/main.rs +0 -0
  1321. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/tests/all/sync.rs +0 -0
  1322. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/witx/preview0/typenames.witx +0 -0
  1323. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/witx/preview0/wasi_unstable.witx +0 -0
  1324. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/witx/preview1/typenames.witx +0 -0
  1325. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/witx/preview1/wasi_snapshot_preview1.witx +0 -0
  1326. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/LICENSE +0 -0
  1327. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/README.md +0 -0
  1328. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/build.rs +0 -0
  1329. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/proptest-regressions/runtime/vm/instance/allocator/pooling/memory_pool.txt +0 -0
  1330. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/compile/code_builder.rs +0 -0
  1331. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/compile/runtime.rs +0 -0
  1332. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/compile.rs +0 -0
  1333. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/config.rs +0 -0
  1334. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/engine/serialization.rs +0 -0
  1335. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/engine.rs +0 -0
  1336. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/lib.rs +0 -0
  1337. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/profiling_agent/jitdump.rs +0 -0
  1338. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/profiling_agent/perfmap.rs +0 -0
  1339. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/profiling_agent/vtune.rs +0 -0
  1340. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/profiling_agent.rs +0 -0
  1341. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/code.rs +0 -0
  1342. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/code_memory.rs +0 -0
  1343. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/bindgen_examples/_0_hello_world.rs +0 -0
  1344. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/bindgen_examples/_1_world_imports.rs +0 -0
  1345. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/bindgen_examples/_2_world_exports.rs +0 -0
  1346. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/bindgen_examples/_3_interface_imports.rs +0 -0
  1347. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/bindgen_examples/_4_imported_resources.rs +0 -0
  1348. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/bindgen_examples/_5_all_world_export_kinds.rs +0 -0
  1349. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/bindgen_examples/_6_exported_resources.rs +0 -0
  1350. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/bindgen_examples/mod.rs +0 -0
  1351. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/component.rs +0 -0
  1352. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/func/host.rs +0 -0
  1353. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/func/options.rs +0 -0
  1354. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/func/typed.rs +0 -0
  1355. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/func.rs +0 -0
  1356. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/instance.rs +0 -0
  1357. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/linker.rs +0 -0
  1358. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/matching.rs +0 -0
  1359. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/mod.rs +0 -0
  1360. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/resource_table.rs +0 -0
  1361. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/resources.rs +0 -0
  1362. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/storage.rs +0 -0
  1363. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/store.rs +0 -0
  1364. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/types.rs +0 -0
  1365. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/values.rs +0 -0
  1366. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/coredump.rs +0 -0
  1367. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/debug.rs +0 -0
  1368. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/externals/global.rs +0 -0
  1369. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/externals/table.rs +0 -0
  1370. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/externals.rs +0 -0
  1371. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/func/typed.rs +0 -0
  1372. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/func.rs +0 -0
  1373. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/gc/disabled/anyref.rs +0 -0
  1374. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/gc/disabled/arrayref.rs +0 -0
  1375. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/gc/disabled/externref.rs +0 -0
  1376. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/gc/disabled/i31.rs +0 -0
  1377. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/gc/disabled/rooting.rs +0 -0
  1378. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/gc/disabled/structref.rs +0 -0
  1379. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/gc/disabled.rs +0 -0
  1380. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/gc/enabled/anyref.rs +0 -0
  1381. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/gc/enabled/arrayref.rs +0 -0
  1382. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/gc/enabled/externref.rs +0 -0
  1383. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/gc/enabled/i31.rs +0 -0
  1384. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/gc/enabled/rooting.rs +0 -0
  1385. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/gc/enabled/structref.rs +0 -0
  1386. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/gc/enabled.rs +0 -0
  1387. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/gc/noextern.rs +0 -0
  1388. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/gc.rs +0 -0
  1389. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/instance.rs +0 -0
  1390. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/instantiate.rs +0 -0
  1391. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/limits.rs +0 -0
  1392. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/linker.rs +0 -0
  1393. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/memory.rs +0 -0
  1394. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/module/registry.rs +0 -0
  1395. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/module.rs +0 -0
  1396. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/profiling.rs +0 -0
  1397. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/resources.rs +0 -0
  1398. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/signatures.rs +0 -0
  1399. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/stack.rs +0 -0
  1400. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/store/context.rs +0 -0
  1401. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/store/data.rs +0 -0
  1402. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/store/func_refs.rs +0 -0
  1403. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/store.rs +0 -0
  1404. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/trampoline/func.rs +0 -0
  1405. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/trampoline/global.rs +0 -0
  1406. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/trampoline/memory.rs +0 -0
  1407. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/trampoline/table.rs +0 -0
  1408. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/trampoline.rs +0 -0
  1409. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/trap.rs +0 -0
  1410. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/types/matching.rs +0 -0
  1411. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/types.rs +0 -0
  1412. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/uninhabited.rs +0 -0
  1413. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/unix.rs +0 -0
  1414. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/v128.rs +0 -0
  1415. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/values.rs +0 -0
  1416. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/arch/aarch64.rs +0 -0
  1417. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/arch/mod.rs +0 -0
  1418. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/arch/riscv64.rs +0 -0
  1419. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/arch/s390x.S +0 -0
  1420. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/arch/s390x.rs +0 -0
  1421. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/arch/unsupported.rs +0 -0
  1422. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/arch/x86_64.rs +0 -0
  1423. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/async_yield.rs +0 -0
  1424. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/component/libcalls.rs +0 -0
  1425. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/component/resources.rs +0 -0
  1426. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/component.rs +0 -0
  1427. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/const_expr.rs +0 -0
  1428. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/cow.rs +0 -0
  1429. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/debug_builtins.rs +0 -0
  1430. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/export.rs +0 -0
  1431. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/gc/disabled.rs +0 -0
  1432. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/gc/enabled/arrayref.rs +0 -0
  1433. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/gc/enabled/data.rs +0 -0
  1434. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/gc/enabled/drc.rs +0 -0
  1435. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/gc/enabled/externref.rs +0 -0
  1436. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/gc/enabled/free_list.rs +0 -0
  1437. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/gc/enabled/structref.rs +0 -0
  1438. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/gc/enabled.rs +0 -0
  1439. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/gc/gc_ref.rs +0 -0
  1440. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/gc/gc_runtime.rs +0 -0
  1441. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/gc/host_data.rs +0 -0
  1442. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/gc/i31.rs +0 -0
  1443. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/gc.rs +0 -0
  1444. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/helpers.c +0 -0
  1445. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/imports.rs +0 -0
  1446. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/instance/allocator/on_demand.rs +0 -0
  1447. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/instance/allocator/pooling/decommit_queue.rs +0 -0
  1448. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/instance/allocator/pooling/gc_heap_pool.rs +0 -0
  1449. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/instance/allocator/pooling/generic_stack_pool.rs +0 -0
  1450. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/instance/allocator/pooling/index_allocator.rs +0 -0
  1451. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/instance/allocator/pooling/memory_pool.rs +0 -0
  1452. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/instance/allocator/pooling/table_pool.rs +0 -0
  1453. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/instance/allocator/pooling/unix_stack_pool.rs +0 -0
  1454. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/instance/allocator/pooling.rs +0 -0
  1455. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/instance/allocator.rs +0 -0
  1456. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/instance.rs +0 -0
  1457. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/libcalls.rs +0 -0
  1458. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/memory.rs +0 -0
  1459. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/mmap.rs +0 -0
  1460. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/mmap_vec.rs +0 -0
  1461. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/module_id.rs +0 -0
  1462. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/mpk/disabled.rs +0 -0
  1463. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/mpk/enabled.rs +0 -0
  1464. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/mpk/mod.rs +0 -0
  1465. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/mpk/pkru.rs +0 -0
  1466. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/mpk/sys.rs +0 -0
  1467. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/send_sync_ptr.rs +0 -0
  1468. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/store_box.rs +0 -0
  1469. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/custom/capi.rs +0 -0
  1470. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/custom/mmap.rs +0 -0
  1471. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/custom/mod.rs +0 -0
  1472. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/custom/traphandlers.rs +0 -0
  1473. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/custom/unwind.rs +0 -0
  1474. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/custom/vm.rs +0 -0
  1475. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/miri/mmap.rs +0 -0
  1476. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/miri/mod.rs +0 -0
  1477. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/miri/traphandlers.rs +0 -0
  1478. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/miri/unwind.rs +0 -0
  1479. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/miri/vm.rs +0 -0
  1480. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/mod.rs +0 -0
  1481. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/unix/machports.rs +0 -0
  1482. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/unix/macos_traphandlers.rs +0 -0
  1483. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/unix/mmap.rs +0 -0
  1484. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/unix/mod.rs +0 -0
  1485. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/unix/signals.rs +0 -0
  1486. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/unix/unwind.rs +0 -0
  1487. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/unix/vm.rs +0 -0
  1488. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/windows/mmap.rs +0 -0
  1489. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/windows/mod.rs +0 -0
  1490. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/windows/traphandlers.rs +0 -0
  1491. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/windows/unwind.rs +0 -0
  1492. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/windows/vm.rs +0 -0
  1493. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/table.rs +0 -0
  1494. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/threads/mod.rs +0 -0
  1495. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/threads/parking_spot.rs +0 -0
  1496. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/threads/shared_memory.rs +0 -0
  1497. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/threads/shared_memory_disabled.rs +0 -0
  1498. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/traphandlers/coredump_disabled.rs +0 -0
  1499. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/traphandlers/coredump_enabled.rs +0 -0
  1500. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/traphandlers.rs +0 -0
  1501. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/vmcontext/vm_host_func_context.rs +0 -0
  1502. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/vmcontext.rs +0 -0
  1503. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm.rs +0 -0
  1504. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/windows.rs +0 -0
  1505. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime.rs +0 -0
  1506. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/sync_nostd.rs +0 -0
  1507. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/sync_std.rs +0 -0
  1508. /data/ext/cargo-vendor/{wasmtime-asm-macros-25.0.1 → wasmtime-asm-macros-25.0.2}/src/lib.rs +0 -0
  1509. /data/ext/cargo-vendor/{wasmtime-cache-25.0.1 → wasmtime-cache-25.0.2}/LICENSE +0 -0
  1510. /data/ext/cargo-vendor/{wasmtime-cache-25.0.1 → wasmtime-cache-25.0.2}/build.rs +0 -0
  1511. /data/ext/cargo-vendor/{wasmtime-cache-25.0.1 → wasmtime-cache-25.0.2}/src/config/tests.rs +0 -0
  1512. /data/ext/cargo-vendor/{wasmtime-cache-25.0.1 → wasmtime-cache-25.0.2}/src/config.rs +0 -0
  1513. /data/ext/cargo-vendor/{wasmtime-cache-25.0.1 → wasmtime-cache-25.0.2}/src/lib.rs +0 -0
  1514. /data/ext/cargo-vendor/{wasmtime-cache-25.0.1 → wasmtime-cache-25.0.2}/src/tests.rs +0 -0
  1515. /data/ext/cargo-vendor/{wasmtime-cache-25.0.1 → wasmtime-cache-25.0.2}/src/worker/tests/system_time_stub.rs +0 -0
  1516. /data/ext/cargo-vendor/{wasmtime-cache-25.0.1 → wasmtime-cache-25.0.2}/src/worker/tests.rs +0 -0
  1517. /data/ext/cargo-vendor/{wasmtime-cache-25.0.1 → wasmtime-cache-25.0.2}/src/worker.rs +0 -0
  1518. /data/ext/cargo-vendor/{wasmtime-cache-25.0.1 → wasmtime-cache-25.0.2}/tests/cache_write_default_config.rs +0 -0
  1519. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/build.rs +0 -0
  1520. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/src/bindgen.rs +0 -0
  1521. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/src/component.rs +0 -0
  1522. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/src/lib.rs +0 -0
  1523. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/char.wit +0 -0
  1524. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/conventions.wit +0 -0
  1525. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/dead-code.wit +0 -0
  1526. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/direct-import.wit +0 -0
  1527. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/empty.wit +0 -0
  1528. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/flags.wit +0 -0
  1529. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/floats.wit +0 -0
  1530. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/function-new.wit +0 -0
  1531. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/integers.wit +0 -0
  1532. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/lists.wit +0 -0
  1533. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/many-arguments.wit +0 -0
  1534. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/multi-return.wit +0 -0
  1535. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/multiversion/deps/v1/root.wit +0 -0
  1536. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/multiversion/deps/v2/root.wit +0 -0
  1537. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/multiversion/root.wit +0 -0
  1538. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/records.wit +0 -0
  1539. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/rename.wit +0 -0
  1540. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/resources-export.wit +0 -0
  1541. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/resources-import.wit +0 -0
  1542. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/share-types.wit +0 -0
  1543. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/simple-functions.wit +0 -0
  1544. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/simple-lists.wit +0 -0
  1545. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/simple-wasi.wit +0 -0
  1546. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/small-anonymous.wit +0 -0
  1547. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/smoke-default.wit +0 -0
  1548. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/smoke-export.wit +0 -0
  1549. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/smoke.wit +0 -0
  1550. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/strings.wit +0 -0
  1551. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/unversioned-foo.wit +0 -0
  1552. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/use-paths.wit +0 -0
  1553. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/variants.wit +0 -0
  1554. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/wat.wit +0 -0
  1555. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/worlds-with-types.wit +0 -0
  1556. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen.rs +0 -0
  1557. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen_no_std.rs +0 -0
  1558. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/char.rs +0 -0
  1559. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/char_async.rs +0 -0
  1560. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/char_tracing_async.rs +0 -0
  1561. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/conventions.rs +0 -0
  1562. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/conventions_async.rs +0 -0
  1563. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/conventions_tracing_async.rs +0 -0
  1564. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/dead-code.rs +0 -0
  1565. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/dead-code_async.rs +0 -0
  1566. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/dead-code_tracing_async.rs +0 -0
  1567. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/direct-import.rs +0 -0
  1568. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/direct-import_async.rs +0 -0
  1569. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/direct-import_tracing_async.rs +0 -0
  1570. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/empty.rs +0 -0
  1571. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/empty_async.rs +0 -0
  1572. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/empty_tracing_async.rs +0 -0
  1573. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/flags.rs +0 -0
  1574. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/flags_async.rs +0 -0
  1575. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/flags_tracing_async.rs +0 -0
  1576. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/floats.rs +0 -0
  1577. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/floats_async.rs +0 -0
  1578. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/floats_tracing_async.rs +0 -0
  1579. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/function-new.rs +0 -0
  1580. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/function-new_async.rs +0 -0
  1581. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/function-new_tracing_async.rs +0 -0
  1582. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/integers.rs +0 -0
  1583. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/integers_async.rs +0 -0
  1584. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/integers_tracing_async.rs +0 -0
  1585. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/lists.rs +0 -0
  1586. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/lists_async.rs +0 -0
  1587. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/lists_tracing_async.rs +0 -0
  1588. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/many-arguments.rs +0 -0
  1589. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/many-arguments_async.rs +0 -0
  1590. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/many-arguments_tracing_async.rs +0 -0
  1591. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/multi-return.rs +0 -0
  1592. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/multi-return_async.rs +0 -0
  1593. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/multi-return_tracing_async.rs +0 -0
  1594. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/multiversion.rs +0 -0
  1595. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/multiversion_async.rs +0 -0
  1596. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/multiversion_tracing_async.rs +0 -0
  1597. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/records.rs +0 -0
  1598. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/records_async.rs +0 -0
  1599. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/records_tracing_async.rs +0 -0
  1600. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/rename.rs +0 -0
  1601. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/rename_async.rs +0 -0
  1602. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/rename_tracing_async.rs +0 -0
  1603. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/resources-export.rs +0 -0
  1604. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/resources-export_async.rs +0 -0
  1605. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/resources-export_tracing_async.rs +0 -0
  1606. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/resources-import.rs +0 -0
  1607. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/resources-import_async.rs +0 -0
  1608. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/resources-import_tracing_async.rs +0 -0
  1609. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/share-types.rs +0 -0
  1610. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/share-types_async.rs +0 -0
  1611. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/share-types_tracing_async.rs +0 -0
  1612. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/simple-functions.rs +0 -0
  1613. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/simple-functions_async.rs +0 -0
  1614. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/simple-functions_tracing_async.rs +0 -0
  1615. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/simple-lists.rs +0 -0
  1616. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/simple-lists_async.rs +0 -0
  1617. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/simple-lists_tracing_async.rs +0 -0
  1618. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/simple-wasi.rs +0 -0
  1619. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/simple-wasi_async.rs +0 -0
  1620. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/simple-wasi_tracing_async.rs +0 -0
  1621. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/small-anonymous.rs +0 -0
  1622. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/small-anonymous_async.rs +0 -0
  1623. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/small-anonymous_tracing_async.rs +0 -0
  1624. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/smoke-default.rs +0 -0
  1625. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/smoke-default_async.rs +0 -0
  1626. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/smoke-default_tracing_async.rs +0 -0
  1627. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/smoke-export.rs +0 -0
  1628. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/smoke-export_async.rs +0 -0
  1629. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/smoke-export_tracing_async.rs +0 -0
  1630. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/smoke.rs +0 -0
  1631. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/smoke_async.rs +0 -0
  1632. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/smoke_tracing_async.rs +0 -0
  1633. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/strings.rs +0 -0
  1634. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/strings_async.rs +0 -0
  1635. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/strings_tracing_async.rs +0 -0
  1636. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/unversioned-foo.rs +0 -0
  1637. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/unversioned-foo_async.rs +0 -0
  1638. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/unversioned-foo_tracing_async.rs +0 -0
  1639. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/use-paths.rs +0 -0
  1640. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/use-paths_async.rs +0 -0
  1641. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/use-paths_tracing_async.rs +0 -0
  1642. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/variants.rs +0 -0
  1643. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/variants_async.rs +0 -0
  1644. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/variants_tracing_async.rs +0 -0
  1645. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/wat.rs +0 -0
  1646. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/wat_async.rs +0 -0
  1647. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/wat_tracing_async.rs +0 -0
  1648. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/worlds-with-types.rs +0 -0
  1649. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/worlds-with-types_async.rs +0 -0
  1650. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/worlds-with-types_tracing_async.rs +0 -0
  1651. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded.rs +0 -0
  1652. /data/ext/cargo-vendor/{wasmtime-component-util-25.0.1 → wasmtime-component-util-25.0.2}/src/lib.rs +0 -0
  1653. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/LICENSE +0 -0
  1654. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/SECURITY.md +0 -0
  1655. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/builder.rs +0 -0
  1656. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/compiled_function.rs +0 -0
  1657. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/compiler/component.rs +0 -0
  1658. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/compiler.rs +0 -0
  1659. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/debug/gc.rs +0 -0
  1660. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/debug/transform/address_transform.rs +0 -0
  1661. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/debug/transform/attr.rs +0 -0
  1662. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/debug/transform/expression.rs +0 -0
  1663. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/debug/transform/line_program.rs +0 -0
  1664. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/debug/transform/mod.rs +0 -0
  1665. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/debug/transform/range_info_builder.rs +0 -0
  1666. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/debug/transform/refs.rs +0 -0
  1667. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/debug/transform/simulate.rs +0 -0
  1668. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/debug/transform/unit.rs +0 -0
  1669. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/debug/transform/utils.rs +0 -0
  1670. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/debug/write_debuginfo.rs +0 -0
  1671. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/debug.rs +0 -0
  1672. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/func_environ.rs +0 -0
  1673. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/gc/disabled.rs +0 -0
  1674. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/gc/enabled.rs +0 -0
  1675. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/gc.rs +0 -0
  1676. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/isa_builder.rs +0 -0
  1677. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/lib.rs +0 -0
  1678. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/obj.rs +0 -0
  1679. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/LICENSE +0 -0
  1680. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/examples/factc.rs +0 -0
  1681. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/address_map.rs +0 -0
  1682. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/builtin.rs +0 -0
  1683. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/compile/address_map.rs +0 -0
  1684. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/compile/mod.rs +0 -0
  1685. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/compile/module_artifacts.rs +0 -0
  1686. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/compile/module_types.rs +0 -0
  1687. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/compile/trap_encoding.rs +0 -0
  1688. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/component/artifacts.rs +0 -0
  1689. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/component/compiler.rs +0 -0
  1690. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/component/dfg.rs +0 -0
  1691. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/component/info.rs +0 -0
  1692. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/component/names.rs +0 -0
  1693. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/component/translate/adapt.rs +0 -0
  1694. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/component/translate/inline.rs +0 -0
  1695. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/component/translate.rs +0 -0
  1696. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/component/types.rs +0 -0
  1697. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/component/types_builder/resources.rs +0 -0
  1698. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/component/types_builder.rs +0 -0
  1699. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/component/vmcomponent_offsets.rs +0 -0
  1700. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/component.rs +0 -0
  1701. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/demangling.rs +0 -0
  1702. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/fact/core_types.rs +0 -0
  1703. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/fact/signature.rs +0 -0
  1704. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/fact/trampoline.rs +0 -0
  1705. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/fact/transcode.rs +0 -0
  1706. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/fact/traps.rs +0 -0
  1707. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/fact.rs +0 -0
  1708. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/gc.rs +0 -0
  1709. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/lib.rs +0 -0
  1710. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/module.rs +0 -0
  1711. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/module_artifacts.rs +0 -0
  1712. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/module_types.rs +0 -0
  1713. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/obj.rs +0 -0
  1714. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/ref_bits.rs +0 -0
  1715. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/scopevec.rs +0 -0
  1716. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/stack_map.rs +0 -0
  1717. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/trap_encoding.rs +0 -0
  1718. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/tunables.rs +0 -0
  1719. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/vmoffsets.rs +0 -0
  1720. /data/ext/cargo-vendor/{wasmtime-fiber-25.0.1 → wasmtime-fiber-25.0.2}/LICENSE +0 -0
  1721. /data/ext/cargo-vendor/{wasmtime-fiber-25.0.1 → wasmtime-fiber-25.0.2}/build.rs +0 -0
  1722. /data/ext/cargo-vendor/{wasmtime-fiber-25.0.1 → wasmtime-fiber-25.0.2}/src/lib.rs +0 -0
  1723. /data/ext/cargo-vendor/{wasmtime-fiber-25.0.1 → wasmtime-fiber-25.0.2}/src/unix/aarch64.rs +0 -0
  1724. /data/ext/cargo-vendor/{wasmtime-fiber-25.0.1 → wasmtime-fiber-25.0.2}/src/unix/arm.rs +0 -0
  1725. /data/ext/cargo-vendor/{wasmtime-fiber-25.0.1 → wasmtime-fiber-25.0.2}/src/unix/riscv64.rs +0 -0
  1726. /data/ext/cargo-vendor/{wasmtime-fiber-25.0.1 → wasmtime-fiber-25.0.2}/src/unix/s390x.S +0 -0
  1727. /data/ext/cargo-vendor/{wasmtime-fiber-25.0.1 → wasmtime-fiber-25.0.2}/src/unix/x86.rs +0 -0
  1728. /data/ext/cargo-vendor/{wasmtime-fiber-25.0.1 → wasmtime-fiber-25.0.2}/src/unix/x86_64.rs +0 -0
  1729. /data/ext/cargo-vendor/{wasmtime-fiber-25.0.1 → wasmtime-fiber-25.0.2}/src/unix.rs +0 -0
  1730. /data/ext/cargo-vendor/{wasmtime-fiber-25.0.1 → wasmtime-fiber-25.0.2}/src/windows.c +0 -0
  1731. /data/ext/cargo-vendor/{wasmtime-fiber-25.0.1 → wasmtime-fiber-25.0.2}/src/windows.rs +0 -0
  1732. /data/ext/cargo-vendor/{wasmtime-jit-debug-25.0.1 → wasmtime-jit-debug-25.0.2}/README.md +0 -0
  1733. /data/ext/cargo-vendor/{wasmtime-jit-debug-25.0.1 → wasmtime-jit-debug-25.0.2}/src/gdb_jit_int.rs +0 -0
  1734. /data/ext/cargo-vendor/{wasmtime-jit-debug-25.0.1 → wasmtime-jit-debug-25.0.2}/src/lib.rs +0 -0
  1735. /data/ext/cargo-vendor/{wasmtime-jit-debug-25.0.1 → wasmtime-jit-debug-25.0.2}/src/perf_jitdump.rs +0 -0
  1736. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-25.0.1 → wasmtime-jit-icache-coherence-25.0.2}/src/lib.rs +0 -0
  1737. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-25.0.1 → wasmtime-jit-icache-coherence-25.0.2}/src/libc.rs +0 -0
  1738. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-25.0.1 → wasmtime-jit-icache-coherence-25.0.2}/src/miri.rs +0 -0
  1739. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-25.0.1 → wasmtime-jit-icache-coherence-25.0.2}/src/win.rs +0 -0
  1740. /data/ext/cargo-vendor/{wasmtime-slab-25.0.1 → wasmtime-slab-25.0.2}/src/lib.rs +0 -0
  1741. /data/ext/cargo-vendor/{wasmtime-types-25.0.1 → wasmtime-types-25.0.2}/LICENSE +0 -0
  1742. /data/ext/cargo-vendor/{wasmtime-types-25.0.1 → wasmtime-types-25.0.2}/src/error.rs +0 -0
  1743. /data/ext/cargo-vendor/{wasmtime-types-25.0.1 → wasmtime-types-25.0.2}/src/lib.rs +0 -0
  1744. /data/ext/cargo-vendor/{wasmtime-types-25.0.1 → wasmtime-types-25.0.2}/src/prelude.rs +0 -0
  1745. /data/ext/cargo-vendor/{wasmtime-versioned-export-macros-25.0.1 → wasmtime-versioned-export-macros-25.0.2}/src/lib.rs +0 -0
  1746. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/LICENSE +0 -0
  1747. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/README.md +0 -0
  1748. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/bindings.rs +0 -0
  1749. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/clocks/host.rs +0 -0
  1750. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/clocks.rs +0 -0
  1751. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/ctx.rs +0 -0
  1752. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/error.rs +0 -0
  1753. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/filesystem.rs +0 -0
  1754. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/host/clocks.rs +0 -0
  1755. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/host/env.rs +0 -0
  1756. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/host/exit.rs +0 -0
  1757. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/host/filesystem/sync.rs +0 -0
  1758. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/host/filesystem.rs +0 -0
  1759. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/host/instance_network.rs +0 -0
  1760. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/host/io.rs +0 -0
  1761. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/host/mod.rs +0 -0
  1762. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/host/network.rs +0 -0
  1763. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/host/random.rs +0 -0
  1764. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/host/tcp.rs +0 -0
  1765. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/host/tcp_create_socket.rs +0 -0
  1766. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/host/udp.rs +0 -0
  1767. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/host/udp_create_socket.rs +0 -0
  1768. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/ip_name_lookup.rs +0 -0
  1769. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/lib.rs +0 -0
  1770. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/network.rs +0 -0
  1771. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/pipe.rs +0 -0
  1772. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/poll.rs +0 -0
  1773. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/preview0.rs +0 -0
  1774. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/preview1.rs +0 -0
  1775. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/random.rs +0 -0
  1776. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/runtime.rs +0 -0
  1777. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/stdio/worker_thread_stdin.rs +0 -0
  1778. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/stdio.rs +0 -0
  1779. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/stream.rs +0 -0
  1780. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/tcp.rs +0 -0
  1781. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/udp.rs +0 -0
  1782. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/write_stream.rs +0 -0
  1783. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/tests/all/api.rs +0 -0
  1784. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/tests/all/async_.rs +0 -0
  1785. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/tests/all/main.rs +0 -0
  1786. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/tests/all/preview1.rs +0 -0
  1787. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/tests/all/sync.rs +0 -0
  1788. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/tests/process_stdin.rs +0 -0
  1789. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/cli/command.wit +0 -0
  1790. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/cli/environment.wit +0 -0
  1791. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/cli/exit.wit +0 -0
  1792. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/cli/imports.wit +0 -0
  1793. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/cli/run.wit +0 -0
  1794. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/cli/stdio.wit +0 -0
  1795. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/cli/terminal.wit +0 -0
  1796. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/clocks/monotonic-clock.wit +0 -0
  1797. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/clocks/timezone.wit +0 -0
  1798. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/clocks/wall-clock.wit +0 -0
  1799. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/clocks/world.wit +0 -0
  1800. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/filesystem/preopens.wit +0 -0
  1801. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/filesystem/types.wit +0 -0
  1802. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/filesystem/world.wit +0 -0
  1803. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/io/error.wit +0 -0
  1804. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/io/poll.wit +0 -0
  1805. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/io/streams.wit +0 -0
  1806. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/io/world.wit +0 -0
  1807. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/random/insecure-seed.wit +0 -0
  1808. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/random/insecure.wit +0 -0
  1809. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/random/random.wit +0 -0
  1810. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/random/world.wit +0 -0
  1811. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/sockets/instance-network.wit +0 -0
  1812. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/sockets/ip-name-lookup.wit +0 -0
  1813. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/sockets/network.wit +0 -0
  1814. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/sockets/tcp-create-socket.wit +0 -0
  1815. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/sockets/tcp.wit +0 -0
  1816. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/sockets/udp-create-socket.wit +0 -0
  1817. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/sockets/udp.wit +0 -0
  1818. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/sockets/world.wit +0 -0
  1819. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/test.wit +0 -0
  1820. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/world.wit +0 -0
  1821. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/witx/preview0/typenames.witx +0 -0
  1822. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/witx/preview0/wasi_unstable.witx +0 -0
  1823. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/witx/preview1/typenames.witx +0 -0
  1824. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/witx/preview1/wasi_snapshot_preview1.witx +0 -0
  1825. /data/ext/cargo-vendor/{wasmtime-winch-25.0.1 → wasmtime-winch-25.0.2}/LICENSE +0 -0
  1826. /data/ext/cargo-vendor/{wasmtime-winch-25.0.1 → wasmtime-winch-25.0.2}/src/builder.rs +0 -0
  1827. /data/ext/cargo-vendor/{wasmtime-winch-25.0.1 → wasmtime-winch-25.0.2}/src/compiler.rs +0 -0
  1828. /data/ext/cargo-vendor/{wasmtime-winch-25.0.1 → wasmtime-winch-25.0.2}/src/lib.rs +0 -0
  1829. /data/ext/cargo-vendor/{wasmtime-wit-bindgen-25.0.1 → wasmtime-wit-bindgen-25.0.2}/src/lib.rs +0 -0
  1830. /data/ext/cargo-vendor/{wasmtime-wit-bindgen-25.0.1 → wasmtime-wit-bindgen-25.0.2}/src/rust.rs +0 -0
  1831. /data/ext/cargo-vendor/{wasmtime-wit-bindgen-25.0.1 → wasmtime-wit-bindgen-25.0.2}/src/source.rs +0 -0
  1832. /data/ext/cargo-vendor/{wasmtime-wit-bindgen-25.0.1 → wasmtime-wit-bindgen-25.0.2}/src/types.rs +0 -0
  1833. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/README.md +0 -0
  1834. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/component/alias.rs +0 -0
  1835. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/component/custom.rs +0 -0
  1836. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/component/export.rs +0 -0
  1837. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/component/import.rs +0 -0
  1838. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/component/instance.rs +0 -0
  1839. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/component/item_ref.rs +0 -0
  1840. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/component/module.rs +0 -0
  1841. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/component/wast.rs +0 -0
  1842. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/component.rs +0 -0
  1843. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/core/binary/dwarf.rs +0 -0
  1844. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/core/binary/dwarf_disabled.rs +0 -0
  1845. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/core/custom.rs +0 -0
  1846. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/core/export.rs +0 -0
  1847. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/core/func.rs +0 -0
  1848. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/core/global.rs +0 -0
  1849. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/core/import.rs +0 -0
  1850. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/core/memory.rs +0 -0
  1851. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/core/module.rs +0 -0
  1852. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/core/resolve/mod.rs +0 -0
  1853. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/core/tag.rs +0 -0
  1854. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/core/wast.rs +0 -0
  1855. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/core.rs +0 -0
  1856. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/encode.rs +0 -0
  1857. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/error.rs +0 -0
  1858. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/gensym.rs +0 -0
  1859. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/lexer.rs +0 -0
  1860. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/names.rs +0 -0
  1861. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/parser.rs +0 -0
  1862. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/token.rs +0 -0
  1863. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/wat.rs +0 -0
  1864. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/annotations.rs +0 -0
  1865. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/comments.rs +0 -0
  1866. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/bad-core-func-alias.wat +0 -0
  1867. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/bad-core-func-alias.wat.err +0 -0
  1868. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/bad-func-alias.wat +0 -0
  1869. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/bad-func-alias.wat.err +0 -0
  1870. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/bad-index.wat +0 -0
  1871. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/bad-index.wat.err +0 -0
  1872. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/bad-name.wat +0 -0
  1873. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/bad-name.wat.err +0 -0
  1874. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/bad-name2.wat +0 -0
  1875. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/bad-name2.wat.err +0 -0
  1876. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/bad-name3.wat +0 -0
  1877. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/bad-name3.wat.err +0 -0
  1878. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/block1.wat +0 -0
  1879. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/block1.wat.err +0 -0
  1880. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/block2.wat +0 -0
  1881. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/block2.wat.err +0 -0
  1882. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/block3.wat +0 -0
  1883. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/block3.wat.err +0 -0
  1884. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment0.wat +0 -0
  1885. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment0.wat.err +0 -0
  1886. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment1.wat +0 -0
  1887. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment1.wat.err +0 -0
  1888. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment2.wat +0 -0
  1889. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment2.wat.err +0 -0
  1890. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment3.wat +0 -0
  1891. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment3.wat.err +0 -0
  1892. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment4.wat +0 -0
  1893. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment4.wat.err +0 -0
  1894. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment5.wat +0 -0
  1895. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment5.wat.err +0 -0
  1896. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment6.wat +0 -0
  1897. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment6.wat.err +0 -0
  1898. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment7.wat +0 -0
  1899. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment7.wat.err +0 -0
  1900. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment8.wat +0 -0
  1901. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment8.wat.err +0 -0
  1902. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment0.wat +0 -0
  1903. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment0.wat.err +0 -0
  1904. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment1.wat +0 -0
  1905. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment1.wat.err +0 -0
  1906. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment2.wat +0 -0
  1907. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment2.wat.err +0 -0
  1908. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment3.wat +0 -0
  1909. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment3.wat.err +0 -0
  1910. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment4.wat +0 -0
  1911. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment4.wat.err +0 -0
  1912. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment5.wat +0 -0
  1913. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment5.wat.err +0 -0
  1914. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment6.wat +0 -0
  1915. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment6.wat.err +0 -0
  1916. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment7.wat +0 -0
  1917. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment7.wat.err +0 -0
  1918. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment8.wat +0 -0
  1919. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment8.wat.err +0 -0
  1920. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string0.wat +0 -0
  1921. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string0.wat.err +0 -0
  1922. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string1.wat +0 -0
  1923. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string1.wat.err +0 -0
  1924. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string2.wat +0 -0
  1925. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string2.wat.err +0 -0
  1926. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string3.wat +0 -0
  1927. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string3.wat.err +0 -0
  1928. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string4.wat +0 -0
  1929. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string4.wat.err +0 -0
  1930. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string5.wat +0 -0
  1931. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string5.wat.err +0 -0
  1932. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string6.wat +0 -0
  1933. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string6.wat.err +0 -0
  1934. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string7.wat +0 -0
  1935. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string7.wat.err +0 -0
  1936. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string8.wat +0 -0
  1937. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string8.wat.err +0 -0
  1938. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/inline1.wat +0 -0
  1939. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/inline1.wat.err +0 -0
  1940. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/newline-in-string.wat +0 -0
  1941. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/newline-in-string.wat.err +0 -0
  1942. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string1.wat +0 -0
  1943. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string1.wat.err +0 -0
  1944. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string10.wat +0 -0
  1945. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string10.wat.err +0 -0
  1946. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string11.wat +0 -0
  1947. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string11.wat.err +0 -0
  1948. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string12.wat +0 -0
  1949. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string12.wat.err +0 -0
  1950. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string13.wat +0 -0
  1951. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string13.wat.err +0 -0
  1952. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string14.wat +0 -0
  1953. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string14.wat.err +0 -0
  1954. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string15.wat +0 -0
  1955. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string15.wat.err +0 -0
  1956. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string16.wat +0 -0
  1957. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string16.wat.err +0 -0
  1958. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string2.wat +0 -0
  1959. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string2.wat.err +0 -0
  1960. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string3.wat +0 -0
  1961. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string3.wat.err +0 -0
  1962. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string4.wat +0 -0
  1963. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string4.wat.err +0 -0
  1964. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string5.wat +0 -0
  1965. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string5.wat.err +0 -0
  1966. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string6.wat +0 -0
  1967. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string6.wat.err +0 -0
  1968. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string7.wat +0 -0
  1969. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string7.wat.err +0 -0
  1970. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string8.wat +0 -0
  1971. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string8.wat.err +0 -0
  1972. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string9.wat +0 -0
  1973. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string9.wat.err +0 -0
  1974. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/unbalanced.wat +0 -0
  1975. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/unbalanced.wat.err +0 -0
  1976. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail.rs +0 -0
  1977. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/recursive.rs +0 -0
  1978. /data/ext/cargo-vendor/{wat-1.217.0 → wat-1.218.0}/README.md +0 -0
  1979. /data/ext/cargo-vendor/{wat-1.217.0 → wat-1.218.0}/src/lib.rs +0 -0
  1980. /data/ext/cargo-vendor/{wiggle-25.0.1 → wiggle-25.0.2}/LICENSE +0 -0
  1981. /data/ext/cargo-vendor/{wiggle-25.0.1 → wiggle-25.0.2}/README.md +0 -0
  1982. /data/ext/cargo-vendor/{wiggle-25.0.1 → wiggle-25.0.2}/src/error.rs +0 -0
  1983. /data/ext/cargo-vendor/{wiggle-25.0.1 → wiggle-25.0.2}/src/guest_type.rs +0 -0
  1984. /data/ext/cargo-vendor/{wiggle-25.0.1 → wiggle-25.0.2}/src/lib.rs +0 -0
  1985. /data/ext/cargo-vendor/{wiggle-25.0.1 → wiggle-25.0.2}/src/region.rs +0 -0
  1986. /data/ext/cargo-vendor/{wiggle-generate-25.0.1 → wiggle-generate-25.0.2}/LICENSE +0 -0
  1987. /data/ext/cargo-vendor/{wiggle-generate-25.0.1 → wiggle-generate-25.0.2}/README.md +0 -0
  1988. /data/ext/cargo-vendor/{wiggle-generate-25.0.1 → wiggle-generate-25.0.2}/src/codegen_settings.rs +0 -0
  1989. /data/ext/cargo-vendor/{wiggle-generate-25.0.1 → wiggle-generate-25.0.2}/src/config.rs +0 -0
  1990. /data/ext/cargo-vendor/{wiggle-generate-25.0.1 → wiggle-generate-25.0.2}/src/funcs.rs +0 -0
  1991. /data/ext/cargo-vendor/{wiggle-generate-25.0.1 → wiggle-generate-25.0.2}/src/lib.rs +0 -0
  1992. /data/ext/cargo-vendor/{wiggle-generate-25.0.1 → wiggle-generate-25.0.2}/src/lifetimes.rs +0 -0
  1993. /data/ext/cargo-vendor/{wiggle-generate-25.0.1 → wiggle-generate-25.0.2}/src/module_trait.rs +0 -0
  1994. /data/ext/cargo-vendor/{wiggle-generate-25.0.1 → wiggle-generate-25.0.2}/src/names.rs +0 -0
  1995. /data/ext/cargo-vendor/{wiggle-generate-25.0.1 → wiggle-generate-25.0.2}/src/types/error.rs +0 -0
  1996. /data/ext/cargo-vendor/{wiggle-generate-25.0.1 → wiggle-generate-25.0.2}/src/types/flags.rs +0 -0
  1997. /data/ext/cargo-vendor/{wiggle-generate-25.0.1 → wiggle-generate-25.0.2}/src/types/handle.rs +0 -0
  1998. /data/ext/cargo-vendor/{wiggle-generate-25.0.1 → wiggle-generate-25.0.2}/src/types/mod.rs +0 -0
  1999. /data/ext/cargo-vendor/{wiggle-generate-25.0.1 → wiggle-generate-25.0.2}/src/types/record.rs +0 -0
  2000. /data/ext/cargo-vendor/{wiggle-generate-25.0.1 → wiggle-generate-25.0.2}/src/types/variant.rs +0 -0
  2001. /data/ext/cargo-vendor/{wiggle-generate-25.0.1 → wiggle-generate-25.0.2}/src/wasmtime.rs +0 -0
  2002. /data/ext/cargo-vendor/{wiggle-macro-25.0.1 → wiggle-macro-25.0.2}/LICENSE +0 -0
  2003. /data/ext/cargo-vendor/{wiggle-macro-25.0.1 → wiggle-macro-25.0.2}/build.rs +0 -0
  2004. /data/ext/cargo-vendor/{wiggle-macro-25.0.1 → wiggle-macro-25.0.2}/src/lib.rs +0 -0
  2005. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/LICENSE +0 -0
  2006. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/build.rs +0 -0
  2007. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/abi/local.rs +0 -0
  2008. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/abi/mod.rs +0 -0
  2009. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/codegen/bounds.rs +0 -0
  2010. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/codegen/builtin.rs +0 -0
  2011. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/codegen/call.rs +0 -0
  2012. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/codegen/context.rs +0 -0
  2013. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/codegen/control.rs +0 -0
  2014. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/codegen/env.rs +0 -0
  2015. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/codegen/mod.rs +0 -0
  2016. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/frame/mod.rs +0 -0
  2017. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/isa/aarch64/abi.rs +0 -0
  2018. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/isa/aarch64/address.rs +0 -0
  2019. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/isa/aarch64/asm.rs +0 -0
  2020. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/isa/aarch64/masm.rs +0 -0
  2021. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/isa/aarch64/mod.rs +0 -0
  2022. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/isa/aarch64/regs.rs +0 -0
  2023. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/isa/mod.rs +0 -0
  2024. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/isa/reg.rs +0 -0
  2025. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/isa/x64/abi.rs +0 -0
  2026. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/isa/x64/address.rs +0 -0
  2027. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/isa/x64/asm.rs +0 -0
  2028. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/isa/x64/masm.rs +0 -0
  2029. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/isa/x64/mod.rs +0 -0
  2030. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/isa/x64/regs.rs +0 -0
  2031. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/lib.rs +0 -0
  2032. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/masm.rs +0 -0
  2033. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/regalloc.rs +0 -0
  2034. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/regset.rs +0 -0
  2035. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/stack.rs +0 -0
  2036. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/visitor.rs +0 -0
@@ -1,1218 +0,0 @@
1
- // Allow `unreachable_pub` warnings when sync is not enabled
2
- // due to the usage of `Notify` within the `rt` feature set.
3
- // When this module is compiled with `sync` enabled we will warn on
4
- // this lint. When `rt` is enabled we use `pub(crate)` which
5
- // triggers this warning but it is safe to ignore in this case.
6
- #![cfg_attr(not(feature = "sync"), allow(unreachable_pub, dead_code))]
7
-
8
- use crate::loom::cell::UnsafeCell;
9
- use crate::loom::sync::atomic::AtomicUsize;
10
- use crate::loom::sync::Mutex;
11
- use crate::util::linked_list::{self, GuardedLinkedList, LinkedList};
12
- use crate::util::WakeList;
13
-
14
- use std::future::Future;
15
- use std::marker::PhantomPinned;
16
- use std::panic::{RefUnwindSafe, UnwindSafe};
17
- use std::pin::Pin;
18
- use std::ptr::NonNull;
19
- use std::sync::atomic::Ordering::{self, Acquire, Relaxed, Release, SeqCst};
20
- use std::task::{Context, Poll, Waker};
21
-
22
- type WaitList = LinkedList<Waiter, <Waiter as linked_list::Link>::Target>;
23
- type GuardedWaitList = GuardedLinkedList<Waiter, <Waiter as linked_list::Link>::Target>;
24
-
25
- /// Notifies a single task to wake up.
26
- ///
27
- /// `Notify` provides a basic mechanism to notify a single task of an event.
28
- /// `Notify` itself does not carry any data. Instead, it is to be used to signal
29
- /// another task to perform an operation.
30
- ///
31
- /// A `Notify` can be thought of as a [`Semaphore`] starting with 0 permits. The
32
- /// [`notified().await`] method waits for a permit to become available, and
33
- /// [`notify_one()`] sets a permit **if there currently are no available
34
- /// permits**.
35
- ///
36
- /// The synchronization details of `Notify` are similar to
37
- /// [`thread::park`][park] and [`Thread::unpark`][unpark] from std. A [`Notify`]
38
- /// value contains a single permit. [`notified().await`] waits for the permit to
39
- /// be made available, consumes the permit, and resumes. [`notify_one()`] sets
40
- /// the permit, waking a pending task if there is one.
41
- ///
42
- /// If `notify_one()` is called **before** `notified().await`, then the next
43
- /// call to `notified().await` will complete immediately, consuming the permit.
44
- /// Any subsequent calls to `notified().await` will wait for a new permit.
45
- ///
46
- /// If `notify_one()` is called **multiple** times before `notified().await`,
47
- /// only a **single** permit is stored. The next call to `notified().await` will
48
- /// complete immediately, but the one after will wait for a new permit.
49
- ///
50
- /// # Examples
51
- ///
52
- /// Basic usage.
53
- ///
54
- /// ```
55
- /// use tokio::sync::Notify;
56
- /// use std::sync::Arc;
57
- ///
58
- /// #[tokio::main]
59
- /// async fn main() {
60
- /// let notify = Arc::new(Notify::new());
61
- /// let notify2 = notify.clone();
62
- ///
63
- /// let handle = tokio::spawn(async move {
64
- /// notify2.notified().await;
65
- /// println!("received notification");
66
- /// });
67
- ///
68
- /// println!("sending notification");
69
- /// notify.notify_one();
70
- ///
71
- /// // Wait for task to receive notification.
72
- /// handle.await.unwrap();
73
- /// }
74
- /// ```
75
- ///
76
- /// Unbound multi-producer single-consumer (mpsc) channel.
77
- ///
78
- /// No wakeups can be lost when using this channel because the call to
79
- /// `notify_one()` will store a permit in the `Notify`, which the following call
80
- /// to `notified()` will consume.
81
- ///
82
- /// ```
83
- /// use tokio::sync::Notify;
84
- ///
85
- /// use std::collections::VecDeque;
86
- /// use std::sync::Mutex;
87
- ///
88
- /// struct Channel<T> {
89
- /// values: Mutex<VecDeque<T>>,
90
- /// notify: Notify,
91
- /// }
92
- ///
93
- /// impl<T> Channel<T> {
94
- /// pub fn send(&self, value: T) {
95
- /// self.values.lock().unwrap()
96
- /// .push_back(value);
97
- ///
98
- /// // Notify the consumer a value is available
99
- /// self.notify.notify_one();
100
- /// }
101
- ///
102
- /// // This is a single-consumer channel, so several concurrent calls to
103
- /// // `recv` are not allowed.
104
- /// pub async fn recv(&self) -> T {
105
- /// loop {
106
- /// // Drain values
107
- /// if let Some(value) = self.values.lock().unwrap().pop_front() {
108
- /// return value;
109
- /// }
110
- ///
111
- /// // Wait for values to be available
112
- /// self.notify.notified().await;
113
- /// }
114
- /// }
115
- /// }
116
- /// ```
117
- ///
118
- /// Unbound multi-producer multi-consumer (mpmc) channel.
119
- ///
120
- /// The call to [`enable`] is important because otherwise if you have two
121
- /// calls to `recv` and two calls to `send` in parallel, the following could
122
- /// happen:
123
- ///
124
- /// 1. Both calls to `try_recv` return `None`.
125
- /// 2. Both new elements are added to the vector.
126
- /// 3. The `notify_one` method is called twice, adding only a single
127
- /// permit to the `Notify`.
128
- /// 4. Both calls to `recv` reach the `Notified` future. One of them
129
- /// consumes the permit, and the other sleeps forever.
130
- ///
131
- /// By adding the `Notified` futures to the list by calling `enable` before
132
- /// `try_recv`, the `notify_one` calls in step three would remove the
133
- /// futures from the list and mark them notified instead of adding a permit
134
- /// to the `Notify`. This ensures that both futures are woken.
135
- ///
136
- /// Notice that this failure can only happen if there are two concurrent calls
137
- /// to `recv`. This is why the mpsc example above does not require a call to
138
- /// `enable`.
139
- ///
140
- /// ```
141
- /// use tokio::sync::Notify;
142
- ///
143
- /// use std::collections::VecDeque;
144
- /// use std::sync::Mutex;
145
- ///
146
- /// struct Channel<T> {
147
- /// messages: Mutex<VecDeque<T>>,
148
- /// notify_on_sent: Notify,
149
- /// }
150
- ///
151
- /// impl<T> Channel<T> {
152
- /// pub fn send(&self, msg: T) {
153
- /// let mut locked_queue = self.messages.lock().unwrap();
154
- /// locked_queue.push_back(msg);
155
- /// drop(locked_queue);
156
- ///
157
- /// // Send a notification to one of the calls currently
158
- /// // waiting in a call to `recv`.
159
- /// self.notify_on_sent.notify_one();
160
- /// }
161
- ///
162
- /// pub fn try_recv(&self) -> Option<T> {
163
- /// let mut locked_queue = self.messages.lock().unwrap();
164
- /// locked_queue.pop_front()
165
- /// }
166
- ///
167
- /// pub async fn recv(&self) -> T {
168
- /// let future = self.notify_on_sent.notified();
169
- /// tokio::pin!(future);
170
- ///
171
- /// loop {
172
- /// // Make sure that no wakeup is lost if we get
173
- /// // `None` from `try_recv`.
174
- /// future.as_mut().enable();
175
- ///
176
- /// if let Some(msg) = self.try_recv() {
177
- /// return msg;
178
- /// }
179
- ///
180
- /// // Wait for a call to `notify_one`.
181
- /// //
182
- /// // This uses `.as_mut()` to avoid consuming the future,
183
- /// // which lets us call `Pin::set` below.
184
- /// future.as_mut().await;
185
- ///
186
- /// // Reset the future in case another call to
187
- /// // `try_recv` got the message before us.
188
- /// future.set(self.notify_on_sent.notified());
189
- /// }
190
- /// }
191
- /// }
192
- /// ```
193
- ///
194
- /// [park]: std::thread::park
195
- /// [unpark]: std::thread::Thread::unpark
196
- /// [`notified().await`]: Notify::notified()
197
- /// [`notify_one()`]: Notify::notify_one()
198
- /// [`enable`]: Notified::enable()
199
- /// [`Semaphore`]: crate::sync::Semaphore
200
- #[derive(Debug)]
201
- pub struct Notify {
202
- // `state` uses 2 bits to store one of `EMPTY`,
203
- // `WAITING` or `NOTIFIED`. The rest of the bits
204
- // are used to store the number of times `notify_waiters`
205
- // was called.
206
- //
207
- // Throughout the code there are two assumptions:
208
- // - state can be transitioned *from* `WAITING` only if
209
- // `waiters` lock is held
210
- // - number of times `notify_waiters` was called can
211
- // be modified only if `waiters` lock is held
212
- state: AtomicUsize,
213
- waiters: Mutex<WaitList>,
214
- }
215
-
216
- #[derive(Debug)]
217
- struct Waiter {
218
- /// Intrusive linked-list pointers.
219
- pointers: linked_list::Pointers<Waiter>,
220
-
221
- /// Waiting task's waker. Depending on the value of `notification`,
222
- /// this field is either protected by the `waiters` lock in
223
- /// `Notify`, or it is exclusively owned by the enclosing `Waiter`.
224
- waker: UnsafeCell<Option<Waker>>,
225
-
226
- /// Notification for this waiter. Uses 2 bits to store if and how was
227
- /// notified, 1 bit for storing if it was woken up using FIFO or LIFO, and
228
- /// the rest of it is unused.
229
- /// * if it's `None`, then `waker` is protected by the `waiters` lock.
230
- /// * if it's `Some`, then `waker` is exclusively owned by the
231
- /// enclosing `Waiter` and can be accessed without locking.
232
- notification: AtomicNotification,
233
-
234
- /// Should not be `Unpin`.
235
- _p: PhantomPinned,
236
- }
237
-
238
- impl Waiter {
239
- fn new() -> Waiter {
240
- Waiter {
241
- pointers: linked_list::Pointers::new(),
242
- waker: UnsafeCell::new(None),
243
- notification: AtomicNotification::none(),
244
- _p: PhantomPinned,
245
- }
246
- }
247
- }
248
-
249
- generate_addr_of_methods! {
250
- impl<> Waiter {
251
- unsafe fn addr_of_pointers(self: NonNull<Self>) -> NonNull<linked_list::Pointers<Waiter>> {
252
- &self.pointers
253
- }
254
- }
255
- }
256
-
257
- // No notification.
258
- const NOTIFICATION_NONE: usize = 0b000;
259
-
260
- // Notification type used by `notify_one`.
261
- const NOTIFICATION_ONE: usize = 0b001;
262
-
263
- // Notification type used by `notify_last`.
264
- const NOTIFICATION_LAST: usize = 0b101;
265
-
266
- // Notification type used by `notify_waiters`.
267
- const NOTIFICATION_ALL: usize = 0b010;
268
-
269
- /// Notification for a `Waiter`.
270
- /// This struct is equivalent to `Option<Notification>`, but uses
271
- /// `AtomicUsize` inside for atomic operations.
272
- #[derive(Debug)]
273
- struct AtomicNotification(AtomicUsize);
274
-
275
- impl AtomicNotification {
276
- fn none() -> Self {
277
- AtomicNotification(AtomicUsize::new(NOTIFICATION_NONE))
278
- }
279
-
280
- /// Store-release a notification.
281
- /// This method should be called exactly once.
282
- fn store_release(&self, notification: Notification) {
283
- let data: usize = match notification {
284
- Notification::All => NOTIFICATION_ALL,
285
- Notification::One(NotifyOneStrategy::Fifo) => NOTIFICATION_ONE,
286
- Notification::One(NotifyOneStrategy::Lifo) => NOTIFICATION_LAST,
287
- };
288
- self.0.store(data, Release);
289
- }
290
-
291
- fn load(&self, ordering: Ordering) -> Option<Notification> {
292
- let data = self.0.load(ordering);
293
- match data {
294
- NOTIFICATION_NONE => None,
295
- NOTIFICATION_ONE => Some(Notification::One(NotifyOneStrategy::Fifo)),
296
- NOTIFICATION_LAST => Some(Notification::One(NotifyOneStrategy::Lifo)),
297
- NOTIFICATION_ALL => Some(Notification::All),
298
- _ => unreachable!(),
299
- }
300
- }
301
-
302
- /// Clears the notification.
303
- /// This method is used by a `Notified` future to consume the
304
- /// notification. It uses relaxed ordering and should be only
305
- /// used once the atomic notification is no longer shared.
306
- fn clear(&self) {
307
- self.0.store(NOTIFICATION_NONE, Relaxed);
308
- }
309
- }
310
-
311
- #[derive(Debug, PartialEq, Eq)]
312
- #[repr(usize)]
313
- enum NotifyOneStrategy {
314
- Fifo,
315
- Lifo,
316
- }
317
-
318
- #[derive(Debug, PartialEq, Eq)]
319
- #[repr(usize)]
320
- enum Notification {
321
- One(NotifyOneStrategy),
322
- All,
323
- }
324
-
325
- /// List used in `Notify::notify_waiters`. It wraps a guarded linked list
326
- /// and gates the access to it on `notify.waiters` mutex. It also empties
327
- /// the list on drop.
328
- struct NotifyWaitersList<'a> {
329
- list: GuardedWaitList,
330
- is_empty: bool,
331
- notify: &'a Notify,
332
- }
333
-
334
- impl<'a> NotifyWaitersList<'a> {
335
- fn new(
336
- unguarded_list: WaitList,
337
- guard: Pin<&'a Waiter>,
338
- notify: &'a Notify,
339
- ) -> NotifyWaitersList<'a> {
340
- let guard_ptr = NonNull::from(guard.get_ref());
341
- let list = unguarded_list.into_guarded(guard_ptr);
342
- NotifyWaitersList {
343
- list,
344
- is_empty: false,
345
- notify,
346
- }
347
- }
348
-
349
- /// Removes the last element from the guarded list. Modifying this list
350
- /// requires an exclusive access to the main list in `Notify`.
351
- fn pop_back_locked(&mut self, _waiters: &mut WaitList) -> Option<NonNull<Waiter>> {
352
- let result = self.list.pop_back();
353
- if result.is_none() {
354
- // Save information about emptiness to avoid waiting for lock
355
- // in the destructor.
356
- self.is_empty = true;
357
- }
358
- result
359
- }
360
- }
361
-
362
- impl Drop for NotifyWaitersList<'_> {
363
- fn drop(&mut self) {
364
- // If the list is not empty, we unlink all waiters from it.
365
- // We do not wake the waiters to avoid double panics.
366
- if !self.is_empty {
367
- let _lock_guard = self.notify.waiters.lock();
368
- while let Some(waiter) = self.list.pop_back() {
369
- // Safety: we never make mutable references to waiters.
370
- let waiter = unsafe { waiter.as_ref() };
371
- waiter.notification.store_release(Notification::All);
372
- }
373
- }
374
- }
375
- }
376
-
377
- /// Future returned from [`Notify::notified()`].
378
- ///
379
- /// This future is fused, so once it has completed, any future calls to poll
380
- /// will immediately return `Poll::Ready`.
381
- #[derive(Debug)]
382
- pub struct Notified<'a> {
383
- /// The `Notify` being received on.
384
- notify: &'a Notify,
385
-
386
- /// The current state of the receiving process.
387
- state: State,
388
-
389
- /// Number of calls to `notify_waiters` at the time of creation.
390
- notify_waiters_calls: usize,
391
-
392
- /// Entry in the waiter `LinkedList`.
393
- waiter: Waiter,
394
- }
395
-
396
- unsafe impl<'a> Send for Notified<'a> {}
397
- unsafe impl<'a> Sync for Notified<'a> {}
398
-
399
- #[derive(Debug)]
400
- enum State {
401
- Init,
402
- Waiting,
403
- Done,
404
- }
405
-
406
- const NOTIFY_WAITERS_SHIFT: usize = 2;
407
- const STATE_MASK: usize = (1 << NOTIFY_WAITERS_SHIFT) - 1;
408
- const NOTIFY_WAITERS_CALLS_MASK: usize = !STATE_MASK;
409
-
410
- /// Initial "idle" state.
411
- const EMPTY: usize = 0;
412
-
413
- /// One or more threads are currently waiting to be notified.
414
- const WAITING: usize = 1;
415
-
416
- /// Pending notification.
417
- const NOTIFIED: usize = 2;
418
-
419
- fn set_state(data: usize, state: usize) -> usize {
420
- (data & NOTIFY_WAITERS_CALLS_MASK) | (state & STATE_MASK)
421
- }
422
-
423
- fn get_state(data: usize) -> usize {
424
- data & STATE_MASK
425
- }
426
-
427
- fn get_num_notify_waiters_calls(data: usize) -> usize {
428
- (data & NOTIFY_WAITERS_CALLS_MASK) >> NOTIFY_WAITERS_SHIFT
429
- }
430
-
431
- fn inc_num_notify_waiters_calls(data: usize) -> usize {
432
- data + (1 << NOTIFY_WAITERS_SHIFT)
433
- }
434
-
435
- fn atomic_inc_num_notify_waiters_calls(data: &AtomicUsize) {
436
- data.fetch_add(1 << NOTIFY_WAITERS_SHIFT, SeqCst);
437
- }
438
-
439
- impl Notify {
440
- /// Create a new `Notify`, initialized without a permit.
441
- ///
442
- /// # Examples
443
- ///
444
- /// ```
445
- /// use tokio::sync::Notify;
446
- ///
447
- /// let notify = Notify::new();
448
- /// ```
449
- pub fn new() -> Notify {
450
- Notify {
451
- state: AtomicUsize::new(0),
452
- waiters: Mutex::new(LinkedList::new()),
453
- }
454
- }
455
-
456
- /// Create a new `Notify`, initialized without a permit.
457
- ///
458
- /// When using the `tracing` [unstable feature], a `Notify` created with
459
- /// `const_new` will not be instrumented. As such, it will not be visible
460
- /// in [`tokio-console`]. Instead, [`Notify::new`] should be used to create
461
- /// an instrumented object if that is needed.
462
- ///
463
- /// # Examples
464
- ///
465
- /// ```
466
- /// use tokio::sync::Notify;
467
- ///
468
- /// static NOTIFY: Notify = Notify::const_new();
469
- /// ```
470
- ///
471
- /// [`tokio-console`]: https://github.com/tokio-rs/console
472
- /// [unstable feature]: crate#unstable-features
473
- #[cfg(not(all(loom, test)))]
474
- pub const fn const_new() -> Notify {
475
- Notify {
476
- state: AtomicUsize::new(0),
477
- waiters: Mutex::const_new(LinkedList::new()),
478
- }
479
- }
480
-
481
- /// Wait for a notification.
482
- ///
483
- /// Equivalent to:
484
- ///
485
- /// ```ignore
486
- /// async fn notified(&self);
487
- /// ```
488
- ///
489
- /// Each `Notify` value holds a single permit. If a permit is available from
490
- /// an earlier call to [`notify_one()`], then `notified().await` will complete
491
- /// immediately, consuming that permit. Otherwise, `notified().await` waits
492
- /// for a permit to be made available by the next call to `notify_one()`.
493
- ///
494
- /// The `Notified` future is not guaranteed to receive wakeups from calls to
495
- /// `notify_one()` if it has not yet been polled. See the documentation for
496
- /// [`Notified::enable()`] for more details.
497
- ///
498
- /// The `Notified` future is guaranteed to receive wakeups from
499
- /// `notify_waiters()` as soon as it has been created, even if it has not
500
- /// yet been polled.
501
- ///
502
- /// [`notify_one()`]: Notify::notify_one
503
- /// [`Notified::enable()`]: Notified::enable
504
- ///
505
- /// # Cancel safety
506
- ///
507
- /// This method uses a queue to fairly distribute notifications in the order
508
- /// they were requested. Cancelling a call to `notified` makes you lose your
509
- /// place in the queue.
510
- ///
511
- /// # Examples
512
- ///
513
- /// ```
514
- /// use tokio::sync::Notify;
515
- /// use std::sync::Arc;
516
- ///
517
- /// #[tokio::main]
518
- /// async fn main() {
519
- /// let notify = Arc::new(Notify::new());
520
- /// let notify2 = notify.clone();
521
- ///
522
- /// tokio::spawn(async move {
523
- /// notify2.notified().await;
524
- /// println!("received notification");
525
- /// });
526
- ///
527
- /// println!("sending notification");
528
- /// notify.notify_one();
529
- /// }
530
- /// ```
531
- pub fn notified(&self) -> Notified<'_> {
532
- // we load the number of times notify_waiters
533
- // was called and store that in the future.
534
- let state = self.state.load(SeqCst);
535
- Notified {
536
- notify: self,
537
- state: State::Init,
538
- notify_waiters_calls: get_num_notify_waiters_calls(state),
539
- waiter: Waiter::new(),
540
- }
541
- }
542
-
543
- /// Notifies the first waiting task.
544
- ///
545
- /// If a task is currently waiting, that task is notified. Otherwise, a
546
- /// permit is stored in this `Notify` value and the **next** call to
547
- /// [`notified().await`] will complete immediately consuming the permit made
548
- /// available by this call to `notify_one()`.
549
- ///
550
- /// At most one permit may be stored by `Notify`. Many sequential calls to
551
- /// `notify_one` will result in a single permit being stored. The next call to
552
- /// `notified().await` will complete immediately, but the one after that
553
- /// will wait.
554
- ///
555
- /// [`notified().await`]: Notify::notified()
556
- ///
557
- /// # Examples
558
- ///
559
- /// ```
560
- /// use tokio::sync::Notify;
561
- /// use std::sync::Arc;
562
- ///
563
- /// #[tokio::main]
564
- /// async fn main() {
565
- /// let notify = Arc::new(Notify::new());
566
- /// let notify2 = notify.clone();
567
- ///
568
- /// tokio::spawn(async move {
569
- /// notify2.notified().await;
570
- /// println!("received notification");
571
- /// });
572
- ///
573
- /// println!("sending notification");
574
- /// notify.notify_one();
575
- /// }
576
- /// ```
577
- // Alias for old name in 0.x
578
- #[cfg_attr(docsrs, doc(alias = "notify"))]
579
- pub fn notify_one(&self) {
580
- self.notify_with_strategy(NotifyOneStrategy::Fifo);
581
- }
582
-
583
- /// Notifies the last waiting task.
584
- ///
585
- /// This function behaves similar to `notify_one`. The only difference is that it wakes
586
- /// the most recently added waiter instead of the oldest waiter.
587
- ///
588
- /// Check the [`notify_one()`] documentation for more info and
589
- /// examples.
590
- ///
591
- /// [`notify_one()`]: Notify::notify_one
592
- pub fn notify_last(&self) {
593
- self.notify_with_strategy(NotifyOneStrategy::Lifo);
594
- }
595
-
596
- fn notify_with_strategy(&self, strategy: NotifyOneStrategy) {
597
- // Load the current state
598
- let mut curr = self.state.load(SeqCst);
599
-
600
- // If the state is `EMPTY`, transition to `NOTIFIED` and return.
601
- while let EMPTY | NOTIFIED = get_state(curr) {
602
- // The compare-exchange from `NOTIFIED` -> `NOTIFIED` is intended. A
603
- // happens-before synchronization must happen between this atomic
604
- // operation and a task calling `notified().await`.
605
- let new = set_state(curr, NOTIFIED);
606
- let res = self.state.compare_exchange(curr, new, SeqCst, SeqCst);
607
-
608
- match res {
609
- // No waiters, no further work to do
610
- Ok(_) => return,
611
- Err(actual) => {
612
- curr = actual;
613
- }
614
- }
615
- }
616
-
617
- // There are waiters, the lock must be acquired to notify.
618
- let mut waiters = self.waiters.lock();
619
-
620
- // The state must be reloaded while the lock is held. The state may only
621
- // transition out of WAITING while the lock is held.
622
- curr = self.state.load(SeqCst);
623
-
624
- if let Some(waker) = notify_locked(&mut waiters, &self.state, curr, strategy) {
625
- drop(waiters);
626
- waker.wake();
627
- }
628
- }
629
-
630
- /// Notifies all waiting tasks.
631
- ///
632
- /// If a task is currently waiting, that task is notified. Unlike with
633
- /// `notify_one()`, no permit is stored to be used by the next call to
634
- /// `notified().await`. The purpose of this method is to notify all
635
- /// already registered waiters. Registering for notification is done by
636
- /// acquiring an instance of the `Notified` future via calling `notified()`.
637
- ///
638
- /// # Examples
639
- ///
640
- /// ```
641
- /// use tokio::sync::Notify;
642
- /// use std::sync::Arc;
643
- ///
644
- /// #[tokio::main]
645
- /// async fn main() {
646
- /// let notify = Arc::new(Notify::new());
647
- /// let notify2 = notify.clone();
648
- ///
649
- /// let notified1 = notify.notified();
650
- /// let notified2 = notify.notified();
651
- ///
652
- /// let handle = tokio::spawn(async move {
653
- /// println!("sending notifications");
654
- /// notify2.notify_waiters();
655
- /// });
656
- ///
657
- /// notified1.await;
658
- /// notified2.await;
659
- /// println!("received notifications");
660
- /// }
661
- /// ```
662
- pub fn notify_waiters(&self) {
663
- let mut waiters = self.waiters.lock();
664
-
665
- // The state must be loaded while the lock is held. The state may only
666
- // transition out of WAITING while the lock is held.
667
- let curr = self.state.load(SeqCst);
668
-
669
- if matches!(get_state(curr), EMPTY | NOTIFIED) {
670
- // There are no waiting tasks. All we need to do is increment the
671
- // number of times this method was called.
672
- atomic_inc_num_notify_waiters_calls(&self.state);
673
- return;
674
- }
675
-
676
- // Increment the number of times this method was called
677
- // and transition to empty.
678
- let new_state = set_state(inc_num_notify_waiters_calls(curr), EMPTY);
679
- self.state.store(new_state, SeqCst);
680
-
681
- // It is critical for `GuardedLinkedList` safety that the guard node is
682
- // pinned in memory and is not dropped until the guarded list is dropped.
683
- let guard = Waiter::new();
684
- pin!(guard);
685
-
686
- // We move all waiters to a secondary list. It uses a `GuardedLinkedList`
687
- // underneath to allow every waiter to safely remove itself from it.
688
- //
689
- // * This list will be still guarded by the `waiters` lock.
690
- // `NotifyWaitersList` wrapper makes sure we hold the lock to modify it.
691
- // * This wrapper will empty the list on drop. It is critical for safety
692
- // that we will not leave any list entry with a pointer to the local
693
- // guard node after this function returns / panics.
694
- let mut list = NotifyWaitersList::new(std::mem::take(&mut *waiters), guard.as_ref(), self);
695
-
696
- let mut wakers = WakeList::new();
697
- 'outer: loop {
698
- while wakers.can_push() {
699
- match list.pop_back_locked(&mut waiters) {
700
- Some(waiter) => {
701
- // Safety: we never make mutable references to waiters.
702
- let waiter = unsafe { waiter.as_ref() };
703
-
704
- // Safety: we hold the lock, so we can access the waker.
705
- if let Some(waker) =
706
- unsafe { waiter.waker.with_mut(|waker| (*waker).take()) }
707
- {
708
- wakers.push(waker);
709
- }
710
-
711
- // This waiter is unlinked and will not be shared ever again, release it.
712
- waiter.notification.store_release(Notification::All);
713
- }
714
- None => {
715
- break 'outer;
716
- }
717
- }
718
- }
719
-
720
- // Release the lock before notifying.
721
- drop(waiters);
722
-
723
- // One of the wakers may panic, but the remaining waiters will still
724
- // be unlinked from the list in `NotifyWaitersList` destructor.
725
- wakers.wake_all();
726
-
727
- // Acquire the lock again.
728
- waiters = self.waiters.lock();
729
- }
730
-
731
- // Release the lock before notifying
732
- drop(waiters);
733
-
734
- wakers.wake_all();
735
- }
736
- }
737
-
738
- impl Default for Notify {
739
- fn default() -> Notify {
740
- Notify::new()
741
- }
742
- }
743
-
744
- impl UnwindSafe for Notify {}
745
- impl RefUnwindSafe for Notify {}
746
-
747
- fn notify_locked(
748
- waiters: &mut WaitList,
749
- state: &AtomicUsize,
750
- curr: usize,
751
- strategy: NotifyOneStrategy,
752
- ) -> Option<Waker> {
753
- match get_state(curr) {
754
- EMPTY | NOTIFIED => {
755
- let res = state.compare_exchange(curr, set_state(curr, NOTIFIED), SeqCst, SeqCst);
756
-
757
- match res {
758
- Ok(_) => None,
759
- Err(actual) => {
760
- let actual_state = get_state(actual);
761
- assert!(actual_state == EMPTY || actual_state == NOTIFIED);
762
- state.store(set_state(actual, NOTIFIED), SeqCst);
763
- None
764
- }
765
- }
766
- }
767
- WAITING => {
768
- // At this point, it is guaranteed that the state will not
769
- // concurrently change as holding the lock is required to
770
- // transition **out** of `WAITING`.
771
- //
772
- // Get a pending waiter using one of the available dequeue strategies.
773
- let waiter = match strategy {
774
- NotifyOneStrategy::Fifo => waiters.pop_back().unwrap(),
775
- NotifyOneStrategy::Lifo => waiters.pop_front().unwrap(),
776
- };
777
-
778
- // Safety: we never make mutable references to waiters.
779
- let waiter = unsafe { waiter.as_ref() };
780
-
781
- // Safety: we hold the lock, so we can access the waker.
782
- let waker = unsafe { waiter.waker.with_mut(|waker| (*waker).take()) };
783
-
784
- // This waiter is unlinked and will not be shared ever again, release it.
785
- waiter
786
- .notification
787
- .store_release(Notification::One(strategy));
788
-
789
- if waiters.is_empty() {
790
- // As this the **final** waiter in the list, the state
791
- // must be transitioned to `EMPTY`. As transitioning
792
- // **from** `WAITING` requires the lock to be held, a
793
- // `store` is sufficient.
794
- state.store(set_state(curr, EMPTY), SeqCst);
795
- }
796
- waker
797
- }
798
- _ => unreachable!(),
799
- }
800
- }
801
-
802
- // ===== impl Notified =====
803
-
804
- impl Notified<'_> {
805
- /// Adds this future to the list of futures that are ready to receive
806
- /// wakeups from calls to [`notify_one`].
807
- ///
808
- /// Polling the future also adds it to the list, so this method should only
809
- /// be used if you want to add the future to the list before the first call
810
- /// to `poll`. (In fact, this method is equivalent to calling `poll` except
811
- /// that no `Waker` is registered.)
812
- ///
813
- /// This has no effect on notifications sent using [`notify_waiters`], which
814
- /// are received as long as they happen after the creation of the `Notified`
815
- /// regardless of whether `enable` or `poll` has been called.
816
- ///
817
- /// This method returns true if the `Notified` is ready. This happens in the
818
- /// following situations:
819
- ///
820
- /// 1. The `notify_waiters` method was called between the creation of the
821
- /// `Notified` and the call to this method.
822
- /// 2. This is the first call to `enable` or `poll` on this future, and the
823
- /// `Notify` was holding a permit from a previous call to `notify_one`.
824
- /// The call consumes the permit in that case.
825
- /// 3. The future has previously been enabled or polled, and it has since
826
- /// then been marked ready by either consuming a permit from the
827
- /// `Notify`, or by a call to `notify_one` or `notify_waiters` that
828
- /// removed it from the list of futures ready to receive wakeups.
829
- ///
830
- /// If this method returns true, any future calls to poll on the same future
831
- /// will immediately return `Poll::Ready`.
832
- ///
833
- /// # Examples
834
- ///
835
- /// Unbound multi-producer multi-consumer (mpmc) channel.
836
- ///
837
- /// The call to `enable` is important because otherwise if you have two
838
- /// calls to `recv` and two calls to `send` in parallel, the following could
839
- /// happen:
840
- ///
841
- /// 1. Both calls to `try_recv` return `None`.
842
- /// 2. Both new elements are added to the vector.
843
- /// 3. The `notify_one` method is called twice, adding only a single
844
- /// permit to the `Notify`.
845
- /// 4. Both calls to `recv` reach the `Notified` future. One of them
846
- /// consumes the permit, and the other sleeps forever.
847
- ///
848
- /// By adding the `Notified` futures to the list by calling `enable` before
849
- /// `try_recv`, the `notify_one` calls in step three would remove the
850
- /// futures from the list and mark them notified instead of adding a permit
851
- /// to the `Notify`. This ensures that both futures are woken.
852
- ///
853
- /// ```
854
- /// use tokio::sync::Notify;
855
- ///
856
- /// use std::collections::VecDeque;
857
- /// use std::sync::Mutex;
858
- ///
859
- /// struct Channel<T> {
860
- /// messages: Mutex<VecDeque<T>>,
861
- /// notify_on_sent: Notify,
862
- /// }
863
- ///
864
- /// impl<T> Channel<T> {
865
- /// pub fn send(&self, msg: T) {
866
- /// let mut locked_queue = self.messages.lock().unwrap();
867
- /// locked_queue.push_back(msg);
868
- /// drop(locked_queue);
869
- ///
870
- /// // Send a notification to one of the calls currently
871
- /// // waiting in a call to `recv`.
872
- /// self.notify_on_sent.notify_one();
873
- /// }
874
- ///
875
- /// pub fn try_recv(&self) -> Option<T> {
876
- /// let mut locked_queue = self.messages.lock().unwrap();
877
- /// locked_queue.pop_front()
878
- /// }
879
- ///
880
- /// pub async fn recv(&self) -> T {
881
- /// let future = self.notify_on_sent.notified();
882
- /// tokio::pin!(future);
883
- ///
884
- /// loop {
885
- /// // Make sure that no wakeup is lost if we get
886
- /// // `None` from `try_recv`.
887
- /// future.as_mut().enable();
888
- ///
889
- /// if let Some(msg) = self.try_recv() {
890
- /// return msg;
891
- /// }
892
- ///
893
- /// // Wait for a call to `notify_one`.
894
- /// //
895
- /// // This uses `.as_mut()` to avoid consuming the future,
896
- /// // which lets us call `Pin::set` below.
897
- /// future.as_mut().await;
898
- ///
899
- /// // Reset the future in case another call to
900
- /// // `try_recv` got the message before us.
901
- /// future.set(self.notify_on_sent.notified());
902
- /// }
903
- /// }
904
- /// }
905
- /// ```
906
- ///
907
- /// [`notify_one`]: Notify::notify_one()
908
- /// [`notify_waiters`]: Notify::notify_waiters()
909
- pub fn enable(self: Pin<&mut Self>) -> bool {
910
- self.poll_notified(None).is_ready()
911
- }
912
-
913
- /// A custom `project` implementation is used in place of `pin-project-lite`
914
- /// as a custom drop implementation is needed.
915
- fn project(self: Pin<&mut Self>) -> (&Notify, &mut State, &usize, &Waiter) {
916
- unsafe {
917
- // Safety: `notify`, `state` and `notify_waiters_calls` are `Unpin`.
918
-
919
- is_unpin::<&Notify>();
920
- is_unpin::<State>();
921
- is_unpin::<usize>();
922
-
923
- let me = self.get_unchecked_mut();
924
- (
925
- me.notify,
926
- &mut me.state,
927
- &me.notify_waiters_calls,
928
- &me.waiter,
929
- )
930
- }
931
- }
932
-
933
- fn poll_notified(self: Pin<&mut Self>, waker: Option<&Waker>) -> Poll<()> {
934
- let (notify, state, notify_waiters_calls, waiter) = self.project();
935
-
936
- 'outer_loop: loop {
937
- match *state {
938
- State::Init => {
939
- let curr = notify.state.load(SeqCst);
940
-
941
- // Optimistically try acquiring a pending notification
942
- let res = notify.state.compare_exchange(
943
- set_state(curr, NOTIFIED),
944
- set_state(curr, EMPTY),
945
- SeqCst,
946
- SeqCst,
947
- );
948
-
949
- if res.is_ok() {
950
- // Acquired the notification
951
- *state = State::Done;
952
- continue 'outer_loop;
953
- }
954
-
955
- // Clone the waker before locking, a waker clone can be
956
- // triggering arbitrary code.
957
- let waker = waker.cloned();
958
-
959
- // Acquire the lock and attempt to transition to the waiting
960
- // state.
961
- let mut waiters = notify.waiters.lock();
962
-
963
- // Reload the state with the lock held
964
- let mut curr = notify.state.load(SeqCst);
965
-
966
- // if notify_waiters has been called after the future
967
- // was created, then we are done
968
- if get_num_notify_waiters_calls(curr) != *notify_waiters_calls {
969
- *state = State::Done;
970
- continue 'outer_loop;
971
- }
972
-
973
- // Transition the state to WAITING.
974
- loop {
975
- match get_state(curr) {
976
- EMPTY => {
977
- // Transition to WAITING
978
- let res = notify.state.compare_exchange(
979
- set_state(curr, EMPTY),
980
- set_state(curr, WAITING),
981
- SeqCst,
982
- SeqCst,
983
- );
984
-
985
- if let Err(actual) = res {
986
- assert_eq!(get_state(actual), NOTIFIED);
987
- curr = actual;
988
- } else {
989
- break;
990
- }
991
- }
992
- WAITING => break,
993
- NOTIFIED => {
994
- // Try consuming the notification
995
- let res = notify.state.compare_exchange(
996
- set_state(curr, NOTIFIED),
997
- set_state(curr, EMPTY),
998
- SeqCst,
999
- SeqCst,
1000
- );
1001
-
1002
- match res {
1003
- Ok(_) => {
1004
- // Acquired the notification
1005
- *state = State::Done;
1006
- continue 'outer_loop;
1007
- }
1008
- Err(actual) => {
1009
- assert_eq!(get_state(actual), EMPTY);
1010
- curr = actual;
1011
- }
1012
- }
1013
- }
1014
- _ => unreachable!(),
1015
- }
1016
- }
1017
-
1018
- let mut old_waker = None;
1019
- if waker.is_some() {
1020
- // Safety: called while locked.
1021
- //
1022
- // The use of `old_waiter` here is not necessary, as the field is always
1023
- // None when we reach this line.
1024
- unsafe {
1025
- old_waker =
1026
- waiter.waker.with_mut(|v| std::mem::replace(&mut *v, waker));
1027
- }
1028
- }
1029
-
1030
- // Insert the waiter into the linked list
1031
- waiters.push_front(NonNull::from(waiter));
1032
-
1033
- *state = State::Waiting;
1034
-
1035
- drop(waiters);
1036
- drop(old_waker);
1037
-
1038
- return Poll::Pending;
1039
- }
1040
- State::Waiting => {
1041
- #[cfg(tokio_taskdump)]
1042
- if let Some(waker) = waker {
1043
- let mut ctx = Context::from_waker(waker);
1044
- ready!(crate::trace::trace_leaf(&mut ctx));
1045
- }
1046
-
1047
- if waiter.notification.load(Acquire).is_some() {
1048
- // Safety: waiter is already unlinked and will not be shared again,
1049
- // so we have an exclusive access to `waker`.
1050
- drop(unsafe { waiter.waker.with_mut(|waker| (*waker).take()) });
1051
-
1052
- waiter.notification.clear();
1053
- *state = State::Done;
1054
- return Poll::Ready(());
1055
- }
1056
-
1057
- // Our waiter was not notified, implying it is still stored in a waiter
1058
- // list (guarded by `notify.waiters`). In order to access the waker
1059
- // fields, we must acquire the lock.
1060
-
1061
- let mut old_waker = None;
1062
- let mut waiters = notify.waiters.lock();
1063
-
1064
- // We hold the lock and notifications are set only with the lock held,
1065
- // so this can be relaxed, because the happens-before relationship is
1066
- // established through the mutex.
1067
- if waiter.notification.load(Relaxed).is_some() {
1068
- // Safety: waiter is already unlinked and will not be shared again,
1069
- // so we have an exclusive access to `waker`.
1070
- old_waker = unsafe { waiter.waker.with_mut(|waker| (*waker).take()) };
1071
-
1072
- waiter.notification.clear();
1073
-
1074
- // Drop the old waker after releasing the lock.
1075
- drop(waiters);
1076
- drop(old_waker);
1077
-
1078
- *state = State::Done;
1079
- return Poll::Ready(());
1080
- }
1081
-
1082
- // Load the state with the lock held.
1083
- let curr = notify.state.load(SeqCst);
1084
-
1085
- if get_num_notify_waiters_calls(curr) != *notify_waiters_calls {
1086
- // Before we add a waiter to the list we check if these numbers are
1087
- // different while holding the lock. If these numbers are different now,
1088
- // it means that there is a call to `notify_waiters` in progress and this
1089
- // waiter must be contained by a guarded list used in `notify_waiters`.
1090
- // We can treat the waiter as notified and remove it from the list, as
1091
- // it would have been notified in the `notify_waiters` call anyways.
1092
-
1093
- // Safety: we hold the lock, so we can modify the waker.
1094
- old_waker = unsafe { waiter.waker.with_mut(|waker| (*waker).take()) };
1095
-
1096
- // Safety: we hold the lock, so we have an exclusive access to the list.
1097
- // The list is used in `notify_waiters`, so it must be guarded.
1098
- unsafe { waiters.remove(NonNull::from(waiter)) };
1099
-
1100
- *state = State::Done;
1101
- } else {
1102
- // Safety: we hold the lock, so we can modify the waker.
1103
- unsafe {
1104
- waiter.waker.with_mut(|v| {
1105
- if let Some(waker) = waker {
1106
- let should_update = match &*v {
1107
- Some(current_waker) => !current_waker.will_wake(waker),
1108
- None => true,
1109
- };
1110
- if should_update {
1111
- old_waker = std::mem::replace(&mut *v, Some(waker.clone()));
1112
- }
1113
- }
1114
- });
1115
- }
1116
-
1117
- // Drop the old waker after releasing the lock.
1118
- drop(waiters);
1119
- drop(old_waker);
1120
-
1121
- return Poll::Pending;
1122
- }
1123
-
1124
- // Explicit drop of the lock to indicate the scope that the
1125
- // lock is held. Because holding the lock is required to
1126
- // ensure safe access to fields not held within the lock, it
1127
- // is helpful to visualize the scope of the critical
1128
- // section.
1129
- drop(waiters);
1130
-
1131
- // Drop the old waker after releasing the lock.
1132
- drop(old_waker);
1133
- }
1134
- State::Done => {
1135
- #[cfg(tokio_taskdump)]
1136
- if let Some(waker) = waker {
1137
- let mut ctx = Context::from_waker(waker);
1138
- ready!(crate::trace::trace_leaf(&mut ctx));
1139
- }
1140
- return Poll::Ready(());
1141
- }
1142
- }
1143
- }
1144
- }
1145
- }
1146
-
1147
- impl Future for Notified<'_> {
1148
- type Output = ();
1149
-
1150
- fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<()> {
1151
- self.poll_notified(Some(cx.waker()))
1152
- }
1153
- }
1154
-
1155
- impl Drop for Notified<'_> {
1156
- fn drop(&mut self) {
1157
- // Safety: The type only transitions to a "Waiting" state when pinned.
1158
- let (notify, state, _, waiter) = unsafe { Pin::new_unchecked(self).project() };
1159
-
1160
- // This is where we ensure safety. The `Notified` value is being
1161
- // dropped, which means we must ensure that the waiter entry is no
1162
- // longer stored in the linked list.
1163
- if matches!(*state, State::Waiting) {
1164
- let mut waiters = notify.waiters.lock();
1165
- let mut notify_state = notify.state.load(SeqCst);
1166
-
1167
- // We hold the lock, so this field is not concurrently accessed by
1168
- // `notify_*` functions and we can use the relaxed ordering.
1169
- let notification = waiter.notification.load(Relaxed);
1170
-
1171
- // remove the entry from the list (if not already removed)
1172
- //
1173
- // Safety: we hold the lock, so we have an exclusive access to every list the
1174
- // waiter may be contained in. If the node is not contained in the `waiters`
1175
- // list, then it is contained by a guarded list used by `notify_waiters`.
1176
- unsafe { waiters.remove(NonNull::from(waiter)) };
1177
-
1178
- if waiters.is_empty() && get_state(notify_state) == WAITING {
1179
- notify_state = set_state(notify_state, EMPTY);
1180
- notify.state.store(notify_state, SeqCst);
1181
- }
1182
-
1183
- // See if the node was notified but not received. In this case, if
1184
- // the notification was triggered via `notify_one`, it must be sent
1185
- // to the next waiter.
1186
- if let Some(Notification::One(strategy)) = notification {
1187
- if let Some(waker) =
1188
- notify_locked(&mut waiters, &notify.state, notify_state, strategy)
1189
- {
1190
- drop(waiters);
1191
- waker.wake();
1192
- }
1193
- }
1194
- }
1195
- }
1196
- }
1197
-
1198
- /// # Safety
1199
- ///
1200
- /// `Waiter` is forced to be !Unpin.
1201
- unsafe impl linked_list::Link for Waiter {
1202
- type Handle = NonNull<Waiter>;
1203
- type Target = Waiter;
1204
-
1205
- fn as_raw(handle: &NonNull<Waiter>) -> NonNull<Waiter> {
1206
- *handle
1207
- }
1208
-
1209
- unsafe fn from_raw(ptr: NonNull<Waiter>) -> NonNull<Waiter> {
1210
- ptr
1211
- }
1212
-
1213
- unsafe fn pointers(target: NonNull<Waiter>) -> NonNull<linked_list::Pointers<Waiter>> {
1214
- Waiter::addr_of_pointers(target)
1215
- }
1216
- }
1217
-
1218
- fn is_unpin<T: Unpin>() {}