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
@@ -0,0 +1,3250 @@
1
+ # 1.36.0 (February 2nd, 2024)
2
+
3
+ ### Added
4
+
5
+ - io: add `tokio::io::Join` ([#6220])
6
+ - io: implement `AsyncWrite` for `Empty` ([#6235])
7
+ - net: add support for anonymous unix pipes ([#6127])
8
+ - net: add `UnixSocket` ([#6290])
9
+ - net: expose keepalive option on `TcpSocket` ([#6311])
10
+ - sync: add `{Receiver,UnboundedReceiver}::poll_recv_many` ([#6236])
11
+ - sync: add `Sender::{try_,}reserve_many` ([#6205])
12
+ - sync: add `watch::Receiver::mark_unchanged` ([#6252])
13
+ - task: add `JoinSet::try_join_next` ([#6280])
14
+ - time: add `FutureExt::timeout` ([#6276])
15
+
16
+ ### Changed
17
+
18
+ - io: make `copy` cooperative ([#6265])
19
+ - io: make `repeat` and `sink` cooperative ([#6254])
20
+ - io: simplify check for empty slice ([#6293])
21
+ - rt: improve robustness of `wake_in_drop_after_panic` test ([#6238])
22
+ - process: use pidfd on Linux when available ([#6152])
23
+ - sync: use AtomicBool in broadcast channel future ([#6298])
24
+
25
+ ### Fixed
26
+
27
+ - chore: typographic improvements ([#6262])
28
+ - runtime: remove obsolete comment ([#6303])
29
+ - task: fix typo ([#6261])
30
+
31
+ ### Documented
32
+
33
+ - io: clarify `clear_ready` docs ([#6304])
34
+ - net: document that `*Fd` traits on `TcpSocket` are unix-only ([#6294])
35
+ - sync: document FIFO behavior of `tokio::sync::Mutex` ([#6279])
36
+
37
+ [#6220]: https://github.com/tokio-rs/tokio/pull/6220
38
+ [#6235]: https://github.com/tokio-rs/tokio/pull/6235
39
+ [#6127]: https://github.com/tokio-rs/tokio/pull/6127
40
+ [#6290]: https://github.com/tokio-rs/tokio/pull/6290
41
+ [#6311]: https://github.com/tokio-rs/tokio/pull/6311
42
+ [#6236]: https://github.com/tokio-rs/tokio/pull/6236
43
+ [#6205]: https://github.com/tokio-rs/tokio/pull/6205
44
+ [#6252]: https://github.com/tokio-rs/tokio/pull/6252
45
+ [#6280]: https://github.com/tokio-rs/tokio/pull/6280
46
+ [#6276]: https://github.com/tokio-rs/tokio/pull/6276
47
+ [#6265]: https://github.com/tokio-rs/tokio/pull/6265
48
+ [#6254]: https://github.com/tokio-rs/tokio/pull/6254
49
+ [#6293]: https://github.com/tokio-rs/tokio/pull/6293
50
+ [#6238]: https://github.com/tokio-rs/tokio/pull/6238
51
+ [#6152]: https://github.com/tokio-rs/tokio/pull/6152
52
+ [#6298]: https://github.com/tokio-rs/tokio/pull/6298
53
+ [#6262]: https://github.com/tokio-rs/tokio/pull/6262
54
+ [#6303]: https://github.com/tokio-rs/tokio/pull/6303
55
+ [#6261]: https://github.com/tokio-rs/tokio/pull/6261
56
+ [#6304]: https://github.com/tokio-rs/tokio/pull/6304
57
+ [#6294]: https://github.com/tokio-rs/tokio/pull/6294
58
+ [#6279]: https://github.com/tokio-rs/tokio/pull/6279
59
+
60
+ # 1.35.1 (December 19, 2023)
61
+
62
+ This is a forward part of a change that was backported to 1.25.3.
63
+
64
+ ### Fixed
65
+
66
+ - io: add budgeting to `tokio::runtime::io::registration::async_io` ([#6221])
67
+
68
+ [#6221]: https://github.com/tokio-rs/tokio/pull/6221
69
+
70
+ # 1.35.0 (December 8th, 2023)
71
+
72
+ ### Added
73
+
74
+ - net: add Apple watchOS support ([#6176])
75
+
76
+ ### Changed
77
+
78
+ - io: drop the `Sized` requirements from `AsyncReadExt.read_buf` ([#6169])
79
+ - runtime: make `Runtime` unwind safe ([#6189])
80
+ - runtime: reduce the lock contention in task spawn ([#6001])
81
+ - tokio: update nix dependency to 0.27.1 ([#6190])
82
+
83
+ ### Fixed
84
+
85
+ - chore: make `--cfg docsrs` work without net feature ([#6166])
86
+ - chore: use relaxed load for `unsync_load` on miri ([#6179])
87
+ - runtime: handle missing context on wake ([#6148])
88
+ - taskdump: fix taskdump cargo config example ([#6150])
89
+ - taskdump: skip notified tasks during taskdumps ([#6194])
90
+ - tracing: avoid creating resource spans with current parent, use a None parent instead ([#6107])
91
+ - tracing: make task span explicit root ([#6158])
92
+
93
+ ### Documented
94
+
95
+ - io: flush in `AsyncWriteExt` examples ([#6149])
96
+ - runtime: document fairness guarantees and current behavior ([#6145])
97
+ - task: document cancel safety of `LocalSet::run_until` ([#6147])
98
+
99
+ [#6001]: https://github.com/tokio-rs/tokio/pull/6001
100
+ [#6107]: https://github.com/tokio-rs/tokio/pull/6107
101
+ [#6144]: https://github.com/tokio-rs/tokio/pull/6144
102
+ [#6145]: https://github.com/tokio-rs/tokio/pull/6145
103
+ [#6147]: https://github.com/tokio-rs/tokio/pull/6147
104
+ [#6148]: https://github.com/tokio-rs/tokio/pull/6148
105
+ [#6149]: https://github.com/tokio-rs/tokio/pull/6149
106
+ [#6150]: https://github.com/tokio-rs/tokio/pull/6150
107
+ [#6158]: https://github.com/tokio-rs/tokio/pull/6158
108
+ [#6166]: https://github.com/tokio-rs/tokio/pull/6166
109
+ [#6169]: https://github.com/tokio-rs/tokio/pull/6169
110
+ [#6176]: https://github.com/tokio-rs/tokio/pull/6176
111
+ [#6179]: https://github.com/tokio-rs/tokio/pull/6179
112
+ [#6189]: https://github.com/tokio-rs/tokio/pull/6189
113
+ [#6190]: https://github.com/tokio-rs/tokio/pull/6190
114
+ [#6194]: https://github.com/tokio-rs/tokio/pull/6194
115
+
116
+ # 1.34.0 (November 19th, 2023)
117
+
118
+ ### Fixed
119
+
120
+ - io: allow `clear_readiness` after io driver shutdown ([#6067])
121
+ - io: fix integer overflow in `take` ([#6080])
122
+ - io: fix I/O resource hang ([#6134])
123
+ - sync: fix `broadcast::channel` link ([#6100])
124
+
125
+ ### Changed
126
+
127
+ - macros: use `::core` qualified imports instead of `::std` inside `tokio::test` macro ([#5973])
128
+
129
+ ### Added
130
+
131
+ - fs: update cfg attr in `fs::read_dir` to include `aix` ([#6075])
132
+ - sync: add `mpsc::Receiver::recv_many` ([#6010])
133
+ - tokio: added vita target support ([#6094])
134
+
135
+ [#5973]: https://github.com/tokio-rs/tokio/pull/5973
136
+ [#6067]: https://github.com/tokio-rs/tokio/pull/6067
137
+ [#6080]: https://github.com/tokio-rs/tokio/pull/6080
138
+ [#6134]: https://github.com/tokio-rs/tokio/pull/6134
139
+ [#6100]: https://github.com/tokio-rs/tokio/pull/6100
140
+ [#6075]: https://github.com/tokio-rs/tokio/pull/6075
141
+ [#6010]: https://github.com/tokio-rs/tokio/pull/6010
142
+ [#6094]: https://github.com/tokio-rs/tokio/pull/6094
143
+
144
+ # 1.33.0 (October 9, 2023)
145
+
146
+ ### Fixed
147
+
148
+ - io: mark `Interest::add` with `#[must_use]` ([#6037])
149
+ - runtime: fix cache line size for RISC-V ([#5994])
150
+ - sync: prevent lock poisoning in `watch::Receiver::wait_for` ([#6021])
151
+ - task: fix `spawn_local` source location ([#5984])
152
+
153
+ ### Changed
154
+
155
+ - sync: use Acquire/Release orderings instead of SeqCst in `watch` ([#6018])
156
+
157
+ ### Added
158
+
159
+ - fs: add vectored writes to `tokio::fs::File` ([#5958])
160
+ - io: add `Interest::remove` method ([#5906])
161
+ - io: add vectored writes to `DuplexStream` ([#5985])
162
+ - net: add Apple tvOS support ([#6045])
163
+ - sync: add `?Sized` bound to `{MutexGuard,OwnedMutexGuard}::map` ([#5997])
164
+ - sync: add `watch::Receiver::mark_unseen` ([#5962], [#6014], [#6017])
165
+ - sync: add `watch::Sender::new` ([#5998])
166
+ - sync: add const fn `OnceCell::from_value` ([#5903])
167
+
168
+ ### Removed
169
+
170
+ - remove unused `stats` feature ([#5952])
171
+
172
+ ### Documented
173
+
174
+ - add missing backticks in code examples ([#5938], [#6056])
175
+ - fix typos ([#5988], [#6030])
176
+ - process: document that `Child::wait` is cancel safe ([#5977])
177
+ - sync: add examples for `Semaphore` ([#5939], [#5956], [#5978], [#6031], [#6032], [#6050])
178
+ - sync: document that `broadcast` capacity is a lower bound ([#6042])
179
+ - sync: document that `const_new` is not instrumented ([#6002])
180
+ - sync: improve cancel-safety documentation for `mpsc::Sender::send` ([#5947])
181
+ - sync: improve docs for `watch` channel ([#5954])
182
+ - taskdump: render taskdump documentation on docs.rs ([#5972])
183
+
184
+ ### Unstable
185
+
186
+ - taskdump: fix potential deadlock ([#6036])
187
+
188
+ [#5903]: https://github.com/tokio-rs/tokio/pull/5903
189
+ [#5906]: https://github.com/tokio-rs/tokio/pull/5906
190
+ [#5938]: https://github.com/tokio-rs/tokio/pull/5938
191
+ [#5939]: https://github.com/tokio-rs/tokio/pull/5939
192
+ [#5947]: https://github.com/tokio-rs/tokio/pull/5947
193
+ [#5952]: https://github.com/tokio-rs/tokio/pull/5952
194
+ [#5954]: https://github.com/tokio-rs/tokio/pull/5954
195
+ [#5956]: https://github.com/tokio-rs/tokio/pull/5956
196
+ [#5958]: https://github.com/tokio-rs/tokio/pull/5958
197
+ [#5960]: https://github.com/tokio-rs/tokio/pull/5960
198
+ [#5962]: https://github.com/tokio-rs/tokio/pull/5962
199
+ [#5971]: https://github.com/tokio-rs/tokio/pull/5971
200
+ [#5972]: https://github.com/tokio-rs/tokio/pull/5972
201
+ [#5977]: https://github.com/tokio-rs/tokio/pull/5977
202
+ [#5978]: https://github.com/tokio-rs/tokio/pull/5978
203
+ [#5984]: https://github.com/tokio-rs/tokio/pull/5984
204
+ [#5985]: https://github.com/tokio-rs/tokio/pull/5985
205
+ [#5988]: https://github.com/tokio-rs/tokio/pull/5988
206
+ [#5994]: https://github.com/tokio-rs/tokio/pull/5994
207
+ [#5997]: https://github.com/tokio-rs/tokio/pull/5997
208
+ [#5998]: https://github.com/tokio-rs/tokio/pull/5998
209
+ [#6002]: https://github.com/tokio-rs/tokio/pull/6002
210
+ [#6014]: https://github.com/tokio-rs/tokio/pull/6014
211
+ [#6017]: https://github.com/tokio-rs/tokio/pull/6017
212
+ [#6018]: https://github.com/tokio-rs/tokio/pull/6018
213
+ [#6021]: https://github.com/tokio-rs/tokio/pull/6021
214
+ [#6030]: https://github.com/tokio-rs/tokio/pull/6030
215
+ [#6031]: https://github.com/tokio-rs/tokio/pull/6031
216
+ [#6032]: https://github.com/tokio-rs/tokio/pull/6032
217
+ [#6036]: https://github.com/tokio-rs/tokio/pull/6036
218
+ [#6037]: https://github.com/tokio-rs/tokio/pull/6037
219
+ [#6042]: https://github.com/tokio-rs/tokio/pull/6042
220
+ [#6045]: https://github.com/tokio-rs/tokio/pull/6045
221
+ [#6050]: https://github.com/tokio-rs/tokio/pull/6050
222
+ [#6056]: https://github.com/tokio-rs/tokio/pull/6056
223
+ [#6058]: https://github.com/tokio-rs/tokio/pull/6058
224
+
225
+ # 1.32.1 (December 19, 2023)
226
+
227
+ This is a forward part of a change that was backported to 1.25.3.
228
+
229
+ ### Fixed
230
+
231
+ - io: add budgeting to `tokio::runtime::io::registration::async_io` ([#6221])
232
+
233
+ [#6221]: https://github.com/tokio-rs/tokio/pull/6221
234
+
235
+ # 1.32.0 (August 16, 2023)
236
+
237
+ ### Fixed
238
+
239
+ - sync: fix potential quadratic behavior in `broadcast::Receiver` ([#5925])
240
+
241
+ ### Added
242
+
243
+ - process: stabilize `Command::raw_arg` ([#5930])
244
+ - io: enable awaiting error readiness ([#5781])
245
+
246
+ ### Unstable
247
+
248
+ - rt(alt): improve scalability of alt runtime as the number of cores grows ([#5935])
249
+
250
+ [#5925]: https://github.com/tokio-rs/tokio/pull/5925
251
+ [#5930]: https://github.com/tokio-rs/tokio/pull/5930
252
+ [#5781]: https://github.com/tokio-rs/tokio/pull/5781
253
+ [#5935]: https://github.com/tokio-rs/tokio/pull/5935
254
+
255
+ # 1.31.0 (August 10, 2023)
256
+
257
+ ### Fixed
258
+
259
+ * io: delegate `WriteHalf::poll_write_vectored` ([#5914])
260
+
261
+ ### Unstable
262
+
263
+ * rt(alt): fix memory leak in unstable next-gen scheduler prototype ([#5911])
264
+ * rt: expose mean task poll time metric ([#5927])
265
+
266
+ [#5914]: https://github.com/tokio-rs/tokio/pull/5914
267
+ [#5911]: https://github.com/tokio-rs/tokio/pull/5911
268
+ [#5927]: https://github.com/tokio-rs/tokio/pull/5927
269
+
270
+ # 1.30.0 (August 9, 2023)
271
+
272
+ This release bumps the MSRV of Tokio to 1.63. ([#5887])
273
+
274
+ ### Changed
275
+
276
+ - tokio: reduce LLVM code generation ([#5859])
277
+ - io: support `--cfg mio_unsupported_force_poll_poll` flag ([#5881])
278
+ - sync: make `const_new` methods always available ([#5885])
279
+ - sync: avoid false sharing in mpsc channel ([#5829])
280
+ - rt: pop at least one task from inject queue ([#5908])
281
+
282
+ ### Added
283
+
284
+ - sync: add `broadcast::Sender::new` ([#5824])
285
+ - net: implement `UCred` for espidf ([#5868])
286
+ - fs: add `File::options()` ([#5869])
287
+ - time: implement extra reset variants for `Interval` ([#5878])
288
+ - process: add `{ChildStd*}::into_owned_{fd, handle}` ([#5899])
289
+
290
+ ### Removed
291
+
292
+ - tokio: removed unused `tokio_*` cfgs ([#5890])
293
+ - remove build script to speed up compilation ([#5887])
294
+
295
+ ### Documented
296
+
297
+ - sync: mention lagging in docs for `broadcast::send` ([#5820])
298
+ - runtime: expand on sharing runtime docs ([#5858])
299
+ - io: use vec in example for `AsyncReadExt::read_exact` ([#5863])
300
+ - time: mark `Sleep` as `!Unpin` in docs ([#5916])
301
+ - process: fix `raw_arg` not showing up in docs ([#5865])
302
+
303
+ ### Unstable
304
+
305
+ - rt: add runtime ID ([#5864])
306
+ - rt: initial implementation of new threaded runtime ([#5823])
307
+
308
+ [#5820]: https://github.com/tokio-rs/tokio/pull/5820
309
+ [#5823]: https://github.com/tokio-rs/tokio/pull/5823
310
+ [#5824]: https://github.com/tokio-rs/tokio/pull/5824
311
+ [#5829]: https://github.com/tokio-rs/tokio/pull/5829
312
+ [#5858]: https://github.com/tokio-rs/tokio/pull/5858
313
+ [#5859]: https://github.com/tokio-rs/tokio/pull/5859
314
+ [#5863]: https://github.com/tokio-rs/tokio/pull/5863
315
+ [#5864]: https://github.com/tokio-rs/tokio/pull/5864
316
+ [#5865]: https://github.com/tokio-rs/tokio/pull/5865
317
+ [#5868]: https://github.com/tokio-rs/tokio/pull/5868
318
+ [#5869]: https://github.com/tokio-rs/tokio/pull/5869
319
+ [#5878]: https://github.com/tokio-rs/tokio/pull/5878
320
+ [#5881]: https://github.com/tokio-rs/tokio/pull/5881
321
+ [#5885]: https://github.com/tokio-rs/tokio/pull/5885
322
+ [#5887]: https://github.com/tokio-rs/tokio/pull/5887
323
+ [#5890]: https://github.com/tokio-rs/tokio/pull/5890
324
+ [#5899]: https://github.com/tokio-rs/tokio/pull/5899
325
+ [#5908]: https://github.com/tokio-rs/tokio/pull/5908
326
+ [#5916]: https://github.com/tokio-rs/tokio/pull/5916
327
+
328
+ # 1.29.1 (June 29, 2023)
329
+
330
+ ### Fixed
331
+
332
+ - rt: fix nesting two `block_in_place` with a `block_on` between ([#5837])
333
+
334
+ [#5837]: https://github.com/tokio-rs/tokio/pull/5837
335
+
336
+ # 1.29.0 (June 27, 2023)
337
+
338
+ Technically a breaking change, the `Send` implementation is removed from
339
+ `runtime::EnterGuard`. This change fixes a bug and should not impact most users.
340
+
341
+ ### Breaking
342
+
343
+ - rt: `EnterGuard` should not be `Send` ([#5766])
344
+
345
+ ### Fixed
346
+
347
+ - fs: reduce blocking ops in `fs::read_dir` ([#5653])
348
+ - rt: fix possible starvation ([#5686], [#5712])
349
+ - rt: fix stacked borrows issue in `JoinSet` ([#5693])
350
+ - rt: panic if `EnterGuard` dropped incorrect order ([#5772])
351
+ - time: do not overflow to signal value ([#5710])
352
+ - fs: wait for in-flight ops before cloning `File` ([#5803])
353
+
354
+ ### Changed
355
+
356
+ - rt: reduce time to poll tasks scheduled from outside the runtime ([#5705], [#5720])
357
+
358
+ ### Added
359
+
360
+ - net: add uds doc alias for unix sockets ([#5659])
361
+ - rt: add metric for number of tasks ([#5628])
362
+ - sync: implement more traits for channel errors ([#5666])
363
+ - net: add nodelay methods on TcpSocket ([#5672])
364
+ - sync: add `broadcast::Receiver::blocking_recv` ([#5690])
365
+ - process: add `raw_arg` method to `Command` ([#5704])
366
+ - io: support PRIORITY epoll events ([#5566])
367
+ - task: add `JoinSet::poll_join_next` ([#5721])
368
+ - net: add support for Redox OS ([#5790])
369
+
370
+
371
+ ### Unstable
372
+
373
+ - rt: add the ability to dump task backtraces ([#5608], [#5676], [#5708], [#5717])
374
+ - rt: instrument task poll times with a histogram ([#5685])
375
+
376
+ [#5766]: https://github.com/tokio-rs/tokio/pull/5766
377
+ [#5653]: https://github.com/tokio-rs/tokio/pull/5653
378
+ [#5686]: https://github.com/tokio-rs/tokio/pull/5686
379
+ [#5712]: https://github.com/tokio-rs/tokio/pull/5712
380
+ [#5693]: https://github.com/tokio-rs/tokio/pull/5693
381
+ [#5772]: https://github.com/tokio-rs/tokio/pull/5772
382
+ [#5710]: https://github.com/tokio-rs/tokio/pull/5710
383
+ [#5803]: https://github.com/tokio-rs/tokio/pull/5803
384
+ [#5705]: https://github.com/tokio-rs/tokio/pull/5705
385
+ [#5720]: https://github.com/tokio-rs/tokio/pull/5720
386
+ [#5659]: https://github.com/tokio-rs/tokio/pull/5659
387
+ [#5628]: https://github.com/tokio-rs/tokio/pull/5628
388
+ [#5666]: https://github.com/tokio-rs/tokio/pull/5666
389
+ [#5672]: https://github.com/tokio-rs/tokio/pull/5672
390
+ [#5690]: https://github.com/tokio-rs/tokio/pull/5690
391
+ [#5704]: https://github.com/tokio-rs/tokio/pull/5704
392
+ [#5566]: https://github.com/tokio-rs/tokio/pull/5566
393
+ [#5721]: https://github.com/tokio-rs/tokio/pull/5721
394
+ [#5790]: https://github.com/tokio-rs/tokio/pull/5790
395
+ [#5608]: https://github.com/tokio-rs/tokio/pull/5608
396
+ [#5676]: https://github.com/tokio-rs/tokio/pull/5676
397
+ [#5708]: https://github.com/tokio-rs/tokio/pull/5708
398
+ [#5717]: https://github.com/tokio-rs/tokio/pull/5717
399
+ [#5685]: https://github.com/tokio-rs/tokio/pull/5685
400
+
401
+ # 1.28.2 (May 28, 2023)
402
+
403
+ Forward ports 1.18.6 changes.
404
+
405
+ ### Fixed
406
+
407
+ - deps: disable default features for mio ([#5728])
408
+
409
+ [#5728]: https://github.com/tokio-rs/tokio/pull/5728
410
+
411
+ # 1.28.1 (May 10th, 2023)
412
+
413
+ This release fixes a mistake in the build script that makes `AsFd`
414
+ implementations unavailable on Rust 1.63. ([#5677])
415
+
416
+ [#5677]: https://github.com/tokio-rs/tokio/pull/5677
417
+
418
+ # 1.28.0 (April 25th, 2023)
419
+
420
+ ### Added
421
+
422
+ - io: add `AsyncFd::async_io` ([#5542])
423
+ - io: impl BufMut for ReadBuf ([#5590])
424
+ - net: add `recv_buf` for `UdpSocket` and `UnixDatagram` ([#5583])
425
+ - sync: add `OwnedSemaphorePermit::semaphore` ([#5618])
426
+ - sync: add `same_channel` to broadcast channel ([#5607])
427
+ - sync: add `watch::Receiver::wait_for` ([#5611])
428
+ - task: add `JoinSet::spawn_blocking` and `JoinSet::spawn_blocking_on` ([#5612])
429
+
430
+ ### Changed
431
+
432
+ - deps: update windows-sys to 0.48 ([#5591])
433
+ - io: make `read_to_end` not grow unnecessarily ([#5610])
434
+ - macros: make entrypoints more efficient ([#5621])
435
+ - sync: improve Debug impl for `RwLock` ([#5647])
436
+ - sync: reduce contention in `Notify` ([#5503])
437
+
438
+ ### Fixed
439
+
440
+ - net: support `get_peer_cred` on AIX ([#5065])
441
+ - sync: avoid deadlocks in `broadcast` with custom wakers ([#5578])
442
+
443
+ ### Documented
444
+
445
+ - sync: fix typo in `Semaphore::MAX_PERMITS` ([#5645])
446
+ - sync: fix typo in `tokio::sync::watch::Sender` docs ([#5587])
447
+
448
+ [#5065]: https://github.com/tokio-rs/tokio/pull/5065
449
+ [#5503]: https://github.com/tokio-rs/tokio/pull/5503
450
+ [#5542]: https://github.com/tokio-rs/tokio/pull/5542
451
+ [#5578]: https://github.com/tokio-rs/tokio/pull/5578
452
+ [#5583]: https://github.com/tokio-rs/tokio/pull/5583
453
+ [#5587]: https://github.com/tokio-rs/tokio/pull/5587
454
+ [#5590]: https://github.com/tokio-rs/tokio/pull/5590
455
+ [#5591]: https://github.com/tokio-rs/tokio/pull/5591
456
+ [#5607]: https://github.com/tokio-rs/tokio/pull/5607
457
+ [#5610]: https://github.com/tokio-rs/tokio/pull/5610
458
+ [#5611]: https://github.com/tokio-rs/tokio/pull/5611
459
+ [#5612]: https://github.com/tokio-rs/tokio/pull/5612
460
+ [#5618]: https://github.com/tokio-rs/tokio/pull/5618
461
+ [#5621]: https://github.com/tokio-rs/tokio/pull/5621
462
+ [#5645]: https://github.com/tokio-rs/tokio/pull/5645
463
+ [#5647]: https://github.com/tokio-rs/tokio/pull/5647
464
+
465
+ # 1.27.0 (March 27th, 2023)
466
+
467
+ This release bumps the MSRV of Tokio to 1.56. ([#5559])
468
+
469
+ ### Added
470
+
471
+ - io: add `async_io` helper method to sockets ([#5512])
472
+ - io: add implementations of `AsFd`/`AsHandle`/`AsSocket` ([#5514], [#5540])
473
+ - net: add `UdpSocket::peek_sender()` ([#5520])
474
+ - sync: add `RwLockWriteGuard::{downgrade_map, try_downgrade_map}` ([#5527])
475
+ - task: add `JoinHandle::abort_handle` ([#5543])
476
+
477
+ ### Changed
478
+
479
+ - io: use `memchr` from `libc` ([#5558])
480
+ - macros: accept path as crate rename in `#[tokio::main]` ([#5557])
481
+ - macros: update to syn 2.0.0 ([#5572])
482
+ - time: don't register for a wakeup when `Interval` returns `Ready` ([#5553])
483
+
484
+ ### Fixed
485
+
486
+ - fs: fuse std iterator in `ReadDir` ([#5555])
487
+ - tracing: fix `spawn_blocking` location fields ([#5573])
488
+ - time: clean up redundant check in `Wheel::poll()` ([#5574])
489
+
490
+ ### Documented
491
+
492
+ - macros: define cancellation safety ([#5525])
493
+ - io: add details to docs of `tokio::io::copy[_buf]` ([#5575])
494
+ - io: refer to `ReaderStream` and `StreamReader` in module docs ([#5576])
495
+
496
+ [#5512]: https://github.com/tokio-rs/tokio/pull/5512
497
+ [#5514]: https://github.com/tokio-rs/tokio/pull/5514
498
+ [#5520]: https://github.com/tokio-rs/tokio/pull/5520
499
+ [#5525]: https://github.com/tokio-rs/tokio/pull/5525
500
+ [#5527]: https://github.com/tokio-rs/tokio/pull/5527
501
+ [#5540]: https://github.com/tokio-rs/tokio/pull/5540
502
+ [#5543]: https://github.com/tokio-rs/tokio/pull/5543
503
+ [#5553]: https://github.com/tokio-rs/tokio/pull/5553
504
+ [#5555]: https://github.com/tokio-rs/tokio/pull/5555
505
+ [#5557]: https://github.com/tokio-rs/tokio/pull/5557
506
+ [#5558]: https://github.com/tokio-rs/tokio/pull/5558
507
+ [#5559]: https://github.com/tokio-rs/tokio/pull/5559
508
+ [#5572]: https://github.com/tokio-rs/tokio/pull/5572
509
+ [#5573]: https://github.com/tokio-rs/tokio/pull/5573
510
+ [#5574]: https://github.com/tokio-rs/tokio/pull/5574
511
+ [#5575]: https://github.com/tokio-rs/tokio/pull/5575
512
+ [#5576]: https://github.com/tokio-rs/tokio/pull/5576
513
+
514
+ # 1.26.0 (March 1st, 2023)
515
+
516
+ ### Fixed
517
+
518
+ - macros: fix empty `join!` and `try_join!` ([#5504])
519
+ - sync: don't leak tracing spans in mutex guards ([#5469])
520
+ - sync: drop wakers after unlocking the mutex in Notify ([#5471])
521
+ - sync: drop wakers outside lock in semaphore ([#5475])
522
+
523
+ ### Added
524
+
525
+ - fs: add `fs::try_exists` ([#4299])
526
+ - net: add types for named unix pipes ([#5351])
527
+ - sync: add `MappedOwnedMutexGuard` ([#5474])
528
+
529
+ ### Changed
530
+
531
+ - chore: update windows-sys to 0.45 ([#5386])
532
+ - net: use Message Read Mode for named pipes ([#5350])
533
+ - sync: mark lock guards with `#[clippy::has_significant_drop]` ([#5422])
534
+ - sync: reduce contention in watch channel ([#5464])
535
+ - time: remove cache padding in timer entries ([#5468])
536
+ - time: Improve `Instant::now()` perf with test-util ([#5513])
537
+
538
+ ### Internal Changes
539
+
540
+ - io: use `poll_fn` in `copy_bidirectional` ([#5486])
541
+ - net: refactor named pipe builders to not use bitfields ([#5477])
542
+ - rt: remove Arc from Clock ([#5434])
543
+ - sync: make `notify_waiters` calls atomic ([#5458])
544
+ - time: don't store deadline twice in sleep entries ([#5410])
545
+
546
+ ### Unstable
547
+
548
+ - metrics: add a new metric for budget exhaustion yields ([#5517])
549
+
550
+ ### Documented
551
+
552
+ - io: improve AsyncFd example ([#5481])
553
+ - runtime: document the nature of the main future ([#5494])
554
+ - runtime: remove extra period in docs ([#5511])
555
+ - signal: updated Documentation for Signals ([#5459])
556
+ - sync: add doc aliases for `blocking_*` methods ([#5448])
557
+ - sync: fix docs for Send/Sync bounds in broadcast ([#5480])
558
+ - sync: document drop behavior for channels ([#5497])
559
+ - task: clarify what happens to spawned work during runtime shutdown ([#5394])
560
+ - task: clarify `process::Command` docs ([#5413])
561
+ - task: fix wording with 'unsend' ([#5452])
562
+ - time: document immediate completion guarantee for timeouts ([#5509])
563
+ - tokio: document supported platforms ([#5483])
564
+
565
+ [#4299]: https://github.com/tokio-rs/tokio/pull/4299
566
+ [#5350]: https://github.com/tokio-rs/tokio/pull/5350
567
+ [#5351]: https://github.com/tokio-rs/tokio/pull/5351
568
+ [#5386]: https://github.com/tokio-rs/tokio/pull/5386
569
+ [#5394]: https://github.com/tokio-rs/tokio/pull/5394
570
+ [#5410]: https://github.com/tokio-rs/tokio/pull/5410
571
+ [#5413]: https://github.com/tokio-rs/tokio/pull/5413
572
+ [#5422]: https://github.com/tokio-rs/tokio/pull/5422
573
+ [#5434]: https://github.com/tokio-rs/tokio/pull/5434
574
+ [#5448]: https://github.com/tokio-rs/tokio/pull/5448
575
+ [#5452]: https://github.com/tokio-rs/tokio/pull/5452
576
+ [#5458]: https://github.com/tokio-rs/tokio/pull/5458
577
+ [#5459]: https://github.com/tokio-rs/tokio/pull/5459
578
+ [#5464]: https://github.com/tokio-rs/tokio/pull/5464
579
+ [#5468]: https://github.com/tokio-rs/tokio/pull/5468
580
+ [#5469]: https://github.com/tokio-rs/tokio/pull/5469
581
+ [#5471]: https://github.com/tokio-rs/tokio/pull/5471
582
+ [#5474]: https://github.com/tokio-rs/tokio/pull/5474
583
+ [#5475]: https://github.com/tokio-rs/tokio/pull/5475
584
+ [#5477]: https://github.com/tokio-rs/tokio/pull/5477
585
+ [#5480]: https://github.com/tokio-rs/tokio/pull/5480
586
+ [#5481]: https://github.com/tokio-rs/tokio/pull/5481
587
+ [#5483]: https://github.com/tokio-rs/tokio/pull/5483
588
+ [#5486]: https://github.com/tokio-rs/tokio/pull/5486
589
+ [#5494]: https://github.com/tokio-rs/tokio/pull/5494
590
+ [#5497]: https://github.com/tokio-rs/tokio/pull/5497
591
+ [#5504]: https://github.com/tokio-rs/tokio/pull/5504
592
+ [#5509]: https://github.com/tokio-rs/tokio/pull/5509
593
+ [#5511]: https://github.com/tokio-rs/tokio/pull/5511
594
+ [#5513]: https://github.com/tokio-rs/tokio/pull/5513
595
+ [#5517]: https://github.com/tokio-rs/tokio/pull/5517
596
+
597
+ # 1.25.3 (December 17th, 2023)
598
+
599
+ ### Fixed
600
+ - io: add budgeting to `tokio::runtime::io::registration::async_io` ([#6221])
601
+
602
+ [#6221]: https://github.com/tokio-rs/tokio/pull/6221
603
+
604
+ # 1.25.2 (September 22, 2023)
605
+
606
+ Forward ports 1.20.6 changes.
607
+
608
+ ### Changed
609
+
610
+ - io: use `memchr` from `libc` ([#5960])
611
+
612
+ [#5960]: https://github.com/tokio-rs/tokio/pull/5960
613
+
614
+ # 1.25.1 (May 28, 2023)
615
+
616
+ Forward ports 1.18.6 changes.
617
+
618
+ ### Fixed
619
+
620
+ - deps: disable default features for mio ([#5728])
621
+
622
+ [#5728]: https://github.com/tokio-rs/tokio/pull/5728
623
+
624
+ # 1.25.0 (January 28, 2023)
625
+
626
+ ### Fixed
627
+
628
+ - rt: fix runtime metrics reporting ([#5330])
629
+
630
+ ### Added
631
+
632
+ - sync: add `broadcast::Sender::len` ([#5343])
633
+
634
+ ### Changed
635
+
636
+ - fs: increase maximum read buffer size to 2MiB ([#5397])
637
+
638
+ [#5330]: https://github.com/tokio-rs/tokio/pull/5330
639
+ [#5343]: https://github.com/tokio-rs/tokio/pull/5343
640
+ [#5397]: https://github.com/tokio-rs/tokio/pull/5397
641
+
642
+ # 1.24.2 (January 17, 2023)
643
+
644
+ Forward ports 1.18.5 changes.
645
+
646
+ ### Fixed
647
+
648
+ - io: fix unsoundness in `ReadHalf::unsplit` ([#5375])
649
+
650
+ [#5375]: https://github.com/tokio-rs/tokio/pull/5375
651
+
652
+ # 1.24.1 (January 6, 2022)
653
+
654
+ This release fixes a compilation failure on targets without `AtomicU64` when using rustc older than 1.63. ([#5356])
655
+
656
+ [#5356]: https://github.com/tokio-rs/tokio/pull/5356
657
+
658
+ # 1.24.0 (January 5, 2022)
659
+
660
+ ### Fixed
661
+ - rt: improve native `AtomicU64` support detection ([#5284])
662
+
663
+ ### Added
664
+ - rt: add configuration option for max number of I/O events polled from the OS
665
+ per tick ([#5186])
666
+ - rt: add an environment variable for configuring the default number of worker
667
+ threads per runtime instance ([#4250])
668
+
669
+ ### Changed
670
+ - sync: reduce MPSC channel stack usage ([#5294])
671
+ - io: reduce lock contention in I/O operations ([#5300])
672
+ - fs: speed up `read_dir()` by chunking operations ([#5309])
673
+ - rt: use internal `ThreadId` implementation ([#5329])
674
+ - test: don't auto-advance time when a `spawn_blocking` task is running ([#5115])
675
+
676
+ [#5186]: https://github.com/tokio-rs/tokio/pull/5186
677
+ [#5294]: https://github.com/tokio-rs/tokio/pull/5294
678
+ [#5284]: https://github.com/tokio-rs/tokio/pull/5284
679
+ [#4250]: https://github.com/tokio-rs/tokio/pull/4250
680
+ [#5300]: https://github.com/tokio-rs/tokio/pull/5300
681
+ [#5329]: https://github.com/tokio-rs/tokio/pull/5329
682
+ [#5115]: https://github.com/tokio-rs/tokio/pull/5115
683
+ [#5309]: https://github.com/tokio-rs/tokio/pull/5309
684
+
685
+ # 1.23.1 (January 4, 2022)
686
+
687
+ This release forward ports changes from 1.18.4.
688
+
689
+ ### Fixed
690
+
691
+ - net: fix Windows named pipe server builder to maintain option when toggling
692
+ pipe mode ([#5336]).
693
+
694
+ [#5336]: https://github.com/tokio-rs/tokio/pull/5336
695
+
696
+ # 1.23.0 (December 5, 2022)
697
+
698
+ ### Fixed
699
+
700
+ - net: fix Windows named pipe connect ([#5208])
701
+ - io: support vectored writes for `ChildStdin` ([#5216])
702
+ - io: fix `async fn ready()` false positive for OS-specific events ([#5231])
703
+
704
+ ### Changed
705
+ - runtime: `yield_now` defers task until after driver poll ([#5223])
706
+ - runtime: reduce amount of codegen needed per spawned task ([#5213])
707
+ - windows: replace `winapi` dependency with `windows-sys` ([#5204])
708
+
709
+ [#5208]: https://github.com/tokio-rs/tokio/pull/5208
710
+ [#5216]: https://github.com/tokio-rs/tokio/pull/5216
711
+ [#5213]: https://github.com/tokio-rs/tokio/pull/5213
712
+ [#5204]: https://github.com/tokio-rs/tokio/pull/5204
713
+ [#5223]: https://github.com/tokio-rs/tokio/pull/5223
714
+ [#5231]: https://github.com/tokio-rs/tokio/pull/5231
715
+
716
+ # 1.22.0 (November 17, 2022)
717
+
718
+ ### Added
719
+ - runtime: add `Handle::runtime_flavor` ([#5138])
720
+ - sync: add `Mutex::blocking_lock_owned` ([#5130])
721
+ - sync: add `Semaphore::MAX_PERMITS` ([#5144])
722
+ - sync: add `merge()` to semaphore permits ([#4948])
723
+ - sync: add `mpsc::WeakUnboundedSender` ([#5189])
724
+
725
+ ### Added (unstable)
726
+
727
+ - process: add `Command::process_group` ([#5114])
728
+ - runtime: export metrics about the blocking thread pool ([#5161])
729
+ - task: add `task::id()` and `task::try_id()` ([#5171])
730
+
731
+ ### Fixed
732
+ - macros: don't take ownership of futures in macros ([#5087])
733
+ - runtime: fix Stacked Borrows violation in `LocalOwnedTasks` ([#5099])
734
+ - runtime: mitigate ABA with 32-bit queue indices when possible ([#5042])
735
+ - task: wake local tasks to the local queue when woken by the same thread ([#5095])
736
+ - time: panic in release mode when `mark_pending` called illegally ([#5093])
737
+ - runtime: fix typo in expect message ([#5169])
738
+ - runtime: fix `unsync_load` on atomic types ([#5175])
739
+ - task: elaborate safety comments in task deallocation ([#5172])
740
+ - runtime: fix `LocalSet` drop in thread local ([#5179])
741
+ - net: remove libc type leakage in a public API ([#5191])
742
+ - runtime: update the alignment of `CachePadded` ([#5106])
743
+
744
+ ### Changed
745
+ - io: make `tokio::io::copy` continue filling the buffer when writer stalls ([#5066])
746
+ - runtime: remove `coop::budget` from `LocalSet::run_until` ([#5155])
747
+ - sync: make `Notify` panic safe ([#5154])
748
+
749
+ ### Documented
750
+ - io: fix doc for `write_i8` to use signed integers ([#5040])
751
+ - net: fix doc typos for TCP and UDP `set_tos` methods ([#5073])
752
+ - net: fix function name in `UdpSocket::recv` documentation ([#5150])
753
+ - sync: typo in `TryLockError` for `RwLock::try_write` ([#5160])
754
+ - task: document that spawned tasks execute immediately ([#5117])
755
+ - time: document return type of `timeout` ([#5118])
756
+ - time: document that `timeout` checks only before poll ([#5126])
757
+ - sync: specify return type of `oneshot::Receiver` in docs ([#5198])
758
+
759
+ ### Internal changes
760
+ - runtime: use const `Mutex::new` for globals ([#5061])
761
+ - runtime: remove `Option` around `mio::Events` in io driver ([#5078])
762
+ - runtime: remove a conditional compilation clause ([#5104])
763
+ - runtime: remove a reference to internal time handle ([#5107])
764
+ - runtime: misc time driver cleanup ([#5120])
765
+ - runtime: move signal driver to runtime module ([#5121])
766
+ - runtime: signal driver now uses I/O driver directly ([#5125])
767
+ - runtime: start decoupling I/O driver and I/O handle ([#5127])
768
+ - runtime: switch `io::handle` refs with scheduler:Handle ([#5128])
769
+ - runtime: remove Arc from I/O driver ([#5134])
770
+ - runtime: use signal driver handle via `scheduler::Handle` ([#5135])
771
+ - runtime: move internal clock fns out of context ([#5139])
772
+ - runtime: remove `runtime::context` module ([#5140])
773
+ - runtime: keep driver cfgs in `driver.rs` ([#5141])
774
+ - runtime: add `runtime::context` to unify thread-locals ([#5143])
775
+ - runtime: rename some confusing internal variables/fns ([#5151])
776
+ - runtime: move `coop` mod into `runtime` ([#5152])
777
+ - runtime: move budget state to context thread-local ([#5157])
778
+ - runtime: move park logic into runtime module ([#5158])
779
+ - runtime: move `Runtime` into its own file ([#5159])
780
+ - runtime: unify entering a runtime with `Handle::enter` ([#5163])
781
+ - runtime: remove handle reference from each scheduler ([#5166])
782
+ - runtime: move `enter` into `context` ([#5167])
783
+ - runtime: combine context and entered thread-locals ([#5168])
784
+ - runtime: fix accidental unsetting of current handle ([#5178])
785
+ - runtime: move `CoreStage` methods to `Core` ([#5182])
786
+ - sync: name mpsc semaphore types ([#5146])
787
+
788
+ [#4948]: https://github.com/tokio-rs/tokio/pull/4948
789
+ [#5040]: https://github.com/tokio-rs/tokio/pull/5040
790
+ [#5042]: https://github.com/tokio-rs/tokio/pull/5042
791
+ [#5061]: https://github.com/tokio-rs/tokio/pull/5061
792
+ [#5066]: https://github.com/tokio-rs/tokio/pull/5066
793
+ [#5073]: https://github.com/tokio-rs/tokio/pull/5073
794
+ [#5078]: https://github.com/tokio-rs/tokio/pull/5078
795
+ [#5087]: https://github.com/tokio-rs/tokio/pull/5087
796
+ [#5093]: https://github.com/tokio-rs/tokio/pull/5093
797
+ [#5095]: https://github.com/tokio-rs/tokio/pull/5095
798
+ [#5099]: https://github.com/tokio-rs/tokio/pull/5099
799
+ [#5104]: https://github.com/tokio-rs/tokio/pull/5104
800
+ [#5106]: https://github.com/tokio-rs/tokio/pull/5106
801
+ [#5107]: https://github.com/tokio-rs/tokio/pull/5107
802
+ [#5114]: https://github.com/tokio-rs/tokio/pull/5114
803
+ [#5117]: https://github.com/tokio-rs/tokio/pull/5117
804
+ [#5118]: https://github.com/tokio-rs/tokio/pull/5118
805
+ [#5120]: https://github.com/tokio-rs/tokio/pull/5120
806
+ [#5121]: https://github.com/tokio-rs/tokio/pull/5121
807
+ [#5125]: https://github.com/tokio-rs/tokio/pull/5125
808
+ [#5126]: https://github.com/tokio-rs/tokio/pull/5126
809
+ [#5127]: https://github.com/tokio-rs/tokio/pull/5127
810
+ [#5128]: https://github.com/tokio-rs/tokio/pull/5128
811
+ [#5130]: https://github.com/tokio-rs/tokio/pull/5130
812
+ [#5134]: https://github.com/tokio-rs/tokio/pull/5134
813
+ [#5135]: https://github.com/tokio-rs/tokio/pull/5135
814
+ [#5138]: https://github.com/tokio-rs/tokio/pull/5138
815
+ [#5138]: https://github.com/tokio-rs/tokio/pull/5138
816
+ [#5139]: https://github.com/tokio-rs/tokio/pull/5139
817
+ [#5140]: https://github.com/tokio-rs/tokio/pull/5140
818
+ [#5141]: https://github.com/tokio-rs/tokio/pull/5141
819
+ [#5143]: https://github.com/tokio-rs/tokio/pull/5143
820
+ [#5144]: https://github.com/tokio-rs/tokio/pull/5144
821
+ [#5144]: https://github.com/tokio-rs/tokio/pull/5144
822
+ [#5146]: https://github.com/tokio-rs/tokio/pull/5146
823
+ [#5150]: https://github.com/tokio-rs/tokio/pull/5150
824
+ [#5151]: https://github.com/tokio-rs/tokio/pull/5151
825
+ [#5152]: https://github.com/tokio-rs/tokio/pull/5152
826
+ [#5154]: https://github.com/tokio-rs/tokio/pull/5154
827
+ [#5155]: https://github.com/tokio-rs/tokio/pull/5155
828
+ [#5157]: https://github.com/tokio-rs/tokio/pull/5157
829
+ [#5158]: https://github.com/tokio-rs/tokio/pull/5158
830
+ [#5159]: https://github.com/tokio-rs/tokio/pull/5159
831
+ [#5160]: https://github.com/tokio-rs/tokio/pull/5160
832
+ [#5161]: https://github.com/tokio-rs/tokio/pull/5161
833
+ [#5163]: https://github.com/tokio-rs/tokio/pull/5163
834
+ [#5166]: https://github.com/tokio-rs/tokio/pull/5166
835
+ [#5167]: https://github.com/tokio-rs/tokio/pull/5167
836
+ [#5168]: https://github.com/tokio-rs/tokio/pull/5168
837
+ [#5169]: https://github.com/tokio-rs/tokio/pull/5169
838
+ [#5171]: https://github.com/tokio-rs/tokio/pull/5171
839
+ [#5172]: https://github.com/tokio-rs/tokio/pull/5172
840
+ [#5175]: https://github.com/tokio-rs/tokio/pull/5175
841
+ [#5178]: https://github.com/tokio-rs/tokio/pull/5178
842
+ [#5179]: https://github.com/tokio-rs/tokio/pull/5179
843
+ [#5182]: https://github.com/tokio-rs/tokio/pull/5182
844
+ [#5189]: https://github.com/tokio-rs/tokio/pull/5189
845
+ [#5191]: https://github.com/tokio-rs/tokio/pull/5191
846
+ [#5198]: https://github.com/tokio-rs/tokio/pull/5198
847
+
848
+ # 1.21.2 (September 27, 2022)
849
+
850
+ This release removes the dependency on the `once_cell` crate to restore the MSRV
851
+ of 1.21.x, which is the latest minor version at the time of release. ([#5048])
852
+
853
+ [#5048]: https://github.com/tokio-rs/tokio/pull/5048
854
+
855
+ # 1.21.1 (September 13, 2022)
856
+
857
+ ### Fixed
858
+
859
+ - net: fix dependency resolution for socket2 ([#5000])
860
+ - task: ignore failure to set TLS in `LocalSet` Drop ([#4976])
861
+
862
+ [#4976]: https://github.com/tokio-rs/tokio/pull/4976
863
+ [#5000]: https://github.com/tokio-rs/tokio/pull/5000
864
+
865
+ # 1.21.0 (September 2, 2022)
866
+
867
+ This release is the first release of Tokio to intentionally support WASM. The
868
+ `sync,macros,io-util,rt,time` features are stabilized on WASM. Additionally the
869
+ wasm32-wasi target is given unstable support for the `net` feature.
870
+
871
+ ### Added
872
+
873
+ - net: add `device` and `bind_device` methods to TCP/UDP sockets ([#4882])
874
+ - net: add `tos` and `set_tos` methods to TCP and UDP sockets ([#4877])
875
+ - net: add security flags to named pipe `ServerOptions` ([#4845])
876
+ - signal: add more windows signal handlers ([#4924])
877
+ - sync: add `mpsc::Sender::max_capacity` method ([#4904])
878
+ - sync: implement Weak version of `mpsc::Sender` ([#4595])
879
+ - task: add `LocalSet::enter` ([#4765])
880
+ - task: stabilize `JoinSet` and `AbortHandle` ([#4920])
881
+ - tokio: add `track_caller` to public APIs ([#4805], [#4848], [#4852])
882
+ - wasm: initial support for `wasm32-wasi` target ([#4716])
883
+
884
+ ### Fixed
885
+
886
+ - miri: improve miri compatibility by avoiding temporary references in `linked_list::Link` impls ([#4841])
887
+ - signal: don't register write interest on signal pipe ([#4898])
888
+ - sync: add `#[must_use]` to lock guards ([#4886])
889
+ - sync: fix hang when calling `recv` on closed and reopened broadcast channel ([#4867])
890
+ - task: propagate attributes on task-locals ([#4837])
891
+
892
+ ### Changed
893
+
894
+ - fs: change panic to error in `File::start_seek` ([#4897])
895
+ - io: reduce syscalls in `poll_read` ([#4840])
896
+ - process: use blocking threadpool for child stdio I/O ([#4824])
897
+ - signal: make `SignalKind` methods const ([#4956])
898
+
899
+ ### Internal changes
900
+
901
+ - rt: extract `basic_scheduler::Config` ([#4935])
902
+ - rt: move I/O driver into `runtime` module ([#4942])
903
+ - rt: rename internal scheduler types ([#4945])
904
+
905
+ ### Documented
906
+
907
+ - chore: fix typos and grammar ([#4858], [#4894], [#4928])
908
+ - io: fix typo in `AsyncSeekExt::rewind` docs ([#4893])
909
+ - net: add documentation to `try_read()` for zero-length buffers ([#4937])
910
+ - runtime: remove incorrect panic section for `Builder::worker_threads` ([#4849])
911
+ - sync: doc of `watch::Sender::send` improved ([#4959])
912
+ - task: add cancel safety docs to `JoinHandle` ([#4901])
913
+ - task: expand on cancellation of `spawn_blocking` ([#4811])
914
+ - time: clarify that the first tick of `Interval::tick` happens immediately ([#4951])
915
+
916
+ ### Unstable
917
+
918
+ - rt: add unstable option to disable the LIFO slot ([#4936])
919
+ - task: fix incorrect signature in `Builder::spawn_on` ([#4953])
920
+ - task: make `task::Builder::spawn*` methods fallible ([#4823])
921
+
922
+ [#4595]: https://github.com/tokio-rs/tokio/pull/4595
923
+ [#4716]: https://github.com/tokio-rs/tokio/pull/4716
924
+ [#4765]: https://github.com/tokio-rs/tokio/pull/4765
925
+ [#4805]: https://github.com/tokio-rs/tokio/pull/4805
926
+ [#4811]: https://github.com/tokio-rs/tokio/pull/4811
927
+ [#4823]: https://github.com/tokio-rs/tokio/pull/4823
928
+ [#4824]: https://github.com/tokio-rs/tokio/pull/4824
929
+ [#4837]: https://github.com/tokio-rs/tokio/pull/4837
930
+ [#4840]: https://github.com/tokio-rs/tokio/pull/4840
931
+ [#4841]: https://github.com/tokio-rs/tokio/pull/4841
932
+ [#4845]: https://github.com/tokio-rs/tokio/pull/4845
933
+ [#4848]: https://github.com/tokio-rs/tokio/pull/4848
934
+ [#4849]: https://github.com/tokio-rs/tokio/pull/4849
935
+ [#4852]: https://github.com/tokio-rs/tokio/pull/4852
936
+ [#4858]: https://github.com/tokio-rs/tokio/pull/4858
937
+ [#4867]: https://github.com/tokio-rs/tokio/pull/4867
938
+ [#4877]: https://github.com/tokio-rs/tokio/pull/4877
939
+ [#4882]: https://github.com/tokio-rs/tokio/pull/4882
940
+ [#4886]: https://github.com/tokio-rs/tokio/pull/4886
941
+ [#4893]: https://github.com/tokio-rs/tokio/pull/4893
942
+ [#4894]: https://github.com/tokio-rs/tokio/pull/4894
943
+ [#4897]: https://github.com/tokio-rs/tokio/pull/4897
944
+ [#4898]: https://github.com/tokio-rs/tokio/pull/4898
945
+ [#4901]: https://github.com/tokio-rs/tokio/pull/4901
946
+ [#4904]: https://github.com/tokio-rs/tokio/pull/4904
947
+ [#4920]: https://github.com/tokio-rs/tokio/pull/4920
948
+ [#4924]: https://github.com/tokio-rs/tokio/pull/4924
949
+ [#4928]: https://github.com/tokio-rs/tokio/pull/4928
950
+ [#4935]: https://github.com/tokio-rs/tokio/pull/4935
951
+ [#4936]: https://github.com/tokio-rs/tokio/pull/4936
952
+ [#4937]: https://github.com/tokio-rs/tokio/pull/4937
953
+ [#4942]: https://github.com/tokio-rs/tokio/pull/4942
954
+ [#4945]: https://github.com/tokio-rs/tokio/pull/4945
955
+ [#4951]: https://github.com/tokio-rs/tokio/pull/4951
956
+ [#4953]: https://github.com/tokio-rs/tokio/pull/4953
957
+ [#4956]: https://github.com/tokio-rs/tokio/pull/4956
958
+ [#4959]: https://github.com/tokio-rs/tokio/pull/4959
959
+
960
+ # 1.20.6 (September 22, 2023)
961
+
962
+ This is a backport of a change from 1.27.0.
963
+
964
+ ### Changed
965
+
966
+ - io: use `memchr` from `libc` ([#5960])
967
+
968
+ [#5960]: https://github.com/tokio-rs/tokio/pull/5960
969
+
970
+ # 1.20.5 (May 28, 2023)
971
+
972
+ Forward ports 1.18.6 changes.
973
+
974
+ ### Fixed
975
+
976
+ - deps: disable default features for mio ([#5728])
977
+
978
+ [#5728]: https://github.com/tokio-rs/tokio/pull/5728
979
+
980
+ # 1.20.4 (January 17, 2023)
981
+
982
+ Forward ports 1.18.5 changes.
983
+
984
+ ### Fixed
985
+
986
+ - io: fix unsoundness in `ReadHalf::unsplit` ([#5375])
987
+
988
+ [#5375]: https://github.com/tokio-rs/tokio/pull/5375
989
+
990
+ # 1.20.3 (January 3, 2022)
991
+
992
+ This release forward ports changes from 1.18.4.
993
+
994
+ ### Fixed
995
+
996
+ - net: fix Windows named pipe server builder to maintain option when toggling
997
+ pipe mode ([#5336]).
998
+
999
+ [#5336]: https://github.com/tokio-rs/tokio/pull/5336
1000
+
1001
+ # 1.20.2 (September 27, 2022)
1002
+
1003
+ This release removes the dependency on the `once_cell` crate to restore the MSRV
1004
+ of the 1.20.x LTS release. ([#5048])
1005
+
1006
+ [#5048]: https://github.com/tokio-rs/tokio/pull/5048
1007
+
1008
+ # 1.20.1 (July 25, 2022)
1009
+
1010
+ ### Fixed
1011
+
1012
+ - chore: fix version detection in build script ([#4860])
1013
+
1014
+ [#4860]: https://github.com/tokio-rs/tokio/pull/4860
1015
+
1016
+ # 1.20.0 (July 12, 2022)
1017
+
1018
+ ### Added
1019
+ - tokio: add `track_caller` to public APIs ([#4772], [#4791], [#4793], [#4806], [#4808])
1020
+ - sync: Add `has_changed` method to `watch::Ref` ([#4758])
1021
+
1022
+ ### Changed
1023
+
1024
+ - time: remove `src/time/driver/wheel/stack.rs` ([#4766])
1025
+ - rt: clean up arguments passed to basic scheduler ([#4767])
1026
+ - net: be more specific about winapi features ([#4764])
1027
+ - tokio: use const initialized thread locals where possible ([#4677])
1028
+ - task: various small improvements to LocalKey ([#4795])
1029
+
1030
+ ### Documented
1031
+
1032
+ - fs: warn about performance pitfall ([#4762])
1033
+ - chore: fix spelling ([#4769])
1034
+ - sync: document spurious failures in oneshot ([#4777])
1035
+ - sync: add warning for watch in non-Send futures ([#4741])
1036
+ - chore: fix typo ([#4798])
1037
+
1038
+ ### Unstable
1039
+
1040
+ - joinset: rename `join_one` to `join_next` ([#4755])
1041
+ - rt: unhandled panic config for current thread rt ([#4770])
1042
+
1043
+ [#4677]: https://github.com/tokio-rs/tokio/pull/4677
1044
+ [#4741]: https://github.com/tokio-rs/tokio/pull/4741
1045
+ [#4755]: https://github.com/tokio-rs/tokio/pull/4755
1046
+ [#4758]: https://github.com/tokio-rs/tokio/pull/4758
1047
+ [#4762]: https://github.com/tokio-rs/tokio/pull/4762
1048
+ [#4764]: https://github.com/tokio-rs/tokio/pull/4764
1049
+ [#4766]: https://github.com/tokio-rs/tokio/pull/4766
1050
+ [#4767]: https://github.com/tokio-rs/tokio/pull/4767
1051
+ [#4769]: https://github.com/tokio-rs/tokio/pull/4769
1052
+ [#4770]: https://github.com/tokio-rs/tokio/pull/4770
1053
+ [#4772]: https://github.com/tokio-rs/tokio/pull/4772
1054
+ [#4777]: https://github.com/tokio-rs/tokio/pull/4777
1055
+ [#4791]: https://github.com/tokio-rs/tokio/pull/4791
1056
+ [#4793]: https://github.com/tokio-rs/tokio/pull/4793
1057
+ [#4795]: https://github.com/tokio-rs/tokio/pull/4795
1058
+ [#4798]: https://github.com/tokio-rs/tokio/pull/4798
1059
+ [#4806]: https://github.com/tokio-rs/tokio/pull/4806
1060
+ [#4808]: https://github.com/tokio-rs/tokio/pull/4808
1061
+
1062
+ # 1.19.2 (June 6, 2022)
1063
+
1064
+ This release fixes another bug in `Notified::enable`. ([#4751])
1065
+
1066
+ [#4751]: https://github.com/tokio-rs/tokio/pull/4751
1067
+
1068
+ # 1.19.1 (June 5, 2022)
1069
+
1070
+ This release fixes a bug in `Notified::enable`. ([#4747])
1071
+
1072
+ [#4747]: https://github.com/tokio-rs/tokio/pull/4747
1073
+
1074
+ # 1.19.0 (June 3, 2022)
1075
+
1076
+ ### Added
1077
+
1078
+ - runtime: add `is_finished` method for `JoinHandle` and `AbortHandle` ([#4709])
1079
+ - runtime: make global queue and event polling intervals configurable ([#4671])
1080
+ - sync: add `Notified::enable` ([#4705])
1081
+ - sync: add `watch::Sender::send_if_modified` ([#4591])
1082
+ - sync: add resubscribe method to broadcast::Receiver ([#4607])
1083
+ - net: add `take_error` to `TcpSocket` and `TcpStream` ([#4739])
1084
+
1085
+ ### Changed
1086
+
1087
+ - io: refactor out usage of Weak in the io handle ([#4656])
1088
+
1089
+ ### Fixed
1090
+
1091
+ - macros: avoid starvation in `join!` and `try_join!` ([#4624])
1092
+
1093
+ ### Documented
1094
+
1095
+ - runtime: clarify semantics of tasks outliving `block_on` ([#4729])
1096
+ - time: fix example for `MissedTickBehavior::Burst` ([#4713])
1097
+
1098
+ ### Unstable
1099
+
1100
+ - metrics: correctly update atomics in `IoDriverMetrics` ([#4725])
1101
+ - metrics: fix compilation with unstable, process, and rt, but without net ([#4682])
1102
+ - task: add `#[track_caller]` to `JoinSet`/`JoinMap` ([#4697])
1103
+ - task: add `Builder::{spawn_on, spawn_local_on, spawn_blocking_on}` ([#4683])
1104
+ - task: add `consume_budget` for cooperative scheduling ([#4498])
1105
+ - task: add `join_set::Builder` for configuring `JoinSet` tasks ([#4687])
1106
+ - task: update return value of `JoinSet::join_one` ([#4726])
1107
+
1108
+ [#4498]: https://github.com/tokio-rs/tokio/pull/4498
1109
+ [#4591]: https://github.com/tokio-rs/tokio/pull/4591
1110
+ [#4607]: https://github.com/tokio-rs/tokio/pull/4607
1111
+ [#4624]: https://github.com/tokio-rs/tokio/pull/4624
1112
+ [#4656]: https://github.com/tokio-rs/tokio/pull/4656
1113
+ [#4671]: https://github.com/tokio-rs/tokio/pull/4671
1114
+ [#4682]: https://github.com/tokio-rs/tokio/pull/4682
1115
+ [#4683]: https://github.com/tokio-rs/tokio/pull/4683
1116
+ [#4687]: https://github.com/tokio-rs/tokio/pull/4687
1117
+ [#4697]: https://github.com/tokio-rs/tokio/pull/4697
1118
+ [#4705]: https://github.com/tokio-rs/tokio/pull/4705
1119
+ [#4709]: https://github.com/tokio-rs/tokio/pull/4709
1120
+ [#4713]: https://github.com/tokio-rs/tokio/pull/4713
1121
+ [#4725]: https://github.com/tokio-rs/tokio/pull/4725
1122
+ [#4726]: https://github.com/tokio-rs/tokio/pull/4726
1123
+ [#4729]: https://github.com/tokio-rs/tokio/pull/4729
1124
+ [#4739]: https://github.com/tokio-rs/tokio/pull/4739
1125
+
1126
+ # 1.18.6 (May 28, 2023)
1127
+
1128
+ ### Fixed
1129
+
1130
+ - deps: disable default features for mio ([#5728])
1131
+
1132
+ [#5728]: https://github.com/tokio-rs/tokio/pull/5728
1133
+
1134
+ # 1.18.5 (January 17, 2023)
1135
+
1136
+ ### Fixed
1137
+
1138
+ - io: fix unsoundness in `ReadHalf::unsplit` ([#5375])
1139
+
1140
+ [#5375]: https://github.com/tokio-rs/tokio/pull/5375
1141
+
1142
+ # 1.18.4 (January 3, 2022)
1143
+
1144
+ ### Fixed
1145
+
1146
+ - net: fix Windows named pipe server builder to maintain option when toggling
1147
+ pipe mode ([#5336]).
1148
+
1149
+ [#5336]: https://github.com/tokio-rs/tokio/pull/5336
1150
+
1151
+ # 1.18.3 (September 27, 2022)
1152
+
1153
+ This release removes the dependency on the `once_cell` crate to restore the MSRV
1154
+ of the 1.18.x LTS release. ([#5048])
1155
+
1156
+ [#5048]: https://github.com/tokio-rs/tokio/pull/5048
1157
+
1158
+ # 1.18.2 (May 5, 2022)
1159
+
1160
+ Add missing features for the `winapi` dependency. ([#4663])
1161
+
1162
+ [#4663]: https://github.com/tokio-rs/tokio/pull/4663
1163
+
1164
+ # 1.18.1 (May 2, 2022)
1165
+
1166
+ The 1.18.0 release broke the build for targets without 64-bit atomics when
1167
+ building with `tokio_unstable`. This release fixes that. ([#4649])
1168
+
1169
+ [#4649]: https://github.com/tokio-rs/tokio/pull/4649
1170
+
1171
+ # 1.18.0 (April 27, 2022)
1172
+
1173
+ This release adds a number of new APIs in `tokio::net`, `tokio::signal`, and
1174
+ `tokio::sync`. In addition, it adds new unstable APIs to `tokio::task` (`Id`s
1175
+ for uniquely identifying a task, and `AbortHandle` for remotely cancelling a
1176
+ task), as well as a number of bugfixes.
1177
+
1178
+ ### Fixed
1179
+
1180
+ - blocking: add missing `#[track_caller]` for `spawn_blocking` ([#4616])
1181
+ - macros: fix `select` macro to process 64 branches ([#4519])
1182
+ - net: fix `try_io` methods not calling Mio's `try_io` internally ([#4582])
1183
+ - runtime: recover when OS fails to spawn a new thread ([#4485])
1184
+
1185
+ ### Added
1186
+
1187
+ - net: add `UdpSocket::peer_addr` ([#4611])
1188
+ - net: add `try_read_buf` method for named pipes ([#4626])
1189
+ - signal: add `SignalKind` `Hash`/`Eq` impls and `c_int` conversion ([#4540])
1190
+ - signal: add support for signals up to `SIGRTMAX` ([#4555])
1191
+ - sync: add `watch::Sender::send_modify` method ([#4310])
1192
+ - sync: add `broadcast::Receiver::len` method ([#4542])
1193
+ - sync: add `watch::Receiver::same_channel` method ([#4581])
1194
+ - sync: implement `Clone` for `RecvError` types ([#4560])
1195
+
1196
+ ### Changed
1197
+
1198
+ - update `mio` to 0.8.1 ([#4582])
1199
+ - macros: rename `tokio::select!`'s internal `util` module ([#4543])
1200
+ - runtime: use `Vec::with_capacity` when building runtime ([#4553])
1201
+
1202
+ ### Documented
1203
+
1204
+ - improve docs for `tokio_unstable` ([#4524])
1205
+ - runtime: include more documentation for thread_pool/worker ([#4511])
1206
+ - runtime: update `Handle::current`'s docs to mention `EnterGuard` ([#4567])
1207
+ - time: clarify platform specific timer resolution ([#4474])
1208
+ - signal: document that `Signal::recv` is cancel-safe ([#4634])
1209
+ - sync: `UnboundedReceiver` close docs ([#4548])
1210
+
1211
+ ### Unstable
1212
+
1213
+ The following changes only apply when building with `--cfg tokio_unstable`:
1214
+
1215
+ - task: add `task::Id` type ([#4630])
1216
+ - task: add `AbortHandle` type for cancelling tasks in a `JoinSet` ([#4530],
1217
+ [#4640])
1218
+ - task: fix missing `doc(cfg(...))` attributes for `JoinSet` ([#4531])
1219
+ - task: fix broken link in `AbortHandle` RustDoc ([#4545])
1220
+ - metrics: add initial IO driver metrics ([#4507])
1221
+
1222
+
1223
+ [#4616]: https://github.com/tokio-rs/tokio/pull/4616
1224
+ [#4519]: https://github.com/tokio-rs/tokio/pull/4519
1225
+ [#4582]: https://github.com/tokio-rs/tokio/pull/4582
1226
+ [#4485]: https://github.com/tokio-rs/tokio/pull/4485
1227
+ [#4613]: https://github.com/tokio-rs/tokio/pull/4613
1228
+ [#4611]: https://github.com/tokio-rs/tokio/pull/4611
1229
+ [#4626]: https://github.com/tokio-rs/tokio/pull/4626
1230
+ [#4540]: https://github.com/tokio-rs/tokio/pull/4540
1231
+ [#4555]: https://github.com/tokio-rs/tokio/pull/4555
1232
+ [#4310]: https://github.com/tokio-rs/tokio/pull/4310
1233
+ [#4542]: https://github.com/tokio-rs/tokio/pull/4542
1234
+ [#4581]: https://github.com/tokio-rs/tokio/pull/4581
1235
+ [#4560]: https://github.com/tokio-rs/tokio/pull/4560
1236
+ [#4631]: https://github.com/tokio-rs/tokio/pull/4631
1237
+ [#4582]: https://github.com/tokio-rs/tokio/pull/4582
1238
+ [#4543]: https://github.com/tokio-rs/tokio/pull/4543
1239
+ [#4553]: https://github.com/tokio-rs/tokio/pull/4553
1240
+ [#4524]: https://github.com/tokio-rs/tokio/pull/4524
1241
+ [#4511]: https://github.com/tokio-rs/tokio/pull/4511
1242
+ [#4567]: https://github.com/tokio-rs/tokio/pull/4567
1243
+ [#4474]: https://github.com/tokio-rs/tokio/pull/4474
1244
+ [#4634]: https://github.com/tokio-rs/tokio/pull/4634
1245
+ [#4548]: https://github.com/tokio-rs/tokio/pull/4548
1246
+ [#4630]: https://github.com/tokio-rs/tokio/pull/4630
1247
+ [#4530]: https://github.com/tokio-rs/tokio/pull/4530
1248
+ [#4640]: https://github.com/tokio-rs/tokio/pull/4640
1249
+ [#4531]: https://github.com/tokio-rs/tokio/pull/4531
1250
+ [#4545]: https://github.com/tokio-rs/tokio/pull/4545
1251
+ [#4507]: https://github.com/tokio-rs/tokio/pull/4507
1252
+
1253
+ # 1.17.0 (February 16, 2022)
1254
+
1255
+ This release updates the minimum supported Rust version (MSRV) to 1.49, the
1256
+ `mio` dependency to v0.8, and the (optional) `parking_lot` dependency to v0.12.
1257
+ Additionally, it contains several bug fixes, as well as internal refactoring and
1258
+ performance improvements.
1259
+
1260
+ ### Fixed
1261
+
1262
+ - time: prevent panicking in `sleep` with large durations ([#4495])
1263
+ - time: eliminate potential panics in `Instant` arithmetic on platforms where
1264
+ `Instant::now` is not monotonic ([#4461])
1265
+ - io: fix `DuplexStream` not participating in cooperative yielding ([#4478])
1266
+ - rt: fix potential double panic when dropping a `JoinHandle` ([#4430])
1267
+
1268
+ ### Changed
1269
+
1270
+ - update minimum supported Rust version to 1.49 ([#4457])
1271
+ - update `parking_lot` dependency to v0.12.0 ([#4459])
1272
+ - update `mio` dependency to v0.8 ([#4449])
1273
+ - rt: remove an unnecessary lock in the blocking pool ([#4436])
1274
+ - rt: remove an unnecessary enum in the basic scheduler ([#4462])
1275
+ - time: use bit manipulation instead of modulo to improve performance ([#4480])
1276
+ - net: use `std::future::Ready` instead of our own `Ready` future ([#4271])
1277
+ - replace deprecated `atomic::spin_loop_hint` with `hint::spin_loop` ([#4491])
1278
+ - fix miri failures in intrusive linked lists ([#4397])
1279
+
1280
+ ### Documented
1281
+
1282
+ - io: add an example for `tokio::process::ChildStdin` ([#4479])
1283
+
1284
+ ### Unstable
1285
+
1286
+ The following changes only apply when building with `--cfg tokio_unstable`:
1287
+
1288
+ - task: fix missing location information in `tracing` spans generated by
1289
+ `spawn_local` ([#4483])
1290
+ - task: add `JoinSet` for managing sets of tasks ([#4335])
1291
+ - metrics: fix compilation error on MIPS ([#4475])
1292
+ - metrics: fix compilation error on arm32v7 ([#4453])
1293
+
1294
+ [#4495]: https://github.com/tokio-rs/tokio/pull/4495
1295
+ [#4461]: https://github.com/tokio-rs/tokio/pull/4461
1296
+ [#4478]: https://github.com/tokio-rs/tokio/pull/4478
1297
+ [#4430]: https://github.com/tokio-rs/tokio/pull/4430
1298
+ [#4457]: https://github.com/tokio-rs/tokio/pull/4457
1299
+ [#4459]: https://github.com/tokio-rs/tokio/pull/4459
1300
+ [#4449]: https://github.com/tokio-rs/tokio/pull/4449
1301
+ [#4462]: https://github.com/tokio-rs/tokio/pull/4462
1302
+ [#4436]: https://github.com/tokio-rs/tokio/pull/4436
1303
+ [#4480]: https://github.com/tokio-rs/tokio/pull/4480
1304
+ [#4271]: https://github.com/tokio-rs/tokio/pull/4271
1305
+ [#4491]: https://github.com/tokio-rs/tokio/pull/4491
1306
+ [#4397]: https://github.com/tokio-rs/tokio/pull/4397
1307
+ [#4479]: https://github.com/tokio-rs/tokio/pull/4479
1308
+ [#4483]: https://github.com/tokio-rs/tokio/pull/4483
1309
+ [#4335]: https://github.com/tokio-rs/tokio/pull/4335
1310
+ [#4475]: https://github.com/tokio-rs/tokio/pull/4475
1311
+ [#4453]: https://github.com/tokio-rs/tokio/pull/4453
1312
+
1313
+ # 1.16.1 (January 28, 2022)
1314
+
1315
+ This release fixes a bug in [#4428] with the change [#4437].
1316
+
1317
+ [#4428]: https://github.com/tokio-rs/tokio/pull/4428
1318
+ [#4437]: https://github.com/tokio-rs/tokio/pull/4437
1319
+
1320
+ # 1.16.0 (January 27, 2022)
1321
+
1322
+ Fixes a soundness bug in `io::Take` ([#4428]). The unsoundness is exposed when
1323
+ leaking memory in the given `AsyncRead` implementation and then overwriting the
1324
+ supplied buffer:
1325
+
1326
+ ```rust
1327
+ impl AsyncRead for Buggy {
1328
+ fn poll_read(
1329
+ self: Pin<&mut Self>,
1330
+ cx: &mut Context<'_>,
1331
+ buf: &mut ReadBuf<'_>
1332
+ ) -> Poll<Result<()>> {
1333
+ let new_buf = vec![0; 5].leak();
1334
+ *buf = ReadBuf::new(new_buf);
1335
+ buf.put_slice(b"hello");
1336
+ Poll::Ready(Ok(()))
1337
+ }
1338
+ }
1339
+ ```
1340
+
1341
+ Also, this release includes improvements to the multi-threaded scheduler that
1342
+ can increase throughput by up to 20% in some cases ([#4383]).
1343
+
1344
+ ### Fixed
1345
+
1346
+ - io: **soundness** don't expose uninitialized memory when using `io::Take` in edge case ([#4428])
1347
+ - fs: ensure `File::write` results in a `write` syscall when the runtime shuts down ([#4316])
1348
+ - process: drop pipe after child exits in `wait_with_output` ([#4315])
1349
+ - rt: improve error message when spawning a thread fails ([#4398])
1350
+ - rt: reduce false-positive thread wakups in the multi-threaded scheduler ([#4383])
1351
+ - sync: don't inherit `Send` from `parking_lot::*Guard` ([#4359])
1352
+
1353
+ ### Added
1354
+
1355
+ - net: `TcpSocket::linger()` and `set_linger()` ([#4324])
1356
+ - net: impl `UnwindSafe` for socket types ([#4384])
1357
+ - rt: impl `UnwindSafe` for `JoinHandle` ([#4418])
1358
+ - sync: `watch::Receiver::has_changed()` ([#4342])
1359
+ - sync: `oneshot::Receiver::blocking_recv()` ([#4334])
1360
+ - sync: `RwLock` blocking operations ([#4425])
1361
+
1362
+ ### Unstable
1363
+
1364
+ The following changes only apply when building with `--cfg tokio_unstable`
1365
+
1366
+ - rt: **breaking change** overhaul runtime metrics API ([#4373])
1367
+
1368
+ [#4428]: https://github.com/tokio-rs/tokio/pull/4428
1369
+ [#4316]: https://github.com/tokio-rs/tokio/pull/4316
1370
+ [#4315]: https://github.com/tokio-rs/tokio/pull/4315
1371
+ [#4398]: https://github.com/tokio-rs/tokio/pull/4398
1372
+ [#4383]: https://github.com/tokio-rs/tokio/pull/4383
1373
+ [#4359]: https://github.com/tokio-rs/tokio/pull/4359
1374
+ [#4324]: https://github.com/tokio-rs/tokio/pull/4324
1375
+ [#4384]: https://github.com/tokio-rs/tokio/pull/4384
1376
+ [#4418]: https://github.com/tokio-rs/tokio/pull/4418
1377
+ [#4342]: https://github.com/tokio-rs/tokio/pull/4342
1378
+ [#4334]: https://github.com/tokio-rs/tokio/pull/4334
1379
+ [#4425]: https://github.com/tokio-rs/tokio/pull/4425
1380
+ [#4373]: https://github.com/tokio-rs/tokio/pull/4373
1381
+
1382
+ # 1.15.0 (December 15, 2021)
1383
+
1384
+ ### Fixed
1385
+
1386
+ - io: add cooperative yielding support to `io::empty()` ([#4300])
1387
+ - time: make timeout robust against budget-depleting tasks ([#4314])
1388
+
1389
+ ### Changed
1390
+
1391
+ - update minimum supported Rust version to 1.46.
1392
+
1393
+ ### Added
1394
+
1395
+ - time: add `Interval::reset()` ([#4248])
1396
+ - io: add explicit lifetimes to `AsyncFdReadyGuard` ([#4267])
1397
+ - process: add `Command::as_std()` ([#4295])
1398
+
1399
+ ### Added (unstable)
1400
+
1401
+ - tracing: instrument `tokio::sync` types ([#4302])
1402
+
1403
+ [#4302]: https://github.com/tokio-rs/tokio/pull/4302
1404
+ [#4300]: https://github.com/tokio-rs/tokio/pull/4300
1405
+ [#4295]: https://github.com/tokio-rs/tokio/pull/4295
1406
+ [#4267]: https://github.com/tokio-rs/tokio/pull/4267
1407
+ [#4248]: https://github.com/tokio-rs/tokio/pull/4248
1408
+ [#4314]: https://github.com/tokio-rs/tokio/pull/4314
1409
+
1410
+ # 1.14.0 (November 15, 2021)
1411
+
1412
+ ### Fixed
1413
+
1414
+ - macros: fix compiler errors when using `mut` patterns in `select!` ([#4211])
1415
+ - sync: fix a data race between `oneshot::Sender::send` and awaiting a
1416
+ `oneshot::Receiver` when the oneshot has been closed ([#4226])
1417
+ - sync: make `AtomicWaker` panic safe ([#3689])
1418
+ - runtime: fix basic scheduler dropping tasks outside a runtime context
1419
+ ([#4213])
1420
+
1421
+ ### Added
1422
+
1423
+ - stats: add `RuntimeStats::busy_duration_total` ([#4179], [#4223])
1424
+
1425
+ ### Changed
1426
+
1427
+ - io: updated `copy` buffer size to match `std::io::copy` ([#4209])
1428
+
1429
+ ### Documented
1430
+
1431
+ - io: rename buffer to file in doc-test ([#4230])
1432
+ - sync: fix Notify example ([#4212])
1433
+
1434
+ [#4211]: https://github.com/tokio-rs/tokio/pull/4211
1435
+ [#4226]: https://github.com/tokio-rs/tokio/pull/4226
1436
+ [#3689]: https://github.com/tokio-rs/tokio/pull/3689
1437
+ [#4213]: https://github.com/tokio-rs/tokio/pull/4213
1438
+ [#4179]: https://github.com/tokio-rs/tokio/pull/4179
1439
+ [#4223]: https://github.com/tokio-rs/tokio/pull/4223
1440
+ [#4209]: https://github.com/tokio-rs/tokio/pull/4209
1441
+ [#4230]: https://github.com/tokio-rs/tokio/pull/4230
1442
+ [#4212]: https://github.com/tokio-rs/tokio/pull/4212
1443
+
1444
+ # 1.13.1 (November 15, 2021)
1445
+
1446
+ ### Fixed
1447
+
1448
+ - sync: fix a data race between `oneshot::Sender::send` and awaiting a
1449
+ `oneshot::Receiver` when the oneshot has been closed ([#4226])
1450
+
1451
+ [#4226]: https://github.com/tokio-rs/tokio/pull/4226
1452
+
1453
+ # 1.13.0 (October 29, 2021)
1454
+
1455
+ ### Fixed
1456
+
1457
+ - sync: fix `Notify` to clone the waker before locking its waiter list ([#4129])
1458
+ - tokio: add riscv32 to non atomic64 architectures ([#4185])
1459
+
1460
+ ### Added
1461
+
1462
+ - net: add `poll_{recv,send}_ready` methods to `udp` and `uds_datagram` ([#4131])
1463
+ - net: add `try_*`, `readable`, `writable`, `ready`, and `peer_addr` methods to split halves ([#4120])
1464
+ - sync: add `blocking_lock` to `Mutex` ([#4130])
1465
+ - sync: add `watch::Sender::send_replace` ([#3962], [#4195])
1466
+ - sync: expand `Debug` for `Mutex<T>` impl to unsized `T` ([#4134])
1467
+ - tracing: instrument time::Sleep ([#4072])
1468
+ - tracing: use structured location fields for spawned tasks ([#4128])
1469
+
1470
+ ### Changed
1471
+
1472
+ - io: add assert in `copy_bidirectional` that `poll_write` is sensible ([#4125])
1473
+ - macros: use qualified syntax when polling in `select!` ([#4192])
1474
+ - runtime: handle `block_on` wakeups better ([#4157])
1475
+ - task: allocate callback on heap immediately in debug mode ([#4203])
1476
+ - tokio: assert platform-minimum requirements at build time ([#3797])
1477
+
1478
+ ### Documented
1479
+
1480
+ - docs: conversion of doc comments to indicative mood ([#4174])
1481
+ - docs: add returning on the first error example for `try_join!` ([#4133])
1482
+ - docs: fixing broken links in `tokio/src/lib.rs` ([#4132])
1483
+ - signal: add example with background listener ([#4171])
1484
+ - sync: add more oneshot examples ([#4153])
1485
+ - time: document `Interval::tick` cancel safety ([#4152])
1486
+
1487
+ [#3797]: https://github.com/tokio-rs/tokio/pull/3797
1488
+ [#3962]: https://github.com/tokio-rs/tokio/pull/3962
1489
+ [#4072]: https://github.com/tokio-rs/tokio/pull/4072
1490
+ [#4120]: https://github.com/tokio-rs/tokio/pull/4120
1491
+ [#4125]: https://github.com/tokio-rs/tokio/pull/4125
1492
+ [#4128]: https://github.com/tokio-rs/tokio/pull/4128
1493
+ [#4129]: https://github.com/tokio-rs/tokio/pull/4129
1494
+ [#4130]: https://github.com/tokio-rs/tokio/pull/4130
1495
+ [#4131]: https://github.com/tokio-rs/tokio/pull/4131
1496
+ [#4132]: https://github.com/tokio-rs/tokio/pull/4132
1497
+ [#4133]: https://github.com/tokio-rs/tokio/pull/4133
1498
+ [#4134]: https://github.com/tokio-rs/tokio/pull/4134
1499
+ [#4152]: https://github.com/tokio-rs/tokio/pull/4152
1500
+ [#4153]: https://github.com/tokio-rs/tokio/pull/4153
1501
+ [#4157]: https://github.com/tokio-rs/tokio/pull/4157
1502
+ [#4171]: https://github.com/tokio-rs/tokio/pull/4171
1503
+ [#4174]: https://github.com/tokio-rs/tokio/pull/4174
1504
+ [#4185]: https://github.com/tokio-rs/tokio/pull/4185
1505
+ [#4192]: https://github.com/tokio-rs/tokio/pull/4192
1506
+ [#4195]: https://github.com/tokio-rs/tokio/pull/4195
1507
+ [#4203]: https://github.com/tokio-rs/tokio/pull/4203
1508
+
1509
+ # 1.12.0 (September 21, 2021)
1510
+
1511
+ ### Fixed
1512
+
1513
+ - mpsc: ensure `try_reserve` error is consistent with `try_send` ([#4119])
1514
+ - mpsc: use `spin_loop_hint` instead of `yield_now` ([#4115])
1515
+ - sync: make `SendError` field public ([#4097])
1516
+
1517
+ ### Added
1518
+
1519
+ - io: add POSIX AIO on FreeBSD ([#4054])
1520
+ - io: add convenience method `AsyncSeekExt::rewind` ([#4107])
1521
+ - runtime: add tracing span for `block_on` futures ([#4094])
1522
+ - runtime: callback when a worker parks and unparks ([#4070])
1523
+ - sync: implement `try_recv` for mpsc channels ([#4113])
1524
+
1525
+ ### Documented
1526
+
1527
+ - docs: clarify CPU-bound tasks on Tokio ([#4105])
1528
+ - mpsc: document spurious failures on `poll_recv` ([#4117])
1529
+ - mpsc: document that `PollSender` impls `Sink` ([#4110])
1530
+ - task: document non-guarantees of `yield_now` ([#4091])
1531
+ - time: document paused time details better ([#4061], [#4103])
1532
+
1533
+ [#4027]: https://github.com/tokio-rs/tokio/pull/4027
1534
+ [#4054]: https://github.com/tokio-rs/tokio/pull/4054
1535
+ [#4061]: https://github.com/tokio-rs/tokio/pull/4061
1536
+ [#4070]: https://github.com/tokio-rs/tokio/pull/4070
1537
+ [#4091]: https://github.com/tokio-rs/tokio/pull/4091
1538
+ [#4094]: https://github.com/tokio-rs/tokio/pull/4094
1539
+ [#4097]: https://github.com/tokio-rs/tokio/pull/4097
1540
+ [#4103]: https://github.com/tokio-rs/tokio/pull/4103
1541
+ [#4105]: https://github.com/tokio-rs/tokio/pull/4105
1542
+ [#4107]: https://github.com/tokio-rs/tokio/pull/4107
1543
+ [#4110]: https://github.com/tokio-rs/tokio/pull/4110
1544
+ [#4113]: https://github.com/tokio-rs/tokio/pull/4113
1545
+ [#4115]: https://github.com/tokio-rs/tokio/pull/4115
1546
+ [#4117]: https://github.com/tokio-rs/tokio/pull/4117
1547
+ [#4119]: https://github.com/tokio-rs/tokio/pull/4119
1548
+
1549
+ # 1.11.0 (August 31, 2021)
1550
+
1551
+ ### Fixed
1552
+
1553
+ - time: don't panic when Instant is not monotonic ([#4044])
1554
+ - io: fix panic in `fill_buf` by not calling `poll_fill_buf` twice ([#4084])
1555
+
1556
+ ### Added
1557
+
1558
+ - watch: add `watch::Sender::subscribe` ([#3800])
1559
+ - process: add `from_std` to `ChildStd*` ([#4045])
1560
+ - stats: initial work on runtime stats ([#4043])
1561
+
1562
+ ### Changed
1563
+
1564
+ - tracing: change span naming to new console convention ([#4042])
1565
+ - io: speed-up waking by using uninitialized array ([#4055], [#4071], [#4075])
1566
+
1567
+ ### Documented
1568
+
1569
+ - time: make Sleep examples easier to find ([#4040])
1570
+
1571
+ [#3800]: https://github.com/tokio-rs/tokio/pull/3800
1572
+ [#4040]: https://github.com/tokio-rs/tokio/pull/4040
1573
+ [#4042]: https://github.com/tokio-rs/tokio/pull/4042
1574
+ [#4043]: https://github.com/tokio-rs/tokio/pull/4043
1575
+ [#4044]: https://github.com/tokio-rs/tokio/pull/4044
1576
+ [#4045]: https://github.com/tokio-rs/tokio/pull/4045
1577
+ [#4055]: https://github.com/tokio-rs/tokio/pull/4055
1578
+ [#4071]: https://github.com/tokio-rs/tokio/pull/4071
1579
+ [#4075]: https://github.com/tokio-rs/tokio/pull/4075
1580
+ [#4084]: https://github.com/tokio-rs/tokio/pull/4084
1581
+
1582
+ # 1.10.1 (August 24, 2021)
1583
+
1584
+ ### Fixed
1585
+
1586
+ - runtime: fix leak in UnownedTask ([#4063])
1587
+
1588
+ [#4063]: https://github.com/tokio-rs/tokio/pull/4063
1589
+
1590
+ # 1.10.0 (August 12, 2021)
1591
+
1592
+ ### Added
1593
+
1594
+ - io: add `(read|write)_f(32|64)[_le]` methods ([#4022])
1595
+ - io: add `fill_buf` and `consume` to `AsyncBufReadExt` ([#3991])
1596
+ - process: add `Child::raw_handle()` on windows ([#3998])
1597
+
1598
+ ### Fixed
1599
+
1600
+ - doc: fix non-doc builds with `--cfg docsrs` ([#4020])
1601
+ - io: flush eagerly in `io::copy` ([#4001])
1602
+ - runtime: a debug assert was sometimes triggered during shutdown ([#4005])
1603
+ - sync: use `spin_loop_hint` instead of `yield_now` in mpsc ([#4037])
1604
+ - tokio: the test-util feature depends on rt, sync, and time ([#4036])
1605
+
1606
+ ### Changes
1607
+
1608
+ - runtime: reorganize parts of the runtime ([#3979], [#4005])
1609
+ - signal: make windows docs for signal module show up on unix builds ([#3770])
1610
+ - task: quickly send task to heap on debug mode ([#4009])
1611
+
1612
+ ### Documented
1613
+
1614
+ - io: document cancellation safety of `AsyncBufReadExt` ([#3997])
1615
+ - sync: document when `watch::send` fails ([#4021])
1616
+
1617
+ [#3770]: https://github.com/tokio-rs/tokio/pull/3770
1618
+ [#3979]: https://github.com/tokio-rs/tokio/pull/3979
1619
+ [#3991]: https://github.com/tokio-rs/tokio/pull/3991
1620
+ [#3997]: https://github.com/tokio-rs/tokio/pull/3997
1621
+ [#3998]: https://github.com/tokio-rs/tokio/pull/3998
1622
+ [#4001]: https://github.com/tokio-rs/tokio/pull/4001
1623
+ [#4005]: https://github.com/tokio-rs/tokio/pull/4005
1624
+ [#4009]: https://github.com/tokio-rs/tokio/pull/4009
1625
+ [#4020]: https://github.com/tokio-rs/tokio/pull/4020
1626
+ [#4021]: https://github.com/tokio-rs/tokio/pull/4021
1627
+ [#4022]: https://github.com/tokio-rs/tokio/pull/4022
1628
+ [#4036]: https://github.com/tokio-rs/tokio/pull/4036
1629
+ [#4037]: https://github.com/tokio-rs/tokio/pull/4037
1630
+
1631
+ # 1.9.0 (July 22, 2021)
1632
+
1633
+ ### Added
1634
+
1635
+ - net: allow customized I/O operations for `TcpStream` ([#3888])
1636
+ - sync: add getter for the mutex from a guard ([#3928])
1637
+ - task: expose nameable future for `TaskLocal::scope` ([#3273])
1638
+
1639
+ ### Fixed
1640
+
1641
+ - Fix leak if output of future panics on drop ([#3967])
1642
+ - Fix leak in `LocalSet` ([#3978])
1643
+
1644
+ ### Changes
1645
+
1646
+ - runtime: reorganize parts of the runtime ([#3909], [#3939], [#3950], [#3955], [#3980])
1647
+ - sync: clean up `OnceCell` ([#3945])
1648
+ - task: remove mutex in `JoinError` ([#3959])
1649
+
1650
+ [#3273]: https://github.com/tokio-rs/tokio/pull/3273
1651
+ [#3888]: https://github.com/tokio-rs/tokio/pull/3888
1652
+ [#3909]: https://github.com/tokio-rs/tokio/pull/3909
1653
+ [#3928]: https://github.com/tokio-rs/tokio/pull/3928
1654
+ [#3934]: https://github.com/tokio-rs/tokio/pull/3934
1655
+ [#3939]: https://github.com/tokio-rs/tokio/pull/3939
1656
+ [#3945]: https://github.com/tokio-rs/tokio/pull/3945
1657
+ [#3950]: https://github.com/tokio-rs/tokio/pull/3950
1658
+ [#3955]: https://github.com/tokio-rs/tokio/pull/3955
1659
+ [#3959]: https://github.com/tokio-rs/tokio/pull/3959
1660
+ [#3967]: https://github.com/tokio-rs/tokio/pull/3967
1661
+ [#3978]: https://github.com/tokio-rs/tokio/pull/3978
1662
+ [#3980]: https://github.com/tokio-rs/tokio/pull/3980
1663
+
1664
+ # 1.8.3 (July 26, 2021)
1665
+
1666
+ This release backports two fixes from 1.9.0
1667
+
1668
+ ### Fixed
1669
+
1670
+ - Fix leak if output of future panics on drop ([#3967])
1671
+ - Fix leak in `LocalSet` ([#3978])
1672
+
1673
+ [#3967]: https://github.com/tokio-rs/tokio/pull/3967
1674
+ [#3978]: https://github.com/tokio-rs/tokio/pull/3978
1675
+
1676
+ # 1.8.2 (July 19, 2021)
1677
+
1678
+ Fixes a missed edge case from 1.8.1.
1679
+
1680
+ ### Fixed
1681
+
1682
+ - runtime: drop canceled future on next poll ([#3965])
1683
+
1684
+ [#3965]: https://github.com/tokio-rs/tokio/pull/3965
1685
+
1686
+ # 1.8.1 (July 6, 2021)
1687
+
1688
+ Forward ports 1.5.1 fixes.
1689
+
1690
+ ### Fixed
1691
+
1692
+ - runtime: remotely abort tasks on `JoinHandle::abort` ([#3934])
1693
+
1694
+ [#3934]: https://github.com/tokio-rs/tokio/pull/3934
1695
+
1696
+ # 1.8.0 (July 2, 2021)
1697
+
1698
+ ### Added
1699
+
1700
+ - io: add `get_{ref,mut}` methods to `AsyncFdReadyGuard` and `AsyncFdReadyMutGuard` ([#3807])
1701
+ - io: efficient implementation of vectored writes for `BufWriter` ([#3163])
1702
+ - net: add ready/try methods to `NamedPipe{Client,Server}` ([#3866], [#3899])
1703
+ - sync: add `watch::Receiver::borrow_and_update` ([#3813])
1704
+ - sync: implement `From<T>` for `OnceCell<T>` ([#3877])
1705
+ - time: allow users to specify Interval behavior when delayed ([#3721])
1706
+
1707
+ ### Added (unstable)
1708
+
1709
+ - rt: add `tokio::task::Builder` ([#3881])
1710
+
1711
+ ### Fixed
1712
+
1713
+ - net: handle HUP event with `UnixStream` ([#3898])
1714
+
1715
+ ### Documented
1716
+
1717
+ - doc: document cancellation safety ([#3900])
1718
+ - time: add wait alias to sleep ([#3897])
1719
+ - time: document auto-advancing behavior of runtime ([#3763])
1720
+
1721
+ [#3163]: https://github.com/tokio-rs/tokio/pull/3163
1722
+ [#3721]: https://github.com/tokio-rs/tokio/pull/3721
1723
+ [#3763]: https://github.com/tokio-rs/tokio/pull/3763
1724
+ [#3807]: https://github.com/tokio-rs/tokio/pull/3807
1725
+ [#3813]: https://github.com/tokio-rs/tokio/pull/3813
1726
+ [#3866]: https://github.com/tokio-rs/tokio/pull/3866
1727
+ [#3877]: https://github.com/tokio-rs/tokio/pull/3877
1728
+ [#3881]: https://github.com/tokio-rs/tokio/pull/3881
1729
+ [#3897]: https://github.com/tokio-rs/tokio/pull/3897
1730
+ [#3898]: https://github.com/tokio-rs/tokio/pull/3898
1731
+ [#3899]: https://github.com/tokio-rs/tokio/pull/3899
1732
+ [#3900]: https://github.com/tokio-rs/tokio/pull/3900
1733
+
1734
+ # 1.7.2 (July 6, 2021)
1735
+
1736
+ Forward ports 1.5.1 fixes.
1737
+
1738
+ ### Fixed
1739
+
1740
+ - runtime: remotely abort tasks on `JoinHandle::abort` ([#3934])
1741
+
1742
+ [#3934]: https://github.com/tokio-rs/tokio/pull/3934
1743
+
1744
+ # 1.7.1 (June 18, 2021)
1745
+
1746
+ ### Fixed
1747
+
1748
+ - runtime: fix early task shutdown during runtime shutdown ([#3870])
1749
+
1750
+ [#3870]: https://github.com/tokio-rs/tokio/pull/3870
1751
+
1752
+ # 1.7.0 (June 15, 2021)
1753
+
1754
+ ### Added
1755
+
1756
+ - net: add named pipes on windows ([#3760])
1757
+ - net: add `TcpSocket` from `std::net::TcpStream` conversion ([#3838])
1758
+ - sync: add `receiver_count` to `watch::Sender` ([#3729])
1759
+ - sync: export `sync::notify::Notified` future publicly ([#3840])
1760
+ - tracing: instrument task wakers ([#3836])
1761
+
1762
+ ### Fixed
1763
+
1764
+ - macros: suppress `clippy::default_numeric_fallback` lint in generated code ([#3831])
1765
+ - runtime: immediately drop new tasks when runtime is shut down ([#3752])
1766
+ - sync: deprecate unused `mpsc::RecvError` type ([#3833])
1767
+
1768
+ ### Documented
1769
+
1770
+ - io: clarify EOF condition for `AsyncReadExt::read_buf` ([#3850])
1771
+ - io: clarify limits on return values of `AsyncWrite::poll_write` ([#3820])
1772
+ - sync: add examples to Semaphore ([#3808])
1773
+
1774
+ [#3729]: https://github.com/tokio-rs/tokio/pull/3729
1775
+ [#3752]: https://github.com/tokio-rs/tokio/pull/3752
1776
+ [#3760]: https://github.com/tokio-rs/tokio/pull/3760
1777
+ [#3808]: https://github.com/tokio-rs/tokio/pull/3808
1778
+ [#3820]: https://github.com/tokio-rs/tokio/pull/3820
1779
+ [#3831]: https://github.com/tokio-rs/tokio/pull/3831
1780
+ [#3833]: https://github.com/tokio-rs/tokio/pull/3833
1781
+ [#3836]: https://github.com/tokio-rs/tokio/pull/3836
1782
+ [#3838]: https://github.com/tokio-rs/tokio/pull/3838
1783
+ [#3840]: https://github.com/tokio-rs/tokio/pull/3840
1784
+ [#3850]: https://github.com/tokio-rs/tokio/pull/3850
1785
+
1786
+ # 1.6.3 (July 6, 2021)
1787
+
1788
+ Forward ports 1.5.1 fixes.
1789
+
1790
+ ### Fixed
1791
+
1792
+ - runtime: remotely abort tasks on `JoinHandle::abort` ([#3934])
1793
+
1794
+ [#3934]: https://github.com/tokio-rs/tokio/pull/3934
1795
+
1796
+ # 1.6.2 (June 14, 2021)
1797
+
1798
+ ### Fixes
1799
+
1800
+ - test: sub-ms `time:advance` regression introduced in 1.6 ([#3852])
1801
+
1802
+ [#3852]: https://github.com/tokio-rs/tokio/pull/3852
1803
+
1804
+ # 1.6.1 (May 28, 2021)
1805
+
1806
+ This release reverts [#3518] because it doesn't work on some kernels due to
1807
+ a kernel bug. ([#3803])
1808
+
1809
+ [#3518]: https://github.com/tokio-rs/tokio/issues/3518
1810
+ [#3803]: https://github.com/tokio-rs/tokio/issues/3803
1811
+
1812
+ # 1.6.0 (May 14, 2021)
1813
+
1814
+ ### Added
1815
+
1816
+ - fs: try doing a non-blocking read before punting to the threadpool ([#3518])
1817
+ - io: add `write_all_buf` to `AsyncWriteExt` ([#3737])
1818
+ - io: implement `AsyncSeek` for `BufReader`, `BufWriter`, and `BufStream` ([#3491])
1819
+ - net: support non-blocking vectored I/O ([#3761])
1820
+ - sync: add `mpsc::Sender::{reserve_owned, try_reserve_owned}` ([#3704])
1821
+ - sync: add a `MutexGuard::map` method that returns a `MappedMutexGuard` ([#2472])
1822
+ - time: add getter for Interval's period ([#3705])
1823
+
1824
+ ### Fixed
1825
+
1826
+ - io: wake pending writers on `DuplexStream` close ([#3756])
1827
+ - process: avoid redundant effort to reap orphan processes ([#3743])
1828
+ - signal: use `std::os::raw::c_int` instead of `libc::c_int` on public API ([#3774])
1829
+ - sync: preserve permit state in `notify_waiters` ([#3660])
1830
+ - task: update `JoinHandle` panic message ([#3727])
1831
+ - time: prevent `time::advance` from going too far ([#3712])
1832
+
1833
+ ### Documented
1834
+
1835
+ - net: hide `net::unix::datagram` module from docs ([#3775])
1836
+ - process: updated example ([#3748])
1837
+ - sync: `Barrier` doc should use task, not thread ([#3780])
1838
+ - task: update documentation on `block_in_place` ([#3753])
1839
+
1840
+ [#2472]: https://github.com/tokio-rs/tokio/pull/2472
1841
+ [#3491]: https://github.com/tokio-rs/tokio/pull/3491
1842
+ [#3518]: https://github.com/tokio-rs/tokio/pull/3518
1843
+ [#3660]: https://github.com/tokio-rs/tokio/pull/3660
1844
+ [#3704]: https://github.com/tokio-rs/tokio/pull/3704
1845
+ [#3705]: https://github.com/tokio-rs/tokio/pull/3705
1846
+ [#3712]: https://github.com/tokio-rs/tokio/pull/3712
1847
+ [#3727]: https://github.com/tokio-rs/tokio/pull/3727
1848
+ [#3737]: https://github.com/tokio-rs/tokio/pull/3737
1849
+ [#3743]: https://github.com/tokio-rs/tokio/pull/3743
1850
+ [#3748]: https://github.com/tokio-rs/tokio/pull/3748
1851
+ [#3753]: https://github.com/tokio-rs/tokio/pull/3753
1852
+ [#3756]: https://github.com/tokio-rs/tokio/pull/3756
1853
+ [#3761]: https://github.com/tokio-rs/tokio/pull/3761
1854
+ [#3774]: https://github.com/tokio-rs/tokio/pull/3774
1855
+ [#3775]: https://github.com/tokio-rs/tokio/pull/3775
1856
+ [#3780]: https://github.com/tokio-rs/tokio/pull/3780
1857
+
1858
+ # 1.5.1 (July 6, 2021)
1859
+
1860
+ ### Fixed
1861
+
1862
+ - runtime: remotely abort tasks on `JoinHandle::abort` ([#3934])
1863
+
1864
+ [#3934]: https://github.com/tokio-rs/tokio/pull/3934
1865
+
1866
+ # 1.5.0 (April 12, 2021)
1867
+
1868
+ ### Added
1869
+
1870
+ - io: add `AsyncSeekExt::stream_position` ([#3650])
1871
+ - io: add `AsyncWriteExt::write_vectored` ([#3678])
1872
+ - io: add a `copy_bidirectional` utility ([#3572])
1873
+ - net: implement `IntoRawFd` for `TcpSocket` ([#3684])
1874
+ - sync: add `OnceCell` ([#3591])
1875
+ - sync: add `OwnedRwLockReadGuard` and `OwnedRwLockWriteGuard` ([#3340])
1876
+ - sync: add `Semaphore::is_closed` ([#3673])
1877
+ - sync: add `mpsc::Sender::capacity` ([#3690])
1878
+ - sync: allow configuring `RwLock` max reads ([#3644])
1879
+ - task: add `sync_scope` for `LocalKey` ([#3612])
1880
+
1881
+ ### Fixed
1882
+
1883
+ - chore: try to avoid `noalias` attributes on intrusive linked list ([#3654])
1884
+ - rt: fix panic in `JoinHandle::abort()` when called from other threads ([#3672])
1885
+ - sync: don't panic in `oneshot::try_recv` ([#3674])
1886
+ - sync: fix notifications getting dropped on receiver drop ([#3652])
1887
+ - sync: fix `Semaphore` permit overflow calculation ([#3644])
1888
+
1889
+ ### Documented
1890
+
1891
+ - io: clarify requirements of `AsyncFd` ([#3635])
1892
+ - runtime: fix unclear docs for `{Handle,Runtime}::block_on` ([#3628])
1893
+ - sync: document that `Semaphore` is fair ([#3693])
1894
+ - sync: improve doc on blocking mutex ([#3645])
1895
+
1896
+ [#3340]: https://github.com/tokio-rs/tokio/pull/3340
1897
+ [#3572]: https://github.com/tokio-rs/tokio/pull/3572
1898
+ [#3591]: https://github.com/tokio-rs/tokio/pull/3591
1899
+ [#3612]: https://github.com/tokio-rs/tokio/pull/3612
1900
+ [#3628]: https://github.com/tokio-rs/tokio/pull/3628
1901
+ [#3635]: https://github.com/tokio-rs/tokio/pull/3635
1902
+ [#3644]: https://github.com/tokio-rs/tokio/pull/3644
1903
+ [#3645]: https://github.com/tokio-rs/tokio/pull/3645
1904
+ [#3650]: https://github.com/tokio-rs/tokio/pull/3650
1905
+ [#3652]: https://github.com/tokio-rs/tokio/pull/3652
1906
+ [#3654]: https://github.com/tokio-rs/tokio/pull/3654
1907
+ [#3672]: https://github.com/tokio-rs/tokio/pull/3672
1908
+ [#3673]: https://github.com/tokio-rs/tokio/pull/3673
1909
+ [#3674]: https://github.com/tokio-rs/tokio/pull/3674
1910
+ [#3678]: https://github.com/tokio-rs/tokio/pull/3678
1911
+ [#3684]: https://github.com/tokio-rs/tokio/pull/3684
1912
+ [#3690]: https://github.com/tokio-rs/tokio/pull/3690
1913
+ [#3693]: https://github.com/tokio-rs/tokio/pull/3693
1914
+
1915
+ # 1.4.0 (March 20, 2021)
1916
+
1917
+ ### Added
1918
+
1919
+ - macros: introduce biased argument for `select!` ([#3603])
1920
+ - runtime: add `Handle::block_on` ([#3569])
1921
+
1922
+ ### Fixed
1923
+
1924
+ - runtime: avoid unnecessary polling of `block_on` future ([#3582])
1925
+ - runtime: fix memory leak/growth when creating many runtimes ([#3564])
1926
+ - runtime: mark `EnterGuard` with `must_use` ([#3609])
1927
+
1928
+ ### Documented
1929
+
1930
+ - chore: mention fix for building docs in contributing guide ([#3618])
1931
+ - doc: add link to `PollSender` ([#3613])
1932
+ - doc: alias sleep to delay ([#3604])
1933
+ - sync: improve `Mutex` FIFO explanation ([#3615])
1934
+ - timer: fix double newline in module docs ([#3617])
1935
+
1936
+ [#3564]: https://github.com/tokio-rs/tokio/pull/3564
1937
+ [#3613]: https://github.com/tokio-rs/tokio/pull/3613
1938
+ [#3618]: https://github.com/tokio-rs/tokio/pull/3618
1939
+ [#3617]: https://github.com/tokio-rs/tokio/pull/3617
1940
+ [#3582]: https://github.com/tokio-rs/tokio/pull/3582
1941
+ [#3615]: https://github.com/tokio-rs/tokio/pull/3615
1942
+ [#3603]: https://github.com/tokio-rs/tokio/pull/3603
1943
+ [#3609]: https://github.com/tokio-rs/tokio/pull/3609
1944
+ [#3604]: https://github.com/tokio-rs/tokio/pull/3604
1945
+ [#3569]: https://github.com/tokio-rs/tokio/pull/3569
1946
+
1947
+ # 1.3.0 (March 9, 2021)
1948
+
1949
+ ### Added
1950
+
1951
+ - coop: expose an `unconstrained()` opt-out ([#3547])
1952
+ - net: add `into_std` for net types without it ([#3509])
1953
+ - sync: add `same_channel` method to `mpsc::Sender` ([#3532])
1954
+ - sync: add `{try_,}acquire_many_owned` to `Semaphore` ([#3535])
1955
+ - sync: add back `RwLockWriteGuard::map` and `RwLockWriteGuard::try_map` ([#3348])
1956
+
1957
+ ### Fixed
1958
+
1959
+ - sync: allow `oneshot::Receiver::close` after successful `try_recv` ([#3552])
1960
+ - time: do not panic on `timeout(Duration::MAX)` ([#3551])
1961
+
1962
+ ### Documented
1963
+
1964
+ - doc: doc aliases for pre-1.0 function names ([#3523])
1965
+ - io: fix typos ([#3541])
1966
+ - io: note the EOF behavior of `read_until` ([#3536])
1967
+ - io: update `AsyncRead::poll_read` doc ([#3557])
1968
+ - net: update `UdpSocket` splitting doc ([#3517])
1969
+ - runtime: add link to `LocalSet` on `new_current_thread` ([#3508])
1970
+ - runtime: update documentation of thread limits ([#3527])
1971
+ - sync: do not recommend `join_all` for `Barrier` ([#3514])
1972
+ - sync: documentation for `oneshot` ([#3592])
1973
+ - sync: rename `notify` to `notify_one` ([#3526])
1974
+ - time: fix typo in `Sleep` doc ([#3515])
1975
+ - time: sync `interval.rs` and `time/mod.rs` docs ([#3533])
1976
+
1977
+ [#3348]: https://github.com/tokio-rs/tokio/pull/3348
1978
+ [#3508]: https://github.com/tokio-rs/tokio/pull/3508
1979
+ [#3509]: https://github.com/tokio-rs/tokio/pull/3509
1980
+ [#3514]: https://github.com/tokio-rs/tokio/pull/3514
1981
+ [#3515]: https://github.com/tokio-rs/tokio/pull/3515
1982
+ [#3517]: https://github.com/tokio-rs/tokio/pull/3517
1983
+ [#3523]: https://github.com/tokio-rs/tokio/pull/3523
1984
+ [#3526]: https://github.com/tokio-rs/tokio/pull/3526
1985
+ [#3527]: https://github.com/tokio-rs/tokio/pull/3527
1986
+ [#3532]: https://github.com/tokio-rs/tokio/pull/3532
1987
+ [#3533]: https://github.com/tokio-rs/tokio/pull/3533
1988
+ [#3535]: https://github.com/tokio-rs/tokio/pull/3535
1989
+ [#3536]: https://github.com/tokio-rs/tokio/pull/3536
1990
+ [#3541]: https://github.com/tokio-rs/tokio/pull/3541
1991
+ [#3547]: https://github.com/tokio-rs/tokio/pull/3547
1992
+ [#3551]: https://github.com/tokio-rs/tokio/pull/3551
1993
+ [#3552]: https://github.com/tokio-rs/tokio/pull/3552
1994
+ [#3557]: https://github.com/tokio-rs/tokio/pull/3557
1995
+ [#3592]: https://github.com/tokio-rs/tokio/pull/3592
1996
+
1997
+ # 1.2.0 (February 5, 2021)
1998
+
1999
+ ### Added
2000
+
2001
+ - signal: make `Signal::poll_recv` method public ([#3383])
2002
+
2003
+ ### Fixed
2004
+
2005
+ - time: make `test-util` paused time fully deterministic ([#3492])
2006
+
2007
+ ### Documented
2008
+
2009
+ - sync: link to new broadcast and watch wrappers ([#3504])
2010
+
2011
+ [#3383]: https://github.com/tokio-rs/tokio/pull/3383
2012
+ [#3492]: https://github.com/tokio-rs/tokio/pull/3492
2013
+ [#3504]: https://github.com/tokio-rs/tokio/pull/3504
2014
+
2015
+ # 1.1.1 (January 29, 2021)
2016
+
2017
+ Forward ports 1.0.3 fix.
2018
+
2019
+ ### Fixed
2020
+ - io: memory leak during shutdown ([#3477]).
2021
+
2022
+ # 1.1.0 (January 22, 2021)
2023
+
2024
+ ### Added
2025
+
2026
+ - net: add `try_read_buf` and `try_recv_buf` ([#3351])
2027
+ - mpsc: Add `Sender::try_reserve` function ([#3418])
2028
+ - sync: add `RwLock` `try_read` and `try_write` methods ([#3400])
2029
+ - io: add `ReadBuf::inner_mut` ([#3443])
2030
+
2031
+ ### Changed
2032
+
2033
+ - macros: improve `select!` error message ([#3352])
2034
+ - io: keep track of initialized bytes in `read_to_end` ([#3426])
2035
+ - runtime: consolidate errors for context missing ([#3441])
2036
+
2037
+ ### Fixed
2038
+
2039
+ - task: wake `LocalSet` on `spawn_local` ([#3369])
2040
+ - sync: fix panic in broadcast::Receiver drop ([#3434])
2041
+
2042
+ ### Documented
2043
+ - stream: link to new `Stream` wrappers in `tokio-stream` ([#3343])
2044
+ - docs: mention that `test-util` feature is not enabled with full ([#3397])
2045
+ - process: add documentation to process::Child fields ([#3437])
2046
+ - io: clarify `AsyncFd` docs about changes of the inner fd ([#3430])
2047
+ - net: update datagram docs on splitting ([#3448])
2048
+ - time: document that `Sleep` is not `Unpin` ([#3457])
2049
+ - sync: add link to `PollSemaphore` ([#3456])
2050
+ - task: add `LocalSet` example ([#3438])
2051
+ - sync: improve bounded `mpsc` documentation ([#3458])
2052
+
2053
+ [#3343]: https://github.com/tokio-rs/tokio/pull/3343
2054
+ [#3351]: https://github.com/tokio-rs/tokio/pull/3351
2055
+ [#3352]: https://github.com/tokio-rs/tokio/pull/3352
2056
+ [#3369]: https://github.com/tokio-rs/tokio/pull/3369
2057
+ [#3397]: https://github.com/tokio-rs/tokio/pull/3397
2058
+ [#3400]: https://github.com/tokio-rs/tokio/pull/3400
2059
+ [#3418]: https://github.com/tokio-rs/tokio/pull/3418
2060
+ [#3426]: https://github.com/tokio-rs/tokio/pull/3426
2061
+ [#3430]: https://github.com/tokio-rs/tokio/pull/3430
2062
+ [#3434]: https://github.com/tokio-rs/tokio/pull/3434
2063
+ [#3437]: https://github.com/tokio-rs/tokio/pull/3437
2064
+ [#3438]: https://github.com/tokio-rs/tokio/pull/3438
2065
+ [#3441]: https://github.com/tokio-rs/tokio/pull/3441
2066
+ [#3443]: https://github.com/tokio-rs/tokio/pull/3443
2067
+ [#3448]: https://github.com/tokio-rs/tokio/pull/3448
2068
+ [#3456]: https://github.com/tokio-rs/tokio/pull/3456
2069
+ [#3457]: https://github.com/tokio-rs/tokio/pull/3457
2070
+ [#3458]: https://github.com/tokio-rs/tokio/pull/3458
2071
+
2072
+ # 1.0.3 (January 28, 2021)
2073
+
2074
+ ### Fixed
2075
+ - io: memory leak during shutdown ([#3477]).
2076
+
2077
+ [#3477]: https://github.com/tokio-rs/tokio/pull/3477
2078
+
2079
+ # 1.0.2 (January 14, 2021)
2080
+
2081
+ ### Fixed
2082
+ - io: soundness in `read_to_end` ([#3428]).
2083
+
2084
+ [#3428]: https://github.com/tokio-rs/tokio/pull/3428
2085
+
2086
+ # 1.0.1 (December 25, 2020)
2087
+
2088
+ This release fixes a soundness hole caused by the combination of `RwLockWriteGuard::map`
2089
+ and `RwLockWriteGuard::downgrade` by removing the `map` function. This is a breaking
2090
+ change, but breaking changes are allowed under our semver policy when they are required
2091
+ to fix a soundness hole. (See [this RFC][semver] for more.)
2092
+
2093
+ Note that we have chosen not to do a deprecation cycle or similar because Tokio 1.0.0 was
2094
+ released two days ago, and therefore the impact should be minimal.
2095
+
2096
+ Due to the soundness hole, we have also yanked Tokio version 1.0.0.
2097
+
2098
+ ### Removed
2099
+
2100
+ - sync: remove `RwLockWriteGuard::map` and `RwLockWriteGuard::try_map` ([#3345])
2101
+
2102
+ ### Fixed
2103
+
2104
+ - docs: remove stream feature from docs ([#3335])
2105
+
2106
+ [semver]: https://github.com/rust-lang/rfcs/blob/master/text/1122-language-semver.md#soundness-changes
2107
+ [#3335]: https://github.com/tokio-rs/tokio/pull/3335
2108
+ [#3345]: https://github.com/tokio-rs/tokio/pull/3345
2109
+
2110
+ # 1.0.0 (December 23, 2020)
2111
+
2112
+ Commit to the API and long-term support.
2113
+
2114
+ ### Fixed
2115
+
2116
+ - sync: spurious wakeup in `watch` ([#3234]).
2117
+
2118
+ ### Changed
2119
+
2120
+ - io: rename `AsyncFd::with_io()` to `try_io()` ([#3306])
2121
+ - fs: avoid OS specific `*Ext` traits in favor of conditionally defining the fn ([#3264]).
2122
+ - fs: `Sleep` is `!Unpin` ([#3278]).
2123
+ - net: pass `SocketAddr` by value ([#3125]).
2124
+ - net: `TcpStream::poll_peek` takes `ReadBuf` ([#3259]).
2125
+ - rt: rename `runtime::Builder::max_threads()` to `max_blocking_threads()` ([#3287]).
2126
+ - time: require `current_thread` runtime when calling `time::pause()` ([#3289]).
2127
+
2128
+ ### Removed
2129
+
2130
+ - remove `tokio::prelude` ([#3299]).
2131
+ - io: remove `AsyncFd::with_poll()` ([#3306]).
2132
+ - net: remove `{Tcp,Unix}Stream::shutdown()` in favor of `AsyncWrite::shutdown()` ([#3298]).
2133
+ - stream: move all stream utilities to `tokio-stream` until `Stream` is added to
2134
+ `std` ([#3277]).
2135
+ - sync: mpsc `try_recv()` due to unexpected behavior ([#3263]).
2136
+ - tracing: make unstable as `tracing-core` is not 1.0 yet ([#3266]).
2137
+
2138
+ ### Added
2139
+
2140
+ - fs: `poll_*` fns to `DirEntry` ([#3308]).
2141
+ - io: `poll_*` fns to `io::Lines`, `io::Split` ([#3308]).
2142
+ - io: `_mut` method variants to `AsyncFd` ([#3304]).
2143
+ - net: `poll_*` fns to `UnixDatagram` ([#3223]).
2144
+ - net: `UnixStream` readiness and non-blocking ops ([#3246]).
2145
+ - sync: `UnboundedReceiver::blocking_recv()` ([#3262]).
2146
+ - sync: `watch::Sender::borrow()` ([#3269]).
2147
+ - sync: `Semaphore::close()` ([#3065]).
2148
+ - sync: `poll_recv` fns to `mpsc::Receiver`, `mpsc::UnboundedReceiver` ([#3308]).
2149
+ - time: `poll_tick` fn to `time::Interval` ([#3316]).
2150
+
2151
+ [#3065]: https://github.com/tokio-rs/tokio/pull/3065
2152
+ [#3125]: https://github.com/tokio-rs/tokio/pull/3125
2153
+ [#3223]: https://github.com/tokio-rs/tokio/pull/3223
2154
+ [#3234]: https://github.com/tokio-rs/tokio/pull/3234
2155
+ [#3246]: https://github.com/tokio-rs/tokio/pull/3246
2156
+ [#3259]: https://github.com/tokio-rs/tokio/pull/3259
2157
+ [#3262]: https://github.com/tokio-rs/tokio/pull/3262
2158
+ [#3263]: https://github.com/tokio-rs/tokio/pull/3263
2159
+ [#3264]: https://github.com/tokio-rs/tokio/pull/3264
2160
+ [#3266]: https://github.com/tokio-rs/tokio/pull/3266
2161
+ [#3269]: https://github.com/tokio-rs/tokio/pull/3269
2162
+ [#3277]: https://github.com/tokio-rs/tokio/pull/3277
2163
+ [#3278]: https://github.com/tokio-rs/tokio/pull/3278
2164
+ [#3287]: https://github.com/tokio-rs/tokio/pull/3287
2165
+ [#3289]: https://github.com/tokio-rs/tokio/pull/3289
2166
+ [#3298]: https://github.com/tokio-rs/tokio/pull/3298
2167
+ [#3299]: https://github.com/tokio-rs/tokio/pull/3299
2168
+ [#3304]: https://github.com/tokio-rs/tokio/pull/3304
2169
+ [#3306]: https://github.com/tokio-rs/tokio/pull/3306
2170
+ [#3308]: https://github.com/tokio-rs/tokio/pull/3308
2171
+ [#3316]: https://github.com/tokio-rs/tokio/pull/3316
2172
+
2173
+ # 0.3.6 (December 14, 2020)
2174
+
2175
+ ### Fixed
2176
+
2177
+ - rt: fix deadlock in shutdown ([#3228])
2178
+ - rt: fix panic in task abort when off rt ([#3159])
2179
+ - sync: make `add_permits` panic with usize::MAX >> 3 permits ([#3188])
2180
+ - time: Fix race condition in timer drop ([#3229])
2181
+ - watch: fix spurious wakeup ([#3244])
2182
+
2183
+ ### Added
2184
+
2185
+ - example: add back udp-codec example ([#3205])
2186
+ - net: add `TcpStream::into_std` ([#3189])
2187
+
2188
+ [#3159]: https://github.com/tokio-rs/tokio/pull/3159
2189
+ [#3188]: https://github.com/tokio-rs/tokio/pull/3188
2190
+ [#3189]: https://github.com/tokio-rs/tokio/pull/3189
2191
+ [#3205]: https://github.com/tokio-rs/tokio/pull/3205
2192
+ [#3228]: https://github.com/tokio-rs/tokio/pull/3228
2193
+ [#3229]: https://github.com/tokio-rs/tokio/pull/3229
2194
+ [#3244]: https://github.com/tokio-rs/tokio/pull/3244
2195
+
2196
+ # 0.3.5 (November 30, 2020)
2197
+
2198
+ ### Fixed
2199
+
2200
+ - rt: fix `shutdown_timeout(0)` ([#3196]).
2201
+ - time: fixed race condition with small sleeps ([#3069]).
2202
+
2203
+ ### Added
2204
+
2205
+ - io: `AsyncFd::with_interest()` ([#3167]).
2206
+ - signal: `CtrlC` stream on windows ([#3186]).
2207
+
2208
+ [#3069]: https://github.com/tokio-rs/tokio/pull/3069
2209
+ [#3167]: https://github.com/tokio-rs/tokio/pull/3167
2210
+ [#3186]: https://github.com/tokio-rs/tokio/pull/3186
2211
+ [#3196]: https://github.com/tokio-rs/tokio/pull/3196
2212
+
2213
+ # 0.3.4 (November 18, 2020)
2214
+
2215
+ ### Fixed
2216
+
2217
+ - stream: `StreamMap` `Default` impl bound ([#3093]).
2218
+ - io: `AsyncFd::into_inner()` should deregister the FD ([#3104]).
2219
+
2220
+ ### Changed
2221
+
2222
+ - meta: `parking_lot` feature enabled with `full` ([#3119]).
2223
+
2224
+ ### Added
2225
+
2226
+ - io: `AsyncWrite` vectored writes ([#3149]).
2227
+ - net: TCP/UDP readiness and non-blocking ops ([#3130], [#2743], [#3138]).
2228
+ - net: TCP socket option (linger, send/recv buf size) ([#3145], [#3143]).
2229
+ - net: PID field in `UCred` with solaris/illumos ([#3085]).
2230
+ - rt: `runtime::Handle` allows spawning onto a runtime ([#3079]).
2231
+ - sync: `Notify::notify_waiters()` ([#3098]).
2232
+ - sync: `acquire_many()`, `try_acquire_many()` to `Semaphore` ([#3067]).
2233
+
2234
+ [#2743]: https://github.com/tokio-rs/tokio/pull/2743
2235
+ [#3067]: https://github.com/tokio-rs/tokio/pull/3067
2236
+ [#3079]: https://github.com/tokio-rs/tokio/pull/3079
2237
+ [#3085]: https://github.com/tokio-rs/tokio/pull/3085
2238
+ [#3093]: https://github.com/tokio-rs/tokio/pull/3093
2239
+ [#3098]: https://github.com/tokio-rs/tokio/pull/3098
2240
+ [#3104]: https://github.com/tokio-rs/tokio/pull/3104
2241
+ [#3119]: https://github.com/tokio-rs/tokio/pull/3119
2242
+ [#3130]: https://github.com/tokio-rs/tokio/pull/3130
2243
+ [#3138]: https://github.com/tokio-rs/tokio/pull/3138
2244
+ [#3143]: https://github.com/tokio-rs/tokio/pull/3143
2245
+ [#3145]: https://github.com/tokio-rs/tokio/pull/3145
2246
+ [#3149]: https://github.com/tokio-rs/tokio/pull/3149
2247
+
2248
+ # 0.3.3 (November 2, 2020)
2249
+
2250
+ Fixes a soundness hole by adding a missing `Send` bound to
2251
+ `Runtime::spawn_blocking()`.
2252
+
2253
+ ### Fixed
2254
+
2255
+ - rt: include missing `Send`, fixing soundness hole ([#3089]).
2256
+ - tracing: avoid huge trace span names ([#3074]).
2257
+
2258
+ ### Added
2259
+
2260
+ - net: `TcpSocket::reuseport()`, `TcpSocket::set_reuseport()` ([#3083]).
2261
+ - net: `TcpSocket::reuseaddr()` ([#3093]).
2262
+ - net: `TcpSocket::local_addr()` ([#3093]).
2263
+ - net: add pid to `UCred` ([#2633]).
2264
+
2265
+ [#2633]: https://github.com/tokio-rs/tokio/pull/2633
2266
+ [#3074]: https://github.com/tokio-rs/tokio/pull/3074
2267
+ [#3083]: https://github.com/tokio-rs/tokio/pull/3083
2268
+ [#3089]: https://github.com/tokio-rs/tokio/pull/3089
2269
+ [#3093]: https://github.com/tokio-rs/tokio/pull/3093
2270
+
2271
+ # 0.3.2 (October 27, 2020)
2272
+
2273
+ Adds `AsyncFd` as a replacement for v0.2's `PollEvented`.
2274
+
2275
+ ### Fixed
2276
+
2277
+ - io: fix a potential deadlock when shutting down the I/O driver ([#2903]).
2278
+ - sync: `RwLockWriteGuard::downgrade()` bug ([#2957]).
2279
+
2280
+ ### Added
2281
+
2282
+ - io: `AsyncFd` for receiving readiness events on raw FDs ([#2903]).
2283
+ - net: `poll_*` function on `UdpSocket` ([#2981]).
2284
+ - net: `UdpSocket::take_error()` ([#3051]).
2285
+ - sync: `oneshot::Sender::poll_closed()` ([#3032]).
2286
+
2287
+ [#2903]: https://github.com/tokio-rs/tokio/pull/2903
2288
+ [#2957]: https://github.com/tokio-rs/tokio/pull/2957
2289
+ [#2981]: https://github.com/tokio-rs/tokio/pull/2981
2290
+ [#3032]: https://github.com/tokio-rs/tokio/pull/3032
2291
+ [#3051]: https://github.com/tokio-rs/tokio/pull/3051
2292
+
2293
+ # 0.3.1 (October 21, 2020)
2294
+
2295
+ This release fixes an use-after-free in the IO driver. Additionally, the `read_buf`
2296
+ and `write_buf` methods have been added back to the IO traits, as the bytes crate
2297
+ is now on track to reach version 1.0 together with Tokio.
2298
+
2299
+ ### Fixed
2300
+
2301
+ - net: fix use-after-free ([#3019]).
2302
+ - fs: ensure buffered data is written on shutdown ([#3009]).
2303
+
2304
+ ### Added
2305
+
2306
+ - io: `copy_buf()` ([#2884]).
2307
+ - io: `AsyncReadExt::read_buf()`, `AsyncReadExt::write_buf()` for working with
2308
+ `Buf`/`BufMut` ([#3003]).
2309
+ - rt: `Runtime::spawn_blocking()` ([#2980]).
2310
+ - sync: `watch::Sender::is_closed()` ([#2991]).
2311
+
2312
+ [#2884]: https://github.com/tokio-rs/tokio/pull/2884
2313
+ [#2980]: https://github.com/tokio-rs/tokio/pull/2980
2314
+ [#2991]: https://github.com/tokio-rs/tokio/pull/2991
2315
+ [#3003]: https://github.com/tokio-rs/tokio/pull/3003
2316
+ [#3009]: https://github.com/tokio-rs/tokio/pull/3009
2317
+ [#3019]: https://github.com/tokio-rs/tokio/pull/3019
2318
+
2319
+ # 0.3.0 (October 15, 2020)
2320
+
2321
+ This represents a 1.0 beta release. APIs are polished and future-proofed. APIs
2322
+ not included for 1.0 stabilization have been removed.
2323
+
2324
+ Biggest changes are:
2325
+
2326
+ - I/O driver internal rewrite. The windows implementation includes significant
2327
+ changes.
2328
+ - Runtime API is polished, especially with how it interacts with feature flag
2329
+ combinations.
2330
+ - Feature flags are simplified
2331
+ - `rt-core` and `rt-util` are combined to `rt`
2332
+ - `rt-threaded` is renamed to `rt-multi-thread` to match builder API
2333
+ - `tcp`, `udp`, `uds`, `dns` are combined to `net`.
2334
+ - `parking_lot` is included with `full`
2335
+
2336
+ ### Changes
2337
+
2338
+ - meta: Minimum supported Rust version is now 1.45.
2339
+ - io: `AsyncRead` trait now takes `ReadBuf` in order to safely handle reading
2340
+ into uninitialized memory ([#2758]).
2341
+ - io: Internal I/O driver storage is now able to compact ([#2757]).
2342
+ - rt: `Runtime::block_on` now takes `&self` ([#2782]).
2343
+ - sync: `watch` reworked to decouple receiving a change notification from
2344
+ receiving the value ([#2814], [#2806]).
2345
+ - sync: `Notify::notify` is renamed to `notify_one` ([#2822]).
2346
+ - process: `Child::kill` is now an `async fn` that cleans zombies ([#2823]).
2347
+ - sync: use `const fn` constructors as possible ([#2833], [#2790])
2348
+ - signal: reduce cross-thread notification ([#2835]).
2349
+ - net: tcp,udp,uds types support operations with `&self` ([#2828], [#2919], [#2934]).
2350
+ - sync: blocking `mpsc` channel supports `send` with `&self` ([#2861]).
2351
+ - time: rename `delay_for` and `delay_until` to `sleep` and `sleep_until` ([#2826]).
2352
+ - io: upgrade to `mio` 0.7 ([#2893]).
2353
+ - io: `AsyncSeek` trait is tweaked ([#2885]).
2354
+ - fs: `File` operations take `&self` ([#2930]).
2355
+ - rt: runtime API, and `#[tokio::main]` macro polish ([#2876])
2356
+ - rt: `Runtime::enter` uses an RAII guard instead of a closure ([#2954]).
2357
+ - net: the `from_std` function on all sockets no longer sets socket into non-blocking mode ([#2893])
2358
+
2359
+ ### Added
2360
+
2361
+ - sync: `map` function to lock guards ([#2445]).
2362
+ - sync: `blocking_recv` and `blocking_send` fns to `mpsc` for use outside of Tokio ([#2685]).
2363
+ - rt: `Builder::thread_name_fn` for configuring thread names ([#1921]).
2364
+ - fs: impl `FromRawFd` and `FromRawHandle` for `File` ([#2792]).
2365
+ - process: `Child::wait` and `Child::try_wait` ([#2796]).
2366
+ - rt: support configuring thread keep-alive duration ([#2809]).
2367
+ - rt: `task::JoinHandle::abort` forcibly cancels a spawned task ([#2474]).
2368
+ - sync: `RwLock` write guard to read guard downgrading ([#2733]).
2369
+ - net: add `poll_*` functions that take `&self` to all net types ([#2845])
2370
+ - sync: `get_mut()` for `Mutex`, `RwLock` ([#2856]).
2371
+ - sync: `mpsc::Sender::closed()` waits for `Receiver` half to close ([#2840]).
2372
+ - sync: `mpsc::Sender::is_closed()` returns true if `Receiver` half is closed ([#2726]).
2373
+ - stream: `iter` and `iter_mut` to `StreamMap` ([#2890]).
2374
+ - net: implement `AsRawSocket` on windows ([#2911]).
2375
+ - net: `TcpSocket` creates a socket without binding or listening ([#2920]).
2376
+
2377
+ ### Removed
2378
+
2379
+ - io: vectored ops are removed from `AsyncRead`, `AsyncWrite` traits ([#2882]).
2380
+ - io: `mio` is removed from the public API. `PollEvented` and` Registration` are
2381
+ removed ([#2893]).
2382
+ - io: remove `bytes` from public API. `Buf` and `BufMut` implementation are
2383
+ removed ([#2908]).
2384
+ - time: `DelayQueue` is moved to `tokio-util` ([#2897]).
2385
+
2386
+ ### Fixed
2387
+
2388
+ - io: `stdout` and `stderr` buffering on windows ([#2734]).
2389
+
2390
+ [#1921]: https://github.com/tokio-rs/tokio/pull/1921
2391
+ [#2445]: https://github.com/tokio-rs/tokio/pull/2445
2392
+ [#2474]: https://github.com/tokio-rs/tokio/pull/2474
2393
+ [#2685]: https://github.com/tokio-rs/tokio/pull/2685
2394
+ [#2726]: https://github.com/tokio-rs/tokio/pull/2726
2395
+ [#2733]: https://github.com/tokio-rs/tokio/pull/2733
2396
+ [#2734]: https://github.com/tokio-rs/tokio/pull/2734
2397
+ [#2757]: https://github.com/tokio-rs/tokio/pull/2757
2398
+ [#2758]: https://github.com/tokio-rs/tokio/pull/2758
2399
+ [#2782]: https://github.com/tokio-rs/tokio/pull/2782
2400
+ [#2790]: https://github.com/tokio-rs/tokio/pull/2790
2401
+ [#2792]: https://github.com/tokio-rs/tokio/pull/2792
2402
+ [#2796]: https://github.com/tokio-rs/tokio/pull/2796
2403
+ [#2806]: https://github.com/tokio-rs/tokio/pull/2806
2404
+ [#2809]: https://github.com/tokio-rs/tokio/pull/2809
2405
+ [#2814]: https://github.com/tokio-rs/tokio/pull/2814
2406
+ [#2822]: https://github.com/tokio-rs/tokio/pull/2822
2407
+ [#2823]: https://github.com/tokio-rs/tokio/pull/2823
2408
+ [#2826]: https://github.com/tokio-rs/tokio/pull/2826
2409
+ [#2828]: https://github.com/tokio-rs/tokio/pull/2828
2410
+ [#2833]: https://github.com/tokio-rs/tokio/pull/2833
2411
+ [#2835]: https://github.com/tokio-rs/tokio/pull/2835
2412
+ [#2840]: https://github.com/tokio-rs/tokio/pull/2840
2413
+ [#2845]: https://github.com/tokio-rs/tokio/pull/2845
2414
+ [#2856]: https://github.com/tokio-rs/tokio/pull/2856
2415
+ [#2861]: https://github.com/tokio-rs/tokio/pull/2861
2416
+ [#2876]: https://github.com/tokio-rs/tokio/pull/2876
2417
+ [#2882]: https://github.com/tokio-rs/tokio/pull/2882
2418
+ [#2885]: https://github.com/tokio-rs/tokio/pull/2885
2419
+ [#2890]: https://github.com/tokio-rs/tokio/pull/2890
2420
+ [#2893]: https://github.com/tokio-rs/tokio/pull/2893
2421
+ [#2897]: https://github.com/tokio-rs/tokio/pull/2897
2422
+ [#2908]: https://github.com/tokio-rs/tokio/pull/2908
2423
+ [#2911]: https://github.com/tokio-rs/tokio/pull/2911
2424
+ [#2919]: https://github.com/tokio-rs/tokio/pull/2919
2425
+ [#2920]: https://github.com/tokio-rs/tokio/pull/2920
2426
+ [#2930]: https://github.com/tokio-rs/tokio/pull/2930
2427
+ [#2934]: https://github.com/tokio-rs/tokio/pull/2934
2428
+ [#2954]: https://github.com/tokio-rs/tokio/pull/2954
2429
+
2430
+ # 0.2.22 (July 21, 2020)
2431
+
2432
+ ### Fixes
2433
+
2434
+ - docs: misc improvements ([#2572], [#2658], [#2663], [#2656], [#2647], [#2630], [#2487], [#2621],
2435
+ [#2624], [#2600], [#2623], [#2622], [#2577], [#2569], [#2589], [#2575], [#2540], [#2564], [#2567],
2436
+ [#2520], [#2521], [#2493])
2437
+ - rt: allow calls to `block_on` inside calls to `block_in_place` that are
2438
+ themselves inside `block_on` ([#2645])
2439
+ - net: fix non-portable behavior when dropping `TcpStream` `OwnedWriteHalf` ([#2597])
2440
+ - io: improve stack usage by allocating large buffers on directly on the heap
2441
+ ([#2634])
2442
+ - io: fix unsound pin projection in `AsyncReadExt::read_buf` and
2443
+ `AsyncWriteExt::write_buf` ([#2612])
2444
+ - io: fix unnecessary zeroing for `AsyncRead` implementors ([#2525])
2445
+ - io: Fix `BufReader` not correctly forwarding `poll_write_buf` ([#2654])
2446
+ - io: fix panic in `AsyncReadExt::read_line` ([#2541])
2447
+
2448
+ ### Changes
2449
+
2450
+ - coop: returning `Poll::Pending` no longer decrements the task budget ([#2549])
2451
+
2452
+ ### Added
2453
+
2454
+ - io: little-endian variants of `AsyncReadExt` and `AsyncWriteExt` methods
2455
+ ([#1915])
2456
+ - task: add [`tracing`] instrumentation to spawned tasks ([#2655])
2457
+ - sync: allow unsized types in `Mutex` and `RwLock` (via `default` constructors)
2458
+ ([#2615])
2459
+ - net: add `ToSocketAddrs` implementation for `&[SocketAddr]` ([#2604])
2460
+ - fs: add `OpenOptionsExt` for `OpenOptions` ([#2515])
2461
+ - fs: add `DirBuilder` ([#2524])
2462
+
2463
+ [`tracing`]: https://crates.io/crates/tracing
2464
+ [#1915]: https://github.com/tokio-rs/tokio/pull/1915
2465
+ [#2487]: https://github.com/tokio-rs/tokio/pull/2487
2466
+ [#2493]: https://github.com/tokio-rs/tokio/pull/2493
2467
+ [#2515]: https://github.com/tokio-rs/tokio/pull/2515
2468
+ [#2520]: https://github.com/tokio-rs/tokio/pull/2520
2469
+ [#2521]: https://github.com/tokio-rs/tokio/pull/2521
2470
+ [#2524]: https://github.com/tokio-rs/tokio/pull/2524
2471
+ [#2525]: https://github.com/tokio-rs/tokio/pull/2525
2472
+ [#2540]: https://github.com/tokio-rs/tokio/pull/2540
2473
+ [#2541]: https://github.com/tokio-rs/tokio/pull/2541
2474
+ [#2549]: https://github.com/tokio-rs/tokio/pull/2549
2475
+ [#2564]: https://github.com/tokio-rs/tokio/pull/2564
2476
+ [#2567]: https://github.com/tokio-rs/tokio/pull/2567
2477
+ [#2569]: https://github.com/tokio-rs/tokio/pull/2569
2478
+ [#2572]: https://github.com/tokio-rs/tokio/pull/2572
2479
+ [#2575]: https://github.com/tokio-rs/tokio/pull/2575
2480
+ [#2577]: https://github.com/tokio-rs/tokio/pull/2577
2481
+ [#2589]: https://github.com/tokio-rs/tokio/pull/2589
2482
+ [#2597]: https://github.com/tokio-rs/tokio/pull/2597
2483
+ [#2600]: https://github.com/tokio-rs/tokio/pull/2600
2484
+ [#2604]: https://github.com/tokio-rs/tokio/pull/2604
2485
+ [#2612]: https://github.com/tokio-rs/tokio/pull/2612
2486
+ [#2615]: https://github.com/tokio-rs/tokio/pull/2615
2487
+ [#2621]: https://github.com/tokio-rs/tokio/pull/2621
2488
+ [#2622]: https://github.com/tokio-rs/tokio/pull/2622
2489
+ [#2623]: https://github.com/tokio-rs/tokio/pull/2623
2490
+ [#2624]: https://github.com/tokio-rs/tokio/pull/2624
2491
+ [#2630]: https://github.com/tokio-rs/tokio/pull/2630
2492
+ [#2634]: https://github.com/tokio-rs/tokio/pull/2634
2493
+ [#2645]: https://github.com/tokio-rs/tokio/pull/2645
2494
+ [#2647]: https://github.com/tokio-rs/tokio/pull/2647
2495
+ [#2654]: https://github.com/tokio-rs/tokio/pull/2654
2496
+ [#2655]: https://github.com/tokio-rs/tokio/pull/2655
2497
+ [#2656]: https://github.com/tokio-rs/tokio/pull/2656
2498
+ [#2658]: https://github.com/tokio-rs/tokio/pull/2658
2499
+ [#2663]: https://github.com/tokio-rs/tokio/pull/2663
2500
+
2501
+ # 0.2.21 (May 13, 2020)
2502
+
2503
+ ### Fixes
2504
+
2505
+ - macros: disambiguate built-in `#[test]` attribute in macro expansion ([#2503])
2506
+ - rt: `LocalSet` and task budgeting ([#2462]).
2507
+ - rt: task budgeting with `block_in_place` ([#2502]).
2508
+ - sync: release `broadcast` channel memory without sending a value ([#2509]).
2509
+ - time: notify when resetting a `Delay` to a time in the past ([#2290])
2510
+
2511
+ ### Added
2512
+
2513
+ - io: `get_mut`, `get_ref`, and `into_inner` to `Lines` ([#2450]).
2514
+ - io: `mio::Ready` argument to `PollEvented` ([#2419]).
2515
+ - os: illumos support ([#2486]).
2516
+ - rt: `Handle::spawn_blocking` ([#2501]).
2517
+ - sync: `OwnedMutexGuard` for `Arc<Mutex<T>>` ([#2455]).
2518
+
2519
+ [#2290]: https://github.com/tokio-rs/tokio/pull/2290
2520
+ [#2419]: https://github.com/tokio-rs/tokio/pull/2419
2521
+ [#2450]: https://github.com/tokio-rs/tokio/pull/2450
2522
+ [#2455]: https://github.com/tokio-rs/tokio/pull/2455
2523
+ [#2462]: https://github.com/tokio-rs/tokio/pull/2462
2524
+ [#2486]: https://github.com/tokio-rs/tokio/pull/2486
2525
+ [#2501]: https://github.com/tokio-rs/tokio/pull/2501
2526
+ [#2502]: https://github.com/tokio-rs/tokio/pull/2502
2527
+ [#2503]: https://github.com/tokio-rs/tokio/pull/2503
2528
+ [#2509]: https://github.com/tokio-rs/tokio/pull/2509
2529
+
2530
+ # 0.2.20 (April 28, 2020)
2531
+
2532
+ ### Fixes
2533
+
2534
+ - sync: `broadcast` closing the channel no longer requires capacity ([#2448]).
2535
+ - rt: regression when configuring runtime with `max_threads` less than number of CPUs ([#2457]).
2536
+
2537
+ [#2448]: https://github.com/tokio-rs/tokio/pull/2448
2538
+ [#2457]: https://github.com/tokio-rs/tokio/pull/2457
2539
+
2540
+ # 0.2.19 (April 24, 2020)
2541
+
2542
+ ### Fixes
2543
+
2544
+ - docs: misc improvements ([#2400], [#2405], [#2414], [#2420], [#2423], [#2426], [#2427], [#2434], [#2436], [#2440]).
2545
+ - rt: support `block_in_place` in more contexts ([#2409], [#2410]).
2546
+ - stream: no panic in `merge()` and `chain()` when using `size_hint()` ([#2430]).
2547
+ - task: include visibility modifier when defining a task-local ([#2416]).
2548
+
2549
+ ### Added
2550
+
2551
+ - rt: `runtime::Handle::block_on` ([#2437]).
2552
+ - sync: owned `Semaphore` permit ([#2421]).
2553
+ - tcp: owned split ([#2270]).
2554
+
2555
+ [#2270]: https://github.com/tokio-rs/tokio/pull/2270
2556
+ [#2400]: https://github.com/tokio-rs/tokio/pull/2400
2557
+ [#2405]: https://github.com/tokio-rs/tokio/pull/2405
2558
+ [#2409]: https://github.com/tokio-rs/tokio/pull/2409
2559
+ [#2410]: https://github.com/tokio-rs/tokio/pull/2410
2560
+ [#2414]: https://github.com/tokio-rs/tokio/pull/2414
2561
+ [#2416]: https://github.com/tokio-rs/tokio/pull/2416
2562
+ [#2420]: https://github.com/tokio-rs/tokio/pull/2420
2563
+ [#2421]: https://github.com/tokio-rs/tokio/pull/2421
2564
+ [#2423]: https://github.com/tokio-rs/tokio/pull/2423
2565
+ [#2426]: https://github.com/tokio-rs/tokio/pull/2426
2566
+ [#2427]: https://github.com/tokio-rs/tokio/pull/2427
2567
+ [#2430]: https://github.com/tokio-rs/tokio/pull/2430
2568
+ [#2434]: https://github.com/tokio-rs/tokio/pull/2434
2569
+ [#2436]: https://github.com/tokio-rs/tokio/pull/2436
2570
+ [#2437]: https://github.com/tokio-rs/tokio/pull/2437
2571
+ [#2440]: https://github.com/tokio-rs/tokio/pull/2440
2572
+
2573
+ # 0.2.18 (April 12, 2020)
2574
+
2575
+ ### Fixes
2576
+
2577
+ - task: `LocalSet` was incorrectly marked as `Send` ([#2398])
2578
+ - io: correctly report `WriteZero` failure in `write_int` ([#2334])
2579
+
2580
+ [#2334]: https://github.com/tokio-rs/tokio/pull/2334
2581
+ [#2398]: https://github.com/tokio-rs/tokio/pull/2398
2582
+
2583
+ # 0.2.17 (April 9, 2020)
2584
+
2585
+ ### Fixes
2586
+
2587
+ - rt: bug in work-stealing queue ([#2387])
2588
+
2589
+ ### Changes
2590
+
2591
+ - rt: threadpool uses logical CPU count instead of physical by default ([#2391])
2592
+
2593
+ [#2387]: https://github.com/tokio-rs/tokio/pull/2387
2594
+ [#2391]: https://github.com/tokio-rs/tokio/pull/2391
2595
+
2596
+ # 0.2.16 (April 3, 2020)
2597
+
2598
+ ### Fixes
2599
+
2600
+ - sync: fix a regression where `Mutex`, `Semaphore`, and `RwLock` futures no
2601
+ longer implement `Sync` ([#2375])
2602
+ - fs: fix `fs::copy` not copying file permissions ([#2354])
2603
+
2604
+ ### Added
2605
+
2606
+ - time: added `deadline` method to `delay_queue::Expired` ([#2300])
2607
+ - io: added `StreamReader` ([#2052])
2608
+
2609
+ [#2052]: https://github.com/tokio-rs/tokio/pull/2052
2610
+ [#2300]: https://github.com/tokio-rs/tokio/pull/2300
2611
+ [#2354]: https://github.com/tokio-rs/tokio/pull/2354
2612
+ [#2375]: https://github.com/tokio-rs/tokio/pull/2375
2613
+
2614
+ # 0.2.15 (April 2, 2020)
2615
+
2616
+ ### Fixes
2617
+
2618
+ - rt: fix queue regression ([#2362]).
2619
+
2620
+ ### Added
2621
+
2622
+ - sync: Add disarm to `mpsc::Sender` ([#2358]).
2623
+
2624
+ [#2358]: https://github.com/tokio-rs/tokio/pull/2358
2625
+ [#2362]: https://github.com/tokio-rs/tokio/pull/2362
2626
+
2627
+ # 0.2.14 (April 1, 2020)
2628
+
2629
+ ### Fixes
2630
+
2631
+ - rt: concurrency bug in scheduler ([#2273]).
2632
+ - rt: concurrency bug with shell runtime ([#2333]).
2633
+ - test-util: correct pause/resume of time ([#2253]).
2634
+ - time: `DelayQueue` correct wakeup after `insert` ([#2285]).
2635
+
2636
+ ### Added
2637
+
2638
+ - io: impl `RawFd`, `AsRawHandle` for std io types ([#2335]).
2639
+ - rt: automatic cooperative task yielding ([#2160], [#2343], [#2349]).
2640
+ - sync: `RwLock::into_inner` ([#2321]).
2641
+
2642
+ ### Changed
2643
+
2644
+ - sync: semaphore, mutex internals rewritten to avoid allocations ([#2325]).
2645
+
2646
+ [#2160]: https://github.com/tokio-rs/tokio/pull/2160
2647
+ [#2253]: https://github.com/tokio-rs/tokio/pull/2253
2648
+ [#2273]: https://github.com/tokio-rs/tokio/pull/2273
2649
+ [#2285]: https://github.com/tokio-rs/tokio/pull/2285
2650
+ [#2321]: https://github.com/tokio-rs/tokio/pull/2321
2651
+ [#2325]: https://github.com/tokio-rs/tokio/pull/2325
2652
+ [#2333]: https://github.com/tokio-rs/tokio/pull/2333
2653
+ [#2335]: https://github.com/tokio-rs/tokio/pull/2335
2654
+ [#2343]: https://github.com/tokio-rs/tokio/pull/2343
2655
+ [#2349]: https://github.com/tokio-rs/tokio/pull/2349
2656
+
2657
+ # 0.2.13 (February 28, 2020)
2658
+
2659
+ ### Fixes
2660
+
2661
+ - macros: unresolved import in `pin!` ([#2281]).
2662
+
2663
+ [#2281]: https://github.com/tokio-rs/tokio/pull/2281
2664
+
2665
+ # 0.2.12 (February 27, 2020)
2666
+
2667
+ ### Fixes
2668
+
2669
+ - net: `UnixStream::poll_shutdown` should call `shutdown(Write)` ([#2245]).
2670
+ - process: Wake up read and write on `EPOLLERR` ([#2218]).
2671
+ - rt: potential deadlock when using `block_in_place` and shutting down the
2672
+ runtime ([#2119]).
2673
+ - rt: only detect number of CPUs if `core_threads` not specified ([#2238]).
2674
+ - sync: reduce `watch::Receiver` struct size ([#2191]).
2675
+ - time: succeed when setting delay of `$MAX-1` ([#2184]).
2676
+ - time: avoid having to poll `DelayQueue` after inserting new delay ([#2217]).
2677
+
2678
+ ### Added
2679
+
2680
+ - macros: `pin!` variant that assigns to identifier and pins ([#2274]).
2681
+ - net: impl `Stream` for `Listener` types ([#2275]).
2682
+ - rt: `Runtime::shutdown_timeout` waits for runtime to shutdown for specified
2683
+ duration ([#2186]).
2684
+ - stream: `StreamMap` merges streams and can insert / remove streams at
2685
+ runtime ([#2185]).
2686
+ - stream: `StreamExt::skip()` skips a fixed number of items ([#2204]).
2687
+ - stream: `StreamExt::skip_while()` skips items based on a predicate ([#2205]).
2688
+ - sync: `Notify` provides basic `async` / `await` task notification ([#2210]).
2689
+ - sync: `Mutex::into_inner` retrieves guarded data ([#2250]).
2690
+ - sync: `mpsc::Sender::send_timeout` sends, waiting for up to specified duration
2691
+ for channel capacity ([#2227]).
2692
+ - time: impl `Ord` and `Hash` for `Instant` ([#2239]).
2693
+
2694
+ [#2119]: https://github.com/tokio-rs/tokio/pull/2119
2695
+ [#2184]: https://github.com/tokio-rs/tokio/pull/2184
2696
+ [#2185]: https://github.com/tokio-rs/tokio/pull/2185
2697
+ [#2186]: https://github.com/tokio-rs/tokio/pull/2186
2698
+ [#2191]: https://github.com/tokio-rs/tokio/pull/2191
2699
+ [#2204]: https://github.com/tokio-rs/tokio/pull/2204
2700
+ [#2205]: https://github.com/tokio-rs/tokio/pull/2205
2701
+ [#2210]: https://github.com/tokio-rs/tokio/pull/2210
2702
+ [#2217]: https://github.com/tokio-rs/tokio/pull/2217
2703
+ [#2218]: https://github.com/tokio-rs/tokio/pull/2218
2704
+ [#2227]: https://github.com/tokio-rs/tokio/pull/2227
2705
+ [#2238]: https://github.com/tokio-rs/tokio/pull/2238
2706
+ [#2239]: https://github.com/tokio-rs/tokio/pull/2239
2707
+ [#2245]: https://github.com/tokio-rs/tokio/pull/2245
2708
+ [#2250]: https://github.com/tokio-rs/tokio/pull/2250
2709
+ [#2274]: https://github.com/tokio-rs/tokio/pull/2274
2710
+ [#2275]: https://github.com/tokio-rs/tokio/pull/2275
2711
+
2712
+ # 0.2.11 (January 27, 2020)
2713
+
2714
+ ### Fixes
2715
+
2716
+ - docs: misc fixes and tweaks ([#2155], [#2103], [#2027], [#2167], [#2175]).
2717
+ - macros: handle generics in `#[tokio::main]` method ([#2177]).
2718
+ - sync: `broadcast` potential lost notifications ([#2135]).
2719
+ - rt: improve "no runtime" panic messages ([#2145]).
2720
+
2721
+ ### Added
2722
+
2723
+ - optional support for using `parking_lot` internally ([#2164]).
2724
+ - fs: `fs::copy`, an async version of `std::fs::copy` ([#2079]).
2725
+ - macros: `select!` waits for the first branch to complete ([#2152]).
2726
+ - macros: `join!` waits for all branches to complete ([#2158]).
2727
+ - macros: `try_join!` waits for all branches to complete or the first error ([#2169]).
2728
+ - macros: `pin!` pins a value to the stack ([#2163]).
2729
+ - net: `ReadHalf::poll()` and `ReadHalf::poll_peak` ([#2151])
2730
+ - stream: `StreamExt::timeout()` sets a per-item max duration ([#2149]).
2731
+ - stream: `StreamExt::fold()` applies a function, producing a single value. ([#2122]).
2732
+ - sync: impl `Eq`, `PartialEq` for `oneshot::RecvError` ([#2168]).
2733
+ - task: methods for inspecting the `JoinError` cause ([#2051]).
2734
+
2735
+ [#2027]: https://github.com/tokio-rs/tokio/pull/2027
2736
+ [#2051]: https://github.com/tokio-rs/tokio/pull/2051
2737
+ [#2079]: https://github.com/tokio-rs/tokio/pull/2079
2738
+ [#2103]: https://github.com/tokio-rs/tokio/pull/2103
2739
+ [#2122]: https://github.com/tokio-rs/tokio/pull/2122
2740
+ [#2135]: https://github.com/tokio-rs/tokio/pull/2135
2741
+ [#2145]: https://github.com/tokio-rs/tokio/pull/2145
2742
+ [#2149]: https://github.com/tokio-rs/tokio/pull/2149
2743
+ [#2151]: https://github.com/tokio-rs/tokio/pull/2151
2744
+ [#2152]: https://github.com/tokio-rs/tokio/pull/2152
2745
+ [#2155]: https://github.com/tokio-rs/tokio/pull/2155
2746
+ [#2158]: https://github.com/tokio-rs/tokio/pull/2158
2747
+ [#2163]: https://github.com/tokio-rs/tokio/pull/2163
2748
+ [#2164]: https://github.com/tokio-rs/tokio/pull/2164
2749
+ [#2167]: https://github.com/tokio-rs/tokio/pull/2167
2750
+ [#2168]: https://github.com/tokio-rs/tokio/pull/2168
2751
+ [#2169]: https://github.com/tokio-rs/tokio/pull/2169
2752
+ [#2175]: https://github.com/tokio-rs/tokio/pull/2175
2753
+ [#2177]: https://github.com/tokio-rs/tokio/pull/2177
2754
+
2755
+ # 0.2.10 (January 21, 2020)
2756
+
2757
+ ### Fixes
2758
+
2759
+ - `#[tokio::main]` when `rt-core` feature flag is not enabled ([#2139]).
2760
+ - remove `AsyncBufRead` from `BufStream` impl block ([#2108]).
2761
+ - potential undefined behavior when implementing `AsyncRead` incorrectly ([#2030]).
2762
+
2763
+ ### Added
2764
+
2765
+ - `BufStream::with_capacity` ([#2125]).
2766
+ - impl `From` and `Default` for `RwLock` ([#2089]).
2767
+ - `io::ReadHalf::is_pair_of` checks if provided `WriteHalf` is for the same
2768
+ underlying object ([#1762], [#2144]).
2769
+ - `runtime::Handle::try_current()` returns a handle to the current runtime ([#2118]).
2770
+ - `stream::empty()` returns an immediately ready empty stream ([#2092]).
2771
+ - `stream::once(val)` returns a stream that yields a single value: `val` ([#2094]).
2772
+ - `stream::pending()` returns a stream that never becomes ready ([#2092]).
2773
+ - `StreamExt::chain()` sequences a second stream after the first completes ([#2093]).
2774
+ - `StreamExt::collect()` transform a stream into a collection ([#2109]).
2775
+ - `StreamExt::fuse` ends the stream after the first `None` ([#2085]).
2776
+ - `StreamExt::merge` combines two streams, yielding values as they become ready ([#2091]).
2777
+ - Task-local storage ([#2126]).
2778
+
2779
+ [#1762]: https://github.com/tokio-rs/tokio/pull/1762
2780
+ [#2030]: https://github.com/tokio-rs/tokio/pull/2030
2781
+ [#2085]: https://github.com/tokio-rs/tokio/pull/2085
2782
+ [#2089]: https://github.com/tokio-rs/tokio/pull/2089
2783
+ [#2091]: https://github.com/tokio-rs/tokio/pull/2091
2784
+ [#2092]: https://github.com/tokio-rs/tokio/pull/2092
2785
+ [#2093]: https://github.com/tokio-rs/tokio/pull/2093
2786
+ [#2094]: https://github.com/tokio-rs/tokio/pull/2094
2787
+ [#2108]: https://github.com/tokio-rs/tokio/pull/2108
2788
+ [#2109]: https://github.com/tokio-rs/tokio/pull/2109
2789
+ [#2118]: https://github.com/tokio-rs/tokio/pull/2118
2790
+ [#2125]: https://github.com/tokio-rs/tokio/pull/2125
2791
+ [#2126]: https://github.com/tokio-rs/tokio/pull/2126
2792
+ [#2139]: https://github.com/tokio-rs/tokio/pull/2139
2793
+ [#2144]: https://github.com/tokio-rs/tokio/pull/2144
2794
+
2795
+ # 0.2.9 (January 9, 2020)
2796
+
2797
+ ### Fixes
2798
+
2799
+ - `AsyncSeek` impl for `File` ([#1986]).
2800
+ - rt: shutdown deadlock in `threaded_scheduler` ([#2074], [#2082]).
2801
+ - rt: memory ordering when dropping `JoinHandle` ([#2044]).
2802
+ - docs: misc API documentation fixes and improvements.
2803
+
2804
+ [#1986]: https://github.com/tokio-rs/tokio/pull/1986
2805
+ [#2044]: https://github.com/tokio-rs/tokio/pull/2044
2806
+ [#2074]: https://github.com/tokio-rs/tokio/pull/2074
2807
+ [#2082]: https://github.com/tokio-rs/tokio/pull/2082
2808
+
2809
+ # 0.2.8 (January 7, 2020)
2810
+
2811
+ ### Fixes
2812
+
2813
+ - depend on new version of `tokio-macros`.
2814
+
2815
+ # 0.2.7 (January 7, 2020)
2816
+
2817
+ ### Fixes
2818
+
2819
+ - potential deadlock when dropping `basic_scheduler` Runtime.
2820
+ - calling `spawn_blocking` from within a `spawn_blocking` ([#2006]).
2821
+ - storing a `Runtime` instance in a thread-local ([#2011]).
2822
+ - miscellaneous documentation fixes.
2823
+ - rt: fix `Waker::will_wake` to return true when tasks match ([#2045]).
2824
+ - test-util: `time::advance` runs pending tasks before changing the time ([#2059]).
2825
+
2826
+ ### Added
2827
+
2828
+ - `net::lookup_host` maps a `T: ToSocketAddrs` to a stream of `SocketAddrs` ([#1870]).
2829
+ - `process::Child` fields are made public to match `std` ([#2014]).
2830
+ - impl `Stream` for `sync::broadcast::Receiver` ([#2012]).
2831
+ - `sync::RwLock` provides an asynchronous read-write lock ([#1699]).
2832
+ - `runtime::Handle::current` returns the handle for the current runtime ([#2040]).
2833
+ - `StreamExt::filter` filters stream values according to a predicate ([#2001]).
2834
+ - `StreamExt::filter_map` simultaneously filter and map stream values ([#2001]).
2835
+ - `StreamExt::try_next` convenience for streams of `Result<T, E>` ([#2005]).
2836
+ - `StreamExt::take` limits a stream to a specified number of values ([#2025]).
2837
+ - `StreamExt::take_while` limits a stream based on a predicate ([#2029]).
2838
+ - `StreamExt::all` tests if every element of the stream matches a predicate ([#2035]).
2839
+ - `StreamExt::any` tests if any element of the stream matches a predicate ([#2034]).
2840
+ - `task::LocalSet.await` runs spawned tasks until the set is idle ([#1971]).
2841
+ - `time::DelayQueue::len` returns the number entries in the queue ([#1755]).
2842
+ - expose runtime options from the `#[tokio::main]` and `#[tokio::test]` ([#2022]).
2843
+
2844
+ [#1699]: https://github.com/tokio-rs/tokio/pull/1699
2845
+ [#1755]: https://github.com/tokio-rs/tokio/pull/1755
2846
+ [#1870]: https://github.com/tokio-rs/tokio/pull/1870
2847
+ [#1971]: https://github.com/tokio-rs/tokio/pull/1971
2848
+ [#2001]: https://github.com/tokio-rs/tokio/pull/2001
2849
+ [#2005]: https://github.com/tokio-rs/tokio/pull/2005
2850
+ [#2006]: https://github.com/tokio-rs/tokio/pull/2006
2851
+ [#2011]: https://github.com/tokio-rs/tokio/pull/2011
2852
+ [#2012]: https://github.com/tokio-rs/tokio/pull/2012
2853
+ [#2014]: https://github.com/tokio-rs/tokio/pull/2014
2854
+ [#2022]: https://github.com/tokio-rs/tokio/pull/2022
2855
+ [#2025]: https://github.com/tokio-rs/tokio/pull/2025
2856
+ [#2029]: https://github.com/tokio-rs/tokio/pull/2029
2857
+ [#2034]: https://github.com/tokio-rs/tokio/pull/2034
2858
+ [#2035]: https://github.com/tokio-rs/tokio/pull/2035
2859
+ [#2040]: https://github.com/tokio-rs/tokio/pull/2040
2860
+ [#2045]: https://github.com/tokio-rs/tokio/pull/2045
2861
+ [#2059]: https://github.com/tokio-rs/tokio/pull/2059
2862
+
2863
+ # 0.2.6 (December 19, 2019)
2864
+
2865
+ ### Fixes
2866
+
2867
+ - `fs::File::seek` API regression ([#1991]).
2868
+
2869
+ [#1991]: https://github.com/tokio-rs/tokio/pull/1991
2870
+
2871
+ # 0.2.5 (December 18, 2019)
2872
+
2873
+ ### Added
2874
+
2875
+ - `io::AsyncSeek` trait ([#1924]).
2876
+ - `Mutex::try_lock` ([#1939])
2877
+ - `mpsc::Receiver::try_recv` and `mpsc::UnboundedReceiver::try_recv` ([#1939]).
2878
+ - `writev` support for `TcpStream` ([#1956]).
2879
+ - `time::throttle` for throttling streams ([#1949]).
2880
+ - implement `Stream` for `time::DelayQueue` ([#1975]).
2881
+ - `sync::broadcast` provides a fan-out channel ([#1943]).
2882
+ - `sync::Semaphore` provides an async semaphore ([#1973]).
2883
+ - `stream::StreamExt` provides stream utilities ([#1962]).
2884
+
2885
+ ### Fixes
2886
+
2887
+ - deadlock risk while shutting down the runtime ([#1972]).
2888
+ - panic while shutting down the runtime ([#1978]).
2889
+ - `sync::MutexGuard` debug output ([#1961]).
2890
+ - misc doc improvements ([#1933], [#1934], [#1940], [#1942]).
2891
+
2892
+ ### Changes
2893
+
2894
+ - runtime threads are configured with `runtime::Builder::core_threads` and
2895
+ `runtime::Builder::max_threads`. `runtime::Builder::num_threads` is
2896
+ deprecated ([#1977]).
2897
+
2898
+ [#1924]: https://github.com/tokio-rs/tokio/pull/1924
2899
+ [#1933]: https://github.com/tokio-rs/tokio/pull/1933
2900
+ [#1934]: https://github.com/tokio-rs/tokio/pull/1934
2901
+ [#1939]: https://github.com/tokio-rs/tokio/pull/1939
2902
+ [#1940]: https://github.com/tokio-rs/tokio/pull/1940
2903
+ [#1942]: https://github.com/tokio-rs/tokio/pull/1942
2904
+ [#1943]: https://github.com/tokio-rs/tokio/pull/1943
2905
+ [#1949]: https://github.com/tokio-rs/tokio/pull/1949
2906
+ [#1956]: https://github.com/tokio-rs/tokio/pull/1956
2907
+ [#1961]: https://github.com/tokio-rs/tokio/pull/1961
2908
+ [#1962]: https://github.com/tokio-rs/tokio/pull/1962
2909
+ [#1972]: https://github.com/tokio-rs/tokio/pull/1972
2910
+ [#1973]: https://github.com/tokio-rs/tokio/pull/1973
2911
+ [#1975]: https://github.com/tokio-rs/tokio/pull/1975
2912
+ [#1977]: https://github.com/tokio-rs/tokio/pull/1977
2913
+ [#1978]: https://github.com/tokio-rs/tokio/pull/1978
2914
+
2915
+ # 0.2.4 (December 6, 2019)
2916
+
2917
+ ### Fixes
2918
+
2919
+ - `sync::Mutex` deadlock when `lock()` future is dropped early ([#1898]).
2920
+
2921
+ [#1898]: https://github.com/tokio-rs/tokio/pull/1898
2922
+
2923
+ # 0.2.3 (December 6, 2019)
2924
+
2925
+ ### Added
2926
+
2927
+ - read / write integers using `AsyncReadExt` and `AsyncWriteExt` ([#1863]).
2928
+ - `read_buf` / `write_buf` for reading / writing `Buf` / `BufMut` ([#1881]).
2929
+ - `TcpStream::poll_peek` - pollable API for performing TCP peek ([#1864]).
2930
+ - `sync::oneshot::error::TryRecvError` provides variants to detect the error
2931
+ kind ([#1874]).
2932
+ - `LocalSet::block_on` accepts `!'static` task ([#1882]).
2933
+ - `task::JoinError` is now `Sync` ([#1888]).
2934
+ - impl conversions between `tokio::time::Instant` and
2935
+ `std::time::Instant` ([#1904]).
2936
+
2937
+ ### Fixes
2938
+
2939
+ - calling `spawn_blocking` after runtime shutdown ([#1875]).
2940
+ - `LocalSet` drop infinite loop ([#1892]).
2941
+ - `LocalSet` hang under load ([#1905]).
2942
+ - improved documentation ([#1865], [#1866], [#1868], [#1874], [#1876], [#1911]).
2943
+
2944
+ [#1863]: https://github.com/tokio-rs/tokio/pull/1863
2945
+ [#1864]: https://github.com/tokio-rs/tokio/pull/1864
2946
+ [#1865]: https://github.com/tokio-rs/tokio/pull/1865
2947
+ [#1866]: https://github.com/tokio-rs/tokio/pull/1866
2948
+ [#1868]: https://github.com/tokio-rs/tokio/pull/1868
2949
+ [#1874]: https://github.com/tokio-rs/tokio/pull/1874
2950
+ [#1875]: https://github.com/tokio-rs/tokio/pull/1875
2951
+ [#1876]: https://github.com/tokio-rs/tokio/pull/1876
2952
+ [#1881]: https://github.com/tokio-rs/tokio/pull/1881
2953
+ [#1882]: https://github.com/tokio-rs/tokio/pull/1882
2954
+ [#1888]: https://github.com/tokio-rs/tokio/pull/1888
2955
+ [#1892]: https://github.com/tokio-rs/tokio/pull/1892
2956
+ [#1904]: https://github.com/tokio-rs/tokio/pull/1904
2957
+ [#1905]: https://github.com/tokio-rs/tokio/pull/1905
2958
+ [#1911]: https://github.com/tokio-rs/tokio/pull/1911
2959
+
2960
+ # 0.2.2 (November 29, 2019)
2961
+
2962
+ ### Fixes
2963
+
2964
+ - scheduling with `basic_scheduler` ([#1861]).
2965
+ - update `spawn` panic message to specify that a task scheduler is required ([#1839]).
2966
+ - API docs example for `runtime::Builder` to include a task scheduler ([#1841]).
2967
+ - general documentation ([#1834]).
2968
+ - building on illumos/solaris ([#1772]).
2969
+ - panic when dropping `LocalSet` ([#1843]).
2970
+ - API docs mention the required Cargo features for `Builder::{basic, threaded}_scheduler` ([#1858]).
2971
+
2972
+ ### Added
2973
+
2974
+ - impl `Stream` for `signal::unix::Signal` ([#1849]).
2975
+ - API docs for platform specific behavior of `signal::ctrl_c` and `signal::unix::Signal` ([#1854]).
2976
+ - API docs for `signal::unix::Signal::{recv, poll_recv}` and `signal::windows::CtrlBreak::{recv, poll_recv}` ([#1854]).
2977
+ - `File::into_std` and `File::try_into_std` methods ([#1856]).
2978
+
2979
+ [#1772]: https://github.com/tokio-rs/tokio/pull/1772
2980
+ [#1834]: https://github.com/tokio-rs/tokio/pull/1834
2981
+ [#1839]: https://github.com/tokio-rs/tokio/pull/1839
2982
+ [#1841]: https://github.com/tokio-rs/tokio/pull/1841
2983
+ [#1843]: https://github.com/tokio-rs/tokio/pull/1843
2984
+ [#1849]: https://github.com/tokio-rs/tokio/pull/1849
2985
+ [#1854]: https://github.com/tokio-rs/tokio/pull/1854
2986
+ [#1856]: https://github.com/tokio-rs/tokio/pull/1856
2987
+ [#1858]: https://github.com/tokio-rs/tokio/pull/1858
2988
+ [#1861]: https://github.com/tokio-rs/tokio/pull/1861
2989
+
2990
+ # 0.2.1 (November 26, 2019)
2991
+
2992
+ ### Fixes
2993
+
2994
+ - API docs for `TcpListener::incoming`, `UnixListener::incoming` ([#1831]).
2995
+
2996
+ ### Added
2997
+
2998
+ - `tokio::task::LocalSet` provides a strategy for spawning `!Send` tasks ([#1733]).
2999
+ - export `tokio::time::Elapsed` ([#1826]).
3000
+ - impl `AsRawFd`, `AsRawHandle` for `tokio::fs::File` ([#1827]).
3001
+
3002
+ [#1733]: https://github.com/tokio-rs/tokio/pull/1733
3003
+ [#1826]: https://github.com/tokio-rs/tokio/pull/1826
3004
+ [#1827]: https://github.com/tokio-rs/tokio/pull/1827
3005
+ [#1831]: https://github.com/tokio-rs/tokio/pull/1831
3006
+
3007
+ # 0.2.0 (November 26, 2019)
3008
+
3009
+ A major breaking change. Most implementation and APIs have changed one way or
3010
+ another. This changelog entry contains a highlight
3011
+
3012
+ ### Changed
3013
+
3014
+ - APIs are updated to use `async / await`.
3015
+ - most `tokio-*` crates are collapsed into this crate.
3016
+ - Scheduler is rewritten.
3017
+ - `tokio::spawn` returns a `JoinHandle`.
3018
+ - A single I/O / timer is used per runtime.
3019
+ - I/O driver uses a concurrent slab for allocating state.
3020
+ - components are made available via feature flag.
3021
+ - Use `bytes` 0.5
3022
+ - `tokio::codec` is moved to `tokio-util`.
3023
+
3024
+ ### Removed
3025
+
3026
+ - Standalone `timer` and `net` drivers are removed, use `Runtime` instead
3027
+ - `current_thread` runtime is removed, use `tokio::runtime::Runtime` with
3028
+ `basic_scheduler` instead.
3029
+
3030
+ # 0.1.21 (May 30, 2019)
3031
+
3032
+ ### Changed
3033
+
3034
+ - Bump `tokio-trace-core` version to 0.2 ([#1111]).
3035
+
3036
+ [#1111]: https://github.com/tokio-rs/tokio/pull/1111
3037
+
3038
+ # 0.1.20 (May 14, 2019)
3039
+
3040
+ ### Added
3041
+
3042
+ - `tokio::runtime::Builder::panic_handler` allows configuring handling
3043
+ panics on the runtime ([#1055]).
3044
+
3045
+ [#1055]: https://github.com/tokio-rs/tokio/pull/1055
3046
+
3047
+ # 0.1.19 (April 22, 2019)
3048
+
3049
+ ### Added
3050
+
3051
+ - Re-export `tokio::sync::Mutex` primitive ([#964]).
3052
+
3053
+ [#964]: https://github.com/tokio-rs/tokio/pull/964
3054
+
3055
+ # 0.1.18 (March 22, 2019)
3056
+
3057
+ ### Added
3058
+
3059
+ - `TypedExecutor` re-export and implementations ([#993]).
3060
+
3061
+ [#993]: https://github.com/tokio-rs/tokio/pull/993
3062
+
3063
+ # 0.1.17 (March 13, 2019)
3064
+
3065
+ ### Added
3066
+
3067
+ - Propagate trace subscriber in the runtime ([#966]).
3068
+
3069
+ [#966]: https://github.com/tokio-rs/tokio/pull/966
3070
+
3071
+ # 0.1.16 (March 1, 2019)
3072
+
3073
+ ### Fixed
3074
+
3075
+ - async-await: track latest nightly changes ([#940]).
3076
+
3077
+ ### Added
3078
+
3079
+ - `sync::Watch`, a single value broadcast channel ([#922]).
3080
+ - Async equivalent of read / write file helpers being added to `std` ([#896]).
3081
+
3082
+ [#896]: https://github.com/tokio-rs/tokio/pull/896
3083
+ [#922]: https://github.com/tokio-rs/tokio/pull/922
3084
+ [#940]: https://github.com/tokio-rs/tokio/pull/940
3085
+
3086
+ # 0.1.15 (January 24, 2019)
3087
+
3088
+ ### Added
3089
+
3090
+ - Re-export tokio-sync APIs ([#839]).
3091
+ - Stream enumerate combinator ([#832]).
3092
+
3093
+ [#832]: https://github.com/tokio-rs/tokio/pull/832
3094
+ [#839]: https://github.com/tokio-rs/tokio/pull/839
3095
+
3096
+ # 0.1.14 (January 6, 2019)
3097
+
3098
+ - Use feature flags to break up the crate, allowing users to pick & choose
3099
+ components ([#808]).
3100
+ - Export `UnixDatagram` and `UnixDatagramFramed` ([#772]).
3101
+
3102
+ [#772]: https://github.com/tokio-rs/tokio/pull/772
3103
+ [#808]: https://github.com/tokio-rs/tokio/pull/808
3104
+
3105
+ # 0.1.13 (November 21, 2018)
3106
+
3107
+ - Fix `Runtime::reactor()` when no tasks are spawned ([#721]).
3108
+ - `runtime::Builder` no longer uses deprecated methods ([#749]).
3109
+ - Provide `after_start` and `before_stop` configuration settings for
3110
+ `Runtime` ([#756]).
3111
+ - Implement throttle stream combinator ([#736]).
3112
+
3113
+ [#721]: https://github.com/tokio-rs/tokio/pull/721
3114
+ [#736]: https://github.com/tokio-rs/tokio/pull/736
3115
+ [#749]: https://github.com/tokio-rs/tokio/pull/749
3116
+ [#756]: https://github.com/tokio-rs/tokio/pull/756
3117
+
3118
+ # 0.1.12 (October 23, 2018)
3119
+
3120
+ - runtime: expose `keep_alive` on runtime builder ([#676]).
3121
+ - runtime: create a reactor per worker thread ([#660]).
3122
+ - codec: fix panic in `LengthDelimitedCodec` ([#682]).
3123
+ - io: re-export `tokio_io::io::read` function ([#689]).
3124
+ - runtime: check for executor re-entry in more places ([#708]).
3125
+
3126
+ [#660]: https://github.com/tokio-rs/tokio/pull/660
3127
+ [#676]: https://github.com/tokio-rs/tokio/pull/676
3128
+ [#682]: https://github.com/tokio-rs/tokio/pull/682
3129
+ [#689]: https://github.com/tokio-rs/tokio/pull/689
3130
+ [#708]: https://github.com/tokio-rs/tokio/pull/708
3131
+
3132
+ # 0.1.11 (September 28, 2018)
3133
+
3134
+ - Fix `tokio-async-await` dependency ([#675]).
3135
+
3136
+ [#675]: https://github.com/tokio-rs/tokio/pull/675
3137
+
3138
+ # 0.1.10 (September 27, 2018)
3139
+
3140
+ - Fix minimal versions
3141
+
3142
+ # 0.1.9 (September 27, 2018)
3143
+
3144
+ - Experimental async/await improvements ([#661]).
3145
+ - Re-export `TaskExecutor` from `tokio-current-thread` ([#652]).
3146
+ - Improve `Runtime` builder API ([#645]).
3147
+ - `tokio::run` panics when called from the context of an executor
3148
+ ([#646]).
3149
+ - Introduce `StreamExt` with a `timeout` helper ([#573]).
3150
+ - Move `length_delimited` into `tokio` ([#575]).
3151
+ - Re-organize `tokio::net` module ([#548]).
3152
+ - Re-export `tokio-current-thread::spawn` in current_thread runtime
3153
+ ([#579]).
3154
+
3155
+ [#548]: https://github.com/tokio-rs/tokio/pull/548
3156
+ [#573]: https://github.com/tokio-rs/tokio/pull/573
3157
+ [#575]: https://github.com/tokio-rs/tokio/pull/575
3158
+ [#579]: https://github.com/tokio-rs/tokio/pull/579
3159
+ [#645]: https://github.com/tokio-rs/tokio/pull/645
3160
+ [#646]: https://github.com/tokio-rs/tokio/pull/646
3161
+ [#652]: https://github.com/tokio-rs/tokio/pull/652
3162
+ [#661]: https://github.com/tokio-rs/tokio/pull/661
3163
+
3164
+ # 0.1.8 (August 23, 2018)
3165
+
3166
+ - Extract tokio::executor::current_thread to a sub crate ([#370])
3167
+ - Add `Runtime::block_on` ([#398])
3168
+ - Add `runtime::current_thread::block_on_all` ([#477])
3169
+ - Misc documentation improvements ([#450])
3170
+ - Implement `std::error::Error` for error types ([#501])
3171
+
3172
+ [#370]: https://github.com/tokio-rs/tokio/pull/370
3173
+ [#398]: https://github.com/tokio-rs/tokio/pull/398
3174
+ [#450]: https://github.com/tokio-rs/tokio/pull/450
3175
+ [#477]: https://github.com/tokio-rs/tokio/pull/477
3176
+ [#501]: https://github.com/tokio-rs/tokio/pull/501
3177
+
3178
+ # 0.1.7 (June 6, 2018)
3179
+
3180
+ - Add `Runtime::block_on` for concurrent runtime ([#391]).
3181
+ - Provide handle to `current_thread::Runtime` that allows spawning tasks from
3182
+ other threads ([#340]).
3183
+ - Provide `clock::now()`, a configurable source of time ([#381]).
3184
+
3185
+ [#340]: https://github.com/tokio-rs/tokio/pull/340
3186
+ [#381]: https://github.com/tokio-rs/tokio/pull/381
3187
+ [#391]: https://github.com/tokio-rs/tokio/pull/391
3188
+
3189
+ # 0.1.6 (May 2, 2018)
3190
+
3191
+ - Add asynchronous filesystem APIs ([#323]).
3192
+ - Add "current thread" runtime variant ([#308]).
3193
+ - `CurrentThread`: Expose inner `Park` instance.
3194
+ - Improve fairness of `CurrentThread` executor ([#313]).
3195
+
3196
+ [#308]: https://github.com/tokio-rs/tokio/pull/308
3197
+ [#313]: https://github.com/tokio-rs/tokio/pull/313
3198
+ [#323]: https://github.com/tokio-rs/tokio/pull/323
3199
+
3200
+ # 0.1.5 (March 30, 2018)
3201
+
3202
+ - Provide timer API ([#266])
3203
+
3204
+ [#266]: https://github.com/tokio-rs/tokio/pull/266
3205
+
3206
+ # 0.1.4 (March 22, 2018)
3207
+
3208
+ - Fix build on FreeBSD ([#218])
3209
+ - Shutdown the Runtime when the handle is dropped ([#214])
3210
+ - Set Runtime thread name prefix for worker threads ([#232])
3211
+ - Add builder for Runtime ([#234])
3212
+ - Extract TCP and UDP types into separate crates ([#224])
3213
+ - Optionally support futures 0.2.
3214
+
3215
+ [#214]: https://github.com/tokio-rs/tokio/pull/214
3216
+ [#218]: https://github.com/tokio-rs/tokio/pull/218
3217
+ [#224]: https://github.com/tokio-rs/tokio/pull/224
3218
+ [#232]: https://github.com/tokio-rs/tokio/pull/232
3219
+ [#234]: https://github.com/tokio-rs/tokio/pull/234
3220
+
3221
+ # 0.1.3 (March 09, 2018)
3222
+
3223
+ - Fix `CurrentThread::turn` to block on idle ([#212]).
3224
+
3225
+ [#212]: https://github.com/tokio-rs/tokio/pull/212
3226
+
3227
+ # 0.1.2 (March 09, 2018)
3228
+
3229
+ - Introduce Tokio Runtime ([#141])
3230
+ - Provide `CurrentThread` for more flexible usage of current thread executor ([#141]).
3231
+ - Add Lio for platforms that support it ([#142]).
3232
+ - I/O resources now lazily bind to the reactor ([#160]).
3233
+ - Extract Reactor to dedicated crate ([#169])
3234
+ - Add facade to sub crates and add prelude ([#166]).
3235
+ - Switch TCP/UDP fns to poll\_ -> Poll<...> style ([#175])
3236
+
3237
+ [#141]: https://github.com/tokio-rs/tokio/pull/141
3238
+ [#142]: https://github.com/tokio-rs/tokio/pull/142
3239
+ [#160]: https://github.com/tokio-rs/tokio/pull/160
3240
+ [#166]: https://github.com/tokio-rs/tokio/pull/166
3241
+ [#169]: https://github.com/tokio-rs/tokio/pull/169
3242
+ [#175]: https://github.com/tokio-rs/tokio/pull/175
3243
+
3244
+ # 0.1.1 (February 09, 2018)
3245
+
3246
+ - Doc fixes
3247
+
3248
+ # 0.1.0 (February 07, 2018)
3249
+
3250
+ - Initial crate released based on [RFC](https://github.com/tokio-rs/tokio-rfcs/pull/3).