wasmtime 17.0.0 → 18.0.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2565) hide show
  1. checksums.yaml +4 -4
  2. data/Cargo.lock +114 -142
  3. data/ext/Cargo.toml +8 -9
  4. data/ext/cargo-vendor/cranelift-bforest-0.105.3/.cargo-checksum.json +1 -0
  5. data/ext/cargo-vendor/cranelift-bforest-0.105.3/Cargo.toml +40 -0
  6. data/ext/cargo-vendor/cranelift-codegen-0.105.3/.cargo-checksum.json +1 -0
  7. data/ext/cargo-vendor/cranelift-codegen-0.105.3/Cargo.toml +175 -0
  8. data/ext/cargo-vendor/cranelift-codegen-0.105.3/build.rs +395 -0
  9. data/ext/cargo-vendor/cranelift-codegen-0.105.3/src/egraph/cost.rs +213 -0
  10. data/ext/cargo-vendor/cranelift-codegen-0.105.3/src/egraph/domtree.rs +74 -0
  11. data/ext/cargo-vendor/cranelift-codegen-0.105.3/src/egraph/elaborate.rs +823 -0
  12. data/ext/cargo-vendor/cranelift-codegen-0.105.3/src/egraph.rs +705 -0
  13. data/ext/cargo-vendor/cranelift-codegen-0.105.3/src/isa/x64/inst/emit.rs +4395 -0
  14. data/ext/cargo-vendor/cranelift-codegen-0.105.3/src/isa/x64/inst/emit_tests.rs +5525 -0
  15. data/ext/cargo-vendor/cranelift-codegen-0.105.3/src/isa/x64/inst.isle +5215 -0
  16. data/ext/cargo-vendor/cranelift-codegen-0.105.3/src/isa/x64/lower.isle +4742 -0
  17. data/ext/cargo-vendor/cranelift-codegen-0.105.3/src/isa/x64/mod.rs +233 -0
  18. data/ext/cargo-vendor/cranelift-codegen-0.105.3/src/lib.rs +106 -0
  19. data/ext/cargo-vendor/cranelift-codegen-0.105.3/src/machinst/reg.rs +562 -0
  20. data/ext/cargo-vendor/cranelift-codegen-0.105.3/src/opts/README.md +81 -0
  21. data/ext/cargo-vendor/cranelift-codegen-0.105.3/src/opts/cprop.isle +246 -0
  22. data/ext/cargo-vendor/cranelift-codegen-0.105.3/src/opts/extends.isle +91 -0
  23. data/ext/cargo-vendor/cranelift-codegen-0.105.3/src/prelude_opt.isle +122 -0
  24. data/ext/cargo-vendor/cranelift-codegen-0.105.3/src/verifier/mod.rs +2033 -0
  25. data/ext/cargo-vendor/cranelift-codegen-meta-0.105.3/.cargo-checksum.json +1 -0
  26. data/ext/cargo-vendor/cranelift-codegen-meta-0.105.3/Cargo.toml +35 -0
  27. data/ext/cargo-vendor/cranelift-codegen-shared-0.105.3/.cargo-checksum.json +1 -0
  28. data/ext/cargo-vendor/cranelift-codegen-shared-0.105.3/Cargo.toml +22 -0
  29. data/ext/cargo-vendor/cranelift-control-0.105.3/.cargo-checksum.json +1 -0
  30. data/ext/cargo-vendor/cranelift-control-0.105.3/Cargo.toml +30 -0
  31. data/ext/cargo-vendor/cranelift-entity-0.105.3/.cargo-checksum.json +1 -0
  32. data/ext/cargo-vendor/cranelift-entity-0.105.3/Cargo.toml +50 -0
  33. data/ext/cargo-vendor/cranelift-frontend-0.105.3/.cargo-checksum.json +1 -0
  34. data/ext/cargo-vendor/cranelift-frontend-0.105.3/Cargo.toml +68 -0
  35. data/ext/cargo-vendor/cranelift-isle-0.105.3/.cargo-checksum.json +1 -0
  36. data/ext/cargo-vendor/cranelift-isle-0.105.3/Cargo.toml +46 -0
  37. data/ext/cargo-vendor/cranelift-native-0.105.3/.cargo-checksum.json +1 -0
  38. data/ext/cargo-vendor/cranelift-native-0.105.3/Cargo.toml +43 -0
  39. data/ext/cargo-vendor/cranelift-native-0.105.3/src/lib.rs +188 -0
  40. data/ext/cargo-vendor/cranelift-wasm-0.105.3/.cargo-checksum.json +1 -0
  41. data/ext/cargo-vendor/cranelift-wasm-0.105.3/Cargo.toml +106 -0
  42. data/ext/cargo-vendor/cranelift-wasm-0.105.3/src/code_translator.rs +3681 -0
  43. data/ext/cargo-vendor/cranelift-wasm-0.105.3/src/environ/dummy.rs +953 -0
  44. data/ext/cargo-vendor/cranelift-wasm-0.105.3/src/environ/spec.rs +953 -0
  45. data/ext/cargo-vendor/cranelift-wasm-0.105.3/src/sections_translator.rs +409 -0
  46. data/ext/cargo-vendor/cranelift-wasm-0.105.3/src/translation_utils.rs +91 -0
  47. data/ext/cargo-vendor/cranelift-wasm-0.105.3/wasmtests/icall-simd.wat +7 -0
  48. data/ext/cargo-vendor/cranelift-wasm-0.105.3/wasmtests/icall.wat +7 -0
  49. data/ext/cargo-vendor/cranelift-wasm-0.105.3/wasmtests/unreachable_code.wat +77 -0
  50. data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.19/.cargo-checksum.json +1 -0
  51. data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.19/Cargo.toml +49 -0
  52. data/ext/cargo-vendor/rb-sys-0.9.89/.cargo-checksum.json +1 -0
  53. data/ext/cargo-vendor/rb-sys-0.9.89/Cargo.toml +54 -0
  54. data/ext/cargo-vendor/rb-sys-0.9.89/src/lib.rs +37 -0
  55. data/ext/cargo-vendor/rb-sys-0.9.89/src/symbol.rs +31 -0
  56. data/ext/cargo-vendor/rb-sys-build-0.9.89/.cargo-checksum.json +1 -0
  57. data/ext/cargo-vendor/rb-sys-build-0.9.89/Cargo.toml +62 -0
  58. data/ext/cargo-vendor/rb-sys-build-0.9.89/src/bindings.rs +250 -0
  59. data/ext/cargo-vendor/rb-sys-build-0.9.89/src/rb_config.rs +810 -0
  60. data/ext/cargo-vendor/tokio-1.36.0/.cargo-checksum.json +1 -0
  61. data/ext/cargo-vendor/tokio-1.36.0/CHANGELOG.md +3250 -0
  62. data/ext/cargo-vendor/tokio-1.36.0/Cargo.toml +237 -0
  63. data/ext/cargo-vendor/tokio-1.36.0/README.md +249 -0
  64. data/ext/cargo-vendor/tokio-1.36.0/src/doc/os.rs +68 -0
  65. data/ext/cargo-vendor/tokio-1.36.0/src/fs/open_options/mock_open_options.rs +39 -0
  66. data/ext/cargo-vendor/tokio-1.36.0/src/future/mod.rs +32 -0
  67. data/ext/cargo-vendor/tokio-1.36.0/src/io/async_fd.rs +1259 -0
  68. data/ext/cargo-vendor/tokio-1.36.0/src/io/bsd/poll_aio.rs +197 -0
  69. data/ext/cargo-vendor/tokio-1.36.0/src/io/interest.rs +345 -0
  70. data/ext/cargo-vendor/tokio-1.36.0/src/io/join.rs +117 -0
  71. data/ext/cargo-vendor/tokio-1.36.0/src/io/mod.rs +292 -0
  72. data/ext/cargo-vendor/tokio-1.36.0/src/io/poll_evented.rs +277 -0
  73. data/ext/cargo-vendor/tokio-1.36.0/src/io/stdio_common.rs +221 -0
  74. data/ext/cargo-vendor/tokio-1.36.0/src/io/util/async_buf_read_ext.rs +351 -0
  75. data/ext/cargo-vendor/tokio-1.36.0/src/io/util/buf_reader.rs +311 -0
  76. data/ext/cargo-vendor/tokio-1.36.0/src/io/util/buf_writer.rs +310 -0
  77. data/ext/cargo-vendor/tokio-1.36.0/src/io/util/chain.rs +144 -0
  78. data/ext/cargo-vendor/tokio-1.36.0/src/io/util/copy.rs +290 -0
  79. data/ext/cargo-vendor/tokio-1.36.0/src/io/util/empty.rs +150 -0
  80. data/ext/cargo-vendor/tokio-1.36.0/src/io/util/flush.rs +47 -0
  81. data/ext/cargo-vendor/tokio-1.36.0/src/io/util/mod.rs +111 -0
  82. data/ext/cargo-vendor/tokio-1.36.0/src/io/util/read_exact.rs +69 -0
  83. data/ext/cargo-vendor/tokio-1.36.0/src/io/util/read_line.rs +119 -0
  84. data/ext/cargo-vendor/tokio-1.36.0/src/io/util/repeat.rs +75 -0
  85. data/ext/cargo-vendor/tokio-1.36.0/src/io/util/shutdown.rs +46 -0
  86. data/ext/cargo-vendor/tokio-1.36.0/src/io/util/sink.rs +94 -0
  87. data/ext/cargo-vendor/tokio-1.36.0/src/lib.rs +694 -0
  88. data/ext/cargo-vendor/tokio-1.36.0/src/loom/std/atomic_u64.rs +19 -0
  89. data/ext/cargo-vendor/tokio-1.36.0/src/macros/cfg.rs +587 -0
  90. data/ext/cargo-vendor/tokio-1.36.0/src/macros/try_join.rs +218 -0
  91. data/ext/cargo-vendor/tokio-1.36.0/src/net/mod.rs +57 -0
  92. data/ext/cargo-vendor/tokio-1.36.0/src/net/tcp/listener.rs +451 -0
  93. data/ext/cargo-vendor/tokio-1.36.0/src/net/tcp/socket.rs +854 -0
  94. data/ext/cargo-vendor/tokio-1.36.0/src/net/tcp/stream.rs +1424 -0
  95. data/ext/cargo-vendor/tokio-1.36.0/src/net/udp.rs +2046 -0
  96. data/ext/cargo-vendor/tokio-1.36.0/src/net/unix/datagram/socket.rs +1593 -0
  97. data/ext/cargo-vendor/tokio-1.36.0/src/net/unix/listener.rs +221 -0
  98. data/ext/cargo-vendor/tokio-1.36.0/src/net/unix/mod.rs +39 -0
  99. data/ext/cargo-vendor/tokio-1.36.0/src/net/unix/pipe.rs +1442 -0
  100. data/ext/cargo-vendor/tokio-1.36.0/src/net/unix/socket.rs +271 -0
  101. data/ext/cargo-vendor/tokio-1.36.0/src/net/unix/stream.rs +1062 -0
  102. data/ext/cargo-vendor/tokio-1.36.0/src/net/windows/named_pipe.rs +2690 -0
  103. data/ext/cargo-vendor/tokio-1.36.0/src/process/mod.rs +1678 -0
  104. data/ext/cargo-vendor/tokio-1.36.0/src/process/unix/mod.rs +375 -0
  105. data/ext/cargo-vendor/tokio-1.36.0/src/process/unix/pidfd_reaper.rs +317 -0
  106. data/ext/cargo-vendor/tokio-1.36.0/src/runtime/blocking/pool.rs +603 -0
  107. data/ext/cargo-vendor/tokio-1.36.0/src/runtime/builder.rs +1335 -0
  108. data/ext/cargo-vendor/tokio-1.36.0/src/runtime/context.rs +193 -0
  109. data/ext/cargo-vendor/tokio-1.36.0/src/runtime/handle.rs +632 -0
  110. data/ext/cargo-vendor/tokio-1.36.0/src/runtime/io/driver.rs +273 -0
  111. data/ext/cargo-vendor/tokio-1.36.0/src/runtime/io/scheduled_io.rs +598 -0
  112. data/ext/cargo-vendor/tokio-1.36.0/src/runtime/park.rs +339 -0
  113. data/ext/cargo-vendor/tokio-1.36.0/src/runtime/scheduler/current_thread/mod.rs +758 -0
  114. data/ext/cargo-vendor/tokio-1.36.0/src/runtime/scheduler/multi_thread/park.rs +232 -0
  115. data/ext/cargo-vendor/tokio-1.36.0/src/runtime/scheduler/multi_thread/queue.rs +608 -0
  116. data/ext/cargo-vendor/tokio-1.36.0/src/runtime/scheduler/multi_thread/stats.rs +140 -0
  117. data/ext/cargo-vendor/tokio-1.36.0/src/runtime/scheduler/multi_thread/worker.rs +1234 -0
  118. data/ext/cargo-vendor/tokio-1.36.0/src/runtime/scheduler/multi_thread_alt/queue.rs +595 -0
  119. data/ext/cargo-vendor/tokio-1.36.0/src/runtime/scheduler/multi_thread_alt/stats.rs +171 -0
  120. data/ext/cargo-vendor/tokio-1.36.0/src/runtime/scheduler/multi_thread_alt/worker.rs +1597 -0
  121. data/ext/cargo-vendor/tokio-1.36.0/src/runtime/task/core.rs +494 -0
  122. data/ext/cargo-vendor/tokio-1.36.0/src/runtime/task/harness.rs +517 -0
  123. data/ext/cargo-vendor/tokio-1.36.0/src/runtime/task/join.rs +370 -0
  124. data/ext/cargo-vendor/tokio-1.36.0/src/runtime/task/list.rs +338 -0
  125. data/ext/cargo-vendor/tokio-1.36.0/src/runtime/task/mod.rs +526 -0
  126. data/ext/cargo-vendor/tokio-1.36.0/src/runtime/task/state.rs +616 -0
  127. data/ext/cargo-vendor/tokio-1.36.0/src/runtime/task/trace/mod.rs +358 -0
  128. data/ext/cargo-vendor/tokio-1.36.0/src/runtime/tests/loom_local.rs +47 -0
  129. data/ext/cargo-vendor/tokio-1.36.0/src/runtime/tests/task_combinations.rs +488 -0
  130. data/ext/cargo-vendor/tokio-1.36.0/src/runtime/time/entry.rs +646 -0
  131. data/ext/cargo-vendor/tokio-1.36.0/src/runtime/time/source.rs +39 -0
  132. data/ext/cargo-vendor/tokio-1.36.0/src/runtime/time/wheel/level.rs +274 -0
  133. data/ext/cargo-vendor/tokio-1.36.0/src/signal/ctrl_c.rs +62 -0
  134. data/ext/cargo-vendor/tokio-1.36.0/src/signal/mod.rs +98 -0
  135. data/ext/cargo-vendor/tokio-1.36.0/src/signal/registry.rs +281 -0
  136. data/ext/cargo-vendor/tokio-1.36.0/src/signal/unix.rs +530 -0
  137. data/ext/cargo-vendor/tokio-1.36.0/src/signal/windows.rs +524 -0
  138. data/ext/cargo-vendor/tokio-1.36.0/src/sync/batch_semaphore.rs +752 -0
  139. data/ext/cargo-vendor/tokio-1.36.0/src/sync/broadcast.rs +1542 -0
  140. data/ext/cargo-vendor/tokio-1.36.0/src/sync/mpsc/bounded.rs +1692 -0
  141. data/ext/cargo-vendor/tokio-1.36.0/src/sync/mpsc/error.rs +149 -0
  142. data/ext/cargo-vendor/tokio-1.36.0/src/sync/mpsc/mod.rs +124 -0
  143. data/ext/cargo-vendor/tokio-1.36.0/src/sync/mpsc/unbounded.rs +603 -0
  144. data/ext/cargo-vendor/tokio-1.36.0/src/sync/mutex.rs +1395 -0
  145. data/ext/cargo-vendor/tokio-1.36.0/src/sync/oneshot.rs +1390 -0
  146. data/ext/cargo-vendor/tokio-1.36.0/src/sync/rwlock.rs +1119 -0
  147. data/ext/cargo-vendor/tokio-1.36.0/src/sync/semaphore.rs +977 -0
  148. data/ext/cargo-vendor/tokio-1.36.0/src/sync/watch.rs +1399 -0
  149. data/ext/cargo-vendor/tokio-1.36.0/src/task/join_set.rs +637 -0
  150. data/ext/cargo-vendor/tokio-1.36.0/src/task/local.rs +1233 -0
  151. data/ext/cargo-vendor/tokio-1.36.0/src/task/mod.rs +373 -0
  152. data/ext/cargo-vendor/tokio-1.36.0/src/util/idle_notified_set.rs +509 -0
  153. data/ext/cargo-vendor/tokio-1.36.0/src/util/rand.rs +95 -0
  154. data/ext/cargo-vendor/tokio-1.36.0/src/util/sharded_list.rs +149 -0
  155. data/ext/cargo-vendor/tokio-1.36.0/tests/io_async_fd.rs +836 -0
  156. data/ext/cargo-vendor/tokio-1.36.0/tests/io_copy.rs +102 -0
  157. data/ext/cargo-vendor/tokio-1.36.0/tests/io_copy_bidirectional.rs +165 -0
  158. data/ext/cargo-vendor/tokio-1.36.0/tests/io_join.rs +83 -0
  159. data/ext/cargo-vendor/tokio-1.36.0/tests/io_panic.rs +177 -0
  160. data/ext/cargo-vendor/tokio-1.36.0/tests/io_poll_aio.rs +338 -0
  161. data/ext/cargo-vendor/tokio-1.36.0/tests/io_repeat.rs +18 -0
  162. data/ext/cargo-vendor/tokio-1.36.0/tests/io_sink.rs +44 -0
  163. data/ext/cargo-vendor/tokio-1.36.0/tests/join_handle_panic.rs +21 -0
  164. data/ext/cargo-vendor/tokio-1.36.0/tests/macros_test.rs +94 -0
  165. data/ext/cargo-vendor/tokio-1.36.0/tests/macros_try_join.rs +185 -0
  166. data/ext/cargo-vendor/tokio-1.36.0/tests/net_named_pipe.rs +399 -0
  167. data/ext/cargo-vendor/tokio-1.36.0/tests/net_panic.rs +189 -0
  168. data/ext/cargo-vendor/tokio-1.36.0/tests/net_unix_pipe.rs +534 -0
  169. data/ext/cargo-vendor/tokio-1.36.0/tests/process_change_of_runtime.rs +34 -0
  170. data/ext/cargo-vendor/tokio-1.36.0/tests/process_issue_2174.rs +46 -0
  171. data/ext/cargo-vendor/tokio-1.36.0/tests/rt_basic.rs +458 -0
  172. data/ext/cargo-vendor/tokio-1.36.0/tests/rt_handle.rs +94 -0
  173. data/ext/cargo-vendor/tokio-1.36.0/tests/rt_panic.rs +78 -0
  174. data/ext/cargo-vendor/tokio-1.36.0/tests/rt_time_start_paused.rs +14 -0
  175. data/ext/cargo-vendor/tokio-1.36.0/tests/signal_panic.rs +30 -0
  176. data/ext/cargo-vendor/tokio-1.36.0/tests/sync_mpsc.rs +1020 -0
  177. data/ext/cargo-vendor/tokio-1.36.0/tests/sync_panic.rs +198 -0
  178. data/ext/cargo-vendor/tokio-1.36.0/tests/sync_watch.rs +334 -0
  179. data/ext/cargo-vendor/tokio-1.36.0/tests/task_id.rs +302 -0
  180. data/ext/cargo-vendor/tokio-1.36.0/tests/task_join_set.rs +306 -0
  181. data/ext/cargo-vendor/tokio-1.36.0/tests/task_local.rs +119 -0
  182. data/ext/cargo-vendor/tokio-1.36.0/tests/task_panic.rs +123 -0
  183. data/ext/cargo-vendor/tokio-1.36.0/tests/tcp_into_split.rs +131 -0
  184. data/ext/cargo-vendor/tokio-1.36.0/tests/time_panic.rs +94 -0
  185. data/ext/cargo-vendor/tokio-1.36.0/tests/time_pause.rs +332 -0
  186. data/ext/cargo-vendor/tokio-1.36.0/tests/uds_socket.rs +118 -0
  187. data/ext/cargo-vendor/wasi-common-18.0.3/.cargo-checksum.json +1 -0
  188. data/ext/cargo-vendor/wasi-common-18.0.3/Cargo.toml +223 -0
  189. data/ext/cargo-vendor/wasi-common-18.0.3/src/lib.rs +193 -0
  190. data/ext/cargo-vendor/wasi-common-18.0.3/src/sync/clocks.rs +41 -0
  191. data/ext/cargo-vendor/wasi-common-18.0.3/src/sync/dir.rs +462 -0
  192. data/ext/cargo-vendor/wasi-common-18.0.3/src/sync/file.rs +248 -0
  193. data/ext/cargo-vendor/wasi-common-18.0.3/src/sync/mod.rs +140 -0
  194. data/ext/cargo-vendor/wasi-common-18.0.3/src/sync/net.rs +400 -0
  195. data/ext/cargo-vendor/wasi-common-18.0.3/src/sync/sched/unix.rs +82 -0
  196. data/ext/cargo-vendor/wasi-common-18.0.3/src/sync/sched/windows.rs +221 -0
  197. data/ext/cargo-vendor/wasi-common-18.0.3/src/sync/sched.rs +40 -0
  198. data/ext/cargo-vendor/wasi-common-18.0.3/src/sync/stdio.rs +197 -0
  199. data/ext/cargo-vendor/wasi-common-18.0.3/src/tokio/dir.rs +221 -0
  200. data/ext/cargo-vendor/wasi-common-18.0.3/src/tokio/file.rs +244 -0
  201. data/ext/cargo-vendor/wasi-common-18.0.3/src/tokio/mod.rs +137 -0
  202. data/ext/cargo-vendor/wasi-common-18.0.3/src/tokio/net.rs +6 -0
  203. data/ext/cargo-vendor/wasi-common-18.0.3/src/tokio/sched/unix.rs +96 -0
  204. data/ext/cargo-vendor/wasi-common-18.0.3/src/tokio/sched/windows.rs +15 -0
  205. data/ext/cargo-vendor/wasi-common-18.0.3/src/tokio/sched.rs +35 -0
  206. data/ext/cargo-vendor/wasi-common-18.0.3/src/tokio/stdio.rs +1 -0
  207. data/ext/cargo-vendor/wasi-common-18.0.3/tests/all/async_.rs +289 -0
  208. data/ext/cargo-vendor/wasi-common-18.0.3/tests/all/main.rs +21 -0
  209. data/ext/cargo-vendor/wasi-common-18.0.3/tests/all/sync.rs +275 -0
  210. data/ext/cargo-vendor/wasm-encoder-0.201.0/.cargo-checksum.json +1 -0
  211. data/ext/cargo-vendor/wasm-encoder-0.201.0/Cargo.toml +43 -0
  212. data/ext/cargo-vendor/wasm-encoder-0.201.0/src/component/names.rs +149 -0
  213. data/ext/cargo-vendor/wasm-encoder-0.201.0/src/component/types.rs +792 -0
  214. data/ext/cargo-vendor/wasm-encoder-0.201.0/src/core/code.rs +3444 -0
  215. data/ext/cargo-vendor/wasm-encoder-0.201.0/src/core/names.rs +298 -0
  216. data/ext/cargo-vendor/wasm-encoder-0.201.0/src/core/types.rs +673 -0
  217. data/ext/cargo-vendor/wasm-encoder-0.41.2/.cargo-checksum.json +1 -0
  218. data/ext/cargo-vendor/wasm-encoder-0.41.2/Cargo.toml +43 -0
  219. data/ext/cargo-vendor/wasm-encoder-0.41.2/README.md +80 -0
  220. data/ext/cargo-vendor/wasm-encoder-0.41.2/src/component/aliases.rs +160 -0
  221. data/ext/cargo-vendor/wasm-encoder-0.41.2/src/component/builder.rs +455 -0
  222. data/ext/cargo-vendor/wasm-encoder-0.41.2/src/component/canonicals.rs +159 -0
  223. data/ext/cargo-vendor/wasm-encoder-0.41.2/src/component/components.rs +29 -0
  224. data/ext/cargo-vendor/wasm-encoder-0.41.2/src/component/exports.rs +124 -0
  225. data/ext/cargo-vendor/wasm-encoder-0.41.2/src/component/imports.rs +175 -0
  226. data/ext/cargo-vendor/wasm-encoder-0.41.2/src/component/instances.rs +200 -0
  227. data/ext/cargo-vendor/wasm-encoder-0.41.2/src/component/modules.rs +29 -0
  228. data/ext/cargo-vendor/wasm-encoder-0.41.2/src/component/start.rs +52 -0
  229. data/ext/cargo-vendor/wasm-encoder-0.41.2/src/component/types.rs +792 -0
  230. data/ext/cargo-vendor/wasm-encoder-0.41.2/src/component.rs +168 -0
  231. data/ext/cargo-vendor/wasm-encoder-0.41.2/src/core/code.rs +3430 -0
  232. data/ext/cargo-vendor/wasm-encoder-0.41.2/src/core/custom.rs +73 -0
  233. data/ext/cargo-vendor/wasm-encoder-0.41.2/src/core/data.rs +185 -0
  234. data/ext/cargo-vendor/wasm-encoder-0.41.2/src/core/dump.rs +627 -0
  235. data/ext/cargo-vendor/wasm-encoder-0.41.2/src/core/elements.rs +220 -0
  236. data/ext/cargo-vendor/wasm-encoder-0.41.2/src/core/exports.rs +98 -0
  237. data/ext/cargo-vendor/wasm-encoder-0.41.2/src/core/functions.rs +63 -0
  238. data/ext/cargo-vendor/wasm-encoder-0.41.2/src/core/globals.rs +101 -0
  239. data/ext/cargo-vendor/wasm-encoder-0.41.2/src/core/imports.rs +156 -0
  240. data/ext/cargo-vendor/wasm-encoder-0.41.2/src/core/linking.rs +263 -0
  241. data/ext/cargo-vendor/wasm-encoder-0.41.2/src/core/memories.rs +111 -0
  242. data/ext/cargo-vendor/wasm-encoder-0.41.2/src/core/names.rs +298 -0
  243. data/ext/cargo-vendor/wasm-encoder-0.41.2/src/core/producers.rs +180 -0
  244. data/ext/cargo-vendor/wasm-encoder-0.41.2/src/core/start.rs +39 -0
  245. data/ext/cargo-vendor/wasm-encoder-0.41.2/src/core/tables.rs +116 -0
  246. data/ext/cargo-vendor/wasm-encoder-0.41.2/src/core/tags.rs +104 -0
  247. data/ext/cargo-vendor/wasm-encoder-0.41.2/src/core/types.rs +673 -0
  248. data/ext/cargo-vendor/wasm-encoder-0.41.2/src/core.rs +168 -0
  249. data/ext/cargo-vendor/wasm-encoder-0.41.2/src/lib.rs +215 -0
  250. data/ext/cargo-vendor/wasm-encoder-0.41.2/src/raw.rs +30 -0
  251. data/ext/cargo-vendor/wasmparser-0.121.2/.cargo-checksum.json +1 -0
  252. data/ext/cargo-vendor/wasmparser-0.121.2/Cargo.lock +633 -0
  253. data/ext/cargo-vendor/wasmparser-0.121.2/Cargo.toml +69 -0
  254. data/ext/cargo-vendor/wasmparser-0.121.2/README.md +28 -0
  255. data/ext/cargo-vendor/wasmparser-0.121.2/benches/benchmark.rs +349 -0
  256. data/ext/cargo-vendor/wasmparser-0.121.2/src/binary_reader.rs +1850 -0
  257. data/ext/cargo-vendor/wasmparser-0.121.2/src/lib.rs +766 -0
  258. data/ext/cargo-vendor/wasmparser-0.121.2/src/limits.rs +64 -0
  259. data/ext/cargo-vendor/wasmparser-0.121.2/src/readers/core/branch_hinting.rs +59 -0
  260. data/ext/cargo-vendor/wasmparser-0.121.2/src/readers/core/dylink0.rs +109 -0
  261. data/ext/cargo-vendor/wasmparser-0.121.2/src/readers/core/linking.rs +449 -0
  262. data/ext/cargo-vendor/wasmparser-0.121.2/src/readers/core/names.rs +156 -0
  263. data/ext/cargo-vendor/wasmparser-0.121.2/src/readers/core/operators.rs +411 -0
  264. data/ext/cargo-vendor/wasmparser-0.121.2/src/readers/core/types.rs +1680 -0
  265. data/ext/cargo-vendor/wasmparser-0.121.2/src/readers/core.rs +41 -0
  266. data/ext/cargo-vendor/wasmparser-0.121.2/src/resources.rs +235 -0
  267. data/ext/cargo-vendor/wasmparser-0.121.2/src/validator/component.rs +3238 -0
  268. data/ext/cargo-vendor/wasmparser-0.121.2/src/validator/core/canonical.rs +233 -0
  269. data/ext/cargo-vendor/wasmparser-0.121.2/src/validator/core.rs +1400 -0
  270. data/ext/cargo-vendor/wasmparser-0.121.2/src/validator/func.rs +338 -0
  271. data/ext/cargo-vendor/wasmparser-0.121.2/src/validator/names.rs +929 -0
  272. data/ext/cargo-vendor/wasmparser-0.121.2/src/validator/operators.rs +4074 -0
  273. data/ext/cargo-vendor/wasmparser-0.121.2/src/validator/types.rs +4449 -0
  274. data/ext/cargo-vendor/wasmparser-0.121.2/src/validator.rs +1619 -0
  275. data/ext/cargo-vendor/wasmprinter-0.2.80/.cargo-checksum.json +1 -0
  276. data/ext/cargo-vendor/wasmprinter-0.2.80/Cargo.toml +45 -0
  277. data/ext/cargo-vendor/wasmprinter-0.2.80/src/lib.rs +3139 -0
  278. data/ext/cargo-vendor/wasmprinter-0.2.80/src/operator.rs +1110 -0
  279. data/ext/cargo-vendor/wasmprinter-0.2.80/tests/all.rs +278 -0
  280. data/ext/cargo-vendor/wasmtime-18.0.3/.cargo-checksum.json +1 -0
  281. data/ext/cargo-vendor/wasmtime-18.0.3/Cargo.toml +249 -0
  282. data/ext/cargo-vendor/wasmtime-18.0.3/src/compile.rs +835 -0
  283. data/ext/cargo-vendor/wasmtime-18.0.3/src/config.rs +2513 -0
  284. data/ext/cargo-vendor/wasmtime-18.0.3/src/engine/serialization.rs +778 -0
  285. data/ext/cargo-vendor/wasmtime-18.0.3/src/engine.rs +728 -0
  286. data/ext/cargo-vendor/wasmtime-18.0.3/src/lib.rs +444 -0
  287. data/ext/cargo-vendor/wasmtime-18.0.3/src/profiling_agent/jitdump.rs +66 -0
  288. data/ext/cargo-vendor/wasmtime-18.0.3/src/profiling_agent/perfmap.rs +47 -0
  289. data/ext/cargo-vendor/wasmtime-18.0.3/src/profiling_agent/vtune.rs +80 -0
  290. data/ext/cargo-vendor/wasmtime-18.0.3/src/profiling_agent.rs +105 -0
  291. data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/code.rs +102 -0
  292. data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/code_memory.rs +335 -0
  293. data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/component/component.rs +458 -0
  294. data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/component/func/host.rs +456 -0
  295. data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/component/func.rs +721 -0
  296. data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/component/instance.rs +815 -0
  297. data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/component/linker.rs +600 -0
  298. data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/component/resource_table.rs +350 -0
  299. data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/component/types.rs +928 -0
  300. data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/component/values.rs +1274 -0
  301. data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/debug.rs +165 -0
  302. data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/func/typed.rs +638 -0
  303. data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/func.rs +2391 -0
  304. data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/instance.rs +985 -0
  305. data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/instantiate.rs +433 -0
  306. data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/linker.rs +1479 -0
  307. data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/memory.rs +998 -0
  308. data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/module/registry.rs +360 -0
  309. data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/module.rs +1335 -0
  310. data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/profiling.rs +218 -0
  311. data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/store.rs +2389 -0
  312. data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/trampoline/func.rs +135 -0
  313. data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/trampoline/memory.rs +269 -0
  314. data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/trampoline/table.rs +20 -0
  315. data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/trampoline.rs +77 -0
  316. data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/trap.rs +644 -0
  317. data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/type_registry.rs +236 -0
  318. data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/types/matching.rs +312 -0
  319. data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/types.rs +581 -0
  320. data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime.rs +109 -0
  321. data/ext/cargo-vendor/wasmtime-asm-macros-18.0.3/.cargo-checksum.json +1 -0
  322. data/ext/cargo-vendor/wasmtime-asm-macros-18.0.3/Cargo.toml +22 -0
  323. data/ext/cargo-vendor/wasmtime-cache-18.0.3/.cargo-checksum.json +1 -0
  324. data/ext/cargo-vendor/wasmtime-cache-18.0.3/Cargo.toml +81 -0
  325. data/ext/cargo-vendor/wasmtime-component-macro-18.0.3/.cargo-checksum.json +1 -0
  326. data/ext/cargo-vendor/wasmtime-component-macro-18.0.3/Cargo.toml +67 -0
  327. data/ext/cargo-vendor/wasmtime-component-macro-18.0.3/build.rs +5 -0
  328. data/ext/cargo-vendor/wasmtime-component-macro-18.0.3/src/bindgen.rs +396 -0
  329. data/ext/cargo-vendor/wasmtime-component-macro-18.0.3/tests/codegen/wat.wit +10 -0
  330. data/ext/cargo-vendor/wasmtime-component-util-18.0.3/.cargo-checksum.json +1 -0
  331. data/ext/cargo-vendor/wasmtime-component-util-18.0.3/Cargo.toml +25 -0
  332. data/ext/cargo-vendor/wasmtime-cranelift-18.0.3/.cargo-checksum.json +1 -0
  333. data/ext/cargo-vendor/wasmtime-cranelift-18.0.3/Cargo.toml +113 -0
  334. data/ext/cargo-vendor/wasmtime-cranelift-18.0.3/src/builder.rs +127 -0
  335. data/ext/cargo-vendor/wasmtime-cranelift-18.0.3/src/compiler/component.rs +960 -0
  336. data/ext/cargo-vendor/wasmtime-cranelift-18.0.3/src/compiler.rs +1317 -0
  337. data/ext/cargo-vendor/wasmtime-cranelift-18.0.3/src/debug/transform/simulate.rs +411 -0
  338. data/ext/cargo-vendor/wasmtime-cranelift-18.0.3/src/func_environ.rs +2756 -0
  339. data/ext/cargo-vendor/wasmtime-cranelift-18.0.3/src/lib.rs +186 -0
  340. data/ext/cargo-vendor/wasmtime-cranelift-shared-18.0.3/.cargo-checksum.json +1 -0
  341. data/ext/cargo-vendor/wasmtime-cranelift-shared-18.0.3/Cargo.toml +71 -0
  342. data/ext/cargo-vendor/wasmtime-cranelift-shared-18.0.3/src/isa_builder.rs +104 -0
  343. data/ext/cargo-vendor/wasmtime-environ-18.0.3/.cargo-checksum.json +1 -0
  344. data/ext/cargo-vendor/wasmtime-environ-18.0.3/Cargo.lock +761 -0
  345. data/ext/cargo-vendor/wasmtime-environ-18.0.3/Cargo.toml +140 -0
  346. data/ext/cargo-vendor/wasmtime-environ-18.0.3/src/component/artifacts.rs +45 -0
  347. data/ext/cargo-vendor/wasmtime-environ-18.0.3/src/component/dfg.rs +690 -0
  348. data/ext/cargo-vendor/wasmtime-environ-18.0.3/src/component/info.rs +594 -0
  349. data/ext/cargo-vendor/wasmtime-environ-18.0.3/src/component/translate/inline.rs +1334 -0
  350. data/ext/cargo-vendor/wasmtime-environ-18.0.3/src/component/translate.rs +953 -0
  351. data/ext/cargo-vendor/wasmtime-environ-18.0.3/src/component/types.rs +1933 -0
  352. data/ext/cargo-vendor/wasmtime-environ-18.0.3/src/component.rs +97 -0
  353. data/ext/cargo-vendor/wasmtime-environ-18.0.3/src/lib.rs +66 -0
  354. data/ext/cargo-vendor/wasmtime-environ-18.0.3/src/module.rs +1075 -0
  355. data/ext/cargo-vendor/wasmtime-environ-18.0.3/src/module_artifacts.rs +378 -0
  356. data/ext/cargo-vendor/wasmtime-environ-18.0.3/src/module_environ.rs +894 -0
  357. data/ext/cargo-vendor/wasmtime-environ-18.0.3/src/module_types.rs +120 -0
  358. data/ext/cargo-vendor/wasmtime-environ-18.0.3/src/tunables.rs +140 -0
  359. data/ext/cargo-vendor/wasmtime-environ-18.0.3/src/vmoffsets.rs +919 -0
  360. data/ext/cargo-vendor/wasmtime-fiber-18.0.3/.cargo-checksum.json +1 -0
  361. data/ext/cargo-vendor/wasmtime-fiber-18.0.3/Cargo.toml +63 -0
  362. data/ext/cargo-vendor/wasmtime-jit-debug-18.0.3/.cargo-checksum.json +1 -0
  363. data/ext/cargo-vendor/wasmtime-jit-debug-18.0.3/Cargo.toml +67 -0
  364. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-18.0.3/.cargo-checksum.json +1 -0
  365. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-18.0.3/Cargo.toml +46 -0
  366. data/ext/cargo-vendor/wasmtime-runtime-18.0.3/.cargo-checksum.json +1 -0
  367. data/ext/cargo-vendor/wasmtime-runtime-18.0.3/Cargo.toml +139 -0
  368. data/ext/cargo-vendor/wasmtime-runtime-18.0.3/src/component.rs +855 -0
  369. data/ext/cargo-vendor/wasmtime-runtime-18.0.3/src/instance/allocator/pooling/memory_pool.rs +997 -0
  370. data/ext/cargo-vendor/wasmtime-runtime-18.0.3/src/instance/allocator/pooling.rs +658 -0
  371. data/ext/cargo-vendor/wasmtime-runtime-18.0.3/src/instance/allocator.rs +712 -0
  372. data/ext/cargo-vendor/wasmtime-runtime-18.0.3/src/instance.rs +1485 -0
  373. data/ext/cargo-vendor/wasmtime-runtime-18.0.3/src/lib.rs +264 -0
  374. data/ext/cargo-vendor/wasmtime-runtime-18.0.3/src/mpk/enabled.rs +208 -0
  375. data/ext/cargo-vendor/wasmtime-runtime-18.0.3/src/mpk/pkru.rs +104 -0
  376. data/ext/cargo-vendor/wasmtime-runtime-18.0.3/src/sys/unix/signals.rs +402 -0
  377. data/ext/cargo-vendor/wasmtime-runtime-18.0.3/src/vmcontext.rs +1202 -0
  378. data/ext/cargo-vendor/wasmtime-types-18.0.3/.cargo-checksum.json +1 -0
  379. data/ext/cargo-vendor/wasmtime-types-18.0.3/Cargo.toml +36 -0
  380. data/ext/cargo-vendor/wasmtime-types-18.0.3/src/lib.rs +509 -0
  381. data/ext/cargo-vendor/wasmtime-versioned-export-macros-18.0.3/.cargo-checksum.json +1 -0
  382. data/ext/cargo-vendor/wasmtime-versioned-export-macros-18.0.3/Cargo.toml +32 -0
  383. data/ext/cargo-vendor/wasmtime-wasi-18.0.3/.cargo-checksum.json +1 -0
  384. data/ext/cargo-vendor/wasmtime-wasi-18.0.3/Cargo.toml +254 -0
  385. data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/lib.rs +103 -0
  386. data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/clocks/host.rs +73 -0
  387. data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/clocks.rs +12 -0
  388. data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/ctx.rs +337 -0
  389. data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/error.rs +111 -0
  390. data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/filesystem.rs +369 -0
  391. data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/host/clocks.rs +103 -0
  392. data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/host/filesystem.rs +1081 -0
  393. data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/host/instance_network.rs +15 -0
  394. data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/host/io.rs +366 -0
  395. data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/host/network.rs +625 -0
  396. data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/host/random.rs +36 -0
  397. data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/host/tcp.rs +605 -0
  398. data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/host/tcp_create_socket.rs +15 -0
  399. data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/host/udp.rs +530 -0
  400. data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/host/udp_create_socket.rs +15 -0
  401. data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/ip_name_lookup.rs +125 -0
  402. data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/pipe.rs +826 -0
  403. data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/poll.rs +175 -0
  404. data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/preview0.rs +870 -0
  405. data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/preview1.rs +2361 -0
  406. data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/random.rs +58 -0
  407. data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/stdio.rs +259 -0
  408. data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/write_stream.rs +203 -0
  409. data/ext/cargo-vendor/wasmtime-wasi-18.0.3/tests/all/api.rs +211 -0
  410. data/ext/cargo-vendor/wasmtime-wasi-18.0.3/tests/all/main.rs +106 -0
  411. data/ext/cargo-vendor/wasmtime-wasi-18.0.3/wit/deps/io/poll.wit +41 -0
  412. data/ext/cargo-vendor/wasmtime-wasi-18.0.3/wit/deps/io/streams.wit +262 -0
  413. data/ext/cargo-vendor/wasmtime-wasi-18.0.3/wit/deps/sockets/tcp.wit +353 -0
  414. data/ext/cargo-vendor/wasmtime-wasi-18.0.3/wit/deps/sockets/udp.wit +266 -0
  415. data/ext/cargo-vendor/wasmtime-winch-18.0.3/.cargo-checksum.json +1 -0
  416. data/ext/cargo-vendor/wasmtime-winch-18.0.3/Cargo.toml +77 -0
  417. data/ext/cargo-vendor/wasmtime-winch-18.0.3/src/builder.rs +65 -0
  418. data/ext/cargo-vendor/wasmtime-winch-18.0.3/src/compiler.rs +283 -0
  419. data/ext/cargo-vendor/wasmtime-wit-bindgen-18.0.3/.cargo-checksum.json +1 -0
  420. data/ext/cargo-vendor/wasmtime-wit-bindgen-18.0.3/Cargo.toml +41 -0
  421. data/ext/cargo-vendor/wasmtime-wit-bindgen-18.0.3/src/lib.rs +2095 -0
  422. data/ext/cargo-vendor/wasmtime-wmemcheck-18.0.3/.cargo-checksum.json +1 -0
  423. data/ext/cargo-vendor/wasmtime-wmemcheck-18.0.3/Cargo.toml +29 -0
  424. data/ext/cargo-vendor/wast-201.0.0/.cargo-checksum.json +1 -0
  425. data/ext/cargo-vendor/wast-201.0.0/Cargo.toml +59 -0
  426. data/ext/cargo-vendor/wast-201.0.0/src/component/component.rs +321 -0
  427. data/ext/cargo-vendor/wast-201.0.0/src/core/binary.rs +1365 -0
  428. data/ext/cargo-vendor/wast-201.0.0/src/core/custom.rs +393 -0
  429. data/ext/cargo-vendor/wast-201.0.0/src/core/expr.rs +1993 -0
  430. data/ext/cargo-vendor/wast-201.0.0/src/core/memory.rs +281 -0
  431. data/ext/cargo-vendor/wast-201.0.0/src/core/module.rs +218 -0
  432. data/ext/cargo-vendor/wast-201.0.0/src/core/resolve/deinline_import_export.rs +233 -0
  433. data/ext/cargo-vendor/wast-201.0.0/src/core/resolve/names.rs +763 -0
  434. data/ext/cargo-vendor/wast-201.0.0/src/core/table.rs +289 -0
  435. data/ext/cargo-vendor/wast-201.0.0/src/core/types.rs +861 -0
  436. data/ext/cargo-vendor/wast-201.0.0/src/lexer.rs +1442 -0
  437. data/ext/cargo-vendor/wast-201.0.0/src/lib.rs +542 -0
  438. data/ext/cargo-vendor/wast-201.0.0/src/names.rs +89 -0
  439. data/ext/cargo-vendor/wast-201.0.0/src/parser.rs +1374 -0
  440. data/ext/cargo-vendor/wast-201.0.0/src/token.rs +718 -0
  441. data/ext/cargo-vendor/wast-201.0.0/src/wat.rs +63 -0
  442. data/ext/cargo-vendor/wat-1.201.0/.cargo-checksum.json +1 -0
  443. data/ext/cargo-vendor/wat-1.201.0/Cargo.toml +33 -0
  444. data/ext/cargo-vendor/wat-1.201.0/src/lib.rs +401 -0
  445. data/ext/cargo-vendor/wiggle-18.0.3/.cargo-checksum.json +1 -0
  446. data/ext/cargo-vendor/wiggle-18.0.3/Cargo.toml +122 -0
  447. data/ext/cargo-vendor/wiggle-18.0.3/src/lib.rs +1199 -0
  448. data/ext/cargo-vendor/wiggle-generate-18.0.3/.cargo-checksum.json +1 -0
  449. data/ext/cargo-vendor/wiggle-generate-18.0.3/Cargo.toml +65 -0
  450. data/ext/cargo-vendor/wiggle-macro-18.0.3/.cargo-checksum.json +1 -0
  451. data/ext/cargo-vendor/wiggle-macro-18.0.3/Cargo.toml +55 -0
  452. data/ext/cargo-vendor/winch-codegen-0.16.3/.cargo-checksum.json +1 -0
  453. data/ext/cargo-vendor/winch-codegen-0.16.3/Cargo.toml +77 -0
  454. data/ext/cargo-vendor/winch-codegen-0.16.3/src/abi/local.rs +81 -0
  455. data/ext/cargo-vendor/winch-codegen-0.16.3/src/abi/mod.rs +645 -0
  456. data/ext/cargo-vendor/winch-codegen-0.16.3/src/codegen/builtin.rs +268 -0
  457. data/ext/cargo-vendor/winch-codegen-0.16.3/src/codegen/call.rs +361 -0
  458. data/ext/cargo-vendor/winch-codegen-0.16.3/src/codegen/context.rs +530 -0
  459. data/ext/cargo-vendor/winch-codegen-0.16.3/src/codegen/control.rs +972 -0
  460. data/ext/cargo-vendor/winch-codegen-0.16.3/src/codegen/env.rs +257 -0
  461. data/ext/cargo-vendor/winch-codegen-0.16.3/src/codegen/mod.rs +441 -0
  462. data/ext/cargo-vendor/winch-codegen-0.16.3/src/frame/mod.rs +221 -0
  463. data/ext/cargo-vendor/winch-codegen-0.16.3/src/isa/aarch64/abi.rs +313 -0
  464. data/ext/cargo-vendor/winch-codegen-0.16.3/src/isa/aarch64/masm.rs +519 -0
  465. data/ext/cargo-vendor/winch-codegen-0.16.3/src/isa/aarch64/mod.rs +145 -0
  466. data/ext/cargo-vendor/winch-codegen-0.16.3/src/isa/mod.rs +232 -0
  467. data/ext/cargo-vendor/winch-codegen-0.16.3/src/isa/reg.rs +86 -0
  468. data/ext/cargo-vendor/winch-codegen-0.16.3/src/isa/x64/abi.rs +531 -0
  469. data/ext/cargo-vendor/winch-codegen-0.16.3/src/isa/x64/asm.rs +1277 -0
  470. data/ext/cargo-vendor/winch-codegen-0.16.3/src/isa/x64/masm.rs +1168 -0
  471. data/ext/cargo-vendor/winch-codegen-0.16.3/src/isa/x64/mod.rs +184 -0
  472. data/ext/cargo-vendor/winch-codegen-0.16.3/src/masm.rs +776 -0
  473. data/ext/cargo-vendor/winch-codegen-0.16.3/src/stack.rs +439 -0
  474. data/ext/cargo-vendor/winch-codegen-0.16.3/src/trampoline.rs +733 -0
  475. data/ext/cargo-vendor/winch-codegen-0.16.3/src/visitor.rs +1848 -0
  476. data/ext/cargo-vendor/wit-parser-0.13.2/.cargo-checksum.json +1 -0
  477. data/ext/cargo-vendor/wit-parser-0.13.2/Cargo.toml +71 -0
  478. data/ext/cargo-vendor/wit-parser-0.13.2/src/ast/lex.rs +748 -0
  479. data/ext/cargo-vendor/wit-parser-0.13.2/src/ast/resolve.rs +1428 -0
  480. data/ext/cargo-vendor/wit-parser-0.13.2/src/ast.rs +1349 -0
  481. data/ext/cargo-vendor/wit-parser-0.13.2/src/resolve.rs +2104 -0
  482. data/ext/cargo-vendor/wit-parser-0.13.2/tests/ui/comments.wit.json +49 -0
  483. data/ext/cargo-vendor/wit-parser-0.13.2/tests/ui/import-export-overlap1.wit.json +39 -0
  484. data/ext/cargo-vendor/wit-parser-0.13.2/tests/ui/import-export-overlap2.wit.json +41 -0
  485. data/ext/cargo-vendor/wit-parser-0.13.2/tests/ui/same-name-import-export.wit +6 -0
  486. data/ext/cargo-vendor/wit-parser-0.13.2/tests/ui/same-name-import-export.wit.json +47 -0
  487. data/ext/cargo-vendor/wit-parser-0.13.2/tests/ui/types.wit +60 -0
  488. data/ext/cargo-vendor/wit-parser-0.13.2/tests/ui/types.wit.json +774 -0
  489. data/ext/cargo-vendor/wit-parser-0.13.2/tests/ui/union-fuzz-2.wit.json +72 -0
  490. data/ext/cargo-vendor/wit-parser-0.13.2/tests/ui/wasi.wit.json +539 -0
  491. data/ext/src/ruby_api/config/tracked_memory_creator.rs +1 -1
  492. data/ext/src/ruby_api/store.rs +1 -1
  493. data/ext/src/ruby_api/wasi_ctx.rs +1 -1
  494. data/ext/src/ruby_api/wasi_ctx_builder.rs +2 -2
  495. data/lib/wasmtime/version.rb +1 -1
  496. metadata +2127 -2071
  497. data/ext/cargo-vendor/cranelift-bforest-0.104.0/.cargo-checksum.json +0 -1
  498. data/ext/cargo-vendor/cranelift-bforest-0.104.0/Cargo.toml +0 -40
  499. data/ext/cargo-vendor/cranelift-codegen-0.104.0/.cargo-checksum.json +0 -1
  500. data/ext/cargo-vendor/cranelift-codegen-0.104.0/Cargo.toml +0 -175
  501. data/ext/cargo-vendor/cranelift-codegen-0.104.0/build.rs +0 -392
  502. data/ext/cargo-vendor/cranelift-codegen-0.104.0/src/egraph/cost.rs +0 -171
  503. data/ext/cargo-vendor/cranelift-codegen-0.104.0/src/egraph/domtree.rs +0 -69
  504. data/ext/cargo-vendor/cranelift-codegen-0.104.0/src/egraph/elaborate.rs +0 -750
  505. data/ext/cargo-vendor/cranelift-codegen-0.104.0/src/egraph.rs +0 -703
  506. data/ext/cargo-vendor/cranelift-codegen-0.104.0/src/isa/x64/inst/emit.rs +0 -4410
  507. data/ext/cargo-vendor/cranelift-codegen-0.104.0/src/isa/x64/inst/emit_tests.rs +0 -5525
  508. data/ext/cargo-vendor/cranelift-codegen-0.104.0/src/isa/x64/inst.isle +0 -5202
  509. data/ext/cargo-vendor/cranelift-codegen-0.104.0/src/isa/x64/lower.isle +0 -4744
  510. data/ext/cargo-vendor/cranelift-codegen-0.104.0/src/isa/x64/mod.rs +0 -223
  511. data/ext/cargo-vendor/cranelift-codegen-0.104.0/src/lib.rs +0 -106
  512. data/ext/cargo-vendor/cranelift-codegen-0.104.0/src/machinst/reg.rs +0 -561
  513. data/ext/cargo-vendor/cranelift-codegen-0.104.0/src/opts/README.md +0 -5
  514. data/ext/cargo-vendor/cranelift-codegen-0.104.0/src/opts/cprop.isle +0 -248
  515. data/ext/cargo-vendor/cranelift-codegen-0.104.0/src/opts/extends.isle +0 -116
  516. data/ext/cargo-vendor/cranelift-codegen-0.104.0/src/prelude_opt.isle +0 -134
  517. data/ext/cargo-vendor/cranelift-codegen-0.104.0/src/verifier/mod.rs +0 -2041
  518. data/ext/cargo-vendor/cranelift-codegen-meta-0.104.0/.cargo-checksum.json +0 -1
  519. data/ext/cargo-vendor/cranelift-codegen-meta-0.104.0/Cargo.toml +0 -35
  520. data/ext/cargo-vendor/cranelift-codegen-shared-0.104.0/.cargo-checksum.json +0 -1
  521. data/ext/cargo-vendor/cranelift-codegen-shared-0.104.0/Cargo.toml +0 -22
  522. data/ext/cargo-vendor/cranelift-control-0.104.0/.cargo-checksum.json +0 -1
  523. data/ext/cargo-vendor/cranelift-control-0.104.0/Cargo.toml +0 -30
  524. data/ext/cargo-vendor/cranelift-entity-0.104.0/.cargo-checksum.json +0 -1
  525. data/ext/cargo-vendor/cranelift-entity-0.104.0/Cargo.toml +0 -50
  526. data/ext/cargo-vendor/cranelift-frontend-0.104.0/.cargo-checksum.json +0 -1
  527. data/ext/cargo-vendor/cranelift-frontend-0.104.0/Cargo.toml +0 -68
  528. data/ext/cargo-vendor/cranelift-isle-0.104.0/.cargo-checksum.json +0 -1
  529. data/ext/cargo-vendor/cranelift-isle-0.104.0/Cargo.toml +0 -46
  530. data/ext/cargo-vendor/cranelift-native-0.104.0/.cargo-checksum.json +0 -1
  531. data/ext/cargo-vendor/cranelift-native-0.104.0/Cargo.toml +0 -43
  532. data/ext/cargo-vendor/cranelift-native-0.104.0/src/lib.rs +0 -184
  533. data/ext/cargo-vendor/cranelift-wasm-0.104.0/.cargo-checksum.json +0 -1
  534. data/ext/cargo-vendor/cranelift-wasm-0.104.0/Cargo.toml +0 -106
  535. data/ext/cargo-vendor/cranelift-wasm-0.104.0/src/code_translator.rs +0 -3646
  536. data/ext/cargo-vendor/cranelift-wasm-0.104.0/src/environ/dummy.rs +0 -953
  537. data/ext/cargo-vendor/cranelift-wasm-0.104.0/src/environ/spec.rs +0 -952
  538. data/ext/cargo-vendor/cranelift-wasm-0.104.0/src/sections_translator.rs +0 -408
  539. data/ext/cargo-vendor/cranelift-wasm-0.104.0/src/translation_utils.rs +0 -89
  540. data/ext/cargo-vendor/cranelift-wasm-0.104.0/wasmtests/icall-simd.wat +0 -7
  541. data/ext/cargo-vendor/cranelift-wasm-0.104.0/wasmtests/icall.wat +0 -7
  542. data/ext/cargo-vendor/cranelift-wasm-0.104.0/wasmtests/unreachable_code.wat +0 -77
  543. data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.18/.cargo-checksum.json +0 -1
  544. data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.18/Cargo.toml +0 -49
  545. data/ext/cargo-vendor/rb-sys-0.9.86/.cargo-checksum.json +0 -1
  546. data/ext/cargo-vendor/rb-sys-0.9.86/Cargo.toml +0 -54
  547. data/ext/cargo-vendor/rb-sys-0.9.86/src/lib.rs +0 -37
  548. data/ext/cargo-vendor/rb-sys-build-0.9.86/.cargo-checksum.json +0 -1
  549. data/ext/cargo-vendor/rb-sys-build-0.9.86/Cargo.toml +0 -62
  550. data/ext/cargo-vendor/rb-sys-build-0.9.86/src/bindings.rs +0 -250
  551. data/ext/cargo-vendor/rb-sys-build-0.9.86/src/rb_config.rs +0 -807
  552. data/ext/cargo-vendor/tokio-1.35.1/.cargo-checksum.json +0 -1
  553. data/ext/cargo-vendor/tokio-1.35.1/CHANGELOG.md +0 -3191
  554. data/ext/cargo-vendor/tokio-1.35.1/Cargo.toml +0 -230
  555. data/ext/cargo-vendor/tokio-1.35.1/README.md +0 -249
  556. data/ext/cargo-vendor/tokio-1.35.1/external-types.toml +0 -11
  557. data/ext/cargo-vendor/tokio-1.35.1/src/doc/os.rs +0 -68
  558. data/ext/cargo-vendor/tokio-1.35.1/src/fs/open_options/mock_open_options.rs +0 -39
  559. data/ext/cargo-vendor/tokio-1.35.1/src/future/mod.rs +0 -31
  560. data/ext/cargo-vendor/tokio-1.35.1/src/io/async_fd.rs +0 -1243
  561. data/ext/cargo-vendor/tokio-1.35.1/src/io/bsd/poll_aio.rs +0 -197
  562. data/ext/cargo-vendor/tokio-1.35.1/src/io/interest.rs +0 -345
  563. data/ext/cargo-vendor/tokio-1.35.1/src/io/mod.rs +0 -290
  564. data/ext/cargo-vendor/tokio-1.35.1/src/io/poll_evented.rs +0 -258
  565. data/ext/cargo-vendor/tokio-1.35.1/src/io/stdio_common.rs +0 -221
  566. data/ext/cargo-vendor/tokio-1.35.1/src/io/util/async_buf_read_ext.rs +0 -351
  567. data/ext/cargo-vendor/tokio-1.35.1/src/io/util/buf_reader.rs +0 -311
  568. data/ext/cargo-vendor/tokio-1.35.1/src/io/util/buf_writer.rs +0 -310
  569. data/ext/cargo-vendor/tokio-1.35.1/src/io/util/chain.rs +0 -144
  570. data/ext/cargo-vendor/tokio-1.35.1/src/io/util/copy.rs +0 -219
  571. data/ext/cargo-vendor/tokio-1.35.1/src/io/util/empty.rs +0 -102
  572. data/ext/cargo-vendor/tokio-1.35.1/src/io/util/flush.rs +0 -46
  573. data/ext/cargo-vendor/tokio-1.35.1/src/io/util/mod.rs +0 -97
  574. data/ext/cargo-vendor/tokio-1.35.1/src/io/util/read_exact.rs +0 -69
  575. data/ext/cargo-vendor/tokio-1.35.1/src/io/util/read_line.rs +0 -119
  576. data/ext/cargo-vendor/tokio-1.35.1/src/io/util/repeat.rs +0 -72
  577. data/ext/cargo-vendor/tokio-1.35.1/src/io/util/shutdown.rs +0 -46
  578. data/ext/cargo-vendor/tokio-1.35.1/src/io/util/sink.rs +0 -87
  579. data/ext/cargo-vendor/tokio-1.35.1/src/lib.rs +0 -695
  580. data/ext/cargo-vendor/tokio-1.35.1/src/loom/std/atomic_u64.rs +0 -19
  581. data/ext/cargo-vendor/tokio-1.35.1/src/macros/cfg.rs +0 -575
  582. data/ext/cargo-vendor/tokio-1.35.1/src/macros/try_join.rs +0 -218
  583. data/ext/cargo-vendor/tokio-1.35.1/src/net/mod.rs +0 -56
  584. data/ext/cargo-vendor/tokio-1.35.1/src/net/tcp/listener.rs +0 -451
  585. data/ext/cargo-vendor/tokio-1.35.1/src/net/tcp/socket.rs +0 -846
  586. data/ext/cargo-vendor/tokio-1.35.1/src/net/tcp/stream.rs +0 -1424
  587. data/ext/cargo-vendor/tokio-1.35.1/src/net/udp.rs +0 -2046
  588. data/ext/cargo-vendor/tokio-1.35.1/src/net/unix/datagram/socket.rs +0 -1583
  589. data/ext/cargo-vendor/tokio-1.35.1/src/net/unix/listener.rs +0 -216
  590. data/ext/cargo-vendor/tokio-1.35.1/src/net/unix/mod.rs +0 -37
  591. data/ext/cargo-vendor/tokio-1.35.1/src/net/unix/pipe.rs +0 -1217
  592. data/ext/cargo-vendor/tokio-1.35.1/src/net/unix/stream.rs +0 -1044
  593. data/ext/cargo-vendor/tokio-1.35.1/src/net/windows/named_pipe.rs +0 -2690
  594. data/ext/cargo-vendor/tokio-1.35.1/src/process/mod.rs +0 -1678
  595. data/ext/cargo-vendor/tokio-1.35.1/src/process/unix/mod.rs +0 -344
  596. data/ext/cargo-vendor/tokio-1.35.1/src/runtime/blocking/pool.rs +0 -603
  597. data/ext/cargo-vendor/tokio-1.35.1/src/runtime/builder.rs +0 -1335
  598. data/ext/cargo-vendor/tokio-1.35.1/src/runtime/context.rs +0 -193
  599. data/ext/cargo-vendor/tokio-1.35.1/src/runtime/handle.rs +0 -632
  600. data/ext/cargo-vendor/tokio-1.35.1/src/runtime/io/driver.rs +0 -273
  601. data/ext/cargo-vendor/tokio-1.35.1/src/runtime/io/scheduled_io.rs +0 -598
  602. data/ext/cargo-vendor/tokio-1.35.1/src/runtime/park.rs +0 -340
  603. data/ext/cargo-vendor/tokio-1.35.1/src/runtime/scheduler/current_thread/mod.rs +0 -764
  604. data/ext/cargo-vendor/tokio-1.35.1/src/runtime/scheduler/multi_thread/park.rs +0 -232
  605. data/ext/cargo-vendor/tokio-1.35.1/src/runtime/scheduler/multi_thread/queue.rs +0 -608
  606. data/ext/cargo-vendor/tokio-1.35.1/src/runtime/scheduler/multi_thread/stats.rs +0 -140
  607. data/ext/cargo-vendor/tokio-1.35.1/src/runtime/scheduler/multi_thread/worker.rs +0 -1234
  608. data/ext/cargo-vendor/tokio-1.35.1/src/runtime/scheduler/multi_thread_alt/queue.rs +0 -595
  609. data/ext/cargo-vendor/tokio-1.35.1/src/runtime/scheduler/multi_thread_alt/stats.rs +0 -171
  610. data/ext/cargo-vendor/tokio-1.35.1/src/runtime/scheduler/multi_thread_alt/worker.rs +0 -1597
  611. data/ext/cargo-vendor/tokio-1.35.1/src/runtime/task/core.rs +0 -494
  612. data/ext/cargo-vendor/tokio-1.35.1/src/runtime/task/harness.rs +0 -517
  613. data/ext/cargo-vendor/tokio-1.35.1/src/runtime/task/join.rs +0 -370
  614. data/ext/cargo-vendor/tokio-1.35.1/src/runtime/task/list.rs +0 -338
  615. data/ext/cargo-vendor/tokio-1.35.1/src/runtime/task/mod.rs +0 -526
  616. data/ext/cargo-vendor/tokio-1.35.1/src/runtime/task/state.rs +0 -619
  617. data/ext/cargo-vendor/tokio-1.35.1/src/runtime/task/trace/mod.rs +0 -358
  618. data/ext/cargo-vendor/tokio-1.35.1/src/runtime/tests/loom_local.rs +0 -47
  619. data/ext/cargo-vendor/tokio-1.35.1/src/runtime/tests/task_combinations.rs +0 -488
  620. data/ext/cargo-vendor/tokio-1.35.1/src/runtime/time/entry.rs +0 -646
  621. data/ext/cargo-vendor/tokio-1.35.1/src/runtime/time/source.rs +0 -39
  622. data/ext/cargo-vendor/tokio-1.35.1/src/runtime/time/wheel/level.rs +0 -274
  623. data/ext/cargo-vendor/tokio-1.35.1/src/signal/ctrl_c.rs +0 -62
  624. data/ext/cargo-vendor/tokio-1.35.1/src/signal/mod.rs +0 -98
  625. data/ext/cargo-vendor/tokio-1.35.1/src/signal/registry.rs +0 -283
  626. data/ext/cargo-vendor/tokio-1.35.1/src/signal/unix.rs +0 -530
  627. data/ext/cargo-vendor/tokio-1.35.1/src/signal/windows.rs +0 -524
  628. data/ext/cargo-vendor/tokio-1.35.1/src/sync/batch_semaphore.rs +0 -752
  629. data/ext/cargo-vendor/tokio-1.35.1/src/sync/broadcast.rs +0 -1515
  630. data/ext/cargo-vendor/tokio-1.35.1/src/sync/mpsc/bounded.rs +0 -1399
  631. data/ext/cargo-vendor/tokio-1.35.1/src/sync/mpsc/error.rs +0 -149
  632. data/ext/cargo-vendor/tokio-1.35.1/src/sync/mpsc/mod.rs +0 -122
  633. data/ext/cargo-vendor/tokio-1.35.1/src/sync/mpsc/unbounded.rs +0 -526
  634. data/ext/cargo-vendor/tokio-1.35.1/src/sync/mutex.rs +0 -1391
  635. data/ext/cargo-vendor/tokio-1.35.1/src/sync/oneshot.rs +0 -1390
  636. data/ext/cargo-vendor/tokio-1.35.1/src/sync/rwlock.rs +0 -1119
  637. data/ext/cargo-vendor/tokio-1.35.1/src/sync/semaphore.rs +0 -977
  638. data/ext/cargo-vendor/tokio-1.35.1/src/sync/watch.rs +0 -1388
  639. data/ext/cargo-vendor/tokio-1.35.1/src/task/join_set.rs +0 -584
  640. data/ext/cargo-vendor/tokio-1.35.1/src/task/local.rs +0 -1233
  641. data/ext/cargo-vendor/tokio-1.35.1/src/task/mod.rs +0 -373
  642. data/ext/cargo-vendor/tokio-1.35.1/src/util/idle_notified_set.rs +0 -481
  643. data/ext/cargo-vendor/tokio-1.35.1/src/util/rand.rs +0 -95
  644. data/ext/cargo-vendor/tokio-1.35.1/src/util/sharded_list.rs +0 -149
  645. data/ext/cargo-vendor/tokio-1.35.1/tests/io_async_fd.rs +0 -836
  646. data/ext/cargo-vendor/tokio-1.35.1/tests/io_copy.rs +0 -87
  647. data/ext/cargo-vendor/tokio-1.35.1/tests/io_copy_bidirectional.rs +0 -140
  648. data/ext/cargo-vendor/tokio-1.35.1/tests/io_panic.rs +0 -181
  649. data/ext/cargo-vendor/tokio-1.35.1/tests/io_poll_aio.rs +0 -375
  650. data/ext/cargo-vendor/tokio-1.35.1/tests/join_handle_panic.rs +0 -21
  651. data/ext/cargo-vendor/tokio-1.35.1/tests/macros_test.rs +0 -88
  652. data/ext/cargo-vendor/tokio-1.35.1/tests/macros_try_join.rs +0 -190
  653. data/ext/cargo-vendor/tokio-1.35.1/tests/net_named_pipe.rs +0 -399
  654. data/ext/cargo-vendor/tokio-1.35.1/tests/net_panic.rs +0 -192
  655. data/ext/cargo-vendor/tokio-1.35.1/tests/net_unix_pipe.rs +0 -429
  656. data/ext/cargo-vendor/tokio-1.35.1/tests/process_issue_2174.rs +0 -45
  657. data/ext/cargo-vendor/tokio-1.35.1/tests/rt_basic.rs +0 -448
  658. data/ext/cargo-vendor/tokio-1.35.1/tests/rt_handle.rs +0 -94
  659. data/ext/cargo-vendor/tokio-1.35.1/tests/rt_panic.rs +0 -81
  660. data/ext/cargo-vendor/tokio-1.35.1/tests/rt_time_start_paused.rs +0 -14
  661. data/ext/cargo-vendor/tokio-1.35.1/tests/signal_panic.rs +0 -29
  662. data/ext/cargo-vendor/tokio-1.35.1/tests/sync_mpsc.rs +0 -841
  663. data/ext/cargo-vendor/tokio-1.35.1/tests/sync_panic.rs +0 -209
  664. data/ext/cargo-vendor/tokio-1.35.1/tests/sync_watch.rs +0 -301
  665. data/ext/cargo-vendor/tokio-1.35.1/tests/task_id.rs +0 -303
  666. data/ext/cargo-vendor/tokio-1.35.1/tests/task_join_set.rs +0 -229
  667. data/ext/cargo-vendor/tokio-1.35.1/tests/task_local.rs +0 -119
  668. data/ext/cargo-vendor/tokio-1.35.1/tests/task_panic.rs +0 -130
  669. data/ext/cargo-vendor/tokio-1.35.1/tests/tcp_into_split.rs +0 -131
  670. data/ext/cargo-vendor/tokio-1.35.1/tests/time_panic.rs +0 -98
  671. data/ext/cargo-vendor/tokio-1.35.1/tests/time_pause.rs +0 -332
  672. data/ext/cargo-vendor/wasi-cap-std-sync-17.0.0/.cargo-checksum.json +0 -1
  673. data/ext/cargo-vendor/wasi-cap-std-sync-17.0.0/Cargo.toml +0 -102
  674. data/ext/cargo-vendor/wasi-cap-std-sync-17.0.0/README.md +0 -1
  675. data/ext/cargo-vendor/wasi-cap-std-sync-17.0.0/src/clocks.rs +0 -41
  676. data/ext/cargo-vendor/wasi-cap-std-sync-17.0.0/src/dir.rs +0 -464
  677. data/ext/cargo-vendor/wasi-cap-std-sync-17.0.0/src/file.rs +0 -254
  678. data/ext/cargo-vendor/wasi-cap-std-sync-17.0.0/src/lib.rs +0 -161
  679. data/ext/cargo-vendor/wasi-cap-std-sync-17.0.0/src/net.rs +0 -402
  680. data/ext/cargo-vendor/wasi-cap-std-sync-17.0.0/src/sched/unix.rs +0 -82
  681. data/ext/cargo-vendor/wasi-cap-std-sync-17.0.0/src/sched/windows.rs +0 -221
  682. data/ext/cargo-vendor/wasi-cap-std-sync-17.0.0/src/sched.rs +0 -40
  683. data/ext/cargo-vendor/wasi-cap-std-sync-17.0.0/src/stdio.rs +0 -197
  684. data/ext/cargo-vendor/wasi-common-17.0.0/.cargo-checksum.json +0 -1
  685. data/ext/cargo-vendor/wasi-common-17.0.0/Cargo.toml +0 -131
  686. data/ext/cargo-vendor/wasi-common-17.0.0/src/lib.rs +0 -76
  687. data/ext/cargo-vendor/wasm-encoder-0.38.1/.cargo-checksum.json +0 -1
  688. data/ext/cargo-vendor/wasm-encoder-0.38.1/Cargo.toml +0 -37
  689. data/ext/cargo-vendor/wasm-encoder-0.38.1/src/component/types.rs +0 -771
  690. data/ext/cargo-vendor/wasm-encoder-0.38.1/src/core/code.rs +0 -3179
  691. data/ext/cargo-vendor/wasm-encoder-0.38.1/src/core/names.rs +0 -290
  692. data/ext/cargo-vendor/wasm-encoder-0.38.1/src/core/types.rs +0 -611
  693. data/ext/cargo-vendor/wasmparser-0.118.1/.cargo-checksum.json +0 -1
  694. data/ext/cargo-vendor/wasmparser-0.118.1/Cargo.lock +0 -649
  695. data/ext/cargo-vendor/wasmparser-0.118.1/Cargo.toml +0 -60
  696. data/ext/cargo-vendor/wasmparser-0.118.1/README.md +0 -36
  697. data/ext/cargo-vendor/wasmparser-0.118.1/benches/benchmark.rs +0 -370
  698. data/ext/cargo-vendor/wasmparser-0.118.1/src/binary_reader.rs +0 -1706
  699. data/ext/cargo-vendor/wasmparser-0.118.1/src/lib.rs +0 -726
  700. data/ext/cargo-vendor/wasmparser-0.118.1/src/limits.rs +0 -58
  701. data/ext/cargo-vendor/wasmparser-0.118.1/src/readers/core/dylink0.rs +0 -132
  702. data/ext/cargo-vendor/wasmparser-0.118.1/src/readers/core/names.rs +0 -153
  703. data/ext/cargo-vendor/wasmparser-0.118.1/src/readers/core/operators.rs +0 -354
  704. data/ext/cargo-vendor/wasmparser-0.118.1/src/readers/core/types.rs +0 -1520
  705. data/ext/cargo-vendor/wasmparser-0.118.1/src/readers/core.rs +0 -37
  706. data/ext/cargo-vendor/wasmparser-0.118.1/src/resources.rs +0 -408
  707. data/ext/cargo-vendor/wasmparser-0.118.1/src/validator/component.rs +0 -3211
  708. data/ext/cargo-vendor/wasmparser-0.118.1/src/validator/core/canonical.rs +0 -233
  709. data/ext/cargo-vendor/wasmparser-0.118.1/src/validator/core.rs +0 -1381
  710. data/ext/cargo-vendor/wasmparser-0.118.1/src/validator/func.rs +0 -345
  711. data/ext/cargo-vendor/wasmparser-0.118.1/src/validator/names.rs +0 -859
  712. data/ext/cargo-vendor/wasmparser-0.118.1/src/validator/operators.rs +0 -3515
  713. data/ext/cargo-vendor/wasmparser-0.118.1/src/validator/types.rs +0 -4416
  714. data/ext/cargo-vendor/wasmparser-0.118.1/src/validator.rs +0 -1606
  715. data/ext/cargo-vendor/wasmprinter-0.2.75/.cargo-checksum.json +0 -1
  716. data/ext/cargo-vendor/wasmprinter-0.2.75/Cargo.toml +0 -39
  717. data/ext/cargo-vendor/wasmprinter-0.2.75/src/lib.rs +0 -2969
  718. data/ext/cargo-vendor/wasmprinter-0.2.75/src/operator.rs +0 -873
  719. data/ext/cargo-vendor/wasmprinter-0.2.75/tests/all.rs +0 -278
  720. data/ext/cargo-vendor/wasmtime-17.0.0/.cargo-checksum.json +0 -1
  721. data/ext/cargo-vendor/wasmtime-17.0.0/Cargo.toml +0 -211
  722. data/ext/cargo-vendor/wasmtime-17.0.0/src/code.rs +0 -103
  723. data/ext/cargo-vendor/wasmtime-17.0.0/src/compiler.rs +0 -682
  724. data/ext/cargo-vendor/wasmtime-17.0.0/src/component/component.rs +0 -545
  725. data/ext/cargo-vendor/wasmtime-17.0.0/src/component/func/host.rs +0 -456
  726. data/ext/cargo-vendor/wasmtime-17.0.0/src/component/func.rs +0 -720
  727. data/ext/cargo-vendor/wasmtime-17.0.0/src/component/instance.rs +0 -815
  728. data/ext/cargo-vendor/wasmtime-17.0.0/src/component/linker.rs +0 -580
  729. data/ext/cargo-vendor/wasmtime-17.0.0/src/component/resource_table.rs +0 -350
  730. data/ext/cargo-vendor/wasmtime-17.0.0/src/component/types.rs +0 -752
  731. data/ext/cargo-vendor/wasmtime-17.0.0/src/component/values.rs +0 -1272
  732. data/ext/cargo-vendor/wasmtime-17.0.0/src/config.rs +0 -2428
  733. data/ext/cargo-vendor/wasmtime-17.0.0/src/engine/serialization.rs +0 -657
  734. data/ext/cargo-vendor/wasmtime-17.0.0/src/engine.rs +0 -792
  735. data/ext/cargo-vendor/wasmtime-17.0.0/src/func/typed.rs +0 -638
  736. data/ext/cargo-vendor/wasmtime-17.0.0/src/func.rs +0 -2391
  737. data/ext/cargo-vendor/wasmtime-17.0.0/src/instance.rs +0 -941
  738. data/ext/cargo-vendor/wasmtime-17.0.0/src/lib.rs +0 -526
  739. data/ext/cargo-vendor/wasmtime-17.0.0/src/linker.rs +0 -1479
  740. data/ext/cargo-vendor/wasmtime-17.0.0/src/memory.rs +0 -998
  741. data/ext/cargo-vendor/wasmtime-17.0.0/src/module/registry.rs +0 -361
  742. data/ext/cargo-vendor/wasmtime-17.0.0/src/module.rs +0 -1370
  743. data/ext/cargo-vendor/wasmtime-17.0.0/src/profiling.rs +0 -212
  744. data/ext/cargo-vendor/wasmtime-17.0.0/src/store.rs +0 -2389
  745. data/ext/cargo-vendor/wasmtime-17.0.0/src/trampoline/func.rs +0 -133
  746. data/ext/cargo-vendor/wasmtime-17.0.0/src/trampoline/memory.rs +0 -269
  747. data/ext/cargo-vendor/wasmtime-17.0.0/src/trampoline/table.rs +0 -20
  748. data/ext/cargo-vendor/wasmtime-17.0.0/src/trampoline.rs +0 -77
  749. data/ext/cargo-vendor/wasmtime-17.0.0/src/trap.rs +0 -643
  750. data/ext/cargo-vendor/wasmtime-17.0.0/src/types/matching.rs +0 -312
  751. data/ext/cargo-vendor/wasmtime-17.0.0/src/types.rs +0 -581
  752. data/ext/cargo-vendor/wasmtime-asm-macros-17.0.0/.cargo-checksum.json +0 -1
  753. data/ext/cargo-vendor/wasmtime-asm-macros-17.0.0/Cargo.toml +0 -22
  754. data/ext/cargo-vendor/wasmtime-cache-17.0.0/.cargo-checksum.json +0 -1
  755. data/ext/cargo-vendor/wasmtime-cache-17.0.0/Cargo.toml +0 -81
  756. data/ext/cargo-vendor/wasmtime-component-macro-17.0.0/.cargo-checksum.json +0 -1
  757. data/ext/cargo-vendor/wasmtime-component-macro-17.0.0/Cargo.toml +0 -67
  758. data/ext/cargo-vendor/wasmtime-component-macro-17.0.0/src/bindgen.rs +0 -371
  759. data/ext/cargo-vendor/wasmtime-component-util-17.0.0/.cargo-checksum.json +0 -1
  760. data/ext/cargo-vendor/wasmtime-component-util-17.0.0/Cargo.toml +0 -25
  761. data/ext/cargo-vendor/wasmtime-cranelift-17.0.0/.cargo-checksum.json +0 -1
  762. data/ext/cargo-vendor/wasmtime-cranelift-17.0.0/Cargo.toml +0 -112
  763. data/ext/cargo-vendor/wasmtime-cranelift-17.0.0/src/builder.rs +0 -123
  764. data/ext/cargo-vendor/wasmtime-cranelift-17.0.0/src/compiler/component.rs +0 -959
  765. data/ext/cargo-vendor/wasmtime-cranelift-17.0.0/src/compiler.rs +0 -1317
  766. data/ext/cargo-vendor/wasmtime-cranelift-17.0.0/src/debug/transform/simulate.rs +0 -410
  767. data/ext/cargo-vendor/wasmtime-cranelift-17.0.0/src/func_environ.rs +0 -2750
  768. data/ext/cargo-vendor/wasmtime-cranelift-17.0.0/src/lib.rs +0 -186
  769. data/ext/cargo-vendor/wasmtime-cranelift-shared-17.0.0/.cargo-checksum.json +0 -1
  770. data/ext/cargo-vendor/wasmtime-cranelift-shared-17.0.0/Cargo.toml +0 -71
  771. data/ext/cargo-vendor/wasmtime-cranelift-shared-17.0.0/src/isa_builder.rs +0 -100
  772. data/ext/cargo-vendor/wasmtime-environ-17.0.0/.cargo-checksum.json +0 -1
  773. data/ext/cargo-vendor/wasmtime-environ-17.0.0/Cargo.lock +0 -726
  774. data/ext/cargo-vendor/wasmtime-environ-17.0.0/Cargo.toml +0 -125
  775. data/ext/cargo-vendor/wasmtime-environ-17.0.0/src/component/dfg.rs +0 -678
  776. data/ext/cargo-vendor/wasmtime-environ-17.0.0/src/component/info.rs +0 -583
  777. data/ext/cargo-vendor/wasmtime-environ-17.0.0/src/component/translate/inline.rs +0 -1322
  778. data/ext/cargo-vendor/wasmtime-environ-17.0.0/src/component/translate.rs +0 -951
  779. data/ext/cargo-vendor/wasmtime-environ-17.0.0/src/component/types.rs +0 -1876
  780. data/ext/cargo-vendor/wasmtime-environ-17.0.0/src/component.rs +0 -95
  781. data/ext/cargo-vendor/wasmtime-environ-17.0.0/src/lib.rs +0 -59
  782. data/ext/cargo-vendor/wasmtime-environ-17.0.0/src/module.rs +0 -1075
  783. data/ext/cargo-vendor/wasmtime-environ-17.0.0/src/module_environ.rs +0 -892
  784. data/ext/cargo-vendor/wasmtime-environ-17.0.0/src/module_types.rs +0 -120
  785. data/ext/cargo-vendor/wasmtime-environ-17.0.0/src/tunables.rs +0 -117
  786. data/ext/cargo-vendor/wasmtime-environ-17.0.0/src/vmoffsets.rs +0 -919
  787. data/ext/cargo-vendor/wasmtime-fiber-17.0.0/.cargo-checksum.json +0 -1
  788. data/ext/cargo-vendor/wasmtime-fiber-17.0.0/Cargo.toml +0 -63
  789. data/ext/cargo-vendor/wasmtime-jit-17.0.0/.cargo-checksum.json +0 -1
  790. data/ext/cargo-vendor/wasmtime-jit-17.0.0/Cargo.toml +0 -125
  791. data/ext/cargo-vendor/wasmtime-jit-17.0.0/src/code_memory.rs +0 -319
  792. data/ext/cargo-vendor/wasmtime-jit-17.0.0/src/debug.rs +0 -165
  793. data/ext/cargo-vendor/wasmtime-jit-17.0.0/src/instantiate.rs +0 -772
  794. data/ext/cargo-vendor/wasmtime-jit-17.0.0/src/lib.rs +0 -21
  795. data/ext/cargo-vendor/wasmtime-jit-17.0.0/src/profiling/jitdump.rs +0 -66
  796. data/ext/cargo-vendor/wasmtime-jit-17.0.0/src/profiling/perfmap.rs +0 -47
  797. data/ext/cargo-vendor/wasmtime-jit-17.0.0/src/profiling/vtune.rs +0 -80
  798. data/ext/cargo-vendor/wasmtime-jit-17.0.0/src/profiling.rs +0 -108
  799. data/ext/cargo-vendor/wasmtime-jit-debug-17.0.0/.cargo-checksum.json +0 -1
  800. data/ext/cargo-vendor/wasmtime-jit-debug-17.0.0/Cargo.toml +0 -67
  801. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-17.0.0/.cargo-checksum.json +0 -1
  802. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-17.0.0/Cargo.toml +0 -46
  803. data/ext/cargo-vendor/wasmtime-runtime-17.0.0/.cargo-checksum.json +0 -1
  804. data/ext/cargo-vendor/wasmtime-runtime-17.0.0/Cargo.toml +0 -139
  805. data/ext/cargo-vendor/wasmtime-runtime-17.0.0/src/component.rs +0 -855
  806. data/ext/cargo-vendor/wasmtime-runtime-17.0.0/src/instance/allocator/pooling/memory_pool.rs +0 -997
  807. data/ext/cargo-vendor/wasmtime-runtime-17.0.0/src/instance/allocator/pooling.rs +0 -658
  808. data/ext/cargo-vendor/wasmtime-runtime-17.0.0/src/instance/allocator.rs +0 -712
  809. data/ext/cargo-vendor/wasmtime-runtime-17.0.0/src/instance.rs +0 -1479
  810. data/ext/cargo-vendor/wasmtime-runtime-17.0.0/src/lib.rs +0 -264
  811. data/ext/cargo-vendor/wasmtime-runtime-17.0.0/src/mpk/enabled.rs +0 -204
  812. data/ext/cargo-vendor/wasmtime-runtime-17.0.0/src/mpk/pkru.rs +0 -102
  813. data/ext/cargo-vendor/wasmtime-runtime-17.0.0/src/sys/unix/signals.rs +0 -402
  814. data/ext/cargo-vendor/wasmtime-runtime-17.0.0/src/vmcontext.rs +0 -1197
  815. data/ext/cargo-vendor/wasmtime-types-17.0.0/.cargo-checksum.json +0 -1
  816. data/ext/cargo-vendor/wasmtime-types-17.0.0/Cargo.toml +0 -36
  817. data/ext/cargo-vendor/wasmtime-types-17.0.0/src/lib.rs +0 -504
  818. data/ext/cargo-vendor/wasmtime-versioned-export-macros-17.0.0/.cargo-checksum.json +0 -1
  819. data/ext/cargo-vendor/wasmtime-versioned-export-macros-17.0.0/Cargo.toml +0 -32
  820. data/ext/cargo-vendor/wasmtime-wasi-17.0.0/.cargo-checksum.json +0 -1
  821. data/ext/cargo-vendor/wasmtime-wasi-17.0.0/Cargo.toml +0 -261
  822. data/ext/cargo-vendor/wasmtime-wasi-17.0.0/build.rs +0 -6
  823. data/ext/cargo-vendor/wasmtime-wasi-17.0.0/src/lib.rs +0 -137
  824. data/ext/cargo-vendor/wasmtime-wasi-17.0.0/src/preview2/clocks/host.rs +0 -73
  825. data/ext/cargo-vendor/wasmtime-wasi-17.0.0/src/preview2/clocks.rs +0 -12
  826. data/ext/cargo-vendor/wasmtime-wasi-17.0.0/src/preview2/ctx.rs +0 -333
  827. data/ext/cargo-vendor/wasmtime-wasi-17.0.0/src/preview2/error.rs +0 -97
  828. data/ext/cargo-vendor/wasmtime-wasi-17.0.0/src/preview2/filesystem.rs +0 -325
  829. data/ext/cargo-vendor/wasmtime-wasi-17.0.0/src/preview2/host/clocks.rs +0 -103
  830. data/ext/cargo-vendor/wasmtime-wasi-17.0.0/src/preview2/host/filesystem.rs +0 -1069
  831. data/ext/cargo-vendor/wasmtime-wasi-17.0.0/src/preview2/host/instance_network.rs +0 -15
  832. data/ext/cargo-vendor/wasmtime-wasi-17.0.0/src/preview2/host/io.rs +0 -368
  833. data/ext/cargo-vendor/wasmtime-wasi-17.0.0/src/preview2/host/network.rs +0 -625
  834. data/ext/cargo-vendor/wasmtime-wasi-17.0.0/src/preview2/host/random.rs +0 -36
  835. data/ext/cargo-vendor/wasmtime-wasi-17.0.0/src/preview2/host/tcp.rs +0 -605
  836. data/ext/cargo-vendor/wasmtime-wasi-17.0.0/src/preview2/host/tcp_create_socket.rs +0 -15
  837. data/ext/cargo-vendor/wasmtime-wasi-17.0.0/src/preview2/host/udp.rs +0 -530
  838. data/ext/cargo-vendor/wasmtime-wasi-17.0.0/src/preview2/host/udp_create_socket.rs +0 -15
  839. data/ext/cargo-vendor/wasmtime-wasi-17.0.0/src/preview2/ip_name_lookup.rs +0 -125
  840. data/ext/cargo-vendor/wasmtime-wasi-17.0.0/src/preview2/pipe.rs +0 -826
  841. data/ext/cargo-vendor/wasmtime-wasi-17.0.0/src/preview2/poll.rs +0 -175
  842. data/ext/cargo-vendor/wasmtime-wasi-17.0.0/src/preview2/preview0.rs +0 -870
  843. data/ext/cargo-vendor/wasmtime-wasi-17.0.0/src/preview2/preview1.rs +0 -2362
  844. data/ext/cargo-vendor/wasmtime-wasi-17.0.0/src/preview2/random.rs +0 -58
  845. data/ext/cargo-vendor/wasmtime-wasi-17.0.0/src/preview2/stdio.rs +0 -259
  846. data/ext/cargo-vendor/wasmtime-wasi-17.0.0/src/preview2/write_stream.rs +0 -203
  847. data/ext/cargo-vendor/wasmtime-wasi-17.0.0/tests/all/api.rs +0 -217
  848. data/ext/cargo-vendor/wasmtime-wasi-17.0.0/tests/all/main.rs +0 -112
  849. data/ext/cargo-vendor/wasmtime-wasi-17.0.0/wit/deps/io/poll.wit +0 -41
  850. data/ext/cargo-vendor/wasmtime-wasi-17.0.0/wit/deps/io/streams.wit +0 -251
  851. data/ext/cargo-vendor/wasmtime-wasi-17.0.0/wit/deps/sockets/tcp.wit +0 -309
  852. data/ext/cargo-vendor/wasmtime-wasi-17.0.0/wit/deps/sockets/udp.wit +0 -264
  853. data/ext/cargo-vendor/wasmtime-winch-17.0.0/.cargo-checksum.json +0 -1
  854. data/ext/cargo-vendor/wasmtime-winch-17.0.0/Cargo.toml +0 -77
  855. data/ext/cargo-vendor/wasmtime-winch-17.0.0/src/builder.rs +0 -64
  856. data/ext/cargo-vendor/wasmtime-winch-17.0.0/src/compiler.rs +0 -243
  857. data/ext/cargo-vendor/wasmtime-wit-bindgen-17.0.0/.cargo-checksum.json +0 -1
  858. data/ext/cargo-vendor/wasmtime-wit-bindgen-17.0.0/Cargo.toml +0 -41
  859. data/ext/cargo-vendor/wasmtime-wit-bindgen-17.0.0/src/lib.rs +0 -2097
  860. data/ext/cargo-vendor/wasmtime-wmemcheck-17.0.0/.cargo-checksum.json +0 -1
  861. data/ext/cargo-vendor/wasmtime-wmemcheck-17.0.0/Cargo.toml +0 -29
  862. data/ext/cargo-vendor/wast-69.0.1/.cargo-checksum.json +0 -1
  863. data/ext/cargo-vendor/wast-69.0.1/Cargo.toml +0 -50
  864. data/ext/cargo-vendor/wast-69.0.1/src/component/component.rs +0 -320
  865. data/ext/cargo-vendor/wast-69.0.1/src/core/binary.rs +0 -1273
  866. data/ext/cargo-vendor/wast-69.0.1/src/core/custom.rs +0 -390
  867. data/ext/cargo-vendor/wast-69.0.1/src/core/expr.rs +0 -2072
  868. data/ext/cargo-vendor/wast-69.0.1/src/core/memory.rs +0 -279
  869. data/ext/cargo-vendor/wast-69.0.1/src/core/module.rs +0 -217
  870. data/ext/cargo-vendor/wast-69.0.1/src/core/resolve/deinline_import_export.rs +0 -231
  871. data/ext/cargo-vendor/wast-69.0.1/src/core/resolve/names.rs +0 -764
  872. data/ext/cargo-vendor/wast-69.0.1/src/core/table.rs +0 -288
  873. data/ext/cargo-vendor/wast-69.0.1/src/core/types.rs +0 -865
  874. data/ext/cargo-vendor/wast-69.0.1/src/lexer.rs +0 -1443
  875. data/ext/cargo-vendor/wast-69.0.1/src/lib.rs +0 -542
  876. data/ext/cargo-vendor/wast-69.0.1/src/names.rs +0 -86
  877. data/ext/cargo-vendor/wast-69.0.1/src/parser.rs +0 -1382
  878. data/ext/cargo-vendor/wast-69.0.1/src/token.rs +0 -698
  879. data/ext/cargo-vendor/wast-69.0.1/src/wat.rs +0 -62
  880. data/ext/cargo-vendor/wat-1.0.82/.cargo-checksum.json +0 -1
  881. data/ext/cargo-vendor/wat-1.0.82/Cargo.toml +0 -27
  882. data/ext/cargo-vendor/wat-1.0.82/src/lib.rs +0 -333
  883. data/ext/cargo-vendor/wiggle-17.0.0/.cargo-checksum.json +0 -1
  884. data/ext/cargo-vendor/wiggle-17.0.0/Cargo.toml +0 -115
  885. data/ext/cargo-vendor/wiggle-17.0.0/src/lib.rs +0 -1198
  886. data/ext/cargo-vendor/wiggle-generate-17.0.0/.cargo-checksum.json +0 -1
  887. data/ext/cargo-vendor/wiggle-generate-17.0.0/Cargo.toml +0 -65
  888. data/ext/cargo-vendor/wiggle-macro-17.0.0/.cargo-checksum.json +0 -1
  889. data/ext/cargo-vendor/wiggle-macro-17.0.0/Cargo.toml +0 -55
  890. data/ext/cargo-vendor/wiggle-macro-17.0.0/LICENSE +0 -220
  891. data/ext/cargo-vendor/winch-codegen-0.15.0/.cargo-checksum.json +0 -1
  892. data/ext/cargo-vendor/winch-codegen-0.15.0/Cargo.toml +0 -76
  893. data/ext/cargo-vendor/winch-codegen-0.15.0/src/abi/local.rs +0 -81
  894. data/ext/cargo-vendor/winch-codegen-0.15.0/src/abi/mod.rs +0 -614
  895. data/ext/cargo-vendor/winch-codegen-0.15.0/src/codegen/builtin.rs +0 -268
  896. data/ext/cargo-vendor/winch-codegen-0.15.0/src/codegen/call.rs +0 -345
  897. data/ext/cargo-vendor/winch-codegen-0.15.0/src/codegen/context.rs +0 -553
  898. data/ext/cargo-vendor/winch-codegen-0.15.0/src/codegen/control.rs +0 -497
  899. data/ext/cargo-vendor/winch-codegen-0.15.0/src/codegen/env.rs +0 -309
  900. data/ext/cargo-vendor/winch-codegen-0.15.0/src/codegen/mod.rs +0 -428
  901. data/ext/cargo-vendor/winch-codegen-0.15.0/src/frame/mod.rs +0 -221
  902. data/ext/cargo-vendor/winch-codegen-0.15.0/src/isa/aarch64/abi.rs +0 -313
  903. data/ext/cargo-vendor/winch-codegen-0.15.0/src/isa/aarch64/masm.rs +0 -457
  904. data/ext/cargo-vendor/winch-codegen-0.15.0/src/isa/aarch64/mod.rs +0 -137
  905. data/ext/cargo-vendor/winch-codegen-0.15.0/src/isa/mod.rs +0 -225
  906. data/ext/cargo-vendor/winch-codegen-0.15.0/src/isa/reg.rs +0 -73
  907. data/ext/cargo-vendor/winch-codegen-0.15.0/src/isa/x64/abi.rs +0 -524
  908. data/ext/cargo-vendor/winch-codegen-0.15.0/src/isa/x64/asm.rs +0 -1149
  909. data/ext/cargo-vendor/winch-codegen-0.15.0/src/isa/x64/masm.rs +0 -1044
  910. data/ext/cargo-vendor/winch-codegen-0.15.0/src/isa/x64/mod.rs +0 -172
  911. data/ext/cargo-vendor/winch-codegen-0.15.0/src/masm.rs +0 -708
  912. data/ext/cargo-vendor/winch-codegen-0.15.0/src/stack.rs +0 -452
  913. data/ext/cargo-vendor/winch-codegen-0.15.0/src/trampoline.rs +0 -734
  914. data/ext/cargo-vendor/winch-codegen-0.15.0/src/visitor.rs +0 -1617
  915. data/ext/cargo-vendor/wit-parser-0.13.0/.cargo-checksum.json +0 -1
  916. data/ext/cargo-vendor/wit-parser-0.13.0/Cargo.toml +0 -65
  917. data/ext/cargo-vendor/wit-parser-0.13.0/src/ast/lex.rs +0 -737
  918. data/ext/cargo-vendor/wit-parser-0.13.0/src/ast/resolve.rs +0 -1425
  919. data/ext/cargo-vendor/wit-parser-0.13.0/src/ast.rs +0 -1340
  920. data/ext/cargo-vendor/wit-parser-0.13.0/src/resolve.rs +0 -1872
  921. data/ext/cargo-vendor/wit-parser-0.13.0/tests/ui/comments.wit.json +0 -46
  922. data/ext/cargo-vendor/wit-parser-0.13.0/tests/ui/parse-fail/import-export-overlap1.wit.result +0 -5
  923. data/ext/cargo-vendor/wit-parser-0.13.0/tests/ui/parse-fail/import-export-overlap2.wit.result +0 -5
  924. data/ext/cargo-vendor/wit-parser-0.13.0/tests/ui/parse-fail/union-fuzz-2.wit.result +0 -5
  925. data/ext/cargo-vendor/wit-parser-0.13.0/tests/ui/types.wit +0 -58
  926. data/ext/cargo-vendor/wit-parser-0.13.0/tests/ui/types.wit.json +0 -751
  927. data/ext/cargo-vendor/wit-parser-0.13.0/tests/ui/wasi.wit.json +0 -296
  928. /data/ext/cargo-vendor/{cranelift-bforest-0.104.0 → cranelift-bforest-0.105.3}/LICENSE +0 -0
  929. /data/ext/cargo-vendor/{cranelift-bforest-0.104.0 → cranelift-bforest-0.105.3}/README.md +0 -0
  930. /data/ext/cargo-vendor/{cranelift-bforest-0.104.0 → cranelift-bforest-0.105.3}/src/lib.rs +0 -0
  931. /data/ext/cargo-vendor/{cranelift-bforest-0.104.0 → cranelift-bforest-0.105.3}/src/map.rs +0 -0
  932. /data/ext/cargo-vendor/{cranelift-bforest-0.104.0 → cranelift-bforest-0.105.3}/src/node.rs +0 -0
  933. /data/ext/cargo-vendor/{cranelift-bforest-0.104.0 → cranelift-bforest-0.105.3}/src/path.rs +0 -0
  934. /data/ext/cargo-vendor/{cranelift-bforest-0.104.0 → cranelift-bforest-0.105.3}/src/pool.rs +0 -0
  935. /data/ext/cargo-vendor/{cranelift-bforest-0.104.0 → cranelift-bforest-0.105.3}/src/set.rs +0 -0
  936. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/LICENSE +0 -0
  937. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/README.md +0 -0
  938. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/benches/x64-evex-encoding.rs +0 -0
  939. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/alias_analysis.rs +0 -0
  940. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/binemit/mod.rs +0 -0
  941. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/binemit/stack_map.rs +0 -0
  942. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/bitset.rs +0 -0
  943. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/cfg_printer.rs +0 -0
  944. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/constant_hash.rs +0 -0
  945. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/context.rs +0 -0
  946. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/ctxhash.rs +0 -0
  947. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/cursor.rs +0 -0
  948. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/data_value.rs +0 -0
  949. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/dbg.rs +0 -0
  950. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/dce.rs +0 -0
  951. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/dominator_tree.rs +0 -0
  952. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/flowgraph.rs +0 -0
  953. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/fx.rs +0 -0
  954. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/incremental_cache.rs +0 -0
  955. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/inst_predicates.rs +0 -0
  956. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/ir/atomic_rmw_op.rs +0 -0
  957. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/ir/builder.rs +0 -0
  958. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/ir/condcodes.rs +0 -0
  959. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/ir/constant.rs +0 -0
  960. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/ir/dfg.rs +0 -0
  961. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/ir/dynamic_type.rs +0 -0
  962. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/ir/entities.rs +0 -0
  963. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/ir/extfunc.rs +0 -0
  964. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/ir/extname.rs +0 -0
  965. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/ir/function.rs +0 -0
  966. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/ir/globalvalue.rs +0 -0
  967. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/ir/immediates.rs +0 -0
  968. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/ir/instructions.rs +0 -0
  969. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/ir/jumptable.rs +0 -0
  970. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/ir/known_symbol.rs +0 -0
  971. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/ir/layout.rs +0 -0
  972. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/ir/libcall.rs +0 -0
  973. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/ir/memflags.rs +0 -0
  974. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/ir/memtype.rs +0 -0
  975. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/ir/mod.rs +0 -0
  976. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/ir/pcc.rs +0 -0
  977. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/ir/progpoint.rs +0 -0
  978. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/ir/sourceloc.rs +0 -0
  979. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/ir/stackslot.rs +0 -0
  980. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/ir/table.rs +0 -0
  981. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/ir/trapcode.rs +0 -0
  982. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/ir/types.rs +0 -0
  983. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/aarch64/abi.rs +0 -0
  984. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/aarch64/inst/args.rs +0 -0
  985. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/aarch64/inst/emit.rs +0 -0
  986. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/aarch64/inst/emit_tests.rs +0 -0
  987. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/aarch64/inst/imms.rs +0 -0
  988. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/aarch64/inst/mod.rs +0 -0
  989. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/aarch64/inst/regs.rs +0 -0
  990. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/aarch64/inst/unwind/systemv.rs +0 -0
  991. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/aarch64/inst/unwind.rs +0 -0
  992. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/aarch64/inst.isle +0 -0
  993. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/aarch64/inst_neon.isle +0 -0
  994. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/aarch64/lower/isle/generated_code.rs +0 -0
  995. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/aarch64/lower/isle.rs +0 -0
  996. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/aarch64/lower.isle +0 -0
  997. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/aarch64/lower.rs +0 -0
  998. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/aarch64/lower_dynamic_neon.isle +0 -0
  999. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/aarch64/mod.rs +0 -0
  1000. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/aarch64/pcc.rs +0 -0
  1001. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/aarch64/settings.rs +0 -0
  1002. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/call_conv.rs +0 -0
  1003. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/mod.rs +0 -0
  1004. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/riscv64/abi.rs +0 -0
  1005. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/riscv64/inst/args.rs +0 -0
  1006. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/riscv64/inst/emit.rs +0 -0
  1007. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/riscv64/inst/emit_tests.rs +0 -0
  1008. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/riscv64/inst/encode.rs +0 -0
  1009. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/riscv64/inst/imms.rs +0 -0
  1010. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/riscv64/inst/mod.rs +0 -0
  1011. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/riscv64/inst/regs.rs +0 -0
  1012. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/riscv64/inst/unwind/systemv.rs +0 -0
  1013. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/riscv64/inst/unwind.rs +0 -0
  1014. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/riscv64/inst/vector.rs +0 -0
  1015. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/riscv64/inst.isle +0 -0
  1016. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/riscv64/inst_vector.isle +0 -0
  1017. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/riscv64/lower/isle/generated_code.rs +0 -0
  1018. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/riscv64/lower/isle.rs +0 -0
  1019. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/riscv64/lower.isle +0 -0
  1020. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/riscv64/lower.rs +0 -0
  1021. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/riscv64/mod.rs +0 -0
  1022. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/riscv64/settings.rs +0 -0
  1023. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/s390x/abi.rs +0 -0
  1024. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/s390x/inst/args.rs +0 -0
  1025. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/s390x/inst/emit.rs +0 -0
  1026. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/s390x/inst/emit_tests.rs +0 -0
  1027. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/s390x/inst/imms.rs +0 -0
  1028. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/s390x/inst/mod.rs +0 -0
  1029. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/s390x/inst/regs.rs +0 -0
  1030. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/s390x/inst/unwind/systemv.rs +0 -0
  1031. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/s390x/inst/unwind.rs +0 -0
  1032. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/s390x/inst.isle +0 -0
  1033. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/s390x/lower/isle/generated_code.rs +0 -0
  1034. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/s390x/lower/isle.rs +0 -0
  1035. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/s390x/lower.isle +0 -0
  1036. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/s390x/lower.rs +0 -0
  1037. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/s390x/mod.rs +0 -0
  1038. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/s390x/settings.rs +0 -0
  1039. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/unwind/systemv.rs +0 -0
  1040. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/unwind/winx64.rs +0 -0
  1041. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/unwind.rs +0 -0
  1042. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/x64/abi.rs +0 -0
  1043. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/x64/encoding/evex.rs +0 -0
  1044. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/x64/encoding/mod.rs +0 -0
  1045. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/x64/encoding/rex.rs +0 -0
  1046. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/x64/encoding/vex.rs +0 -0
  1047. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/x64/inst/args.rs +0 -0
  1048. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/x64/inst/emit_state.rs +0 -0
  1049. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/x64/inst/mod.rs +0 -0
  1050. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/x64/inst/regs.rs +0 -0
  1051. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/x64/inst/unwind/systemv.rs +0 -0
  1052. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/x64/inst/unwind/winx64.rs +0 -0
  1053. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/x64/inst/unwind.rs +0 -0
  1054. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/x64/lower/isle/generated_code.rs +0 -0
  1055. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/x64/lower/isle.rs +0 -0
  1056. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/x64/lower.rs +0 -0
  1057. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/x64/pcc.rs +0 -0
  1058. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isa/x64/settings.rs +0 -0
  1059. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/isle_prelude.rs +0 -0
  1060. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/iterators.rs +0 -0
  1061. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/legalizer/globalvalue.rs +0 -0
  1062. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/legalizer/mod.rs +0 -0
  1063. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/legalizer/table.rs +0 -0
  1064. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/loop_analysis.rs +0 -0
  1065. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/machinst/abi.rs +0 -0
  1066. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/machinst/blockorder.rs +0 -0
  1067. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/machinst/buffer.rs +0 -0
  1068. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/machinst/compile.rs +0 -0
  1069. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/machinst/helpers.rs +0 -0
  1070. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/machinst/inst_common.rs +0 -0
  1071. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/machinst/isle.rs +0 -0
  1072. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/machinst/lower.rs +0 -0
  1073. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/machinst/mod.rs +0 -0
  1074. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/machinst/pcc.rs +0 -0
  1075. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/machinst/valueregs.rs +0 -0
  1076. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/machinst/vcode.rs +0 -0
  1077. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/nan_canonicalization.rs +0 -0
  1078. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/opts/arithmetic.isle +0 -0
  1079. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/opts/bitops.isle +0 -0
  1080. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/opts/generated_code.rs +0 -0
  1081. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/opts/icmp.isle +0 -0
  1082. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/opts/remat.isle +0 -0
  1083. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/opts/selects.isle +0 -0
  1084. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/opts/shifts.isle +0 -0
  1085. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/opts/spaceship.isle +0 -0
  1086. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/opts/vector.isle +0 -0
  1087. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/opts.rs +0 -0
  1088. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/prelude.isle +0 -0
  1089. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/prelude_lower.isle +0 -0
  1090. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/print_errors.rs +0 -0
  1091. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/remove_constant_phis.rs +0 -0
  1092. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/result.rs +0 -0
  1093. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/scoped_hash_map.rs +0 -0
  1094. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/settings.rs +0 -0
  1095. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/souper_harvest.rs +0 -0
  1096. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/timing.rs +0 -0
  1097. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/unionfind.rs +0 -0
  1098. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/unreachable_code.rs +0 -0
  1099. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/value_label.rs +0 -0
  1100. /data/ext/cargo-vendor/{cranelift-codegen-0.104.0 → cranelift-codegen-0.105.3}/src/write.rs +0 -0
  1101. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.0 → cranelift-codegen-meta-0.105.3}/LICENSE +0 -0
  1102. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.0 → cranelift-codegen-meta-0.105.3}/README.md +0 -0
  1103. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.0 → cranelift-codegen-meta-0.105.3}/src/cdsl/formats.rs +0 -0
  1104. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.0 → cranelift-codegen-meta-0.105.3}/src/cdsl/instructions.rs +0 -0
  1105. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.0 → cranelift-codegen-meta-0.105.3}/src/cdsl/isa.rs +0 -0
  1106. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.0 → cranelift-codegen-meta-0.105.3}/src/cdsl/mod.rs +0 -0
  1107. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.0 → cranelift-codegen-meta-0.105.3}/src/cdsl/operands.rs +0 -0
  1108. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.0 → cranelift-codegen-meta-0.105.3}/src/cdsl/settings.rs +0 -0
  1109. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.0 → cranelift-codegen-meta-0.105.3}/src/cdsl/types.rs +0 -0
  1110. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.0 → cranelift-codegen-meta-0.105.3}/src/cdsl/typevar.rs +0 -0
  1111. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.0 → cranelift-codegen-meta-0.105.3}/src/constant_hash.rs +0 -0
  1112. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.0 → cranelift-codegen-meta-0.105.3}/src/error.rs +0 -0
  1113. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.0 → cranelift-codegen-meta-0.105.3}/src/gen_inst.rs +0 -0
  1114. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.0 → cranelift-codegen-meta-0.105.3}/src/gen_settings.rs +0 -0
  1115. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.0 → cranelift-codegen-meta-0.105.3}/src/gen_types.rs +0 -0
  1116. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.0 → cranelift-codegen-meta-0.105.3}/src/isa/arm64.rs +0 -0
  1117. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.0 → cranelift-codegen-meta-0.105.3}/src/isa/mod.rs +0 -0
  1118. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.0 → cranelift-codegen-meta-0.105.3}/src/isa/riscv64.rs +0 -0
  1119. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.0 → cranelift-codegen-meta-0.105.3}/src/isa/s390x.rs +0 -0
  1120. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.0 → cranelift-codegen-meta-0.105.3}/src/isa/x86.rs +0 -0
  1121. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.0 → cranelift-codegen-meta-0.105.3}/src/lib.rs +0 -0
  1122. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.0 → cranelift-codegen-meta-0.105.3}/src/shared/entities.rs +0 -0
  1123. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.0 → cranelift-codegen-meta-0.105.3}/src/shared/formats.rs +0 -0
  1124. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.0 → cranelift-codegen-meta-0.105.3}/src/shared/immediates.rs +0 -0
  1125. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.0 → cranelift-codegen-meta-0.105.3}/src/shared/instructions.rs +0 -0
  1126. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.0 → cranelift-codegen-meta-0.105.3}/src/shared/mod.rs +0 -0
  1127. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.0 → cranelift-codegen-meta-0.105.3}/src/shared/settings.rs +0 -0
  1128. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.0 → cranelift-codegen-meta-0.105.3}/src/shared/types.rs +0 -0
  1129. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.0 → cranelift-codegen-meta-0.105.3}/src/srcgen.rs +0 -0
  1130. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.0 → cranelift-codegen-meta-0.105.3}/src/unique_table.rs +0 -0
  1131. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.104.0 → cranelift-codegen-shared-0.105.3}/LICENSE +0 -0
  1132. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.104.0 → cranelift-codegen-shared-0.105.3}/README.md +0 -0
  1133. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.104.0 → cranelift-codegen-shared-0.105.3}/src/constant_hash.rs +0 -0
  1134. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.104.0 → cranelift-codegen-shared-0.105.3}/src/constants.rs +0 -0
  1135. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.104.0 → cranelift-codegen-shared-0.105.3}/src/lib.rs +0 -0
  1136. /data/ext/cargo-vendor/{cranelift-control-0.104.0 → cranelift-control-0.105.3}/LICENSE +0 -0
  1137. /data/ext/cargo-vendor/{cranelift-control-0.104.0 → cranelift-control-0.105.3}/README.md +0 -0
  1138. /data/ext/cargo-vendor/{cranelift-control-0.104.0 → cranelift-control-0.105.3}/src/chaos.rs +0 -0
  1139. /data/ext/cargo-vendor/{cranelift-control-0.104.0 → cranelift-control-0.105.3}/src/lib.rs +0 -0
  1140. /data/ext/cargo-vendor/{cranelift-control-0.104.0 → cranelift-control-0.105.3}/src/zero_sized.rs +0 -0
  1141. /data/ext/cargo-vendor/{cranelift-entity-0.104.0 → cranelift-entity-0.105.3}/LICENSE +0 -0
  1142. /data/ext/cargo-vendor/{cranelift-entity-0.104.0 → cranelift-entity-0.105.3}/README.md +0 -0
  1143. /data/ext/cargo-vendor/{cranelift-entity-0.104.0 → cranelift-entity-0.105.3}/src/boxed_slice.rs +0 -0
  1144. /data/ext/cargo-vendor/{cranelift-entity-0.104.0 → cranelift-entity-0.105.3}/src/iter.rs +0 -0
  1145. /data/ext/cargo-vendor/{cranelift-entity-0.104.0 → cranelift-entity-0.105.3}/src/keys.rs +0 -0
  1146. /data/ext/cargo-vendor/{cranelift-entity-0.104.0 → cranelift-entity-0.105.3}/src/lib.rs +0 -0
  1147. /data/ext/cargo-vendor/{cranelift-entity-0.104.0 → cranelift-entity-0.105.3}/src/list.rs +0 -0
  1148. /data/ext/cargo-vendor/{cranelift-entity-0.104.0 → cranelift-entity-0.105.3}/src/map.rs +0 -0
  1149. /data/ext/cargo-vendor/{cranelift-entity-0.104.0 → cranelift-entity-0.105.3}/src/packed_option.rs +0 -0
  1150. /data/ext/cargo-vendor/{cranelift-entity-0.104.0 → cranelift-entity-0.105.3}/src/primary.rs +0 -0
  1151. /data/ext/cargo-vendor/{cranelift-entity-0.104.0 → cranelift-entity-0.105.3}/src/set.rs +0 -0
  1152. /data/ext/cargo-vendor/{cranelift-entity-0.104.0 → cranelift-entity-0.105.3}/src/sparse.rs +0 -0
  1153. /data/ext/cargo-vendor/{cranelift-entity-0.104.0 → cranelift-entity-0.105.3}/src/unsigned.rs +0 -0
  1154. /data/ext/cargo-vendor/{cranelift-frontend-0.104.0 → cranelift-frontend-0.105.3}/LICENSE +0 -0
  1155. /data/ext/cargo-vendor/{cranelift-frontend-0.104.0 → cranelift-frontend-0.105.3}/README.md +0 -0
  1156. /data/ext/cargo-vendor/{cranelift-frontend-0.104.0 → cranelift-frontend-0.105.3}/src/frontend.rs +0 -0
  1157. /data/ext/cargo-vendor/{cranelift-frontend-0.104.0 → cranelift-frontend-0.105.3}/src/lib.rs +0 -0
  1158. /data/ext/cargo-vendor/{cranelift-frontend-0.104.0 → cranelift-frontend-0.105.3}/src/ssa.rs +0 -0
  1159. /data/ext/cargo-vendor/{cranelift-frontend-0.104.0 → cranelift-frontend-0.105.3}/src/switch.rs +0 -0
  1160. /data/ext/cargo-vendor/{cranelift-frontend-0.104.0 → cranelift-frontend-0.105.3}/src/variable.rs +0 -0
  1161. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/README.md +0 -0
  1162. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/build.rs +0 -0
  1163. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/isle_examples/fail/bad_converters.isle +0 -0
  1164. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/isle_examples/fail/bound_var_type_mismatch.isle +0 -0
  1165. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/isle_examples/fail/converter_extractor_constructor.isle +0 -0
  1166. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/isle_examples/fail/error1.isle +0 -0
  1167. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/isle_examples/fail/extra_parens.isle +0 -0
  1168. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/isle_examples/fail/impure_expression.isle +0 -0
  1169. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/isle_examples/fail/impure_rhs.isle +0 -0
  1170. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/isle_examples/fail/multi_internal_etor.isle +0 -0
  1171. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/isle_examples/fail/multi_prio.isle +0 -0
  1172. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/isle_examples/link/borrows.isle +0 -0
  1173. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/isle_examples/link/borrows_main.rs +0 -0
  1174. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/isle_examples/link/iflets.isle +0 -0
  1175. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/isle_examples/link/iflets_main.rs +0 -0
  1176. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/isle_examples/link/multi_constructor.isle +0 -0
  1177. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/isle_examples/link/multi_constructor_main.rs +0 -0
  1178. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/isle_examples/link/multi_extractor.isle +0 -0
  1179. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/isle_examples/link/multi_extractor_main.rs +0 -0
  1180. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/isle_examples/link/test.isle +0 -0
  1181. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/isle_examples/link/test_main.rs +0 -0
  1182. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/isle_examples/pass/bound_var.isle +0 -0
  1183. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/isle_examples/pass/construct_and_extract.isle +0 -0
  1184. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/isle_examples/pass/conversions.isle +0 -0
  1185. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/isle_examples/pass/conversions_extern.isle +0 -0
  1186. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/isle_examples/pass/let.isle +0 -0
  1187. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/isle_examples/pass/nodebug.isle +0 -0
  1188. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/isle_examples/pass/prio_trie_bug.isle +0 -0
  1189. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/isle_examples/pass/test2.isle +0 -0
  1190. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/isle_examples/pass/test3.isle +0 -0
  1191. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/isle_examples/pass/test4.isle +0 -0
  1192. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/isle_examples/pass/tutorial.isle +0 -0
  1193. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/isle_examples/run/iconst.isle +0 -0
  1194. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/isle_examples/run/iconst_main.rs +0 -0
  1195. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/isle_examples/run/let_shadowing.isle +0 -0
  1196. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/isle_examples/run/let_shadowing_main.rs +0 -0
  1197. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/src/ast.rs +0 -0
  1198. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/src/codegen.rs +0 -0
  1199. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/src/compile.rs +0 -0
  1200. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/src/error.rs +0 -0
  1201. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/src/lexer.rs +0 -0
  1202. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/src/lib.rs +0 -0
  1203. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/src/log.rs +0 -0
  1204. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/src/overlap.rs +0 -0
  1205. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/src/parser.rs +0 -0
  1206. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/src/sema.rs +0 -0
  1207. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/src/serialize.rs +0 -0
  1208. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/src/trie_again.rs +0 -0
  1209. /data/ext/cargo-vendor/{cranelift-isle-0.104.0 → cranelift-isle-0.105.3}/tests/run_tests.rs +0 -0
  1210. /data/ext/cargo-vendor/{cranelift-native-0.104.0 → cranelift-native-0.105.3}/LICENSE +0 -0
  1211. /data/ext/cargo-vendor/{cranelift-native-0.104.0 → cranelift-native-0.105.3}/README.md +0 -0
  1212. /data/ext/cargo-vendor/{cranelift-native-0.104.0 → cranelift-native-0.105.3}/src/riscv.rs +0 -0
  1213. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/LICENSE +0 -0
  1214. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/README.md +0 -0
  1215. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/src/code_translator/bounds_checks.rs +0 -0
  1216. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/src/environ/mod.rs +0 -0
  1217. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/src/func_translator.rs +0 -0
  1218. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/src/heap.rs +0 -0
  1219. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/src/lib.rs +0 -0
  1220. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/src/module_translator.rs +0 -0
  1221. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/src/state.rs +0 -0
  1222. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/tests/wasm_testsuite.rs +0 -0
  1223. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/arith.wat +0 -0
  1224. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/br_table.wat +0 -0
  1225. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/call-simd.wat +0 -0
  1226. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/call.wat +0 -0
  1227. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/embenchen_fannkuch.wat +0 -0
  1228. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/embenchen_fasta.wat +0 -0
  1229. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/embenchen_ifs.wat +0 -0
  1230. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/embenchen_primes.wat +0 -0
  1231. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/fac-multi-value.wat +0 -0
  1232. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/fibonacci.wat +0 -0
  1233. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/globals.wat +0 -0
  1234. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/if-reachability-translation-0.wat +0 -0
  1235. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/if-reachability-translation-1.wat +0 -0
  1236. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/if-reachability-translation-2.wat +0 -0
  1237. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/if-reachability-translation-3.wat +0 -0
  1238. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/if-reachability-translation-4.wat +0 -0
  1239. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/if-reachability-translation-5.wat +0 -0
  1240. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/if-reachability-translation-6.wat +0 -0
  1241. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/if-unreachable-else-params-2.wat +0 -0
  1242. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/if-unreachable-else-params.wat +0 -0
  1243. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/issue-1306-name-section-with-u32-max-function-index.wasm +0 -0
  1244. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/memory.wat +0 -0
  1245. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/multi-0.wat +0 -0
  1246. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/multi-1.wat +0 -0
  1247. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/multi-10.wat +0 -0
  1248. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/multi-11.wat +0 -0
  1249. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/multi-12.wat +0 -0
  1250. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/multi-13.wat +0 -0
  1251. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/multi-14.wat +0 -0
  1252. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/multi-15.wat +0 -0
  1253. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/multi-16.wat +0 -0
  1254. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/multi-17.wat +0 -0
  1255. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/multi-2.wat +0 -0
  1256. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/multi-3.wat +0 -0
  1257. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/multi-4.wat +0 -0
  1258. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/multi-5.wat +0 -0
  1259. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/multi-6.wat +0 -0
  1260. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/multi-7.wat +0 -0
  1261. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/multi-8.wat +0 -0
  1262. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/multi-9.wat +0 -0
  1263. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/nullref.wat +0 -0
  1264. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/passive-data.wat +0 -0
  1265. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/pr2303.wat +0 -0
  1266. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/pr2559.wat +0 -0
  1267. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/ref-func-0.wat +0 -0
  1268. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/rust_fannkuch.wat +0 -0
  1269. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/select.wat +0 -0
  1270. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/simd-store.wat +0 -0
  1271. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/simd.wat +0 -0
  1272. /data/ext/cargo-vendor/{cranelift-wasm-0.104.0 → cranelift-wasm-0.105.3}/wasmtests/table-copy.wat +0 -0
  1273. /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.18 → deterministic-wasi-ctx-0.1.19}/README.md +0 -0
  1274. /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.18 → deterministic-wasi-ctx-0.1.19}/src/clocks.rs +0 -0
  1275. /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.18 → deterministic-wasi-ctx-0.1.19}/src/lib.rs +0 -0
  1276. /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.18 → deterministic-wasi-ctx-0.1.19}/src/noop_scheduler.rs +0 -0
  1277. /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.18 → deterministic-wasi-ctx-0.1.19}/tests/clocks.rs +0 -0
  1278. /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.18 → deterministic-wasi-ctx-0.1.19}/tests/common/mod.rs +0 -0
  1279. /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.18 → deterministic-wasi-ctx-0.1.19}/tests/random.rs +0 -0
  1280. /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.18 → deterministic-wasi-ctx-0.1.19}/tests/scheduler.rs +0 -0
  1281. /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/LICENSE-APACHE +0 -0
  1282. /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/LICENSE-MIT +0 -0
  1283. /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/bin/release.sh +0 -0
  1284. /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/build/features.rs +0 -0
  1285. /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/build/main.rs +0 -0
  1286. /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/build/stable_api_config.rs +0 -0
  1287. /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/build/version.rs +0 -0
  1288. /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/readme.md +0 -0
  1289. /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/src/bindings.rs +0 -0
  1290. /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/src/hidden.rs +0 -0
  1291. /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/src/macros.rs +0 -0
  1292. /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/src/memory.rs +0 -0
  1293. /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/src/ruby_abi_version.rs +0 -0
  1294. /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/src/special_consts.rs +0 -0
  1295. /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/src/stable_api/compiled.c +0 -0
  1296. /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/src/stable_api/compiled.rs +0 -0
  1297. /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/src/stable_api/ruby_2_6.rs +0 -0
  1298. /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/src/stable_api/ruby_2_7.rs +0 -0
  1299. /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/src/stable_api/ruby_3_0.rs +0 -0
  1300. /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/src/stable_api/ruby_3_1.rs +0 -0
  1301. /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/src/stable_api/ruby_3_2.rs +0 -0
  1302. /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/src/stable_api/ruby_3_3.rs +0 -0
  1303. /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/src/stable_api.rs +0 -0
  1304. /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/src/tracking_allocator.rs +0 -0
  1305. /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/src/utils.rs +0 -0
  1306. /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/src/value_type.rs +0 -0
  1307. /data/ext/cargo-vendor/{rb-sys-build-0.9.86 → rb-sys-build-0.9.89}/LICENSE-APACHE +0 -0
  1308. /data/ext/cargo-vendor/{rb-sys-build-0.9.86 → rb-sys-build-0.9.89}/LICENSE-MIT +0 -0
  1309. /data/ext/cargo-vendor/{rb-sys-build-0.9.86 → rb-sys-build-0.9.89}/src/bindings/sanitizer.rs +0 -0
  1310. /data/ext/cargo-vendor/{rb-sys-build-0.9.86 → rb-sys-build-0.9.89}/src/bindings/stable_api.rs +0 -0
  1311. /data/ext/cargo-vendor/{rb-sys-build-0.9.86 → rb-sys-build-0.9.89}/src/bindings/wrapper.h +0 -0
  1312. /data/ext/cargo-vendor/{rb-sys-build-0.9.86 → rb-sys-build-0.9.89}/src/cc.rs +0 -0
  1313. /data/ext/cargo-vendor/{rb-sys-build-0.9.86 → rb-sys-build-0.9.89}/src/lib.rs +0 -0
  1314. /data/ext/cargo-vendor/{rb-sys-build-0.9.86 → rb-sys-build-0.9.89}/src/rb_config/flags.rs +0 -0
  1315. /data/ext/cargo-vendor/{rb-sys-build-0.9.86 → rb-sys-build-0.9.89}/src/rb_config/library.rs +0 -0
  1316. /data/ext/cargo-vendor/{rb-sys-build-0.9.86 → rb-sys-build-0.9.89}/src/rb_config/search_path.rs +0 -0
  1317. /data/ext/cargo-vendor/{rb-sys-build-0.9.86 → rb-sys-build-0.9.89}/src/utils.rs +0 -0
  1318. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/LICENSE +0 -0
  1319. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/docs/reactor-refactor.md +0 -0
  1320. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/blocking.rs +0 -0
  1321. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/doc/mod.rs +0 -0
  1322. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/canonicalize.rs +0 -0
  1323. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/copy.rs +0 -0
  1324. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/create_dir.rs +0 -0
  1325. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/create_dir_all.rs +0 -0
  1326. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/dir_builder.rs +0 -0
  1327. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/file/tests.rs +0 -0
  1328. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/file.rs +0 -0
  1329. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/hard_link.rs +0 -0
  1330. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/metadata.rs +0 -0
  1331. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/mocks.rs +0 -0
  1332. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/mod.rs +0 -0
  1333. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/open_options.rs +0 -0
  1334. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/read.rs +0 -0
  1335. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/read_dir.rs +0 -0
  1336. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/read_link.rs +0 -0
  1337. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/read_to_string.rs +0 -0
  1338. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/remove_dir.rs +0 -0
  1339. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/remove_dir_all.rs +0 -0
  1340. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/remove_file.rs +0 -0
  1341. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/rename.rs +0 -0
  1342. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/set_permissions.rs +0 -0
  1343. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/symlink.rs +0 -0
  1344. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/symlink_dir.rs +0 -0
  1345. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/symlink_file.rs +0 -0
  1346. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/symlink_metadata.rs +0 -0
  1347. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/try_exists.rs +0 -0
  1348. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/write.rs +0 -0
  1349. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/future/block_on.rs +0 -0
  1350. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/future/maybe_done.rs +0 -0
  1351. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/future/poll_fn.rs +0 -0
  1352. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/future/trace.rs +0 -0
  1353. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/future/try_join.rs +0 -0
  1354. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fuzz.rs +0 -0
  1355. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/async_buf_read.rs +0 -0
  1356. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/async_read.rs +0 -0
  1357. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/async_seek.rs +0 -0
  1358. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/async_write.rs +0 -0
  1359. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/blocking.rs +0 -0
  1360. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/read_buf.rs +0 -0
  1361. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/ready.rs +0 -0
  1362. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/seek.rs +0 -0
  1363. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/split.rs +0 -0
  1364. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/stderr.rs +0 -0
  1365. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/stdin.rs +0 -0
  1366. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/stdout.rs +0 -0
  1367. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/async_read_ext.rs +0 -0
  1368. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/async_seek_ext.rs +0 -0
  1369. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/async_write_ext.rs +0 -0
  1370. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/buf_stream.rs +0 -0
  1371. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/copy_bidirectional.rs +0 -0
  1372. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/copy_buf.rs +0 -0
  1373. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/fill_buf.rs +0 -0
  1374. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/lines.rs +0 -0
  1375. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/mem.rs +0 -0
  1376. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/read.rs +0 -0
  1377. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/read_buf.rs +0 -0
  1378. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/read_int.rs +0 -0
  1379. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/read_to_end.rs +0 -0
  1380. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/read_to_string.rs +0 -0
  1381. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/read_until.rs +0 -0
  1382. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/split.rs +0 -0
  1383. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/take.rs +0 -0
  1384. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/vec_with_initialized.rs +0 -0
  1385. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/write.rs +0 -0
  1386. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/write_all.rs +0 -0
  1387. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/write_all_buf.rs +0 -0
  1388. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/write_buf.rs +0 -0
  1389. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/write_int.rs +0 -0
  1390. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/write_vectored.rs +0 -0
  1391. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/loom/mocked.rs +0 -0
  1392. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/loom/mod.rs +0 -0
  1393. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/loom/std/atomic_u16.rs +0 -0
  1394. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/loom/std/atomic_u32.rs +0 -0
  1395. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/loom/std/atomic_u64_as_mutex.rs +0 -0
  1396. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/loom/std/atomic_u64_native.rs +0 -0
  1397. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/loom/std/atomic_u64_static_const_new.rs +0 -0
  1398. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/loom/std/atomic_u64_static_once_cell.rs +0 -0
  1399. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/loom/std/atomic_usize.rs +0 -0
  1400. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/loom/std/barrier.rs +0 -0
  1401. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/loom/std/mod.rs +0 -0
  1402. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/loom/std/mutex.rs +0 -0
  1403. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/loom/std/parking_lot.rs +0 -0
  1404. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/loom/std/unsafe_cell.rs +0 -0
  1405. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/macros/addr_of.rs +0 -0
  1406. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/macros/join.rs +0 -0
  1407. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/macros/loom.rs +0 -0
  1408. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/macros/mod.rs +0 -0
  1409. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/macros/pin.rs +0 -0
  1410. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/macros/ready.rs +0 -0
  1411. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/macros/select.rs +0 -0
  1412. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/macros/support.rs +0 -0
  1413. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/macros/thread_local.rs +0 -0
  1414. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/macros/trace.rs +0 -0
  1415. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/net/addr.rs +0 -0
  1416. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/net/lookup_host.rs +0 -0
  1417. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/net/tcp/mod.rs +0 -0
  1418. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/net/tcp/split.rs +0 -0
  1419. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/net/tcp/split_owned.rs +0 -0
  1420. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/net/unix/datagram/mod.rs +0 -0
  1421. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/net/unix/socketaddr.rs +0 -0
  1422. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/net/unix/split.rs +0 -0
  1423. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/net/unix/split_owned.rs +0 -0
  1424. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/net/unix/ucred.rs +0 -0
  1425. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/net/windows/mod.rs +0 -0
  1426. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/process/kill.rs +0 -0
  1427. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/process/unix/orphan.rs +0 -0
  1428. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/process/unix/reap.rs +0 -0
  1429. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/process/windows.rs +0 -0
  1430. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/blocking/mod.rs +0 -0
  1431. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/blocking/schedule.rs +0 -0
  1432. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/blocking/shutdown.rs +0 -0
  1433. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/blocking/task.rs +0 -0
  1434. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/config.rs +0 -0
  1435. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/context/blocking.rs +0 -0
  1436. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/context/current.rs +0 -0
  1437. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/context/runtime.rs +0 -0
  1438. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/context/runtime_mt.rs +0 -0
  1439. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/context/scoped.rs +0 -0
  1440. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/coop.rs +0 -0
  1441. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/driver.rs +0 -0
  1442. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/dump.rs +0 -0
  1443. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/id.rs +0 -0
  1444. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/io/driver/signal.rs +0 -0
  1445. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/io/metrics.rs +0 -0
  1446. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/io/mod.rs +0 -0
  1447. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/io/registration.rs +0 -0
  1448. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/io/registration_set.rs +0 -0
  1449. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/metrics/batch.rs +0 -0
  1450. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/metrics/histogram.rs +0 -0
  1451. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/metrics/io.rs +0 -0
  1452. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/metrics/mock.rs +0 -0
  1453. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/metrics/mod.rs +0 -0
  1454. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/metrics/runtime.rs +0 -0
  1455. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/metrics/scheduler.rs +0 -0
  1456. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/metrics/worker.rs +0 -0
  1457. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/mod.rs +0 -0
  1458. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/process.rs +0 -0
  1459. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/runtime.rs +0 -0
  1460. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/block_in_place.rs +0 -0
  1461. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/defer.rs +0 -0
  1462. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/inject/metrics.rs +0 -0
  1463. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/inject/pop.rs +0 -0
  1464. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/inject/rt_multi_thread.rs +0 -0
  1465. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/inject/shared.rs +0 -0
  1466. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/inject/synced.rs +0 -0
  1467. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/inject.rs +0 -0
  1468. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/lock.rs +0 -0
  1469. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/mod.rs +0 -0
  1470. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread/counters.rs +0 -0
  1471. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread/handle/metrics.rs +0 -0
  1472. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread/handle/taskdump.rs +0 -0
  1473. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread/handle.rs +0 -0
  1474. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread/idle.rs +0 -0
  1475. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread/mod.rs +0 -0
  1476. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread/overflow.rs +0 -0
  1477. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread/trace.rs +0 -0
  1478. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread/trace_mock.rs +0 -0
  1479. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread/worker/metrics.rs +0 -0
  1480. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread/worker/taskdump.rs +0 -0
  1481. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread/worker/taskdump_mock.rs +0 -0
  1482. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread_alt/counters.rs +0 -0
  1483. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread_alt/handle/metrics.rs +0 -0
  1484. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread_alt/handle/taskdump.rs +0 -0
  1485. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread_alt/handle.rs +0 -0
  1486. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread_alt/idle.rs +0 -0
  1487. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread_alt/mod.rs +0 -0
  1488. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread_alt/overflow.rs +0 -0
  1489. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread_alt/park.rs +0 -0
  1490. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread_alt/trace.rs +0 -0
  1491. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread_alt/trace_mock.rs +0 -0
  1492. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread_alt/worker/metrics.rs +0 -0
  1493. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread_alt/worker/taskdump.rs +0 -0
  1494. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread_alt/worker/taskdump_mock.rs +0 -0
  1495. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/signal/mod.rs +0 -0
  1496. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/task/abort.rs +0 -0
  1497. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/task/error.rs +0 -0
  1498. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/task/id.rs +0 -0
  1499. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/task/raw.rs +0 -0
  1500. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/task/trace/symbol.rs +0 -0
  1501. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/task/trace/tree.rs +0 -0
  1502. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/task/waker.rs +0 -0
  1503. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/tests/inject.rs +0 -0
  1504. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/tests/loom_blocking.rs +0 -0
  1505. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/tests/loom_current_thread/yield_now.rs +0 -0
  1506. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/tests/loom_current_thread.rs +0 -0
  1507. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/tests/loom_join_set.rs +0 -0
  1508. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/tests/loom_multi_thread/queue.rs +0 -0
  1509. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/tests/loom_multi_thread/shutdown.rs +0 -0
  1510. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/tests/loom_multi_thread/yield_now.rs +0 -0
  1511. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/tests/loom_multi_thread.rs +0 -0
  1512. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/tests/loom_multi_thread_alt/queue.rs +0 -0
  1513. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/tests/loom_multi_thread_alt/shutdown.rs +0 -0
  1514. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/tests/loom_multi_thread_alt/yield_now.rs +0 -0
  1515. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/tests/loom_multi_thread_alt.rs +0 -0
  1516. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/tests/loom_oneshot.rs +0 -0
  1517. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/tests/mod.rs +0 -0
  1518. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/tests/queue.rs +0 -0
  1519. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/tests/task.rs +0 -0
  1520. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/thread_id.rs +0 -0
  1521. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/time/handle.rs +0 -0
  1522. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/time/mod.rs +0 -0
  1523. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/time/tests/mod.rs +0 -0
  1524. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/time/wheel/mod.rs +0 -0
  1525. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/signal/reusable_box.rs +0 -0
  1526. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/signal/windows/stub.rs +0 -0
  1527. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/signal/windows/sys.rs +0 -0
  1528. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/barrier.rs +0 -0
  1529. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/mod.rs +0 -0
  1530. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/mpsc/block.rs +0 -0
  1531. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/mpsc/chan.rs +0 -0
  1532. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/mpsc/list.rs +0 -0
  1533. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/notify.rs +0 -0
  1534. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/once_cell.rs +0 -0
  1535. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/rwlock/owned_read_guard.rs +0 -0
  1536. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/rwlock/owned_write_guard.rs +0 -0
  1537. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/rwlock/owned_write_guard_mapped.rs +0 -0
  1538. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/rwlock/read_guard.rs +0 -0
  1539. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/rwlock/write_guard.rs +0 -0
  1540. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/rwlock/write_guard_mapped.rs +0 -0
  1541. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/task/atomic_waker.rs +0 -0
  1542. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/task/mod.rs +0 -0
  1543. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/tests/atomic_waker.rs +0 -0
  1544. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/tests/loom_atomic_waker.rs +0 -0
  1545. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/tests/loom_broadcast.rs +0 -0
  1546. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/tests/loom_list.rs +0 -0
  1547. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/tests/loom_mpsc.rs +0 -0
  1548. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/tests/loom_notify.rs +0 -0
  1549. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/tests/loom_oneshot.rs +0 -0
  1550. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/tests/loom_rwlock.rs +0 -0
  1551. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/tests/loom_semaphore_batch.rs +0 -0
  1552. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/tests/loom_watch.rs +0 -0
  1553. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/tests/mod.rs +0 -0
  1554. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/tests/notify.rs +0 -0
  1555. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/tests/semaphore_batch.rs +0 -0
  1556. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/task/blocking.rs +0 -0
  1557. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/task/builder.rs +0 -0
  1558. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/task/consume_budget.rs +0 -0
  1559. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/task/spawn.rs +0 -0
  1560. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/task/task_local.rs +0 -0
  1561. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/task/unconstrained.rs +0 -0
  1562. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/task/yield_now.rs +0 -0
  1563. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/time/clock.rs +0 -0
  1564. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/time/error.rs +0 -0
  1565. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/time/instant.rs +0 -0
  1566. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/time/interval.rs +0 -0
  1567. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/time/mod.rs +0 -0
  1568. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/time/sleep.rs +0 -0
  1569. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/time/timeout.rs +0 -0
  1570. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/util/atomic_cell.rs +0 -0
  1571. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/util/bit.rs +0 -0
  1572. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/util/cacheline.rs +0 -0
  1573. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/util/error.rs +0 -0
  1574. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/util/linked_list.rs +0 -0
  1575. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/util/markers.rs +0 -0
  1576. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/util/memchr.rs +0 -0
  1577. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/util/mod.rs +0 -0
  1578. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/util/once_cell.rs +0 -0
  1579. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/util/rand/rt.rs +0 -0
  1580. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/util/rand/rt_unstable.rs +0 -0
  1581. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/util/rc_cell.rs +0 -0
  1582. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/util/sync_wrapper.rs +0 -0
  1583. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/util/trace.rs +0 -0
  1584. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/util/try_lock.rs +0 -0
  1585. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/util/wake.rs +0 -0
  1586. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/util/wake_list.rs +0 -0
  1587. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/_require_full.rs +0 -0
  1588. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/async_send_sync.rs +0 -0
  1589. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/buffered.rs +0 -0
  1590. /data/ext/cargo-vendor/{tokio-1.35.1/tests/coop_budger.rs → tokio-1.36.0/tests/coop_budget.rs} +0 -0
  1591. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/dump.rs +0 -0
  1592. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/duplex_stream.rs +0 -0
  1593. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/fs.rs +0 -0
  1594. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/fs_canonicalize_dir.rs +0 -0
  1595. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/fs_copy.rs +0 -0
  1596. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/fs_dir.rs +0 -0
  1597. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/fs_file.rs +0 -0
  1598. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/fs_link.rs +0 -0
  1599. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/fs_open_options.rs +0 -0
  1600. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/fs_open_options_windows.rs +0 -0
  1601. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/fs_remove_dir_all.rs +0 -0
  1602. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/fs_remove_file.rs +0 -0
  1603. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/fs_rename.rs +0 -0
  1604. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/fs_symlink_dir_windows.rs +0 -0
  1605. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/fs_symlink_file_windows.rs +0 -0
  1606. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/fs_try_exists.rs +0 -0
  1607. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_async_read.rs +0 -0
  1608. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_buf_reader.rs +0 -0
  1609. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_buf_writer.rs +0 -0
  1610. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_chain.rs +0 -0
  1611. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_driver.rs +0 -0
  1612. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_driver_drop.rs +0 -0
  1613. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_fill_buf.rs +0 -0
  1614. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_lines.rs +0 -0
  1615. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_mem_stream.rs +0 -0
  1616. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_read.rs +0 -0
  1617. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_read_buf.rs +0 -0
  1618. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_read_exact.rs +0 -0
  1619. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_read_line.rs +0 -0
  1620. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_read_to_end.rs +0 -0
  1621. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_read_to_string.rs +0 -0
  1622. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_read_until.rs +0 -0
  1623. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_split.rs +0 -0
  1624. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_take.rs +0 -0
  1625. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_util_empty.rs +0 -0
  1626. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_write.rs +0 -0
  1627. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_write_all.rs +0 -0
  1628. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_write_all_buf.rs +0 -0
  1629. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_write_buf.rs +0 -0
  1630. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_write_int.rs +0 -0
  1631. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/macros_join.rs +0 -0
  1632. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/macros_pin.rs +0 -0
  1633. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/macros_rename_test.rs +0 -0
  1634. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/macros_select.rs +0 -0
  1635. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/net_bind_resource.rs +0 -0
  1636. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/net_lookup_host.rs +0 -0
  1637. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/no_rt.rs +0 -0
  1638. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/process_arg0.rs +0 -0
  1639. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/process_issue_42.rs +0 -0
  1640. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/process_kill_on_drop.rs +0 -0
  1641. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/process_raw_handle.rs +0 -0
  1642. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/process_smoke.rs +0 -0
  1643. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/rt_common.rs +0 -0
  1644. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/rt_handle_block_on.rs +0 -0
  1645. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/rt_metrics.rs +0 -0
  1646. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/rt_threaded.rs +0 -0
  1647. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/rt_threaded_alt.rs +0 -0
  1648. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/signal_ctrl_c.rs +0 -0
  1649. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/signal_drop_recv.rs +0 -0
  1650. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/signal_drop_rt.rs +0 -0
  1651. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/signal_drop_signal.rs +0 -0
  1652. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/signal_multi_rt.rs +0 -0
  1653. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/signal_no_rt.rs +0 -0
  1654. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/signal_notify_both.rs +0 -0
  1655. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/signal_twice.rs +0 -0
  1656. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/signal_usr1.rs +0 -0
  1657. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/support/io_vec.rs +0 -0
  1658. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/support/leaked_buffers.rs +0 -0
  1659. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/support/mpsc_stream.rs +0 -0
  1660. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/support/panic.rs +0 -0
  1661. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/support/signal.rs +0 -0
  1662. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/sync_barrier.rs +0 -0
  1663. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/sync_broadcast.rs +0 -0
  1664. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/sync_errors.rs +0 -0
  1665. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/sync_mpsc_weak.rs +0 -0
  1666. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/sync_mutex.rs +0 -0
  1667. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/sync_mutex_owned.rs +0 -0
  1668. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/sync_notify.rs +0 -0
  1669. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/sync_once_cell.rs +0 -0
  1670. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/sync_oneshot.rs +0 -0
  1671. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/sync_rwlock.rs +0 -0
  1672. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/sync_semaphore.rs +0 -0
  1673. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/sync_semaphore_owned.rs +0 -0
  1674. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/task_abort.rs +0 -0
  1675. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/task_blocking.rs +0 -0
  1676. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/task_builder.rs +0 -0
  1677. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/task_local_set.rs +0 -0
  1678. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/task_yield_now.rs +0 -0
  1679. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/tcp_accept.rs +0 -0
  1680. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/tcp_connect.rs +0 -0
  1681. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/tcp_echo.rs +0 -0
  1682. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/tcp_into_std.rs +0 -0
  1683. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/tcp_peek.rs +0 -0
  1684. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/tcp_shutdown.rs +0 -0
  1685. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/tcp_socket.rs +0 -0
  1686. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/tcp_split.rs +0 -0
  1687. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/tcp_stream.rs +0 -0
  1688. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/test_clock.rs +0 -0
  1689. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/time_interval.rs +0 -0
  1690. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/time_rt.rs +0 -0
  1691. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/time_sleep.rs +0 -0
  1692. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/time_timeout.rs +0 -0
  1693. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/udp.rs +0 -0
  1694. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/uds_cred.rs +0 -0
  1695. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/uds_datagram.rs +0 -0
  1696. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/uds_split.rs +0 -0
  1697. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/uds_stream.rs +0 -0
  1698. /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/unwindsafe.rs +0 -0
  1699. /data/ext/cargo-vendor/{wasi-cap-std-sync-17.0.0 → wasi-common-18.0.3}/LICENSE +0 -0
  1700. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/README.md +0 -0
  1701. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/WASI/README.md +0 -0
  1702. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/WASI/docs/README.md +0 -0
  1703. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/WASI/phases/README.md +0 -0
  1704. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/WASI/phases/ephemeral/docs.md +0 -0
  1705. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/WASI/phases/ephemeral/witx/typenames.witx +0 -0
  1706. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/WASI/phases/ephemeral/witx/wasi_ephemeral_args.witx +0 -0
  1707. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/WASI/phases/ephemeral/witx/wasi_ephemeral_clock.witx +0 -0
  1708. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/WASI/phases/ephemeral/witx/wasi_ephemeral_environ.witx +0 -0
  1709. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/WASI/phases/ephemeral/witx/wasi_ephemeral_fd.witx +0 -0
  1710. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/WASI/phases/ephemeral/witx/wasi_ephemeral_path.witx +0 -0
  1711. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/WASI/phases/ephemeral/witx/wasi_ephemeral_poll.witx +0 -0
  1712. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/WASI/phases/ephemeral/witx/wasi_ephemeral_proc.witx +0 -0
  1713. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/WASI/phases/ephemeral/witx/wasi_ephemeral_random.witx +0 -0
  1714. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/WASI/phases/ephemeral/witx/wasi_ephemeral_sched.witx +0 -0
  1715. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/WASI/phases/ephemeral/witx/wasi_ephemeral_sock.witx +0 -0
  1716. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/WASI/phases/old/snapshot_0/docs.md +0 -0
  1717. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/WASI/phases/old/snapshot_0/witx/typenames.witx +0 -0
  1718. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/WASI/phases/old/snapshot_0/witx/wasi_unstable.witx +0 -0
  1719. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/WASI/phases/snapshot/docs.html +0 -0
  1720. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/WASI/phases/snapshot/docs.md +0 -0
  1721. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/WASI/phases/snapshot/witx/typenames.witx +0 -0
  1722. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/WASI/phases/snapshot/witx/wasi_snapshot_preview1.witx +0 -0
  1723. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/WASI/proposal-template/README.md +0 -0
  1724. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/WASI/proposals/README.md +0 -0
  1725. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/WASI/snapshots/README.md +0 -0
  1726. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/WASI/standard/README.md +0 -0
  1727. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/build.rs +0 -0
  1728. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/src/clocks.rs +0 -0
  1729. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/src/ctx.rs +0 -0
  1730. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/src/dir.rs +0 -0
  1731. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/src/error.rs +0 -0
  1732. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/src/file.rs +0 -0
  1733. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/src/pipe.rs +0 -0
  1734. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/src/random.rs +0 -0
  1735. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/src/sched/subscription.rs +0 -0
  1736. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/src/sched.rs +0 -0
  1737. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/src/snapshots/mod.rs +0 -0
  1738. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/src/snapshots/preview_0.rs +0 -0
  1739. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/src/snapshots/preview_1/error.rs +0 -0
  1740. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/src/snapshots/preview_1.rs +0 -0
  1741. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/src/string_array.rs +0 -0
  1742. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasi-common-18.0.3}/src/table.rs +0 -0
  1743. /data/ext/cargo-vendor/{wasi-common-17.0.0 → wasm-encoder-0.201.0}/LICENSE +0 -0
  1744. /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/README.md +0 -0
  1745. /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/component/aliases.rs +0 -0
  1746. /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/component/builder.rs +0 -0
  1747. /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/component/canonicals.rs +0 -0
  1748. /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/component/components.rs +0 -0
  1749. /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/component/exports.rs +0 -0
  1750. /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/component/imports.rs +0 -0
  1751. /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/component/instances.rs +0 -0
  1752. /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/component/modules.rs +0 -0
  1753. /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/component/start.rs +0 -0
  1754. /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/component.rs +0 -0
  1755. /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/core/custom.rs +0 -0
  1756. /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/core/data.rs +0 -0
  1757. /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/core/dump.rs +0 -0
  1758. /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/core/elements.rs +0 -0
  1759. /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/core/exports.rs +0 -0
  1760. /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/core/functions.rs +0 -0
  1761. /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/core/globals.rs +0 -0
  1762. /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/core/imports.rs +0 -0
  1763. /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/core/linking.rs +0 -0
  1764. /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/core/memories.rs +0 -0
  1765. /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/core/producers.rs +0 -0
  1766. /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/core/start.rs +0 -0
  1767. /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/core/tables.rs +0 -0
  1768. /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/core/tags.rs +0 -0
  1769. /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/core.rs +0 -0
  1770. /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/lib.rs +0 -0
  1771. /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/raw.rs +0 -0
  1772. /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.41.2}/LICENSE +0 -0
  1773. /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.41.2}/src/component/names.rs +0 -0
  1774. /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/LICENSE +0 -0
  1775. /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/examples/simple.rs +0 -0
  1776. /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/parser.rs +0 -0
  1777. /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/component/aliases.rs +0 -0
  1778. /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/component/canonicals.rs +0 -0
  1779. /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/component/exports.rs +0 -0
  1780. /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/component/imports.rs +0 -0
  1781. /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/component/instances.rs +0 -0
  1782. /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/component/names.rs +0 -0
  1783. /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/component/start.rs +0 -0
  1784. /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/component/types.rs +0 -0
  1785. /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/component.rs +0 -0
  1786. /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/core/code.rs +0 -0
  1787. /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/core/coredumps.rs +0 -0
  1788. /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/core/custom.rs +0 -0
  1789. /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/core/data.rs +0 -0
  1790. /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/core/elements.rs +0 -0
  1791. /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/core/exports.rs +0 -0
  1792. /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/core/functions.rs +0 -0
  1793. /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/core/globals.rs +0 -0
  1794. /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/core/imports.rs +0 -0
  1795. /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/core/init.rs +0 -0
  1796. /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/core/memories.rs +0 -0
  1797. /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/core/producers.rs +0 -0
  1798. /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/core/tables.rs +0 -0
  1799. /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/core/tags.rs +0 -0
  1800. /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/core/types/matches.rs +0 -0
  1801. /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers.rs +0 -0
  1802. /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/tests/big-module.rs +0 -0
  1803. /data/ext/cargo-vendor/{wasmprinter-0.2.75 → wasmprinter-0.2.80}/LICENSE +0 -0
  1804. /data/ext/cargo-vendor/{wasmprinter-0.2.75 → wasmprinter-0.2.80}/README.md +0 -0
  1805. /data/ext/cargo-vendor/{wasmtime-17.0.0 → wasmtime-18.0.3}/LICENSE +0 -0
  1806. /data/ext/cargo-vendor/{wasmtime-17.0.0 → wasmtime-18.0.3}/README.md +0 -0
  1807. /data/ext/cargo-vendor/{wasmtime-17.0.0/src → wasmtime-18.0.3/src/runtime}/component/func/options.rs +0 -0
  1808. /data/ext/cargo-vendor/{wasmtime-17.0.0/src → wasmtime-18.0.3/src/runtime}/component/func/typed.rs +0 -0
  1809. /data/ext/cargo-vendor/{wasmtime-17.0.0/src → wasmtime-18.0.3/src/runtime}/component/matching.rs +0 -0
  1810. /data/ext/cargo-vendor/{wasmtime-17.0.0/src → wasmtime-18.0.3/src/runtime}/component/mod.rs +0 -0
  1811. /data/ext/cargo-vendor/{wasmtime-17.0.0/src → wasmtime-18.0.3/src/runtime}/component/resources.rs +0 -0
  1812. /data/ext/cargo-vendor/{wasmtime-17.0.0/src → wasmtime-18.0.3/src/runtime}/component/storage.rs +0 -0
  1813. /data/ext/cargo-vendor/{wasmtime-17.0.0/src → wasmtime-18.0.3/src/runtime}/component/store.rs +0 -0
  1814. /data/ext/cargo-vendor/{wasmtime-17.0.0/src → wasmtime-18.0.3/src/runtime}/coredump.rs +0 -0
  1815. /data/ext/cargo-vendor/{wasmtime-17.0.0/src → wasmtime-18.0.3/src/runtime}/externals/global.rs +0 -0
  1816. /data/ext/cargo-vendor/{wasmtime-17.0.0/src → wasmtime-18.0.3/src/runtime}/externals/table.rs +0 -0
  1817. /data/ext/cargo-vendor/{wasmtime-17.0.0/src → wasmtime-18.0.3/src/runtime}/externals.rs +0 -0
  1818. /data/ext/cargo-vendor/{wasmtime-17.0.0/src → wasmtime-18.0.3/src/runtime}/limits.rs +0 -0
  1819. /data/ext/cargo-vendor/{wasmtime-17.0.0/src → wasmtime-18.0.3/src/runtime}/ref.rs +0 -0
  1820. /data/ext/cargo-vendor/{wasmtime-17.0.0/src → wasmtime-18.0.3/src/runtime}/resources.rs +0 -0
  1821. /data/ext/cargo-vendor/{wasmtime-17.0.0/src → wasmtime-18.0.3/src/runtime}/signatures.rs +0 -0
  1822. /data/ext/cargo-vendor/{wasmtime-17.0.0/src → wasmtime-18.0.3/src/runtime}/stack.rs +0 -0
  1823. /data/ext/cargo-vendor/{wasmtime-17.0.0/src → wasmtime-18.0.3/src/runtime}/store/context.rs +0 -0
  1824. /data/ext/cargo-vendor/{wasmtime-17.0.0/src → wasmtime-18.0.3/src/runtime}/store/data.rs +0 -0
  1825. /data/ext/cargo-vendor/{wasmtime-17.0.0/src → wasmtime-18.0.3/src/runtime}/store/func_refs.rs +0 -0
  1826. /data/ext/cargo-vendor/{wasmtime-17.0.0/src → wasmtime-18.0.3/src/runtime}/trampoline/global.rs +0 -0
  1827. /data/ext/cargo-vendor/{wasmtime-17.0.0/src → wasmtime-18.0.3/src/runtime}/unix.rs +0 -0
  1828. /data/ext/cargo-vendor/{wasmtime-17.0.0/src → wasmtime-18.0.3/src/runtime}/v128.rs +0 -0
  1829. /data/ext/cargo-vendor/{wasmtime-17.0.0/src → wasmtime-18.0.3/src/runtime}/values.rs +0 -0
  1830. /data/ext/cargo-vendor/{wasmtime-17.0.0/src → wasmtime-18.0.3/src/runtime}/windows.rs +0 -0
  1831. /data/ext/cargo-vendor/{wasmtime-asm-macros-17.0.0 → wasmtime-asm-macros-18.0.3}/src/lib.rs +0 -0
  1832. /data/ext/cargo-vendor/{wasmtime-cache-17.0.0 → wasmtime-cache-18.0.3}/LICENSE +0 -0
  1833. /data/ext/cargo-vendor/{wasmtime-cache-17.0.0 → wasmtime-cache-18.0.3}/build.rs +0 -0
  1834. /data/ext/cargo-vendor/{wasmtime-cache-17.0.0 → wasmtime-cache-18.0.3}/src/config/tests.rs +0 -0
  1835. /data/ext/cargo-vendor/{wasmtime-cache-17.0.0 → wasmtime-cache-18.0.3}/src/config.rs +0 -0
  1836. /data/ext/cargo-vendor/{wasmtime-cache-17.0.0 → wasmtime-cache-18.0.3}/src/lib.rs +0 -0
  1837. /data/ext/cargo-vendor/{wasmtime-cache-17.0.0 → wasmtime-cache-18.0.3}/src/tests.rs +0 -0
  1838. /data/ext/cargo-vendor/{wasmtime-cache-17.0.0 → wasmtime-cache-18.0.3}/src/worker/tests/system_time_stub.rs +0 -0
  1839. /data/ext/cargo-vendor/{wasmtime-cache-17.0.0 → wasmtime-cache-18.0.3}/src/worker/tests.rs +0 -0
  1840. /data/ext/cargo-vendor/{wasmtime-cache-17.0.0 → wasmtime-cache-18.0.3}/src/worker.rs +0 -0
  1841. /data/ext/cargo-vendor/{wasmtime-cache-17.0.0 → wasmtime-cache-18.0.3}/tests/cache_write_default_config.rs +0 -0
  1842. /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.0 → wasmtime-component-macro-18.0.3}/src/component.rs +0 -0
  1843. /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.0 → wasmtime-component-macro-18.0.3}/src/lib.rs +0 -0
  1844. /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.0 → wasmtime-component-macro-18.0.3}/tests/codegen/char.wit +0 -0
  1845. /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.0 → wasmtime-component-macro-18.0.3}/tests/codegen/conventions.wit +0 -0
  1846. /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.0 → wasmtime-component-macro-18.0.3}/tests/codegen/direct-import.wit +0 -0
  1847. /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.0 → wasmtime-component-macro-18.0.3}/tests/codegen/empty.wit +0 -0
  1848. /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.0 → wasmtime-component-macro-18.0.3}/tests/codegen/flags.wit +0 -0
  1849. /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.0 → wasmtime-component-macro-18.0.3}/tests/codegen/floats.wit +0 -0
  1850. /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.0 → wasmtime-component-macro-18.0.3}/tests/codegen/function-new.wit +0 -0
  1851. /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.0 → wasmtime-component-macro-18.0.3}/tests/codegen/integers.wit +0 -0
  1852. /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.0 → wasmtime-component-macro-18.0.3}/tests/codegen/lists.wit +0 -0
  1853. /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.0 → wasmtime-component-macro-18.0.3}/tests/codegen/many-arguments.wit +0 -0
  1854. /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.0 → wasmtime-component-macro-18.0.3}/tests/codegen/multi-return.wit +0 -0
  1855. /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.0 → wasmtime-component-macro-18.0.3}/tests/codegen/multiversion/deps/v1/root.wit +0 -0
  1856. /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.0 → wasmtime-component-macro-18.0.3}/tests/codegen/multiversion/deps/v2/root.wit +0 -0
  1857. /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.0 → wasmtime-component-macro-18.0.3}/tests/codegen/multiversion/root.wit +0 -0
  1858. /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.0 → wasmtime-component-macro-18.0.3}/tests/codegen/records.wit +0 -0
  1859. /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.0 → wasmtime-component-macro-18.0.3}/tests/codegen/rename.wit +0 -0
  1860. /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.0 → wasmtime-component-macro-18.0.3}/tests/codegen/resources-export.wit +0 -0
  1861. /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.0 → wasmtime-component-macro-18.0.3}/tests/codegen/resources-import.wit +0 -0
  1862. /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.0 → wasmtime-component-macro-18.0.3}/tests/codegen/share-types.wit +0 -0
  1863. /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.0 → wasmtime-component-macro-18.0.3}/tests/codegen/simple-functions.wit +0 -0
  1864. /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.0 → wasmtime-component-macro-18.0.3}/tests/codegen/simple-lists.wit +0 -0
  1865. /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.0 → wasmtime-component-macro-18.0.3}/tests/codegen/simple-wasi.wit +0 -0
  1866. /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.0 → wasmtime-component-macro-18.0.3}/tests/codegen/small-anonymous.wit +0 -0
  1867. /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.0 → wasmtime-component-macro-18.0.3}/tests/codegen/smoke-default.wit +0 -0
  1868. /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.0 → wasmtime-component-macro-18.0.3}/tests/codegen/smoke-export.wit +0 -0
  1869. /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.0 → wasmtime-component-macro-18.0.3}/tests/codegen/smoke.wit +0 -0
  1870. /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.0 → wasmtime-component-macro-18.0.3}/tests/codegen/strings.wit +0 -0
  1871. /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.0 → wasmtime-component-macro-18.0.3}/tests/codegen/use-paths.wit +0 -0
  1872. /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.0 → wasmtime-component-macro-18.0.3}/tests/codegen/variants.wit +0 -0
  1873. /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.0 → wasmtime-component-macro-18.0.3}/tests/codegen/worlds-with-types.wit +0 -0
  1874. /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.0 → wasmtime-component-macro-18.0.3}/tests/codegen.rs +0 -0
  1875. /data/ext/cargo-vendor/{wasmtime-component-util-17.0.0 → wasmtime-component-util-18.0.3}/src/lib.rs +0 -0
  1876. /data/ext/cargo-vendor/{wasmtime-cranelift-17.0.0 → wasmtime-cranelift-18.0.3}/LICENSE +0 -0
  1877. /data/ext/cargo-vendor/{wasmtime-cranelift-17.0.0 → wasmtime-cranelift-18.0.3}/SECURITY.md +0 -0
  1878. /data/ext/cargo-vendor/{wasmtime-cranelift-17.0.0 → wasmtime-cranelift-18.0.3}/src/debug/gc.rs +0 -0
  1879. /data/ext/cargo-vendor/{wasmtime-cranelift-17.0.0 → wasmtime-cranelift-18.0.3}/src/debug/transform/address_transform.rs +0 -0
  1880. /data/ext/cargo-vendor/{wasmtime-cranelift-17.0.0 → wasmtime-cranelift-18.0.3}/src/debug/transform/attr.rs +0 -0
  1881. /data/ext/cargo-vendor/{wasmtime-cranelift-17.0.0 → wasmtime-cranelift-18.0.3}/src/debug/transform/expression.rs +0 -0
  1882. /data/ext/cargo-vendor/{wasmtime-cranelift-17.0.0 → wasmtime-cranelift-18.0.3}/src/debug/transform/line_program.rs +0 -0
  1883. /data/ext/cargo-vendor/{wasmtime-cranelift-17.0.0 → wasmtime-cranelift-18.0.3}/src/debug/transform/mod.rs +0 -0
  1884. /data/ext/cargo-vendor/{wasmtime-cranelift-17.0.0 → wasmtime-cranelift-18.0.3}/src/debug/transform/range_info_builder.rs +0 -0
  1885. /data/ext/cargo-vendor/{wasmtime-cranelift-17.0.0 → wasmtime-cranelift-18.0.3}/src/debug/transform/refs.rs +0 -0
  1886. /data/ext/cargo-vendor/{wasmtime-cranelift-17.0.0 → wasmtime-cranelift-18.0.3}/src/debug/transform/unit.rs +0 -0
  1887. /data/ext/cargo-vendor/{wasmtime-cranelift-17.0.0 → wasmtime-cranelift-18.0.3}/src/debug/transform/utils.rs +0 -0
  1888. /data/ext/cargo-vendor/{wasmtime-cranelift-17.0.0 → wasmtime-cranelift-18.0.3}/src/debug/write_debuginfo.rs +0 -0
  1889. /data/ext/cargo-vendor/{wasmtime-cranelift-17.0.0 → wasmtime-cranelift-18.0.3}/src/debug.rs +0 -0
  1890. /data/ext/cargo-vendor/{wasmtime-cranelift-shared-17.0.0 → wasmtime-cranelift-shared-18.0.3}/src/compiled_function.rs +0 -0
  1891. /data/ext/cargo-vendor/{wasmtime-cranelift-shared-17.0.0 → wasmtime-cranelift-shared-18.0.3}/src/lib.rs +0 -0
  1892. /data/ext/cargo-vendor/{wasmtime-cranelift-shared-17.0.0 → wasmtime-cranelift-shared-18.0.3}/src/obj.rs +0 -0
  1893. /data/ext/cargo-vendor/{wasmtime-environ-17.0.0 → wasmtime-environ-18.0.3}/LICENSE +0 -0
  1894. /data/ext/cargo-vendor/{wasmtime-environ-17.0.0 → wasmtime-environ-18.0.3}/examples/factc.rs +0 -0
  1895. /data/ext/cargo-vendor/{wasmtime-environ-17.0.0 → wasmtime-environ-18.0.3}/src/address_map.rs +0 -0
  1896. /data/ext/cargo-vendor/{wasmtime-environ-17.0.0 → wasmtime-environ-18.0.3}/src/builtin.rs +0 -0
  1897. /data/ext/cargo-vendor/{wasmtime-environ-17.0.0 → wasmtime-environ-18.0.3}/src/compilation.rs +0 -0
  1898. /data/ext/cargo-vendor/{wasmtime-environ-17.0.0 → wasmtime-environ-18.0.3}/src/component/compiler.rs +0 -0
  1899. /data/ext/cargo-vendor/{wasmtime-environ-17.0.0 → wasmtime-environ-18.0.3}/src/component/translate/adapt.rs +0 -0
  1900. /data/ext/cargo-vendor/{wasmtime-environ-17.0.0 → wasmtime-environ-18.0.3}/src/component/types/resources.rs +0 -0
  1901. /data/ext/cargo-vendor/{wasmtime-environ-17.0.0 → wasmtime-environ-18.0.3}/src/component/vmcomponent_offsets.rs +0 -0
  1902. /data/ext/cargo-vendor/{wasmtime-jit-17.0.0 → wasmtime-environ-18.0.3}/src/demangling.rs +0 -0
  1903. /data/ext/cargo-vendor/{wasmtime-environ-17.0.0 → wasmtime-environ-18.0.3}/src/fact/core_types.rs +0 -0
  1904. /data/ext/cargo-vendor/{wasmtime-environ-17.0.0 → wasmtime-environ-18.0.3}/src/fact/signature.rs +0 -0
  1905. /data/ext/cargo-vendor/{wasmtime-environ-17.0.0 → wasmtime-environ-18.0.3}/src/fact/trampoline.rs +0 -0
  1906. /data/ext/cargo-vendor/{wasmtime-environ-17.0.0 → wasmtime-environ-18.0.3}/src/fact/transcode.rs +0 -0
  1907. /data/ext/cargo-vendor/{wasmtime-environ-17.0.0 → wasmtime-environ-18.0.3}/src/fact/traps.rs +0 -0
  1908. /data/ext/cargo-vendor/{wasmtime-environ-17.0.0 → wasmtime-environ-18.0.3}/src/fact.rs +0 -0
  1909. /data/ext/cargo-vendor/{wasmtime-environ-17.0.0 → wasmtime-environ-18.0.3}/src/obj.rs +0 -0
  1910. /data/ext/cargo-vendor/{wasmtime-environ-17.0.0 → wasmtime-environ-18.0.3}/src/ref_bits.rs +0 -0
  1911. /data/ext/cargo-vendor/{wasmtime-environ-17.0.0 → wasmtime-environ-18.0.3}/src/scopevec.rs +0 -0
  1912. /data/ext/cargo-vendor/{wasmtime-environ-17.0.0 → wasmtime-environ-18.0.3}/src/stack_map.rs +0 -0
  1913. /data/ext/cargo-vendor/{wasmtime-environ-17.0.0 → wasmtime-environ-18.0.3}/src/trap_encoding.rs +0 -0
  1914. /data/ext/cargo-vendor/{wasmtime-fiber-17.0.0 → wasmtime-fiber-18.0.3}/LICENSE +0 -0
  1915. /data/ext/cargo-vendor/{wasmtime-fiber-17.0.0 → wasmtime-fiber-18.0.3}/build.rs +0 -0
  1916. /data/ext/cargo-vendor/{wasmtime-fiber-17.0.0 → wasmtime-fiber-18.0.3}/src/lib.rs +0 -0
  1917. /data/ext/cargo-vendor/{wasmtime-fiber-17.0.0 → wasmtime-fiber-18.0.3}/src/unix/aarch64.rs +0 -0
  1918. /data/ext/cargo-vendor/{wasmtime-fiber-17.0.0 → wasmtime-fiber-18.0.3}/src/unix/arm.rs +0 -0
  1919. /data/ext/cargo-vendor/{wasmtime-fiber-17.0.0 → wasmtime-fiber-18.0.3}/src/unix/riscv64.rs +0 -0
  1920. /data/ext/cargo-vendor/{wasmtime-fiber-17.0.0 → wasmtime-fiber-18.0.3}/src/unix/s390x.S +0 -0
  1921. /data/ext/cargo-vendor/{wasmtime-fiber-17.0.0 → wasmtime-fiber-18.0.3}/src/unix/x86.rs +0 -0
  1922. /data/ext/cargo-vendor/{wasmtime-fiber-17.0.0 → wasmtime-fiber-18.0.3}/src/unix/x86_64.rs +0 -0
  1923. /data/ext/cargo-vendor/{wasmtime-fiber-17.0.0 → wasmtime-fiber-18.0.3}/src/unix.rs +0 -0
  1924. /data/ext/cargo-vendor/{wasmtime-fiber-17.0.0 → wasmtime-fiber-18.0.3}/src/windows.c +0 -0
  1925. /data/ext/cargo-vendor/{wasmtime-fiber-17.0.0 → wasmtime-fiber-18.0.3}/src/windows.rs +0 -0
  1926. /data/ext/cargo-vendor/{wasmtime-jit-debug-17.0.0 → wasmtime-jit-debug-18.0.3}/README.md +0 -0
  1927. /data/ext/cargo-vendor/{wasmtime-jit-debug-17.0.0 → wasmtime-jit-debug-18.0.3}/src/gdb_jit_int.rs +0 -0
  1928. /data/ext/cargo-vendor/{wasmtime-jit-debug-17.0.0 → wasmtime-jit-debug-18.0.3}/src/lib.rs +0 -0
  1929. /data/ext/cargo-vendor/{wasmtime-jit-debug-17.0.0 → wasmtime-jit-debug-18.0.3}/src/perf_jitdump.rs +0 -0
  1930. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-17.0.0 → wasmtime-jit-icache-coherence-18.0.3}/src/lib.rs +0 -0
  1931. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-17.0.0 → wasmtime-jit-icache-coherence-18.0.3}/src/libc.rs +0 -0
  1932. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-17.0.0 → wasmtime-jit-icache-coherence-18.0.3}/src/miri.rs +0 -0
  1933. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-17.0.0 → wasmtime-jit-icache-coherence-18.0.3}/src/win.rs +0 -0
  1934. /data/ext/cargo-vendor/{wasmtime-jit-17.0.0 → wasmtime-runtime-18.0.3}/LICENSE +0 -0
  1935. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/build.rs +0 -0
  1936. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/proptest-regressions/instance/allocator/pooling/memory_pool.txt +0 -0
  1937. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/arch/aarch64.rs +0 -0
  1938. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/arch/mod.rs +0 -0
  1939. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/arch/riscv64.rs +0 -0
  1940. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/arch/s390x.S +0 -0
  1941. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/arch/s390x.rs +0 -0
  1942. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/arch/x86_64.rs +0 -0
  1943. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/component/libcalls.rs +0 -0
  1944. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/component/resources.rs +0 -0
  1945. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/cow.rs +0 -0
  1946. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/debug_builtins.rs +0 -0
  1947. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/export.rs +0 -0
  1948. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/externref.rs +0 -0
  1949. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/helpers.c +0 -0
  1950. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/imports.rs +0 -0
  1951. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/instance/allocator/on_demand.rs +0 -0
  1952. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/instance/allocator/pooling/index_allocator.rs +0 -0
  1953. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/instance/allocator/pooling/stack_pool.rs +0 -0
  1954. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/instance/allocator/pooling/table_pool.rs +0 -0
  1955. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/libcalls.rs +0 -0
  1956. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/memory.rs +0 -0
  1957. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/mmap.rs +0 -0
  1958. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/mmap_vec.rs +0 -0
  1959. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/module_id.rs +0 -0
  1960. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/mpk/disabled.rs +0 -0
  1961. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/mpk/mod.rs +0 -0
  1962. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/mpk/sys.rs +0 -0
  1963. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/parking_spot.rs +0 -0
  1964. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/send_sync_ptr.rs +0 -0
  1965. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/store_box.rs +0 -0
  1966. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/sys/miri/mmap.rs +0 -0
  1967. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/sys/miri/mod.rs +0 -0
  1968. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/sys/miri/traphandlers.rs +0 -0
  1969. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/sys/miri/unwind.rs +0 -0
  1970. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/sys/miri/vm.rs +0 -0
  1971. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/sys/mod.rs +0 -0
  1972. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/sys/unix/machports.rs +0 -0
  1973. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/sys/unix/macos_traphandlers.rs +0 -0
  1974. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/sys/unix/mmap.rs +0 -0
  1975. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/sys/unix/mod.rs +0 -0
  1976. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/sys/unix/unwind.rs +0 -0
  1977. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/sys/unix/vm.rs +0 -0
  1978. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/sys/windows/mmap.rs +0 -0
  1979. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/sys/windows/mod.rs +0 -0
  1980. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/sys/windows/traphandlers.rs +0 -0
  1981. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/sys/windows/unwind.rs +0 -0
  1982. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/sys/windows/vm.rs +0 -0
  1983. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/table.rs +0 -0
  1984. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/traphandlers/backtrace.rs +0 -0
  1985. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/traphandlers/coredump.rs +0 -0
  1986. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/traphandlers.rs +0 -0
  1987. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-runtime-18.0.3}/src/vmcontext/vm_host_func_context.rs +0 -0
  1988. /data/ext/cargo-vendor/{wasmtime-runtime-17.0.0 → wasmtime-types-18.0.3}/LICENSE +0 -0
  1989. /data/ext/cargo-vendor/{wasmtime-types-17.0.0 → wasmtime-types-18.0.3}/src/error.rs +0 -0
  1990. /data/ext/cargo-vendor/{wasmtime-versioned-export-macros-17.0.0 → wasmtime-versioned-export-macros-18.0.3}/src/lib.rs +0 -0
  1991. /data/ext/cargo-vendor/{wasmtime-types-17.0.0 → wasmtime-wasi-18.0.3}/LICENSE +0 -0
  1992. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/README.md +0 -0
  1993. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/src/preview2/command.rs +0 -0
  1994. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/src/preview2/host/env.rs +0 -0
  1995. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/src/preview2/host/exit.rs +0 -0
  1996. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/src/preview2/host/filesystem/sync.rs +0 -0
  1997. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/src/preview2/host/mod.rs +0 -0
  1998. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/src/preview2/mod.rs +0 -0
  1999. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/src/preview2/network.rs +0 -0
  2000. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/src/preview2/stdio/worker_thread_stdin.rs +0 -0
  2001. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/src/preview2/stream.rs +0 -0
  2002. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/src/preview2/tcp.rs +0 -0
  2003. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/src/preview2/udp.rs +0 -0
  2004. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/tests/all/async_.rs +0 -0
  2005. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/tests/all/preview1.rs +0 -0
  2006. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/tests/all/sync.rs +0 -0
  2007. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/tests/process_stdin.rs +0 -0
  2008. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/wit/command-extended.wit +0 -0
  2009. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/wit/deps/cli/command.wit +0 -0
  2010. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/wit/deps/cli/environment.wit +0 -0
  2011. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/wit/deps/cli/exit.wit +0 -0
  2012. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/wit/deps/cli/imports.wit +0 -0
  2013. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/wit/deps/cli/run.wit +0 -0
  2014. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/wit/deps/cli/stdio.wit +0 -0
  2015. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/wit/deps/cli/terminal.wit +0 -0
  2016. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/wit/deps/clocks/monotonic-clock.wit +0 -0
  2017. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/wit/deps/clocks/wall-clock.wit +0 -0
  2018. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/wit/deps/clocks/world.wit +0 -0
  2019. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/wit/deps/filesystem/preopens.wit +0 -0
  2020. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/wit/deps/filesystem/types.wit +0 -0
  2021. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/wit/deps/filesystem/world.wit +0 -0
  2022. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/wit/deps/http/handler.wit +0 -0
  2023. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/wit/deps/http/proxy.wit +0 -0
  2024. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/wit/deps/http/types.wit +0 -0
  2025. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/wit/deps/io/error.wit +0 -0
  2026. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/wit/deps/io/world.wit +0 -0
  2027. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/wit/deps/random/insecure-seed.wit +0 -0
  2028. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/wit/deps/random/insecure.wit +0 -0
  2029. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/wit/deps/random/random.wit +0 -0
  2030. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/wit/deps/random/world.wit +0 -0
  2031. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/wit/deps/sockets/instance-network.wit +0 -0
  2032. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/wit/deps/sockets/ip-name-lookup.wit +0 -0
  2033. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/wit/deps/sockets/network.wit +0 -0
  2034. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/wit/deps/sockets/tcp-create-socket.wit +0 -0
  2035. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/wit/deps/sockets/udp-create-socket.wit +0 -0
  2036. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/wit/deps/sockets/world.wit +0 -0
  2037. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/wit/test.wit +0 -0
  2038. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/witx/preview0/typenames.witx +0 -0
  2039. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/witx/preview0/wasi_unstable.witx +0 -0
  2040. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/witx/preview1/typenames.witx +0 -0
  2041. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wasmtime-wasi-18.0.3}/witx/preview1/wasi_snapshot_preview1.witx +0 -0
  2042. /data/ext/cargo-vendor/{wasmtime-winch-17.0.0 → wasmtime-winch-18.0.3}/LICENSE +0 -0
  2043. /data/ext/cargo-vendor/{wasmtime-winch-17.0.0 → wasmtime-winch-18.0.3}/src/lib.rs +0 -0
  2044. /data/ext/cargo-vendor/{wasmtime-wit-bindgen-17.0.0 → wasmtime-wit-bindgen-18.0.3}/src/rust.rs +0 -0
  2045. /data/ext/cargo-vendor/{wasmtime-wit-bindgen-17.0.0 → wasmtime-wit-bindgen-18.0.3}/src/source.rs +0 -0
  2046. /data/ext/cargo-vendor/{wasmtime-wit-bindgen-17.0.0 → wasmtime-wit-bindgen-18.0.3}/src/types.rs +0 -0
  2047. /data/ext/cargo-vendor/{wasmtime-wmemcheck-17.0.0 → wasmtime-wmemcheck-18.0.3}/src/lib.rs +0 -0
  2048. /data/ext/cargo-vendor/{wasmtime-wasi-17.0.0 → wast-201.0.0}/LICENSE +0 -0
  2049. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/README.md +0 -0
  2050. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/component/alias.rs +0 -0
  2051. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/component/binary.rs +0 -0
  2052. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/component/custom.rs +0 -0
  2053. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/component/expand.rs +0 -0
  2054. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/component/export.rs +0 -0
  2055. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/component/func.rs +0 -0
  2056. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/component/import.rs +0 -0
  2057. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/component/instance.rs +0 -0
  2058. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/component/item_ref.rs +0 -0
  2059. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/component/module.rs +0 -0
  2060. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/component/resolve.rs +0 -0
  2061. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/component/types.rs +0 -0
  2062. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/component/wast.rs +0 -0
  2063. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/component.rs +0 -0
  2064. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/core/export.rs +0 -0
  2065. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/core/func.rs +0 -0
  2066. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/core/global.rs +0 -0
  2067. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/core/import.rs +0 -0
  2068. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/core/resolve/mod.rs +0 -0
  2069. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/core/resolve/types.rs +0 -0
  2070. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/core/tag.rs +0 -0
  2071. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/core/wast.rs +0 -0
  2072. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/core.rs +0 -0
  2073. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/encode.rs +0 -0
  2074. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/error.rs +0 -0
  2075. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/gensym.rs +0 -0
  2076. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/wast.rs +0 -0
  2077. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/annotations.rs +0 -0
  2078. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/comments.rs +0 -0
  2079. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/bad-core-func-alias.wat +0 -0
  2080. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/bad-core-func-alias.wat.err +0 -0
  2081. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/bad-func-alias.wat +0 -0
  2082. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/bad-func-alias.wat.err +0 -0
  2083. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/bad-index.wat +0 -0
  2084. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/bad-index.wat.err +0 -0
  2085. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/bad-name.wat +0 -0
  2086. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/bad-name.wat.err +0 -0
  2087. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/bad-name2.wat +0 -0
  2088. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/bad-name2.wat.err +0 -0
  2089. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/bad-name3.wat +0 -0
  2090. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/bad-name3.wat.err +0 -0
  2091. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/block1.wat +0 -0
  2092. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/block1.wat.err +0 -0
  2093. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/block2.wat +0 -0
  2094. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/block2.wat.err +0 -0
  2095. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/block3.wat +0 -0
  2096. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/block3.wat.err +0 -0
  2097. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-block-comment0.wat +0 -0
  2098. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-block-comment0.wat.err +0 -0
  2099. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-block-comment1.wat +0 -0
  2100. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-block-comment1.wat.err +0 -0
  2101. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-block-comment2.wat +0 -0
  2102. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-block-comment2.wat.err +0 -0
  2103. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-block-comment3.wat +0 -0
  2104. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-block-comment3.wat.err +0 -0
  2105. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-block-comment4.wat +0 -0
  2106. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-block-comment4.wat.err +0 -0
  2107. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-block-comment5.wat +0 -0
  2108. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-block-comment5.wat.err +0 -0
  2109. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-block-comment6.wat +0 -0
  2110. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-block-comment6.wat.err +0 -0
  2111. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-block-comment7.wat +0 -0
  2112. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-block-comment7.wat.err +0 -0
  2113. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-block-comment8.wat +0 -0
  2114. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-block-comment8.wat.err +0 -0
  2115. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-line-comment0.wat +0 -0
  2116. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-line-comment0.wat.err +0 -0
  2117. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-line-comment1.wat +0 -0
  2118. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-line-comment1.wat.err +0 -0
  2119. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-line-comment2.wat +0 -0
  2120. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-line-comment2.wat.err +0 -0
  2121. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-line-comment3.wat +0 -0
  2122. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-line-comment3.wat.err +0 -0
  2123. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-line-comment4.wat +0 -0
  2124. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-line-comment4.wat.err +0 -0
  2125. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-line-comment5.wat +0 -0
  2126. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-line-comment5.wat.err +0 -0
  2127. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-line-comment6.wat +0 -0
  2128. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-line-comment6.wat.err +0 -0
  2129. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-line-comment7.wat +0 -0
  2130. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-line-comment7.wat.err +0 -0
  2131. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-line-comment8.wat +0 -0
  2132. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-line-comment8.wat.err +0 -0
  2133. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-string0.wat +0 -0
  2134. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-string0.wat.err +0 -0
  2135. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-string1.wat +0 -0
  2136. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-string1.wat.err +0 -0
  2137. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-string2.wat +0 -0
  2138. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-string2.wat.err +0 -0
  2139. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-string3.wat +0 -0
  2140. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-string3.wat.err +0 -0
  2141. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-string4.wat +0 -0
  2142. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-string4.wat.err +0 -0
  2143. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-string5.wat +0 -0
  2144. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-string5.wat.err +0 -0
  2145. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-string6.wat +0 -0
  2146. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-string6.wat.err +0 -0
  2147. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-string7.wat +0 -0
  2148. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-string7.wat.err +0 -0
  2149. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-string8.wat +0 -0
  2150. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-string8.wat.err +0 -0
  2151. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/inline1.wat +0 -0
  2152. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/inline1.wat.err +0 -0
  2153. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/newline-in-string.wat +0 -0
  2154. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/newline-in-string.wat.err +0 -0
  2155. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string1.wat +0 -0
  2156. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string1.wat.err +0 -0
  2157. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string10.wat +0 -0
  2158. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string10.wat.err +0 -0
  2159. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string11.wat +0 -0
  2160. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string11.wat.err +0 -0
  2161. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string12.wat +0 -0
  2162. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string12.wat.err +0 -0
  2163. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string13.wat +0 -0
  2164. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string13.wat.err +0 -0
  2165. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string14.wat +0 -0
  2166. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string14.wat.err +0 -0
  2167. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string15.wat +0 -0
  2168. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string15.wat.err +0 -0
  2169. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string16.wat +0 -0
  2170. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string16.wat.err +0 -0
  2171. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string2.wat +0 -0
  2172. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string2.wat.err +0 -0
  2173. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string3.wat +0 -0
  2174. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string3.wat.err +0 -0
  2175. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string4.wat +0 -0
  2176. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string4.wat.err +0 -0
  2177. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string5.wat +0 -0
  2178. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string5.wat.err +0 -0
  2179. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string6.wat +0 -0
  2180. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string6.wat.err +0 -0
  2181. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string7.wat +0 -0
  2182. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string7.wat.err +0 -0
  2183. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string8.wat +0 -0
  2184. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string8.wat.err +0 -0
  2185. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string9.wat +0 -0
  2186. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string9.wat.err +0 -0
  2187. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/unbalanced.wat +0 -0
  2188. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/unbalanced.wat.err +0 -0
  2189. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail.rs +0 -0
  2190. /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/recursive.rs +0 -0
  2191. /data/ext/cargo-vendor/{wast-69.0.1 → wat-1.201.0}/LICENSE +0 -0
  2192. /data/ext/cargo-vendor/{wat-1.0.82 → wat-1.201.0}/README.md +0 -0
  2193. /data/ext/cargo-vendor/{wat-1.0.82 → wiggle-18.0.3}/LICENSE +0 -0
  2194. /data/ext/cargo-vendor/{wiggle-17.0.0 → wiggle-18.0.3}/README.md +0 -0
  2195. /data/ext/cargo-vendor/{wiggle-17.0.0 → wiggle-18.0.3}/src/borrow.rs +0 -0
  2196. /data/ext/cargo-vendor/{wiggle-17.0.0 → wiggle-18.0.3}/src/error.rs +0 -0
  2197. /data/ext/cargo-vendor/{wiggle-17.0.0 → wiggle-18.0.3}/src/guest_type.rs +0 -0
  2198. /data/ext/cargo-vendor/{wiggle-17.0.0 → wiggle-18.0.3}/src/region.rs +0 -0
  2199. /data/ext/cargo-vendor/{wiggle-17.0.0 → wiggle-18.0.3}/src/wasmtime.rs +0 -0
  2200. /data/ext/cargo-vendor/{wiggle-17.0.0 → wiggle-generate-18.0.3}/LICENSE +0 -0
  2201. /data/ext/cargo-vendor/{wiggle-generate-17.0.0 → wiggle-generate-18.0.3}/README.md +0 -0
  2202. /data/ext/cargo-vendor/{wiggle-generate-17.0.0 → wiggle-generate-18.0.3}/src/codegen_settings.rs +0 -0
  2203. /data/ext/cargo-vendor/{wiggle-generate-17.0.0 → wiggle-generate-18.0.3}/src/config.rs +0 -0
  2204. /data/ext/cargo-vendor/{wiggle-generate-17.0.0 → wiggle-generate-18.0.3}/src/funcs.rs +0 -0
  2205. /data/ext/cargo-vendor/{wiggle-generate-17.0.0 → wiggle-generate-18.0.3}/src/lib.rs +0 -0
  2206. /data/ext/cargo-vendor/{wiggle-generate-17.0.0 → wiggle-generate-18.0.3}/src/lifetimes.rs +0 -0
  2207. /data/ext/cargo-vendor/{wiggle-generate-17.0.0 → wiggle-generate-18.0.3}/src/module_trait.rs +0 -0
  2208. /data/ext/cargo-vendor/{wiggle-generate-17.0.0 → wiggle-generate-18.0.3}/src/names.rs +0 -0
  2209. /data/ext/cargo-vendor/{wiggle-generate-17.0.0 → wiggle-generate-18.0.3}/src/types/error.rs +0 -0
  2210. /data/ext/cargo-vendor/{wiggle-generate-17.0.0 → wiggle-generate-18.0.3}/src/types/flags.rs +0 -0
  2211. /data/ext/cargo-vendor/{wiggle-generate-17.0.0 → wiggle-generate-18.0.3}/src/types/handle.rs +0 -0
  2212. /data/ext/cargo-vendor/{wiggle-generate-17.0.0 → wiggle-generate-18.0.3}/src/types/mod.rs +0 -0
  2213. /data/ext/cargo-vendor/{wiggle-generate-17.0.0 → wiggle-generate-18.0.3}/src/types/record.rs +0 -0
  2214. /data/ext/cargo-vendor/{wiggle-generate-17.0.0 → wiggle-generate-18.0.3}/src/types/variant.rs +0 -0
  2215. /data/ext/cargo-vendor/{wiggle-generate-17.0.0 → wiggle-generate-18.0.3}/src/wasmtime.rs +0 -0
  2216. /data/ext/cargo-vendor/{wiggle-generate-17.0.0 → wiggle-macro-18.0.3}/LICENSE +0 -0
  2217. /data/ext/cargo-vendor/{wiggle-macro-17.0.0 → wiggle-macro-18.0.3}/src/lib.rs +0 -0
  2218. /data/ext/cargo-vendor/{winch-codegen-0.15.0 → winch-codegen-0.16.3}/LICENSE +0 -0
  2219. /data/ext/cargo-vendor/{winch-codegen-0.15.0 → winch-codegen-0.16.3}/build.rs +0 -0
  2220. /data/ext/cargo-vendor/{winch-codegen-0.15.0 → winch-codegen-0.16.3}/src/isa/aarch64/address.rs +0 -0
  2221. /data/ext/cargo-vendor/{winch-codegen-0.15.0 → winch-codegen-0.16.3}/src/isa/aarch64/asm.rs +0 -0
  2222. /data/ext/cargo-vendor/{winch-codegen-0.15.0 → winch-codegen-0.16.3}/src/isa/aarch64/regs.rs +0 -0
  2223. /data/ext/cargo-vendor/{winch-codegen-0.15.0 → winch-codegen-0.16.3}/src/isa/x64/address.rs +0 -0
  2224. /data/ext/cargo-vendor/{winch-codegen-0.15.0 → winch-codegen-0.16.3}/src/isa/x64/regs.rs +0 -0
  2225. /data/ext/cargo-vendor/{winch-codegen-0.15.0 → winch-codegen-0.16.3}/src/lib.rs +0 -0
  2226. /data/ext/cargo-vendor/{winch-codegen-0.15.0 → winch-codegen-0.16.3}/src/regalloc.rs +0 -0
  2227. /data/ext/cargo-vendor/{winch-codegen-0.15.0 → winch-codegen-0.16.3}/src/regset.rs +0 -0
  2228. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/README.md +0 -0
  2229. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/src/abi.rs +0 -0
  2230. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/src/ast/toposort.rs +0 -0
  2231. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/src/lib.rs +0 -0
  2232. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/src/live.rs +0 -0
  2233. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/src/serde_.rs +0 -0
  2234. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/src/sizealign.rs +0 -0
  2235. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/all.rs +0 -0
  2236. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/comments.wit +0 -0
  2237. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/complex-include/deps/bar/root.wit +0 -0
  2238. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/complex-include/deps/baz/root.wit +0 -0
  2239. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/complex-include/root.wit +0 -0
  2240. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/complex-include.wit.json +0 -0
  2241. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/cross-package-resource/deps/foo/foo.wit +0 -0
  2242. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/cross-package-resource/foo.wit +0 -0
  2243. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/cross-package-resource.wit.json +0 -0
  2244. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/diamond1/deps/dep1/types.wit +0 -0
  2245. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/diamond1/deps/dep2/types.wit +0 -0
  2246. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/diamond1/join.wit +0 -0
  2247. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/diamond1.wit.json +0 -0
  2248. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/disambiguate-diamond/shared1.wit +0 -0
  2249. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/disambiguate-diamond/shared2.wit +0 -0
  2250. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/disambiguate-diamond/world.wit +0 -0
  2251. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/disambiguate-diamond.wit.json +0 -0
  2252. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/empty.wit +0 -0
  2253. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/empty.wit.json +0 -0
  2254. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/foreign-deps/deps/another-pkg/other-doc.wit +0 -0
  2255. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/foreign-deps/deps/corp/saas.wit +0 -0
  2256. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/foreign-deps/deps/different-pkg/the-doc.wit +0 -0
  2257. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/foreign-deps/deps/foreign-pkg/the-doc.wit +0 -0
  2258. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/foreign-deps/deps/some-pkg/some-doc.wit +0 -0
  2259. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/foreign-deps/deps/wasi/clocks.wit +0 -0
  2260. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/foreign-deps/deps/wasi/filesystem.wit +0 -0
  2261. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/foreign-deps/root.wit +0 -0
  2262. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/foreign-deps-union/deps/another-pkg/other-doc.wit +0 -0
  2263. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/foreign-deps-union/deps/corp/saas.wit +0 -0
  2264. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/foreign-deps-union/deps/different-pkg/the-doc.wit +0 -0
  2265. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/foreign-deps-union/deps/foreign-pkg/the-doc.wit +0 -0
  2266. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/foreign-deps-union/deps/some-pkg/some-doc.wit +0 -0
  2267. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/foreign-deps-union/deps/wasi/clocks.wit +0 -0
  2268. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/foreign-deps-union/deps/wasi/filesystem.wit +0 -0
  2269. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/foreign-deps-union/deps/wasi/wasi.wit +0 -0
  2270. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/foreign-deps-union/root.wit +0 -0
  2271. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/foreign-deps-union.wit.json +0 -0
  2272. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/foreign-deps.wit.json +0 -0
  2273. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/functions.wit +0 -0
  2274. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/functions.wit.json +0 -0
  2275. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/ignore-files-deps/deps/bar/types.wit +0 -0
  2276. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/ignore-files-deps/deps/ignore-me.txt +0 -0
  2277. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/ignore-files-deps/world.wit +0 -0
  2278. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/ignore-files-deps.wit.json +0 -0
  2279. /data/ext/cargo-vendor/{wit-parser-0.13.0/tests/ui/parse-fail → wit-parser-0.13.2/tests/ui}/import-export-overlap1.wit +0 -0
  2280. /data/ext/cargo-vendor/{wit-parser-0.13.0/tests/ui/parse-fail → wit-parser-0.13.2/tests/ui}/import-export-overlap2.wit +0 -0
  2281. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/include-reps.wit +0 -0
  2282. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/include-reps.wit.json +0 -0
  2283. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/kebab-name-include-with.wit +0 -0
  2284. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/kebab-name-include-with.wit.json +0 -0
  2285. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/many-names/a.wit +0 -0
  2286. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/many-names/b.wit +0 -0
  2287. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/many-names.wit.json +0 -0
  2288. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/multi-file/bar.wit +0 -0
  2289. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/multi-file/cycle-a.wit +0 -0
  2290. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/multi-file/cycle-b.wit +0 -0
  2291. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/multi-file/foo.wit +0 -0
  2292. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/multi-file.wit.json +0 -0
  2293. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/name-both-resource-and-type/deps/dep/foo.wit +0 -0
  2294. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/name-both-resource-and-type/foo.wit +0 -0
  2295. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/name-both-resource-and-type.wit.json +0 -0
  2296. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/package-syntax1.wit +0 -0
  2297. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/package-syntax1.wit.json +0 -0
  2298. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/package-syntax3.wit +0 -0
  2299. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/package-syntax3.wit.json +0 -0
  2300. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/package-syntax4.wit +0 -0
  2301. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/package-syntax4.wit.json +0 -0
  2302. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/alias-no-type.wit +0 -0
  2303. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/alias-no-type.wit.result +0 -0
  2304. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/async.wit.result +0 -0
  2305. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/async1.wit.result +0 -0
  2306. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-function.wit +0 -0
  2307. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-function.wit.result +0 -0
  2308. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-function2.wit +0 -0
  2309. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-function2.wit.result +0 -0
  2310. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-include1.wit +0 -0
  2311. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-include1.wit.result +0 -0
  2312. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-include2.wit +0 -0
  2313. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-include2.wit.result +0 -0
  2314. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-include3.wit +0 -0
  2315. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-include3.wit.result +0 -0
  2316. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-list.wit +0 -0
  2317. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-list.wit.result +0 -0
  2318. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-pkg1/root.wit +0 -0
  2319. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-pkg1.wit.result +0 -0
  2320. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-pkg2/deps/bar/empty.wit +0 -0
  2321. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-pkg2/root.wit +0 -0
  2322. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-pkg2.wit.result +0 -0
  2323. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-pkg3/deps/bar/baz.wit +0 -0
  2324. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-pkg3/root.wit +0 -0
  2325. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-pkg3.wit.result +0 -0
  2326. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-pkg4/deps/bar/baz.wit +0 -0
  2327. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-pkg4/root.wit +0 -0
  2328. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-pkg4.wit.result +0 -0
  2329. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-pkg5/deps/bar/baz.wit +0 -0
  2330. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-pkg5/root.wit +0 -0
  2331. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-pkg5.wit.result +0 -0
  2332. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-pkg6/deps/bar/baz.wit +0 -0
  2333. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-pkg6/root.wit +0 -0
  2334. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-pkg6.wit.result +0 -0
  2335. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource1.wit +0 -0
  2336. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource1.wit.result +0 -0
  2337. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource10.wit +0 -0
  2338. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource10.wit.result +0 -0
  2339. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource11.wit +0 -0
  2340. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource11.wit.result +0 -0
  2341. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource12.wit +0 -0
  2342. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource12.wit.result +0 -0
  2343. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource13.wit +0 -0
  2344. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource13.wit.result +0 -0
  2345. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource14.wit +0 -0
  2346. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource14.wit.result +0 -0
  2347. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource15/deps/foo/foo.wit +0 -0
  2348. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource15/foo.wit +0 -0
  2349. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource15.wit.result +0 -0
  2350. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource2.wit +0 -0
  2351. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource2.wit.result +0 -0
  2352. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource3.wit +0 -0
  2353. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource3.wit.result +0 -0
  2354. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource4.wit +0 -0
  2355. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource4.wit.result +0 -0
  2356. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource5.wit +0 -0
  2357. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource5.wit.result +0 -0
  2358. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource6.wit +0 -0
  2359. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource6.wit.result +0 -0
  2360. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource7.wit +0 -0
  2361. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource7.wit.result +0 -0
  2362. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource8.wit +0 -0
  2363. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource8.wit.result +0 -0
  2364. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource9.wit +0 -0
  2365. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource9.wit.result +0 -0
  2366. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-world-type1.wit +0 -0
  2367. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-world-type1.wit.result +0 -0
  2368. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/conflicting-package/a.wit +0 -0
  2369. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/conflicting-package/b.wit +0 -0
  2370. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/conflicting-package.wit.result +0 -0
  2371. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/cycle.wit +0 -0
  2372. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/cycle.wit.result +0 -0
  2373. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/cycle2.wit +0 -0
  2374. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/cycle2.wit.result +0 -0
  2375. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/cycle3.wit +0 -0
  2376. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/cycle3.wit.result +0 -0
  2377. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/cycle4.wit +0 -0
  2378. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/cycle4.wit.result +0 -0
  2379. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/cycle5.wit +0 -0
  2380. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/cycle5.wit.result +0 -0
  2381. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/dangling-type.wit +0 -0
  2382. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/dangling-type.wit.result +0 -0
  2383. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/duplicate-function-params.wit +0 -0
  2384. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/duplicate-function-params.wit.result +0 -0
  2385. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/duplicate-functions.wit +0 -0
  2386. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/duplicate-functions.wit.result +0 -0
  2387. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/duplicate-interface.wit +0 -0
  2388. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/duplicate-interface.wit.result +0 -0
  2389. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/duplicate-interface2/foo.wit +0 -0
  2390. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/duplicate-interface2/foo2.wit +0 -0
  2391. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/duplicate-interface2.wit.result +0 -0
  2392. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/duplicate-type.wit +0 -0
  2393. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/duplicate-type.wit.result +0 -0
  2394. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/empty-enum.wit +0 -0
  2395. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/empty-enum.wit.result +0 -0
  2396. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/empty-variant1.wit +0 -0
  2397. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/empty-variant1.wit.result +0 -0
  2398. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/export-twice.wit +0 -0
  2399. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/export-twice.wit.result +0 -0
  2400. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/import-and-export1.wit +0 -0
  2401. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/import-and-export1.wit.result +0 -0
  2402. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/import-and-export2.wit +0 -0
  2403. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/import-and-export2.wit.result +0 -0
  2404. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/import-and-export3.wit +0 -0
  2405. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/import-and-export3.wit.result +0 -0
  2406. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/import-and-export4.wit +0 -0
  2407. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/import-and-export4.wit.result +0 -0
  2408. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/import-and-export5.wit +0 -0
  2409. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/import-and-export5.wit.result +0 -0
  2410. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/import-twice.wit +0 -0
  2411. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/import-twice.wit.result +0 -0
  2412. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/include-cycle.wit +0 -0
  2413. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/include-cycle.wit.result +0 -0
  2414. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/include-foreign/deps/bar/empty.wit +0 -0
  2415. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/include-foreign/root.wit +0 -0
  2416. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/include-foreign.wit.result +0 -0
  2417. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/include-with-id.wit +0 -0
  2418. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/include-with-id.wit.result +0 -0
  2419. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/include-with-on-id.wit +0 -0
  2420. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/include-with-on-id.wit.result +0 -0
  2421. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/invalid-toplevel.wit +0 -0
  2422. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/invalid-toplevel.wit.result +0 -0
  2423. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/invalid-type-reference.wit +0 -0
  2424. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/invalid-type-reference.wit.result +0 -0
  2425. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/invalid-type-reference2.wit +0 -0
  2426. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/invalid-type-reference2.wit.result +0 -0
  2427. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/kebab-name-include-not-found.wit +0 -0
  2428. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/kebab-name-include-not-found.wit.result +0 -0
  2429. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/kebab-name-include.wit +0 -0
  2430. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/kebab-name-include.wit.result +0 -0
  2431. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/keyword.wit +0 -0
  2432. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/keyword.wit.result +0 -0
  2433. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/missing-package.wit +0 -0
  2434. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/missing-package.wit.result +0 -0
  2435. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/multiple-package-docs/a.wit +0 -0
  2436. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/multiple-package-docs/b.wit +0 -0
  2437. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/multiple-package-docs.wit.result +0 -0
  2438. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/no-access-to-sibling-use/bar.wit +0 -0
  2439. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/no-access-to-sibling-use/foo.wit +0 -0
  2440. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/no-access-to-sibling-use.wit.result +0 -0
  2441. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/non-existance-world-include/deps/bar/baz.wit +0 -0
  2442. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/non-existance-world-include/root.wit +0 -0
  2443. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/non-existance-world-include.wit.result +0 -0
  2444. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/pkg-cycle/deps/a1/root.wit +0 -0
  2445. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/pkg-cycle/root.wit +0 -0
  2446. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/pkg-cycle.wit.result +0 -0
  2447. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/pkg-cycle2/deps/a1/root.wit +0 -0
  2448. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/pkg-cycle2/deps/a2/root.wit +0 -0
  2449. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/pkg-cycle2/root.wit +0 -0
  2450. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/pkg-cycle2.wit.result +0 -0
  2451. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/type-and-resource-same-name/deps/dep/foo.wit +0 -0
  2452. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/type-and-resource-same-name/foo.wit +0 -0
  2453. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/type-and-resource-same-name.wit.result +0 -0
  2454. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/undefined-typed.wit +0 -0
  2455. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/undefined-typed.wit.result +0 -0
  2456. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unknown-interface.wit +0 -0
  2457. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unknown-interface.wit.result +0 -0
  2458. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-interface1.wit +0 -0
  2459. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-interface1.wit.result +0 -0
  2460. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-interface2.wit +0 -0
  2461. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-interface2.wit.result +0 -0
  2462. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-interface3.wit +0 -0
  2463. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-interface3.wit.result +0 -0
  2464. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-interface4.wit +0 -0
  2465. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-interface4.wit.result +0 -0
  2466. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-use1.wit +0 -0
  2467. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-use1.wit.result +0 -0
  2468. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-use10/bar.wit +0 -0
  2469. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-use10/foo.wit +0 -0
  2470. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-use10.wit.result +0 -0
  2471. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-use2.wit +0 -0
  2472. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-use2.wit.result +0 -0
  2473. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-use3.wit +0 -0
  2474. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-use3.wit.result +0 -0
  2475. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-use7.wit +0 -0
  2476. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-use7.wit.result +0 -0
  2477. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-use8.wit +0 -0
  2478. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-use8.wit.result +0 -0
  2479. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-use9.wit +0 -0
  2480. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-use9.wit.result +0 -0
  2481. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unterminated-string.wit.result +0 -0
  2482. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/use-and-include-world/deps/bar/baz.wit +0 -0
  2483. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/use-and-include-world/root.wit +0 -0
  2484. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/use-and-include-world.wit.result +0 -0
  2485. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/use-conflict.wit +0 -0
  2486. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/use-conflict.wit.result +0 -0
  2487. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/use-conflict2.wit +0 -0
  2488. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/use-conflict2.wit.result +0 -0
  2489. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/use-conflict3.wit +0 -0
  2490. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/use-conflict3.wit.result +0 -0
  2491. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/use-cycle1.wit +0 -0
  2492. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/use-cycle1.wit.result +0 -0
  2493. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/use-cycle4.wit +0 -0
  2494. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/use-cycle4.wit.result +0 -0
  2495. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/use-shadow1.wit +0 -0
  2496. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/use-shadow1.wit.result +0 -0
  2497. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/use-world/deps/bar/baz.wit +0 -0
  2498. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/use-world/root.wit +0 -0
  2499. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/use-world.wit.result +0 -0
  2500. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/world-interface-clash.wit +0 -0
  2501. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/world-interface-clash.wit.result +0 -0
  2502. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/world-same-fields2.wit +0 -0
  2503. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/world-same-fields2.wit.result +0 -0
  2504. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/world-same-fields3.wit +0 -0
  2505. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/world-same-fields3.wit.result +0 -0
  2506. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/world-top-level-func.wit +0 -0
  2507. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/world-top-level-func.wit.result +0 -0
  2508. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/world-top-level-func2.wit +0 -0
  2509. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/world-top-level-func2.wit.result +0 -0
  2510. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/random.wit +0 -0
  2511. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/random.wit.json +0 -0
  2512. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/resources-empty.wit +0 -0
  2513. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/resources-empty.wit.json +0 -0
  2514. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/resources-multiple-returns-borrow.wit +0 -0
  2515. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/resources-multiple-returns-borrow.wit.json +0 -0
  2516. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/resources-multiple-returns-own.wit +0 -0
  2517. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/resources-multiple-returns-own.wit.json +0 -0
  2518. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/resources-multiple.wit +0 -0
  2519. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/resources-multiple.wit.json +0 -0
  2520. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/resources-return-borrow.wit +0 -0
  2521. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/resources-return-borrow.wit.json +0 -0
  2522. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/resources-return-own.wit +0 -0
  2523. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/resources-return-own.wit.json +0 -0
  2524. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/resources.wit +0 -0
  2525. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/resources.wit.json +0 -0
  2526. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/resources1.wit +0 -0
  2527. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/resources1.wit.json +0 -0
  2528. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/shared-types.wit +0 -0
  2529. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/shared-types.wit.json +0 -0
  2530. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/stress-export-elaborate.wit +0 -0
  2531. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/stress-export-elaborate.wit.json +0 -0
  2532. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/type-then-eof.wit +0 -0
  2533. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/type-then-eof.wit.json +0 -0
  2534. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/union-fuzz-1.wit +0 -0
  2535. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/union-fuzz-1.wit.json +0 -0
  2536. /data/ext/cargo-vendor/{wit-parser-0.13.0/tests/ui/parse-fail → wit-parser-0.13.2/tests/ui}/union-fuzz-2.wit +0 -0
  2537. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/use-chain.wit +0 -0
  2538. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/use-chain.wit.json +0 -0
  2539. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/use.wit +0 -0
  2540. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/use.wit.json +0 -0
  2541. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/versions/deps/a1/foo.wit +0 -0
  2542. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/versions/deps/a2/foo.wit +0 -0
  2543. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/versions/foo.wit +0 -0
  2544. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/versions.wit.json +0 -0
  2545. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/wasi.wit +0 -0
  2546. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/world-diamond.wit +0 -0
  2547. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/world-diamond.wit.json +0 -0
  2548. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/world-iface-no-collide.wit +0 -0
  2549. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/world-iface-no-collide.wit.json +0 -0
  2550. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/world-implicit-import1.wit +0 -0
  2551. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/world-implicit-import1.wit.json +0 -0
  2552. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/world-implicit-import2.wit +0 -0
  2553. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/world-implicit-import2.wit.json +0 -0
  2554. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/world-implicit-import3.wit +0 -0
  2555. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/world-implicit-import3.wit.json +0 -0
  2556. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/world-same-fields4.wit +0 -0
  2557. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/world-same-fields4.wit.json +0 -0
  2558. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/world-top-level-funcs.wit +0 -0
  2559. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/world-top-level-funcs.wit.json +0 -0
  2560. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/world-top-level-resources.wit +0 -0
  2561. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/world-top-level-resources.wit.json +0 -0
  2562. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/worlds-union-dedup.wit +0 -0
  2563. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/worlds-union-dedup.wit.json +0 -0
  2564. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/worlds-with-types.wit +0 -0
  2565. /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/worlds-with-types.wit.json +0 -0
@@ -1,3191 +0,0 @@
1
- # 1.35.1 (December 19, 2023)
2
-
3
- This is a forward part of a change that was backported to 1.25.3.
4
-
5
- ### Fixed
6
-
7
- - io: add budgeting to `tokio::runtime::io::registration::async_io` ([#6221])
8
-
9
- [#6221]: https://github.com/tokio-rs/tokio/pull/6221
10
-
11
- # 1.35.0 (December 8th, 2023)
12
-
13
- ### Added
14
-
15
- - net: add Apple watchOS support ([#6176])
16
-
17
- ### Changed
18
-
19
- - io: drop the `Sized` requirements from `AsyncReadExt.read_buf` ([#6169])
20
- - runtime: make `Runtime` unwind safe ([#6189])
21
- - runtime: reduce the lock contention in task spawn ([#6001])
22
- - tokio: update nix dependency to 0.27.1 ([#6190])
23
-
24
- ### Fixed
25
-
26
- - chore: make `--cfg docsrs` work without net feature ([#6166])
27
- - chore: use relaxed load for `unsync_load` on miri ([#6179])
28
- - runtime: handle missing context on wake ([#6148])
29
- - taskdump: fix taskdump cargo config example ([#6150])
30
- - taskdump: skip notified tasks during taskdumps ([#6194])
31
- - tracing: avoid creating resource spans with current parent, use a None parent instead ([#6107])
32
- - tracing: make task span explicit root ([#6158])
33
-
34
- ### Documented
35
-
36
- - io: flush in `AsyncWriteExt` examples ([#6149])
37
- - runtime: document fairness guarantees and current behavior ([#6145])
38
- - task: document cancel safety of `LocalSet::run_until` ([#6147])
39
-
40
- [#6001]: https://github.com/tokio-rs/tokio/pull/6001
41
- [#6107]: https://github.com/tokio-rs/tokio/pull/6107
42
- [#6144]: https://github.com/tokio-rs/tokio/pull/6144
43
- [#6145]: https://github.com/tokio-rs/tokio/pull/6145
44
- [#6147]: https://github.com/tokio-rs/tokio/pull/6147
45
- [#6148]: https://github.com/tokio-rs/tokio/pull/6148
46
- [#6149]: https://github.com/tokio-rs/tokio/pull/6149
47
- [#6150]: https://github.com/tokio-rs/tokio/pull/6150
48
- [#6158]: https://github.com/tokio-rs/tokio/pull/6158
49
- [#6166]: https://github.com/tokio-rs/tokio/pull/6166
50
- [#6169]: https://github.com/tokio-rs/tokio/pull/6169
51
- [#6176]: https://github.com/tokio-rs/tokio/pull/6176
52
- [#6179]: https://github.com/tokio-rs/tokio/pull/6179
53
- [#6189]: https://github.com/tokio-rs/tokio/pull/6189
54
- [#6190]: https://github.com/tokio-rs/tokio/pull/6190
55
- [#6194]: https://github.com/tokio-rs/tokio/pull/6194
56
-
57
- # 1.34.0 (November 19th, 2023)
58
-
59
- ### Fixed
60
-
61
- - io: allow `clear_readiness` after io driver shutdown ([#6067])
62
- - io: fix integer overflow in `take` ([#6080])
63
- - io: fix I/O resource hang ([#6134])
64
- - sync: fix `broadcast::channel` link ([#6100])
65
-
66
- ### Changed
67
-
68
- - macros: use `::core` qualified imports instead of `::std` inside `tokio::test` macro ([#5973])
69
-
70
- ### Added
71
-
72
- - fs: update cfg attr in `fs::read_dir` to include `aix` ([#6075])
73
- - sync: add `mpsc::Receiver::recv_many` ([#6010])
74
- - tokio: added vita target support ([#6094])
75
-
76
- [#5973]: https://github.com/tokio-rs/tokio/pull/5973
77
- [#6067]: https://github.com/tokio-rs/tokio/pull/6067
78
- [#6080]: https://github.com/tokio-rs/tokio/pull/6080
79
- [#6134]: https://github.com/tokio-rs/tokio/pull/6134
80
- [#6100]: https://github.com/tokio-rs/tokio/pull/6100
81
- [#6075]: https://github.com/tokio-rs/tokio/pull/6075
82
- [#6010]: https://github.com/tokio-rs/tokio/pull/6010
83
- [#6094]: https://github.com/tokio-rs/tokio/pull/6094
84
-
85
- # 1.33.0 (October 9, 2023)
86
-
87
- ### Fixed
88
-
89
- - io: mark `Interest::add` with `#[must_use]` ([#6037])
90
- - runtime: fix cache line size for RISC-V ([#5994])
91
- - sync: prevent lock poisoning in `watch::Receiver::wait_for` ([#6021])
92
- - task: fix `spawn_local` source location ([#5984])
93
-
94
- ### Changed
95
-
96
- - sync: use Acquire/Release orderings instead of SeqCst in `watch` ([#6018])
97
-
98
- ### Added
99
-
100
- - fs: add vectored writes to `tokio::fs::File` ([#5958])
101
- - io: add `Interest::remove` method ([#5906])
102
- - io: add vectored writes to `DuplexStream` ([#5985])
103
- - net: add Apple tvOS support ([#6045])
104
- - sync: add `?Sized` bound to `{MutexGuard,OwnedMutexGuard}::map` ([#5997])
105
- - sync: add `watch::Receiver::mark_unseen` ([#5962], [#6014], [#6017])
106
- - sync: add `watch::Sender::new` ([#5998])
107
- - sync: add const fn `OnceCell::from_value` ([#5903])
108
-
109
- ### Removed
110
-
111
- - remove unused `stats` feature ([#5952])
112
-
113
- ### Documented
114
-
115
- - add missing backticks in code examples ([#5938], [#6056])
116
- - fix typos ([#5988], [#6030])
117
- - process: document that `Child::wait` is cancel safe ([#5977])
118
- - sync: add examples for `Semaphore` ([#5939], [#5956], [#5978], [#6031], [#6032], [#6050])
119
- - sync: document that `broadcast` capacity is a lower bound ([#6042])
120
- - sync: document that `const_new` is not instrumented ([#6002])
121
- - sync: improve cancel-safety documentation for `mpsc::Sender::send` ([#5947])
122
- - sync: improve docs for `watch` channel ([#5954])
123
- - taskdump: render taskdump documentation on docs.rs ([#5972])
124
-
125
- ### Unstable
126
-
127
- - taskdump: fix potential deadlock ([#6036])
128
-
129
- [#5903]: https://github.com/tokio-rs/tokio/pull/5903
130
- [#5906]: https://github.com/tokio-rs/tokio/pull/5906
131
- [#5938]: https://github.com/tokio-rs/tokio/pull/5938
132
- [#5939]: https://github.com/tokio-rs/tokio/pull/5939
133
- [#5947]: https://github.com/tokio-rs/tokio/pull/5947
134
- [#5952]: https://github.com/tokio-rs/tokio/pull/5952
135
- [#5954]: https://github.com/tokio-rs/tokio/pull/5954
136
- [#5956]: https://github.com/tokio-rs/tokio/pull/5956
137
- [#5958]: https://github.com/tokio-rs/tokio/pull/5958
138
- [#5960]: https://github.com/tokio-rs/tokio/pull/5960
139
- [#5962]: https://github.com/tokio-rs/tokio/pull/5962
140
- [#5971]: https://github.com/tokio-rs/tokio/pull/5971
141
- [#5972]: https://github.com/tokio-rs/tokio/pull/5972
142
- [#5977]: https://github.com/tokio-rs/tokio/pull/5977
143
- [#5978]: https://github.com/tokio-rs/tokio/pull/5978
144
- [#5984]: https://github.com/tokio-rs/tokio/pull/5984
145
- [#5985]: https://github.com/tokio-rs/tokio/pull/5985
146
- [#5988]: https://github.com/tokio-rs/tokio/pull/5988
147
- [#5994]: https://github.com/tokio-rs/tokio/pull/5994
148
- [#5997]: https://github.com/tokio-rs/tokio/pull/5997
149
- [#5998]: https://github.com/tokio-rs/tokio/pull/5998
150
- [#6002]: https://github.com/tokio-rs/tokio/pull/6002
151
- [#6014]: https://github.com/tokio-rs/tokio/pull/6014
152
- [#6017]: https://github.com/tokio-rs/tokio/pull/6017
153
- [#6018]: https://github.com/tokio-rs/tokio/pull/6018
154
- [#6021]: https://github.com/tokio-rs/tokio/pull/6021
155
- [#6030]: https://github.com/tokio-rs/tokio/pull/6030
156
- [#6031]: https://github.com/tokio-rs/tokio/pull/6031
157
- [#6032]: https://github.com/tokio-rs/tokio/pull/6032
158
- [#6036]: https://github.com/tokio-rs/tokio/pull/6036
159
- [#6037]: https://github.com/tokio-rs/tokio/pull/6037
160
- [#6042]: https://github.com/tokio-rs/tokio/pull/6042
161
- [#6045]: https://github.com/tokio-rs/tokio/pull/6045
162
- [#6050]: https://github.com/tokio-rs/tokio/pull/6050
163
- [#6056]: https://github.com/tokio-rs/tokio/pull/6056
164
- [#6058]: https://github.com/tokio-rs/tokio/pull/6058
165
-
166
- # 1.32.1 (December 19, 2023)
167
-
168
- This is a forward part of a change that was backported to 1.25.3.
169
-
170
- ### Fixed
171
-
172
- - io: add budgeting to `tokio::runtime::io::registration::async_io` ([#6221])
173
-
174
- [#6221]: https://github.com/tokio-rs/tokio/pull/6221
175
-
176
- # 1.32.0 (August 16, 2023)
177
-
178
- ### Fixed
179
-
180
- - sync: fix potential quadratic behavior in `broadcast::Receiver` ([#5925])
181
-
182
- ### Added
183
-
184
- - process: stabilize `Command::raw_arg` ([#5930])
185
- - io: enable awaiting error readiness ([#5781])
186
-
187
- ### Unstable
188
-
189
- - rt(alt): improve scalability of alt runtime as the number of cores grows ([#5935])
190
-
191
- [#5925]: https://github.com/tokio-rs/tokio/pull/5925
192
- [#5930]: https://github.com/tokio-rs/tokio/pull/5930
193
- [#5781]: https://github.com/tokio-rs/tokio/pull/5781
194
- [#5935]: https://github.com/tokio-rs/tokio/pull/5935
195
-
196
- # 1.31.0 (August 10, 2023)
197
-
198
- ### Fixed
199
-
200
- * io: delegate `WriteHalf::poll_write_vectored` ([#5914])
201
-
202
- ### Unstable
203
-
204
- * rt(alt): fix memory leak in unstable next-gen scheduler prototype ([#5911])
205
- * rt: expose mean task poll time metric ([#5927])
206
-
207
- [#5914]: https://github.com/tokio-rs/tokio/pull/5914
208
- [#5911]: https://github.com/tokio-rs/tokio/pull/5911
209
- [#5927]: https://github.com/tokio-rs/tokio/pull/5927
210
-
211
- # 1.30.0 (August 9, 2023)
212
-
213
- This release bumps the MSRV of Tokio to 1.63. ([#5887])
214
-
215
- ### Changed
216
-
217
- - tokio: reduce LLVM code generation ([#5859])
218
- - io: support `--cfg mio_unsupported_force_poll_poll` flag ([#5881])
219
- - sync: make `const_new` methods always available ([#5885])
220
- - sync: avoid false sharing in mpsc channel ([#5829])
221
- - rt: pop at least one task from inject queue ([#5908])
222
-
223
- ### Added
224
-
225
- - sync: add `broadcast::Sender::new` ([#5824])
226
- - net: implement `UCred` for espidf ([#5868])
227
- - fs: add `File::options()` ([#5869])
228
- - time: implement extra reset variants for `Interval` ([#5878])
229
- - process: add `{ChildStd*}::into_owned_{fd, handle}` ([#5899])
230
-
231
- ### Removed
232
-
233
- - tokio: removed unused `tokio_*` cfgs ([#5890])
234
- - remove build script to speed up compilation ([#5887])
235
-
236
- ### Documented
237
-
238
- - sync: mention lagging in docs for `broadcast::send` ([#5820])
239
- - runtime: expand on sharing runtime docs ([#5858])
240
- - io: use vec in example for `AsyncReadExt::read_exact` ([#5863])
241
- - time: mark `Sleep` as `!Unpin` in docs ([#5916])
242
- - process: fix `raw_arg` not showing up in docs ([#5865])
243
-
244
- ### Unstable
245
-
246
- - rt: add runtime ID ([#5864])
247
- - rt: initial implementation of new threaded runtime ([#5823])
248
-
249
- [#5820]: https://github.com/tokio-rs/tokio/pull/5820
250
- [#5823]: https://github.com/tokio-rs/tokio/pull/5823
251
- [#5824]: https://github.com/tokio-rs/tokio/pull/5824
252
- [#5829]: https://github.com/tokio-rs/tokio/pull/5829
253
- [#5858]: https://github.com/tokio-rs/tokio/pull/5858
254
- [#5859]: https://github.com/tokio-rs/tokio/pull/5859
255
- [#5863]: https://github.com/tokio-rs/tokio/pull/5863
256
- [#5864]: https://github.com/tokio-rs/tokio/pull/5864
257
- [#5865]: https://github.com/tokio-rs/tokio/pull/5865
258
- [#5868]: https://github.com/tokio-rs/tokio/pull/5868
259
- [#5869]: https://github.com/tokio-rs/tokio/pull/5869
260
- [#5878]: https://github.com/tokio-rs/tokio/pull/5878
261
- [#5881]: https://github.com/tokio-rs/tokio/pull/5881
262
- [#5885]: https://github.com/tokio-rs/tokio/pull/5885
263
- [#5887]: https://github.com/tokio-rs/tokio/pull/5887
264
- [#5890]: https://github.com/tokio-rs/tokio/pull/5890
265
- [#5899]: https://github.com/tokio-rs/tokio/pull/5899
266
- [#5908]: https://github.com/tokio-rs/tokio/pull/5908
267
- [#5916]: https://github.com/tokio-rs/tokio/pull/5916
268
-
269
- # 1.29.1 (June 29, 2023)
270
-
271
- ### Fixed
272
-
273
- - rt: fix nesting two `block_in_place` with a `block_on` between ([#5837])
274
-
275
- [#5837]: https://github.com/tokio-rs/tokio/pull/5837
276
-
277
- # 1.29.0 (June 27, 2023)
278
-
279
- Technically a breaking change, the `Send` implementation is removed from
280
- `runtime::EnterGuard`. This change fixes a bug and should not impact most users.
281
-
282
- ### Breaking
283
-
284
- - rt: `EnterGuard` should not be `Send` ([#5766])
285
-
286
- ### Fixed
287
-
288
- - fs: reduce blocking ops in `fs::read_dir` ([#5653])
289
- - rt: fix possible starvation ([#5686], [#5712])
290
- - rt: fix stacked borrows issue in `JoinSet` ([#5693])
291
- - rt: panic if `EnterGuard` dropped incorrect order ([#5772])
292
- - time: do not overflow to signal value ([#5710])
293
- - fs: wait for in-flight ops before cloning `File` ([#5803])
294
-
295
- ### Changed
296
-
297
- - rt: reduce time to poll tasks scheduled from outside the runtime ([#5705], [#5720])
298
-
299
- ### Added
300
-
301
- - net: add uds doc alias for unix sockets ([#5659])
302
- - rt: add metric for number of tasks ([#5628])
303
- - sync: implement more traits for channel errors ([#5666])
304
- - net: add nodelay methods on TcpSocket ([#5672])
305
- - sync: add `broadcast::Receiver::blocking_recv` ([#5690])
306
- - process: add `raw_arg` method to `Command` ([#5704])
307
- - io: support PRIORITY epoll events ([#5566])
308
- - task: add `JoinSet::poll_join_next` ([#5721])
309
- - net: add support for Redox OS ([#5790])
310
-
311
-
312
- ### Unstable
313
-
314
- - rt: add the ability to dump task backtraces ([#5608], [#5676], [#5708], [#5717])
315
- - rt: instrument task poll times with a histogram ([#5685])
316
-
317
- [#5766]: https://github.com/tokio-rs/tokio/pull/5766
318
- [#5653]: https://github.com/tokio-rs/tokio/pull/5653
319
- [#5686]: https://github.com/tokio-rs/tokio/pull/5686
320
- [#5712]: https://github.com/tokio-rs/tokio/pull/5712
321
- [#5693]: https://github.com/tokio-rs/tokio/pull/5693
322
- [#5772]: https://github.com/tokio-rs/tokio/pull/5772
323
- [#5710]: https://github.com/tokio-rs/tokio/pull/5710
324
- [#5803]: https://github.com/tokio-rs/tokio/pull/5803
325
- [#5705]: https://github.com/tokio-rs/tokio/pull/5705
326
- [#5720]: https://github.com/tokio-rs/tokio/pull/5720
327
- [#5659]: https://github.com/tokio-rs/tokio/pull/5659
328
- [#5628]: https://github.com/tokio-rs/tokio/pull/5628
329
- [#5666]: https://github.com/tokio-rs/tokio/pull/5666
330
- [#5672]: https://github.com/tokio-rs/tokio/pull/5672
331
- [#5690]: https://github.com/tokio-rs/tokio/pull/5690
332
- [#5704]: https://github.com/tokio-rs/tokio/pull/5704
333
- [#5566]: https://github.com/tokio-rs/tokio/pull/5566
334
- [#5721]: https://github.com/tokio-rs/tokio/pull/5721
335
- [#5790]: https://github.com/tokio-rs/tokio/pull/5790
336
- [#5608]: https://github.com/tokio-rs/tokio/pull/5608
337
- [#5676]: https://github.com/tokio-rs/tokio/pull/5676
338
- [#5708]: https://github.com/tokio-rs/tokio/pull/5708
339
- [#5717]: https://github.com/tokio-rs/tokio/pull/5717
340
- [#5685]: https://github.com/tokio-rs/tokio/pull/5685
341
-
342
- # 1.28.2 (May 28, 2023)
343
-
344
- Forward ports 1.18.6 changes.
345
-
346
- ### Fixed
347
-
348
- - deps: disable default features for mio ([#5728])
349
-
350
- [#5728]: https://github.com/tokio-rs/tokio/pull/5728
351
-
352
- # 1.28.1 (May 10th, 2023)
353
-
354
- This release fixes a mistake in the build script that makes `AsFd`
355
- implementations unavailable on Rust 1.63. ([#5677])
356
-
357
- [#5677]: https://github.com/tokio-rs/tokio/pull/5677
358
-
359
- # 1.28.0 (April 25th, 2023)
360
-
361
- ### Added
362
-
363
- - io: add `AsyncFd::async_io` ([#5542])
364
- - io: impl BufMut for ReadBuf ([#5590])
365
- - net: add `recv_buf` for `UdpSocket` and `UnixDatagram` ([#5583])
366
- - sync: add `OwnedSemaphorePermit::semaphore` ([#5618])
367
- - sync: add `same_channel` to broadcast channel ([#5607])
368
- - sync: add `watch::Receiver::wait_for` ([#5611])
369
- - task: add `JoinSet::spawn_blocking` and `JoinSet::spawn_blocking_on` ([#5612])
370
-
371
- ### Changed
372
-
373
- - deps: update windows-sys to 0.48 ([#5591])
374
- - io: make `read_to_end` not grow unnecessarily ([#5610])
375
- - macros: make entrypoints more efficient ([#5621])
376
- - sync: improve Debug impl for `RwLock` ([#5647])
377
- - sync: reduce contention in `Notify` ([#5503])
378
-
379
- ### Fixed
380
-
381
- - net: support `get_peer_cred` on AIX ([#5065])
382
- - sync: avoid deadlocks in `broadcast` with custom wakers ([#5578])
383
-
384
- ### Documented
385
-
386
- - sync: fix typo in `Semaphore::MAX_PERMITS` ([#5645])
387
- - sync: fix typo in `tokio::sync::watch::Sender` docs ([#5587])
388
-
389
- [#5065]: https://github.com/tokio-rs/tokio/pull/5065
390
- [#5503]: https://github.com/tokio-rs/tokio/pull/5503
391
- [#5542]: https://github.com/tokio-rs/tokio/pull/5542
392
- [#5578]: https://github.com/tokio-rs/tokio/pull/5578
393
- [#5583]: https://github.com/tokio-rs/tokio/pull/5583
394
- [#5587]: https://github.com/tokio-rs/tokio/pull/5587
395
- [#5590]: https://github.com/tokio-rs/tokio/pull/5590
396
- [#5591]: https://github.com/tokio-rs/tokio/pull/5591
397
- [#5607]: https://github.com/tokio-rs/tokio/pull/5607
398
- [#5610]: https://github.com/tokio-rs/tokio/pull/5610
399
- [#5611]: https://github.com/tokio-rs/tokio/pull/5611
400
- [#5612]: https://github.com/tokio-rs/tokio/pull/5612
401
- [#5618]: https://github.com/tokio-rs/tokio/pull/5618
402
- [#5621]: https://github.com/tokio-rs/tokio/pull/5621
403
- [#5645]: https://github.com/tokio-rs/tokio/pull/5645
404
- [#5647]: https://github.com/tokio-rs/tokio/pull/5647
405
-
406
- # 1.27.0 (March 27th, 2023)
407
-
408
- This release bumps the MSRV of Tokio to 1.56. ([#5559])
409
-
410
- ### Added
411
-
412
- - io: add `async_io` helper method to sockets ([#5512])
413
- - io: add implementations of `AsFd`/`AsHandle`/`AsSocket` ([#5514], [#5540])
414
- - net: add `UdpSocket::peek_sender()` ([#5520])
415
- - sync: add `RwLockWriteGuard::{downgrade_map, try_downgrade_map}` ([#5527])
416
- - task: add `JoinHandle::abort_handle` ([#5543])
417
-
418
- ### Changed
419
-
420
- - io: use `memchr` from `libc` ([#5558])
421
- - macros: accept path as crate rename in `#[tokio::main]` ([#5557])
422
- - macros: update to syn 2.0.0 ([#5572])
423
- - time: don't register for a wakeup when `Interval` returns `Ready` ([#5553])
424
-
425
- ### Fixed
426
-
427
- - fs: fuse std iterator in `ReadDir` ([#5555])
428
- - tracing: fix `spawn_blocking` location fields ([#5573])
429
- - time: clean up redundant check in `Wheel::poll()` ([#5574])
430
-
431
- ### Documented
432
-
433
- - macros: define cancellation safety ([#5525])
434
- - io: add details to docs of `tokio::io::copy[_buf]` ([#5575])
435
- - io: refer to `ReaderStream` and `StreamReader` in module docs ([#5576])
436
-
437
- [#5512]: https://github.com/tokio-rs/tokio/pull/5512
438
- [#5514]: https://github.com/tokio-rs/tokio/pull/5514
439
- [#5520]: https://github.com/tokio-rs/tokio/pull/5520
440
- [#5525]: https://github.com/tokio-rs/tokio/pull/5525
441
- [#5527]: https://github.com/tokio-rs/tokio/pull/5527
442
- [#5540]: https://github.com/tokio-rs/tokio/pull/5540
443
- [#5543]: https://github.com/tokio-rs/tokio/pull/5543
444
- [#5553]: https://github.com/tokio-rs/tokio/pull/5553
445
- [#5555]: https://github.com/tokio-rs/tokio/pull/5555
446
- [#5557]: https://github.com/tokio-rs/tokio/pull/5557
447
- [#5558]: https://github.com/tokio-rs/tokio/pull/5558
448
- [#5559]: https://github.com/tokio-rs/tokio/pull/5559
449
- [#5572]: https://github.com/tokio-rs/tokio/pull/5572
450
- [#5573]: https://github.com/tokio-rs/tokio/pull/5573
451
- [#5574]: https://github.com/tokio-rs/tokio/pull/5574
452
- [#5575]: https://github.com/tokio-rs/tokio/pull/5575
453
- [#5576]: https://github.com/tokio-rs/tokio/pull/5576
454
-
455
- # 1.26.0 (March 1st, 2023)
456
-
457
- ### Fixed
458
-
459
- - macros: fix empty `join!` and `try_join!` ([#5504])
460
- - sync: don't leak tracing spans in mutex guards ([#5469])
461
- - sync: drop wakers after unlocking the mutex in Notify ([#5471])
462
- - sync: drop wakers outside lock in semaphore ([#5475])
463
-
464
- ### Added
465
-
466
- - fs: add `fs::try_exists` ([#4299])
467
- - net: add types for named unix pipes ([#5351])
468
- - sync: add `MappedOwnedMutexGuard` ([#5474])
469
-
470
- ### Changed
471
-
472
- - chore: update windows-sys to 0.45 ([#5386])
473
- - net: use Message Read Mode for named pipes ([#5350])
474
- - sync: mark lock guards with `#[clippy::has_significant_drop]` ([#5422])
475
- - sync: reduce contention in watch channel ([#5464])
476
- - time: remove cache padding in timer entries ([#5468])
477
- - time: Improve `Instant::now()` perf with test-util ([#5513])
478
-
479
- ### Internal Changes
480
-
481
- - io: use `poll_fn` in `copy_bidirectional` ([#5486])
482
- - net: refactor named pipe builders to not use bitfields ([#5477])
483
- - rt: remove Arc from Clock ([#5434])
484
- - sync: make `notify_waiters` calls atomic ([#5458])
485
- - time: don't store deadline twice in sleep entries ([#5410])
486
-
487
- ### Unstable
488
-
489
- - metrics: add a new metric for budget exhaustion yields ([#5517])
490
-
491
- ### Documented
492
-
493
- - io: improve AsyncFd example ([#5481])
494
- - runtime: document the nature of the main future ([#5494])
495
- - runtime: remove extra period in docs ([#5511])
496
- - signal: updated Documentation for Signals ([#5459])
497
- - sync: add doc aliases for `blocking_*` methods ([#5448])
498
- - sync: fix docs for Send/Sync bounds in broadcast ([#5480])
499
- - sync: document drop behavior for channels ([#5497])
500
- - task: clarify what happens to spawned work during runtime shutdown ([#5394])
501
- - task: clarify `process::Command` docs ([#5413])
502
- - task: fix wording with 'unsend' ([#5452])
503
- - time: document immediate completion guarantee for timeouts ([#5509])
504
- - tokio: document supported platforms ([#5483])
505
-
506
- [#4299]: https://github.com/tokio-rs/tokio/pull/4299
507
- [#5350]: https://github.com/tokio-rs/tokio/pull/5350
508
- [#5351]: https://github.com/tokio-rs/tokio/pull/5351
509
- [#5386]: https://github.com/tokio-rs/tokio/pull/5386
510
- [#5394]: https://github.com/tokio-rs/tokio/pull/5394
511
- [#5410]: https://github.com/tokio-rs/tokio/pull/5410
512
- [#5413]: https://github.com/tokio-rs/tokio/pull/5413
513
- [#5422]: https://github.com/tokio-rs/tokio/pull/5422
514
- [#5434]: https://github.com/tokio-rs/tokio/pull/5434
515
- [#5448]: https://github.com/tokio-rs/tokio/pull/5448
516
- [#5452]: https://github.com/tokio-rs/tokio/pull/5452
517
- [#5458]: https://github.com/tokio-rs/tokio/pull/5458
518
- [#5459]: https://github.com/tokio-rs/tokio/pull/5459
519
- [#5464]: https://github.com/tokio-rs/tokio/pull/5464
520
- [#5468]: https://github.com/tokio-rs/tokio/pull/5468
521
- [#5469]: https://github.com/tokio-rs/tokio/pull/5469
522
- [#5471]: https://github.com/tokio-rs/tokio/pull/5471
523
- [#5474]: https://github.com/tokio-rs/tokio/pull/5474
524
- [#5475]: https://github.com/tokio-rs/tokio/pull/5475
525
- [#5477]: https://github.com/tokio-rs/tokio/pull/5477
526
- [#5480]: https://github.com/tokio-rs/tokio/pull/5480
527
- [#5481]: https://github.com/tokio-rs/tokio/pull/5481
528
- [#5483]: https://github.com/tokio-rs/tokio/pull/5483
529
- [#5486]: https://github.com/tokio-rs/tokio/pull/5486
530
- [#5494]: https://github.com/tokio-rs/tokio/pull/5494
531
- [#5497]: https://github.com/tokio-rs/tokio/pull/5497
532
- [#5504]: https://github.com/tokio-rs/tokio/pull/5504
533
- [#5509]: https://github.com/tokio-rs/tokio/pull/5509
534
- [#5511]: https://github.com/tokio-rs/tokio/pull/5511
535
- [#5513]: https://github.com/tokio-rs/tokio/pull/5513
536
- [#5517]: https://github.com/tokio-rs/tokio/pull/5517
537
-
538
- # 1.25.3 (December 17th, 2023)
539
-
540
- ### Fixed
541
- - io: add budgeting to `tokio::runtime::io::registration::async_io` ([#6221])
542
-
543
- [#6221]: https://github.com/tokio-rs/tokio/pull/6221
544
-
545
- # 1.25.2 (September 22, 2023)
546
-
547
- Forward ports 1.20.6 changes.
548
-
549
- ### Changed
550
-
551
- - io: use `memchr` from `libc` ([#5960])
552
-
553
- [#5960]: https://github.com/tokio-rs/tokio/pull/5960
554
-
555
- # 1.25.1 (May 28, 2023)
556
-
557
- Forward ports 1.18.6 changes.
558
-
559
- ### Fixed
560
-
561
- - deps: disable default features for mio ([#5728])
562
-
563
- [#5728]: https://github.com/tokio-rs/tokio/pull/5728
564
-
565
- # 1.25.0 (January 28, 2023)
566
-
567
- ### Fixed
568
-
569
- - rt: fix runtime metrics reporting ([#5330])
570
-
571
- ### Added
572
-
573
- - sync: add `broadcast::Sender::len` ([#5343])
574
-
575
- ### Changed
576
-
577
- - fs: increase maximum read buffer size to 2MiB ([#5397])
578
-
579
- [#5330]: https://github.com/tokio-rs/tokio/pull/5330
580
- [#5343]: https://github.com/tokio-rs/tokio/pull/5343
581
- [#5397]: https://github.com/tokio-rs/tokio/pull/5397
582
-
583
- # 1.24.2 (January 17, 2023)
584
-
585
- Forward ports 1.18.5 changes.
586
-
587
- ### Fixed
588
-
589
- - io: fix unsoundness in `ReadHalf::unsplit` ([#5375])
590
-
591
- [#5375]: https://github.com/tokio-rs/tokio/pull/5375
592
-
593
- # 1.24.1 (January 6, 2022)
594
-
595
- This release fixes a compilation failure on targets without `AtomicU64` when using rustc older than 1.63. ([#5356])
596
-
597
- [#5356]: https://github.com/tokio-rs/tokio/pull/5356
598
-
599
- # 1.24.0 (January 5, 2022)
600
-
601
- ### Fixed
602
- - rt: improve native `AtomicU64` support detection ([#5284])
603
-
604
- ### Added
605
- - rt: add configuration option for max number of I/O events polled from the OS
606
- per tick ([#5186])
607
- - rt: add an environment variable for configuring the default number of worker
608
- threads per runtime instance ([#4250])
609
-
610
- ### Changed
611
- - sync: reduce MPSC channel stack usage ([#5294])
612
- - io: reduce lock contention in I/O operations ([#5300])
613
- - fs: speed up `read_dir()` by chunking operations ([#5309])
614
- - rt: use internal `ThreadId` implementation ([#5329])
615
- - test: don't auto-advance time when a `spawn_blocking` task is running ([#5115])
616
-
617
- [#5186]: https://github.com/tokio-rs/tokio/pull/5186
618
- [#5294]: https://github.com/tokio-rs/tokio/pull/5294
619
- [#5284]: https://github.com/tokio-rs/tokio/pull/5284
620
- [#4250]: https://github.com/tokio-rs/tokio/pull/4250
621
- [#5300]: https://github.com/tokio-rs/tokio/pull/5300
622
- [#5329]: https://github.com/tokio-rs/tokio/pull/5329
623
- [#5115]: https://github.com/tokio-rs/tokio/pull/5115
624
- [#5309]: https://github.com/tokio-rs/tokio/pull/5309
625
-
626
- # 1.23.1 (January 4, 2022)
627
-
628
- This release forward ports changes from 1.18.4.
629
-
630
- ### Fixed
631
-
632
- - net: fix Windows named pipe server builder to maintain option when toggling
633
- pipe mode ([#5336]).
634
-
635
- [#5336]: https://github.com/tokio-rs/tokio/pull/5336
636
-
637
- # 1.23.0 (December 5, 2022)
638
-
639
- ### Fixed
640
-
641
- - net: fix Windows named pipe connect ([#5208])
642
- - io: support vectored writes for `ChildStdin` ([#5216])
643
- - io: fix `async fn ready()` false positive for OS-specific events ([#5231])
644
-
645
- ### Changed
646
- - runtime: `yield_now` defers task until after driver poll ([#5223])
647
- - runtime: reduce amount of codegen needed per spawned task ([#5213])
648
- - windows: replace `winapi` dependency with `windows-sys` ([#5204])
649
-
650
- [#5208]: https://github.com/tokio-rs/tokio/pull/5208
651
- [#5216]: https://github.com/tokio-rs/tokio/pull/5216
652
- [#5213]: https://github.com/tokio-rs/tokio/pull/5213
653
- [#5204]: https://github.com/tokio-rs/tokio/pull/5204
654
- [#5223]: https://github.com/tokio-rs/tokio/pull/5223
655
- [#5231]: https://github.com/tokio-rs/tokio/pull/5231
656
-
657
- # 1.22.0 (November 17, 2022)
658
-
659
- ### Added
660
- - runtime: add `Handle::runtime_flavor` ([#5138])
661
- - sync: add `Mutex::blocking_lock_owned` ([#5130])
662
- - sync: add `Semaphore::MAX_PERMITS` ([#5144])
663
- - sync: add `merge()` to semaphore permits ([#4948])
664
- - sync: add `mpsc::WeakUnboundedSender` ([#5189])
665
-
666
- ### Added (unstable)
667
-
668
- - process: add `Command::process_group` ([#5114])
669
- - runtime: export metrics about the blocking thread pool ([#5161])
670
- - task: add `task::id()` and `task::try_id()` ([#5171])
671
-
672
- ### Fixed
673
- - macros: don't take ownership of futures in macros ([#5087])
674
- - runtime: fix Stacked Borrows violation in `LocalOwnedTasks` ([#5099])
675
- - runtime: mitigate ABA with 32-bit queue indices when possible ([#5042])
676
- - task: wake local tasks to the local queue when woken by the same thread ([#5095])
677
- - time: panic in release mode when `mark_pending` called illegally ([#5093])
678
- - runtime: fix typo in expect message ([#5169])
679
- - runtime: fix `unsync_load` on atomic types ([#5175])
680
- - task: elaborate safety comments in task deallocation ([#5172])
681
- - runtime: fix `LocalSet` drop in thread local ([#5179])
682
- - net: remove libc type leakage in a public API ([#5191])
683
- - runtime: update the alignment of `CachePadded` ([#5106])
684
-
685
- ### Changed
686
- - io: make `tokio::io::copy` continue filling the buffer when writer stalls ([#5066])
687
- - runtime: remove `coop::budget` from `LocalSet::run_until` ([#5155])
688
- - sync: make `Notify` panic safe ([#5154])
689
-
690
- ### Documented
691
- - io: fix doc for `write_i8` to use signed integers ([#5040])
692
- - net: fix doc typos for TCP and UDP `set_tos` methods ([#5073])
693
- - net: fix function name in `UdpSocket::recv` documentation ([#5150])
694
- - sync: typo in `TryLockError` for `RwLock::try_write` ([#5160])
695
- - task: document that spawned tasks execute immediately ([#5117])
696
- - time: document return type of `timeout` ([#5118])
697
- - time: document that `timeout` checks only before poll ([#5126])
698
- - sync: specify return type of `oneshot::Receiver` in docs ([#5198])
699
-
700
- ### Internal changes
701
- - runtime: use const `Mutex::new` for globals ([#5061])
702
- - runtime: remove `Option` around `mio::Events` in io driver ([#5078])
703
- - runtime: remove a conditional compilation clause ([#5104])
704
- - runtime: remove a reference to internal time handle ([#5107])
705
- - runtime: misc time driver cleanup ([#5120])
706
- - runtime: move signal driver to runtime module ([#5121])
707
- - runtime: signal driver now uses I/O driver directly ([#5125])
708
- - runtime: start decoupling I/O driver and I/O handle ([#5127])
709
- - runtime: switch `io::handle` refs with scheduler:Handle ([#5128])
710
- - runtime: remove Arc from I/O driver ([#5134])
711
- - runtime: use signal driver handle via `scheduler::Handle` ([#5135])
712
- - runtime: move internal clock fns out of context ([#5139])
713
- - runtime: remove `runtime::context` module ([#5140])
714
- - runtime: keep driver cfgs in `driver.rs` ([#5141])
715
- - runtime: add `runtime::context` to unify thread-locals ([#5143])
716
- - runtime: rename some confusing internal variables/fns ([#5151])
717
- - runtime: move `coop` mod into `runtime` ([#5152])
718
- - runtime: move budget state to context thread-local ([#5157])
719
- - runtime: move park logic into runtime module ([#5158])
720
- - runtime: move `Runtime` into its own file ([#5159])
721
- - runtime: unify entering a runtime with `Handle::enter` ([#5163])
722
- - runtime: remove handle reference from each scheduler ([#5166])
723
- - runtime: move `enter` into `context` ([#5167])
724
- - runtime: combine context and entered thread-locals ([#5168])
725
- - runtime: fix accidental unsetting of current handle ([#5178])
726
- - runtime: move `CoreStage` methods to `Core` ([#5182])
727
- - sync: name mpsc semaphore types ([#5146])
728
-
729
- [#4948]: https://github.com/tokio-rs/tokio/pull/4948
730
- [#5040]: https://github.com/tokio-rs/tokio/pull/5040
731
- [#5042]: https://github.com/tokio-rs/tokio/pull/5042
732
- [#5061]: https://github.com/tokio-rs/tokio/pull/5061
733
- [#5066]: https://github.com/tokio-rs/tokio/pull/5066
734
- [#5073]: https://github.com/tokio-rs/tokio/pull/5073
735
- [#5078]: https://github.com/tokio-rs/tokio/pull/5078
736
- [#5087]: https://github.com/tokio-rs/tokio/pull/5087
737
- [#5093]: https://github.com/tokio-rs/tokio/pull/5093
738
- [#5095]: https://github.com/tokio-rs/tokio/pull/5095
739
- [#5099]: https://github.com/tokio-rs/tokio/pull/5099
740
- [#5104]: https://github.com/tokio-rs/tokio/pull/5104
741
- [#5106]: https://github.com/tokio-rs/tokio/pull/5106
742
- [#5107]: https://github.com/tokio-rs/tokio/pull/5107
743
- [#5114]: https://github.com/tokio-rs/tokio/pull/5114
744
- [#5117]: https://github.com/tokio-rs/tokio/pull/5117
745
- [#5118]: https://github.com/tokio-rs/tokio/pull/5118
746
- [#5120]: https://github.com/tokio-rs/tokio/pull/5120
747
- [#5121]: https://github.com/tokio-rs/tokio/pull/5121
748
- [#5125]: https://github.com/tokio-rs/tokio/pull/5125
749
- [#5126]: https://github.com/tokio-rs/tokio/pull/5126
750
- [#5127]: https://github.com/tokio-rs/tokio/pull/5127
751
- [#5128]: https://github.com/tokio-rs/tokio/pull/5128
752
- [#5130]: https://github.com/tokio-rs/tokio/pull/5130
753
- [#5134]: https://github.com/tokio-rs/tokio/pull/5134
754
- [#5135]: https://github.com/tokio-rs/tokio/pull/5135
755
- [#5138]: https://github.com/tokio-rs/tokio/pull/5138
756
- [#5138]: https://github.com/tokio-rs/tokio/pull/5138
757
- [#5139]: https://github.com/tokio-rs/tokio/pull/5139
758
- [#5140]: https://github.com/tokio-rs/tokio/pull/5140
759
- [#5141]: https://github.com/tokio-rs/tokio/pull/5141
760
- [#5143]: https://github.com/tokio-rs/tokio/pull/5143
761
- [#5144]: https://github.com/tokio-rs/tokio/pull/5144
762
- [#5144]: https://github.com/tokio-rs/tokio/pull/5144
763
- [#5146]: https://github.com/tokio-rs/tokio/pull/5146
764
- [#5150]: https://github.com/tokio-rs/tokio/pull/5150
765
- [#5151]: https://github.com/tokio-rs/tokio/pull/5151
766
- [#5152]: https://github.com/tokio-rs/tokio/pull/5152
767
- [#5154]: https://github.com/tokio-rs/tokio/pull/5154
768
- [#5155]: https://github.com/tokio-rs/tokio/pull/5155
769
- [#5157]: https://github.com/tokio-rs/tokio/pull/5157
770
- [#5158]: https://github.com/tokio-rs/tokio/pull/5158
771
- [#5159]: https://github.com/tokio-rs/tokio/pull/5159
772
- [#5160]: https://github.com/tokio-rs/tokio/pull/5160
773
- [#5161]: https://github.com/tokio-rs/tokio/pull/5161
774
- [#5163]: https://github.com/tokio-rs/tokio/pull/5163
775
- [#5166]: https://github.com/tokio-rs/tokio/pull/5166
776
- [#5167]: https://github.com/tokio-rs/tokio/pull/5167
777
- [#5168]: https://github.com/tokio-rs/tokio/pull/5168
778
- [#5169]: https://github.com/tokio-rs/tokio/pull/5169
779
- [#5171]: https://github.com/tokio-rs/tokio/pull/5171
780
- [#5172]: https://github.com/tokio-rs/tokio/pull/5172
781
- [#5175]: https://github.com/tokio-rs/tokio/pull/5175
782
- [#5178]: https://github.com/tokio-rs/tokio/pull/5178
783
- [#5179]: https://github.com/tokio-rs/tokio/pull/5179
784
- [#5182]: https://github.com/tokio-rs/tokio/pull/5182
785
- [#5189]: https://github.com/tokio-rs/tokio/pull/5189
786
- [#5191]: https://github.com/tokio-rs/tokio/pull/5191
787
- [#5198]: https://github.com/tokio-rs/tokio/pull/5198
788
-
789
- # 1.21.2 (September 27, 2022)
790
-
791
- This release removes the dependency on the `once_cell` crate to restore the MSRV
792
- of 1.21.x, which is the latest minor version at the time of release. ([#5048])
793
-
794
- [#5048]: https://github.com/tokio-rs/tokio/pull/5048
795
-
796
- # 1.21.1 (September 13, 2022)
797
-
798
- ### Fixed
799
-
800
- - net: fix dependency resolution for socket2 ([#5000])
801
- - task: ignore failure to set TLS in `LocalSet` Drop ([#4976])
802
-
803
- [#4976]: https://github.com/tokio-rs/tokio/pull/4976
804
- [#5000]: https://github.com/tokio-rs/tokio/pull/5000
805
-
806
- # 1.21.0 (September 2, 2022)
807
-
808
- This release is the first release of Tokio to intentionally support WASM. The
809
- `sync,macros,io-util,rt,time` features are stabilized on WASM. Additionally the
810
- wasm32-wasi target is given unstable support for the `net` feature.
811
-
812
- ### Added
813
-
814
- - net: add `device` and `bind_device` methods to TCP/UDP sockets ([#4882])
815
- - net: add `tos` and `set_tos` methods to TCP and UDP sockets ([#4877])
816
- - net: add security flags to named pipe `ServerOptions` ([#4845])
817
- - signal: add more windows signal handlers ([#4924])
818
- - sync: add `mpsc::Sender::max_capacity` method ([#4904])
819
- - sync: implement Weak version of `mpsc::Sender` ([#4595])
820
- - task: add `LocalSet::enter` ([#4765])
821
- - task: stabilize `JoinSet` and `AbortHandle` ([#4920])
822
- - tokio: add `track_caller` to public APIs ([#4805], [#4848], [#4852])
823
- - wasm: initial support for `wasm32-wasi` target ([#4716])
824
-
825
- ### Fixed
826
-
827
- - miri: improve miri compatibility by avoiding temporary references in `linked_list::Link` impls ([#4841])
828
- - signal: don't register write interest on signal pipe ([#4898])
829
- - sync: add `#[must_use]` to lock guards ([#4886])
830
- - sync: fix hang when calling `recv` on closed and reopened broadcast channel ([#4867])
831
- - task: propagate attributes on task-locals ([#4837])
832
-
833
- ### Changed
834
-
835
- - fs: change panic to error in `File::start_seek` ([#4897])
836
- - io: reduce syscalls in `poll_read` ([#4840])
837
- - process: use blocking threadpool for child stdio I/O ([#4824])
838
- - signal: make `SignalKind` methods const ([#4956])
839
-
840
- ### Internal changes
841
-
842
- - rt: extract `basic_scheduler::Config` ([#4935])
843
- - rt: move I/O driver into `runtime` module ([#4942])
844
- - rt: rename internal scheduler types ([#4945])
845
-
846
- ### Documented
847
-
848
- - chore: fix typos and grammar ([#4858], [#4894], [#4928])
849
- - io: fix typo in `AsyncSeekExt::rewind` docs ([#4893])
850
- - net: add documentation to `try_read()` for zero-length buffers ([#4937])
851
- - runtime: remove incorrect panic section for `Builder::worker_threads` ([#4849])
852
- - sync: doc of `watch::Sender::send` improved ([#4959])
853
- - task: add cancel safety docs to `JoinHandle` ([#4901])
854
- - task: expand on cancellation of `spawn_blocking` ([#4811])
855
- - time: clarify that the first tick of `Interval::tick` happens immediately ([#4951])
856
-
857
- ### Unstable
858
-
859
- - rt: add unstable option to disable the LIFO slot ([#4936])
860
- - task: fix incorrect signature in `Builder::spawn_on` ([#4953])
861
- - task: make `task::Builder::spawn*` methods fallible ([#4823])
862
-
863
- [#4595]: https://github.com/tokio-rs/tokio/pull/4595
864
- [#4716]: https://github.com/tokio-rs/tokio/pull/4716
865
- [#4765]: https://github.com/tokio-rs/tokio/pull/4765
866
- [#4805]: https://github.com/tokio-rs/tokio/pull/4805
867
- [#4811]: https://github.com/tokio-rs/tokio/pull/4811
868
- [#4823]: https://github.com/tokio-rs/tokio/pull/4823
869
- [#4824]: https://github.com/tokio-rs/tokio/pull/4824
870
- [#4837]: https://github.com/tokio-rs/tokio/pull/4837
871
- [#4840]: https://github.com/tokio-rs/tokio/pull/4840
872
- [#4841]: https://github.com/tokio-rs/tokio/pull/4841
873
- [#4845]: https://github.com/tokio-rs/tokio/pull/4845
874
- [#4848]: https://github.com/tokio-rs/tokio/pull/4848
875
- [#4849]: https://github.com/tokio-rs/tokio/pull/4849
876
- [#4852]: https://github.com/tokio-rs/tokio/pull/4852
877
- [#4858]: https://github.com/tokio-rs/tokio/pull/4858
878
- [#4867]: https://github.com/tokio-rs/tokio/pull/4867
879
- [#4877]: https://github.com/tokio-rs/tokio/pull/4877
880
- [#4882]: https://github.com/tokio-rs/tokio/pull/4882
881
- [#4886]: https://github.com/tokio-rs/tokio/pull/4886
882
- [#4893]: https://github.com/tokio-rs/tokio/pull/4893
883
- [#4894]: https://github.com/tokio-rs/tokio/pull/4894
884
- [#4897]: https://github.com/tokio-rs/tokio/pull/4897
885
- [#4898]: https://github.com/tokio-rs/tokio/pull/4898
886
- [#4901]: https://github.com/tokio-rs/tokio/pull/4901
887
- [#4904]: https://github.com/tokio-rs/tokio/pull/4904
888
- [#4920]: https://github.com/tokio-rs/tokio/pull/4920
889
- [#4924]: https://github.com/tokio-rs/tokio/pull/4924
890
- [#4928]: https://github.com/tokio-rs/tokio/pull/4928
891
- [#4935]: https://github.com/tokio-rs/tokio/pull/4935
892
- [#4936]: https://github.com/tokio-rs/tokio/pull/4936
893
- [#4937]: https://github.com/tokio-rs/tokio/pull/4937
894
- [#4942]: https://github.com/tokio-rs/tokio/pull/4942
895
- [#4945]: https://github.com/tokio-rs/tokio/pull/4945
896
- [#4951]: https://github.com/tokio-rs/tokio/pull/4951
897
- [#4953]: https://github.com/tokio-rs/tokio/pull/4953
898
- [#4956]: https://github.com/tokio-rs/tokio/pull/4956
899
- [#4959]: https://github.com/tokio-rs/tokio/pull/4959
900
-
901
- # 1.20.6 (September 22, 2023)
902
-
903
- This is a backport of a change from 1.27.0.
904
-
905
- ### Changed
906
-
907
- - io: use `memchr` from `libc` ([#5960])
908
-
909
- [#5960]: https://github.com/tokio-rs/tokio/pull/5960
910
-
911
- # 1.20.5 (May 28, 2023)
912
-
913
- Forward ports 1.18.6 changes.
914
-
915
- ### Fixed
916
-
917
- - deps: disable default features for mio ([#5728])
918
-
919
- [#5728]: https://github.com/tokio-rs/tokio/pull/5728
920
-
921
- # 1.20.4 (January 17, 2023)
922
-
923
- Forward ports 1.18.5 changes.
924
-
925
- ### Fixed
926
-
927
- - io: fix unsoundness in `ReadHalf::unsplit` ([#5375])
928
-
929
- [#5375]: https://github.com/tokio-rs/tokio/pull/5375
930
-
931
- # 1.20.3 (January 3, 2022)
932
-
933
- This release forward ports changes from 1.18.4.
934
-
935
- ### Fixed
936
-
937
- - net: fix Windows named pipe server builder to maintain option when toggling
938
- pipe mode ([#5336]).
939
-
940
- [#5336]: https://github.com/tokio-rs/tokio/pull/5336
941
-
942
- # 1.20.2 (September 27, 2022)
943
-
944
- This release removes the dependency on the `once_cell` crate to restore the MSRV
945
- of the 1.20.x LTS release. ([#5048])
946
-
947
- [#5048]: https://github.com/tokio-rs/tokio/pull/5048
948
-
949
- # 1.20.1 (July 25, 2022)
950
-
951
- ### Fixed
952
-
953
- - chore: fix version detection in build script ([#4860])
954
-
955
- [#4860]: https://github.com/tokio-rs/tokio/pull/4860
956
-
957
- # 1.20.0 (July 12, 2022)
958
-
959
- ### Added
960
- - tokio: add `track_caller` to public APIs ([#4772], [#4791], [#4793], [#4806], [#4808])
961
- - sync: Add `has_changed` method to `watch::Ref` ([#4758])
962
-
963
- ### Changed
964
-
965
- - time: remove `src/time/driver/wheel/stack.rs` ([#4766])
966
- - rt: clean up arguments passed to basic scheduler ([#4767])
967
- - net: be more specific about winapi features ([#4764])
968
- - tokio: use const initialized thread locals where possible ([#4677])
969
- - task: various small improvements to LocalKey ([#4795])
970
-
971
- ### Documented
972
-
973
- - fs: warn about performance pitfall ([#4762])
974
- - chore: fix spelling ([#4769])
975
- - sync: document spurious failures in oneshot ([#4777])
976
- - sync: add warning for watch in non-Send futures ([#4741])
977
- - chore: fix typo ([#4798])
978
-
979
- ### Unstable
980
-
981
- - joinset: rename `join_one` to `join_next` ([#4755])
982
- - rt: unhandled panic config for current thread rt ([#4770])
983
-
984
- [#4677]: https://github.com/tokio-rs/tokio/pull/4677
985
- [#4741]: https://github.com/tokio-rs/tokio/pull/4741
986
- [#4755]: https://github.com/tokio-rs/tokio/pull/4755
987
- [#4758]: https://github.com/tokio-rs/tokio/pull/4758
988
- [#4762]: https://github.com/tokio-rs/tokio/pull/4762
989
- [#4764]: https://github.com/tokio-rs/tokio/pull/4764
990
- [#4766]: https://github.com/tokio-rs/tokio/pull/4766
991
- [#4767]: https://github.com/tokio-rs/tokio/pull/4767
992
- [#4769]: https://github.com/tokio-rs/tokio/pull/4769
993
- [#4770]: https://github.com/tokio-rs/tokio/pull/4770
994
- [#4772]: https://github.com/tokio-rs/tokio/pull/4772
995
- [#4777]: https://github.com/tokio-rs/tokio/pull/4777
996
- [#4791]: https://github.com/tokio-rs/tokio/pull/4791
997
- [#4793]: https://github.com/tokio-rs/tokio/pull/4793
998
- [#4795]: https://github.com/tokio-rs/tokio/pull/4795
999
- [#4798]: https://github.com/tokio-rs/tokio/pull/4798
1000
- [#4806]: https://github.com/tokio-rs/tokio/pull/4806
1001
- [#4808]: https://github.com/tokio-rs/tokio/pull/4808
1002
-
1003
- # 1.19.2 (June 6, 2022)
1004
-
1005
- This release fixes another bug in `Notified::enable`. ([#4751])
1006
-
1007
- [#4751]: https://github.com/tokio-rs/tokio/pull/4751
1008
-
1009
- # 1.19.1 (June 5, 2022)
1010
-
1011
- This release fixes a bug in `Notified::enable`. ([#4747])
1012
-
1013
- [#4747]: https://github.com/tokio-rs/tokio/pull/4747
1014
-
1015
- # 1.19.0 (June 3, 2022)
1016
-
1017
- ### Added
1018
-
1019
- - runtime: add `is_finished` method for `JoinHandle` and `AbortHandle` ([#4709])
1020
- - runtime: make global queue and event polling intervals configurable ([#4671])
1021
- - sync: add `Notified::enable` ([#4705])
1022
- - sync: add `watch::Sender::send_if_modified` ([#4591])
1023
- - sync: add resubscribe method to broadcast::Receiver ([#4607])
1024
- - net: add `take_error` to `TcpSocket` and `TcpStream` ([#4739])
1025
-
1026
- ### Changed
1027
-
1028
- - io: refactor out usage of Weak in the io handle ([#4656])
1029
-
1030
- ### Fixed
1031
-
1032
- - macros: avoid starvation in `join!` and `try_join!` ([#4624])
1033
-
1034
- ### Documented
1035
-
1036
- - runtime: clarify semantics of tasks outliving `block_on` ([#4729])
1037
- - time: fix example for `MissedTickBehavior::Burst` ([#4713])
1038
-
1039
- ### Unstable
1040
-
1041
- - metrics: correctly update atomics in `IoDriverMetrics` ([#4725])
1042
- - metrics: fix compilation with unstable, process, and rt, but without net ([#4682])
1043
- - task: add `#[track_caller]` to `JoinSet`/`JoinMap` ([#4697])
1044
- - task: add `Builder::{spawn_on, spawn_local_on, spawn_blocking_on}` ([#4683])
1045
- - task: add `consume_budget` for cooperative scheduling ([#4498])
1046
- - task: add `join_set::Builder` for configuring `JoinSet` tasks ([#4687])
1047
- - task: update return value of `JoinSet::join_one` ([#4726])
1048
-
1049
- [#4498]: https://github.com/tokio-rs/tokio/pull/4498
1050
- [#4591]: https://github.com/tokio-rs/tokio/pull/4591
1051
- [#4607]: https://github.com/tokio-rs/tokio/pull/4607
1052
- [#4624]: https://github.com/tokio-rs/tokio/pull/4624
1053
- [#4656]: https://github.com/tokio-rs/tokio/pull/4656
1054
- [#4671]: https://github.com/tokio-rs/tokio/pull/4671
1055
- [#4682]: https://github.com/tokio-rs/tokio/pull/4682
1056
- [#4683]: https://github.com/tokio-rs/tokio/pull/4683
1057
- [#4687]: https://github.com/tokio-rs/tokio/pull/4687
1058
- [#4697]: https://github.com/tokio-rs/tokio/pull/4697
1059
- [#4705]: https://github.com/tokio-rs/tokio/pull/4705
1060
- [#4709]: https://github.com/tokio-rs/tokio/pull/4709
1061
- [#4713]: https://github.com/tokio-rs/tokio/pull/4713
1062
- [#4725]: https://github.com/tokio-rs/tokio/pull/4725
1063
- [#4726]: https://github.com/tokio-rs/tokio/pull/4726
1064
- [#4729]: https://github.com/tokio-rs/tokio/pull/4729
1065
- [#4739]: https://github.com/tokio-rs/tokio/pull/4739
1066
-
1067
- # 1.18.6 (May 28, 2023)
1068
-
1069
- ### Fixed
1070
-
1071
- - deps: disable default features for mio ([#5728])
1072
-
1073
- [#5728]: https://github.com/tokio-rs/tokio/pull/5728
1074
-
1075
- # 1.18.5 (January 17, 2023)
1076
-
1077
- ### Fixed
1078
-
1079
- - io: fix unsoundness in `ReadHalf::unsplit` ([#5375])
1080
-
1081
- [#5375]: https://github.com/tokio-rs/tokio/pull/5375
1082
-
1083
- # 1.18.4 (January 3, 2022)
1084
-
1085
- ### Fixed
1086
-
1087
- - net: fix Windows named pipe server builder to maintain option when toggling
1088
- pipe mode ([#5336]).
1089
-
1090
- [#5336]: https://github.com/tokio-rs/tokio/pull/5336
1091
-
1092
- # 1.18.3 (September 27, 2022)
1093
-
1094
- This release removes the dependency on the `once_cell` crate to restore the MSRV
1095
- of the 1.18.x LTS release. ([#5048])
1096
-
1097
- [#5048]: https://github.com/tokio-rs/tokio/pull/5048
1098
-
1099
- # 1.18.2 (May 5, 2022)
1100
-
1101
- Add missing features for the `winapi` dependency. ([#4663])
1102
-
1103
- [#4663]: https://github.com/tokio-rs/tokio/pull/4663
1104
-
1105
- # 1.18.1 (May 2, 2022)
1106
-
1107
- The 1.18.0 release broke the build for targets without 64-bit atomics when
1108
- building with `tokio_unstable`. This release fixes that. ([#4649])
1109
-
1110
- [#4649]: https://github.com/tokio-rs/tokio/pull/4649
1111
-
1112
- # 1.18.0 (April 27, 2022)
1113
-
1114
- This release adds a number of new APIs in `tokio::net`, `tokio::signal`, and
1115
- `tokio::sync`. In addition, it adds new unstable APIs to `tokio::task` (`Id`s
1116
- for uniquely identifying a task, and `AbortHandle` for remotely cancelling a
1117
- task), as well as a number of bugfixes.
1118
-
1119
- ### Fixed
1120
-
1121
- - blocking: add missing `#[track_caller]` for `spawn_blocking` ([#4616])
1122
- - macros: fix `select` macro to process 64 branches ([#4519])
1123
- - net: fix `try_io` methods not calling Mio's `try_io` internally ([#4582])
1124
- - runtime: recover when OS fails to spawn a new thread ([#4485])
1125
-
1126
- ### Added
1127
-
1128
- - net: add `UdpSocket::peer_addr` ([#4611])
1129
- - net: add `try_read_buf` method for named pipes ([#4626])
1130
- - signal: add `SignalKind` `Hash`/`Eq` impls and `c_int` conversion ([#4540])
1131
- - signal: add support for signals up to `SIGRTMAX` ([#4555])
1132
- - sync: add `watch::Sender::send_modify` method ([#4310])
1133
- - sync: add `broadcast::Receiver::len` method ([#4542])
1134
- - sync: add `watch::Receiver::same_channel` method ([#4581])
1135
- - sync: implement `Clone` for `RecvError` types ([#4560])
1136
-
1137
- ### Changed
1138
-
1139
- - update `mio` to 0.8.1 ([#4582])
1140
- - macros: rename `tokio::select!`'s internal `util` module ([#4543])
1141
- - runtime: use `Vec::with_capacity` when building runtime ([#4553])
1142
-
1143
- ### Documented
1144
-
1145
- - improve docs for `tokio_unstable` ([#4524])
1146
- - runtime: include more documentation for thread_pool/worker ([#4511])
1147
- - runtime: update `Handle::current`'s docs to mention `EnterGuard` ([#4567])
1148
- - time: clarify platform specific timer resolution ([#4474])
1149
- - signal: document that `Signal::recv` is cancel-safe ([#4634])
1150
- - sync: `UnboundedReceiver` close docs ([#4548])
1151
-
1152
- ### Unstable
1153
-
1154
- The following changes only apply when building with `--cfg tokio_unstable`:
1155
-
1156
- - task: add `task::Id` type ([#4630])
1157
- - task: add `AbortHandle` type for cancelling tasks in a `JoinSet` ([#4530],
1158
- [#4640])
1159
- - task: fix missing `doc(cfg(...))` attributes for `JoinSet` ([#4531])
1160
- - task: fix broken link in `AbortHandle` RustDoc ([#4545])
1161
- - metrics: add initial IO driver metrics ([#4507])
1162
-
1163
-
1164
- [#4616]: https://github.com/tokio-rs/tokio/pull/4616
1165
- [#4519]: https://github.com/tokio-rs/tokio/pull/4519
1166
- [#4582]: https://github.com/tokio-rs/tokio/pull/4582
1167
- [#4485]: https://github.com/tokio-rs/tokio/pull/4485
1168
- [#4613]: https://github.com/tokio-rs/tokio/pull/4613
1169
- [#4611]: https://github.com/tokio-rs/tokio/pull/4611
1170
- [#4626]: https://github.com/tokio-rs/tokio/pull/4626
1171
- [#4540]: https://github.com/tokio-rs/tokio/pull/4540
1172
- [#4555]: https://github.com/tokio-rs/tokio/pull/4555
1173
- [#4310]: https://github.com/tokio-rs/tokio/pull/4310
1174
- [#4542]: https://github.com/tokio-rs/tokio/pull/4542
1175
- [#4581]: https://github.com/tokio-rs/tokio/pull/4581
1176
- [#4560]: https://github.com/tokio-rs/tokio/pull/4560
1177
- [#4631]: https://github.com/tokio-rs/tokio/pull/4631
1178
- [#4582]: https://github.com/tokio-rs/tokio/pull/4582
1179
- [#4543]: https://github.com/tokio-rs/tokio/pull/4543
1180
- [#4553]: https://github.com/tokio-rs/tokio/pull/4553
1181
- [#4524]: https://github.com/tokio-rs/tokio/pull/4524
1182
- [#4511]: https://github.com/tokio-rs/tokio/pull/4511
1183
- [#4567]: https://github.com/tokio-rs/tokio/pull/4567
1184
- [#4474]: https://github.com/tokio-rs/tokio/pull/4474
1185
- [#4634]: https://github.com/tokio-rs/tokio/pull/4634
1186
- [#4548]: https://github.com/tokio-rs/tokio/pull/4548
1187
- [#4630]: https://github.com/tokio-rs/tokio/pull/4630
1188
- [#4530]: https://github.com/tokio-rs/tokio/pull/4530
1189
- [#4640]: https://github.com/tokio-rs/tokio/pull/4640
1190
- [#4531]: https://github.com/tokio-rs/tokio/pull/4531
1191
- [#4545]: https://github.com/tokio-rs/tokio/pull/4545
1192
- [#4507]: https://github.com/tokio-rs/tokio/pull/4507
1193
-
1194
- # 1.17.0 (February 16, 2022)
1195
-
1196
- This release updates the minimum supported Rust version (MSRV) to 1.49, the
1197
- `mio` dependency to v0.8, and the (optional) `parking_lot` dependency to v0.12.
1198
- Additionally, it contains several bug fixes, as well as internal refactoring and
1199
- performance improvements.
1200
-
1201
- ### Fixed
1202
-
1203
- - time: prevent panicking in `sleep` with large durations ([#4495])
1204
- - time: eliminate potential panics in `Instant` arithmetic on platforms where
1205
- `Instant::now` is not monotonic ([#4461])
1206
- - io: fix `DuplexStream` not participating in cooperative yielding ([#4478])
1207
- - rt: fix potential double panic when dropping a `JoinHandle` ([#4430])
1208
-
1209
- ### Changed
1210
-
1211
- - update minimum supported Rust version to 1.49 ([#4457])
1212
- - update `parking_lot` dependency to v0.12.0 ([#4459])
1213
- - update `mio` dependency to v0.8 ([#4449])
1214
- - rt: remove an unnecessary lock in the blocking pool ([#4436])
1215
- - rt: remove an unnecessary enum in the basic scheduler ([#4462])
1216
- - time: use bit manipulation instead of modulo to improve performance ([#4480])
1217
- - net: use `std::future::Ready` instead of our own `Ready` future ([#4271])
1218
- - replace deprecated `atomic::spin_loop_hint` with `hint::spin_loop` ([#4491])
1219
- - fix miri failures in intrusive linked lists ([#4397])
1220
-
1221
- ### Documented
1222
-
1223
- - io: add an example for `tokio::process::ChildStdin` ([#4479])
1224
-
1225
- ### Unstable
1226
-
1227
- The following changes only apply when building with `--cfg tokio_unstable`:
1228
-
1229
- - task: fix missing location information in `tracing` spans generated by
1230
- `spawn_local` ([#4483])
1231
- - task: add `JoinSet` for managing sets of tasks ([#4335])
1232
- - metrics: fix compilation error on MIPS ([#4475])
1233
- - metrics: fix compilation error on arm32v7 ([#4453])
1234
-
1235
- [#4495]: https://github.com/tokio-rs/tokio/pull/4495
1236
- [#4461]: https://github.com/tokio-rs/tokio/pull/4461
1237
- [#4478]: https://github.com/tokio-rs/tokio/pull/4478
1238
- [#4430]: https://github.com/tokio-rs/tokio/pull/4430
1239
- [#4457]: https://github.com/tokio-rs/tokio/pull/4457
1240
- [#4459]: https://github.com/tokio-rs/tokio/pull/4459
1241
- [#4449]: https://github.com/tokio-rs/tokio/pull/4449
1242
- [#4462]: https://github.com/tokio-rs/tokio/pull/4462
1243
- [#4436]: https://github.com/tokio-rs/tokio/pull/4436
1244
- [#4480]: https://github.com/tokio-rs/tokio/pull/4480
1245
- [#4271]: https://github.com/tokio-rs/tokio/pull/4271
1246
- [#4491]: https://github.com/tokio-rs/tokio/pull/4491
1247
- [#4397]: https://github.com/tokio-rs/tokio/pull/4397
1248
- [#4479]: https://github.com/tokio-rs/tokio/pull/4479
1249
- [#4483]: https://github.com/tokio-rs/tokio/pull/4483
1250
- [#4335]: https://github.com/tokio-rs/tokio/pull/4335
1251
- [#4475]: https://github.com/tokio-rs/tokio/pull/4475
1252
- [#4453]: https://github.com/tokio-rs/tokio/pull/4453
1253
-
1254
- # 1.16.1 (January 28, 2022)
1255
-
1256
- This release fixes a bug in [#4428] with the change [#4437].
1257
-
1258
- [#4428]: https://github.com/tokio-rs/tokio/pull/4428
1259
- [#4437]: https://github.com/tokio-rs/tokio/pull/4437
1260
-
1261
- # 1.16.0 (January 27, 2022)
1262
-
1263
- Fixes a soundness bug in `io::Take` ([#4428]). The unsoundness is exposed when
1264
- leaking memory in the given `AsyncRead` implementation and then overwriting the
1265
- supplied buffer:
1266
-
1267
- ```rust
1268
- impl AsyncRead for Buggy {
1269
- fn poll_read(
1270
- self: Pin<&mut Self>,
1271
- cx: &mut Context<'_>,
1272
- buf: &mut ReadBuf<'_>
1273
- ) -> Poll<Result<()>> {
1274
- let new_buf = vec![0; 5].leak();
1275
- *buf = ReadBuf::new(new_buf);
1276
- buf.put_slice(b"hello");
1277
- Poll::Ready(Ok(()))
1278
- }
1279
- }
1280
- ```
1281
-
1282
- Also, this release includes improvements to the multi-threaded scheduler that
1283
- can increase throughput by up to 20% in some cases ([#4383]).
1284
-
1285
- ### Fixed
1286
-
1287
- - io: **soundness** don't expose uninitialized memory when using `io::Take` in edge case ([#4428])
1288
- - fs: ensure `File::write` results in a `write` syscall when the runtime shuts down ([#4316])
1289
- - process: drop pipe after child exits in `wait_with_output` ([#4315])
1290
- - rt: improve error message when spawning a thread fails ([#4398])
1291
- - rt: reduce false-positive thread wakups in the multi-threaded scheduler ([#4383])
1292
- - sync: don't inherit `Send` from `parking_lot::*Guard` ([#4359])
1293
-
1294
- ### Added
1295
-
1296
- - net: `TcpSocket::linger()` and `set_linger()` ([#4324])
1297
- - net: impl `UnwindSafe` for socket types ([#4384])
1298
- - rt: impl `UnwindSafe` for `JoinHandle` ([#4418])
1299
- - sync: `watch::Receiver::has_changed()` ([#4342])
1300
- - sync: `oneshot::Receiver::blocking_recv()` ([#4334])
1301
- - sync: `RwLock` blocking operations ([#4425])
1302
-
1303
- ### Unstable
1304
-
1305
- The following changes only apply when building with `--cfg tokio_unstable`
1306
-
1307
- - rt: **breaking change** overhaul runtime metrics API ([#4373])
1308
-
1309
- [#4428]: https://github.com/tokio-rs/tokio/pull/4428
1310
- [#4316]: https://github.com/tokio-rs/tokio/pull/4316
1311
- [#4315]: https://github.com/tokio-rs/tokio/pull/4315
1312
- [#4398]: https://github.com/tokio-rs/tokio/pull/4398
1313
- [#4383]: https://github.com/tokio-rs/tokio/pull/4383
1314
- [#4359]: https://github.com/tokio-rs/tokio/pull/4359
1315
- [#4324]: https://github.com/tokio-rs/tokio/pull/4324
1316
- [#4384]: https://github.com/tokio-rs/tokio/pull/4384
1317
- [#4418]: https://github.com/tokio-rs/tokio/pull/4418
1318
- [#4342]: https://github.com/tokio-rs/tokio/pull/4342
1319
- [#4334]: https://github.com/tokio-rs/tokio/pull/4334
1320
- [#4425]: https://github.com/tokio-rs/tokio/pull/4425
1321
- [#4373]: https://github.com/tokio-rs/tokio/pull/4373
1322
-
1323
- # 1.15.0 (December 15, 2021)
1324
-
1325
- ### Fixed
1326
-
1327
- - io: add cooperative yielding support to `io::empty()` ([#4300])
1328
- - time: make timeout robust against budget-depleting tasks ([#4314])
1329
-
1330
- ### Changed
1331
-
1332
- - update minimum supported Rust version to 1.46.
1333
-
1334
- ### Added
1335
-
1336
- - time: add `Interval::reset()` ([#4248])
1337
- - io: add explicit lifetimes to `AsyncFdReadyGuard` ([#4267])
1338
- - process: add `Command::as_std()` ([#4295])
1339
-
1340
- ### Added (unstable)
1341
-
1342
- - tracing: instrument `tokio::sync` types ([#4302])
1343
-
1344
- [#4302]: https://github.com/tokio-rs/tokio/pull/4302
1345
- [#4300]: https://github.com/tokio-rs/tokio/pull/4300
1346
- [#4295]: https://github.com/tokio-rs/tokio/pull/4295
1347
- [#4267]: https://github.com/tokio-rs/tokio/pull/4267
1348
- [#4248]: https://github.com/tokio-rs/tokio/pull/4248
1349
- [#4314]: https://github.com/tokio-rs/tokio/pull/4314
1350
-
1351
- # 1.14.0 (November 15, 2021)
1352
-
1353
- ### Fixed
1354
-
1355
- - macros: fix compiler errors when using `mut` patterns in `select!` ([#4211])
1356
- - sync: fix a data race between `oneshot::Sender::send` and awaiting a
1357
- `oneshot::Receiver` when the oneshot has been closed ([#4226])
1358
- - sync: make `AtomicWaker` panic safe ([#3689])
1359
- - runtime: fix basic scheduler dropping tasks outside a runtime context
1360
- ([#4213])
1361
-
1362
- ### Added
1363
-
1364
- - stats: add `RuntimeStats::busy_duration_total` ([#4179], [#4223])
1365
-
1366
- ### Changed
1367
-
1368
- - io: updated `copy` buffer size to match `std::io::copy` ([#4209])
1369
-
1370
- ### Documented
1371
-
1372
- - io: rename buffer to file in doc-test ([#4230])
1373
- - sync: fix Notify example ([#4212])
1374
-
1375
- [#4211]: https://github.com/tokio-rs/tokio/pull/4211
1376
- [#4226]: https://github.com/tokio-rs/tokio/pull/4226
1377
- [#3689]: https://github.com/tokio-rs/tokio/pull/3689
1378
- [#4213]: https://github.com/tokio-rs/tokio/pull/4213
1379
- [#4179]: https://github.com/tokio-rs/tokio/pull/4179
1380
- [#4223]: https://github.com/tokio-rs/tokio/pull/4223
1381
- [#4209]: https://github.com/tokio-rs/tokio/pull/4209
1382
- [#4230]: https://github.com/tokio-rs/tokio/pull/4230
1383
- [#4212]: https://github.com/tokio-rs/tokio/pull/4212
1384
-
1385
- # 1.13.1 (November 15, 2021)
1386
-
1387
- ### Fixed
1388
-
1389
- - sync: fix a data race between `oneshot::Sender::send` and awaiting a
1390
- `oneshot::Receiver` when the oneshot has been closed ([#4226])
1391
-
1392
- [#4226]: https://github.com/tokio-rs/tokio/pull/4226
1393
-
1394
- # 1.13.0 (October 29, 2021)
1395
-
1396
- ### Fixed
1397
-
1398
- - sync: fix `Notify` to clone the waker before locking its waiter list ([#4129])
1399
- - tokio: add riscv32 to non atomic64 architectures ([#4185])
1400
-
1401
- ### Added
1402
-
1403
- - net: add `poll_{recv,send}_ready` methods to `udp` and `uds_datagram` ([#4131])
1404
- - net: add `try_*`, `readable`, `writable`, `ready`, and `peer_addr` methods to split halves ([#4120])
1405
- - sync: add `blocking_lock` to `Mutex` ([#4130])
1406
- - sync: add `watch::Sender::send_replace` ([#3962], [#4195])
1407
- - sync: expand `Debug` for `Mutex<T>` impl to unsized `T` ([#4134])
1408
- - tracing: instrument time::Sleep ([#4072])
1409
- - tracing: use structured location fields for spawned tasks ([#4128])
1410
-
1411
- ### Changed
1412
-
1413
- - io: add assert in `copy_bidirectional` that `poll_write` is sensible ([#4125])
1414
- - macros: use qualified syntax when polling in `select!` ([#4192])
1415
- - runtime: handle `block_on` wakeups better ([#4157])
1416
- - task: allocate callback on heap immediately in debug mode ([#4203])
1417
- - tokio: assert platform-minimum requirements at build time ([#3797])
1418
-
1419
- ### Documented
1420
-
1421
- - docs: conversion of doc comments to indicative mood ([#4174])
1422
- - docs: add returning on the first error example for `try_join!` ([#4133])
1423
- - docs: fixing broken links in `tokio/src/lib.rs` ([#4132])
1424
- - signal: add example with background listener ([#4171])
1425
- - sync: add more oneshot examples ([#4153])
1426
- - time: document `Interval::tick` cancel safety ([#4152])
1427
-
1428
- [#3797]: https://github.com/tokio-rs/tokio/pull/3797
1429
- [#3962]: https://github.com/tokio-rs/tokio/pull/3962
1430
- [#4072]: https://github.com/tokio-rs/tokio/pull/4072
1431
- [#4120]: https://github.com/tokio-rs/tokio/pull/4120
1432
- [#4125]: https://github.com/tokio-rs/tokio/pull/4125
1433
- [#4128]: https://github.com/tokio-rs/tokio/pull/4128
1434
- [#4129]: https://github.com/tokio-rs/tokio/pull/4129
1435
- [#4130]: https://github.com/tokio-rs/tokio/pull/4130
1436
- [#4131]: https://github.com/tokio-rs/tokio/pull/4131
1437
- [#4132]: https://github.com/tokio-rs/tokio/pull/4132
1438
- [#4133]: https://github.com/tokio-rs/tokio/pull/4133
1439
- [#4134]: https://github.com/tokio-rs/tokio/pull/4134
1440
- [#4152]: https://github.com/tokio-rs/tokio/pull/4152
1441
- [#4153]: https://github.com/tokio-rs/tokio/pull/4153
1442
- [#4157]: https://github.com/tokio-rs/tokio/pull/4157
1443
- [#4171]: https://github.com/tokio-rs/tokio/pull/4171
1444
- [#4174]: https://github.com/tokio-rs/tokio/pull/4174
1445
- [#4185]: https://github.com/tokio-rs/tokio/pull/4185
1446
- [#4192]: https://github.com/tokio-rs/tokio/pull/4192
1447
- [#4195]: https://github.com/tokio-rs/tokio/pull/4195
1448
- [#4203]: https://github.com/tokio-rs/tokio/pull/4203
1449
-
1450
- # 1.12.0 (September 21, 2021)
1451
-
1452
- ### Fixed
1453
-
1454
- - mpsc: ensure `try_reserve` error is consistent with `try_send` ([#4119])
1455
- - mpsc: use `spin_loop_hint` instead of `yield_now` ([#4115])
1456
- - sync: make `SendError` field public ([#4097])
1457
-
1458
- ### Added
1459
-
1460
- - io: add POSIX AIO on FreeBSD ([#4054])
1461
- - io: add convenience method `AsyncSeekExt::rewind` ([#4107])
1462
- - runtime: add tracing span for `block_on` futures ([#4094])
1463
- - runtime: callback when a worker parks and unparks ([#4070])
1464
- - sync: implement `try_recv` for mpsc channels ([#4113])
1465
-
1466
- ### Documented
1467
-
1468
- - docs: clarify CPU-bound tasks on Tokio ([#4105])
1469
- - mpsc: document spurious failures on `poll_recv` ([#4117])
1470
- - mpsc: document that `PollSender` impls `Sink` ([#4110])
1471
- - task: document non-guarantees of `yield_now` ([#4091])
1472
- - time: document paused time details better ([#4061], [#4103])
1473
-
1474
- [#4027]: https://github.com/tokio-rs/tokio/pull/4027
1475
- [#4054]: https://github.com/tokio-rs/tokio/pull/4054
1476
- [#4061]: https://github.com/tokio-rs/tokio/pull/4061
1477
- [#4070]: https://github.com/tokio-rs/tokio/pull/4070
1478
- [#4091]: https://github.com/tokio-rs/tokio/pull/4091
1479
- [#4094]: https://github.com/tokio-rs/tokio/pull/4094
1480
- [#4097]: https://github.com/tokio-rs/tokio/pull/4097
1481
- [#4103]: https://github.com/tokio-rs/tokio/pull/4103
1482
- [#4105]: https://github.com/tokio-rs/tokio/pull/4105
1483
- [#4107]: https://github.com/tokio-rs/tokio/pull/4107
1484
- [#4110]: https://github.com/tokio-rs/tokio/pull/4110
1485
- [#4113]: https://github.com/tokio-rs/tokio/pull/4113
1486
- [#4115]: https://github.com/tokio-rs/tokio/pull/4115
1487
- [#4117]: https://github.com/tokio-rs/tokio/pull/4117
1488
- [#4119]: https://github.com/tokio-rs/tokio/pull/4119
1489
-
1490
- # 1.11.0 (August 31, 2021)
1491
-
1492
- ### Fixed
1493
-
1494
- - time: don't panic when Instant is not monotonic ([#4044])
1495
- - io: fix panic in `fill_buf` by not calling `poll_fill_buf` twice ([#4084])
1496
-
1497
- ### Added
1498
-
1499
- - watch: add `watch::Sender::subscribe` ([#3800])
1500
- - process: add `from_std` to `ChildStd*` ([#4045])
1501
- - stats: initial work on runtime stats ([#4043])
1502
-
1503
- ### Changed
1504
-
1505
- - tracing: change span naming to new console convention ([#4042])
1506
- - io: speed-up waking by using uninitialized array ([#4055], [#4071], [#4075])
1507
-
1508
- ### Documented
1509
-
1510
- - time: make Sleep examples easier to find ([#4040])
1511
-
1512
- [#3800]: https://github.com/tokio-rs/tokio/pull/3800
1513
- [#4040]: https://github.com/tokio-rs/tokio/pull/4040
1514
- [#4042]: https://github.com/tokio-rs/tokio/pull/4042
1515
- [#4043]: https://github.com/tokio-rs/tokio/pull/4043
1516
- [#4044]: https://github.com/tokio-rs/tokio/pull/4044
1517
- [#4045]: https://github.com/tokio-rs/tokio/pull/4045
1518
- [#4055]: https://github.com/tokio-rs/tokio/pull/4055
1519
- [#4071]: https://github.com/tokio-rs/tokio/pull/4071
1520
- [#4075]: https://github.com/tokio-rs/tokio/pull/4075
1521
- [#4084]: https://github.com/tokio-rs/tokio/pull/4084
1522
-
1523
- # 1.10.1 (August 24, 2021)
1524
-
1525
- ### Fixed
1526
-
1527
- - runtime: fix leak in UnownedTask ([#4063])
1528
-
1529
- [#4063]: https://github.com/tokio-rs/tokio/pull/4063
1530
-
1531
- # 1.10.0 (August 12, 2021)
1532
-
1533
- ### Added
1534
-
1535
- - io: add `(read|write)_f(32|64)[_le]` methods ([#4022])
1536
- - io: add `fill_buf` and `consume` to `AsyncBufReadExt` ([#3991])
1537
- - process: add `Child::raw_handle()` on windows ([#3998])
1538
-
1539
- ### Fixed
1540
-
1541
- - doc: fix non-doc builds with `--cfg docsrs` ([#4020])
1542
- - io: flush eagerly in `io::copy` ([#4001])
1543
- - runtime: a debug assert was sometimes triggered during shutdown ([#4005])
1544
- - sync: use `spin_loop_hint` instead of `yield_now` in mpsc ([#4037])
1545
- - tokio: the test-util feature depends on rt, sync, and time ([#4036])
1546
-
1547
- ### Changes
1548
-
1549
- - runtime: reorganize parts of the runtime ([#3979], [#4005])
1550
- - signal: make windows docs for signal module show up on unix builds ([#3770])
1551
- - task: quickly send task to heap on debug mode ([#4009])
1552
-
1553
- ### Documented
1554
-
1555
- - io: document cancellation safety of `AsyncBufReadExt` ([#3997])
1556
- - sync: document when `watch::send` fails ([#4021])
1557
-
1558
- [#3770]: https://github.com/tokio-rs/tokio/pull/3770
1559
- [#3979]: https://github.com/tokio-rs/tokio/pull/3979
1560
- [#3991]: https://github.com/tokio-rs/tokio/pull/3991
1561
- [#3997]: https://github.com/tokio-rs/tokio/pull/3997
1562
- [#3998]: https://github.com/tokio-rs/tokio/pull/3998
1563
- [#4001]: https://github.com/tokio-rs/tokio/pull/4001
1564
- [#4005]: https://github.com/tokio-rs/tokio/pull/4005
1565
- [#4009]: https://github.com/tokio-rs/tokio/pull/4009
1566
- [#4020]: https://github.com/tokio-rs/tokio/pull/4020
1567
- [#4021]: https://github.com/tokio-rs/tokio/pull/4021
1568
- [#4022]: https://github.com/tokio-rs/tokio/pull/4022
1569
- [#4036]: https://github.com/tokio-rs/tokio/pull/4036
1570
- [#4037]: https://github.com/tokio-rs/tokio/pull/4037
1571
-
1572
- # 1.9.0 (July 22, 2021)
1573
-
1574
- ### Added
1575
-
1576
- - net: allow customized I/O operations for `TcpStream` ([#3888])
1577
- - sync: add getter for the mutex from a guard ([#3928])
1578
- - task: expose nameable future for `TaskLocal::scope` ([#3273])
1579
-
1580
- ### Fixed
1581
-
1582
- - Fix leak if output of future panics on drop ([#3967])
1583
- - Fix leak in `LocalSet` ([#3978])
1584
-
1585
- ### Changes
1586
-
1587
- - runtime: reorganize parts of the runtime ([#3909], [#3939], [#3950], [#3955], [#3980])
1588
- - sync: clean up `OnceCell` ([#3945])
1589
- - task: remove mutex in `JoinError` ([#3959])
1590
-
1591
- [#3273]: https://github.com/tokio-rs/tokio/pull/3273
1592
- [#3888]: https://github.com/tokio-rs/tokio/pull/3888
1593
- [#3909]: https://github.com/tokio-rs/tokio/pull/3909
1594
- [#3928]: https://github.com/tokio-rs/tokio/pull/3928
1595
- [#3934]: https://github.com/tokio-rs/tokio/pull/3934
1596
- [#3939]: https://github.com/tokio-rs/tokio/pull/3939
1597
- [#3945]: https://github.com/tokio-rs/tokio/pull/3945
1598
- [#3950]: https://github.com/tokio-rs/tokio/pull/3950
1599
- [#3955]: https://github.com/tokio-rs/tokio/pull/3955
1600
- [#3959]: https://github.com/tokio-rs/tokio/pull/3959
1601
- [#3967]: https://github.com/tokio-rs/tokio/pull/3967
1602
- [#3978]: https://github.com/tokio-rs/tokio/pull/3978
1603
- [#3980]: https://github.com/tokio-rs/tokio/pull/3980
1604
-
1605
- # 1.8.3 (July 26, 2021)
1606
-
1607
- This release backports two fixes from 1.9.0
1608
-
1609
- ### Fixed
1610
-
1611
- - Fix leak if output of future panics on drop ([#3967])
1612
- - Fix leak in `LocalSet` ([#3978])
1613
-
1614
- [#3967]: https://github.com/tokio-rs/tokio/pull/3967
1615
- [#3978]: https://github.com/tokio-rs/tokio/pull/3978
1616
-
1617
- # 1.8.2 (July 19, 2021)
1618
-
1619
- Fixes a missed edge case from 1.8.1.
1620
-
1621
- ### Fixed
1622
-
1623
- - runtime: drop canceled future on next poll ([#3965])
1624
-
1625
- [#3965]: https://github.com/tokio-rs/tokio/pull/3965
1626
-
1627
- # 1.8.1 (July 6, 2021)
1628
-
1629
- Forward ports 1.5.1 fixes.
1630
-
1631
- ### Fixed
1632
-
1633
- - runtime: remotely abort tasks on `JoinHandle::abort` ([#3934])
1634
-
1635
- [#3934]: https://github.com/tokio-rs/tokio/pull/3934
1636
-
1637
- # 1.8.0 (July 2, 2021)
1638
-
1639
- ### Added
1640
-
1641
- - io: add `get_{ref,mut}` methods to `AsyncFdReadyGuard` and `AsyncFdReadyMutGuard` ([#3807])
1642
- - io: efficient implementation of vectored writes for `BufWriter` ([#3163])
1643
- - net: add ready/try methods to `NamedPipe{Client,Server}` ([#3866], [#3899])
1644
- - sync: add `watch::Receiver::borrow_and_update` ([#3813])
1645
- - sync: implement `From<T>` for `OnceCell<T>` ([#3877])
1646
- - time: allow users to specify Interval behaviour when delayed ([#3721])
1647
-
1648
- ### Added (unstable)
1649
-
1650
- - rt: add `tokio::task::Builder` ([#3881])
1651
-
1652
- ### Fixed
1653
-
1654
- - net: handle HUP event with `UnixStream` ([#3898])
1655
-
1656
- ### Documented
1657
-
1658
- - doc: document cancellation safety ([#3900])
1659
- - time: add wait alias to sleep ([#3897])
1660
- - time: document auto-advancing behaviour of runtime ([#3763])
1661
-
1662
- [#3163]: https://github.com/tokio-rs/tokio/pull/3163
1663
- [#3721]: https://github.com/tokio-rs/tokio/pull/3721
1664
- [#3763]: https://github.com/tokio-rs/tokio/pull/3763
1665
- [#3807]: https://github.com/tokio-rs/tokio/pull/3807
1666
- [#3813]: https://github.com/tokio-rs/tokio/pull/3813
1667
- [#3866]: https://github.com/tokio-rs/tokio/pull/3866
1668
- [#3877]: https://github.com/tokio-rs/tokio/pull/3877
1669
- [#3881]: https://github.com/tokio-rs/tokio/pull/3881
1670
- [#3897]: https://github.com/tokio-rs/tokio/pull/3897
1671
- [#3898]: https://github.com/tokio-rs/tokio/pull/3898
1672
- [#3899]: https://github.com/tokio-rs/tokio/pull/3899
1673
- [#3900]: https://github.com/tokio-rs/tokio/pull/3900
1674
-
1675
- # 1.7.2 (July 6, 2021)
1676
-
1677
- Forward ports 1.5.1 fixes.
1678
-
1679
- ### Fixed
1680
-
1681
- - runtime: remotely abort tasks on `JoinHandle::abort` ([#3934])
1682
-
1683
- [#3934]: https://github.com/tokio-rs/tokio/pull/3934
1684
-
1685
- # 1.7.1 (June 18, 2021)
1686
-
1687
- ### Fixed
1688
-
1689
- - runtime: fix early task shutdown during runtime shutdown ([#3870])
1690
-
1691
- [#3870]: https://github.com/tokio-rs/tokio/pull/3870
1692
-
1693
- # 1.7.0 (June 15, 2021)
1694
-
1695
- ### Added
1696
-
1697
- - net: add named pipes on windows ([#3760])
1698
- - net: add `TcpSocket` from `std::net::TcpStream` conversion ([#3838])
1699
- - sync: add `receiver_count` to `watch::Sender` ([#3729])
1700
- - sync: export `sync::notify::Notified` future publicly ([#3840])
1701
- - tracing: instrument task wakers ([#3836])
1702
-
1703
- ### Fixed
1704
-
1705
- - macros: suppress `clippy::default_numeric_fallback` lint in generated code ([#3831])
1706
- - runtime: immediately drop new tasks when runtime is shut down ([#3752])
1707
- - sync: deprecate unused `mpsc::RecvError` type ([#3833])
1708
-
1709
- ### Documented
1710
-
1711
- - io: clarify EOF condition for `AsyncReadExt::read_buf` ([#3850])
1712
- - io: clarify limits on return values of `AsyncWrite::poll_write` ([#3820])
1713
- - sync: add examples to Semaphore ([#3808])
1714
-
1715
- [#3729]: https://github.com/tokio-rs/tokio/pull/3729
1716
- [#3752]: https://github.com/tokio-rs/tokio/pull/3752
1717
- [#3760]: https://github.com/tokio-rs/tokio/pull/3760
1718
- [#3808]: https://github.com/tokio-rs/tokio/pull/3808
1719
- [#3820]: https://github.com/tokio-rs/tokio/pull/3820
1720
- [#3831]: https://github.com/tokio-rs/tokio/pull/3831
1721
- [#3833]: https://github.com/tokio-rs/tokio/pull/3833
1722
- [#3836]: https://github.com/tokio-rs/tokio/pull/3836
1723
- [#3838]: https://github.com/tokio-rs/tokio/pull/3838
1724
- [#3840]: https://github.com/tokio-rs/tokio/pull/3840
1725
- [#3850]: https://github.com/tokio-rs/tokio/pull/3850
1726
-
1727
- # 1.6.3 (July 6, 2021)
1728
-
1729
- Forward ports 1.5.1 fixes.
1730
-
1731
- ### Fixed
1732
-
1733
- - runtime: remotely abort tasks on `JoinHandle::abort` ([#3934])
1734
-
1735
- [#3934]: https://github.com/tokio-rs/tokio/pull/3934
1736
-
1737
- # 1.6.2 (June 14, 2021)
1738
-
1739
- ### Fixes
1740
-
1741
- - test: sub-ms `time:advance` regression introduced in 1.6 ([#3852])
1742
-
1743
- [#3852]: https://github.com/tokio-rs/tokio/pull/3852
1744
-
1745
- # 1.6.1 (May 28, 2021)
1746
-
1747
- This release reverts [#3518] because it doesn't work on some kernels due to
1748
- a kernel bug. ([#3803])
1749
-
1750
- [#3518]: https://github.com/tokio-rs/tokio/issues/3518
1751
- [#3803]: https://github.com/tokio-rs/tokio/issues/3803
1752
-
1753
- # 1.6.0 (May 14, 2021)
1754
-
1755
- ### Added
1756
-
1757
- - fs: try doing a non-blocking read before punting to the threadpool ([#3518])
1758
- - io: add `write_all_buf` to `AsyncWriteExt` ([#3737])
1759
- - io: implement `AsyncSeek` for `BufReader`, `BufWriter`, and `BufStream` ([#3491])
1760
- - net: support non-blocking vectored I/O ([#3761])
1761
- - sync: add `mpsc::Sender::{reserve_owned, try_reserve_owned}` ([#3704])
1762
- - sync: add a `MutexGuard::map` method that returns a `MappedMutexGuard` ([#2472])
1763
- - time: add getter for Interval's period ([#3705])
1764
-
1765
- ### Fixed
1766
-
1767
- - io: wake pending writers on `DuplexStream` close ([#3756])
1768
- - process: avoid redundant effort to reap orphan processes ([#3743])
1769
- - signal: use `std::os::raw::c_int` instead of `libc::c_int` on public API ([#3774])
1770
- - sync: preserve permit state in `notify_waiters` ([#3660])
1771
- - task: update `JoinHandle` panic message ([#3727])
1772
- - time: prevent `time::advance` from going too far ([#3712])
1773
-
1774
- ### Documented
1775
-
1776
- - net: hide `net::unix::datagram` module from docs ([#3775])
1777
- - process: updated example ([#3748])
1778
- - sync: `Barrier` doc should use task, not thread ([#3780])
1779
- - task: update documentation on `block_in_place` ([#3753])
1780
-
1781
- [#2472]: https://github.com/tokio-rs/tokio/pull/2472
1782
- [#3491]: https://github.com/tokio-rs/tokio/pull/3491
1783
- [#3518]: https://github.com/tokio-rs/tokio/pull/3518
1784
- [#3660]: https://github.com/tokio-rs/tokio/pull/3660
1785
- [#3704]: https://github.com/tokio-rs/tokio/pull/3704
1786
- [#3705]: https://github.com/tokio-rs/tokio/pull/3705
1787
- [#3712]: https://github.com/tokio-rs/tokio/pull/3712
1788
- [#3727]: https://github.com/tokio-rs/tokio/pull/3727
1789
- [#3737]: https://github.com/tokio-rs/tokio/pull/3737
1790
- [#3743]: https://github.com/tokio-rs/tokio/pull/3743
1791
- [#3748]: https://github.com/tokio-rs/tokio/pull/3748
1792
- [#3753]: https://github.com/tokio-rs/tokio/pull/3753
1793
- [#3756]: https://github.com/tokio-rs/tokio/pull/3756
1794
- [#3761]: https://github.com/tokio-rs/tokio/pull/3761
1795
- [#3774]: https://github.com/tokio-rs/tokio/pull/3774
1796
- [#3775]: https://github.com/tokio-rs/tokio/pull/3775
1797
- [#3780]: https://github.com/tokio-rs/tokio/pull/3780
1798
-
1799
- # 1.5.1 (July 6, 2021)
1800
-
1801
- ### Fixed
1802
-
1803
- - runtime: remotely abort tasks on `JoinHandle::abort` ([#3934])
1804
-
1805
- [#3934]: https://github.com/tokio-rs/tokio/pull/3934
1806
-
1807
- # 1.5.0 (April 12, 2021)
1808
-
1809
- ### Added
1810
-
1811
- - io: add `AsyncSeekExt::stream_position` ([#3650])
1812
- - io: add `AsyncWriteExt::write_vectored` ([#3678])
1813
- - io: add a `copy_bidirectional` utility ([#3572])
1814
- - net: implement `IntoRawFd` for `TcpSocket` ([#3684])
1815
- - sync: add `OnceCell` ([#3591])
1816
- - sync: add `OwnedRwLockReadGuard` and `OwnedRwLockWriteGuard` ([#3340])
1817
- - sync: add `Semaphore::is_closed` ([#3673])
1818
- - sync: add `mpsc::Sender::capacity` ([#3690])
1819
- - sync: allow configuring `RwLock` max reads ([#3644])
1820
- - task: add `sync_scope` for `LocalKey` ([#3612])
1821
-
1822
- ### Fixed
1823
-
1824
- - chore: try to avoid `noalias` attributes on intrusive linked list ([#3654])
1825
- - rt: fix panic in `JoinHandle::abort()` when called from other threads ([#3672])
1826
- - sync: don't panic in `oneshot::try_recv` ([#3674])
1827
- - sync: fix notifications getting dropped on receiver drop ([#3652])
1828
- - sync: fix `Semaphore` permit overflow calculation ([#3644])
1829
-
1830
- ### Documented
1831
-
1832
- - io: clarify requirements of `AsyncFd` ([#3635])
1833
- - runtime: fix unclear docs for `{Handle,Runtime}::block_on` ([#3628])
1834
- - sync: document that `Semaphore` is fair ([#3693])
1835
- - sync: improve doc on blocking mutex ([#3645])
1836
-
1837
- [#3340]: https://github.com/tokio-rs/tokio/pull/3340
1838
- [#3572]: https://github.com/tokio-rs/tokio/pull/3572
1839
- [#3591]: https://github.com/tokio-rs/tokio/pull/3591
1840
- [#3612]: https://github.com/tokio-rs/tokio/pull/3612
1841
- [#3628]: https://github.com/tokio-rs/tokio/pull/3628
1842
- [#3635]: https://github.com/tokio-rs/tokio/pull/3635
1843
- [#3644]: https://github.com/tokio-rs/tokio/pull/3644
1844
- [#3645]: https://github.com/tokio-rs/tokio/pull/3645
1845
- [#3650]: https://github.com/tokio-rs/tokio/pull/3650
1846
- [#3652]: https://github.com/tokio-rs/tokio/pull/3652
1847
- [#3654]: https://github.com/tokio-rs/tokio/pull/3654
1848
- [#3672]: https://github.com/tokio-rs/tokio/pull/3672
1849
- [#3673]: https://github.com/tokio-rs/tokio/pull/3673
1850
- [#3674]: https://github.com/tokio-rs/tokio/pull/3674
1851
- [#3678]: https://github.com/tokio-rs/tokio/pull/3678
1852
- [#3684]: https://github.com/tokio-rs/tokio/pull/3684
1853
- [#3690]: https://github.com/tokio-rs/tokio/pull/3690
1854
- [#3693]: https://github.com/tokio-rs/tokio/pull/3693
1855
-
1856
- # 1.4.0 (March 20, 2021)
1857
-
1858
- ### Added
1859
-
1860
- - macros: introduce biased argument for `select!` ([#3603])
1861
- - runtime: add `Handle::block_on` ([#3569])
1862
-
1863
- ### Fixed
1864
-
1865
- - runtime: avoid unnecessary polling of `block_on` future ([#3582])
1866
- - runtime: fix memory leak/growth when creating many runtimes ([#3564])
1867
- - runtime: mark `EnterGuard` with `must_use` ([#3609])
1868
-
1869
- ### Documented
1870
-
1871
- - chore: mention fix for building docs in contributing guide ([#3618])
1872
- - doc: add link to `PollSender` ([#3613])
1873
- - doc: alias sleep to delay ([#3604])
1874
- - sync: improve `Mutex` FIFO explanation ([#3615])
1875
- - timer: fix double newline in module docs ([#3617])
1876
-
1877
- [#3564]: https://github.com/tokio-rs/tokio/pull/3564
1878
- [#3613]: https://github.com/tokio-rs/tokio/pull/3613
1879
- [#3618]: https://github.com/tokio-rs/tokio/pull/3618
1880
- [#3617]: https://github.com/tokio-rs/tokio/pull/3617
1881
- [#3582]: https://github.com/tokio-rs/tokio/pull/3582
1882
- [#3615]: https://github.com/tokio-rs/tokio/pull/3615
1883
- [#3603]: https://github.com/tokio-rs/tokio/pull/3603
1884
- [#3609]: https://github.com/tokio-rs/tokio/pull/3609
1885
- [#3604]: https://github.com/tokio-rs/tokio/pull/3604
1886
- [#3569]: https://github.com/tokio-rs/tokio/pull/3569
1887
-
1888
- # 1.3.0 (March 9, 2021)
1889
-
1890
- ### Added
1891
-
1892
- - coop: expose an `unconstrained()` opt-out ([#3547])
1893
- - net: add `into_std` for net types without it ([#3509])
1894
- - sync: add `same_channel` method to `mpsc::Sender` ([#3532])
1895
- - sync: add `{try_,}acquire_many_owned` to `Semaphore` ([#3535])
1896
- - sync: add back `RwLockWriteGuard::map` and `RwLockWriteGuard::try_map` ([#3348])
1897
-
1898
- ### Fixed
1899
-
1900
- - sync: allow `oneshot::Receiver::close` after successful `try_recv` ([#3552])
1901
- - time: do not panic on `timeout(Duration::MAX)` ([#3551])
1902
-
1903
- ### Documented
1904
-
1905
- - doc: doc aliases for pre-1.0 function names ([#3523])
1906
- - io: fix typos ([#3541])
1907
- - io: note the EOF behaviour of `read_until` ([#3536])
1908
- - io: update `AsyncRead::poll_read` doc ([#3557])
1909
- - net: update `UdpSocket` splitting doc ([#3517])
1910
- - runtime: add link to `LocalSet` on `new_current_thread` ([#3508])
1911
- - runtime: update documentation of thread limits ([#3527])
1912
- - sync: do not recommend `join_all` for `Barrier` ([#3514])
1913
- - sync: documentation for `oneshot` ([#3592])
1914
- - sync: rename `notify` to `notify_one` ([#3526])
1915
- - time: fix typo in `Sleep` doc ([#3515])
1916
- - time: sync `interval.rs` and `time/mod.rs` docs ([#3533])
1917
-
1918
- [#3348]: https://github.com/tokio-rs/tokio/pull/3348
1919
- [#3508]: https://github.com/tokio-rs/tokio/pull/3508
1920
- [#3509]: https://github.com/tokio-rs/tokio/pull/3509
1921
- [#3514]: https://github.com/tokio-rs/tokio/pull/3514
1922
- [#3515]: https://github.com/tokio-rs/tokio/pull/3515
1923
- [#3517]: https://github.com/tokio-rs/tokio/pull/3517
1924
- [#3523]: https://github.com/tokio-rs/tokio/pull/3523
1925
- [#3526]: https://github.com/tokio-rs/tokio/pull/3526
1926
- [#3527]: https://github.com/tokio-rs/tokio/pull/3527
1927
- [#3532]: https://github.com/tokio-rs/tokio/pull/3532
1928
- [#3533]: https://github.com/tokio-rs/tokio/pull/3533
1929
- [#3535]: https://github.com/tokio-rs/tokio/pull/3535
1930
- [#3536]: https://github.com/tokio-rs/tokio/pull/3536
1931
- [#3541]: https://github.com/tokio-rs/tokio/pull/3541
1932
- [#3547]: https://github.com/tokio-rs/tokio/pull/3547
1933
- [#3551]: https://github.com/tokio-rs/tokio/pull/3551
1934
- [#3552]: https://github.com/tokio-rs/tokio/pull/3552
1935
- [#3557]: https://github.com/tokio-rs/tokio/pull/3557
1936
- [#3592]: https://github.com/tokio-rs/tokio/pull/3592
1937
-
1938
- # 1.2.0 (February 5, 2021)
1939
-
1940
- ### Added
1941
-
1942
- - signal: make `Signal::poll_recv` method public ([#3383])
1943
-
1944
- ### Fixed
1945
-
1946
- - time: make `test-util` paused time fully deterministic ([#3492])
1947
-
1948
- ### Documented
1949
-
1950
- - sync: link to new broadcast and watch wrappers ([#3504])
1951
-
1952
- [#3383]: https://github.com/tokio-rs/tokio/pull/3383
1953
- [#3492]: https://github.com/tokio-rs/tokio/pull/3492
1954
- [#3504]: https://github.com/tokio-rs/tokio/pull/3504
1955
-
1956
- # 1.1.1 (January 29, 2021)
1957
-
1958
- Forward ports 1.0.3 fix.
1959
-
1960
- ### Fixed
1961
- - io: memory leak during shutdown ([#3477]).
1962
-
1963
- # 1.1.0 (January 22, 2021)
1964
-
1965
- ### Added
1966
-
1967
- - net: add `try_read_buf` and `try_recv_buf` ([#3351])
1968
- - mpsc: Add `Sender::try_reserve` function ([#3418])
1969
- - sync: add `RwLock` `try_read` and `try_write` methods ([#3400])
1970
- - io: add `ReadBuf::inner_mut` ([#3443])
1971
-
1972
- ### Changed
1973
-
1974
- - macros: improve `select!` error message ([#3352])
1975
- - io: keep track of initialized bytes in `read_to_end` ([#3426])
1976
- - runtime: consolidate errors for context missing ([#3441])
1977
-
1978
- ### Fixed
1979
-
1980
- - task: wake `LocalSet` on `spawn_local` ([#3369])
1981
- - sync: fix panic in broadcast::Receiver drop ([#3434])
1982
-
1983
- ### Documented
1984
- - stream: link to new `Stream` wrappers in `tokio-stream` ([#3343])
1985
- - docs: mention that `test-util` feature is not enabled with full ([#3397])
1986
- - process: add documentation to process::Child fields ([#3437])
1987
- - io: clarify `AsyncFd` docs about changes of the inner fd ([#3430])
1988
- - net: update datagram docs on splitting ([#3448])
1989
- - time: document that `Sleep` is not `Unpin` ([#3457])
1990
- - sync: add link to `PollSemaphore` ([#3456])
1991
- - task: add `LocalSet` example ([#3438])
1992
- - sync: improve bounded `mpsc` documentation ([#3458])
1993
-
1994
- [#3343]: https://github.com/tokio-rs/tokio/pull/3343
1995
- [#3351]: https://github.com/tokio-rs/tokio/pull/3351
1996
- [#3352]: https://github.com/tokio-rs/tokio/pull/3352
1997
- [#3369]: https://github.com/tokio-rs/tokio/pull/3369
1998
- [#3397]: https://github.com/tokio-rs/tokio/pull/3397
1999
- [#3400]: https://github.com/tokio-rs/tokio/pull/3400
2000
- [#3418]: https://github.com/tokio-rs/tokio/pull/3418
2001
- [#3426]: https://github.com/tokio-rs/tokio/pull/3426
2002
- [#3430]: https://github.com/tokio-rs/tokio/pull/3430
2003
- [#3434]: https://github.com/tokio-rs/tokio/pull/3434
2004
- [#3437]: https://github.com/tokio-rs/tokio/pull/3437
2005
- [#3438]: https://github.com/tokio-rs/tokio/pull/3438
2006
- [#3441]: https://github.com/tokio-rs/tokio/pull/3441
2007
- [#3443]: https://github.com/tokio-rs/tokio/pull/3443
2008
- [#3448]: https://github.com/tokio-rs/tokio/pull/3448
2009
- [#3456]: https://github.com/tokio-rs/tokio/pull/3456
2010
- [#3457]: https://github.com/tokio-rs/tokio/pull/3457
2011
- [#3458]: https://github.com/tokio-rs/tokio/pull/3458
2012
-
2013
- # 1.0.3 (January 28, 2021)
2014
-
2015
- ### Fixed
2016
- - io: memory leak during shutdown ([#3477]).
2017
-
2018
- [#3477]: https://github.com/tokio-rs/tokio/pull/3477
2019
-
2020
- # 1.0.2 (January 14, 2021)
2021
-
2022
- ### Fixed
2023
- - io: soundness in `read_to_end` ([#3428]).
2024
-
2025
- [#3428]: https://github.com/tokio-rs/tokio/pull/3428
2026
-
2027
- # 1.0.1 (December 25, 2020)
2028
-
2029
- This release fixes a soundness hole caused by the combination of `RwLockWriteGuard::map`
2030
- and `RwLockWriteGuard::downgrade` by removing the `map` function. This is a breaking
2031
- change, but breaking changes are allowed under our semver policy when they are required
2032
- to fix a soundness hole. (See [this RFC][semver] for more.)
2033
-
2034
- Note that we have chosen not to do a deprecation cycle or similar because Tokio 1.0.0 was
2035
- released two days ago, and therefore the impact should be minimal.
2036
-
2037
- Due to the soundness hole, we have also yanked Tokio version 1.0.0.
2038
-
2039
- ### Removed
2040
-
2041
- - sync: remove `RwLockWriteGuard::map` and `RwLockWriteGuard::try_map` ([#3345])
2042
-
2043
- ### Fixed
2044
-
2045
- - docs: remove stream feature from docs ([#3335])
2046
-
2047
- [semver]: https://github.com/rust-lang/rfcs/blob/master/text/1122-language-semver.md#soundness-changes
2048
- [#3335]: https://github.com/tokio-rs/tokio/pull/3335
2049
- [#3345]: https://github.com/tokio-rs/tokio/pull/3345
2050
-
2051
- # 1.0.0 (December 23, 2020)
2052
-
2053
- Commit to the API and long-term support.
2054
-
2055
- ### Fixed
2056
-
2057
- - sync: spurious wakeup in `watch` ([#3234]).
2058
-
2059
- ### Changed
2060
-
2061
- - io: rename `AsyncFd::with_io()` to `try_io()` ([#3306])
2062
- - fs: avoid OS specific `*Ext` traits in favor of conditionally defining the fn ([#3264]).
2063
- - fs: `Sleep` is `!Unpin` ([#3278]).
2064
- - net: pass `SocketAddr` by value ([#3125]).
2065
- - net: `TcpStream::poll_peek` takes `ReadBuf` ([#3259]).
2066
- - rt: rename `runtime::Builder::max_threads()` to `max_blocking_threads()` ([#3287]).
2067
- - time: require `current_thread` runtime when calling `time::pause()` ([#3289]).
2068
-
2069
- ### Removed
2070
-
2071
- - remove `tokio::prelude` ([#3299]).
2072
- - io: remove `AsyncFd::with_poll()` ([#3306]).
2073
- - net: remove `{Tcp,Unix}Stream::shutdown()` in favor of `AsyncWrite::shutdown()` ([#3298]).
2074
- - stream: move all stream utilities to `tokio-stream` until `Stream` is added to
2075
- `std` ([#3277]).
2076
- - sync: mpsc `try_recv()` due to unexpected behavior ([#3263]).
2077
- - tracing: make unstable as `tracing-core` is not 1.0 yet ([#3266]).
2078
-
2079
- ### Added
2080
-
2081
- - fs: `poll_*` fns to `DirEntry` ([#3308]).
2082
- - io: `poll_*` fns to `io::Lines`, `io::Split` ([#3308]).
2083
- - io: `_mut` method variants to `AsyncFd` ([#3304]).
2084
- - net: `poll_*` fns to `UnixDatagram` ([#3223]).
2085
- - net: `UnixStream` readiness and non-blocking ops ([#3246]).
2086
- - sync: `UnboundedReceiver::blocking_recv()` ([#3262]).
2087
- - sync: `watch::Sender::borrow()` ([#3269]).
2088
- - sync: `Semaphore::close()` ([#3065]).
2089
- - sync: `poll_recv` fns to `mpsc::Receiver`, `mpsc::UnboundedReceiver` ([#3308]).
2090
- - time: `poll_tick` fn to `time::Interval` ([#3316]).
2091
-
2092
- [#3065]: https://github.com/tokio-rs/tokio/pull/3065
2093
- [#3125]: https://github.com/tokio-rs/tokio/pull/3125
2094
- [#3223]: https://github.com/tokio-rs/tokio/pull/3223
2095
- [#3234]: https://github.com/tokio-rs/tokio/pull/3234
2096
- [#3246]: https://github.com/tokio-rs/tokio/pull/3246
2097
- [#3259]: https://github.com/tokio-rs/tokio/pull/3259
2098
- [#3262]: https://github.com/tokio-rs/tokio/pull/3262
2099
- [#3263]: https://github.com/tokio-rs/tokio/pull/3263
2100
- [#3264]: https://github.com/tokio-rs/tokio/pull/3264
2101
- [#3266]: https://github.com/tokio-rs/tokio/pull/3266
2102
- [#3269]: https://github.com/tokio-rs/tokio/pull/3269
2103
- [#3277]: https://github.com/tokio-rs/tokio/pull/3277
2104
- [#3278]: https://github.com/tokio-rs/tokio/pull/3278
2105
- [#3287]: https://github.com/tokio-rs/tokio/pull/3287
2106
- [#3289]: https://github.com/tokio-rs/tokio/pull/3289
2107
- [#3298]: https://github.com/tokio-rs/tokio/pull/3298
2108
- [#3299]: https://github.com/tokio-rs/tokio/pull/3299
2109
- [#3304]: https://github.com/tokio-rs/tokio/pull/3304
2110
- [#3306]: https://github.com/tokio-rs/tokio/pull/3306
2111
- [#3308]: https://github.com/tokio-rs/tokio/pull/3308
2112
- [#3316]: https://github.com/tokio-rs/tokio/pull/3316
2113
-
2114
- # 0.3.6 (December 14, 2020)
2115
-
2116
- ### Fixed
2117
-
2118
- - rt: fix deadlock in shutdown ([#3228])
2119
- - rt: fix panic in task abort when off rt ([#3159])
2120
- - sync: make `add_permits` panic with usize::MAX >> 3 permits ([#3188])
2121
- - time: Fix race condition in timer drop ([#3229])
2122
- - watch: fix spurious wakeup ([#3244])
2123
-
2124
- ### Added
2125
-
2126
- - example: add back udp-codec example ([#3205])
2127
- - net: add `TcpStream::into_std` ([#3189])
2128
-
2129
- [#3159]: https://github.com/tokio-rs/tokio/pull/3159
2130
- [#3188]: https://github.com/tokio-rs/tokio/pull/3188
2131
- [#3189]: https://github.com/tokio-rs/tokio/pull/3189
2132
- [#3205]: https://github.com/tokio-rs/tokio/pull/3205
2133
- [#3228]: https://github.com/tokio-rs/tokio/pull/3228
2134
- [#3229]: https://github.com/tokio-rs/tokio/pull/3229
2135
- [#3244]: https://github.com/tokio-rs/tokio/pull/3244
2136
-
2137
- # 0.3.5 (November 30, 2020)
2138
-
2139
- ### Fixed
2140
-
2141
- - rt: fix `shutdown_timeout(0)` ([#3196]).
2142
- - time: fixed race condition with small sleeps ([#3069]).
2143
-
2144
- ### Added
2145
-
2146
- - io: `AsyncFd::with_interest()` ([#3167]).
2147
- - signal: `CtrlC` stream on windows ([#3186]).
2148
-
2149
- [#3069]: https://github.com/tokio-rs/tokio/pull/3069
2150
- [#3167]: https://github.com/tokio-rs/tokio/pull/3167
2151
- [#3186]: https://github.com/tokio-rs/tokio/pull/3186
2152
- [#3196]: https://github.com/tokio-rs/tokio/pull/3196
2153
-
2154
- # 0.3.4 (November 18, 2020)
2155
-
2156
- ### Fixed
2157
-
2158
- - stream: `StreamMap` `Default` impl bound ([#3093]).
2159
- - io: `AsyncFd::into_inner()` should deregister the FD ([#3104]).
2160
-
2161
- ### Changed
2162
-
2163
- - meta: `parking_lot` feature enabled with `full` ([#3119]).
2164
-
2165
- ### Added
2166
-
2167
- - io: `AsyncWrite` vectored writes ([#3149]).
2168
- - net: TCP/UDP readiness and non-blocking ops ([#3130], [#2743], [#3138]).
2169
- - net: TCP socket option (linger, send/recv buf size) ([#3145], [#3143]).
2170
- - net: PID field in `UCred` with solaris/illumos ([#3085]).
2171
- - rt: `runtime::Handle` allows spawning onto a runtime ([#3079]).
2172
- - sync: `Notify::notify_waiters()` ([#3098]).
2173
- - sync: `acquire_many()`, `try_acquire_many()` to `Semaphore` ([#3067]).
2174
-
2175
- [#2743]: https://github.com/tokio-rs/tokio/pull/2743
2176
- [#3067]: https://github.com/tokio-rs/tokio/pull/3067
2177
- [#3079]: https://github.com/tokio-rs/tokio/pull/3079
2178
- [#3085]: https://github.com/tokio-rs/tokio/pull/3085
2179
- [#3093]: https://github.com/tokio-rs/tokio/pull/3093
2180
- [#3098]: https://github.com/tokio-rs/tokio/pull/3098
2181
- [#3104]: https://github.com/tokio-rs/tokio/pull/3104
2182
- [#3119]: https://github.com/tokio-rs/tokio/pull/3119
2183
- [#3130]: https://github.com/tokio-rs/tokio/pull/3130
2184
- [#3138]: https://github.com/tokio-rs/tokio/pull/3138
2185
- [#3143]: https://github.com/tokio-rs/tokio/pull/3143
2186
- [#3145]: https://github.com/tokio-rs/tokio/pull/3145
2187
- [#3149]: https://github.com/tokio-rs/tokio/pull/3149
2188
-
2189
- # 0.3.3 (November 2, 2020)
2190
-
2191
- Fixes a soundness hole by adding a missing `Send` bound to
2192
- `Runtime::spawn_blocking()`.
2193
-
2194
- ### Fixed
2195
-
2196
- - rt: include missing `Send`, fixing soundness hole ([#3089]).
2197
- - tracing: avoid huge trace span names ([#3074]).
2198
-
2199
- ### Added
2200
-
2201
- - net: `TcpSocket::reuseport()`, `TcpSocket::set_reuseport()` ([#3083]).
2202
- - net: `TcpSocket::reuseaddr()` ([#3093]).
2203
- - net: `TcpSocket::local_addr()` ([#3093]).
2204
- - net: add pid to `UCred` ([#2633]).
2205
-
2206
- [#2633]: https://github.com/tokio-rs/tokio/pull/2633
2207
- [#3074]: https://github.com/tokio-rs/tokio/pull/3074
2208
- [#3083]: https://github.com/tokio-rs/tokio/pull/3083
2209
- [#3089]: https://github.com/tokio-rs/tokio/pull/3089
2210
- [#3093]: https://github.com/tokio-rs/tokio/pull/3093
2211
-
2212
- # 0.3.2 (October 27, 2020)
2213
-
2214
- Adds `AsyncFd` as a replacement for v0.2's `PollEvented`.
2215
-
2216
- ### Fixed
2217
-
2218
- - io: fix a potential deadlock when shutting down the I/O driver ([#2903]).
2219
- - sync: `RwLockWriteGuard::downgrade()` bug ([#2957]).
2220
-
2221
- ### Added
2222
-
2223
- - io: `AsyncFd` for receiving readiness events on raw FDs ([#2903]).
2224
- - net: `poll_*` function on `UdpSocket` ([#2981]).
2225
- - net: `UdpSocket::take_error()` ([#3051]).
2226
- - sync: `oneshot::Sender::poll_closed()` ([#3032]).
2227
-
2228
- [#2903]: https://github.com/tokio-rs/tokio/pull/2903
2229
- [#2957]: https://github.com/tokio-rs/tokio/pull/2957
2230
- [#2981]: https://github.com/tokio-rs/tokio/pull/2981
2231
- [#3032]: https://github.com/tokio-rs/tokio/pull/3032
2232
- [#3051]: https://github.com/tokio-rs/tokio/pull/3051
2233
-
2234
- # 0.3.1 (October 21, 2020)
2235
-
2236
- This release fixes an use-after-free in the IO driver. Additionally, the `read_buf`
2237
- and `write_buf` methods have been added back to the IO traits, as the bytes crate
2238
- is now on track to reach version 1.0 together with Tokio.
2239
-
2240
- ### Fixed
2241
-
2242
- - net: fix use-after-free ([#3019]).
2243
- - fs: ensure buffered data is written on shutdown ([#3009]).
2244
-
2245
- ### Added
2246
-
2247
- - io: `copy_buf()` ([#2884]).
2248
- - io: `AsyncReadExt::read_buf()`, `AsyncReadExt::write_buf()` for working with
2249
- `Buf`/`BufMut` ([#3003]).
2250
- - rt: `Runtime::spawn_blocking()` ([#2980]).
2251
- - sync: `watch::Sender::is_closed()` ([#2991]).
2252
-
2253
- [#2884]: https://github.com/tokio-rs/tokio/pull/2884
2254
- [#2980]: https://github.com/tokio-rs/tokio/pull/2980
2255
- [#2991]: https://github.com/tokio-rs/tokio/pull/2991
2256
- [#3003]: https://github.com/tokio-rs/tokio/pull/3003
2257
- [#3009]: https://github.com/tokio-rs/tokio/pull/3009
2258
- [#3019]: https://github.com/tokio-rs/tokio/pull/3019
2259
-
2260
- # 0.3.0 (October 15, 2020)
2261
-
2262
- This represents a 1.0 beta release. APIs are polished and future-proofed. APIs
2263
- not included for 1.0 stabilization have been removed.
2264
-
2265
- Biggest changes are:
2266
-
2267
- - I/O driver internal rewrite. The windows implementation includes significant
2268
- changes.
2269
- - Runtime API is polished, especially with how it interacts with feature flag
2270
- combinations.
2271
- - Feature flags are simplified
2272
- - `rt-core` and `rt-util` are combined to `rt`
2273
- - `rt-threaded` is renamed to `rt-multi-thread` to match builder API
2274
- - `tcp`, `udp`, `uds`, `dns` are combined to `net`.
2275
- - `parking_lot` is included with `full`
2276
-
2277
- ### Changes
2278
-
2279
- - meta: Minimum supported Rust version is now 1.45.
2280
- - io: `AsyncRead` trait now takes `ReadBuf` in order to safely handle reading
2281
- into uninitialized memory ([#2758]).
2282
- - io: Internal I/O driver storage is now able to compact ([#2757]).
2283
- - rt: `Runtime::block_on` now takes `&self` ([#2782]).
2284
- - sync: `watch` reworked to decouple receiving a change notification from
2285
- receiving the value ([#2814], [#2806]).
2286
- - sync: `Notify::notify` is renamed to `notify_one` ([#2822]).
2287
- - process: `Child::kill` is now an `async fn` that cleans zombies ([#2823]).
2288
- - sync: use `const fn` constructors as possible ([#2833], [#2790])
2289
- - signal: reduce cross-thread notification ([#2835]).
2290
- - net: tcp,udp,uds types support operations with `&self` ([#2828], [#2919], [#2934]).
2291
- - sync: blocking `mpsc` channel supports `send` with `&self` ([#2861]).
2292
- - time: rename `delay_for` and `delay_until` to `sleep` and `sleep_until` ([#2826]).
2293
- - io: upgrade to `mio` 0.7 ([#2893]).
2294
- - io: `AsyncSeek` trait is tweaked ([#2885]).
2295
- - fs: `File` operations take `&self` ([#2930]).
2296
- - rt: runtime API, and `#[tokio::main]` macro polish ([#2876])
2297
- - rt: `Runtime::enter` uses an RAII guard instead of a closure ([#2954]).
2298
- - net: the `from_std` function on all sockets no longer sets socket into non-blocking mode ([#2893])
2299
-
2300
- ### Added
2301
-
2302
- - sync: `map` function to lock guards ([#2445]).
2303
- - sync: `blocking_recv` and `blocking_send` fns to `mpsc` for use outside of Tokio ([#2685]).
2304
- - rt: `Builder::thread_name_fn` for configuring thread names ([#1921]).
2305
- - fs: impl `FromRawFd` and `FromRawHandle` for `File` ([#2792]).
2306
- - process: `Child::wait` and `Child::try_wait` ([#2796]).
2307
- - rt: support configuring thread keep-alive duration ([#2809]).
2308
- - rt: `task::JoinHandle::abort` forcibly cancels a spawned task ([#2474]).
2309
- - sync: `RwLock` write guard to read guard downgrading ([#2733]).
2310
- - net: add `poll_*` functions that take `&self` to all net types ([#2845])
2311
- - sync: `get_mut()` for `Mutex`, `RwLock` ([#2856]).
2312
- - sync: `mpsc::Sender::closed()` waits for `Receiver` half to close ([#2840]).
2313
- - sync: `mpsc::Sender::is_closed()` returns true if `Receiver` half is closed ([#2726]).
2314
- - stream: `iter` and `iter_mut` to `StreamMap` ([#2890]).
2315
- - net: implement `AsRawSocket` on windows ([#2911]).
2316
- - net: `TcpSocket` creates a socket without binding or listening ([#2920]).
2317
-
2318
- ### Removed
2319
-
2320
- - io: vectored ops are removed from `AsyncRead`, `AsyncWrite` traits ([#2882]).
2321
- - io: `mio` is removed from the public API. `PollEvented` and` Registration` are
2322
- removed ([#2893]).
2323
- - io: remove `bytes` from public API. `Buf` and `BufMut` implementation are
2324
- removed ([#2908]).
2325
- - time: `DelayQueue` is moved to `tokio-util` ([#2897]).
2326
-
2327
- ### Fixed
2328
-
2329
- - io: `stdout` and `stderr` buffering on windows ([#2734]).
2330
-
2331
- [#1921]: https://github.com/tokio-rs/tokio/pull/1921
2332
- [#2445]: https://github.com/tokio-rs/tokio/pull/2445
2333
- [#2474]: https://github.com/tokio-rs/tokio/pull/2474
2334
- [#2685]: https://github.com/tokio-rs/tokio/pull/2685
2335
- [#2726]: https://github.com/tokio-rs/tokio/pull/2726
2336
- [#2733]: https://github.com/tokio-rs/tokio/pull/2733
2337
- [#2734]: https://github.com/tokio-rs/tokio/pull/2734
2338
- [#2757]: https://github.com/tokio-rs/tokio/pull/2757
2339
- [#2758]: https://github.com/tokio-rs/tokio/pull/2758
2340
- [#2782]: https://github.com/tokio-rs/tokio/pull/2782
2341
- [#2790]: https://github.com/tokio-rs/tokio/pull/2790
2342
- [#2792]: https://github.com/tokio-rs/tokio/pull/2792
2343
- [#2796]: https://github.com/tokio-rs/tokio/pull/2796
2344
- [#2806]: https://github.com/tokio-rs/tokio/pull/2806
2345
- [#2809]: https://github.com/tokio-rs/tokio/pull/2809
2346
- [#2814]: https://github.com/tokio-rs/tokio/pull/2814
2347
- [#2822]: https://github.com/tokio-rs/tokio/pull/2822
2348
- [#2823]: https://github.com/tokio-rs/tokio/pull/2823
2349
- [#2826]: https://github.com/tokio-rs/tokio/pull/2826
2350
- [#2828]: https://github.com/tokio-rs/tokio/pull/2828
2351
- [#2833]: https://github.com/tokio-rs/tokio/pull/2833
2352
- [#2835]: https://github.com/tokio-rs/tokio/pull/2835
2353
- [#2840]: https://github.com/tokio-rs/tokio/pull/2840
2354
- [#2845]: https://github.com/tokio-rs/tokio/pull/2845
2355
- [#2856]: https://github.com/tokio-rs/tokio/pull/2856
2356
- [#2861]: https://github.com/tokio-rs/tokio/pull/2861
2357
- [#2876]: https://github.com/tokio-rs/tokio/pull/2876
2358
- [#2882]: https://github.com/tokio-rs/tokio/pull/2882
2359
- [#2885]: https://github.com/tokio-rs/tokio/pull/2885
2360
- [#2890]: https://github.com/tokio-rs/tokio/pull/2890
2361
- [#2893]: https://github.com/tokio-rs/tokio/pull/2893
2362
- [#2897]: https://github.com/tokio-rs/tokio/pull/2897
2363
- [#2908]: https://github.com/tokio-rs/tokio/pull/2908
2364
- [#2911]: https://github.com/tokio-rs/tokio/pull/2911
2365
- [#2919]: https://github.com/tokio-rs/tokio/pull/2919
2366
- [#2920]: https://github.com/tokio-rs/tokio/pull/2920
2367
- [#2930]: https://github.com/tokio-rs/tokio/pull/2930
2368
- [#2934]: https://github.com/tokio-rs/tokio/pull/2934
2369
- [#2954]: https://github.com/tokio-rs/tokio/pull/2954
2370
-
2371
- # 0.2.22 (July 21, 2020)
2372
-
2373
- ### Fixes
2374
-
2375
- - docs: misc improvements ([#2572], [#2658], [#2663], [#2656], [#2647], [#2630], [#2487], [#2621],
2376
- [#2624], [#2600], [#2623], [#2622], [#2577], [#2569], [#2589], [#2575], [#2540], [#2564], [#2567],
2377
- [#2520], [#2521], [#2493])
2378
- - rt: allow calls to `block_on` inside calls to `block_in_place` that are
2379
- themselves inside `block_on` ([#2645])
2380
- - net: fix non-portable behavior when dropping `TcpStream` `OwnedWriteHalf` ([#2597])
2381
- - io: improve stack usage by allocating large buffers on directly on the heap
2382
- ([#2634])
2383
- - io: fix unsound pin projection in `AsyncReadExt::read_buf` and
2384
- `AsyncWriteExt::write_buf` ([#2612])
2385
- - io: fix unnecessary zeroing for `AsyncRead` implementors ([#2525])
2386
- - io: Fix `BufReader` not correctly forwarding `poll_write_buf` ([#2654])
2387
- - io: fix panic in `AsyncReadExt::read_line` ([#2541])
2388
-
2389
- ### Changes
2390
-
2391
- - coop: returning `Poll::Pending` no longer decrements the task budget ([#2549])
2392
-
2393
- ### Added
2394
-
2395
- - io: little-endian variants of `AsyncReadExt` and `AsyncWriteExt` methods
2396
- ([#1915])
2397
- - task: add [`tracing`] instrumentation to spawned tasks ([#2655])
2398
- - sync: allow unsized types in `Mutex` and `RwLock` (via `default` constructors)
2399
- ([#2615])
2400
- - net: add `ToSocketAddrs` implementation for `&[SocketAddr]` ([#2604])
2401
- - fs: add `OpenOptionsExt` for `OpenOptions` ([#2515])
2402
- - fs: add `DirBuilder` ([#2524])
2403
-
2404
- [`tracing`]: https://crates.io/crates/tracing
2405
- [#1915]: https://github.com/tokio-rs/tokio/pull/1915
2406
- [#2487]: https://github.com/tokio-rs/tokio/pull/2487
2407
- [#2493]: https://github.com/tokio-rs/tokio/pull/2493
2408
- [#2515]: https://github.com/tokio-rs/tokio/pull/2515
2409
- [#2520]: https://github.com/tokio-rs/tokio/pull/2520
2410
- [#2521]: https://github.com/tokio-rs/tokio/pull/2521
2411
- [#2524]: https://github.com/tokio-rs/tokio/pull/2524
2412
- [#2525]: https://github.com/tokio-rs/tokio/pull/2525
2413
- [#2540]: https://github.com/tokio-rs/tokio/pull/2540
2414
- [#2541]: https://github.com/tokio-rs/tokio/pull/2541
2415
- [#2549]: https://github.com/tokio-rs/tokio/pull/2549
2416
- [#2564]: https://github.com/tokio-rs/tokio/pull/2564
2417
- [#2567]: https://github.com/tokio-rs/tokio/pull/2567
2418
- [#2569]: https://github.com/tokio-rs/tokio/pull/2569
2419
- [#2572]: https://github.com/tokio-rs/tokio/pull/2572
2420
- [#2575]: https://github.com/tokio-rs/tokio/pull/2575
2421
- [#2577]: https://github.com/tokio-rs/tokio/pull/2577
2422
- [#2589]: https://github.com/tokio-rs/tokio/pull/2589
2423
- [#2597]: https://github.com/tokio-rs/tokio/pull/2597
2424
- [#2600]: https://github.com/tokio-rs/tokio/pull/2600
2425
- [#2604]: https://github.com/tokio-rs/tokio/pull/2604
2426
- [#2612]: https://github.com/tokio-rs/tokio/pull/2612
2427
- [#2615]: https://github.com/tokio-rs/tokio/pull/2615
2428
- [#2621]: https://github.com/tokio-rs/tokio/pull/2621
2429
- [#2622]: https://github.com/tokio-rs/tokio/pull/2622
2430
- [#2623]: https://github.com/tokio-rs/tokio/pull/2623
2431
- [#2624]: https://github.com/tokio-rs/tokio/pull/2624
2432
- [#2630]: https://github.com/tokio-rs/tokio/pull/2630
2433
- [#2634]: https://github.com/tokio-rs/tokio/pull/2634
2434
- [#2645]: https://github.com/tokio-rs/tokio/pull/2645
2435
- [#2647]: https://github.com/tokio-rs/tokio/pull/2647
2436
- [#2654]: https://github.com/tokio-rs/tokio/pull/2654
2437
- [#2655]: https://github.com/tokio-rs/tokio/pull/2655
2438
- [#2656]: https://github.com/tokio-rs/tokio/pull/2656
2439
- [#2658]: https://github.com/tokio-rs/tokio/pull/2658
2440
- [#2663]: https://github.com/tokio-rs/tokio/pull/2663
2441
-
2442
- # 0.2.21 (May 13, 2020)
2443
-
2444
- ### Fixes
2445
-
2446
- - macros: disambiguate built-in `#[test]` attribute in macro expansion ([#2503])
2447
- - rt: `LocalSet` and task budgeting ([#2462]).
2448
- - rt: task budgeting with `block_in_place` ([#2502]).
2449
- - sync: release `broadcast` channel memory without sending a value ([#2509]).
2450
- - time: notify when resetting a `Delay` to a time in the past ([#2290])
2451
-
2452
- ### Added
2453
-
2454
- - io: `get_mut`, `get_ref`, and `into_inner` to `Lines` ([#2450]).
2455
- - io: `mio::Ready` argument to `PollEvented` ([#2419]).
2456
- - os: illumos support ([#2486]).
2457
- - rt: `Handle::spawn_blocking` ([#2501]).
2458
- - sync: `OwnedMutexGuard` for `Arc<Mutex<T>>` ([#2455]).
2459
-
2460
- [#2290]: https://github.com/tokio-rs/tokio/pull/2290
2461
- [#2419]: https://github.com/tokio-rs/tokio/pull/2419
2462
- [#2450]: https://github.com/tokio-rs/tokio/pull/2450
2463
- [#2455]: https://github.com/tokio-rs/tokio/pull/2455
2464
- [#2462]: https://github.com/tokio-rs/tokio/pull/2462
2465
- [#2486]: https://github.com/tokio-rs/tokio/pull/2486
2466
- [#2501]: https://github.com/tokio-rs/tokio/pull/2501
2467
- [#2502]: https://github.com/tokio-rs/tokio/pull/2502
2468
- [#2503]: https://github.com/tokio-rs/tokio/pull/2503
2469
- [#2509]: https://github.com/tokio-rs/tokio/pull/2509
2470
-
2471
- # 0.2.20 (April 28, 2020)
2472
-
2473
- ### Fixes
2474
-
2475
- - sync: `broadcast` closing the channel no longer requires capacity ([#2448]).
2476
- - rt: regression when configuring runtime with `max_threads` less than number of CPUs ([#2457]).
2477
-
2478
- [#2448]: https://github.com/tokio-rs/tokio/pull/2448
2479
- [#2457]: https://github.com/tokio-rs/tokio/pull/2457
2480
-
2481
- # 0.2.19 (April 24, 2020)
2482
-
2483
- ### Fixes
2484
-
2485
- - docs: misc improvements ([#2400], [#2405], [#2414], [#2420], [#2423], [#2426], [#2427], [#2434], [#2436], [#2440]).
2486
- - rt: support `block_in_place` in more contexts ([#2409], [#2410]).
2487
- - stream: no panic in `merge()` and `chain()` when using `size_hint()` ([#2430]).
2488
- - task: include visibility modifier when defining a task-local ([#2416]).
2489
-
2490
- ### Added
2491
-
2492
- - rt: `runtime::Handle::block_on` ([#2437]).
2493
- - sync: owned `Semaphore` permit ([#2421]).
2494
- - tcp: owned split ([#2270]).
2495
-
2496
- [#2270]: https://github.com/tokio-rs/tokio/pull/2270
2497
- [#2400]: https://github.com/tokio-rs/tokio/pull/2400
2498
- [#2405]: https://github.com/tokio-rs/tokio/pull/2405
2499
- [#2409]: https://github.com/tokio-rs/tokio/pull/2409
2500
- [#2410]: https://github.com/tokio-rs/tokio/pull/2410
2501
- [#2414]: https://github.com/tokio-rs/tokio/pull/2414
2502
- [#2416]: https://github.com/tokio-rs/tokio/pull/2416
2503
- [#2420]: https://github.com/tokio-rs/tokio/pull/2420
2504
- [#2421]: https://github.com/tokio-rs/tokio/pull/2421
2505
- [#2423]: https://github.com/tokio-rs/tokio/pull/2423
2506
- [#2426]: https://github.com/tokio-rs/tokio/pull/2426
2507
- [#2427]: https://github.com/tokio-rs/tokio/pull/2427
2508
- [#2430]: https://github.com/tokio-rs/tokio/pull/2430
2509
- [#2434]: https://github.com/tokio-rs/tokio/pull/2434
2510
- [#2436]: https://github.com/tokio-rs/tokio/pull/2436
2511
- [#2437]: https://github.com/tokio-rs/tokio/pull/2437
2512
- [#2440]: https://github.com/tokio-rs/tokio/pull/2440
2513
-
2514
- # 0.2.18 (April 12, 2020)
2515
-
2516
- ### Fixes
2517
-
2518
- - task: `LocalSet` was incorrectly marked as `Send` ([#2398])
2519
- - io: correctly report `WriteZero` failure in `write_int` ([#2334])
2520
-
2521
- [#2334]: https://github.com/tokio-rs/tokio/pull/2334
2522
- [#2398]: https://github.com/tokio-rs/tokio/pull/2398
2523
-
2524
- # 0.2.17 (April 9, 2020)
2525
-
2526
- ### Fixes
2527
-
2528
- - rt: bug in work-stealing queue ([#2387])
2529
-
2530
- ### Changes
2531
-
2532
- - rt: threadpool uses logical CPU count instead of physical by default ([#2391])
2533
-
2534
- [#2387]: https://github.com/tokio-rs/tokio/pull/2387
2535
- [#2391]: https://github.com/tokio-rs/tokio/pull/2391
2536
-
2537
- # 0.2.16 (April 3, 2020)
2538
-
2539
- ### Fixes
2540
-
2541
- - sync: fix a regression where `Mutex`, `Semaphore`, and `RwLock` futures no
2542
- longer implement `Sync` ([#2375])
2543
- - fs: fix `fs::copy` not copying file permissions ([#2354])
2544
-
2545
- ### Added
2546
-
2547
- - time: added `deadline` method to `delay_queue::Expired` ([#2300])
2548
- - io: added `StreamReader` ([#2052])
2549
-
2550
- [#2052]: https://github.com/tokio-rs/tokio/pull/2052
2551
- [#2300]: https://github.com/tokio-rs/tokio/pull/2300
2552
- [#2354]: https://github.com/tokio-rs/tokio/pull/2354
2553
- [#2375]: https://github.com/tokio-rs/tokio/pull/2375
2554
-
2555
- # 0.2.15 (April 2, 2020)
2556
-
2557
- ### Fixes
2558
-
2559
- - rt: fix queue regression ([#2362]).
2560
-
2561
- ### Added
2562
-
2563
- - sync: Add disarm to `mpsc::Sender` ([#2358]).
2564
-
2565
- [#2358]: https://github.com/tokio-rs/tokio/pull/2358
2566
- [#2362]: https://github.com/tokio-rs/tokio/pull/2362
2567
-
2568
- # 0.2.14 (April 1, 2020)
2569
-
2570
- ### Fixes
2571
-
2572
- - rt: concurrency bug in scheduler ([#2273]).
2573
- - rt: concurrency bug with shell runtime ([#2333]).
2574
- - test-util: correct pause/resume of time ([#2253]).
2575
- - time: `DelayQueue` correct wakeup after `insert` ([#2285]).
2576
-
2577
- ### Added
2578
-
2579
- - io: impl `RawFd`, `AsRawHandle` for std io types ([#2335]).
2580
- - rt: automatic cooperative task yielding ([#2160], [#2343], [#2349]).
2581
- - sync: `RwLock::into_inner` ([#2321]).
2582
-
2583
- ### Changed
2584
-
2585
- - sync: semaphore, mutex internals rewritten to avoid allocations ([#2325]).
2586
-
2587
- [#2160]: https://github.com/tokio-rs/tokio/pull/2160
2588
- [#2253]: https://github.com/tokio-rs/tokio/pull/2253
2589
- [#2273]: https://github.com/tokio-rs/tokio/pull/2273
2590
- [#2285]: https://github.com/tokio-rs/tokio/pull/2285
2591
- [#2321]: https://github.com/tokio-rs/tokio/pull/2321
2592
- [#2325]: https://github.com/tokio-rs/tokio/pull/2325
2593
- [#2333]: https://github.com/tokio-rs/tokio/pull/2333
2594
- [#2335]: https://github.com/tokio-rs/tokio/pull/2335
2595
- [#2343]: https://github.com/tokio-rs/tokio/pull/2343
2596
- [#2349]: https://github.com/tokio-rs/tokio/pull/2349
2597
-
2598
- # 0.2.13 (February 28, 2020)
2599
-
2600
- ### Fixes
2601
-
2602
- - macros: unresolved import in `pin!` ([#2281]).
2603
-
2604
- [#2281]: https://github.com/tokio-rs/tokio/pull/2281
2605
-
2606
- # 0.2.12 (February 27, 2020)
2607
-
2608
- ### Fixes
2609
-
2610
- - net: `UnixStream::poll_shutdown` should call `shutdown(Write)` ([#2245]).
2611
- - process: Wake up read and write on `EPOLLERR` ([#2218]).
2612
- - rt: potential deadlock when using `block_in_place` and shutting down the
2613
- runtime ([#2119]).
2614
- - rt: only detect number of CPUs if `core_threads` not specified ([#2238]).
2615
- - sync: reduce `watch::Receiver` struct size ([#2191]).
2616
- - time: succeed when setting delay of `$MAX-1` ([#2184]).
2617
- - time: avoid having to poll `DelayQueue` after inserting new delay ([#2217]).
2618
-
2619
- ### Added
2620
-
2621
- - macros: `pin!` variant that assigns to identifier and pins ([#2274]).
2622
- - net: impl `Stream` for `Listener` types ([#2275]).
2623
- - rt: `Runtime::shutdown_timeout` waits for runtime to shutdown for specified
2624
- duration ([#2186]).
2625
- - stream: `StreamMap` merges streams and can insert / remove streams at
2626
- runtime ([#2185]).
2627
- - stream: `StreamExt::skip()` skips a fixed number of items ([#2204]).
2628
- - stream: `StreamExt::skip_while()` skips items based on a predicate ([#2205]).
2629
- - sync: `Notify` provides basic `async` / `await` task notification ([#2210]).
2630
- - sync: `Mutex::into_inner` retrieves guarded data ([#2250]).
2631
- - sync: `mpsc::Sender::send_timeout` sends, waiting for up to specified duration
2632
- for channel capacity ([#2227]).
2633
- - time: impl `Ord` and `Hash` for `Instant` ([#2239]).
2634
-
2635
- [#2119]: https://github.com/tokio-rs/tokio/pull/2119
2636
- [#2184]: https://github.com/tokio-rs/tokio/pull/2184
2637
- [#2185]: https://github.com/tokio-rs/tokio/pull/2185
2638
- [#2186]: https://github.com/tokio-rs/tokio/pull/2186
2639
- [#2191]: https://github.com/tokio-rs/tokio/pull/2191
2640
- [#2204]: https://github.com/tokio-rs/tokio/pull/2204
2641
- [#2205]: https://github.com/tokio-rs/tokio/pull/2205
2642
- [#2210]: https://github.com/tokio-rs/tokio/pull/2210
2643
- [#2217]: https://github.com/tokio-rs/tokio/pull/2217
2644
- [#2218]: https://github.com/tokio-rs/tokio/pull/2218
2645
- [#2227]: https://github.com/tokio-rs/tokio/pull/2227
2646
- [#2238]: https://github.com/tokio-rs/tokio/pull/2238
2647
- [#2239]: https://github.com/tokio-rs/tokio/pull/2239
2648
- [#2245]: https://github.com/tokio-rs/tokio/pull/2245
2649
- [#2250]: https://github.com/tokio-rs/tokio/pull/2250
2650
- [#2274]: https://github.com/tokio-rs/tokio/pull/2274
2651
- [#2275]: https://github.com/tokio-rs/tokio/pull/2275
2652
-
2653
- # 0.2.11 (January 27, 2020)
2654
-
2655
- ### Fixes
2656
-
2657
- - docs: misc fixes and tweaks ([#2155], [#2103], [#2027], [#2167], [#2175]).
2658
- - macros: handle generics in `#[tokio::main]` method ([#2177]).
2659
- - sync: `broadcast` potential lost notifications ([#2135]).
2660
- - rt: improve "no runtime" panic messages ([#2145]).
2661
-
2662
- ### Added
2663
-
2664
- - optional support for using `parking_lot` internally ([#2164]).
2665
- - fs: `fs::copy`, an async version of `std::fs::copy` ([#2079]).
2666
- - macros: `select!` waits for the first branch to complete ([#2152]).
2667
- - macros: `join!` waits for all branches to complete ([#2158]).
2668
- - macros: `try_join!` waits for all branches to complete or the first error ([#2169]).
2669
- - macros: `pin!` pins a value to the stack ([#2163]).
2670
- - net: `ReadHalf::poll()` and `ReadHalf::poll_peak` ([#2151])
2671
- - stream: `StreamExt::timeout()` sets a per-item max duration ([#2149]).
2672
- - stream: `StreamExt::fold()` applies a function, producing a single value. ([#2122]).
2673
- - sync: impl `Eq`, `PartialEq` for `oneshot::RecvError` ([#2168]).
2674
- - task: methods for inspecting the `JoinError` cause ([#2051]).
2675
-
2676
- [#2027]: https://github.com/tokio-rs/tokio/pull/2027
2677
- [#2051]: https://github.com/tokio-rs/tokio/pull/2051
2678
- [#2079]: https://github.com/tokio-rs/tokio/pull/2079
2679
- [#2103]: https://github.com/tokio-rs/tokio/pull/2103
2680
- [#2122]: https://github.com/tokio-rs/tokio/pull/2122
2681
- [#2135]: https://github.com/tokio-rs/tokio/pull/2135
2682
- [#2145]: https://github.com/tokio-rs/tokio/pull/2145
2683
- [#2149]: https://github.com/tokio-rs/tokio/pull/2149
2684
- [#2151]: https://github.com/tokio-rs/tokio/pull/2151
2685
- [#2152]: https://github.com/tokio-rs/tokio/pull/2152
2686
- [#2155]: https://github.com/tokio-rs/tokio/pull/2155
2687
- [#2158]: https://github.com/tokio-rs/tokio/pull/2158
2688
- [#2163]: https://github.com/tokio-rs/tokio/pull/2163
2689
- [#2164]: https://github.com/tokio-rs/tokio/pull/2164
2690
- [#2167]: https://github.com/tokio-rs/tokio/pull/2167
2691
- [#2168]: https://github.com/tokio-rs/tokio/pull/2168
2692
- [#2169]: https://github.com/tokio-rs/tokio/pull/2169
2693
- [#2175]: https://github.com/tokio-rs/tokio/pull/2175
2694
- [#2177]: https://github.com/tokio-rs/tokio/pull/2177
2695
-
2696
- # 0.2.10 (January 21, 2020)
2697
-
2698
- ### Fixes
2699
-
2700
- - `#[tokio::main]` when `rt-core` feature flag is not enabled ([#2139]).
2701
- - remove `AsyncBufRead` from `BufStream` impl block ([#2108]).
2702
- - potential undefined behavior when implementing `AsyncRead` incorrectly ([#2030]).
2703
-
2704
- ### Added
2705
-
2706
- - `BufStream::with_capacity` ([#2125]).
2707
- - impl `From` and `Default` for `RwLock` ([#2089]).
2708
- - `io::ReadHalf::is_pair_of` checks if provided `WriteHalf` is for the same
2709
- underlying object ([#1762], [#2144]).
2710
- - `runtime::Handle::try_current()` returns a handle to the current runtime ([#2118]).
2711
- - `stream::empty()` returns an immediately ready empty stream ([#2092]).
2712
- - `stream::once(val)` returns a stream that yields a single value: `val` ([#2094]).
2713
- - `stream::pending()` returns a stream that never becomes ready ([#2092]).
2714
- - `StreamExt::chain()` sequences a second stream after the first completes ([#2093]).
2715
- - `StreamExt::collect()` transform a stream into a collection ([#2109]).
2716
- - `StreamExt::fuse` ends the stream after the first `None` ([#2085]).
2717
- - `StreamExt::merge` combines two streams, yielding values as they become ready ([#2091]).
2718
- - Task-local storage ([#2126]).
2719
-
2720
- [#1762]: https://github.com/tokio-rs/tokio/pull/1762
2721
- [#2030]: https://github.com/tokio-rs/tokio/pull/2030
2722
- [#2085]: https://github.com/tokio-rs/tokio/pull/2085
2723
- [#2089]: https://github.com/tokio-rs/tokio/pull/2089
2724
- [#2091]: https://github.com/tokio-rs/tokio/pull/2091
2725
- [#2092]: https://github.com/tokio-rs/tokio/pull/2092
2726
- [#2093]: https://github.com/tokio-rs/tokio/pull/2093
2727
- [#2094]: https://github.com/tokio-rs/tokio/pull/2094
2728
- [#2108]: https://github.com/tokio-rs/tokio/pull/2108
2729
- [#2109]: https://github.com/tokio-rs/tokio/pull/2109
2730
- [#2118]: https://github.com/tokio-rs/tokio/pull/2118
2731
- [#2125]: https://github.com/tokio-rs/tokio/pull/2125
2732
- [#2126]: https://github.com/tokio-rs/tokio/pull/2126
2733
- [#2139]: https://github.com/tokio-rs/tokio/pull/2139
2734
- [#2144]: https://github.com/tokio-rs/tokio/pull/2144
2735
-
2736
- # 0.2.9 (January 9, 2020)
2737
-
2738
- ### Fixes
2739
-
2740
- - `AsyncSeek` impl for `File` ([#1986]).
2741
- - rt: shutdown deadlock in `threaded_scheduler` ([#2074], [#2082]).
2742
- - rt: memory ordering when dropping `JoinHandle` ([#2044]).
2743
- - docs: misc API documentation fixes and improvements.
2744
-
2745
- [#1986]: https://github.com/tokio-rs/tokio/pull/1986
2746
- [#2044]: https://github.com/tokio-rs/tokio/pull/2044
2747
- [#2074]: https://github.com/tokio-rs/tokio/pull/2074
2748
- [#2082]: https://github.com/tokio-rs/tokio/pull/2082
2749
-
2750
- # 0.2.8 (January 7, 2020)
2751
-
2752
- ### Fixes
2753
-
2754
- - depend on new version of `tokio-macros`.
2755
-
2756
- # 0.2.7 (January 7, 2020)
2757
-
2758
- ### Fixes
2759
-
2760
- - potential deadlock when dropping `basic_scheduler` Runtime.
2761
- - calling `spawn_blocking` from within a `spawn_blocking` ([#2006]).
2762
- - storing a `Runtime` instance in a thread-local ([#2011]).
2763
- - miscellaneous documentation fixes.
2764
- - rt: fix `Waker::will_wake` to return true when tasks match ([#2045]).
2765
- - test-util: `time::advance` runs pending tasks before changing the time ([#2059]).
2766
-
2767
- ### Added
2768
-
2769
- - `net::lookup_host` maps a `T: ToSocketAddrs` to a stream of `SocketAddrs` ([#1870]).
2770
- - `process::Child` fields are made public to match `std` ([#2014]).
2771
- - impl `Stream` for `sync::broadcast::Receiver` ([#2012]).
2772
- - `sync::RwLock` provides an asynchronous read-write lock ([#1699]).
2773
- - `runtime::Handle::current` returns the handle for the current runtime ([#2040]).
2774
- - `StreamExt::filter` filters stream values according to a predicate ([#2001]).
2775
- - `StreamExt::filter_map` simultaneously filter and map stream values ([#2001]).
2776
- - `StreamExt::try_next` convenience for streams of `Result<T, E>` ([#2005]).
2777
- - `StreamExt::take` limits a stream to a specified number of values ([#2025]).
2778
- - `StreamExt::take_while` limits a stream based on a predicate ([#2029]).
2779
- - `StreamExt::all` tests if every element of the stream matches a predicate ([#2035]).
2780
- - `StreamExt::any` tests if any element of the stream matches a predicate ([#2034]).
2781
- - `task::LocalSet.await` runs spawned tasks until the set is idle ([#1971]).
2782
- - `time::DelayQueue::len` returns the number entries in the queue ([#1755]).
2783
- - expose runtime options from the `#[tokio::main]` and `#[tokio::test]` ([#2022]).
2784
-
2785
- [#1699]: https://github.com/tokio-rs/tokio/pull/1699
2786
- [#1755]: https://github.com/tokio-rs/tokio/pull/1755
2787
- [#1870]: https://github.com/tokio-rs/tokio/pull/1870
2788
- [#1971]: https://github.com/tokio-rs/tokio/pull/1971
2789
- [#2001]: https://github.com/tokio-rs/tokio/pull/2001
2790
- [#2005]: https://github.com/tokio-rs/tokio/pull/2005
2791
- [#2006]: https://github.com/tokio-rs/tokio/pull/2006
2792
- [#2011]: https://github.com/tokio-rs/tokio/pull/2011
2793
- [#2012]: https://github.com/tokio-rs/tokio/pull/2012
2794
- [#2014]: https://github.com/tokio-rs/tokio/pull/2014
2795
- [#2022]: https://github.com/tokio-rs/tokio/pull/2022
2796
- [#2025]: https://github.com/tokio-rs/tokio/pull/2025
2797
- [#2029]: https://github.com/tokio-rs/tokio/pull/2029
2798
- [#2034]: https://github.com/tokio-rs/tokio/pull/2034
2799
- [#2035]: https://github.com/tokio-rs/tokio/pull/2035
2800
- [#2040]: https://github.com/tokio-rs/tokio/pull/2040
2801
- [#2045]: https://github.com/tokio-rs/tokio/pull/2045
2802
- [#2059]: https://github.com/tokio-rs/tokio/pull/2059
2803
-
2804
- # 0.2.6 (December 19, 2019)
2805
-
2806
- ### Fixes
2807
-
2808
- - `fs::File::seek` API regression ([#1991]).
2809
-
2810
- [#1991]: https://github.com/tokio-rs/tokio/pull/1991
2811
-
2812
- # 0.2.5 (December 18, 2019)
2813
-
2814
- ### Added
2815
-
2816
- - `io::AsyncSeek` trait ([#1924]).
2817
- - `Mutex::try_lock` ([#1939])
2818
- - `mpsc::Receiver::try_recv` and `mpsc::UnboundedReceiver::try_recv` ([#1939]).
2819
- - `writev` support for `TcpStream` ([#1956]).
2820
- - `time::throttle` for throttling streams ([#1949]).
2821
- - implement `Stream` for `time::DelayQueue` ([#1975]).
2822
- - `sync::broadcast` provides a fan-out channel ([#1943]).
2823
- - `sync::Semaphore` provides an async semaphore ([#1973]).
2824
- - `stream::StreamExt` provides stream utilities ([#1962]).
2825
-
2826
- ### Fixes
2827
-
2828
- - deadlock risk while shutting down the runtime ([#1972]).
2829
- - panic while shutting down the runtime ([#1978]).
2830
- - `sync::MutexGuard` debug output ([#1961]).
2831
- - misc doc improvements ([#1933], [#1934], [#1940], [#1942]).
2832
-
2833
- ### Changes
2834
-
2835
- - runtime threads are configured with `runtime::Builder::core_threads` and
2836
- `runtime::Builder::max_threads`. `runtime::Builder::num_threads` is
2837
- deprecated ([#1977]).
2838
-
2839
- [#1924]: https://github.com/tokio-rs/tokio/pull/1924
2840
- [#1933]: https://github.com/tokio-rs/tokio/pull/1933
2841
- [#1934]: https://github.com/tokio-rs/tokio/pull/1934
2842
- [#1939]: https://github.com/tokio-rs/tokio/pull/1939
2843
- [#1940]: https://github.com/tokio-rs/tokio/pull/1940
2844
- [#1942]: https://github.com/tokio-rs/tokio/pull/1942
2845
- [#1943]: https://github.com/tokio-rs/tokio/pull/1943
2846
- [#1949]: https://github.com/tokio-rs/tokio/pull/1949
2847
- [#1956]: https://github.com/tokio-rs/tokio/pull/1956
2848
- [#1961]: https://github.com/tokio-rs/tokio/pull/1961
2849
- [#1962]: https://github.com/tokio-rs/tokio/pull/1962
2850
- [#1972]: https://github.com/tokio-rs/tokio/pull/1972
2851
- [#1973]: https://github.com/tokio-rs/tokio/pull/1973
2852
- [#1975]: https://github.com/tokio-rs/tokio/pull/1975
2853
- [#1977]: https://github.com/tokio-rs/tokio/pull/1977
2854
- [#1978]: https://github.com/tokio-rs/tokio/pull/1978
2855
-
2856
- # 0.2.4 (December 6, 2019)
2857
-
2858
- ### Fixes
2859
-
2860
- - `sync::Mutex` deadlock when `lock()` future is dropped early ([#1898]).
2861
-
2862
- [#1898]: https://github.com/tokio-rs/tokio/pull/1898
2863
-
2864
- # 0.2.3 (December 6, 2019)
2865
-
2866
- ### Added
2867
-
2868
- - read / write integers using `AsyncReadExt` and `AsyncWriteExt` ([#1863]).
2869
- - `read_buf` / `write_buf` for reading / writing `Buf` / `BufMut` ([#1881]).
2870
- - `TcpStream::poll_peek` - pollable API for performing TCP peek ([#1864]).
2871
- - `sync::oneshot::error::TryRecvError` provides variants to detect the error
2872
- kind ([#1874]).
2873
- - `LocalSet::block_on` accepts `!'static` task ([#1882]).
2874
- - `task::JoinError` is now `Sync` ([#1888]).
2875
- - impl conversions between `tokio::time::Instant` and
2876
- `std::time::Instant` ([#1904]).
2877
-
2878
- ### Fixes
2879
-
2880
- - calling `spawn_blocking` after runtime shutdown ([#1875]).
2881
- - `LocalSet` drop infinite loop ([#1892]).
2882
- - `LocalSet` hang under load ([#1905]).
2883
- - improved documentation ([#1865], [#1866], [#1868], [#1874], [#1876], [#1911]).
2884
-
2885
- [#1863]: https://github.com/tokio-rs/tokio/pull/1863
2886
- [#1864]: https://github.com/tokio-rs/tokio/pull/1864
2887
- [#1865]: https://github.com/tokio-rs/tokio/pull/1865
2888
- [#1866]: https://github.com/tokio-rs/tokio/pull/1866
2889
- [#1868]: https://github.com/tokio-rs/tokio/pull/1868
2890
- [#1874]: https://github.com/tokio-rs/tokio/pull/1874
2891
- [#1875]: https://github.com/tokio-rs/tokio/pull/1875
2892
- [#1876]: https://github.com/tokio-rs/tokio/pull/1876
2893
- [#1881]: https://github.com/tokio-rs/tokio/pull/1881
2894
- [#1882]: https://github.com/tokio-rs/tokio/pull/1882
2895
- [#1888]: https://github.com/tokio-rs/tokio/pull/1888
2896
- [#1892]: https://github.com/tokio-rs/tokio/pull/1892
2897
- [#1904]: https://github.com/tokio-rs/tokio/pull/1904
2898
- [#1905]: https://github.com/tokio-rs/tokio/pull/1905
2899
- [#1911]: https://github.com/tokio-rs/tokio/pull/1911
2900
-
2901
- # 0.2.2 (November 29, 2019)
2902
-
2903
- ### Fixes
2904
-
2905
- - scheduling with `basic_scheduler` ([#1861]).
2906
- - update `spawn` panic message to specify that a task scheduler is required ([#1839]).
2907
- - API docs example for `runtime::Builder` to include a task scheduler ([#1841]).
2908
- - general documentation ([#1834]).
2909
- - building on illumos/solaris ([#1772]).
2910
- - panic when dropping `LocalSet` ([#1843]).
2911
- - API docs mention the required Cargo features for `Builder::{basic, threaded}_scheduler` ([#1858]).
2912
-
2913
- ### Added
2914
-
2915
- - impl `Stream` for `signal::unix::Signal` ([#1849]).
2916
- - API docs for platform specific behavior of `signal::ctrl_c` and `signal::unix::Signal` ([#1854]).
2917
- - API docs for `signal::unix::Signal::{recv, poll_recv}` and `signal::windows::CtrlBreak::{recv, poll_recv}` ([#1854]).
2918
- - `File::into_std` and `File::try_into_std` methods ([#1856]).
2919
-
2920
- [#1772]: https://github.com/tokio-rs/tokio/pull/1772
2921
- [#1834]: https://github.com/tokio-rs/tokio/pull/1834
2922
- [#1839]: https://github.com/tokio-rs/tokio/pull/1839
2923
- [#1841]: https://github.com/tokio-rs/tokio/pull/1841
2924
- [#1843]: https://github.com/tokio-rs/tokio/pull/1843
2925
- [#1849]: https://github.com/tokio-rs/tokio/pull/1849
2926
- [#1854]: https://github.com/tokio-rs/tokio/pull/1854
2927
- [#1856]: https://github.com/tokio-rs/tokio/pull/1856
2928
- [#1858]: https://github.com/tokio-rs/tokio/pull/1858
2929
- [#1861]: https://github.com/tokio-rs/tokio/pull/1861
2930
-
2931
- # 0.2.1 (November 26, 2019)
2932
-
2933
- ### Fixes
2934
-
2935
- - API docs for `TcpListener::incoming`, `UnixListener::incoming` ([#1831]).
2936
-
2937
- ### Added
2938
-
2939
- - `tokio::task::LocalSet` provides a strategy for spawning `!Send` tasks ([#1733]).
2940
- - export `tokio::time::Elapsed` ([#1826]).
2941
- - impl `AsRawFd`, `AsRawHandle` for `tokio::fs::File` ([#1827]).
2942
-
2943
- [#1733]: https://github.com/tokio-rs/tokio/pull/1733
2944
- [#1826]: https://github.com/tokio-rs/tokio/pull/1826
2945
- [#1827]: https://github.com/tokio-rs/tokio/pull/1827
2946
- [#1831]: https://github.com/tokio-rs/tokio/pull/1831
2947
-
2948
- # 0.2.0 (November 26, 2019)
2949
-
2950
- A major breaking change. Most implementation and APIs have changed one way or
2951
- another. This changelog entry contains a highlight
2952
-
2953
- ### Changed
2954
-
2955
- - APIs are updated to use `async / await`.
2956
- - most `tokio-*` crates are collapsed into this crate.
2957
- - Scheduler is rewritten.
2958
- - `tokio::spawn` returns a `JoinHandle`.
2959
- - A single I/O / timer is used per runtime.
2960
- - I/O driver uses a concurrent slab for allocating state.
2961
- - components are made available via feature flag.
2962
- - Use `bytes` 0.5
2963
- - `tokio::codec` is moved to `tokio-util`.
2964
-
2965
- ### Removed
2966
-
2967
- - Standalone `timer` and `net` drivers are removed, use `Runtime` instead
2968
- - `current_thread` runtime is removed, use `tokio::runtime::Runtime` with
2969
- `basic_scheduler` instead.
2970
-
2971
- # 0.1.21 (May 30, 2019)
2972
-
2973
- ### Changed
2974
-
2975
- - Bump `tokio-trace-core` version to 0.2 ([#1111]).
2976
-
2977
- [#1111]: https://github.com/tokio-rs/tokio/pull/1111
2978
-
2979
- # 0.1.20 (May 14, 2019)
2980
-
2981
- ### Added
2982
-
2983
- - `tokio::runtime::Builder::panic_handler` allows configuring handling
2984
- panics on the runtime ([#1055]).
2985
-
2986
- [#1055]: https://github.com/tokio-rs/tokio/pull/1055
2987
-
2988
- # 0.1.19 (April 22, 2019)
2989
-
2990
- ### Added
2991
-
2992
- - Re-export `tokio::sync::Mutex` primitive ([#964]).
2993
-
2994
- [#964]: https://github.com/tokio-rs/tokio/pull/964
2995
-
2996
- # 0.1.18 (March 22, 2019)
2997
-
2998
- ### Added
2999
-
3000
- - `TypedExecutor` re-export and implementations ([#993]).
3001
-
3002
- [#993]: https://github.com/tokio-rs/tokio/pull/993
3003
-
3004
- # 0.1.17 (March 13, 2019)
3005
-
3006
- ### Added
3007
-
3008
- - Propagate trace subscriber in the runtime ([#966]).
3009
-
3010
- [#966]: https://github.com/tokio-rs/tokio/pull/966
3011
-
3012
- # 0.1.16 (March 1, 2019)
3013
-
3014
- ### Fixed
3015
-
3016
- - async-await: track latest nightly changes ([#940]).
3017
-
3018
- ### Added
3019
-
3020
- - `sync::Watch`, a single value broadcast channel ([#922]).
3021
- - Async equivalent of read / write file helpers being added to `std` ([#896]).
3022
-
3023
- [#896]: https://github.com/tokio-rs/tokio/pull/896
3024
- [#922]: https://github.com/tokio-rs/tokio/pull/922
3025
- [#940]: https://github.com/tokio-rs/tokio/pull/940
3026
-
3027
- # 0.1.15 (January 24, 2019)
3028
-
3029
- ### Added
3030
-
3031
- - Re-export tokio-sync APIs ([#839]).
3032
- - Stream enumerate combinator ([#832]).
3033
-
3034
- [#832]: https://github.com/tokio-rs/tokio/pull/832
3035
- [#839]: https://github.com/tokio-rs/tokio/pull/839
3036
-
3037
- # 0.1.14 (January 6, 2019)
3038
-
3039
- - Use feature flags to break up the crate, allowing users to pick & choose
3040
- components ([#808]).
3041
- - Export `UnixDatagram` and `UnixDatagramFramed` ([#772]).
3042
-
3043
- [#772]: https://github.com/tokio-rs/tokio/pull/772
3044
- [#808]: https://github.com/tokio-rs/tokio/pull/808
3045
-
3046
- # 0.1.13 (November 21, 2018)
3047
-
3048
- - Fix `Runtime::reactor()` when no tasks are spawned ([#721]).
3049
- - `runtime::Builder` no longer uses deprecated methods ([#749]).
3050
- - Provide `after_start` and `before_stop` configuration settings for
3051
- `Runtime` ([#756]).
3052
- - Implement throttle stream combinator ([#736]).
3053
-
3054
- [#721]: https://github.com/tokio-rs/tokio/pull/721
3055
- [#736]: https://github.com/tokio-rs/tokio/pull/736
3056
- [#749]: https://github.com/tokio-rs/tokio/pull/749
3057
- [#756]: https://github.com/tokio-rs/tokio/pull/756
3058
-
3059
- # 0.1.12 (October 23, 2018)
3060
-
3061
- - runtime: expose `keep_alive` on runtime builder ([#676]).
3062
- - runtime: create a reactor per worker thread ([#660]).
3063
- - codec: fix panic in `LengthDelimitedCodec` ([#682]).
3064
- - io: re-export `tokio_io::io::read` function ([#689]).
3065
- - runtime: check for executor re-entry in more places ([#708]).
3066
-
3067
- [#660]: https://github.com/tokio-rs/tokio/pull/660
3068
- [#676]: https://github.com/tokio-rs/tokio/pull/676
3069
- [#682]: https://github.com/tokio-rs/tokio/pull/682
3070
- [#689]: https://github.com/tokio-rs/tokio/pull/689
3071
- [#708]: https://github.com/tokio-rs/tokio/pull/708
3072
-
3073
- # 0.1.11 (September 28, 2018)
3074
-
3075
- - Fix `tokio-async-await` dependency ([#675]).
3076
-
3077
- [#675]: https://github.com/tokio-rs/tokio/pull/675
3078
-
3079
- # 0.1.10 (September 27, 2018)
3080
-
3081
- - Fix minimal versions
3082
-
3083
- # 0.1.9 (September 27, 2018)
3084
-
3085
- - Experimental async/await improvements ([#661]).
3086
- - Re-export `TaskExecutor` from `tokio-current-thread` ([#652]).
3087
- - Improve `Runtime` builder API ([#645]).
3088
- - `tokio::run` panics when called from the context of an executor
3089
- ([#646]).
3090
- - Introduce `StreamExt` with a `timeout` helper ([#573]).
3091
- - Move `length_delimited` into `tokio` ([#575]).
3092
- - Re-organize `tokio::net` module ([#548]).
3093
- - Re-export `tokio-current-thread::spawn` in current_thread runtime
3094
- ([#579]).
3095
-
3096
- [#548]: https://github.com/tokio-rs/tokio/pull/548
3097
- [#573]: https://github.com/tokio-rs/tokio/pull/573
3098
- [#575]: https://github.com/tokio-rs/tokio/pull/575
3099
- [#579]: https://github.com/tokio-rs/tokio/pull/579
3100
- [#645]: https://github.com/tokio-rs/tokio/pull/645
3101
- [#646]: https://github.com/tokio-rs/tokio/pull/646
3102
- [#652]: https://github.com/tokio-rs/tokio/pull/652
3103
- [#661]: https://github.com/tokio-rs/tokio/pull/661
3104
-
3105
- # 0.1.8 (August 23, 2018)
3106
-
3107
- - Extract tokio::executor::current_thread to a sub crate ([#370])
3108
- - Add `Runtime::block_on` ([#398])
3109
- - Add `runtime::current_thread::block_on_all` ([#477])
3110
- - Misc documentation improvements ([#450])
3111
- - Implement `std::error::Error` for error types ([#501])
3112
-
3113
- [#370]: https://github.com/tokio-rs/tokio/pull/370
3114
- [#398]: https://github.com/tokio-rs/tokio/pull/398
3115
- [#450]: https://github.com/tokio-rs/tokio/pull/450
3116
- [#477]: https://github.com/tokio-rs/tokio/pull/477
3117
- [#501]: https://github.com/tokio-rs/tokio/pull/501
3118
-
3119
- # 0.1.7 (June 6, 2018)
3120
-
3121
- - Add `Runtime::block_on` for concurrent runtime ([#391]).
3122
- - Provide handle to `current_thread::Runtime` that allows spawning tasks from
3123
- other threads ([#340]).
3124
- - Provide `clock::now()`, a configurable source of time ([#381]).
3125
-
3126
- [#340]: https://github.com/tokio-rs/tokio/pull/340
3127
- [#381]: https://github.com/tokio-rs/tokio/pull/381
3128
- [#391]: https://github.com/tokio-rs/tokio/pull/391
3129
-
3130
- # 0.1.6 (May 2, 2018)
3131
-
3132
- - Add asynchronous filesystem APIs ([#323]).
3133
- - Add "current thread" runtime variant ([#308]).
3134
- - `CurrentThread`: Expose inner `Park` instance.
3135
- - Improve fairness of `CurrentThread` executor ([#313]).
3136
-
3137
- [#308]: https://github.com/tokio-rs/tokio/pull/308
3138
- [#313]: https://github.com/tokio-rs/tokio/pull/313
3139
- [#323]: https://github.com/tokio-rs/tokio/pull/323
3140
-
3141
- # 0.1.5 (March 30, 2018)
3142
-
3143
- - Provide timer API ([#266])
3144
-
3145
- [#266]: https://github.com/tokio-rs/tokio/pull/266
3146
-
3147
- # 0.1.4 (March 22, 2018)
3148
-
3149
- - Fix build on FreeBSD ([#218])
3150
- - Shutdown the Runtime when the handle is dropped ([#214])
3151
- - Set Runtime thread name prefix for worker threads ([#232])
3152
- - Add builder for Runtime ([#234])
3153
- - Extract TCP and UDP types into separate crates ([#224])
3154
- - Optionally support futures 0.2.
3155
-
3156
- [#214]: https://github.com/tokio-rs/tokio/pull/214
3157
- [#218]: https://github.com/tokio-rs/tokio/pull/218
3158
- [#224]: https://github.com/tokio-rs/tokio/pull/224
3159
- [#232]: https://github.com/tokio-rs/tokio/pull/232
3160
- [#234]: https://github.com/tokio-rs/tokio/pull/234
3161
-
3162
- # 0.1.3 (March 09, 2018)
3163
-
3164
- - Fix `CurrentThread::turn` to block on idle ([#212]).
3165
-
3166
- [#212]: https://github.com/tokio-rs/tokio/pull/212
3167
-
3168
- # 0.1.2 (March 09, 2018)
3169
-
3170
- - Introduce Tokio Runtime ([#141])
3171
- - Provide `CurrentThread` for more flexible usage of current thread executor ([#141]).
3172
- - Add Lio for platforms that support it ([#142]).
3173
- - I/O resources now lazily bind to the reactor ([#160]).
3174
- - Extract Reactor to dedicated crate ([#169])
3175
- - Add facade to sub crates and add prelude ([#166]).
3176
- - Switch TCP/UDP fns to poll\_ -> Poll<...> style ([#175])
3177
-
3178
- [#141]: https://github.com/tokio-rs/tokio/pull/141
3179
- [#142]: https://github.com/tokio-rs/tokio/pull/142
3180
- [#160]: https://github.com/tokio-rs/tokio/pull/160
3181
- [#166]: https://github.com/tokio-rs/tokio/pull/166
3182
- [#169]: https://github.com/tokio-rs/tokio/pull/169
3183
- [#175]: https://github.com/tokio-rs/tokio/pull/175
3184
-
3185
- # 0.1.1 (February 09, 2018)
3186
-
3187
- - Doc fixes
3188
-
3189
- # 0.1.0 (February 07, 2018)
3190
-
3191
- - Initial crate released based on [RFC](https://github.com/tokio-rs/tokio-rfcs/pull/3).