wasmtime 25.0.1 → 25.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2036) hide show
  1. checksums.yaml +4 -4
  2. data/Cargo.lock +89 -80
  3. data/ext/Cargo.toml +7 -7
  4. data/ext/cargo-vendor/anyhow-1.0.89/.cargo-checksum.json +1 -0
  5. data/ext/cargo-vendor/anyhow-1.0.89/Cargo.toml +126 -0
  6. data/ext/cargo-vendor/anyhow-1.0.89/README.md +181 -0
  7. data/ext/cargo-vendor/anyhow-1.0.89/build/probe.rs +35 -0
  8. data/ext/cargo-vendor/anyhow-1.0.89/build.rs +192 -0
  9. data/ext/cargo-vendor/anyhow-1.0.89/src/backtrace.rs +411 -0
  10. data/ext/cargo-vendor/anyhow-1.0.89/src/chain.rs +102 -0
  11. data/ext/cargo-vendor/anyhow-1.0.89/src/context.rs +193 -0
  12. data/ext/cargo-vendor/anyhow-1.0.89/src/error.rs +1027 -0
  13. data/ext/cargo-vendor/anyhow-1.0.89/src/kind.rs +121 -0
  14. data/ext/cargo-vendor/anyhow-1.0.89/src/lib.rs +731 -0
  15. data/ext/cargo-vendor/anyhow-1.0.89/src/wrapper.rs +84 -0
  16. data/ext/cargo-vendor/anyhow-1.0.89/tests/compiletest.rs +7 -0
  17. data/ext/cargo-vendor/anyhow-1.0.89/tests/test_autotrait.rs +34 -0
  18. data/ext/cargo-vendor/anyhow-1.0.89/tests/test_backtrace.rs +15 -0
  19. data/ext/cargo-vendor/anyhow-1.0.89/tests/test_ensure.rs +741 -0
  20. data/ext/cargo-vendor/anyhow-1.0.89/tests/test_fmt.rs +93 -0
  21. data/ext/cargo-vendor/async-timer-1.0.0-beta.15/.cargo-checksum.json +1 -0
  22. data/ext/cargo-vendor/async-timer-1.0.0-beta.15/Cargo.toml +99 -0
  23. data/ext/cargo-vendor/async-timer-1.0.0-beta.15/src/timer/async_tokio1.rs +308 -0
  24. data/ext/cargo-vendor/cranelift-bforest-0.112.2/.cargo-checksum.json +1 -0
  25. data/ext/cargo-vendor/cranelift-bforest-0.112.2/Cargo.toml +59 -0
  26. data/ext/cargo-vendor/cranelift-bitset-0.112.2/.cargo-checksum.json +1 -0
  27. data/ext/cargo-vendor/cranelift-bitset-0.112.2/Cargo.toml +74 -0
  28. data/ext/cargo-vendor/cranelift-codegen-0.112.2/.cargo-checksum.json +1 -0
  29. data/ext/cargo-vendor/cranelift-codegen-0.112.2/Cargo.toml +222 -0
  30. data/ext/cargo-vendor/cranelift-codegen-meta-0.112.2/.cargo-checksum.json +1 -0
  31. data/ext/cargo-vendor/cranelift-codegen-meta-0.112.2/Cargo.toml +54 -0
  32. data/ext/cargo-vendor/cranelift-codegen-shared-0.112.2/.cargo-checksum.json +1 -0
  33. data/ext/cargo-vendor/cranelift-codegen-shared-0.112.2/Cargo.toml +32 -0
  34. data/ext/cargo-vendor/cranelift-control-0.112.2/.cargo-checksum.json +1 -0
  35. data/ext/cargo-vendor/cranelift-control-0.112.2/Cargo.toml +43 -0
  36. data/ext/cargo-vendor/cranelift-entity-0.112.2/.cargo-checksum.json +1 -0
  37. data/ext/cargo-vendor/cranelift-entity-0.112.2/Cargo.toml +75 -0
  38. data/ext/cargo-vendor/cranelift-frontend-0.112.2/.cargo-checksum.json +1 -0
  39. data/ext/cargo-vendor/cranelift-frontend-0.112.2/Cargo.toml +97 -0
  40. data/ext/cargo-vendor/cranelift-isle-0.112.2/.cargo-checksum.json +1 -0
  41. data/ext/cargo-vendor/cranelift-isle-0.112.2/Cargo.toml +69 -0
  42. data/ext/cargo-vendor/cranelift-native-0.112.2/.cargo-checksum.json +1 -0
  43. data/ext/cargo-vendor/cranelift-native-0.112.2/Cargo.toml +52 -0
  44. data/ext/cargo-vendor/cranelift-wasm-0.112.2/.cargo-checksum.json +1 -0
  45. data/ext/cargo-vendor/cranelift-wasm-0.112.2/Cargo.toml +128 -0
  46. data/ext/cargo-vendor/pulley-interpreter-0.1.2/.cargo-checksum.json +1 -0
  47. data/ext/cargo-vendor/pulley-interpreter-0.1.2/Cargo.toml +85 -0
  48. data/ext/cargo-vendor/tokio-1.40.0/.cargo-checksum.json +1 -0
  49. data/ext/cargo-vendor/tokio-1.40.0/CHANGELOG.md +3574 -0
  50. data/ext/cargo-vendor/tokio-1.40.0/Cargo.toml +804 -0
  51. data/ext/cargo-vendor/tokio-1.40.0/README.md +252 -0
  52. data/ext/cargo-vendor/tokio-1.40.0/src/fs/file.rs +978 -0
  53. data/ext/cargo-vendor/tokio-1.40.0/src/fs/read_dir.rs +357 -0
  54. data/ext/cargo-vendor/tokio-1.40.0/src/fs/try_exists.rs +28 -0
  55. data/ext/cargo-vendor/tokio-1.40.0/src/future/maybe_done.rs +123 -0
  56. data/ext/cargo-vendor/tokio-1.40.0/src/io/async_fd.rs +1358 -0
  57. data/ext/cargo-vendor/tokio-1.40.0/src/io/async_read.rs +132 -0
  58. data/ext/cargo-vendor/tokio-1.40.0/src/io/blocking.rs +294 -0
  59. data/ext/cargo-vendor/tokio-1.40.0/src/io/bsd/poll_aio.rs +197 -0
  60. data/ext/cargo-vendor/tokio-1.40.0/src/io/mod.rs +292 -0
  61. data/ext/cargo-vendor/tokio-1.40.0/src/io/poll_evented.rs +305 -0
  62. data/ext/cargo-vendor/tokio-1.40.0/src/io/seek.rs +57 -0
  63. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/buf_reader.rs +311 -0
  64. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/buf_writer.rs +310 -0
  65. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/chain.rs +144 -0
  66. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/copy.rs +295 -0
  67. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/copy_bidirectional.rs +137 -0
  68. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/copy_buf.rs +108 -0
  69. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/empty.rs +164 -0
  70. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/lines.rs +145 -0
  71. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/mem.rs +429 -0
  72. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/mod.rs +111 -0
  73. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/read.rs +55 -0
  74. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/read_buf.rs +72 -0
  75. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/read_exact.rs +69 -0
  76. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/read_int.rs +158 -0
  77. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/read_line.rs +119 -0
  78. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/read_to_end.rs +143 -0
  79. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/read_to_string.rs +78 -0
  80. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/read_until.rs +80 -0
  81. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/repeat.rs +75 -0
  82. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/sink.rs +94 -0
  83. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/split.rs +121 -0
  84. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/take.rs +138 -0
  85. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/write_all.rs +55 -0
  86. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/write_all_buf.rs +64 -0
  87. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/write_buf.rs +55 -0
  88. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/write_int.rs +151 -0
  89. data/ext/cargo-vendor/tokio-1.40.0/src/lib.rs +696 -0
  90. data/ext/cargo-vendor/tokio-1.40.0/src/loom/mocked.rs +58 -0
  91. data/ext/cargo-vendor/tokio-1.40.0/src/loom/std/atomic_u16.rs +48 -0
  92. data/ext/cargo-vendor/tokio-1.40.0/src/loom/std/atomic_u32.rs +48 -0
  93. data/ext/cargo-vendor/tokio-1.40.0/src/loom/std/atomic_usize.rs +60 -0
  94. data/ext/cargo-vendor/tokio-1.40.0/src/loom/std/mutex.rs +44 -0
  95. data/ext/cargo-vendor/tokio-1.40.0/src/macros/mod.rs +36 -0
  96. data/ext/cargo-vendor/tokio-1.40.0/src/macros/select.rs +1261 -0
  97. data/ext/cargo-vendor/tokio-1.40.0/src/net/addr.rs +333 -0
  98. data/ext/cargo-vendor/tokio-1.40.0/src/net/tcp/listener.rs +451 -0
  99. data/ext/cargo-vendor/tokio-1.40.0/src/net/tcp/stream.rs +1424 -0
  100. data/ext/cargo-vendor/tokio-1.40.0/src/net/udp.rs +2049 -0
  101. data/ext/cargo-vendor/tokio-1.40.0/src/net/unix/datagram/socket.rs +1595 -0
  102. data/ext/cargo-vendor/tokio-1.40.0/src/net/unix/listener.rs +240 -0
  103. data/ext/cargo-vendor/tokio-1.40.0/src/process/mod.rs +1690 -0
  104. data/ext/cargo-vendor/tokio-1.40.0/src/process/unix/pidfd_reaper.rs +322 -0
  105. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/blocking/pool.rs +608 -0
  106. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/blocking/schedule.rs +70 -0
  107. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/builder.rs +1456 -0
  108. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/config.rs +49 -0
  109. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/coop.rs +323 -0
  110. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/io/registration.rs +259 -0
  111. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/mod.rs +417 -0
  112. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/scheduler/current_thread/mod.rs +795 -0
  113. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/scheduler/mod.rs +283 -0
  114. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/scheduler/multi_thread/handle.rs +84 -0
  115. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/scheduler/multi_thread/worker.rs +1261 -0
  116. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/scheduler/multi_thread_alt/handle.rs +85 -0
  117. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/scheduler/multi_thread_alt/worker.rs +1604 -0
  118. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/task/core.rs +496 -0
  119. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/task/error.rs +202 -0
  120. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/task/harness.rs +532 -0
  121. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/task/id.rs +99 -0
  122. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/task/join.rs +378 -0
  123. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/task/mod.rs +546 -0
  124. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/task_hooks.rs +36 -0
  125. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/tests/loom_multi_thread.rs +462 -0
  126. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/tests/loom_multi_thread_alt.rs +572 -0
  127. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/tests/mod.rs +82 -0
  128. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/tests/queue.rs +293 -0
  129. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/tests/task.rs +455 -0
  130. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/time/mod.rs +513 -0
  131. data/ext/cargo-vendor/tokio-1.40.0/src/sync/batch_semaphore.rs +780 -0
  132. data/ext/cargo-vendor/tokio-1.40.0/src/sync/broadcast.rs +1541 -0
  133. data/ext/cargo-vendor/tokio-1.40.0/src/sync/mpsc/chan.rs +600 -0
  134. data/ext/cargo-vendor/tokio-1.40.0/src/sync/mpsc/error.rs +169 -0
  135. data/ext/cargo-vendor/tokio-1.40.0/src/sync/mpsc/mod.rs +140 -0
  136. data/ext/cargo-vendor/tokio-1.40.0/src/sync/notify.rs +1218 -0
  137. data/ext/cargo-vendor/tokio-1.40.0/src/sync/oneshot.rs +1408 -0
  138. data/ext/cargo-vendor/tokio-1.40.0/src/task/consume_budget.rs +41 -0
  139. data/ext/cargo-vendor/tokio-1.40.0/src/task/join_set.rs +798 -0
  140. data/ext/cargo-vendor/tokio-1.40.0/src/task/local.rs +1257 -0
  141. data/ext/cargo-vendor/tokio-1.40.0/src/task/spawn.rs +207 -0
  142. data/ext/cargo-vendor/tokio-1.40.0/src/task/yield_now.rs +64 -0
  143. data/ext/cargo-vendor/tokio-1.40.0/src/time/interval.rs +644 -0
  144. data/ext/cargo-vendor/tokio-1.40.0/src/time/sleep.rs +453 -0
  145. data/ext/cargo-vendor/tokio-1.40.0/src/util/bit.rs +64 -0
  146. data/ext/cargo-vendor/tokio-1.40.0/src/util/sync_wrapper.rs +37 -0
  147. data/ext/cargo-vendor/tokio-1.40.0/tests/async_send_sync.rs +759 -0
  148. data/ext/cargo-vendor/tokio-1.40.0/tests/io_async_fd.rs +855 -0
  149. data/ext/cargo-vendor/tokio-1.40.0/tests/io_copy.rs +101 -0
  150. data/ext/cargo-vendor/tokio-1.40.0/tests/io_write_all_buf.rs +145 -0
  151. data/ext/cargo-vendor/tokio-1.40.0/tests/macros_join.rs +176 -0
  152. data/ext/cargo-vendor/tokio-1.40.0/tests/sync_mpsc.rs +1456 -0
  153. data/ext/cargo-vendor/tokio-1.40.0/tests/task_abort.rs +332 -0
  154. data/ext/cargo-vendor/tokio-1.40.0/tests/task_hooks.rs +76 -0
  155. data/ext/cargo-vendor/tokio-1.40.0/tests/task_join_set.rs +347 -0
  156. data/ext/cargo-vendor/tokio-1.40.0/tests/uds_stream.rs +435 -0
  157. data/ext/cargo-vendor/wasi-common-25.0.2/.cargo-checksum.json +1 -0
  158. data/ext/cargo-vendor/wasi-common-25.0.2/Cargo.toml +242 -0
  159. data/ext/cargo-vendor/wasm-encoder-0.218.0/.cargo-checksum.json +1 -0
  160. data/ext/cargo-vendor/wasm-encoder-0.218.0/Cargo.toml +65 -0
  161. data/ext/cargo-vendor/wasm-encoder-0.218.0/README.md +80 -0
  162. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/component/aliases.rs +160 -0
  163. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/component/builder.rs +467 -0
  164. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/component/canonicals.rs +176 -0
  165. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/component/components.rs +29 -0
  166. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/component/exports.rs +129 -0
  167. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/component/imports.rs +169 -0
  168. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/component/instances.rs +199 -0
  169. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/component/modules.rs +29 -0
  170. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/component/names.rs +155 -0
  171. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/component/start.rs +52 -0
  172. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/component/types.rs +774 -0
  173. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/component.rs +168 -0
  174. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/branch_hints.rs +125 -0
  175. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/code.rs +4032 -0
  176. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/custom.rs +73 -0
  177. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/data.rs +186 -0
  178. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/dump.rs +627 -0
  179. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/elements.rs +224 -0
  180. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/exports.rs +85 -0
  181. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/functions.rs +63 -0
  182. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/globals.rs +100 -0
  183. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/imports.rs +143 -0
  184. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/linking.rs +263 -0
  185. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/memories.rs +115 -0
  186. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/names.rs +304 -0
  187. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/producers.rs +181 -0
  188. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/start.rs +39 -0
  189. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/tables.rs +129 -0
  190. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/tags.rs +85 -0
  191. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/types.rs +717 -0
  192. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core.rs +175 -0
  193. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/lib.rs +218 -0
  194. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/raw.rs +30 -0
  195. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/reencode/component.rs +1344 -0
  196. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/reencode.rs +1958 -0
  197. data/ext/cargo-vendor/wasmtime-25.0.2/.cargo-checksum.json +1 -0
  198. data/ext/cargo-vendor/wasmtime-25.0.2/Cargo.toml +407 -0
  199. data/ext/cargo-vendor/wasmtime-25.0.2/src/runtime/type_registry.rs +1233 -0
  200. data/ext/cargo-vendor/wasmtime-25.0.2/src/runtime/vm/traphandlers/backtrace.rs +287 -0
  201. data/ext/cargo-vendor/wasmtime-asm-macros-25.0.2/.cargo-checksum.json +1 -0
  202. data/ext/cargo-vendor/wasmtime-asm-macros-25.0.2/Cargo.toml +33 -0
  203. data/ext/cargo-vendor/wasmtime-cache-25.0.2/.cargo-checksum.json +1 -0
  204. data/ext/cargo-vendor/wasmtime-cache-25.0.2/Cargo.toml +112 -0
  205. data/ext/cargo-vendor/wasmtime-component-macro-25.0.2/.cargo-checksum.json +1 -0
  206. data/ext/cargo-vendor/wasmtime-component-macro-25.0.2/Cargo.toml +115 -0
  207. data/ext/cargo-vendor/wasmtime-component-util-25.0.2/.cargo-checksum.json +1 -0
  208. data/ext/cargo-vendor/wasmtime-component-util-25.0.2/Cargo.toml +36 -0
  209. data/ext/cargo-vendor/wasmtime-cranelift-25.0.2/.cargo-checksum.json +1 -0
  210. data/ext/cargo-vendor/wasmtime-cranelift-25.0.2/Cargo.toml +137 -0
  211. data/ext/cargo-vendor/wasmtime-environ-25.0.2/.cargo-checksum.json +1 -0
  212. data/ext/cargo-vendor/wasmtime-environ-25.0.2/Cargo.lock +792 -0
  213. data/ext/cargo-vendor/wasmtime-environ-25.0.2/Cargo.toml +195 -0
  214. data/ext/cargo-vendor/wasmtime-environ-25.0.2/src/compile/module_environ.rs +1267 -0
  215. data/ext/cargo-vendor/wasmtime-fiber-25.0.2/.cargo-checksum.json +1 -0
  216. data/ext/cargo-vendor/wasmtime-fiber-25.0.2/Cargo.toml +84 -0
  217. data/ext/cargo-vendor/wasmtime-jit-debug-25.0.2/.cargo-checksum.json +1 -0
  218. data/ext/cargo-vendor/wasmtime-jit-debug-25.0.2/Cargo.toml +86 -0
  219. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-25.0.2/.cargo-checksum.json +1 -0
  220. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-25.0.2/Cargo.toml +71 -0
  221. data/ext/cargo-vendor/wasmtime-slab-25.0.2/.cargo-checksum.json +1 -0
  222. data/ext/cargo-vendor/wasmtime-slab-25.0.2/Cargo.toml +50 -0
  223. data/ext/cargo-vendor/wasmtime-types-25.0.2/.cargo-checksum.json +1 -0
  224. data/ext/cargo-vendor/wasmtime-types-25.0.2/Cargo.toml +80 -0
  225. data/ext/cargo-vendor/wasmtime-versioned-export-macros-25.0.2/.cargo-checksum.json +1 -0
  226. data/ext/cargo-vendor/wasmtime-versioned-export-macros-25.0.2/Cargo.toml +41 -0
  227. data/ext/cargo-vendor/wasmtime-wasi-25.0.2/.cargo-checksum.json +1 -0
  228. data/ext/cargo-vendor/wasmtime-wasi-25.0.2/Cargo.toml +224 -0
  229. data/ext/cargo-vendor/wasmtime-winch-25.0.2/.cargo-checksum.json +1 -0
  230. data/ext/cargo-vendor/wasmtime-winch-25.0.2/Cargo.toml +100 -0
  231. data/ext/cargo-vendor/wasmtime-wit-bindgen-25.0.2/.cargo-checksum.json +1 -0
  232. data/ext/cargo-vendor/wasmtime-wit-bindgen-25.0.2/Cargo.toml +66 -0
  233. data/ext/cargo-vendor/wast-218.0.0/.cargo-checksum.json +1 -0
  234. data/ext/cargo-vendor/wast-218.0.0/Cargo.toml +101 -0
  235. data/ext/cargo-vendor/wast-218.0.0/src/component/binary.rs +878 -0
  236. data/ext/cargo-vendor/wast-218.0.0/src/component/component.rs +329 -0
  237. data/ext/cargo-vendor/wast-218.0.0/src/component/expand.rs +896 -0
  238. data/ext/cargo-vendor/wast-218.0.0/src/component/func.rs +537 -0
  239. data/ext/cargo-vendor/wast-218.0.0/src/component/resolve.rs +1075 -0
  240. data/ext/cargo-vendor/wast-218.0.0/src/component/types.rs +1003 -0
  241. data/ext/cargo-vendor/wast-218.0.0/src/core/binary.rs +1495 -0
  242. data/ext/cargo-vendor/wast-218.0.0/src/core/expr.rs +2225 -0
  243. data/ext/cargo-vendor/wast-218.0.0/src/core/resolve/deinline_import_export.rs +232 -0
  244. data/ext/cargo-vendor/wast-218.0.0/src/core/resolve/names.rs +868 -0
  245. data/ext/cargo-vendor/wast-218.0.0/src/core/resolve/types.rs +274 -0
  246. data/ext/cargo-vendor/wast-218.0.0/src/core/table.rs +308 -0
  247. data/ext/cargo-vendor/wast-218.0.0/src/core/types.rs +1117 -0
  248. data/ext/cargo-vendor/wast-218.0.0/src/lib.rs +566 -0
  249. data/ext/cargo-vendor/wast-218.0.0/src/wast.rs +567 -0
  250. data/ext/cargo-vendor/wat-1.218.0/.cargo-checksum.json +1 -0
  251. data/ext/cargo-vendor/wat-1.218.0/Cargo.toml +56 -0
  252. data/ext/cargo-vendor/wiggle-25.0.2/.cargo-checksum.json +1 -0
  253. data/ext/cargo-vendor/wiggle-25.0.2/Cargo.toml +119 -0
  254. data/ext/cargo-vendor/wiggle-generate-25.0.2/.cargo-checksum.json +1 -0
  255. data/ext/cargo-vendor/wiggle-generate-25.0.2/Cargo.toml +85 -0
  256. data/ext/cargo-vendor/wiggle-macro-25.0.2/.cargo-checksum.json +1 -0
  257. data/ext/cargo-vendor/wiggle-macro-25.0.2/Cargo.toml +78 -0
  258. data/ext/cargo-vendor/winch-codegen-0.23.2/.cargo-checksum.json +1 -0
  259. data/ext/cargo-vendor/winch-codegen-0.23.2/Cargo.toml +95 -0
  260. data/lib/wasmtime/version.rb +1 -1
  261. metadata +1816 -1777
  262. data/ext/cargo-vendor/anyhow-1.0.86/.cargo-checksum.json +0 -1
  263. data/ext/cargo-vendor/anyhow-1.0.86/Cargo.toml +0 -130
  264. data/ext/cargo-vendor/anyhow-1.0.86/README.md +0 -181
  265. data/ext/cargo-vendor/anyhow-1.0.86/build/probe.rs +0 -35
  266. data/ext/cargo-vendor/anyhow-1.0.86/build.rs +0 -179
  267. data/ext/cargo-vendor/anyhow-1.0.86/src/backtrace.rs +0 -406
  268. data/ext/cargo-vendor/anyhow-1.0.86/src/chain.rs +0 -102
  269. data/ext/cargo-vendor/anyhow-1.0.86/src/context.rs +0 -193
  270. data/ext/cargo-vendor/anyhow-1.0.86/src/error.rs +0 -1024
  271. data/ext/cargo-vendor/anyhow-1.0.86/src/kind.rs +0 -121
  272. data/ext/cargo-vendor/anyhow-1.0.86/src/lib.rs +0 -730
  273. data/ext/cargo-vendor/anyhow-1.0.86/src/wrapper.rs +0 -84
  274. data/ext/cargo-vendor/anyhow-1.0.86/tests/compiletest.rs +0 -7
  275. data/ext/cargo-vendor/anyhow-1.0.86/tests/test_autotrait.rs +0 -15
  276. data/ext/cargo-vendor/anyhow-1.0.86/tests/test_backtrace.rs +0 -15
  277. data/ext/cargo-vendor/anyhow-1.0.86/tests/test_ensure.rs +0 -741
  278. data/ext/cargo-vendor/anyhow-1.0.86/tests/test_fmt.rs +0 -94
  279. data/ext/cargo-vendor/async-timer-1.0.0-beta.14/.cargo-checksum.json +0 -1
  280. data/ext/cargo-vendor/async-timer-1.0.0-beta.14/Cargo.toml +0 -78
  281. data/ext/cargo-vendor/async-timer-1.0.0-beta.14/src/timer/async_tokio1.rs +0 -299
  282. data/ext/cargo-vendor/cranelift-bforest-0.112.1/.cargo-checksum.json +0 -1
  283. data/ext/cargo-vendor/cranelift-bforest-0.112.1/Cargo.toml +0 -59
  284. data/ext/cargo-vendor/cranelift-bitset-0.112.1/.cargo-checksum.json +0 -1
  285. data/ext/cargo-vendor/cranelift-bitset-0.112.1/Cargo.toml +0 -74
  286. data/ext/cargo-vendor/cranelift-codegen-0.112.1/.cargo-checksum.json +0 -1
  287. data/ext/cargo-vendor/cranelift-codegen-0.112.1/Cargo.toml +0 -222
  288. data/ext/cargo-vendor/cranelift-codegen-meta-0.112.1/.cargo-checksum.json +0 -1
  289. data/ext/cargo-vendor/cranelift-codegen-meta-0.112.1/Cargo.toml +0 -54
  290. data/ext/cargo-vendor/cranelift-codegen-shared-0.112.1/.cargo-checksum.json +0 -1
  291. data/ext/cargo-vendor/cranelift-codegen-shared-0.112.1/Cargo.toml +0 -32
  292. data/ext/cargo-vendor/cranelift-control-0.112.1/.cargo-checksum.json +0 -1
  293. data/ext/cargo-vendor/cranelift-control-0.112.1/Cargo.toml +0 -43
  294. data/ext/cargo-vendor/cranelift-entity-0.112.1/.cargo-checksum.json +0 -1
  295. data/ext/cargo-vendor/cranelift-entity-0.112.1/Cargo.toml +0 -75
  296. data/ext/cargo-vendor/cranelift-frontend-0.112.1/.cargo-checksum.json +0 -1
  297. data/ext/cargo-vendor/cranelift-frontend-0.112.1/Cargo.toml +0 -97
  298. data/ext/cargo-vendor/cranelift-isle-0.112.1/.cargo-checksum.json +0 -1
  299. data/ext/cargo-vendor/cranelift-isle-0.112.1/Cargo.toml +0 -69
  300. data/ext/cargo-vendor/cranelift-native-0.112.1/.cargo-checksum.json +0 -1
  301. data/ext/cargo-vendor/cranelift-native-0.112.1/Cargo.toml +0 -52
  302. data/ext/cargo-vendor/cranelift-wasm-0.112.1/.cargo-checksum.json +0 -1
  303. data/ext/cargo-vendor/cranelift-wasm-0.112.1/Cargo.toml +0 -128
  304. data/ext/cargo-vendor/pulley-interpreter-0.1.1/.cargo-checksum.json +0 -1
  305. data/ext/cargo-vendor/pulley-interpreter-0.1.1/Cargo.toml +0 -85
  306. data/ext/cargo-vendor/tokio-1.39.3/.cargo-checksum.json +0 -1
  307. data/ext/cargo-vendor/tokio-1.39.3/CHANGELOG.md +0 -3525
  308. data/ext/cargo-vendor/tokio-1.39.3/Cargo.toml +0 -800
  309. data/ext/cargo-vendor/tokio-1.39.3/README.md +0 -252
  310. data/ext/cargo-vendor/tokio-1.39.3/src/fs/file.rs +0 -979
  311. data/ext/cargo-vendor/tokio-1.39.3/src/fs/read_dir.rs +0 -358
  312. data/ext/cargo-vendor/tokio-1.39.3/src/fs/try_exists.rs +0 -34
  313. data/ext/cargo-vendor/tokio-1.39.3/src/future/maybe_done.rs +0 -71
  314. data/ext/cargo-vendor/tokio-1.39.3/src/io/async_fd.rs +0 -1359
  315. data/ext/cargo-vendor/tokio-1.39.3/src/io/async_read.rs +0 -131
  316. data/ext/cargo-vendor/tokio-1.39.3/src/io/blocking.rs +0 -294
  317. data/ext/cargo-vendor/tokio-1.39.3/src/io/bsd/poll_aio.rs +0 -197
  318. data/ext/cargo-vendor/tokio-1.39.3/src/io/mod.rs +0 -292
  319. data/ext/cargo-vendor/tokio-1.39.3/src/io/poll_evented.rs +0 -304
  320. data/ext/cargo-vendor/tokio-1.39.3/src/io/seek.rs +0 -57
  321. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/buf_reader.rs +0 -311
  322. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/buf_writer.rs +0 -310
  323. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/chain.rs +0 -144
  324. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/copy.rs +0 -295
  325. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/copy_bidirectional.rs +0 -137
  326. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/copy_buf.rs +0 -108
  327. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/empty.rs +0 -164
  328. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/lines.rs +0 -145
  329. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/mem.rs +0 -374
  330. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/mod.rs +0 -111
  331. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/read.rs +0 -55
  332. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/read_buf.rs +0 -72
  333. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/read_exact.rs +0 -69
  334. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/read_int.rs +0 -159
  335. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/read_line.rs +0 -119
  336. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/read_to_end.rs +0 -143
  337. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/read_to_string.rs +0 -78
  338. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/read_until.rs +0 -80
  339. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/repeat.rs +0 -75
  340. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/sink.rs +0 -94
  341. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/split.rs +0 -121
  342. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/take.rs +0 -138
  343. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/write_all.rs +0 -55
  344. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/write_all_buf.rs +0 -56
  345. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/write_buf.rs +0 -55
  346. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/write_int.rs +0 -152
  347. data/ext/cargo-vendor/tokio-1.39.3/src/lib.rs +0 -690
  348. data/ext/cargo-vendor/tokio-1.39.3/src/loom/mocked.rs +0 -53
  349. data/ext/cargo-vendor/tokio-1.39.3/src/loom/std/atomic_u16.rs +0 -45
  350. data/ext/cargo-vendor/tokio-1.39.3/src/loom/std/atomic_u32.rs +0 -45
  351. data/ext/cargo-vendor/tokio-1.39.3/src/loom/std/atomic_usize.rs +0 -57
  352. data/ext/cargo-vendor/tokio-1.39.3/src/loom/std/mutex.rs +0 -36
  353. data/ext/cargo-vendor/tokio-1.39.3/src/macros/mod.rs +0 -39
  354. data/ext/cargo-vendor/tokio-1.39.3/src/macros/ready.rs +0 -8
  355. data/ext/cargo-vendor/tokio-1.39.3/src/macros/select.rs +0 -1261
  356. data/ext/cargo-vendor/tokio-1.39.3/src/net/addr.rs +0 -333
  357. data/ext/cargo-vendor/tokio-1.39.3/src/net/tcp/listener.rs +0 -451
  358. data/ext/cargo-vendor/tokio-1.39.3/src/net/tcp/stream.rs +0 -1424
  359. data/ext/cargo-vendor/tokio-1.39.3/src/net/udp.rs +0 -2049
  360. data/ext/cargo-vendor/tokio-1.39.3/src/net/unix/datagram/socket.rs +0 -1595
  361. data/ext/cargo-vendor/tokio-1.39.3/src/net/unix/listener.rs +0 -240
  362. data/ext/cargo-vendor/tokio-1.39.3/src/process/mod.rs +0 -1686
  363. data/ext/cargo-vendor/tokio-1.39.3/src/process/unix/pidfd_reaper.rs +0 -322
  364. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/blocking/pool.rs +0 -608
  365. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/blocking/schedule.rs +0 -60
  366. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/builder.rs +0 -1352
  367. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/config.rs +0 -43
  368. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/coop.rs +0 -323
  369. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/io/registration.rs +0 -259
  370. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/mod.rs +0 -410
  371. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/scheduler/current_thread/mod.rs +0 -772
  372. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/scheduler/mod.rs +0 -271
  373. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/scheduler/multi_thread/handle.rs +0 -74
  374. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/scheduler/multi_thread/worker.rs +0 -1260
  375. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/scheduler/multi_thread_alt/handle.rs +0 -75
  376. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/scheduler/multi_thread_alt/worker.rs +0 -1603
  377. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/task/core.rs +0 -494
  378. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/task/error.rs +0 -169
  379. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/task/harness.rs +0 -517
  380. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/task/id.rs +0 -98
  381. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/task/join.rs +0 -377
  382. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/task/mod.rs +0 -537
  383. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/tests/loom_multi_thread.rs +0 -462
  384. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/tests/loom_multi_thread_alt.rs +0 -572
  385. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/tests/mod.rs +0 -76
  386. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/tests/queue.rs +0 -287
  387. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/tests/task.rs +0 -353
  388. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/time/mod.rs +0 -474
  389. data/ext/cargo-vendor/tokio-1.39.3/src/sync/batch_semaphore.rs +0 -779
  390. data/ext/cargo-vendor/tokio-1.39.3/src/sync/broadcast.rs +0 -1541
  391. data/ext/cargo-vendor/tokio-1.39.3/src/sync/mpsc/chan.rs +0 -597
  392. data/ext/cargo-vendor/tokio-1.39.3/src/sync/mpsc/error.rs +0 -149
  393. data/ext/cargo-vendor/tokio-1.39.3/src/sync/mpsc/mod.rs +0 -124
  394. data/ext/cargo-vendor/tokio-1.39.3/src/sync/notify.rs +0 -1218
  395. data/ext/cargo-vendor/tokio-1.39.3/src/sync/oneshot.rs +0 -1408
  396. data/ext/cargo-vendor/tokio-1.39.3/src/task/consume_budget.rs +0 -41
  397. data/ext/cargo-vendor/tokio-1.39.3/src/task/join_set.rs +0 -725
  398. data/ext/cargo-vendor/tokio-1.39.3/src/task/local.rs +0 -1250
  399. data/ext/cargo-vendor/tokio-1.39.3/src/task/spawn.rs +0 -207
  400. data/ext/cargo-vendor/tokio-1.39.3/src/task/yield_now.rs +0 -64
  401. data/ext/cargo-vendor/tokio-1.39.3/src/time/interval.rs +0 -644
  402. data/ext/cargo-vendor/tokio-1.39.3/src/time/sleep.rs +0 -452
  403. data/ext/cargo-vendor/tokio-1.39.3/src/util/bit.rs +0 -69
  404. data/ext/cargo-vendor/tokio-1.39.3/src/util/sync_wrapper.rs +0 -26
  405. data/ext/cargo-vendor/tokio-1.39.3/tests/async_send_sync.rs +0 -753
  406. data/ext/cargo-vendor/tokio-1.39.3/tests/io_async_fd.rs +0 -853
  407. data/ext/cargo-vendor/tokio-1.39.3/tests/io_copy.rs +0 -102
  408. data/ext/cargo-vendor/tokio-1.39.3/tests/io_write_all_buf.rs +0 -96
  409. data/ext/cargo-vendor/tokio-1.39.3/tests/macros_join.rs +0 -176
  410. data/ext/cargo-vendor/tokio-1.39.3/tests/sync_mpsc.rs +0 -1436
  411. data/ext/cargo-vendor/tokio-1.39.3/tests/task_abort.rs +0 -222
  412. data/ext/cargo-vendor/tokio-1.39.3/tests/task_join_set.rs +0 -307
  413. data/ext/cargo-vendor/tokio-1.39.3/tests/uds_stream.rs +0 -424
  414. data/ext/cargo-vendor/wasi-common-25.0.1/.cargo-checksum.json +0 -1
  415. data/ext/cargo-vendor/wasi-common-25.0.1/Cargo.toml +0 -242
  416. data/ext/cargo-vendor/wasmtime-25.0.1/.cargo-checksum.json +0 -1
  417. data/ext/cargo-vendor/wasmtime-25.0.1/Cargo.toml +0 -407
  418. data/ext/cargo-vendor/wasmtime-25.0.1/src/runtime/type_registry.rs +0 -1099
  419. data/ext/cargo-vendor/wasmtime-25.0.1/src/runtime/vm/traphandlers/backtrace.rs +0 -267
  420. data/ext/cargo-vendor/wasmtime-asm-macros-25.0.1/.cargo-checksum.json +0 -1
  421. data/ext/cargo-vendor/wasmtime-asm-macros-25.0.1/Cargo.toml +0 -33
  422. data/ext/cargo-vendor/wasmtime-cache-25.0.1/.cargo-checksum.json +0 -1
  423. data/ext/cargo-vendor/wasmtime-cache-25.0.1/Cargo.toml +0 -112
  424. data/ext/cargo-vendor/wasmtime-component-macro-25.0.1/.cargo-checksum.json +0 -1
  425. data/ext/cargo-vendor/wasmtime-component-macro-25.0.1/Cargo.toml +0 -115
  426. data/ext/cargo-vendor/wasmtime-component-util-25.0.1/.cargo-checksum.json +0 -1
  427. data/ext/cargo-vendor/wasmtime-component-util-25.0.1/Cargo.toml +0 -36
  428. data/ext/cargo-vendor/wasmtime-cranelift-25.0.1/.cargo-checksum.json +0 -1
  429. data/ext/cargo-vendor/wasmtime-cranelift-25.0.1/Cargo.toml +0 -137
  430. data/ext/cargo-vendor/wasmtime-environ-25.0.1/.cargo-checksum.json +0 -1
  431. data/ext/cargo-vendor/wasmtime-environ-25.0.1/Cargo.lock +0 -792
  432. data/ext/cargo-vendor/wasmtime-environ-25.0.1/Cargo.toml +0 -195
  433. data/ext/cargo-vendor/wasmtime-environ-25.0.1/src/compile/module_environ.rs +0 -1264
  434. data/ext/cargo-vendor/wasmtime-fiber-25.0.1/.cargo-checksum.json +0 -1
  435. data/ext/cargo-vendor/wasmtime-fiber-25.0.1/Cargo.toml +0 -84
  436. data/ext/cargo-vendor/wasmtime-jit-debug-25.0.1/.cargo-checksum.json +0 -1
  437. data/ext/cargo-vendor/wasmtime-jit-debug-25.0.1/Cargo.toml +0 -86
  438. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-25.0.1/.cargo-checksum.json +0 -1
  439. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-25.0.1/Cargo.toml +0 -71
  440. data/ext/cargo-vendor/wasmtime-slab-25.0.1/.cargo-checksum.json +0 -1
  441. data/ext/cargo-vendor/wasmtime-slab-25.0.1/Cargo.toml +0 -50
  442. data/ext/cargo-vendor/wasmtime-types-25.0.1/.cargo-checksum.json +0 -1
  443. data/ext/cargo-vendor/wasmtime-types-25.0.1/Cargo.toml +0 -80
  444. data/ext/cargo-vendor/wasmtime-versioned-export-macros-25.0.1/.cargo-checksum.json +0 -1
  445. data/ext/cargo-vendor/wasmtime-versioned-export-macros-25.0.1/Cargo.toml +0 -41
  446. data/ext/cargo-vendor/wasmtime-wasi-25.0.1/.cargo-checksum.json +0 -1
  447. data/ext/cargo-vendor/wasmtime-wasi-25.0.1/Cargo.toml +0 -224
  448. data/ext/cargo-vendor/wasmtime-winch-25.0.1/.cargo-checksum.json +0 -1
  449. data/ext/cargo-vendor/wasmtime-winch-25.0.1/Cargo.toml +0 -100
  450. data/ext/cargo-vendor/wasmtime-wit-bindgen-25.0.1/.cargo-checksum.json +0 -1
  451. data/ext/cargo-vendor/wasmtime-wit-bindgen-25.0.1/Cargo.toml +0 -66
  452. data/ext/cargo-vendor/wast-217.0.0/.cargo-checksum.json +0 -1
  453. data/ext/cargo-vendor/wast-217.0.0/Cargo.toml +0 -101
  454. data/ext/cargo-vendor/wast-217.0.0/src/component/binary.rs +0 -1014
  455. data/ext/cargo-vendor/wast-217.0.0/src/component/component.rs +0 -324
  456. data/ext/cargo-vendor/wast-217.0.0/src/component/expand.rs +0 -879
  457. data/ext/cargo-vendor/wast-217.0.0/src/component/func.rs +0 -486
  458. data/ext/cargo-vendor/wast-217.0.0/src/component/resolve.rs +0 -994
  459. data/ext/cargo-vendor/wast-217.0.0/src/component/types.rs +0 -999
  460. data/ext/cargo-vendor/wast-217.0.0/src/core/binary.rs +0 -1556
  461. data/ext/cargo-vendor/wast-217.0.0/src/core/expr.rs +0 -2110
  462. data/ext/cargo-vendor/wast-217.0.0/src/core/resolve/deinline_import_export.rs +0 -232
  463. data/ext/cargo-vendor/wast-217.0.0/src/core/resolve/names.rs +0 -808
  464. data/ext/cargo-vendor/wast-217.0.0/src/core/resolve/types.rs +0 -273
  465. data/ext/cargo-vendor/wast-217.0.0/src/core/table.rs +0 -308
  466. data/ext/cargo-vendor/wast-217.0.0/src/core/types.rs +0 -1057
  467. data/ext/cargo-vendor/wast-217.0.0/src/lib.rs +0 -557
  468. data/ext/cargo-vendor/wast-217.0.0/src/wast.rs +0 -552
  469. data/ext/cargo-vendor/wat-1.217.0/.cargo-checksum.json +0 -1
  470. data/ext/cargo-vendor/wat-1.217.0/Cargo.toml +0 -56
  471. data/ext/cargo-vendor/wiggle-25.0.1/.cargo-checksum.json +0 -1
  472. data/ext/cargo-vendor/wiggle-25.0.1/Cargo.toml +0 -119
  473. data/ext/cargo-vendor/wiggle-generate-25.0.1/.cargo-checksum.json +0 -1
  474. data/ext/cargo-vendor/wiggle-generate-25.0.1/Cargo.toml +0 -85
  475. data/ext/cargo-vendor/wiggle-macro-25.0.1/.cargo-checksum.json +0 -1
  476. data/ext/cargo-vendor/wiggle-macro-25.0.1/Cargo.toml +0 -78
  477. data/ext/cargo-vendor/winch-codegen-0.23.1/.cargo-checksum.json +0 -1
  478. data/ext/cargo-vendor/winch-codegen-0.23.1/Cargo.toml +0 -95
  479. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/LICENSE-APACHE +0 -0
  480. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/LICENSE-MIT +0 -0
  481. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/rust-toolchain.toml +0 -0
  482. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/src/ensure.rs +0 -0
  483. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/src/fmt.rs +0 -0
  484. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/src/macros.rs +0 -0
  485. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/src/ptr.rs +0 -0
  486. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/common/mod.rs +0 -0
  487. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/drop/mod.rs +0 -0
  488. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/test_boxed.rs +0 -0
  489. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/test_chain.rs +0 -0
  490. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/test_context.rs +0 -0
  491. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/test_convert.rs +0 -0
  492. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/test_downcast.rs +0 -0
  493. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/test_ffi.rs +0 -0
  494. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/test_macros.rs +0 -0
  495. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/test_repr.rs +0 -0
  496. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/test_source.rs +0 -0
  497. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/ui/chained-comparison.rs +0 -0
  498. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/ui/chained-comparison.stderr +0 -0
  499. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/ui/empty-ensure.rs +0 -0
  500. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/ui/empty-ensure.stderr +0 -0
  501. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/ui/ensure-nonbool.rs +0 -0
  502. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/ui/ensure-nonbool.stderr +0 -0
  503. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/ui/must-use.rs +0 -0
  504. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/ui/must-use.stderr +0 -0
  505. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/ui/no-impl.rs +0 -0
  506. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/ui/no-impl.stderr +0 -0
  507. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/ui/temporary-value.rs +0 -0
  508. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/ui/temporary-value.stderr +0 -0
  509. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/ui/wrong-interpolation.rs +0 -0
  510. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/ui/wrong-interpolation.stderr +0 -0
  511. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/README.md +0 -0
  512. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/build.rs +0 -0
  513. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/src/c_wrapper/posix.c +0 -0
  514. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/src/interval.rs +0 -0
  515. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/src/lib.rs +0 -0
  516. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/src/state.rs +0 -0
  517. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/src/timed.rs +0 -0
  518. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/src/timer/apple.rs +0 -0
  519. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/src/timer/dummy.rs +0 -0
  520. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/src/timer/mod.rs +0 -0
  521. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/src/timer/posix.rs +0 -0
  522. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/src/timer/web.rs +0 -0
  523. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/src/timer/win.rs +0 -0
  524. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/src/utils.rs +0 -0
  525. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/tests/interval.rs +0 -0
  526. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/tests/timed.rs +0 -0
  527. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/tests/timer.rs +0 -0
  528. /data/ext/cargo-vendor/{cranelift-bforest-0.112.1 → cranelift-bforest-0.112.2}/LICENSE +0 -0
  529. /data/ext/cargo-vendor/{cranelift-bforest-0.112.1 → cranelift-bforest-0.112.2}/README.md +0 -0
  530. /data/ext/cargo-vendor/{cranelift-bforest-0.112.1 → cranelift-bforest-0.112.2}/src/lib.rs +0 -0
  531. /data/ext/cargo-vendor/{cranelift-bforest-0.112.1 → cranelift-bforest-0.112.2}/src/map.rs +0 -0
  532. /data/ext/cargo-vendor/{cranelift-bforest-0.112.1 → cranelift-bforest-0.112.2}/src/node.rs +0 -0
  533. /data/ext/cargo-vendor/{cranelift-bforest-0.112.1 → cranelift-bforest-0.112.2}/src/path.rs +0 -0
  534. /data/ext/cargo-vendor/{cranelift-bforest-0.112.1 → cranelift-bforest-0.112.2}/src/pool.rs +0 -0
  535. /data/ext/cargo-vendor/{cranelift-bforest-0.112.1 → cranelift-bforest-0.112.2}/src/set.rs +0 -0
  536. /data/ext/cargo-vendor/{cranelift-bitset-0.112.1 → cranelift-bitset-0.112.2}/src/compound.rs +0 -0
  537. /data/ext/cargo-vendor/{cranelift-bitset-0.112.1 → cranelift-bitset-0.112.2}/src/lib.rs +0 -0
  538. /data/ext/cargo-vendor/{cranelift-bitset-0.112.1 → cranelift-bitset-0.112.2}/src/scalar.rs +0 -0
  539. /data/ext/cargo-vendor/{cranelift-bitset-0.112.1 → cranelift-bitset-0.112.2}/tests/bitset.rs +0 -0
  540. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/LICENSE +0 -0
  541. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/README.md +0 -0
  542. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/benches/x64-evex-encoding.rs +0 -0
  543. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/build.rs +0 -0
  544. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/alias_analysis.rs +0 -0
  545. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/binemit/mod.rs +0 -0
  546. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/cfg_printer.rs +0 -0
  547. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/constant_hash.rs +0 -0
  548. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/context.rs +0 -0
  549. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ctxhash.rs +0 -0
  550. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/cursor.rs +0 -0
  551. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/data_value.rs +0 -0
  552. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/dbg.rs +0 -0
  553. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/dominator_tree.rs +0 -0
  554. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/egraph/cost.rs +0 -0
  555. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/egraph/elaborate.rs +0 -0
  556. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/egraph.rs +0 -0
  557. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/flowgraph.rs +0 -0
  558. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/incremental_cache.rs +0 -0
  559. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/inst_predicates.rs +0 -0
  560. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/atomic_rmw_op.rs +0 -0
  561. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/builder.rs +0 -0
  562. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/condcodes.rs +0 -0
  563. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/constant.rs +0 -0
  564. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/dfg.rs +0 -0
  565. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/dynamic_type.rs +0 -0
  566. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/entities.rs +0 -0
  567. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/extfunc.rs +0 -0
  568. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/extname.rs +0 -0
  569. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/function.rs +0 -0
  570. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/globalvalue.rs +0 -0
  571. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/immediates.rs +0 -0
  572. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/instructions.rs +0 -0
  573. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/jumptable.rs +0 -0
  574. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/known_symbol.rs +0 -0
  575. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/layout.rs +0 -0
  576. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/libcall.rs +0 -0
  577. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/memflags.rs +0 -0
  578. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/memtype.rs +0 -0
  579. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/mod.rs +0 -0
  580. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/pcc.rs +0 -0
  581. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/progpoint.rs +0 -0
  582. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/sourceloc.rs +0 -0
  583. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/stackslot.rs +0 -0
  584. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/trapcode.rs +0 -0
  585. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/types.rs +0 -0
  586. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/user_stack_maps.rs +0 -0
  587. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/aarch64/abi.rs +0 -0
  588. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/aarch64/inst/args.rs +0 -0
  589. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/aarch64/inst/emit.rs +0 -0
  590. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/aarch64/inst/emit_tests.rs +0 -0
  591. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/aarch64/inst/imms.rs +0 -0
  592. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/aarch64/inst/mod.rs +0 -0
  593. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/aarch64/inst/regs.rs +0 -0
  594. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/aarch64/inst/unwind/systemv.rs +0 -0
  595. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/aarch64/inst/unwind.rs +0 -0
  596. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/aarch64/inst.isle +0 -0
  597. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/aarch64/inst_neon.isle +0 -0
  598. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/aarch64/lower/isle/generated_code.rs +0 -0
  599. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/aarch64/lower/isle.rs +0 -0
  600. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/aarch64/lower.isle +0 -0
  601. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/aarch64/lower.rs +0 -0
  602. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/aarch64/lower_dynamic_neon.isle +0 -0
  603. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/aarch64/mod.rs +0 -0
  604. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/aarch64/pcc.rs +0 -0
  605. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/aarch64/settings.rs +0 -0
  606. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/call_conv.rs +0 -0
  607. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/mod.rs +0 -0
  608. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/pulley32.rs +0 -0
  609. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/pulley64.rs +0 -0
  610. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/pulley_shared/abi.rs +0 -0
  611. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/pulley_shared/inst/args.rs +0 -0
  612. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/pulley_shared/inst/emit.rs +0 -0
  613. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/pulley_shared/inst/mod.rs +0 -0
  614. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/pulley_shared/inst/regs.rs +0 -0
  615. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/pulley_shared/inst.isle +0 -0
  616. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/pulley_shared/lower/isle/generated_code.rs +0 -0
  617. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/pulley_shared/lower/isle.rs +0 -0
  618. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/pulley_shared/lower.isle +0 -0
  619. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/pulley_shared/lower.rs +0 -0
  620. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/pulley_shared/mod.rs +0 -0
  621. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/pulley_shared/settings.rs +0 -0
  622. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/riscv64/abi.rs +0 -0
  623. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/riscv64/inst/args.rs +0 -0
  624. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/riscv64/inst/emit.rs +0 -0
  625. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/riscv64/inst/emit_tests.rs +0 -0
  626. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/riscv64/inst/encode.rs +0 -0
  627. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/riscv64/inst/imms.rs +0 -0
  628. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/riscv64/inst/mod.rs +0 -0
  629. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/riscv64/inst/regs.rs +0 -0
  630. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/riscv64/inst/unwind/systemv.rs +0 -0
  631. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/riscv64/inst/unwind.rs +0 -0
  632. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/riscv64/inst/vector.rs +0 -0
  633. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/riscv64/inst.isle +0 -0
  634. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/riscv64/inst_vector.isle +0 -0
  635. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/riscv64/lower/isle/generated_code.rs +0 -0
  636. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/riscv64/lower/isle.rs +0 -0
  637. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/riscv64/lower.isle +0 -0
  638. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/riscv64/lower.rs +0 -0
  639. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/riscv64/mod.rs +0 -0
  640. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/riscv64/settings.rs +0 -0
  641. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/s390x/abi.rs +0 -0
  642. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/s390x/inst/args.rs +0 -0
  643. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/s390x/inst/emit.rs +0 -0
  644. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/s390x/inst/emit_tests.rs +0 -0
  645. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/s390x/inst/imms.rs +0 -0
  646. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/s390x/inst/mod.rs +0 -0
  647. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/s390x/inst/regs.rs +0 -0
  648. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/s390x/inst/unwind/systemv.rs +0 -0
  649. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/s390x/inst/unwind.rs +0 -0
  650. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/s390x/inst.isle +0 -0
  651. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/s390x/lower/isle/generated_code.rs +0 -0
  652. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/s390x/lower/isle.rs +0 -0
  653. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/s390x/lower.isle +0 -0
  654. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/s390x/lower.rs +0 -0
  655. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/s390x/mod.rs +0 -0
  656. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/s390x/settings.rs +0 -0
  657. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/unwind/systemv.rs +0 -0
  658. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/unwind/winx64.rs +0 -0
  659. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/unwind.rs +0 -0
  660. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/abi.rs +0 -0
  661. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/encoding/evex.rs +0 -0
  662. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/encoding/mod.rs +0 -0
  663. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/encoding/rex.rs +0 -0
  664. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/encoding/vex.rs +0 -0
  665. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/inst/args.rs +0 -0
  666. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/inst/emit.rs +0 -0
  667. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/inst/emit_state.rs +0 -0
  668. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/inst/emit_tests.rs +0 -0
  669. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/inst/mod.rs +0 -0
  670. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/inst/regs.rs +0 -0
  671. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/inst/stack_switch.rs +0 -0
  672. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/inst/unwind/systemv.rs +0 -0
  673. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/inst/unwind/winx64.rs +0 -0
  674. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/inst/unwind.rs +0 -0
  675. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/inst.isle +0 -0
  676. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/lower/isle/generated_code.rs +0 -0
  677. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/lower/isle.rs +0 -0
  678. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/lower.isle +0 -0
  679. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/lower.rs +0 -0
  680. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/mod.rs +0 -0
  681. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/pcc.rs +0 -0
  682. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/settings.rs +0 -0
  683. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isle_prelude.rs +0 -0
  684. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/iterators.rs +0 -0
  685. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/legalizer/globalvalue.rs +0 -0
  686. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/legalizer/mod.rs +0 -0
  687. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/lib.rs +0 -0
  688. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/loop_analysis.rs +0 -0
  689. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/machinst/abi.rs +0 -0
  690. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/machinst/blockorder.rs +0 -0
  691. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/machinst/buffer.rs +0 -0
  692. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/machinst/compile.rs +0 -0
  693. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/machinst/helpers.rs +0 -0
  694. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/machinst/inst_common.rs +0 -0
  695. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/machinst/isle.rs +0 -0
  696. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/machinst/lower.rs +0 -0
  697. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/machinst/mod.rs +0 -0
  698. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/machinst/pcc.rs +0 -0
  699. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/machinst/reg.rs +0 -0
  700. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/machinst/valueregs.rs +0 -0
  701. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/machinst/vcode.rs +0 -0
  702. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/nan_canonicalization.rs +0 -0
  703. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/opts/README.md +0 -0
  704. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/opts/arithmetic.isle +0 -0
  705. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/opts/bitops.isle +0 -0
  706. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/opts/cprop.isle +0 -0
  707. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/opts/extends.isle +0 -0
  708. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/opts/generated_code.rs +0 -0
  709. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/opts/icmp.isle +0 -0
  710. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/opts/remat.isle +0 -0
  711. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/opts/selects.isle +0 -0
  712. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/opts/shifts.isle +0 -0
  713. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/opts/spaceship.isle +0 -0
  714. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/opts/spectre.isle +0 -0
  715. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/opts/vector.isle +0 -0
  716. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/opts.rs +0 -0
  717. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/prelude.isle +0 -0
  718. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/prelude_lower.isle +0 -0
  719. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/prelude_opt.isle +0 -0
  720. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/print_errors.rs +0 -0
  721. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ranges.rs +0 -0
  722. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/remove_constant_phis.rs +0 -0
  723. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/result.rs +0 -0
  724. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/scoped_hash_map.rs +0 -0
  725. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/settings.rs +0 -0
  726. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/souper_harvest.rs +0 -0
  727. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/timing.rs +0 -0
  728. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/traversals.rs +0 -0
  729. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/unionfind.rs +0 -0
  730. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/unreachable_code.rs +0 -0
  731. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/value_label.rs +0 -0
  732. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/verifier/mod.rs +0 -0
  733. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/write.rs +0 -0
  734. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/LICENSE +0 -0
  735. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/README.md +0 -0
  736. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/cdsl/formats.rs +0 -0
  737. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/cdsl/instructions.rs +0 -0
  738. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/cdsl/isa.rs +0 -0
  739. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/cdsl/mod.rs +0 -0
  740. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/cdsl/operands.rs +0 -0
  741. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/cdsl/settings.rs +0 -0
  742. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/cdsl/types.rs +0 -0
  743. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/cdsl/typevar.rs +0 -0
  744. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/constant_hash.rs +0 -0
  745. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/error.rs +0 -0
  746. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/gen_inst.rs +0 -0
  747. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/gen_isle.rs +0 -0
  748. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/gen_settings.rs +0 -0
  749. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/gen_types.rs +0 -0
  750. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/isa/arm64.rs +0 -0
  751. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/isa/mod.rs +0 -0
  752. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/isa/pulley.rs +0 -0
  753. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/isa/riscv64.rs +0 -0
  754. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/isa/s390x.rs +0 -0
  755. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/isa/x86.rs +0 -0
  756. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/isle.rs +0 -0
  757. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/lib.rs +0 -0
  758. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/shared/entities.rs +0 -0
  759. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/shared/formats.rs +0 -0
  760. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/shared/immediates.rs +0 -0
  761. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/shared/instructions.rs +0 -0
  762. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/shared/mod.rs +0 -0
  763. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/shared/settings.rs +0 -0
  764. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/shared/types.rs +0 -0
  765. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/srcgen.rs +0 -0
  766. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/unique_table.rs +0 -0
  767. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.112.1 → cranelift-codegen-shared-0.112.2}/LICENSE +0 -0
  768. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.112.1 → cranelift-codegen-shared-0.112.2}/README.md +0 -0
  769. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.112.1 → cranelift-codegen-shared-0.112.2}/src/constant_hash.rs +0 -0
  770. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.112.1 → cranelift-codegen-shared-0.112.2}/src/constants.rs +0 -0
  771. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.112.1 → cranelift-codegen-shared-0.112.2}/src/lib.rs +0 -0
  772. /data/ext/cargo-vendor/{cranelift-control-0.112.1 → cranelift-control-0.112.2}/LICENSE +0 -0
  773. /data/ext/cargo-vendor/{cranelift-control-0.112.1 → cranelift-control-0.112.2}/README.md +0 -0
  774. /data/ext/cargo-vendor/{cranelift-control-0.112.1 → cranelift-control-0.112.2}/src/chaos.rs +0 -0
  775. /data/ext/cargo-vendor/{cranelift-control-0.112.1 → cranelift-control-0.112.2}/src/lib.rs +0 -0
  776. /data/ext/cargo-vendor/{cranelift-control-0.112.1 → cranelift-control-0.112.2}/src/zero_sized.rs +0 -0
  777. /data/ext/cargo-vendor/{cranelift-entity-0.112.1 → cranelift-entity-0.112.2}/LICENSE +0 -0
  778. /data/ext/cargo-vendor/{cranelift-entity-0.112.1 → cranelift-entity-0.112.2}/README.md +0 -0
  779. /data/ext/cargo-vendor/{cranelift-entity-0.112.1 → cranelift-entity-0.112.2}/src/boxed_slice.rs +0 -0
  780. /data/ext/cargo-vendor/{cranelift-entity-0.112.1 → cranelift-entity-0.112.2}/src/iter.rs +0 -0
  781. /data/ext/cargo-vendor/{cranelift-entity-0.112.1 → cranelift-entity-0.112.2}/src/keys.rs +0 -0
  782. /data/ext/cargo-vendor/{cranelift-entity-0.112.1 → cranelift-entity-0.112.2}/src/lib.rs +0 -0
  783. /data/ext/cargo-vendor/{cranelift-entity-0.112.1 → cranelift-entity-0.112.2}/src/list.rs +0 -0
  784. /data/ext/cargo-vendor/{cranelift-entity-0.112.1 → cranelift-entity-0.112.2}/src/map.rs +0 -0
  785. /data/ext/cargo-vendor/{cranelift-entity-0.112.1 → cranelift-entity-0.112.2}/src/packed_option.rs +0 -0
  786. /data/ext/cargo-vendor/{cranelift-entity-0.112.1 → cranelift-entity-0.112.2}/src/primary.rs +0 -0
  787. /data/ext/cargo-vendor/{cranelift-entity-0.112.1 → cranelift-entity-0.112.2}/src/set.rs +0 -0
  788. /data/ext/cargo-vendor/{cranelift-entity-0.112.1 → cranelift-entity-0.112.2}/src/sparse.rs +0 -0
  789. /data/ext/cargo-vendor/{cranelift-entity-0.112.1 → cranelift-entity-0.112.2}/src/unsigned.rs +0 -0
  790. /data/ext/cargo-vendor/{cranelift-frontend-0.112.1 → cranelift-frontend-0.112.2}/LICENSE +0 -0
  791. /data/ext/cargo-vendor/{cranelift-frontend-0.112.1 → cranelift-frontend-0.112.2}/README.md +0 -0
  792. /data/ext/cargo-vendor/{cranelift-frontend-0.112.1 → cranelift-frontend-0.112.2}/src/frontend/safepoints.rs +0 -0
  793. /data/ext/cargo-vendor/{cranelift-frontend-0.112.1 → cranelift-frontend-0.112.2}/src/frontend.rs +0 -0
  794. /data/ext/cargo-vendor/{cranelift-frontend-0.112.1 → cranelift-frontend-0.112.2}/src/lib.rs +0 -0
  795. /data/ext/cargo-vendor/{cranelift-frontend-0.112.1 → cranelift-frontend-0.112.2}/src/ssa.rs +0 -0
  796. /data/ext/cargo-vendor/{cranelift-frontend-0.112.1 → cranelift-frontend-0.112.2}/src/switch.rs +0 -0
  797. /data/ext/cargo-vendor/{cranelift-frontend-0.112.1 → cranelift-frontend-0.112.2}/src/variable.rs +0 -0
  798. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/README.md +0 -0
  799. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/build.rs +0 -0
  800. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/fail/bad_converters.isle +0 -0
  801. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/fail/bound_var_type_mismatch.isle +0 -0
  802. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/fail/converter_extractor_constructor.isle +0 -0
  803. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/fail/error1.isle +0 -0
  804. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/fail/extra_parens.isle +0 -0
  805. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/fail/impure_expression.isle +0 -0
  806. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/fail/impure_rhs.isle +0 -0
  807. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/fail/multi_internal_etor.isle +0 -0
  808. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/fail/multi_prio.isle +0 -0
  809. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/link/borrows.isle +0 -0
  810. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/link/borrows_main.rs +0 -0
  811. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/link/iflets.isle +0 -0
  812. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/link/iflets_main.rs +0 -0
  813. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/link/multi_constructor.isle +0 -0
  814. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/link/multi_constructor_main.rs +0 -0
  815. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/link/multi_extractor.isle +0 -0
  816. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/link/multi_extractor_main.rs +0 -0
  817. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/link/test.isle +0 -0
  818. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/link/test_main.rs +0 -0
  819. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/pass/bound_var.isle +0 -0
  820. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/pass/construct_and_extract.isle +0 -0
  821. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/pass/conversions.isle +0 -0
  822. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/pass/conversions_extern.isle +0 -0
  823. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/pass/let.isle +0 -0
  824. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/pass/nodebug.isle +0 -0
  825. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/pass/prio_trie_bug.isle +0 -0
  826. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/pass/test2.isle +0 -0
  827. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/pass/test3.isle +0 -0
  828. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/pass/test4.isle +0 -0
  829. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/pass/tutorial.isle +0 -0
  830. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/run/iconst.isle +0 -0
  831. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/run/iconst_main.rs +0 -0
  832. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/run/let_shadowing.isle +0 -0
  833. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/run/let_shadowing_main.rs +0 -0
  834. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/src/ast.rs +0 -0
  835. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/src/codegen.rs +0 -0
  836. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/src/compile.rs +0 -0
  837. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/src/disjointsets.rs +0 -0
  838. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/src/error.rs +0 -0
  839. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/src/files.rs +0 -0
  840. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/src/lexer.rs +0 -0
  841. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/src/lib.rs +0 -0
  842. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/src/log.rs +0 -0
  843. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/src/overlap.rs +0 -0
  844. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/src/parser.rs +0 -0
  845. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/src/sema.rs +0 -0
  846. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/src/serialize.rs +0 -0
  847. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/src/stablemapset.rs +0 -0
  848. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/src/trie_again.rs +0 -0
  849. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/tests/run_tests.rs +0 -0
  850. /data/ext/cargo-vendor/{cranelift-native-0.112.1 → cranelift-native-0.112.2}/LICENSE +0 -0
  851. /data/ext/cargo-vendor/{cranelift-native-0.112.1 → cranelift-native-0.112.2}/README.md +0 -0
  852. /data/ext/cargo-vendor/{cranelift-native-0.112.1 → cranelift-native-0.112.2}/src/lib.rs +0 -0
  853. /data/ext/cargo-vendor/{cranelift-native-0.112.1 → cranelift-native-0.112.2}/src/riscv.rs +0 -0
  854. /data/ext/cargo-vendor/{cranelift-wasm-0.112.1 → cranelift-wasm-0.112.2}/LICENSE +0 -0
  855. /data/ext/cargo-vendor/{cranelift-wasm-0.112.1 → cranelift-wasm-0.112.2}/README.md +0 -0
  856. /data/ext/cargo-vendor/{cranelift-wasm-0.112.1 → cranelift-wasm-0.112.2}/src/code_translator/bounds_checks.rs +0 -0
  857. /data/ext/cargo-vendor/{cranelift-wasm-0.112.1 → cranelift-wasm-0.112.2}/src/code_translator.rs +0 -0
  858. /data/ext/cargo-vendor/{cranelift-wasm-0.112.1 → cranelift-wasm-0.112.2}/src/environ/dummy.rs +0 -0
  859. /data/ext/cargo-vendor/{cranelift-wasm-0.112.1 → cranelift-wasm-0.112.2}/src/environ/mod.rs +0 -0
  860. /data/ext/cargo-vendor/{cranelift-wasm-0.112.1 → cranelift-wasm-0.112.2}/src/environ/spec.rs +0 -0
  861. /data/ext/cargo-vendor/{cranelift-wasm-0.112.1 → cranelift-wasm-0.112.2}/src/func_translator.rs +0 -0
  862. /data/ext/cargo-vendor/{cranelift-wasm-0.112.1 → cranelift-wasm-0.112.2}/src/heap.rs +0 -0
  863. /data/ext/cargo-vendor/{cranelift-wasm-0.112.1 → cranelift-wasm-0.112.2}/src/lib.rs +0 -0
  864. /data/ext/cargo-vendor/{cranelift-wasm-0.112.1 → cranelift-wasm-0.112.2}/src/module_translator.rs +0 -0
  865. /data/ext/cargo-vendor/{cranelift-wasm-0.112.1 → cranelift-wasm-0.112.2}/src/sections_translator.rs +0 -0
  866. /data/ext/cargo-vendor/{cranelift-wasm-0.112.1 → cranelift-wasm-0.112.2}/src/state.rs +0 -0
  867. /data/ext/cargo-vendor/{cranelift-wasm-0.112.1 → cranelift-wasm-0.112.2}/src/table.rs +0 -0
  868. /data/ext/cargo-vendor/{cranelift-wasm-0.112.1 → cranelift-wasm-0.112.2}/src/translation_utils.rs +0 -0
  869. /data/ext/cargo-vendor/{pulley-interpreter-0.1.1 → pulley-interpreter-0.1.2}/README.md +0 -0
  870. /data/ext/cargo-vendor/{pulley-interpreter-0.1.1 → pulley-interpreter-0.1.2}/src/decode.rs +0 -0
  871. /data/ext/cargo-vendor/{pulley-interpreter-0.1.1 → pulley-interpreter-0.1.2}/src/disas.rs +0 -0
  872. /data/ext/cargo-vendor/{pulley-interpreter-0.1.1 → pulley-interpreter-0.1.2}/src/encode.rs +0 -0
  873. /data/ext/cargo-vendor/{pulley-interpreter-0.1.1 → pulley-interpreter-0.1.2}/src/imms.rs +0 -0
  874. /data/ext/cargo-vendor/{pulley-interpreter-0.1.1 → pulley-interpreter-0.1.2}/src/interp.rs +0 -0
  875. /data/ext/cargo-vendor/{pulley-interpreter-0.1.1 → pulley-interpreter-0.1.2}/src/lib.rs +0 -0
  876. /data/ext/cargo-vendor/{pulley-interpreter-0.1.1 → pulley-interpreter-0.1.2}/src/op.rs +0 -0
  877. /data/ext/cargo-vendor/{pulley-interpreter-0.1.1 → pulley-interpreter-0.1.2}/src/opcode.rs +0 -0
  878. /data/ext/cargo-vendor/{pulley-interpreter-0.1.1 → pulley-interpreter-0.1.2}/src/regs.rs +0 -0
  879. /data/ext/cargo-vendor/{pulley-interpreter-0.1.1 → pulley-interpreter-0.1.2}/tests/all/disas.rs +0 -0
  880. /data/ext/cargo-vendor/{pulley-interpreter-0.1.1 → pulley-interpreter-0.1.2}/tests/all/interp.rs +0 -0
  881. /data/ext/cargo-vendor/{pulley-interpreter-0.1.1 → pulley-interpreter-0.1.2}/tests/all/main.rs +0 -0
  882. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/LICENSE +0 -0
  883. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/docs/reactor-refactor.md +0 -0
  884. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/blocking.rs +0 -0
  885. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/doc/mod.rs +0 -0
  886. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/doc/os.rs +0 -0
  887. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/canonicalize.rs +0 -0
  888. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/copy.rs +0 -0
  889. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/create_dir.rs +0 -0
  890. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/create_dir_all.rs +0 -0
  891. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/dir_builder.rs +0 -0
  892. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/file/tests.rs +0 -0
  893. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/hard_link.rs +0 -0
  894. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/metadata.rs +0 -0
  895. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/mocks.rs +0 -0
  896. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/mod.rs +0 -0
  897. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/open_options/mock_open_options.rs +0 -0
  898. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/open_options.rs +0 -0
  899. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/read.rs +0 -0
  900. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/read_link.rs +0 -0
  901. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/read_to_string.rs +0 -0
  902. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/remove_dir.rs +0 -0
  903. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/remove_dir_all.rs +0 -0
  904. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/remove_file.rs +0 -0
  905. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/rename.rs +0 -0
  906. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/set_permissions.rs +0 -0
  907. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/symlink.rs +0 -0
  908. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/symlink_dir.rs +0 -0
  909. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/symlink_file.rs +0 -0
  910. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/symlink_metadata.rs +0 -0
  911. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/write.rs +0 -0
  912. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/future/block_on.rs +0 -0
  913. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/future/mod.rs +0 -0
  914. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/future/poll_fn.rs +0 -0
  915. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/future/trace.rs +0 -0
  916. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/future/try_join.rs +0 -0
  917. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fuzz.rs +0 -0
  918. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/async_buf_read.rs +0 -0
  919. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/async_seek.rs +0 -0
  920. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/async_write.rs +0 -0
  921. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/interest.rs +0 -0
  922. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/join.rs +0 -0
  923. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/read_buf.rs +0 -0
  924. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/ready.rs +0 -0
  925. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/split.rs +0 -0
  926. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/stderr.rs +0 -0
  927. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/stdin.rs +0 -0
  928. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/stdio_common.rs +0 -0
  929. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/stdout.rs +0 -0
  930. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/util/async_buf_read_ext.rs +0 -0
  931. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/util/async_read_ext.rs +0 -0
  932. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/util/async_seek_ext.rs +0 -0
  933. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/util/async_write_ext.rs +0 -0
  934. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/util/buf_stream.rs +0 -0
  935. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/util/fill_buf.rs +0 -0
  936. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/util/flush.rs +0 -0
  937. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/util/shutdown.rs +0 -0
  938. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/util/vec_with_initialized.rs +0 -0
  939. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/util/write.rs +0 -0
  940. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/util/write_vectored.rs +0 -0
  941. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/loom/mod.rs +0 -0
  942. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/loom/std/atomic_u64.rs +0 -0
  943. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/loom/std/atomic_u64_as_mutex.rs +0 -0
  944. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/loom/std/atomic_u64_native.rs +0 -0
  945. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/loom/std/atomic_u64_static_const_new.rs +0 -0
  946. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/loom/std/atomic_u64_static_once_cell.rs +0 -0
  947. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/loom/std/barrier.rs +0 -0
  948. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/loom/std/mod.rs +0 -0
  949. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/loom/std/parking_lot.rs +0 -0
  950. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/loom/std/unsafe_cell.rs +0 -0
  951. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/macros/addr_of.rs +0 -0
  952. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/macros/cfg.rs +0 -0
  953. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/macros/join.rs +0 -0
  954. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/macros/loom.rs +0 -0
  955. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/macros/pin.rs +0 -0
  956. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/macros/support.rs +0 -0
  957. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/macros/thread_local.rs +0 -0
  958. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/macros/trace.rs +0 -0
  959. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/macros/try_join.rs +0 -0
  960. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/lookup_host.rs +0 -0
  961. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/mod.rs +0 -0
  962. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/tcp/mod.rs +0 -0
  963. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/tcp/socket.rs +0 -0
  964. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/tcp/split.rs +0 -0
  965. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/tcp/split_owned.rs +0 -0
  966. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/unix/datagram/mod.rs +0 -0
  967. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/unix/mod.rs +0 -0
  968. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/unix/pipe.rs +0 -0
  969. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/unix/socket.rs +0 -0
  970. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/unix/socketaddr.rs +0 -0
  971. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/unix/split.rs +0 -0
  972. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/unix/split_owned.rs +0 -0
  973. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/unix/stream.rs +0 -0
  974. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/unix/ucred.rs +0 -0
  975. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/windows/mod.rs +0 -0
  976. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/windows/named_pipe.rs +0 -0
  977. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/process/kill.rs +0 -0
  978. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/process/unix/mod.rs +0 -0
  979. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/process/unix/orphan.rs +0 -0
  980. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/process/unix/reap.rs +0 -0
  981. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/process/windows.rs +0 -0
  982. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/blocking/mod.rs +0 -0
  983. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/blocking/shutdown.rs +0 -0
  984. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/blocking/task.rs +0 -0
  985. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/context/blocking.rs +0 -0
  986. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/context/current.rs +0 -0
  987. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/context/runtime.rs +0 -0
  988. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/context/runtime_mt.rs +0 -0
  989. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/context/scoped.rs +0 -0
  990. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/context.rs +0 -0
  991. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/driver.rs +0 -0
  992. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/dump.rs +0 -0
  993. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/handle.rs +0 -0
  994. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/id.rs +0 -0
  995. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/io/driver/signal.rs +0 -0
  996. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/io/driver.rs +0 -0
  997. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/io/metrics.rs +0 -0
  998. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/io/mod.rs +0 -0
  999. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/io/registration_set.rs +0 -0
  1000. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/io/scheduled_io.rs +0 -0
  1001. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/metrics/batch.rs +0 -0
  1002. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/metrics/histogram.rs +0 -0
  1003. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/metrics/io.rs +0 -0
  1004. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/metrics/mock.rs +0 -0
  1005. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/metrics/mod.rs +0 -0
  1006. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/metrics/runtime.rs +0 -0
  1007. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/metrics/scheduler.rs +0 -0
  1008. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/metrics/worker.rs +0 -0
  1009. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/park.rs +0 -0
  1010. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/process.rs +0 -0
  1011. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/runtime.rs +0 -0
  1012. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/block_in_place.rs +0 -0
  1013. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/defer.rs +0 -0
  1014. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/inject/metrics.rs +0 -0
  1015. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/inject/pop.rs +0 -0
  1016. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/inject/rt_multi_thread.rs +0 -0
  1017. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/inject/shared.rs +0 -0
  1018. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/inject/synced.rs +0 -0
  1019. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/inject.rs +0 -0
  1020. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/lock.rs +0 -0
  1021. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread/counters.rs +0 -0
  1022. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread/handle/metrics.rs +0 -0
  1023. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread/handle/taskdump.rs +0 -0
  1024. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread/idle.rs +0 -0
  1025. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread/mod.rs +0 -0
  1026. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread/overflow.rs +0 -0
  1027. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread/park.rs +0 -0
  1028. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread/queue.rs +0 -0
  1029. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread/stats.rs +0 -0
  1030. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread/trace.rs +0 -0
  1031. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread/trace_mock.rs +0 -0
  1032. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread/worker/metrics.rs +0 -0
  1033. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread/worker/taskdump.rs +0 -0
  1034. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread/worker/taskdump_mock.rs +0 -0
  1035. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread_alt/counters.rs +0 -0
  1036. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread_alt/handle/metrics.rs +0 -0
  1037. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread_alt/handle/taskdump.rs +0 -0
  1038. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread_alt/idle.rs +0 -0
  1039. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread_alt/mod.rs +0 -0
  1040. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread_alt/overflow.rs +0 -0
  1041. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread_alt/park.rs +0 -0
  1042. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread_alt/queue.rs +0 -0
  1043. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread_alt/stats.rs +0 -0
  1044. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread_alt/trace.rs +0 -0
  1045. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread_alt/trace_mock.rs +0 -0
  1046. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread_alt/worker/metrics.rs +0 -0
  1047. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread_alt/worker/taskdump.rs +0 -0
  1048. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread_alt/worker/taskdump_mock.rs +0 -0
  1049. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/signal/mod.rs +0 -0
  1050. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/task/abort.rs +0 -0
  1051. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/task/list.rs +0 -0
  1052. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/task/raw.rs +0 -0
  1053. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/task/state.rs +0 -0
  1054. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/task/trace/mod.rs +0 -0
  1055. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/task/trace/symbol.rs +0 -0
  1056. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/task/trace/tree.rs +0 -0
  1057. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/task/waker.rs +0 -0
  1058. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/tests/inject.rs +0 -0
  1059. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/tests/loom_blocking.rs +0 -0
  1060. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/tests/loom_current_thread/yield_now.rs +0 -0
  1061. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/tests/loom_current_thread.rs +0 -0
  1062. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/tests/loom_join_set.rs +0 -0
  1063. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/tests/loom_local.rs +0 -0
  1064. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/tests/loom_multi_thread/queue.rs +0 -0
  1065. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/tests/loom_multi_thread/shutdown.rs +0 -0
  1066. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/tests/loom_multi_thread/yield_now.rs +0 -0
  1067. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/tests/loom_multi_thread_alt/queue.rs +0 -0
  1068. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/tests/loom_multi_thread_alt/shutdown.rs +0 -0
  1069. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/tests/loom_multi_thread_alt/yield_now.rs +0 -0
  1070. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/tests/loom_oneshot.rs +0 -0
  1071. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/tests/task_combinations.rs +0 -0
  1072. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/thread_id.rs +0 -0
  1073. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/time/entry.rs +0 -0
  1074. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/time/handle.rs +0 -0
  1075. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/time/source.rs +0 -0
  1076. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/time/tests/mod.rs +0 -0
  1077. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/time/wheel/level.rs +0 -0
  1078. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/time/wheel/mod.rs +0 -0
  1079. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/signal/ctrl_c.rs +0 -0
  1080. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/signal/mod.rs +0 -0
  1081. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/signal/registry.rs +0 -0
  1082. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/signal/reusable_box.rs +0 -0
  1083. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/signal/unix.rs +0 -0
  1084. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/signal/windows/stub.rs +0 -0
  1085. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/signal/windows/sys.rs +0 -0
  1086. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/signal/windows.rs +0 -0
  1087. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/barrier.rs +0 -0
  1088. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/mod.rs +0 -0
  1089. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/mpsc/block.rs +0 -0
  1090. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/mpsc/bounded.rs +0 -0
  1091. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/mpsc/list.rs +0 -0
  1092. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/mpsc/unbounded.rs +0 -0
  1093. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/mutex.rs +0 -0
  1094. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/once_cell.rs +0 -0
  1095. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/rwlock/owned_read_guard.rs +0 -0
  1096. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/rwlock/owned_write_guard.rs +0 -0
  1097. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/rwlock/owned_write_guard_mapped.rs +0 -0
  1098. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/rwlock/read_guard.rs +0 -0
  1099. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/rwlock/write_guard.rs +0 -0
  1100. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/rwlock/write_guard_mapped.rs +0 -0
  1101. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/rwlock.rs +0 -0
  1102. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/semaphore.rs +0 -0
  1103. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/task/atomic_waker.rs +0 -0
  1104. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/task/mod.rs +0 -0
  1105. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/tests/atomic_waker.rs +0 -0
  1106. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/tests/loom_atomic_waker.rs +0 -0
  1107. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/tests/loom_broadcast.rs +0 -0
  1108. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/tests/loom_list.rs +0 -0
  1109. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/tests/loom_mpsc.rs +0 -0
  1110. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/tests/loom_notify.rs +0 -0
  1111. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/tests/loom_oneshot.rs +0 -0
  1112. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/tests/loom_rwlock.rs +0 -0
  1113. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/tests/loom_semaphore_batch.rs +0 -0
  1114. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/tests/loom_watch.rs +0 -0
  1115. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/tests/mod.rs +0 -0
  1116. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/tests/notify.rs +0 -0
  1117. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/tests/semaphore_batch.rs +0 -0
  1118. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/watch.rs +0 -0
  1119. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/task/blocking.rs +0 -0
  1120. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/task/builder.rs +0 -0
  1121. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/task/mod.rs +0 -0
  1122. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/task/task_local.rs +0 -0
  1123. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/task/unconstrained.rs +0 -0
  1124. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/time/clock.rs +0 -0
  1125. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/time/error.rs +0 -0
  1126. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/time/instant.rs +0 -0
  1127. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/time/mod.rs +0 -0
  1128. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/time/timeout.rs +0 -0
  1129. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/atomic_cell.rs +0 -0
  1130. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/cacheline.rs +0 -0
  1131. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/error.rs +0 -0
  1132. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/idle_notified_set.rs +0 -0
  1133. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/linked_list.rs +0 -0
  1134. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/markers.rs +0 -0
  1135. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/memchr.rs +0 -0
  1136. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/metric_atomics.rs +0 -0
  1137. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/mod.rs +0 -0
  1138. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/once_cell.rs +0 -0
  1139. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/rand/rt.rs +0 -0
  1140. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/rand/rt_unstable.rs +0 -0
  1141. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/rand.rs +0 -0
  1142. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/rc_cell.rs +0 -0
  1143. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/sharded_list.rs +0 -0
  1144. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/trace.rs +0 -0
  1145. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/try_lock.rs +0 -0
  1146. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/wake.rs +0 -0
  1147. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/wake_list.rs +0 -0
  1148. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/_require_full.rs +0 -0
  1149. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/buffered.rs +0 -0
  1150. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/coop_budget.rs +0 -0
  1151. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/dump.rs +0 -0
  1152. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/duplex_stream.rs +0 -0
  1153. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/fs.rs +0 -0
  1154. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/fs_canonicalize_dir.rs +0 -0
  1155. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/fs_copy.rs +0 -0
  1156. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/fs_dir.rs +0 -0
  1157. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/fs_file.rs +0 -0
  1158. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/fs_link.rs +0 -0
  1159. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/fs_open_options.rs +0 -0
  1160. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/fs_open_options_windows.rs +0 -0
  1161. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/fs_remove_dir_all.rs +0 -0
  1162. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/fs_remove_file.rs +0 -0
  1163. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/fs_rename.rs +0 -0
  1164. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/fs_symlink_dir_windows.rs +0 -0
  1165. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/fs_symlink_file_windows.rs +0 -0
  1166. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/fs_try_exists.rs +0 -0
  1167. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_async_read.rs +0 -0
  1168. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_buf_reader.rs +0 -0
  1169. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_buf_writer.rs +0 -0
  1170. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_chain.rs +0 -0
  1171. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_copy_bidirectional.rs +0 -0
  1172. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_driver.rs +0 -0
  1173. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_driver_drop.rs +0 -0
  1174. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_fill_buf.rs +0 -0
  1175. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_join.rs +0 -0
  1176. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_lines.rs +0 -0
  1177. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_mem_stream.rs +0 -0
  1178. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_panic.rs +0 -0
  1179. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_poll_aio.rs +0 -0
  1180. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_read.rs +0 -0
  1181. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_read_buf.rs +0 -0
  1182. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_read_exact.rs +0 -0
  1183. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_read_line.rs +0 -0
  1184. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_read_to_end.rs +0 -0
  1185. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_read_to_string.rs +0 -0
  1186. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_read_until.rs +0 -0
  1187. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_repeat.rs +0 -0
  1188. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_sink.rs +0 -0
  1189. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_split.rs +0 -0
  1190. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_take.rs +0 -0
  1191. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_util_empty.rs +0 -0
  1192. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_write.rs +0 -0
  1193. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_write_all.rs +0 -0
  1194. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_write_buf.rs +0 -0
  1195. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_write_int.rs +0 -0
  1196. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/join_handle_panic.rs +0 -0
  1197. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/macros_pin.rs +0 -0
  1198. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/macros_rename_test.rs +0 -0
  1199. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/macros_select.rs +0 -0
  1200. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/macros_test.rs +0 -0
  1201. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/macros_try_join.rs +0 -0
  1202. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/net_bind_resource.rs +0 -0
  1203. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/net_lookup_host.rs +0 -0
  1204. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/net_named_pipe.rs +0 -0
  1205. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/net_panic.rs +0 -0
  1206. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/net_unix_pipe.rs +0 -0
  1207. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/no_rt.rs +0 -0
  1208. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/process_arg0.rs +0 -0
  1209. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/process_change_of_runtime.rs +0 -0
  1210. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/process_issue_2174.rs +0 -0
  1211. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/process_issue_42.rs +0 -0
  1212. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/process_kill_on_drop.rs +0 -0
  1213. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/process_raw_handle.rs +0 -0
  1214. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/process_smoke.rs +0 -0
  1215. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/rt_basic.rs +0 -0
  1216. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/rt_common.rs +0 -0
  1217. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/rt_handle.rs +0 -0
  1218. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/rt_handle_block_on.rs +0 -0
  1219. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/rt_metrics.rs +0 -0
  1220. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/rt_panic.rs +0 -0
  1221. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/rt_threaded.rs +0 -0
  1222. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/rt_threaded_alt.rs +0 -0
  1223. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/rt_time_start_paused.rs +0 -0
  1224. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/rt_unstable_metrics.rs +0 -0
  1225. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/signal_ctrl_c.rs +0 -0
  1226. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/signal_drop_recv.rs +0 -0
  1227. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/signal_drop_rt.rs +0 -0
  1228. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/signal_drop_signal.rs +0 -0
  1229. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/signal_multi_rt.rs +0 -0
  1230. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/signal_no_rt.rs +0 -0
  1231. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/signal_notify_both.rs +0 -0
  1232. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/signal_panic.rs +0 -0
  1233. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/signal_twice.rs +0 -0
  1234. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/signal_usr1.rs +0 -0
  1235. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/support/io_vec.rs +0 -0
  1236. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/support/leaked_buffers.rs +0 -0
  1237. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/support/mpsc_stream.rs +0 -0
  1238. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/support/panic.rs +0 -0
  1239. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/support/signal.rs +0 -0
  1240. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/sync_barrier.rs +0 -0
  1241. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/sync_broadcast.rs +0 -0
  1242. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/sync_errors.rs +0 -0
  1243. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/sync_mpsc_weak.rs +0 -0
  1244. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/sync_mutex.rs +0 -0
  1245. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/sync_mutex_owned.rs +0 -0
  1246. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/sync_notify.rs +0 -0
  1247. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/sync_once_cell.rs +0 -0
  1248. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/sync_oneshot.rs +0 -0
  1249. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/sync_panic.rs +0 -0
  1250. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/sync_rwlock.rs +0 -0
  1251. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/sync_semaphore.rs +0 -0
  1252. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/sync_semaphore_owned.rs +0 -0
  1253. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/sync_watch.rs +0 -0
  1254. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/task_blocking.rs +0 -0
  1255. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/task_builder.rs +0 -0
  1256. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/task_id.rs +0 -0
  1257. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/task_local.rs +0 -0
  1258. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/task_local_set.rs +0 -0
  1259. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/task_panic.rs +0 -0
  1260. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/task_yield_now.rs +0 -0
  1261. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/tcp_accept.rs +0 -0
  1262. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/tcp_connect.rs +0 -0
  1263. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/tcp_echo.rs +0 -0
  1264. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/tcp_into_split.rs +0 -0
  1265. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/tcp_into_std.rs +0 -0
  1266. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/tcp_peek.rs +0 -0
  1267. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/tcp_shutdown.rs +0 -0
  1268. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/tcp_socket.rs +0 -0
  1269. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/tcp_split.rs +0 -0
  1270. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/tcp_stream.rs +0 -0
  1271. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/test_clock.rs +0 -0
  1272. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/time_interval.rs +0 -0
  1273. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/time_panic.rs +0 -0
  1274. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/time_pause.rs +0 -0
  1275. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/time_rt.rs +0 -0
  1276. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/time_sleep.rs +0 -0
  1277. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/time_timeout.rs +0 -0
  1278. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/udp.rs +0 -0
  1279. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/uds_cred.rs +0 -0
  1280. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/uds_datagram.rs +0 -0
  1281. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/uds_socket.rs +0 -0
  1282. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/uds_split.rs +0 -0
  1283. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/unwindsafe.rs +0 -0
  1284. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/LICENSE +0 -0
  1285. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/README.md +0 -0
  1286. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/clocks.rs +0 -0
  1287. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/ctx.rs +0 -0
  1288. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/dir.rs +0 -0
  1289. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/error.rs +0 -0
  1290. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/file.rs +0 -0
  1291. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/lib.rs +0 -0
  1292. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/pipe.rs +0 -0
  1293. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/random.rs +0 -0
  1294. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/sched/subscription.rs +0 -0
  1295. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/sched.rs +0 -0
  1296. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/snapshots/mod.rs +0 -0
  1297. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/snapshots/preview_0.rs +0 -0
  1298. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/snapshots/preview_1/error.rs +0 -0
  1299. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/snapshots/preview_1.rs +0 -0
  1300. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/string_array.rs +0 -0
  1301. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/sync/clocks.rs +0 -0
  1302. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/sync/dir.rs +0 -0
  1303. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/sync/file.rs +0 -0
  1304. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/sync/mod.rs +0 -0
  1305. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/sync/net.rs +0 -0
  1306. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/sync/sched/unix.rs +0 -0
  1307. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/sync/sched/windows.rs +0 -0
  1308. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/sync/sched.rs +0 -0
  1309. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/sync/stdio.rs +0 -0
  1310. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/table.rs +0 -0
  1311. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/tokio/dir.rs +0 -0
  1312. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/tokio/file.rs +0 -0
  1313. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/tokio/mod.rs +0 -0
  1314. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/tokio/net.rs +0 -0
  1315. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/tokio/sched/unix.rs +0 -0
  1316. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/tokio/sched/windows.rs +0 -0
  1317. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/tokio/sched.rs +0 -0
  1318. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/tokio/stdio.rs +0 -0
  1319. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/tests/all/async_.rs +0 -0
  1320. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/tests/all/main.rs +0 -0
  1321. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/tests/all/sync.rs +0 -0
  1322. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/witx/preview0/typenames.witx +0 -0
  1323. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/witx/preview0/wasi_unstable.witx +0 -0
  1324. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/witx/preview1/typenames.witx +0 -0
  1325. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/witx/preview1/wasi_snapshot_preview1.witx +0 -0
  1326. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/LICENSE +0 -0
  1327. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/README.md +0 -0
  1328. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/build.rs +0 -0
  1329. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/proptest-regressions/runtime/vm/instance/allocator/pooling/memory_pool.txt +0 -0
  1330. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/compile/code_builder.rs +0 -0
  1331. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/compile/runtime.rs +0 -0
  1332. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/compile.rs +0 -0
  1333. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/config.rs +0 -0
  1334. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/engine/serialization.rs +0 -0
  1335. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/engine.rs +0 -0
  1336. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/lib.rs +0 -0
  1337. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/profiling_agent/jitdump.rs +0 -0
  1338. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/profiling_agent/perfmap.rs +0 -0
  1339. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/profiling_agent/vtune.rs +0 -0
  1340. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/profiling_agent.rs +0 -0
  1341. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/code.rs +0 -0
  1342. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/code_memory.rs +0 -0
  1343. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/bindgen_examples/_0_hello_world.rs +0 -0
  1344. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/bindgen_examples/_1_world_imports.rs +0 -0
  1345. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/bindgen_examples/_2_world_exports.rs +0 -0
  1346. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/bindgen_examples/_3_interface_imports.rs +0 -0
  1347. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/bindgen_examples/_4_imported_resources.rs +0 -0
  1348. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/bindgen_examples/_5_all_world_export_kinds.rs +0 -0
  1349. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/bindgen_examples/_6_exported_resources.rs +0 -0
  1350. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/bindgen_examples/mod.rs +0 -0
  1351. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/component.rs +0 -0
  1352. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/func/host.rs +0 -0
  1353. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/func/options.rs +0 -0
  1354. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/func/typed.rs +0 -0
  1355. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/func.rs +0 -0
  1356. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/instance.rs +0 -0
  1357. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/linker.rs +0 -0
  1358. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/matching.rs +0 -0
  1359. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/mod.rs +0 -0
  1360. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/resource_table.rs +0 -0
  1361. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/resources.rs +0 -0
  1362. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/storage.rs +0 -0
  1363. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/store.rs +0 -0
  1364. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/types.rs +0 -0
  1365. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/values.rs +0 -0
  1366. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/coredump.rs +0 -0
  1367. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/debug.rs +0 -0
  1368. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/externals/global.rs +0 -0
  1369. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/externals/table.rs +0 -0
  1370. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/externals.rs +0 -0
  1371. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/func/typed.rs +0 -0
  1372. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/func.rs +0 -0
  1373. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/gc/disabled/anyref.rs +0 -0
  1374. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/gc/disabled/arrayref.rs +0 -0
  1375. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/gc/disabled/externref.rs +0 -0
  1376. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/gc/disabled/i31.rs +0 -0
  1377. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/gc/disabled/rooting.rs +0 -0
  1378. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/gc/disabled/structref.rs +0 -0
  1379. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/gc/disabled.rs +0 -0
  1380. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/gc/enabled/anyref.rs +0 -0
  1381. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/gc/enabled/arrayref.rs +0 -0
  1382. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/gc/enabled/externref.rs +0 -0
  1383. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/gc/enabled/i31.rs +0 -0
  1384. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/gc/enabled/rooting.rs +0 -0
  1385. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/gc/enabled/structref.rs +0 -0
  1386. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/gc/enabled.rs +0 -0
  1387. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/gc/noextern.rs +0 -0
  1388. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/gc.rs +0 -0
  1389. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/instance.rs +0 -0
  1390. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/instantiate.rs +0 -0
  1391. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/limits.rs +0 -0
  1392. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/linker.rs +0 -0
  1393. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/memory.rs +0 -0
  1394. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/module/registry.rs +0 -0
  1395. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/module.rs +0 -0
  1396. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/profiling.rs +0 -0
  1397. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/resources.rs +0 -0
  1398. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/signatures.rs +0 -0
  1399. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/stack.rs +0 -0
  1400. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/store/context.rs +0 -0
  1401. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/store/data.rs +0 -0
  1402. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/store/func_refs.rs +0 -0
  1403. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/store.rs +0 -0
  1404. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/trampoline/func.rs +0 -0
  1405. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/trampoline/global.rs +0 -0
  1406. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/trampoline/memory.rs +0 -0
  1407. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/trampoline/table.rs +0 -0
  1408. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/trampoline.rs +0 -0
  1409. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/trap.rs +0 -0
  1410. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/types/matching.rs +0 -0
  1411. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/types.rs +0 -0
  1412. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/uninhabited.rs +0 -0
  1413. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/unix.rs +0 -0
  1414. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/v128.rs +0 -0
  1415. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/values.rs +0 -0
  1416. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/arch/aarch64.rs +0 -0
  1417. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/arch/mod.rs +0 -0
  1418. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/arch/riscv64.rs +0 -0
  1419. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/arch/s390x.S +0 -0
  1420. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/arch/s390x.rs +0 -0
  1421. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/arch/unsupported.rs +0 -0
  1422. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/arch/x86_64.rs +0 -0
  1423. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/async_yield.rs +0 -0
  1424. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/component/libcalls.rs +0 -0
  1425. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/component/resources.rs +0 -0
  1426. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/component.rs +0 -0
  1427. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/const_expr.rs +0 -0
  1428. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/cow.rs +0 -0
  1429. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/debug_builtins.rs +0 -0
  1430. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/export.rs +0 -0
  1431. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/gc/disabled.rs +0 -0
  1432. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/gc/enabled/arrayref.rs +0 -0
  1433. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/gc/enabled/data.rs +0 -0
  1434. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/gc/enabled/drc.rs +0 -0
  1435. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/gc/enabled/externref.rs +0 -0
  1436. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/gc/enabled/free_list.rs +0 -0
  1437. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/gc/enabled/structref.rs +0 -0
  1438. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/gc/enabled.rs +0 -0
  1439. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/gc/gc_ref.rs +0 -0
  1440. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/gc/gc_runtime.rs +0 -0
  1441. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/gc/host_data.rs +0 -0
  1442. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/gc/i31.rs +0 -0
  1443. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/gc.rs +0 -0
  1444. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/helpers.c +0 -0
  1445. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/imports.rs +0 -0
  1446. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/instance/allocator/on_demand.rs +0 -0
  1447. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/instance/allocator/pooling/decommit_queue.rs +0 -0
  1448. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/instance/allocator/pooling/gc_heap_pool.rs +0 -0
  1449. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/instance/allocator/pooling/generic_stack_pool.rs +0 -0
  1450. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/instance/allocator/pooling/index_allocator.rs +0 -0
  1451. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/instance/allocator/pooling/memory_pool.rs +0 -0
  1452. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/instance/allocator/pooling/table_pool.rs +0 -0
  1453. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/instance/allocator/pooling/unix_stack_pool.rs +0 -0
  1454. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/instance/allocator/pooling.rs +0 -0
  1455. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/instance/allocator.rs +0 -0
  1456. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/instance.rs +0 -0
  1457. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/libcalls.rs +0 -0
  1458. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/memory.rs +0 -0
  1459. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/mmap.rs +0 -0
  1460. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/mmap_vec.rs +0 -0
  1461. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/module_id.rs +0 -0
  1462. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/mpk/disabled.rs +0 -0
  1463. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/mpk/enabled.rs +0 -0
  1464. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/mpk/mod.rs +0 -0
  1465. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/mpk/pkru.rs +0 -0
  1466. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/mpk/sys.rs +0 -0
  1467. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/send_sync_ptr.rs +0 -0
  1468. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/store_box.rs +0 -0
  1469. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/custom/capi.rs +0 -0
  1470. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/custom/mmap.rs +0 -0
  1471. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/custom/mod.rs +0 -0
  1472. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/custom/traphandlers.rs +0 -0
  1473. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/custom/unwind.rs +0 -0
  1474. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/custom/vm.rs +0 -0
  1475. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/miri/mmap.rs +0 -0
  1476. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/miri/mod.rs +0 -0
  1477. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/miri/traphandlers.rs +0 -0
  1478. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/miri/unwind.rs +0 -0
  1479. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/miri/vm.rs +0 -0
  1480. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/mod.rs +0 -0
  1481. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/unix/machports.rs +0 -0
  1482. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/unix/macos_traphandlers.rs +0 -0
  1483. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/unix/mmap.rs +0 -0
  1484. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/unix/mod.rs +0 -0
  1485. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/unix/signals.rs +0 -0
  1486. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/unix/unwind.rs +0 -0
  1487. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/unix/vm.rs +0 -0
  1488. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/windows/mmap.rs +0 -0
  1489. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/windows/mod.rs +0 -0
  1490. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/windows/traphandlers.rs +0 -0
  1491. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/windows/unwind.rs +0 -0
  1492. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/windows/vm.rs +0 -0
  1493. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/table.rs +0 -0
  1494. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/threads/mod.rs +0 -0
  1495. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/threads/parking_spot.rs +0 -0
  1496. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/threads/shared_memory.rs +0 -0
  1497. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/threads/shared_memory_disabled.rs +0 -0
  1498. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/traphandlers/coredump_disabled.rs +0 -0
  1499. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/traphandlers/coredump_enabled.rs +0 -0
  1500. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/traphandlers.rs +0 -0
  1501. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/vmcontext/vm_host_func_context.rs +0 -0
  1502. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/vmcontext.rs +0 -0
  1503. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm.rs +0 -0
  1504. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/windows.rs +0 -0
  1505. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime.rs +0 -0
  1506. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/sync_nostd.rs +0 -0
  1507. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/sync_std.rs +0 -0
  1508. /data/ext/cargo-vendor/{wasmtime-asm-macros-25.0.1 → wasmtime-asm-macros-25.0.2}/src/lib.rs +0 -0
  1509. /data/ext/cargo-vendor/{wasmtime-cache-25.0.1 → wasmtime-cache-25.0.2}/LICENSE +0 -0
  1510. /data/ext/cargo-vendor/{wasmtime-cache-25.0.1 → wasmtime-cache-25.0.2}/build.rs +0 -0
  1511. /data/ext/cargo-vendor/{wasmtime-cache-25.0.1 → wasmtime-cache-25.0.2}/src/config/tests.rs +0 -0
  1512. /data/ext/cargo-vendor/{wasmtime-cache-25.0.1 → wasmtime-cache-25.0.2}/src/config.rs +0 -0
  1513. /data/ext/cargo-vendor/{wasmtime-cache-25.0.1 → wasmtime-cache-25.0.2}/src/lib.rs +0 -0
  1514. /data/ext/cargo-vendor/{wasmtime-cache-25.0.1 → wasmtime-cache-25.0.2}/src/tests.rs +0 -0
  1515. /data/ext/cargo-vendor/{wasmtime-cache-25.0.1 → wasmtime-cache-25.0.2}/src/worker/tests/system_time_stub.rs +0 -0
  1516. /data/ext/cargo-vendor/{wasmtime-cache-25.0.1 → wasmtime-cache-25.0.2}/src/worker/tests.rs +0 -0
  1517. /data/ext/cargo-vendor/{wasmtime-cache-25.0.1 → wasmtime-cache-25.0.2}/src/worker.rs +0 -0
  1518. /data/ext/cargo-vendor/{wasmtime-cache-25.0.1 → wasmtime-cache-25.0.2}/tests/cache_write_default_config.rs +0 -0
  1519. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/build.rs +0 -0
  1520. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/src/bindgen.rs +0 -0
  1521. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/src/component.rs +0 -0
  1522. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/src/lib.rs +0 -0
  1523. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/char.wit +0 -0
  1524. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/conventions.wit +0 -0
  1525. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/dead-code.wit +0 -0
  1526. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/direct-import.wit +0 -0
  1527. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/empty.wit +0 -0
  1528. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/flags.wit +0 -0
  1529. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/floats.wit +0 -0
  1530. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/function-new.wit +0 -0
  1531. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/integers.wit +0 -0
  1532. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/lists.wit +0 -0
  1533. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/many-arguments.wit +0 -0
  1534. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/multi-return.wit +0 -0
  1535. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/multiversion/deps/v1/root.wit +0 -0
  1536. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/multiversion/deps/v2/root.wit +0 -0
  1537. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/multiversion/root.wit +0 -0
  1538. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/records.wit +0 -0
  1539. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/rename.wit +0 -0
  1540. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/resources-export.wit +0 -0
  1541. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/resources-import.wit +0 -0
  1542. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/share-types.wit +0 -0
  1543. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/simple-functions.wit +0 -0
  1544. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/simple-lists.wit +0 -0
  1545. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/simple-wasi.wit +0 -0
  1546. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/small-anonymous.wit +0 -0
  1547. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/smoke-default.wit +0 -0
  1548. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/smoke-export.wit +0 -0
  1549. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/smoke.wit +0 -0
  1550. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/strings.wit +0 -0
  1551. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/unversioned-foo.wit +0 -0
  1552. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/use-paths.wit +0 -0
  1553. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/variants.wit +0 -0
  1554. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/wat.wit +0 -0
  1555. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/worlds-with-types.wit +0 -0
  1556. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen.rs +0 -0
  1557. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen_no_std.rs +0 -0
  1558. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/char.rs +0 -0
  1559. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/char_async.rs +0 -0
  1560. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/char_tracing_async.rs +0 -0
  1561. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/conventions.rs +0 -0
  1562. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/conventions_async.rs +0 -0
  1563. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/conventions_tracing_async.rs +0 -0
  1564. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/dead-code.rs +0 -0
  1565. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/dead-code_async.rs +0 -0
  1566. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/dead-code_tracing_async.rs +0 -0
  1567. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/direct-import.rs +0 -0
  1568. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/direct-import_async.rs +0 -0
  1569. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/direct-import_tracing_async.rs +0 -0
  1570. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/empty.rs +0 -0
  1571. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/empty_async.rs +0 -0
  1572. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/empty_tracing_async.rs +0 -0
  1573. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/flags.rs +0 -0
  1574. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/flags_async.rs +0 -0
  1575. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/flags_tracing_async.rs +0 -0
  1576. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/floats.rs +0 -0
  1577. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/floats_async.rs +0 -0
  1578. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/floats_tracing_async.rs +0 -0
  1579. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/function-new.rs +0 -0
  1580. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/function-new_async.rs +0 -0
  1581. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/function-new_tracing_async.rs +0 -0
  1582. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/integers.rs +0 -0
  1583. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/integers_async.rs +0 -0
  1584. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/integers_tracing_async.rs +0 -0
  1585. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/lists.rs +0 -0
  1586. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/lists_async.rs +0 -0
  1587. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/lists_tracing_async.rs +0 -0
  1588. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/many-arguments.rs +0 -0
  1589. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/many-arguments_async.rs +0 -0
  1590. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/many-arguments_tracing_async.rs +0 -0
  1591. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/multi-return.rs +0 -0
  1592. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/multi-return_async.rs +0 -0
  1593. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/multi-return_tracing_async.rs +0 -0
  1594. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/multiversion.rs +0 -0
  1595. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/multiversion_async.rs +0 -0
  1596. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/multiversion_tracing_async.rs +0 -0
  1597. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/records.rs +0 -0
  1598. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/records_async.rs +0 -0
  1599. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/records_tracing_async.rs +0 -0
  1600. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/rename.rs +0 -0
  1601. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/rename_async.rs +0 -0
  1602. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/rename_tracing_async.rs +0 -0
  1603. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/resources-export.rs +0 -0
  1604. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/resources-export_async.rs +0 -0
  1605. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/resources-export_tracing_async.rs +0 -0
  1606. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/resources-import.rs +0 -0
  1607. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/resources-import_async.rs +0 -0
  1608. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/resources-import_tracing_async.rs +0 -0
  1609. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/share-types.rs +0 -0
  1610. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/share-types_async.rs +0 -0
  1611. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/share-types_tracing_async.rs +0 -0
  1612. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/simple-functions.rs +0 -0
  1613. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/simple-functions_async.rs +0 -0
  1614. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/simple-functions_tracing_async.rs +0 -0
  1615. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/simple-lists.rs +0 -0
  1616. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/simple-lists_async.rs +0 -0
  1617. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/simple-lists_tracing_async.rs +0 -0
  1618. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/simple-wasi.rs +0 -0
  1619. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/simple-wasi_async.rs +0 -0
  1620. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/simple-wasi_tracing_async.rs +0 -0
  1621. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/small-anonymous.rs +0 -0
  1622. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/small-anonymous_async.rs +0 -0
  1623. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/small-anonymous_tracing_async.rs +0 -0
  1624. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/smoke-default.rs +0 -0
  1625. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/smoke-default_async.rs +0 -0
  1626. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/smoke-default_tracing_async.rs +0 -0
  1627. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/smoke-export.rs +0 -0
  1628. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/smoke-export_async.rs +0 -0
  1629. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/smoke-export_tracing_async.rs +0 -0
  1630. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/smoke.rs +0 -0
  1631. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/smoke_async.rs +0 -0
  1632. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/smoke_tracing_async.rs +0 -0
  1633. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/strings.rs +0 -0
  1634. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/strings_async.rs +0 -0
  1635. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/strings_tracing_async.rs +0 -0
  1636. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/unversioned-foo.rs +0 -0
  1637. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/unversioned-foo_async.rs +0 -0
  1638. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/unversioned-foo_tracing_async.rs +0 -0
  1639. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/use-paths.rs +0 -0
  1640. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/use-paths_async.rs +0 -0
  1641. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/use-paths_tracing_async.rs +0 -0
  1642. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/variants.rs +0 -0
  1643. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/variants_async.rs +0 -0
  1644. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/variants_tracing_async.rs +0 -0
  1645. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/wat.rs +0 -0
  1646. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/wat_async.rs +0 -0
  1647. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/wat_tracing_async.rs +0 -0
  1648. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/worlds-with-types.rs +0 -0
  1649. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/worlds-with-types_async.rs +0 -0
  1650. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/worlds-with-types_tracing_async.rs +0 -0
  1651. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded.rs +0 -0
  1652. /data/ext/cargo-vendor/{wasmtime-component-util-25.0.1 → wasmtime-component-util-25.0.2}/src/lib.rs +0 -0
  1653. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/LICENSE +0 -0
  1654. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/SECURITY.md +0 -0
  1655. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/builder.rs +0 -0
  1656. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/compiled_function.rs +0 -0
  1657. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/compiler/component.rs +0 -0
  1658. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/compiler.rs +0 -0
  1659. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/debug/gc.rs +0 -0
  1660. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/debug/transform/address_transform.rs +0 -0
  1661. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/debug/transform/attr.rs +0 -0
  1662. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/debug/transform/expression.rs +0 -0
  1663. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/debug/transform/line_program.rs +0 -0
  1664. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/debug/transform/mod.rs +0 -0
  1665. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/debug/transform/range_info_builder.rs +0 -0
  1666. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/debug/transform/refs.rs +0 -0
  1667. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/debug/transform/simulate.rs +0 -0
  1668. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/debug/transform/unit.rs +0 -0
  1669. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/debug/transform/utils.rs +0 -0
  1670. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/debug/write_debuginfo.rs +0 -0
  1671. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/debug.rs +0 -0
  1672. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/func_environ.rs +0 -0
  1673. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/gc/disabled.rs +0 -0
  1674. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/gc/enabled.rs +0 -0
  1675. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/gc.rs +0 -0
  1676. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/isa_builder.rs +0 -0
  1677. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/lib.rs +0 -0
  1678. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/obj.rs +0 -0
  1679. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/LICENSE +0 -0
  1680. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/examples/factc.rs +0 -0
  1681. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/address_map.rs +0 -0
  1682. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/builtin.rs +0 -0
  1683. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/compile/address_map.rs +0 -0
  1684. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/compile/mod.rs +0 -0
  1685. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/compile/module_artifacts.rs +0 -0
  1686. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/compile/module_types.rs +0 -0
  1687. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/compile/trap_encoding.rs +0 -0
  1688. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/component/artifacts.rs +0 -0
  1689. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/component/compiler.rs +0 -0
  1690. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/component/dfg.rs +0 -0
  1691. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/component/info.rs +0 -0
  1692. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/component/names.rs +0 -0
  1693. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/component/translate/adapt.rs +0 -0
  1694. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/component/translate/inline.rs +0 -0
  1695. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/component/translate.rs +0 -0
  1696. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/component/types.rs +0 -0
  1697. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/component/types_builder/resources.rs +0 -0
  1698. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/component/types_builder.rs +0 -0
  1699. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/component/vmcomponent_offsets.rs +0 -0
  1700. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/component.rs +0 -0
  1701. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/demangling.rs +0 -0
  1702. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/fact/core_types.rs +0 -0
  1703. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/fact/signature.rs +0 -0
  1704. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/fact/trampoline.rs +0 -0
  1705. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/fact/transcode.rs +0 -0
  1706. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/fact/traps.rs +0 -0
  1707. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/fact.rs +0 -0
  1708. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/gc.rs +0 -0
  1709. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/lib.rs +0 -0
  1710. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/module.rs +0 -0
  1711. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/module_artifacts.rs +0 -0
  1712. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/module_types.rs +0 -0
  1713. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/obj.rs +0 -0
  1714. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/ref_bits.rs +0 -0
  1715. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/scopevec.rs +0 -0
  1716. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/stack_map.rs +0 -0
  1717. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/trap_encoding.rs +0 -0
  1718. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/tunables.rs +0 -0
  1719. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/vmoffsets.rs +0 -0
  1720. /data/ext/cargo-vendor/{wasmtime-fiber-25.0.1 → wasmtime-fiber-25.0.2}/LICENSE +0 -0
  1721. /data/ext/cargo-vendor/{wasmtime-fiber-25.0.1 → wasmtime-fiber-25.0.2}/build.rs +0 -0
  1722. /data/ext/cargo-vendor/{wasmtime-fiber-25.0.1 → wasmtime-fiber-25.0.2}/src/lib.rs +0 -0
  1723. /data/ext/cargo-vendor/{wasmtime-fiber-25.0.1 → wasmtime-fiber-25.0.2}/src/unix/aarch64.rs +0 -0
  1724. /data/ext/cargo-vendor/{wasmtime-fiber-25.0.1 → wasmtime-fiber-25.0.2}/src/unix/arm.rs +0 -0
  1725. /data/ext/cargo-vendor/{wasmtime-fiber-25.0.1 → wasmtime-fiber-25.0.2}/src/unix/riscv64.rs +0 -0
  1726. /data/ext/cargo-vendor/{wasmtime-fiber-25.0.1 → wasmtime-fiber-25.0.2}/src/unix/s390x.S +0 -0
  1727. /data/ext/cargo-vendor/{wasmtime-fiber-25.0.1 → wasmtime-fiber-25.0.2}/src/unix/x86.rs +0 -0
  1728. /data/ext/cargo-vendor/{wasmtime-fiber-25.0.1 → wasmtime-fiber-25.0.2}/src/unix/x86_64.rs +0 -0
  1729. /data/ext/cargo-vendor/{wasmtime-fiber-25.0.1 → wasmtime-fiber-25.0.2}/src/unix.rs +0 -0
  1730. /data/ext/cargo-vendor/{wasmtime-fiber-25.0.1 → wasmtime-fiber-25.0.2}/src/windows.c +0 -0
  1731. /data/ext/cargo-vendor/{wasmtime-fiber-25.0.1 → wasmtime-fiber-25.0.2}/src/windows.rs +0 -0
  1732. /data/ext/cargo-vendor/{wasmtime-jit-debug-25.0.1 → wasmtime-jit-debug-25.0.2}/README.md +0 -0
  1733. /data/ext/cargo-vendor/{wasmtime-jit-debug-25.0.1 → wasmtime-jit-debug-25.0.2}/src/gdb_jit_int.rs +0 -0
  1734. /data/ext/cargo-vendor/{wasmtime-jit-debug-25.0.1 → wasmtime-jit-debug-25.0.2}/src/lib.rs +0 -0
  1735. /data/ext/cargo-vendor/{wasmtime-jit-debug-25.0.1 → wasmtime-jit-debug-25.0.2}/src/perf_jitdump.rs +0 -0
  1736. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-25.0.1 → wasmtime-jit-icache-coherence-25.0.2}/src/lib.rs +0 -0
  1737. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-25.0.1 → wasmtime-jit-icache-coherence-25.0.2}/src/libc.rs +0 -0
  1738. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-25.0.1 → wasmtime-jit-icache-coherence-25.0.2}/src/miri.rs +0 -0
  1739. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-25.0.1 → wasmtime-jit-icache-coherence-25.0.2}/src/win.rs +0 -0
  1740. /data/ext/cargo-vendor/{wasmtime-slab-25.0.1 → wasmtime-slab-25.0.2}/src/lib.rs +0 -0
  1741. /data/ext/cargo-vendor/{wasmtime-types-25.0.1 → wasmtime-types-25.0.2}/LICENSE +0 -0
  1742. /data/ext/cargo-vendor/{wasmtime-types-25.0.1 → wasmtime-types-25.0.2}/src/error.rs +0 -0
  1743. /data/ext/cargo-vendor/{wasmtime-types-25.0.1 → wasmtime-types-25.0.2}/src/lib.rs +0 -0
  1744. /data/ext/cargo-vendor/{wasmtime-types-25.0.1 → wasmtime-types-25.0.2}/src/prelude.rs +0 -0
  1745. /data/ext/cargo-vendor/{wasmtime-versioned-export-macros-25.0.1 → wasmtime-versioned-export-macros-25.0.2}/src/lib.rs +0 -0
  1746. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/LICENSE +0 -0
  1747. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/README.md +0 -0
  1748. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/bindings.rs +0 -0
  1749. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/clocks/host.rs +0 -0
  1750. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/clocks.rs +0 -0
  1751. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/ctx.rs +0 -0
  1752. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/error.rs +0 -0
  1753. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/filesystem.rs +0 -0
  1754. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/host/clocks.rs +0 -0
  1755. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/host/env.rs +0 -0
  1756. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/host/exit.rs +0 -0
  1757. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/host/filesystem/sync.rs +0 -0
  1758. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/host/filesystem.rs +0 -0
  1759. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/host/instance_network.rs +0 -0
  1760. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/host/io.rs +0 -0
  1761. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/host/mod.rs +0 -0
  1762. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/host/network.rs +0 -0
  1763. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/host/random.rs +0 -0
  1764. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/host/tcp.rs +0 -0
  1765. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/host/tcp_create_socket.rs +0 -0
  1766. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/host/udp.rs +0 -0
  1767. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/host/udp_create_socket.rs +0 -0
  1768. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/ip_name_lookup.rs +0 -0
  1769. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/lib.rs +0 -0
  1770. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/network.rs +0 -0
  1771. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/pipe.rs +0 -0
  1772. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/poll.rs +0 -0
  1773. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/preview0.rs +0 -0
  1774. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/preview1.rs +0 -0
  1775. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/random.rs +0 -0
  1776. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/runtime.rs +0 -0
  1777. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/stdio/worker_thread_stdin.rs +0 -0
  1778. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/stdio.rs +0 -0
  1779. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/stream.rs +0 -0
  1780. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/tcp.rs +0 -0
  1781. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/udp.rs +0 -0
  1782. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/write_stream.rs +0 -0
  1783. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/tests/all/api.rs +0 -0
  1784. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/tests/all/async_.rs +0 -0
  1785. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/tests/all/main.rs +0 -0
  1786. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/tests/all/preview1.rs +0 -0
  1787. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/tests/all/sync.rs +0 -0
  1788. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/tests/process_stdin.rs +0 -0
  1789. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/cli/command.wit +0 -0
  1790. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/cli/environment.wit +0 -0
  1791. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/cli/exit.wit +0 -0
  1792. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/cli/imports.wit +0 -0
  1793. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/cli/run.wit +0 -0
  1794. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/cli/stdio.wit +0 -0
  1795. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/cli/terminal.wit +0 -0
  1796. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/clocks/monotonic-clock.wit +0 -0
  1797. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/clocks/timezone.wit +0 -0
  1798. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/clocks/wall-clock.wit +0 -0
  1799. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/clocks/world.wit +0 -0
  1800. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/filesystem/preopens.wit +0 -0
  1801. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/filesystem/types.wit +0 -0
  1802. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/filesystem/world.wit +0 -0
  1803. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/io/error.wit +0 -0
  1804. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/io/poll.wit +0 -0
  1805. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/io/streams.wit +0 -0
  1806. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/io/world.wit +0 -0
  1807. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/random/insecure-seed.wit +0 -0
  1808. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/random/insecure.wit +0 -0
  1809. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/random/random.wit +0 -0
  1810. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/random/world.wit +0 -0
  1811. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/sockets/instance-network.wit +0 -0
  1812. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/sockets/ip-name-lookup.wit +0 -0
  1813. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/sockets/network.wit +0 -0
  1814. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/sockets/tcp-create-socket.wit +0 -0
  1815. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/sockets/tcp.wit +0 -0
  1816. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/sockets/udp-create-socket.wit +0 -0
  1817. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/sockets/udp.wit +0 -0
  1818. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/sockets/world.wit +0 -0
  1819. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/test.wit +0 -0
  1820. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/world.wit +0 -0
  1821. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/witx/preview0/typenames.witx +0 -0
  1822. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/witx/preview0/wasi_unstable.witx +0 -0
  1823. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/witx/preview1/typenames.witx +0 -0
  1824. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/witx/preview1/wasi_snapshot_preview1.witx +0 -0
  1825. /data/ext/cargo-vendor/{wasmtime-winch-25.0.1 → wasmtime-winch-25.0.2}/LICENSE +0 -0
  1826. /data/ext/cargo-vendor/{wasmtime-winch-25.0.1 → wasmtime-winch-25.0.2}/src/builder.rs +0 -0
  1827. /data/ext/cargo-vendor/{wasmtime-winch-25.0.1 → wasmtime-winch-25.0.2}/src/compiler.rs +0 -0
  1828. /data/ext/cargo-vendor/{wasmtime-winch-25.0.1 → wasmtime-winch-25.0.2}/src/lib.rs +0 -0
  1829. /data/ext/cargo-vendor/{wasmtime-wit-bindgen-25.0.1 → wasmtime-wit-bindgen-25.0.2}/src/lib.rs +0 -0
  1830. /data/ext/cargo-vendor/{wasmtime-wit-bindgen-25.0.1 → wasmtime-wit-bindgen-25.0.2}/src/rust.rs +0 -0
  1831. /data/ext/cargo-vendor/{wasmtime-wit-bindgen-25.0.1 → wasmtime-wit-bindgen-25.0.2}/src/source.rs +0 -0
  1832. /data/ext/cargo-vendor/{wasmtime-wit-bindgen-25.0.1 → wasmtime-wit-bindgen-25.0.2}/src/types.rs +0 -0
  1833. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/README.md +0 -0
  1834. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/component/alias.rs +0 -0
  1835. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/component/custom.rs +0 -0
  1836. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/component/export.rs +0 -0
  1837. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/component/import.rs +0 -0
  1838. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/component/instance.rs +0 -0
  1839. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/component/item_ref.rs +0 -0
  1840. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/component/module.rs +0 -0
  1841. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/component/wast.rs +0 -0
  1842. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/component.rs +0 -0
  1843. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/core/binary/dwarf.rs +0 -0
  1844. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/core/binary/dwarf_disabled.rs +0 -0
  1845. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/core/custom.rs +0 -0
  1846. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/core/export.rs +0 -0
  1847. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/core/func.rs +0 -0
  1848. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/core/global.rs +0 -0
  1849. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/core/import.rs +0 -0
  1850. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/core/memory.rs +0 -0
  1851. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/core/module.rs +0 -0
  1852. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/core/resolve/mod.rs +0 -0
  1853. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/core/tag.rs +0 -0
  1854. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/core/wast.rs +0 -0
  1855. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/core.rs +0 -0
  1856. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/encode.rs +0 -0
  1857. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/error.rs +0 -0
  1858. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/gensym.rs +0 -0
  1859. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/lexer.rs +0 -0
  1860. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/names.rs +0 -0
  1861. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/parser.rs +0 -0
  1862. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/token.rs +0 -0
  1863. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/wat.rs +0 -0
  1864. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/annotations.rs +0 -0
  1865. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/comments.rs +0 -0
  1866. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/bad-core-func-alias.wat +0 -0
  1867. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/bad-core-func-alias.wat.err +0 -0
  1868. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/bad-func-alias.wat +0 -0
  1869. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/bad-func-alias.wat.err +0 -0
  1870. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/bad-index.wat +0 -0
  1871. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/bad-index.wat.err +0 -0
  1872. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/bad-name.wat +0 -0
  1873. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/bad-name.wat.err +0 -0
  1874. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/bad-name2.wat +0 -0
  1875. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/bad-name2.wat.err +0 -0
  1876. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/bad-name3.wat +0 -0
  1877. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/bad-name3.wat.err +0 -0
  1878. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/block1.wat +0 -0
  1879. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/block1.wat.err +0 -0
  1880. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/block2.wat +0 -0
  1881. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/block2.wat.err +0 -0
  1882. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/block3.wat +0 -0
  1883. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/block3.wat.err +0 -0
  1884. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment0.wat +0 -0
  1885. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment0.wat.err +0 -0
  1886. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment1.wat +0 -0
  1887. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment1.wat.err +0 -0
  1888. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment2.wat +0 -0
  1889. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment2.wat.err +0 -0
  1890. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment3.wat +0 -0
  1891. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment3.wat.err +0 -0
  1892. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment4.wat +0 -0
  1893. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment4.wat.err +0 -0
  1894. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment5.wat +0 -0
  1895. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment5.wat.err +0 -0
  1896. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment6.wat +0 -0
  1897. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment6.wat.err +0 -0
  1898. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment7.wat +0 -0
  1899. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment7.wat.err +0 -0
  1900. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment8.wat +0 -0
  1901. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment8.wat.err +0 -0
  1902. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment0.wat +0 -0
  1903. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment0.wat.err +0 -0
  1904. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment1.wat +0 -0
  1905. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment1.wat.err +0 -0
  1906. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment2.wat +0 -0
  1907. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment2.wat.err +0 -0
  1908. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment3.wat +0 -0
  1909. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment3.wat.err +0 -0
  1910. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment4.wat +0 -0
  1911. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment4.wat.err +0 -0
  1912. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment5.wat +0 -0
  1913. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment5.wat.err +0 -0
  1914. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment6.wat +0 -0
  1915. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment6.wat.err +0 -0
  1916. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment7.wat +0 -0
  1917. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment7.wat.err +0 -0
  1918. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment8.wat +0 -0
  1919. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment8.wat.err +0 -0
  1920. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string0.wat +0 -0
  1921. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string0.wat.err +0 -0
  1922. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string1.wat +0 -0
  1923. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string1.wat.err +0 -0
  1924. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string2.wat +0 -0
  1925. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string2.wat.err +0 -0
  1926. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string3.wat +0 -0
  1927. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string3.wat.err +0 -0
  1928. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string4.wat +0 -0
  1929. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string4.wat.err +0 -0
  1930. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string5.wat +0 -0
  1931. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string5.wat.err +0 -0
  1932. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string6.wat +0 -0
  1933. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string6.wat.err +0 -0
  1934. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string7.wat +0 -0
  1935. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string7.wat.err +0 -0
  1936. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string8.wat +0 -0
  1937. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string8.wat.err +0 -0
  1938. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/inline1.wat +0 -0
  1939. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/inline1.wat.err +0 -0
  1940. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/newline-in-string.wat +0 -0
  1941. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/newline-in-string.wat.err +0 -0
  1942. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string1.wat +0 -0
  1943. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string1.wat.err +0 -0
  1944. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string10.wat +0 -0
  1945. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string10.wat.err +0 -0
  1946. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string11.wat +0 -0
  1947. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string11.wat.err +0 -0
  1948. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string12.wat +0 -0
  1949. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string12.wat.err +0 -0
  1950. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string13.wat +0 -0
  1951. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string13.wat.err +0 -0
  1952. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string14.wat +0 -0
  1953. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string14.wat.err +0 -0
  1954. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string15.wat +0 -0
  1955. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string15.wat.err +0 -0
  1956. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string16.wat +0 -0
  1957. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string16.wat.err +0 -0
  1958. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string2.wat +0 -0
  1959. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string2.wat.err +0 -0
  1960. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string3.wat +0 -0
  1961. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string3.wat.err +0 -0
  1962. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string4.wat +0 -0
  1963. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string4.wat.err +0 -0
  1964. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string5.wat +0 -0
  1965. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string5.wat.err +0 -0
  1966. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string6.wat +0 -0
  1967. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string6.wat.err +0 -0
  1968. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string7.wat +0 -0
  1969. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string7.wat.err +0 -0
  1970. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string8.wat +0 -0
  1971. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string8.wat.err +0 -0
  1972. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string9.wat +0 -0
  1973. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string9.wat.err +0 -0
  1974. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/unbalanced.wat +0 -0
  1975. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/unbalanced.wat.err +0 -0
  1976. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail.rs +0 -0
  1977. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/recursive.rs +0 -0
  1978. /data/ext/cargo-vendor/{wat-1.217.0 → wat-1.218.0}/README.md +0 -0
  1979. /data/ext/cargo-vendor/{wat-1.217.0 → wat-1.218.0}/src/lib.rs +0 -0
  1980. /data/ext/cargo-vendor/{wiggle-25.0.1 → wiggle-25.0.2}/LICENSE +0 -0
  1981. /data/ext/cargo-vendor/{wiggle-25.0.1 → wiggle-25.0.2}/README.md +0 -0
  1982. /data/ext/cargo-vendor/{wiggle-25.0.1 → wiggle-25.0.2}/src/error.rs +0 -0
  1983. /data/ext/cargo-vendor/{wiggle-25.0.1 → wiggle-25.0.2}/src/guest_type.rs +0 -0
  1984. /data/ext/cargo-vendor/{wiggle-25.0.1 → wiggle-25.0.2}/src/lib.rs +0 -0
  1985. /data/ext/cargo-vendor/{wiggle-25.0.1 → wiggle-25.0.2}/src/region.rs +0 -0
  1986. /data/ext/cargo-vendor/{wiggle-generate-25.0.1 → wiggle-generate-25.0.2}/LICENSE +0 -0
  1987. /data/ext/cargo-vendor/{wiggle-generate-25.0.1 → wiggle-generate-25.0.2}/README.md +0 -0
  1988. /data/ext/cargo-vendor/{wiggle-generate-25.0.1 → wiggle-generate-25.0.2}/src/codegen_settings.rs +0 -0
  1989. /data/ext/cargo-vendor/{wiggle-generate-25.0.1 → wiggle-generate-25.0.2}/src/config.rs +0 -0
  1990. /data/ext/cargo-vendor/{wiggle-generate-25.0.1 → wiggle-generate-25.0.2}/src/funcs.rs +0 -0
  1991. /data/ext/cargo-vendor/{wiggle-generate-25.0.1 → wiggle-generate-25.0.2}/src/lib.rs +0 -0
  1992. /data/ext/cargo-vendor/{wiggle-generate-25.0.1 → wiggle-generate-25.0.2}/src/lifetimes.rs +0 -0
  1993. /data/ext/cargo-vendor/{wiggle-generate-25.0.1 → wiggle-generate-25.0.2}/src/module_trait.rs +0 -0
  1994. /data/ext/cargo-vendor/{wiggle-generate-25.0.1 → wiggle-generate-25.0.2}/src/names.rs +0 -0
  1995. /data/ext/cargo-vendor/{wiggle-generate-25.0.1 → wiggle-generate-25.0.2}/src/types/error.rs +0 -0
  1996. /data/ext/cargo-vendor/{wiggle-generate-25.0.1 → wiggle-generate-25.0.2}/src/types/flags.rs +0 -0
  1997. /data/ext/cargo-vendor/{wiggle-generate-25.0.1 → wiggle-generate-25.0.2}/src/types/handle.rs +0 -0
  1998. /data/ext/cargo-vendor/{wiggle-generate-25.0.1 → wiggle-generate-25.0.2}/src/types/mod.rs +0 -0
  1999. /data/ext/cargo-vendor/{wiggle-generate-25.0.1 → wiggle-generate-25.0.2}/src/types/record.rs +0 -0
  2000. /data/ext/cargo-vendor/{wiggle-generate-25.0.1 → wiggle-generate-25.0.2}/src/types/variant.rs +0 -0
  2001. /data/ext/cargo-vendor/{wiggle-generate-25.0.1 → wiggle-generate-25.0.2}/src/wasmtime.rs +0 -0
  2002. /data/ext/cargo-vendor/{wiggle-macro-25.0.1 → wiggle-macro-25.0.2}/LICENSE +0 -0
  2003. /data/ext/cargo-vendor/{wiggle-macro-25.0.1 → wiggle-macro-25.0.2}/build.rs +0 -0
  2004. /data/ext/cargo-vendor/{wiggle-macro-25.0.1 → wiggle-macro-25.0.2}/src/lib.rs +0 -0
  2005. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/LICENSE +0 -0
  2006. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/build.rs +0 -0
  2007. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/abi/local.rs +0 -0
  2008. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/abi/mod.rs +0 -0
  2009. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/codegen/bounds.rs +0 -0
  2010. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/codegen/builtin.rs +0 -0
  2011. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/codegen/call.rs +0 -0
  2012. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/codegen/context.rs +0 -0
  2013. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/codegen/control.rs +0 -0
  2014. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/codegen/env.rs +0 -0
  2015. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/codegen/mod.rs +0 -0
  2016. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/frame/mod.rs +0 -0
  2017. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/isa/aarch64/abi.rs +0 -0
  2018. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/isa/aarch64/address.rs +0 -0
  2019. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/isa/aarch64/asm.rs +0 -0
  2020. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/isa/aarch64/masm.rs +0 -0
  2021. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/isa/aarch64/mod.rs +0 -0
  2022. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/isa/aarch64/regs.rs +0 -0
  2023. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/isa/mod.rs +0 -0
  2024. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/isa/reg.rs +0 -0
  2025. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/isa/x64/abi.rs +0 -0
  2026. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/isa/x64/address.rs +0 -0
  2027. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/isa/x64/asm.rs +0 -0
  2028. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/isa/x64/masm.rs +0 -0
  2029. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/isa/x64/mod.rs +0 -0
  2030. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/isa/x64/regs.rs +0 -0
  2031. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/lib.rs +0 -0
  2032. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/masm.rs +0 -0
  2033. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/regalloc.rs +0 -0
  2034. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/regset.rs +0 -0
  2035. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/stack.rs +0 -0
  2036. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/visitor.rs +0 -0
@@ -0,0 +1,3574 @@
1
+ # 1.40.0 (August 30th, 2024)
2
+
3
+ ### Added
4
+
5
+ - io: add `util::SimplexStream` ([#6589])
6
+ - process: stabilize `Command::process_group` ([#6731])
7
+ - sync: add `{TrySendError,SendTimeoutError}::into_inner` ([#6755])
8
+ - task: add `JoinSet::join_all` ([#6784])
9
+
10
+ ### Added (unstable)
11
+
12
+ - runtime: add `Builder::{on_task_spawn, on_task_terminate}` ([#6742])
13
+
14
+ ### Changed
15
+
16
+ - io: use vectored io for `write_all_buf` when possible ([#6724])
17
+ - runtime: prevent niche-optimization to avoid triggering miri ([#6744])
18
+ - sync: mark mpsc types as `UnwindSafe` ([#6783])
19
+ - sync,time: make `Sleep` and `BatchSemaphore` instrumentation explicit roots ([#6727])
20
+ - task: use `NonZeroU64` for `task::Id` ([#6733])
21
+ - task: include panic message when printing `JoinError` ([#6753])
22
+ - task: add `#[must_use]` to `JoinHandle::abort_handle` ([#6762])
23
+ - time: eliminate timer wheel allocations ([#6779])
24
+
25
+ ### Documented
26
+
27
+ - docs: clarify that `[build]` section doesn't go in Cargo.toml ([#6728])
28
+ - io: clarify zero remaining capacity case ([#6790])
29
+ - macros: improve documentation for `select!` ([#6774])
30
+ - sync: document mpsc channel allocation behavior ([#6773])
31
+
32
+ [#6589]: https://github.com/tokio-rs/tokio/pull/6589
33
+ [#6724]: https://github.com/tokio-rs/tokio/pull/6724
34
+ [#6727]: https://github.com/tokio-rs/tokio/pull/6727
35
+ [#6728]: https://github.com/tokio-rs/tokio/pull/6728
36
+ [#6731]: https://github.com/tokio-rs/tokio/pull/6731
37
+ [#6733]: https://github.com/tokio-rs/tokio/pull/6733
38
+ [#6742]: https://github.com/tokio-rs/tokio/pull/6742
39
+ [#6744]: https://github.com/tokio-rs/tokio/pull/6744
40
+ [#6753]: https://github.com/tokio-rs/tokio/pull/6753
41
+ [#6755]: https://github.com/tokio-rs/tokio/pull/6755
42
+ [#6762]: https://github.com/tokio-rs/tokio/pull/6762
43
+ [#6773]: https://github.com/tokio-rs/tokio/pull/6773
44
+ [#6774]: https://github.com/tokio-rs/tokio/pull/6774
45
+ [#6779]: https://github.com/tokio-rs/tokio/pull/6779
46
+ [#6783]: https://github.com/tokio-rs/tokio/pull/6783
47
+ [#6784]: https://github.com/tokio-rs/tokio/pull/6784
48
+ [#6790]: https://github.com/tokio-rs/tokio/pull/6790
49
+
50
+ # 1.39.3 (August 17th, 2024)
51
+
52
+ This release fixes a regression where the unix socket api stopped accepting
53
+ the abstract socket namespace. ([#6772])
54
+
55
+ [#6772]: https://github.com/tokio-rs/tokio/pull/6772
56
+
57
+ # 1.39.2 (July 27th, 2024)
58
+
59
+ This release fixes a regression where the `select!` macro stopped accepting
60
+ expressions that make use of temporary lifetime extension. ([#6722])
61
+
62
+ [#6722]: https://github.com/tokio-rs/tokio/pull/6722
63
+
64
+ # 1.39.1 (July 23rd, 2024)
65
+
66
+ This release reverts "time: avoid traversing entries in the time wheel twice"
67
+ because it contains a bug. ([#6715])
68
+
69
+ [#6715]: https://github.com/tokio-rs/tokio/pull/6715
70
+
71
+ # 1.39.0 (July 23rd, 2024)
72
+
73
+ Yanked. Please use 1.39.1 instead.
74
+
75
+ - This release bumps the MSRV to 1.70. ([#6645])
76
+ - This release upgrades to mio v1. ([#6635])
77
+ - This release upgrades to windows-sys v0.52 ([#6154])
78
+
79
+ ### Added
80
+
81
+ - io: implement `AsyncSeek` for `Empty` ([#6663])
82
+ - metrics: stabilize `num_alive_tasks` ([#6619], [#6667])
83
+ - process: add `Command::as_std_mut` ([#6608])
84
+ - sync: add `watch::Sender::same_channel` ([#6637])
85
+ - sync: add `{Receiver,UnboundedReceiver}::{sender_strong_count,sender_weak_count}` ([#6661])
86
+ - sync: implement `Default` for `watch::Sender` ([#6626])
87
+ - task: implement `Clone` for `AbortHandle` ([#6621])
88
+ - task: stabilize `consume_budget` ([#6622])
89
+
90
+ ### Changed
91
+
92
+ - io: improve panic message of `ReadBuf::put_slice()` ([#6629])
93
+ - io: read during write in `copy_bidirectional` and `copy` ([#6532])
94
+ - runtime: replace `num_cpus` with `available_parallelism` ([#6709])
95
+ - task: avoid stack overflow when passing large future to `block_on` ([#6692])
96
+ - time: avoid traversing entries in the time wheel twice ([#6584])
97
+ - time: support `IntoFuture` with `timeout` ([#6666])
98
+ - macros: support `IntoFuture` with `join!` and `select!` ([#6710])
99
+
100
+ ### Fixed
101
+
102
+ - docs: fix docsrs builds with the fs feature enabled ([#6585])
103
+ - io: only use short-read optimization on known-to-be-compatible platforms ([#6668])
104
+ - time: fix overflow panic when using large durations with `Interval` ([#6612])
105
+
106
+ ### Added (unstable)
107
+
108
+ - macros: allow `unhandled_panic` behavior for `#[tokio::main]` and `#[tokio::test]` ([#6593])
109
+ - metrics: add `spawned_tasks_count` ([#6114])
110
+ - metrics: add `worker_park_unpark_count` ([#6696])
111
+ - metrics: add worker thread id ([#6695])
112
+
113
+ ### Documented
114
+
115
+ - io: update `tokio::io::stdout` documentation ([#6674])
116
+ - macros: typo fix in `join.rs` and `try_join.rs` ([#6641])
117
+ - runtime: fix typo in `unhandled_panic` ([#6660])
118
+ - task: document behavior of `JoinSet::try_join_next` when all tasks are running ([#6671])
119
+
120
+ [#6114]: https://github.com/tokio-rs/tokio/pull/6114
121
+ [#6154]: https://github.com/tokio-rs/tokio/pull/6154
122
+ [#6532]: https://github.com/tokio-rs/tokio/pull/6532
123
+ [#6584]: https://github.com/tokio-rs/tokio/pull/6584
124
+ [#6585]: https://github.com/tokio-rs/tokio/pull/6585
125
+ [#6593]: https://github.com/tokio-rs/tokio/pull/6593
126
+ [#6608]: https://github.com/tokio-rs/tokio/pull/6608
127
+ [#6612]: https://github.com/tokio-rs/tokio/pull/6612
128
+ [#6619]: https://github.com/tokio-rs/tokio/pull/6619
129
+ [#6621]: https://github.com/tokio-rs/tokio/pull/6621
130
+ [#6622]: https://github.com/tokio-rs/tokio/pull/6622
131
+ [#6626]: https://github.com/tokio-rs/tokio/pull/6626
132
+ [#6629]: https://github.com/tokio-rs/tokio/pull/6629
133
+ [#6635]: https://github.com/tokio-rs/tokio/pull/6635
134
+ [#6637]: https://github.com/tokio-rs/tokio/pull/6637
135
+ [#6641]: https://github.com/tokio-rs/tokio/pull/6641
136
+ [#6645]: https://github.com/tokio-rs/tokio/pull/6645
137
+ [#6660]: https://github.com/tokio-rs/tokio/pull/6660
138
+ [#6661]: https://github.com/tokio-rs/tokio/pull/6661
139
+ [#6663]: https://github.com/tokio-rs/tokio/pull/6663
140
+ [#6666]: https://github.com/tokio-rs/tokio/pull/6666
141
+ [#6667]: https://github.com/tokio-rs/tokio/pull/6667
142
+ [#6668]: https://github.com/tokio-rs/tokio/pull/6668
143
+ [#6671]: https://github.com/tokio-rs/tokio/pull/6671
144
+ [#6674]: https://github.com/tokio-rs/tokio/pull/6674
145
+ [#6692]: https://github.com/tokio-rs/tokio/pull/6692
146
+ [#6695]: https://github.com/tokio-rs/tokio/pull/6695
147
+ [#6696]: https://github.com/tokio-rs/tokio/pull/6696
148
+ [#6709]: https://github.com/tokio-rs/tokio/pull/6709
149
+ [#6710]: https://github.com/tokio-rs/tokio/pull/6710
150
+
151
+ # 1.38.1 (July 16th, 2024)
152
+
153
+ This release fixes the bug identified as ([#6682]), which caused timers not
154
+ to fire when they should.
155
+
156
+ ### Fixed
157
+
158
+ - time: update `wake_up` while holding all the locks of sharded time wheels ([#6683])
159
+
160
+ [#6682]: https://github.com/tokio-rs/tokio/pull/6682
161
+ [#6683]: https://github.com/tokio-rs/tokio/pull/6683
162
+
163
+ # 1.38.0 (May 30th, 2024)
164
+
165
+ This release marks the beginning of stabilization for runtime metrics. It
166
+ stabilizes `RuntimeMetrics::worker_count`. Future releases will continue to
167
+ stabilize more metrics.
168
+
169
+ ### Added
170
+
171
+ - fs: add `File::create_new` ([#6573])
172
+ - io: add `copy_bidirectional_with_sizes` ([#6500])
173
+ - io: implement `AsyncBufRead` for `Join` ([#6449])
174
+ - net: add Apple visionOS support ([#6465])
175
+ - net: implement `Clone` for `NamedPipeInfo` ([#6586])
176
+ - net: support QNX OS ([#6421])
177
+ - sync: add `Notify::notify_last` ([#6520])
178
+ - sync: add `mpsc::Receiver::{capacity,max_capacity}` ([#6511])
179
+ - sync: add `split` method to the semaphore permit ([#6472], [#6478])
180
+ - task: add `tokio::task::join_set::Builder::spawn_blocking` ([#6578])
181
+ - wasm: support rt-multi-thread with wasm32-wasi-preview1-threads ([#6510])
182
+
183
+ ### Changed
184
+
185
+ - macros: make `#[tokio::test]` append `#[test]` at the end of the attribute list ([#6497])
186
+ - metrics: fix `blocking_threads` count ([#6551])
187
+ - metrics: stabilize `RuntimeMetrics::worker_count` ([#6556])
188
+ - runtime: move task out of the `lifo_slot` in `block_in_place` ([#6596])
189
+ - runtime: panic if `global_queue_interval` is zero ([#6445])
190
+ - sync: always drop message in destructor for oneshot receiver ([#6558])
191
+ - sync: instrument `Semaphore` for task dumps ([#6499])
192
+ - sync: use FIFO ordering when waking batches of wakers ([#6521])
193
+ - task: make `LocalKey::get` work with Clone types ([#6433])
194
+ - tests: update nix and mio-aio dev-dependencies ([#6552])
195
+ - time: clean up implementation ([#6517])
196
+ - time: lazily init timers on first poll ([#6512])
197
+ - time: remove the `true_when` field in `TimerShared` ([#6563])
198
+ - time: use sharding for timer implementation ([#6534])
199
+
200
+ ### Fixed
201
+
202
+ - taskdump: allow building taskdump docs on non-unix machines ([#6564])
203
+ - time: check for overflow in `Interval::poll_tick` ([#6487])
204
+ - sync: fix incorrect `is_empty` on mpsc block boundaries ([#6603])
205
+
206
+ ### Documented
207
+
208
+ - fs: rewrite file system docs ([#6467])
209
+ - io: fix `stdin` documentation ([#6581])
210
+ - io: fix obsolete reference in `ReadHalf::unsplit()` documentation ([#6498])
211
+ - macros: render more comprehensible documentation for `select!` ([#6468])
212
+ - net: add missing types to module docs ([#6482])
213
+ - net: fix misleading `NamedPipeServer` example ([#6590])
214
+ - sync: add examples for `SemaphorePermit`, `OwnedSemaphorePermit` ([#6477])
215
+ - sync: document that `Barrier::wait` is not cancel safe ([#6494])
216
+ - sync: explain relation between `watch::Sender::{subscribe,closed}` ([#6490])
217
+ - task: clarify that you can't abort `spawn_blocking` tasks ([#6571])
218
+ - task: fix a typo in doc of `LocalSet::run_until` ([#6599])
219
+ - time: fix test-util requirement for pause and resume in docs ([#6503])
220
+
221
+ [#6421]: https://github.com/tokio-rs/tokio/pull/6421
222
+ [#6433]: https://github.com/tokio-rs/tokio/pull/6433
223
+ [#6445]: https://github.com/tokio-rs/tokio/pull/6445
224
+ [#6449]: https://github.com/tokio-rs/tokio/pull/6449
225
+ [#6465]: https://github.com/tokio-rs/tokio/pull/6465
226
+ [#6467]: https://github.com/tokio-rs/tokio/pull/6467
227
+ [#6468]: https://github.com/tokio-rs/tokio/pull/6468
228
+ [#6472]: https://github.com/tokio-rs/tokio/pull/6472
229
+ [#6477]: https://github.com/tokio-rs/tokio/pull/6477
230
+ [#6478]: https://github.com/tokio-rs/tokio/pull/6478
231
+ [#6482]: https://github.com/tokio-rs/tokio/pull/6482
232
+ [#6487]: https://github.com/tokio-rs/tokio/pull/6487
233
+ [#6490]: https://github.com/tokio-rs/tokio/pull/6490
234
+ [#6494]: https://github.com/tokio-rs/tokio/pull/6494
235
+ [#6497]: https://github.com/tokio-rs/tokio/pull/6497
236
+ [#6498]: https://github.com/tokio-rs/tokio/pull/6498
237
+ [#6499]: https://github.com/tokio-rs/tokio/pull/6499
238
+ [#6500]: https://github.com/tokio-rs/tokio/pull/6500
239
+ [#6503]: https://github.com/tokio-rs/tokio/pull/6503
240
+ [#6510]: https://github.com/tokio-rs/tokio/pull/6510
241
+ [#6511]: https://github.com/tokio-rs/tokio/pull/6511
242
+ [#6512]: https://github.com/tokio-rs/tokio/pull/6512
243
+ [#6517]: https://github.com/tokio-rs/tokio/pull/6517
244
+ [#6520]: https://github.com/tokio-rs/tokio/pull/6520
245
+ [#6521]: https://github.com/tokio-rs/tokio/pull/6521
246
+ [#6534]: https://github.com/tokio-rs/tokio/pull/6534
247
+ [#6551]: https://github.com/tokio-rs/tokio/pull/6551
248
+ [#6552]: https://github.com/tokio-rs/tokio/pull/6552
249
+ [#6556]: https://github.com/tokio-rs/tokio/pull/6556
250
+ [#6558]: https://github.com/tokio-rs/tokio/pull/6558
251
+ [#6563]: https://github.com/tokio-rs/tokio/pull/6563
252
+ [#6564]: https://github.com/tokio-rs/tokio/pull/6564
253
+ [#6571]: https://github.com/tokio-rs/tokio/pull/6571
254
+ [#6573]: https://github.com/tokio-rs/tokio/pull/6573
255
+ [#6578]: https://github.com/tokio-rs/tokio/pull/6578
256
+ [#6581]: https://github.com/tokio-rs/tokio/pull/6581
257
+ [#6586]: https://github.com/tokio-rs/tokio/pull/6586
258
+ [#6590]: https://github.com/tokio-rs/tokio/pull/6590
259
+ [#6596]: https://github.com/tokio-rs/tokio/pull/6596
260
+ [#6599]: https://github.com/tokio-rs/tokio/pull/6599
261
+ [#6603]: https://github.com/tokio-rs/tokio/pull/6603
262
+
263
+ # 1.37.0 (March 28th, 2024)
264
+
265
+ ### Added
266
+
267
+ - fs: add `set_max_buf_size` to `tokio::fs::File` ([#6411])
268
+ - io: add `try_new` and `try_with_interest` to `AsyncFd` ([#6345])
269
+ - sync: add `forget_permits` method to semaphore ([#6331])
270
+ - sync: add `is_closed`, `is_empty`, and `len` to mpsc receivers ([#6348])
271
+ - sync: add a `rwlock()` method to owned `RwLock` guards ([#6418])
272
+ - sync: expose strong and weak counts of mpsc sender handles ([#6405])
273
+ - sync: implement `Clone` for `watch::Sender` ([#6388])
274
+ - task: add `TaskLocalFuture::take_value` ([#6340])
275
+ - task: implement `FromIterator` for `JoinSet` ([#6300])
276
+
277
+ ### Changed
278
+
279
+ - io: make `io::split` use a mutex instead of a spinlock ([#6403])
280
+
281
+ ### Fixed
282
+
283
+ - docs: fix docsrs build without net feature ([#6360])
284
+ - macros: allow select with only else branch ([#6339])
285
+ - runtime: fix leaking registration entries when os registration fails ([#6329])
286
+
287
+ ### Documented
288
+
289
+ - io: document cancel safety of `AsyncBufReadExt::fill_buf` ([#6431])
290
+ - io: document cancel safety of `AsyncReadExt`'s primitive read functions ([#6337])
291
+ - runtime: add doc link from `Runtime` to `#[tokio::main]` ([#6366])
292
+ - runtime: make the `enter` example deterministic ([#6351])
293
+ - sync: add Semaphore example for limiting the number of outgoing requests ([#6419])
294
+ - sync: fix missing period in broadcast docs ([#6377])
295
+ - sync: mark `mpsc::Sender::downgrade` with `#[must_use]` ([#6326])
296
+ - sync: reorder `const_new` before `new_with` ([#6392])
297
+ - sync: update watch channel docs ([#6395])
298
+ - task: fix documentation links ([#6336])
299
+
300
+ ### Changed (unstable)
301
+
302
+ - runtime: include task `Id` in taskdumps ([#6328])
303
+ - runtime: panic if `unhandled_panic` is enabled when not supported ([#6410])
304
+
305
+ [#6300]: https://github.com/tokio-rs/tokio/pull/6300
306
+ [#6326]: https://github.com/tokio-rs/tokio/pull/6326
307
+ [#6328]: https://github.com/tokio-rs/tokio/pull/6328
308
+ [#6329]: https://github.com/tokio-rs/tokio/pull/6329
309
+ [#6331]: https://github.com/tokio-rs/tokio/pull/6331
310
+ [#6336]: https://github.com/tokio-rs/tokio/pull/6336
311
+ [#6337]: https://github.com/tokio-rs/tokio/pull/6337
312
+ [#6339]: https://github.com/tokio-rs/tokio/pull/6339
313
+ [#6340]: https://github.com/tokio-rs/tokio/pull/6340
314
+ [#6345]: https://github.com/tokio-rs/tokio/pull/6345
315
+ [#6348]: https://github.com/tokio-rs/tokio/pull/6348
316
+ [#6351]: https://github.com/tokio-rs/tokio/pull/6351
317
+ [#6360]: https://github.com/tokio-rs/tokio/pull/6360
318
+ [#6366]: https://github.com/tokio-rs/tokio/pull/6366
319
+ [#6377]: https://github.com/tokio-rs/tokio/pull/6377
320
+ [#6388]: https://github.com/tokio-rs/tokio/pull/6388
321
+ [#6392]: https://github.com/tokio-rs/tokio/pull/6392
322
+ [#6395]: https://github.com/tokio-rs/tokio/pull/6395
323
+ [#6403]: https://github.com/tokio-rs/tokio/pull/6403
324
+ [#6405]: https://github.com/tokio-rs/tokio/pull/6405
325
+ [#6410]: https://github.com/tokio-rs/tokio/pull/6410
326
+ [#6411]: https://github.com/tokio-rs/tokio/pull/6411
327
+ [#6418]: https://github.com/tokio-rs/tokio/pull/6418
328
+ [#6419]: https://github.com/tokio-rs/tokio/pull/6419
329
+ [#6431]: https://github.com/tokio-rs/tokio/pull/6431
330
+
331
+ # 1.36.0 (February 2nd, 2024)
332
+
333
+ ### Added
334
+
335
+ - io: add `tokio::io::Join` ([#6220])
336
+ - io: implement `AsyncWrite` for `Empty` ([#6235])
337
+ - net: add support for anonymous unix pipes ([#6127])
338
+ - net: add `UnixSocket` ([#6290])
339
+ - net: expose keepalive option on `TcpSocket` ([#6311])
340
+ - sync: add `{Receiver,UnboundedReceiver}::poll_recv_many` ([#6236])
341
+ - sync: add `Sender::{try_,}reserve_many` ([#6205])
342
+ - sync: add `watch::Receiver::mark_unchanged` ([#6252])
343
+ - task: add `JoinSet::try_join_next` ([#6280])
344
+
345
+ ### Changed
346
+
347
+ - io: make `copy` cooperative ([#6265])
348
+ - io: make `repeat` and `sink` cooperative ([#6254])
349
+ - io: simplify check for empty slice ([#6293])
350
+ - process: use pidfd on Linux when available ([#6152])
351
+ - sync: use AtomicBool in broadcast channel future ([#6298])
352
+
353
+ ### Documented
354
+
355
+ - io: clarify `clear_ready` docs ([#6304])
356
+ - net: document that `*Fd` traits on `TcpSocket` are unix-only ([#6294])
357
+ - sync: document FIFO behavior of `tokio::sync::Mutex` ([#6279])
358
+ - chore: typographic improvements ([#6262])
359
+ - runtime: remove obsolete comment ([#6303])
360
+ - task: fix typo ([#6261])
361
+
362
+ [#6220]: https://github.com/tokio-rs/tokio/pull/6220
363
+ [#6235]: https://github.com/tokio-rs/tokio/pull/6235
364
+ [#6127]: https://github.com/tokio-rs/tokio/pull/6127
365
+ [#6290]: https://github.com/tokio-rs/tokio/pull/6290
366
+ [#6311]: https://github.com/tokio-rs/tokio/pull/6311
367
+ [#6236]: https://github.com/tokio-rs/tokio/pull/6236
368
+ [#6205]: https://github.com/tokio-rs/tokio/pull/6205
369
+ [#6252]: https://github.com/tokio-rs/tokio/pull/6252
370
+ [#6280]: https://github.com/tokio-rs/tokio/pull/6280
371
+ [#6265]: https://github.com/tokio-rs/tokio/pull/6265
372
+ [#6254]: https://github.com/tokio-rs/tokio/pull/6254
373
+ [#6293]: https://github.com/tokio-rs/tokio/pull/6293
374
+ [#6238]: https://github.com/tokio-rs/tokio/pull/6238
375
+ [#6152]: https://github.com/tokio-rs/tokio/pull/6152
376
+ [#6298]: https://github.com/tokio-rs/tokio/pull/6298
377
+ [#6262]: https://github.com/tokio-rs/tokio/pull/6262
378
+ [#6303]: https://github.com/tokio-rs/tokio/pull/6303
379
+ [#6261]: https://github.com/tokio-rs/tokio/pull/6261
380
+ [#6304]: https://github.com/tokio-rs/tokio/pull/6304
381
+ [#6294]: https://github.com/tokio-rs/tokio/pull/6294
382
+ [#6279]: https://github.com/tokio-rs/tokio/pull/6279
383
+
384
+ # 1.35.1 (December 19, 2023)
385
+
386
+ This is a forward part of a change that was backported to 1.25.3.
387
+
388
+ ### Fixed
389
+
390
+ - io: add budgeting to `tokio::runtime::io::registration::async_io` ([#6221])
391
+
392
+ [#6221]: https://github.com/tokio-rs/tokio/pull/6221
393
+
394
+ # 1.35.0 (December 8th, 2023)
395
+
396
+ ### Added
397
+
398
+ - net: add Apple watchOS support ([#6176])
399
+
400
+ ### Changed
401
+
402
+ - io: drop the `Sized` requirements from `AsyncReadExt.read_buf` ([#6169])
403
+ - runtime: make `Runtime` unwind safe ([#6189])
404
+ - runtime: reduce the lock contention in task spawn ([#6001])
405
+ - tokio: update nix dependency to 0.27.1 ([#6190])
406
+
407
+ ### Fixed
408
+
409
+ - chore: make `--cfg docsrs` work without net feature ([#6166])
410
+ - chore: use relaxed load for `unsync_load` on miri ([#6179])
411
+ - runtime: handle missing context on wake ([#6148])
412
+ - taskdump: fix taskdump cargo config example ([#6150])
413
+ - taskdump: skip notified tasks during taskdumps ([#6194])
414
+ - tracing: avoid creating resource spans with current parent, use a None parent instead ([#6107])
415
+ - tracing: make task span explicit root ([#6158])
416
+
417
+ ### Documented
418
+
419
+ - io: flush in `AsyncWriteExt` examples ([#6149])
420
+ - runtime: document fairness guarantees and current behavior ([#6145])
421
+ - task: document cancel safety of `LocalSet::run_until` ([#6147])
422
+
423
+ [#6001]: https://github.com/tokio-rs/tokio/pull/6001
424
+ [#6107]: https://github.com/tokio-rs/tokio/pull/6107
425
+ [#6144]: https://github.com/tokio-rs/tokio/pull/6144
426
+ [#6145]: https://github.com/tokio-rs/tokio/pull/6145
427
+ [#6147]: https://github.com/tokio-rs/tokio/pull/6147
428
+ [#6148]: https://github.com/tokio-rs/tokio/pull/6148
429
+ [#6149]: https://github.com/tokio-rs/tokio/pull/6149
430
+ [#6150]: https://github.com/tokio-rs/tokio/pull/6150
431
+ [#6158]: https://github.com/tokio-rs/tokio/pull/6158
432
+ [#6166]: https://github.com/tokio-rs/tokio/pull/6166
433
+ [#6169]: https://github.com/tokio-rs/tokio/pull/6169
434
+ [#6176]: https://github.com/tokio-rs/tokio/pull/6176
435
+ [#6179]: https://github.com/tokio-rs/tokio/pull/6179
436
+ [#6189]: https://github.com/tokio-rs/tokio/pull/6189
437
+ [#6190]: https://github.com/tokio-rs/tokio/pull/6190
438
+ [#6194]: https://github.com/tokio-rs/tokio/pull/6194
439
+
440
+ # 1.34.0 (November 19th, 2023)
441
+
442
+ ### Fixed
443
+
444
+ - io: allow `clear_readiness` after io driver shutdown ([#6067])
445
+ - io: fix integer overflow in `take` ([#6080])
446
+ - io: fix I/O resource hang ([#6134])
447
+ - sync: fix `broadcast::channel` link ([#6100])
448
+
449
+ ### Changed
450
+
451
+ - macros: use `::core` qualified imports instead of `::std` inside `tokio::test` macro ([#5973])
452
+
453
+ ### Added
454
+
455
+ - fs: update cfg attr in `fs::read_dir` to include `aix` ([#6075])
456
+ - sync: add `mpsc::Receiver::recv_many` ([#6010])
457
+ - tokio: added vita target support ([#6094])
458
+
459
+ [#5973]: https://github.com/tokio-rs/tokio/pull/5973
460
+ [#6067]: https://github.com/tokio-rs/tokio/pull/6067
461
+ [#6080]: https://github.com/tokio-rs/tokio/pull/6080
462
+ [#6134]: https://github.com/tokio-rs/tokio/pull/6134
463
+ [#6100]: https://github.com/tokio-rs/tokio/pull/6100
464
+ [#6075]: https://github.com/tokio-rs/tokio/pull/6075
465
+ [#6010]: https://github.com/tokio-rs/tokio/pull/6010
466
+ [#6094]: https://github.com/tokio-rs/tokio/pull/6094
467
+
468
+ # 1.33.0 (October 9, 2023)
469
+
470
+ ### Fixed
471
+
472
+ - io: mark `Interest::add` with `#[must_use]` ([#6037])
473
+ - runtime: fix cache line size for RISC-V ([#5994])
474
+ - sync: prevent lock poisoning in `watch::Receiver::wait_for` ([#6021])
475
+ - task: fix `spawn_local` source location ([#5984])
476
+
477
+ ### Changed
478
+
479
+ - sync: use Acquire/Release orderings instead of SeqCst in `watch` ([#6018])
480
+
481
+ ### Added
482
+
483
+ - fs: add vectored writes to `tokio::fs::File` ([#5958])
484
+ - io: add `Interest::remove` method ([#5906])
485
+ - io: add vectored writes to `DuplexStream` ([#5985])
486
+ - net: add Apple tvOS support ([#6045])
487
+ - sync: add `?Sized` bound to `{MutexGuard,OwnedMutexGuard}::map` ([#5997])
488
+ - sync: add `watch::Receiver::mark_unseen` ([#5962], [#6014], [#6017])
489
+ - sync: add `watch::Sender::new` ([#5998])
490
+ - sync: add const fn `OnceCell::from_value` ([#5903])
491
+
492
+ ### Removed
493
+
494
+ - remove unused `stats` feature ([#5952])
495
+
496
+ ### Documented
497
+
498
+ - add missing backticks in code examples ([#5938], [#6056])
499
+ - fix typos ([#5988], [#6030])
500
+ - process: document that `Child::wait` is cancel safe ([#5977])
501
+ - sync: add examples for `Semaphore` ([#5939], [#5956], [#5978], [#6031], [#6032], [#6050])
502
+ - sync: document that `broadcast` capacity is a lower bound ([#6042])
503
+ - sync: document that `const_new` is not instrumented ([#6002])
504
+ - sync: improve cancel-safety documentation for `mpsc::Sender::send` ([#5947])
505
+ - sync: improve docs for `watch` channel ([#5954])
506
+ - taskdump: render taskdump documentation on docs.rs ([#5972])
507
+
508
+ ### Unstable
509
+
510
+ - taskdump: fix potential deadlock ([#6036])
511
+
512
+ [#5903]: https://github.com/tokio-rs/tokio/pull/5903
513
+ [#5906]: https://github.com/tokio-rs/tokio/pull/5906
514
+ [#5938]: https://github.com/tokio-rs/tokio/pull/5938
515
+ [#5939]: https://github.com/tokio-rs/tokio/pull/5939
516
+ [#5947]: https://github.com/tokio-rs/tokio/pull/5947
517
+ [#5952]: https://github.com/tokio-rs/tokio/pull/5952
518
+ [#5954]: https://github.com/tokio-rs/tokio/pull/5954
519
+ [#5956]: https://github.com/tokio-rs/tokio/pull/5956
520
+ [#5958]: https://github.com/tokio-rs/tokio/pull/5958
521
+ [#5960]: https://github.com/tokio-rs/tokio/pull/5960
522
+ [#5962]: https://github.com/tokio-rs/tokio/pull/5962
523
+ [#5971]: https://github.com/tokio-rs/tokio/pull/5971
524
+ [#5972]: https://github.com/tokio-rs/tokio/pull/5972
525
+ [#5977]: https://github.com/tokio-rs/tokio/pull/5977
526
+ [#5978]: https://github.com/tokio-rs/tokio/pull/5978
527
+ [#5984]: https://github.com/tokio-rs/tokio/pull/5984
528
+ [#5985]: https://github.com/tokio-rs/tokio/pull/5985
529
+ [#5988]: https://github.com/tokio-rs/tokio/pull/5988
530
+ [#5994]: https://github.com/tokio-rs/tokio/pull/5994
531
+ [#5997]: https://github.com/tokio-rs/tokio/pull/5997
532
+ [#5998]: https://github.com/tokio-rs/tokio/pull/5998
533
+ [#6002]: https://github.com/tokio-rs/tokio/pull/6002
534
+ [#6014]: https://github.com/tokio-rs/tokio/pull/6014
535
+ [#6017]: https://github.com/tokio-rs/tokio/pull/6017
536
+ [#6018]: https://github.com/tokio-rs/tokio/pull/6018
537
+ [#6021]: https://github.com/tokio-rs/tokio/pull/6021
538
+ [#6030]: https://github.com/tokio-rs/tokio/pull/6030
539
+ [#6031]: https://github.com/tokio-rs/tokio/pull/6031
540
+ [#6032]: https://github.com/tokio-rs/tokio/pull/6032
541
+ [#6036]: https://github.com/tokio-rs/tokio/pull/6036
542
+ [#6037]: https://github.com/tokio-rs/tokio/pull/6037
543
+ [#6042]: https://github.com/tokio-rs/tokio/pull/6042
544
+ [#6045]: https://github.com/tokio-rs/tokio/pull/6045
545
+ [#6050]: https://github.com/tokio-rs/tokio/pull/6050
546
+ [#6056]: https://github.com/tokio-rs/tokio/pull/6056
547
+ [#6058]: https://github.com/tokio-rs/tokio/pull/6058
548
+
549
+ # 1.32.1 (December 19, 2023)
550
+
551
+ This is a forward part of a change that was backported to 1.25.3.
552
+
553
+ ### Fixed
554
+
555
+ - io: add budgeting to `tokio::runtime::io::registration::async_io` ([#6221])
556
+
557
+ [#6221]: https://github.com/tokio-rs/tokio/pull/6221
558
+
559
+ # 1.32.0 (August 16, 2023)
560
+
561
+ ### Fixed
562
+
563
+ - sync: fix potential quadratic behavior in `broadcast::Receiver` ([#5925])
564
+
565
+ ### Added
566
+
567
+ - process: stabilize `Command::raw_arg` ([#5930])
568
+ - io: enable awaiting error readiness ([#5781])
569
+
570
+ ### Unstable
571
+
572
+ - rt(alt): improve scalability of alt runtime as the number of cores grows ([#5935])
573
+
574
+ [#5925]: https://github.com/tokio-rs/tokio/pull/5925
575
+ [#5930]: https://github.com/tokio-rs/tokio/pull/5930
576
+ [#5781]: https://github.com/tokio-rs/tokio/pull/5781
577
+ [#5935]: https://github.com/tokio-rs/tokio/pull/5935
578
+
579
+ # 1.31.0 (August 10, 2023)
580
+
581
+ ### Fixed
582
+
583
+ * io: delegate `WriteHalf::poll_write_vectored` ([#5914])
584
+
585
+ ### Unstable
586
+
587
+ * rt(alt): fix memory leak in unstable next-gen scheduler prototype ([#5911])
588
+ * rt: expose mean task poll time metric ([#5927])
589
+
590
+ [#5914]: https://github.com/tokio-rs/tokio/pull/5914
591
+ [#5911]: https://github.com/tokio-rs/tokio/pull/5911
592
+ [#5927]: https://github.com/tokio-rs/tokio/pull/5927
593
+
594
+ # 1.30.0 (August 9, 2023)
595
+
596
+ This release bumps the MSRV of Tokio to 1.63. ([#5887])
597
+
598
+ ### Changed
599
+
600
+ - tokio: reduce LLVM code generation ([#5859])
601
+ - io: support `--cfg mio_unsupported_force_poll_poll` flag ([#5881])
602
+ - sync: make `const_new` methods always available ([#5885])
603
+ - sync: avoid false sharing in mpsc channel ([#5829])
604
+ - rt: pop at least one task from inject queue ([#5908])
605
+
606
+ ### Added
607
+
608
+ - sync: add `broadcast::Sender::new` ([#5824])
609
+ - net: implement `UCred` for espidf ([#5868])
610
+ - fs: add `File::options()` ([#5869])
611
+ - time: implement extra reset variants for `Interval` ([#5878])
612
+ - process: add `{ChildStd*}::into_owned_{fd, handle}` ([#5899])
613
+
614
+ ### Removed
615
+
616
+ - tokio: removed unused `tokio_*` cfgs ([#5890])
617
+ - remove build script to speed up compilation ([#5887])
618
+
619
+ ### Documented
620
+
621
+ - sync: mention lagging in docs for `broadcast::send` ([#5820])
622
+ - runtime: expand on sharing runtime docs ([#5858])
623
+ - io: use vec in example for `AsyncReadExt::read_exact` ([#5863])
624
+ - time: mark `Sleep` as `!Unpin` in docs ([#5916])
625
+ - process: fix `raw_arg` not showing up in docs ([#5865])
626
+
627
+ ### Unstable
628
+
629
+ - rt: add runtime ID ([#5864])
630
+ - rt: initial implementation of new threaded runtime ([#5823])
631
+
632
+ [#5820]: https://github.com/tokio-rs/tokio/pull/5820
633
+ [#5823]: https://github.com/tokio-rs/tokio/pull/5823
634
+ [#5824]: https://github.com/tokio-rs/tokio/pull/5824
635
+ [#5829]: https://github.com/tokio-rs/tokio/pull/5829
636
+ [#5858]: https://github.com/tokio-rs/tokio/pull/5858
637
+ [#5859]: https://github.com/tokio-rs/tokio/pull/5859
638
+ [#5863]: https://github.com/tokio-rs/tokio/pull/5863
639
+ [#5864]: https://github.com/tokio-rs/tokio/pull/5864
640
+ [#5865]: https://github.com/tokio-rs/tokio/pull/5865
641
+ [#5868]: https://github.com/tokio-rs/tokio/pull/5868
642
+ [#5869]: https://github.com/tokio-rs/tokio/pull/5869
643
+ [#5878]: https://github.com/tokio-rs/tokio/pull/5878
644
+ [#5881]: https://github.com/tokio-rs/tokio/pull/5881
645
+ [#5885]: https://github.com/tokio-rs/tokio/pull/5885
646
+ [#5887]: https://github.com/tokio-rs/tokio/pull/5887
647
+ [#5890]: https://github.com/tokio-rs/tokio/pull/5890
648
+ [#5899]: https://github.com/tokio-rs/tokio/pull/5899
649
+ [#5908]: https://github.com/tokio-rs/tokio/pull/5908
650
+ [#5916]: https://github.com/tokio-rs/tokio/pull/5916
651
+
652
+ # 1.29.1 (June 29, 2023)
653
+
654
+ ### Fixed
655
+
656
+ - rt: fix nesting two `block_in_place` with a `block_on` between ([#5837])
657
+
658
+ [#5837]: https://github.com/tokio-rs/tokio/pull/5837
659
+
660
+ # 1.29.0 (June 27, 2023)
661
+
662
+ Technically a breaking change, the `Send` implementation is removed from
663
+ `runtime::EnterGuard`. This change fixes a bug and should not impact most users.
664
+
665
+ ### Breaking
666
+
667
+ - rt: `EnterGuard` should not be `Send` ([#5766])
668
+
669
+ ### Fixed
670
+
671
+ - fs: reduce blocking ops in `fs::read_dir` ([#5653])
672
+ - rt: fix possible starvation ([#5686], [#5712])
673
+ - rt: fix stacked borrows issue in `JoinSet` ([#5693])
674
+ - rt: panic if `EnterGuard` dropped incorrect order ([#5772])
675
+ - time: do not overflow to signal value ([#5710])
676
+ - fs: wait for in-flight ops before cloning `File` ([#5803])
677
+
678
+ ### Changed
679
+
680
+ - rt: reduce time to poll tasks scheduled from outside the runtime ([#5705], [#5720])
681
+
682
+ ### Added
683
+
684
+ - net: add uds doc alias for unix sockets ([#5659])
685
+ - rt: add metric for number of tasks ([#5628])
686
+ - sync: implement more traits for channel errors ([#5666])
687
+ - net: add nodelay methods on TcpSocket ([#5672])
688
+ - sync: add `broadcast::Receiver::blocking_recv` ([#5690])
689
+ - process: add `raw_arg` method to `Command` ([#5704])
690
+ - io: support PRIORITY epoll events ([#5566])
691
+ - task: add `JoinSet::poll_join_next` ([#5721])
692
+ - net: add support for Redox OS ([#5790])
693
+
694
+
695
+ ### Unstable
696
+
697
+ - rt: add the ability to dump task backtraces ([#5608], [#5676], [#5708], [#5717])
698
+ - rt: instrument task poll times with a histogram ([#5685])
699
+
700
+ [#5766]: https://github.com/tokio-rs/tokio/pull/5766
701
+ [#5653]: https://github.com/tokio-rs/tokio/pull/5653
702
+ [#5686]: https://github.com/tokio-rs/tokio/pull/5686
703
+ [#5712]: https://github.com/tokio-rs/tokio/pull/5712
704
+ [#5693]: https://github.com/tokio-rs/tokio/pull/5693
705
+ [#5772]: https://github.com/tokio-rs/tokio/pull/5772
706
+ [#5710]: https://github.com/tokio-rs/tokio/pull/5710
707
+ [#5803]: https://github.com/tokio-rs/tokio/pull/5803
708
+ [#5705]: https://github.com/tokio-rs/tokio/pull/5705
709
+ [#5720]: https://github.com/tokio-rs/tokio/pull/5720
710
+ [#5659]: https://github.com/tokio-rs/tokio/pull/5659
711
+ [#5628]: https://github.com/tokio-rs/tokio/pull/5628
712
+ [#5666]: https://github.com/tokio-rs/tokio/pull/5666
713
+ [#5672]: https://github.com/tokio-rs/tokio/pull/5672
714
+ [#5690]: https://github.com/tokio-rs/tokio/pull/5690
715
+ [#5704]: https://github.com/tokio-rs/tokio/pull/5704
716
+ [#5566]: https://github.com/tokio-rs/tokio/pull/5566
717
+ [#5721]: https://github.com/tokio-rs/tokio/pull/5721
718
+ [#5790]: https://github.com/tokio-rs/tokio/pull/5790
719
+ [#5608]: https://github.com/tokio-rs/tokio/pull/5608
720
+ [#5676]: https://github.com/tokio-rs/tokio/pull/5676
721
+ [#5708]: https://github.com/tokio-rs/tokio/pull/5708
722
+ [#5717]: https://github.com/tokio-rs/tokio/pull/5717
723
+ [#5685]: https://github.com/tokio-rs/tokio/pull/5685
724
+
725
+ # 1.28.2 (May 28, 2023)
726
+
727
+ Forward ports 1.18.6 changes.
728
+
729
+ ### Fixed
730
+
731
+ - deps: disable default features for mio ([#5728])
732
+
733
+ [#5728]: https://github.com/tokio-rs/tokio/pull/5728
734
+
735
+ # 1.28.1 (May 10th, 2023)
736
+
737
+ This release fixes a mistake in the build script that makes `AsFd`
738
+ implementations unavailable on Rust 1.63. ([#5677])
739
+
740
+ [#5677]: https://github.com/tokio-rs/tokio/pull/5677
741
+
742
+ # 1.28.0 (April 25th, 2023)
743
+
744
+ ### Added
745
+
746
+ - io: add `AsyncFd::async_io` ([#5542])
747
+ - io: impl BufMut for ReadBuf ([#5590])
748
+ - net: add `recv_buf` for `UdpSocket` and `UnixDatagram` ([#5583])
749
+ - sync: add `OwnedSemaphorePermit::semaphore` ([#5618])
750
+ - sync: add `same_channel` to broadcast channel ([#5607])
751
+ - sync: add `watch::Receiver::wait_for` ([#5611])
752
+ - task: add `JoinSet::spawn_blocking` and `JoinSet::spawn_blocking_on` ([#5612])
753
+
754
+ ### Changed
755
+
756
+ - deps: update windows-sys to 0.48 ([#5591])
757
+ - io: make `read_to_end` not grow unnecessarily ([#5610])
758
+ - macros: make entrypoints more efficient ([#5621])
759
+ - sync: improve Debug impl for `RwLock` ([#5647])
760
+ - sync: reduce contention in `Notify` ([#5503])
761
+
762
+ ### Fixed
763
+
764
+ - net: support `get_peer_cred` on AIX ([#5065])
765
+ - sync: avoid deadlocks in `broadcast` with custom wakers ([#5578])
766
+
767
+ ### Documented
768
+
769
+ - sync: fix typo in `Semaphore::MAX_PERMITS` ([#5645])
770
+ - sync: fix typo in `tokio::sync::watch::Sender` docs ([#5587])
771
+
772
+ [#5065]: https://github.com/tokio-rs/tokio/pull/5065
773
+ [#5503]: https://github.com/tokio-rs/tokio/pull/5503
774
+ [#5542]: https://github.com/tokio-rs/tokio/pull/5542
775
+ [#5578]: https://github.com/tokio-rs/tokio/pull/5578
776
+ [#5583]: https://github.com/tokio-rs/tokio/pull/5583
777
+ [#5587]: https://github.com/tokio-rs/tokio/pull/5587
778
+ [#5590]: https://github.com/tokio-rs/tokio/pull/5590
779
+ [#5591]: https://github.com/tokio-rs/tokio/pull/5591
780
+ [#5607]: https://github.com/tokio-rs/tokio/pull/5607
781
+ [#5610]: https://github.com/tokio-rs/tokio/pull/5610
782
+ [#5611]: https://github.com/tokio-rs/tokio/pull/5611
783
+ [#5612]: https://github.com/tokio-rs/tokio/pull/5612
784
+ [#5618]: https://github.com/tokio-rs/tokio/pull/5618
785
+ [#5621]: https://github.com/tokio-rs/tokio/pull/5621
786
+ [#5645]: https://github.com/tokio-rs/tokio/pull/5645
787
+ [#5647]: https://github.com/tokio-rs/tokio/pull/5647
788
+
789
+ # 1.27.0 (March 27th, 2023)
790
+
791
+ This release bumps the MSRV of Tokio to 1.56. ([#5559])
792
+
793
+ ### Added
794
+
795
+ - io: add `async_io` helper method to sockets ([#5512])
796
+ - io: add implementations of `AsFd`/`AsHandle`/`AsSocket` ([#5514], [#5540])
797
+ - net: add `UdpSocket::peek_sender()` ([#5520])
798
+ - sync: add `RwLockWriteGuard::{downgrade_map, try_downgrade_map}` ([#5527])
799
+ - task: add `JoinHandle::abort_handle` ([#5543])
800
+
801
+ ### Changed
802
+
803
+ - io: use `memchr` from `libc` ([#5558])
804
+ - macros: accept path as crate rename in `#[tokio::main]` ([#5557])
805
+ - macros: update to syn 2.0.0 ([#5572])
806
+ - time: don't register for a wakeup when `Interval` returns `Ready` ([#5553])
807
+
808
+ ### Fixed
809
+
810
+ - fs: fuse std iterator in `ReadDir` ([#5555])
811
+ - tracing: fix `spawn_blocking` location fields ([#5573])
812
+ - time: clean up redundant check in `Wheel::poll()` ([#5574])
813
+
814
+ ### Documented
815
+
816
+ - macros: define cancellation safety ([#5525])
817
+ - io: add details to docs of `tokio::io::copy[_buf]` ([#5575])
818
+ - io: refer to `ReaderStream` and `StreamReader` in module docs ([#5576])
819
+
820
+ [#5512]: https://github.com/tokio-rs/tokio/pull/5512
821
+ [#5514]: https://github.com/tokio-rs/tokio/pull/5514
822
+ [#5520]: https://github.com/tokio-rs/tokio/pull/5520
823
+ [#5525]: https://github.com/tokio-rs/tokio/pull/5525
824
+ [#5527]: https://github.com/tokio-rs/tokio/pull/5527
825
+ [#5540]: https://github.com/tokio-rs/tokio/pull/5540
826
+ [#5543]: https://github.com/tokio-rs/tokio/pull/5543
827
+ [#5553]: https://github.com/tokio-rs/tokio/pull/5553
828
+ [#5555]: https://github.com/tokio-rs/tokio/pull/5555
829
+ [#5557]: https://github.com/tokio-rs/tokio/pull/5557
830
+ [#5558]: https://github.com/tokio-rs/tokio/pull/5558
831
+ [#5559]: https://github.com/tokio-rs/tokio/pull/5559
832
+ [#5572]: https://github.com/tokio-rs/tokio/pull/5572
833
+ [#5573]: https://github.com/tokio-rs/tokio/pull/5573
834
+ [#5574]: https://github.com/tokio-rs/tokio/pull/5574
835
+ [#5575]: https://github.com/tokio-rs/tokio/pull/5575
836
+ [#5576]: https://github.com/tokio-rs/tokio/pull/5576
837
+
838
+ # 1.26.0 (March 1st, 2023)
839
+
840
+ ### Fixed
841
+
842
+ - macros: fix empty `join!` and `try_join!` ([#5504])
843
+ - sync: don't leak tracing spans in mutex guards ([#5469])
844
+ - sync: drop wakers after unlocking the mutex in Notify ([#5471])
845
+ - sync: drop wakers outside lock in semaphore ([#5475])
846
+
847
+ ### Added
848
+
849
+ - fs: add `fs::try_exists` ([#4299])
850
+ - net: add types for named unix pipes ([#5351])
851
+ - sync: add `MappedOwnedMutexGuard` ([#5474])
852
+
853
+ ### Changed
854
+
855
+ - chore: update windows-sys to 0.45 ([#5386])
856
+ - net: use Message Read Mode for named pipes ([#5350])
857
+ - sync: mark lock guards with `#[clippy::has_significant_drop]` ([#5422])
858
+ - sync: reduce contention in watch channel ([#5464])
859
+ - time: remove cache padding in timer entries ([#5468])
860
+ - time: Improve `Instant::now()` perf with test-util ([#5513])
861
+
862
+ ### Internal Changes
863
+
864
+ - io: use `poll_fn` in `copy_bidirectional` ([#5486])
865
+ - net: refactor named pipe builders to not use bitfields ([#5477])
866
+ - rt: remove Arc from Clock ([#5434])
867
+ - sync: make `notify_waiters` calls atomic ([#5458])
868
+ - time: don't store deadline twice in sleep entries ([#5410])
869
+
870
+ ### Unstable
871
+
872
+ - metrics: add a new metric for budget exhaustion yields ([#5517])
873
+
874
+ ### Documented
875
+
876
+ - io: improve AsyncFd example ([#5481])
877
+ - runtime: document the nature of the main future ([#5494])
878
+ - runtime: remove extra period in docs ([#5511])
879
+ - signal: updated Documentation for Signals ([#5459])
880
+ - sync: add doc aliases for `blocking_*` methods ([#5448])
881
+ - sync: fix docs for Send/Sync bounds in broadcast ([#5480])
882
+ - sync: document drop behavior for channels ([#5497])
883
+ - task: clarify what happens to spawned work during runtime shutdown ([#5394])
884
+ - task: clarify `process::Command` docs ([#5413])
885
+ - task: fix wording with 'unsend' ([#5452])
886
+ - time: document immediate completion guarantee for timeouts ([#5509])
887
+ - tokio: document supported platforms ([#5483])
888
+
889
+ [#4299]: https://github.com/tokio-rs/tokio/pull/4299
890
+ [#5350]: https://github.com/tokio-rs/tokio/pull/5350
891
+ [#5351]: https://github.com/tokio-rs/tokio/pull/5351
892
+ [#5386]: https://github.com/tokio-rs/tokio/pull/5386
893
+ [#5394]: https://github.com/tokio-rs/tokio/pull/5394
894
+ [#5410]: https://github.com/tokio-rs/tokio/pull/5410
895
+ [#5413]: https://github.com/tokio-rs/tokio/pull/5413
896
+ [#5422]: https://github.com/tokio-rs/tokio/pull/5422
897
+ [#5434]: https://github.com/tokio-rs/tokio/pull/5434
898
+ [#5448]: https://github.com/tokio-rs/tokio/pull/5448
899
+ [#5452]: https://github.com/tokio-rs/tokio/pull/5452
900
+ [#5458]: https://github.com/tokio-rs/tokio/pull/5458
901
+ [#5459]: https://github.com/tokio-rs/tokio/pull/5459
902
+ [#5464]: https://github.com/tokio-rs/tokio/pull/5464
903
+ [#5468]: https://github.com/tokio-rs/tokio/pull/5468
904
+ [#5469]: https://github.com/tokio-rs/tokio/pull/5469
905
+ [#5471]: https://github.com/tokio-rs/tokio/pull/5471
906
+ [#5474]: https://github.com/tokio-rs/tokio/pull/5474
907
+ [#5475]: https://github.com/tokio-rs/tokio/pull/5475
908
+ [#5477]: https://github.com/tokio-rs/tokio/pull/5477
909
+ [#5480]: https://github.com/tokio-rs/tokio/pull/5480
910
+ [#5481]: https://github.com/tokio-rs/tokio/pull/5481
911
+ [#5483]: https://github.com/tokio-rs/tokio/pull/5483
912
+ [#5486]: https://github.com/tokio-rs/tokio/pull/5486
913
+ [#5494]: https://github.com/tokio-rs/tokio/pull/5494
914
+ [#5497]: https://github.com/tokio-rs/tokio/pull/5497
915
+ [#5504]: https://github.com/tokio-rs/tokio/pull/5504
916
+ [#5509]: https://github.com/tokio-rs/tokio/pull/5509
917
+ [#5511]: https://github.com/tokio-rs/tokio/pull/5511
918
+ [#5513]: https://github.com/tokio-rs/tokio/pull/5513
919
+ [#5517]: https://github.com/tokio-rs/tokio/pull/5517
920
+
921
+ # 1.25.3 (December 17th, 2023)
922
+
923
+ ### Fixed
924
+ - io: add budgeting to `tokio::runtime::io::registration::async_io` ([#6221])
925
+
926
+ [#6221]: https://github.com/tokio-rs/tokio/pull/6221
927
+
928
+ # 1.25.2 (September 22, 2023)
929
+
930
+ Forward ports 1.20.6 changes.
931
+
932
+ ### Changed
933
+
934
+ - io: use `memchr` from `libc` ([#5960])
935
+
936
+ [#5960]: https://github.com/tokio-rs/tokio/pull/5960
937
+
938
+ # 1.25.1 (May 28, 2023)
939
+
940
+ Forward ports 1.18.6 changes.
941
+
942
+ ### Fixed
943
+
944
+ - deps: disable default features for mio ([#5728])
945
+
946
+ [#5728]: https://github.com/tokio-rs/tokio/pull/5728
947
+
948
+ # 1.25.0 (January 28, 2023)
949
+
950
+ ### Fixed
951
+
952
+ - rt: fix runtime metrics reporting ([#5330])
953
+
954
+ ### Added
955
+
956
+ - sync: add `broadcast::Sender::len` ([#5343])
957
+
958
+ ### Changed
959
+
960
+ - fs: increase maximum read buffer size to 2MiB ([#5397])
961
+
962
+ [#5330]: https://github.com/tokio-rs/tokio/pull/5330
963
+ [#5343]: https://github.com/tokio-rs/tokio/pull/5343
964
+ [#5397]: https://github.com/tokio-rs/tokio/pull/5397
965
+
966
+ # 1.24.2 (January 17, 2023)
967
+
968
+ Forward ports 1.18.5 changes.
969
+
970
+ ### Fixed
971
+
972
+ - io: fix unsoundness in `ReadHalf::unsplit` ([#5375])
973
+
974
+ [#5375]: https://github.com/tokio-rs/tokio/pull/5375
975
+
976
+ # 1.24.1 (January 6, 2022)
977
+
978
+ This release fixes a compilation failure on targets without `AtomicU64` when using rustc older than 1.63. ([#5356])
979
+
980
+ [#5356]: https://github.com/tokio-rs/tokio/pull/5356
981
+
982
+ # 1.24.0 (January 5, 2022)
983
+
984
+ ### Fixed
985
+ - rt: improve native `AtomicU64` support detection ([#5284])
986
+
987
+ ### Added
988
+ - rt: add configuration option for max number of I/O events polled from the OS
989
+ per tick ([#5186])
990
+ - rt: add an environment variable for configuring the default number of worker
991
+ threads per runtime instance ([#4250])
992
+
993
+ ### Changed
994
+ - sync: reduce MPSC channel stack usage ([#5294])
995
+ - io: reduce lock contention in I/O operations ([#5300])
996
+ - fs: speed up `read_dir()` by chunking operations ([#5309])
997
+ - rt: use internal `ThreadId` implementation ([#5329])
998
+ - test: don't auto-advance time when a `spawn_blocking` task is running ([#5115])
999
+
1000
+ [#5186]: https://github.com/tokio-rs/tokio/pull/5186
1001
+ [#5294]: https://github.com/tokio-rs/tokio/pull/5294
1002
+ [#5284]: https://github.com/tokio-rs/tokio/pull/5284
1003
+ [#4250]: https://github.com/tokio-rs/tokio/pull/4250
1004
+ [#5300]: https://github.com/tokio-rs/tokio/pull/5300
1005
+ [#5329]: https://github.com/tokio-rs/tokio/pull/5329
1006
+ [#5115]: https://github.com/tokio-rs/tokio/pull/5115
1007
+ [#5309]: https://github.com/tokio-rs/tokio/pull/5309
1008
+
1009
+ # 1.23.1 (January 4, 2022)
1010
+
1011
+ This release forward ports changes from 1.18.4.
1012
+
1013
+ ### Fixed
1014
+
1015
+ - net: fix Windows named pipe server builder to maintain option when toggling
1016
+ pipe mode ([#5336]).
1017
+
1018
+ [#5336]: https://github.com/tokio-rs/tokio/pull/5336
1019
+
1020
+ # 1.23.0 (December 5, 2022)
1021
+
1022
+ ### Fixed
1023
+
1024
+ - net: fix Windows named pipe connect ([#5208])
1025
+ - io: support vectored writes for `ChildStdin` ([#5216])
1026
+ - io: fix `async fn ready()` false positive for OS-specific events ([#5231])
1027
+
1028
+ ### Changed
1029
+ - runtime: `yield_now` defers task until after driver poll ([#5223])
1030
+ - runtime: reduce amount of codegen needed per spawned task ([#5213])
1031
+ - windows: replace `winapi` dependency with `windows-sys` ([#5204])
1032
+
1033
+ [#5208]: https://github.com/tokio-rs/tokio/pull/5208
1034
+ [#5216]: https://github.com/tokio-rs/tokio/pull/5216
1035
+ [#5213]: https://github.com/tokio-rs/tokio/pull/5213
1036
+ [#5204]: https://github.com/tokio-rs/tokio/pull/5204
1037
+ [#5223]: https://github.com/tokio-rs/tokio/pull/5223
1038
+ [#5231]: https://github.com/tokio-rs/tokio/pull/5231
1039
+
1040
+ # 1.22.0 (November 17, 2022)
1041
+
1042
+ ### Added
1043
+ - runtime: add `Handle::runtime_flavor` ([#5138])
1044
+ - sync: add `Mutex::blocking_lock_owned` ([#5130])
1045
+ - sync: add `Semaphore::MAX_PERMITS` ([#5144])
1046
+ - sync: add `merge()` to semaphore permits ([#4948])
1047
+ - sync: add `mpsc::WeakUnboundedSender` ([#5189])
1048
+
1049
+ ### Added (unstable)
1050
+
1051
+ - process: add `Command::process_group` ([#5114])
1052
+ - runtime: export metrics about the blocking thread pool ([#5161])
1053
+ - task: add `task::id()` and `task::try_id()` ([#5171])
1054
+
1055
+ ### Fixed
1056
+ - macros: don't take ownership of futures in macros ([#5087])
1057
+ - runtime: fix Stacked Borrows violation in `LocalOwnedTasks` ([#5099])
1058
+ - runtime: mitigate ABA with 32-bit queue indices when possible ([#5042])
1059
+ - task: wake local tasks to the local queue when woken by the same thread ([#5095])
1060
+ - time: panic in release mode when `mark_pending` called illegally ([#5093])
1061
+ - runtime: fix typo in expect message ([#5169])
1062
+ - runtime: fix `unsync_load` on atomic types ([#5175])
1063
+ - task: elaborate safety comments in task deallocation ([#5172])
1064
+ - runtime: fix `LocalSet` drop in thread local ([#5179])
1065
+ - net: remove libc type leakage in a public API ([#5191])
1066
+ - runtime: update the alignment of `CachePadded` ([#5106])
1067
+
1068
+ ### Changed
1069
+ - io: make `tokio::io::copy` continue filling the buffer when writer stalls ([#5066])
1070
+ - runtime: remove `coop::budget` from `LocalSet::run_until` ([#5155])
1071
+ - sync: make `Notify` panic safe ([#5154])
1072
+
1073
+ ### Documented
1074
+ - io: fix doc for `write_i8` to use signed integers ([#5040])
1075
+ - net: fix doc typos for TCP and UDP `set_tos` methods ([#5073])
1076
+ - net: fix function name in `UdpSocket::recv` documentation ([#5150])
1077
+ - sync: typo in `TryLockError` for `RwLock::try_write` ([#5160])
1078
+ - task: document that spawned tasks execute immediately ([#5117])
1079
+ - time: document return type of `timeout` ([#5118])
1080
+ - time: document that `timeout` checks only before poll ([#5126])
1081
+ - sync: specify return type of `oneshot::Receiver` in docs ([#5198])
1082
+
1083
+ ### Internal changes
1084
+ - runtime: use const `Mutex::new` for globals ([#5061])
1085
+ - runtime: remove `Option` around `mio::Events` in io driver ([#5078])
1086
+ - runtime: remove a conditional compilation clause ([#5104])
1087
+ - runtime: remove a reference to internal time handle ([#5107])
1088
+ - runtime: misc time driver cleanup ([#5120])
1089
+ - runtime: move signal driver to runtime module ([#5121])
1090
+ - runtime: signal driver now uses I/O driver directly ([#5125])
1091
+ - runtime: start decoupling I/O driver and I/O handle ([#5127])
1092
+ - runtime: switch `io::handle` refs with scheduler:Handle ([#5128])
1093
+ - runtime: remove Arc from I/O driver ([#5134])
1094
+ - runtime: use signal driver handle via `scheduler::Handle` ([#5135])
1095
+ - runtime: move internal clock fns out of context ([#5139])
1096
+ - runtime: remove `runtime::context` module ([#5140])
1097
+ - runtime: keep driver cfgs in `driver.rs` ([#5141])
1098
+ - runtime: add `runtime::context` to unify thread-locals ([#5143])
1099
+ - runtime: rename some confusing internal variables/fns ([#5151])
1100
+ - runtime: move `coop` mod into `runtime` ([#5152])
1101
+ - runtime: move budget state to context thread-local ([#5157])
1102
+ - runtime: move park logic into runtime module ([#5158])
1103
+ - runtime: move `Runtime` into its own file ([#5159])
1104
+ - runtime: unify entering a runtime with `Handle::enter` ([#5163])
1105
+ - runtime: remove handle reference from each scheduler ([#5166])
1106
+ - runtime: move `enter` into `context` ([#5167])
1107
+ - runtime: combine context and entered thread-locals ([#5168])
1108
+ - runtime: fix accidental unsetting of current handle ([#5178])
1109
+ - runtime: move `CoreStage` methods to `Core` ([#5182])
1110
+ - sync: name mpsc semaphore types ([#5146])
1111
+
1112
+ [#4948]: https://github.com/tokio-rs/tokio/pull/4948
1113
+ [#5040]: https://github.com/tokio-rs/tokio/pull/5040
1114
+ [#5042]: https://github.com/tokio-rs/tokio/pull/5042
1115
+ [#5061]: https://github.com/tokio-rs/tokio/pull/5061
1116
+ [#5066]: https://github.com/tokio-rs/tokio/pull/5066
1117
+ [#5073]: https://github.com/tokio-rs/tokio/pull/5073
1118
+ [#5078]: https://github.com/tokio-rs/tokio/pull/5078
1119
+ [#5087]: https://github.com/tokio-rs/tokio/pull/5087
1120
+ [#5093]: https://github.com/tokio-rs/tokio/pull/5093
1121
+ [#5095]: https://github.com/tokio-rs/tokio/pull/5095
1122
+ [#5099]: https://github.com/tokio-rs/tokio/pull/5099
1123
+ [#5104]: https://github.com/tokio-rs/tokio/pull/5104
1124
+ [#5106]: https://github.com/tokio-rs/tokio/pull/5106
1125
+ [#5107]: https://github.com/tokio-rs/tokio/pull/5107
1126
+ [#5114]: https://github.com/tokio-rs/tokio/pull/5114
1127
+ [#5117]: https://github.com/tokio-rs/tokio/pull/5117
1128
+ [#5118]: https://github.com/tokio-rs/tokio/pull/5118
1129
+ [#5120]: https://github.com/tokio-rs/tokio/pull/5120
1130
+ [#5121]: https://github.com/tokio-rs/tokio/pull/5121
1131
+ [#5125]: https://github.com/tokio-rs/tokio/pull/5125
1132
+ [#5126]: https://github.com/tokio-rs/tokio/pull/5126
1133
+ [#5127]: https://github.com/tokio-rs/tokio/pull/5127
1134
+ [#5128]: https://github.com/tokio-rs/tokio/pull/5128
1135
+ [#5130]: https://github.com/tokio-rs/tokio/pull/5130
1136
+ [#5134]: https://github.com/tokio-rs/tokio/pull/5134
1137
+ [#5135]: https://github.com/tokio-rs/tokio/pull/5135
1138
+ [#5138]: https://github.com/tokio-rs/tokio/pull/5138
1139
+ [#5138]: https://github.com/tokio-rs/tokio/pull/5138
1140
+ [#5139]: https://github.com/tokio-rs/tokio/pull/5139
1141
+ [#5140]: https://github.com/tokio-rs/tokio/pull/5140
1142
+ [#5141]: https://github.com/tokio-rs/tokio/pull/5141
1143
+ [#5143]: https://github.com/tokio-rs/tokio/pull/5143
1144
+ [#5144]: https://github.com/tokio-rs/tokio/pull/5144
1145
+ [#5144]: https://github.com/tokio-rs/tokio/pull/5144
1146
+ [#5146]: https://github.com/tokio-rs/tokio/pull/5146
1147
+ [#5150]: https://github.com/tokio-rs/tokio/pull/5150
1148
+ [#5151]: https://github.com/tokio-rs/tokio/pull/5151
1149
+ [#5152]: https://github.com/tokio-rs/tokio/pull/5152
1150
+ [#5154]: https://github.com/tokio-rs/tokio/pull/5154
1151
+ [#5155]: https://github.com/tokio-rs/tokio/pull/5155
1152
+ [#5157]: https://github.com/tokio-rs/tokio/pull/5157
1153
+ [#5158]: https://github.com/tokio-rs/tokio/pull/5158
1154
+ [#5159]: https://github.com/tokio-rs/tokio/pull/5159
1155
+ [#5160]: https://github.com/tokio-rs/tokio/pull/5160
1156
+ [#5161]: https://github.com/tokio-rs/tokio/pull/5161
1157
+ [#5163]: https://github.com/tokio-rs/tokio/pull/5163
1158
+ [#5166]: https://github.com/tokio-rs/tokio/pull/5166
1159
+ [#5167]: https://github.com/tokio-rs/tokio/pull/5167
1160
+ [#5168]: https://github.com/tokio-rs/tokio/pull/5168
1161
+ [#5169]: https://github.com/tokio-rs/tokio/pull/5169
1162
+ [#5171]: https://github.com/tokio-rs/tokio/pull/5171
1163
+ [#5172]: https://github.com/tokio-rs/tokio/pull/5172
1164
+ [#5175]: https://github.com/tokio-rs/tokio/pull/5175
1165
+ [#5178]: https://github.com/tokio-rs/tokio/pull/5178
1166
+ [#5179]: https://github.com/tokio-rs/tokio/pull/5179
1167
+ [#5182]: https://github.com/tokio-rs/tokio/pull/5182
1168
+ [#5189]: https://github.com/tokio-rs/tokio/pull/5189
1169
+ [#5191]: https://github.com/tokio-rs/tokio/pull/5191
1170
+ [#5198]: https://github.com/tokio-rs/tokio/pull/5198
1171
+
1172
+ # 1.21.2 (September 27, 2022)
1173
+
1174
+ This release removes the dependency on the `once_cell` crate to restore the MSRV
1175
+ of 1.21.x, which is the latest minor version at the time of release. ([#5048])
1176
+
1177
+ [#5048]: https://github.com/tokio-rs/tokio/pull/5048
1178
+
1179
+ # 1.21.1 (September 13, 2022)
1180
+
1181
+ ### Fixed
1182
+
1183
+ - net: fix dependency resolution for socket2 ([#5000])
1184
+ - task: ignore failure to set TLS in `LocalSet` Drop ([#4976])
1185
+
1186
+ [#4976]: https://github.com/tokio-rs/tokio/pull/4976
1187
+ [#5000]: https://github.com/tokio-rs/tokio/pull/5000
1188
+
1189
+ # 1.21.0 (September 2, 2022)
1190
+
1191
+ This release is the first release of Tokio to intentionally support WASM. The
1192
+ `sync,macros,io-util,rt,time` features are stabilized on WASM. Additionally the
1193
+ wasm32-wasi target is given unstable support for the `net` feature.
1194
+
1195
+ ### Added
1196
+
1197
+ - net: add `device` and `bind_device` methods to TCP/UDP sockets ([#4882])
1198
+ - net: add `tos` and `set_tos` methods to TCP and UDP sockets ([#4877])
1199
+ - net: add security flags to named pipe `ServerOptions` ([#4845])
1200
+ - signal: add more windows signal handlers ([#4924])
1201
+ - sync: add `mpsc::Sender::max_capacity` method ([#4904])
1202
+ - sync: implement Weak version of `mpsc::Sender` ([#4595])
1203
+ - task: add `LocalSet::enter` ([#4765])
1204
+ - task: stabilize `JoinSet` and `AbortHandle` ([#4920])
1205
+ - tokio: add `track_caller` to public APIs ([#4805], [#4848], [#4852])
1206
+ - wasm: initial support for `wasm32-wasi` target ([#4716])
1207
+
1208
+ ### Fixed
1209
+
1210
+ - miri: improve miri compatibility by avoiding temporary references in `linked_list::Link` impls ([#4841])
1211
+ - signal: don't register write interest on signal pipe ([#4898])
1212
+ - sync: add `#[must_use]` to lock guards ([#4886])
1213
+ - sync: fix hang when calling `recv` on closed and reopened broadcast channel ([#4867])
1214
+ - task: propagate attributes on task-locals ([#4837])
1215
+
1216
+ ### Changed
1217
+
1218
+ - fs: change panic to error in `File::start_seek` ([#4897])
1219
+ - io: reduce syscalls in `poll_read` ([#4840])
1220
+ - process: use blocking threadpool for child stdio I/O ([#4824])
1221
+ - signal: make `SignalKind` methods const ([#4956])
1222
+
1223
+ ### Internal changes
1224
+
1225
+ - rt: extract `basic_scheduler::Config` ([#4935])
1226
+ - rt: move I/O driver into `runtime` module ([#4942])
1227
+ - rt: rename internal scheduler types ([#4945])
1228
+
1229
+ ### Documented
1230
+
1231
+ - chore: fix typos and grammar ([#4858], [#4894], [#4928])
1232
+ - io: fix typo in `AsyncSeekExt::rewind` docs ([#4893])
1233
+ - net: add documentation to `try_read()` for zero-length buffers ([#4937])
1234
+ - runtime: remove incorrect panic section for `Builder::worker_threads` ([#4849])
1235
+ - sync: doc of `watch::Sender::send` improved ([#4959])
1236
+ - task: add cancel safety docs to `JoinHandle` ([#4901])
1237
+ - task: expand on cancellation of `spawn_blocking` ([#4811])
1238
+ - time: clarify that the first tick of `Interval::tick` happens immediately ([#4951])
1239
+
1240
+ ### Unstable
1241
+
1242
+ - rt: add unstable option to disable the LIFO slot ([#4936])
1243
+ - task: fix incorrect signature in `Builder::spawn_on` ([#4953])
1244
+ - task: make `task::Builder::spawn*` methods fallible ([#4823])
1245
+
1246
+ [#4595]: https://github.com/tokio-rs/tokio/pull/4595
1247
+ [#4716]: https://github.com/tokio-rs/tokio/pull/4716
1248
+ [#4765]: https://github.com/tokio-rs/tokio/pull/4765
1249
+ [#4805]: https://github.com/tokio-rs/tokio/pull/4805
1250
+ [#4811]: https://github.com/tokio-rs/tokio/pull/4811
1251
+ [#4823]: https://github.com/tokio-rs/tokio/pull/4823
1252
+ [#4824]: https://github.com/tokio-rs/tokio/pull/4824
1253
+ [#4837]: https://github.com/tokio-rs/tokio/pull/4837
1254
+ [#4840]: https://github.com/tokio-rs/tokio/pull/4840
1255
+ [#4841]: https://github.com/tokio-rs/tokio/pull/4841
1256
+ [#4845]: https://github.com/tokio-rs/tokio/pull/4845
1257
+ [#4848]: https://github.com/tokio-rs/tokio/pull/4848
1258
+ [#4849]: https://github.com/tokio-rs/tokio/pull/4849
1259
+ [#4852]: https://github.com/tokio-rs/tokio/pull/4852
1260
+ [#4858]: https://github.com/tokio-rs/tokio/pull/4858
1261
+ [#4867]: https://github.com/tokio-rs/tokio/pull/4867
1262
+ [#4877]: https://github.com/tokio-rs/tokio/pull/4877
1263
+ [#4882]: https://github.com/tokio-rs/tokio/pull/4882
1264
+ [#4886]: https://github.com/tokio-rs/tokio/pull/4886
1265
+ [#4893]: https://github.com/tokio-rs/tokio/pull/4893
1266
+ [#4894]: https://github.com/tokio-rs/tokio/pull/4894
1267
+ [#4897]: https://github.com/tokio-rs/tokio/pull/4897
1268
+ [#4898]: https://github.com/tokio-rs/tokio/pull/4898
1269
+ [#4901]: https://github.com/tokio-rs/tokio/pull/4901
1270
+ [#4904]: https://github.com/tokio-rs/tokio/pull/4904
1271
+ [#4920]: https://github.com/tokio-rs/tokio/pull/4920
1272
+ [#4924]: https://github.com/tokio-rs/tokio/pull/4924
1273
+ [#4928]: https://github.com/tokio-rs/tokio/pull/4928
1274
+ [#4935]: https://github.com/tokio-rs/tokio/pull/4935
1275
+ [#4936]: https://github.com/tokio-rs/tokio/pull/4936
1276
+ [#4937]: https://github.com/tokio-rs/tokio/pull/4937
1277
+ [#4942]: https://github.com/tokio-rs/tokio/pull/4942
1278
+ [#4945]: https://github.com/tokio-rs/tokio/pull/4945
1279
+ [#4951]: https://github.com/tokio-rs/tokio/pull/4951
1280
+ [#4953]: https://github.com/tokio-rs/tokio/pull/4953
1281
+ [#4956]: https://github.com/tokio-rs/tokio/pull/4956
1282
+ [#4959]: https://github.com/tokio-rs/tokio/pull/4959
1283
+
1284
+ # 1.20.6 (September 22, 2023)
1285
+
1286
+ This is a backport of a change from 1.27.0.
1287
+
1288
+ ### Changed
1289
+
1290
+ - io: use `memchr` from `libc` ([#5960])
1291
+
1292
+ [#5960]: https://github.com/tokio-rs/tokio/pull/5960
1293
+
1294
+ # 1.20.5 (May 28, 2023)
1295
+
1296
+ Forward ports 1.18.6 changes.
1297
+
1298
+ ### Fixed
1299
+
1300
+ - deps: disable default features for mio ([#5728])
1301
+
1302
+ [#5728]: https://github.com/tokio-rs/tokio/pull/5728
1303
+
1304
+ # 1.20.4 (January 17, 2023)
1305
+
1306
+ Forward ports 1.18.5 changes.
1307
+
1308
+ ### Fixed
1309
+
1310
+ - io: fix unsoundness in `ReadHalf::unsplit` ([#5375])
1311
+
1312
+ [#5375]: https://github.com/tokio-rs/tokio/pull/5375
1313
+
1314
+ # 1.20.3 (January 3, 2022)
1315
+
1316
+ This release forward ports changes from 1.18.4.
1317
+
1318
+ ### Fixed
1319
+
1320
+ - net: fix Windows named pipe server builder to maintain option when toggling
1321
+ pipe mode ([#5336]).
1322
+
1323
+ [#5336]: https://github.com/tokio-rs/tokio/pull/5336
1324
+
1325
+ # 1.20.2 (September 27, 2022)
1326
+
1327
+ This release removes the dependency on the `once_cell` crate to restore the MSRV
1328
+ of the 1.20.x LTS release. ([#5048])
1329
+
1330
+ [#5048]: https://github.com/tokio-rs/tokio/pull/5048
1331
+
1332
+ # 1.20.1 (July 25, 2022)
1333
+
1334
+ ### Fixed
1335
+
1336
+ - chore: fix version detection in build script ([#4860])
1337
+
1338
+ [#4860]: https://github.com/tokio-rs/tokio/pull/4860
1339
+
1340
+ # 1.20.0 (July 12, 2022)
1341
+
1342
+ ### Added
1343
+ - tokio: add `track_caller` to public APIs ([#4772], [#4791], [#4793], [#4806], [#4808])
1344
+ - sync: Add `has_changed` method to `watch::Ref` ([#4758])
1345
+
1346
+ ### Changed
1347
+
1348
+ - time: remove `src/time/driver/wheel/stack.rs` ([#4766])
1349
+ - rt: clean up arguments passed to basic scheduler ([#4767])
1350
+ - net: be more specific about winapi features ([#4764])
1351
+ - tokio: use const initialized thread locals where possible ([#4677])
1352
+ - task: various small improvements to LocalKey ([#4795])
1353
+
1354
+ ### Documented
1355
+
1356
+ - fs: warn about performance pitfall ([#4762])
1357
+ - chore: fix spelling ([#4769])
1358
+ - sync: document spurious failures in oneshot ([#4777])
1359
+ - sync: add warning for watch in non-Send futures ([#4741])
1360
+ - chore: fix typo ([#4798])
1361
+
1362
+ ### Unstable
1363
+
1364
+ - joinset: rename `join_one` to `join_next` ([#4755])
1365
+ - rt: unhandled panic config for current thread rt ([#4770])
1366
+
1367
+ [#4677]: https://github.com/tokio-rs/tokio/pull/4677
1368
+ [#4741]: https://github.com/tokio-rs/tokio/pull/4741
1369
+ [#4755]: https://github.com/tokio-rs/tokio/pull/4755
1370
+ [#4758]: https://github.com/tokio-rs/tokio/pull/4758
1371
+ [#4762]: https://github.com/tokio-rs/tokio/pull/4762
1372
+ [#4764]: https://github.com/tokio-rs/tokio/pull/4764
1373
+ [#4766]: https://github.com/tokio-rs/tokio/pull/4766
1374
+ [#4767]: https://github.com/tokio-rs/tokio/pull/4767
1375
+ [#4769]: https://github.com/tokio-rs/tokio/pull/4769
1376
+ [#4770]: https://github.com/tokio-rs/tokio/pull/4770
1377
+ [#4772]: https://github.com/tokio-rs/tokio/pull/4772
1378
+ [#4777]: https://github.com/tokio-rs/tokio/pull/4777
1379
+ [#4791]: https://github.com/tokio-rs/tokio/pull/4791
1380
+ [#4793]: https://github.com/tokio-rs/tokio/pull/4793
1381
+ [#4795]: https://github.com/tokio-rs/tokio/pull/4795
1382
+ [#4798]: https://github.com/tokio-rs/tokio/pull/4798
1383
+ [#4806]: https://github.com/tokio-rs/tokio/pull/4806
1384
+ [#4808]: https://github.com/tokio-rs/tokio/pull/4808
1385
+
1386
+ # 1.19.2 (June 6, 2022)
1387
+
1388
+ This release fixes another bug in `Notified::enable`. ([#4751])
1389
+
1390
+ [#4751]: https://github.com/tokio-rs/tokio/pull/4751
1391
+
1392
+ # 1.19.1 (June 5, 2022)
1393
+
1394
+ This release fixes a bug in `Notified::enable`. ([#4747])
1395
+
1396
+ [#4747]: https://github.com/tokio-rs/tokio/pull/4747
1397
+
1398
+ # 1.19.0 (June 3, 2022)
1399
+
1400
+ ### Added
1401
+
1402
+ - runtime: add `is_finished` method for `JoinHandle` and `AbortHandle` ([#4709])
1403
+ - runtime: make global queue and event polling intervals configurable ([#4671])
1404
+ - sync: add `Notified::enable` ([#4705])
1405
+ - sync: add `watch::Sender::send_if_modified` ([#4591])
1406
+ - sync: add resubscribe method to broadcast::Receiver ([#4607])
1407
+ - net: add `take_error` to `TcpSocket` and `TcpStream` ([#4739])
1408
+
1409
+ ### Changed
1410
+
1411
+ - io: refactor out usage of Weak in the io handle ([#4656])
1412
+
1413
+ ### Fixed
1414
+
1415
+ - macros: avoid starvation in `join!` and `try_join!` ([#4624])
1416
+
1417
+ ### Documented
1418
+
1419
+ - runtime: clarify semantics of tasks outliving `block_on` ([#4729])
1420
+ - time: fix example for `MissedTickBehavior::Burst` ([#4713])
1421
+
1422
+ ### Unstable
1423
+
1424
+ - metrics: correctly update atomics in `IoDriverMetrics` ([#4725])
1425
+ - metrics: fix compilation with unstable, process, and rt, but without net ([#4682])
1426
+ - task: add `#[track_caller]` to `JoinSet`/`JoinMap` ([#4697])
1427
+ - task: add `Builder::{spawn_on, spawn_local_on, spawn_blocking_on}` ([#4683])
1428
+ - task: add `consume_budget` for cooperative scheduling ([#4498])
1429
+ - task: add `join_set::Builder` for configuring `JoinSet` tasks ([#4687])
1430
+ - task: update return value of `JoinSet::join_one` ([#4726])
1431
+
1432
+ [#4498]: https://github.com/tokio-rs/tokio/pull/4498
1433
+ [#4591]: https://github.com/tokio-rs/tokio/pull/4591
1434
+ [#4607]: https://github.com/tokio-rs/tokio/pull/4607
1435
+ [#4624]: https://github.com/tokio-rs/tokio/pull/4624
1436
+ [#4656]: https://github.com/tokio-rs/tokio/pull/4656
1437
+ [#4671]: https://github.com/tokio-rs/tokio/pull/4671
1438
+ [#4682]: https://github.com/tokio-rs/tokio/pull/4682
1439
+ [#4683]: https://github.com/tokio-rs/tokio/pull/4683
1440
+ [#4687]: https://github.com/tokio-rs/tokio/pull/4687
1441
+ [#4697]: https://github.com/tokio-rs/tokio/pull/4697
1442
+ [#4705]: https://github.com/tokio-rs/tokio/pull/4705
1443
+ [#4709]: https://github.com/tokio-rs/tokio/pull/4709
1444
+ [#4713]: https://github.com/tokio-rs/tokio/pull/4713
1445
+ [#4725]: https://github.com/tokio-rs/tokio/pull/4725
1446
+ [#4726]: https://github.com/tokio-rs/tokio/pull/4726
1447
+ [#4729]: https://github.com/tokio-rs/tokio/pull/4729
1448
+ [#4739]: https://github.com/tokio-rs/tokio/pull/4739
1449
+
1450
+ # 1.18.6 (May 28, 2023)
1451
+
1452
+ ### Fixed
1453
+
1454
+ - deps: disable default features for mio ([#5728])
1455
+
1456
+ [#5728]: https://github.com/tokio-rs/tokio/pull/5728
1457
+
1458
+ # 1.18.5 (January 17, 2023)
1459
+
1460
+ ### Fixed
1461
+
1462
+ - io: fix unsoundness in `ReadHalf::unsplit` ([#5375])
1463
+
1464
+ [#5375]: https://github.com/tokio-rs/tokio/pull/5375
1465
+
1466
+ # 1.18.4 (January 3, 2022)
1467
+
1468
+ ### Fixed
1469
+
1470
+ - net: fix Windows named pipe server builder to maintain option when toggling
1471
+ pipe mode ([#5336]).
1472
+
1473
+ [#5336]: https://github.com/tokio-rs/tokio/pull/5336
1474
+
1475
+ # 1.18.3 (September 27, 2022)
1476
+
1477
+ This release removes the dependency on the `once_cell` crate to restore the MSRV
1478
+ of the 1.18.x LTS release. ([#5048])
1479
+
1480
+ [#5048]: https://github.com/tokio-rs/tokio/pull/5048
1481
+
1482
+ # 1.18.2 (May 5, 2022)
1483
+
1484
+ Add missing features for the `winapi` dependency. ([#4663])
1485
+
1486
+ [#4663]: https://github.com/tokio-rs/tokio/pull/4663
1487
+
1488
+ # 1.18.1 (May 2, 2022)
1489
+
1490
+ The 1.18.0 release broke the build for targets without 64-bit atomics when
1491
+ building with `tokio_unstable`. This release fixes that. ([#4649])
1492
+
1493
+ [#4649]: https://github.com/tokio-rs/tokio/pull/4649
1494
+
1495
+ # 1.18.0 (April 27, 2022)
1496
+
1497
+ This release adds a number of new APIs in `tokio::net`, `tokio::signal`, and
1498
+ `tokio::sync`. In addition, it adds new unstable APIs to `tokio::task` (`Id`s
1499
+ for uniquely identifying a task, and `AbortHandle` for remotely cancelling a
1500
+ task), as well as a number of bugfixes.
1501
+
1502
+ ### Fixed
1503
+
1504
+ - blocking: add missing `#[track_caller]` for `spawn_blocking` ([#4616])
1505
+ - macros: fix `select` macro to process 64 branches ([#4519])
1506
+ - net: fix `try_io` methods not calling Mio's `try_io` internally ([#4582])
1507
+ - runtime: recover when OS fails to spawn a new thread ([#4485])
1508
+
1509
+ ### Added
1510
+
1511
+ - net: add `UdpSocket::peer_addr` ([#4611])
1512
+ - net: add `try_read_buf` method for named pipes ([#4626])
1513
+ - signal: add `SignalKind` `Hash`/`Eq` impls and `c_int` conversion ([#4540])
1514
+ - signal: add support for signals up to `SIGRTMAX` ([#4555])
1515
+ - sync: add `watch::Sender::send_modify` method ([#4310])
1516
+ - sync: add `broadcast::Receiver::len` method ([#4542])
1517
+ - sync: add `watch::Receiver::same_channel` method ([#4581])
1518
+ - sync: implement `Clone` for `RecvError` types ([#4560])
1519
+
1520
+ ### Changed
1521
+
1522
+ - update `mio` to 0.8.1 ([#4582])
1523
+ - macros: rename `tokio::select!`'s internal `util` module ([#4543])
1524
+ - runtime: use `Vec::with_capacity` when building runtime ([#4553])
1525
+
1526
+ ### Documented
1527
+
1528
+ - improve docs for `tokio_unstable` ([#4524])
1529
+ - runtime: include more documentation for thread_pool/worker ([#4511])
1530
+ - runtime: update `Handle::current`'s docs to mention `EnterGuard` ([#4567])
1531
+ - time: clarify platform specific timer resolution ([#4474])
1532
+ - signal: document that `Signal::recv` is cancel-safe ([#4634])
1533
+ - sync: `UnboundedReceiver` close docs ([#4548])
1534
+
1535
+ ### Unstable
1536
+
1537
+ The following changes only apply when building with `--cfg tokio_unstable`:
1538
+
1539
+ - task: add `task::Id` type ([#4630])
1540
+ - task: add `AbortHandle` type for cancelling tasks in a `JoinSet` ([#4530],
1541
+ [#4640])
1542
+ - task: fix missing `doc(cfg(...))` attributes for `JoinSet` ([#4531])
1543
+ - task: fix broken link in `AbortHandle` RustDoc ([#4545])
1544
+ - metrics: add initial IO driver metrics ([#4507])
1545
+
1546
+
1547
+ [#4616]: https://github.com/tokio-rs/tokio/pull/4616
1548
+ [#4519]: https://github.com/tokio-rs/tokio/pull/4519
1549
+ [#4582]: https://github.com/tokio-rs/tokio/pull/4582
1550
+ [#4485]: https://github.com/tokio-rs/tokio/pull/4485
1551
+ [#4613]: https://github.com/tokio-rs/tokio/pull/4613
1552
+ [#4611]: https://github.com/tokio-rs/tokio/pull/4611
1553
+ [#4626]: https://github.com/tokio-rs/tokio/pull/4626
1554
+ [#4540]: https://github.com/tokio-rs/tokio/pull/4540
1555
+ [#4555]: https://github.com/tokio-rs/tokio/pull/4555
1556
+ [#4310]: https://github.com/tokio-rs/tokio/pull/4310
1557
+ [#4542]: https://github.com/tokio-rs/tokio/pull/4542
1558
+ [#4581]: https://github.com/tokio-rs/tokio/pull/4581
1559
+ [#4560]: https://github.com/tokio-rs/tokio/pull/4560
1560
+ [#4631]: https://github.com/tokio-rs/tokio/pull/4631
1561
+ [#4582]: https://github.com/tokio-rs/tokio/pull/4582
1562
+ [#4543]: https://github.com/tokio-rs/tokio/pull/4543
1563
+ [#4553]: https://github.com/tokio-rs/tokio/pull/4553
1564
+ [#4524]: https://github.com/tokio-rs/tokio/pull/4524
1565
+ [#4511]: https://github.com/tokio-rs/tokio/pull/4511
1566
+ [#4567]: https://github.com/tokio-rs/tokio/pull/4567
1567
+ [#4474]: https://github.com/tokio-rs/tokio/pull/4474
1568
+ [#4634]: https://github.com/tokio-rs/tokio/pull/4634
1569
+ [#4548]: https://github.com/tokio-rs/tokio/pull/4548
1570
+ [#4630]: https://github.com/tokio-rs/tokio/pull/4630
1571
+ [#4530]: https://github.com/tokio-rs/tokio/pull/4530
1572
+ [#4640]: https://github.com/tokio-rs/tokio/pull/4640
1573
+ [#4531]: https://github.com/tokio-rs/tokio/pull/4531
1574
+ [#4545]: https://github.com/tokio-rs/tokio/pull/4545
1575
+ [#4507]: https://github.com/tokio-rs/tokio/pull/4507
1576
+
1577
+ # 1.17.0 (February 16, 2022)
1578
+
1579
+ This release updates the minimum supported Rust version (MSRV) to 1.49, the
1580
+ `mio` dependency to v0.8, and the (optional) `parking_lot` dependency to v0.12.
1581
+ Additionally, it contains several bug fixes, as well as internal refactoring and
1582
+ performance improvements.
1583
+
1584
+ ### Fixed
1585
+
1586
+ - time: prevent panicking in `sleep` with large durations ([#4495])
1587
+ - time: eliminate potential panics in `Instant` arithmetic on platforms where
1588
+ `Instant::now` is not monotonic ([#4461])
1589
+ - io: fix `DuplexStream` not participating in cooperative yielding ([#4478])
1590
+ - rt: fix potential double panic when dropping a `JoinHandle` ([#4430])
1591
+
1592
+ ### Changed
1593
+
1594
+ - update minimum supported Rust version to 1.49 ([#4457])
1595
+ - update `parking_lot` dependency to v0.12.0 ([#4459])
1596
+ - update `mio` dependency to v0.8 ([#4449])
1597
+ - rt: remove an unnecessary lock in the blocking pool ([#4436])
1598
+ - rt: remove an unnecessary enum in the basic scheduler ([#4462])
1599
+ - time: use bit manipulation instead of modulo to improve performance ([#4480])
1600
+ - net: use `std::future::Ready` instead of our own `Ready` future ([#4271])
1601
+ - replace deprecated `atomic::spin_loop_hint` with `hint::spin_loop` ([#4491])
1602
+ - fix miri failures in intrusive linked lists ([#4397])
1603
+
1604
+ ### Documented
1605
+
1606
+ - io: add an example for `tokio::process::ChildStdin` ([#4479])
1607
+
1608
+ ### Unstable
1609
+
1610
+ The following changes only apply when building with `--cfg tokio_unstable`:
1611
+
1612
+ - task: fix missing location information in `tracing` spans generated by
1613
+ `spawn_local` ([#4483])
1614
+ - task: add `JoinSet` for managing sets of tasks ([#4335])
1615
+ - metrics: fix compilation error on MIPS ([#4475])
1616
+ - metrics: fix compilation error on arm32v7 ([#4453])
1617
+
1618
+ [#4495]: https://github.com/tokio-rs/tokio/pull/4495
1619
+ [#4461]: https://github.com/tokio-rs/tokio/pull/4461
1620
+ [#4478]: https://github.com/tokio-rs/tokio/pull/4478
1621
+ [#4430]: https://github.com/tokio-rs/tokio/pull/4430
1622
+ [#4457]: https://github.com/tokio-rs/tokio/pull/4457
1623
+ [#4459]: https://github.com/tokio-rs/tokio/pull/4459
1624
+ [#4449]: https://github.com/tokio-rs/tokio/pull/4449
1625
+ [#4462]: https://github.com/tokio-rs/tokio/pull/4462
1626
+ [#4436]: https://github.com/tokio-rs/tokio/pull/4436
1627
+ [#4480]: https://github.com/tokio-rs/tokio/pull/4480
1628
+ [#4271]: https://github.com/tokio-rs/tokio/pull/4271
1629
+ [#4491]: https://github.com/tokio-rs/tokio/pull/4491
1630
+ [#4397]: https://github.com/tokio-rs/tokio/pull/4397
1631
+ [#4479]: https://github.com/tokio-rs/tokio/pull/4479
1632
+ [#4483]: https://github.com/tokio-rs/tokio/pull/4483
1633
+ [#4335]: https://github.com/tokio-rs/tokio/pull/4335
1634
+ [#4475]: https://github.com/tokio-rs/tokio/pull/4475
1635
+ [#4453]: https://github.com/tokio-rs/tokio/pull/4453
1636
+
1637
+ # 1.16.1 (January 28, 2022)
1638
+
1639
+ This release fixes a bug in [#4428] with the change [#4437].
1640
+
1641
+ [#4428]: https://github.com/tokio-rs/tokio/pull/4428
1642
+ [#4437]: https://github.com/tokio-rs/tokio/pull/4437
1643
+
1644
+ # 1.16.0 (January 27, 2022)
1645
+
1646
+ Fixes a soundness bug in `io::Take` ([#4428]). The unsoundness is exposed when
1647
+ leaking memory in the given `AsyncRead` implementation and then overwriting the
1648
+ supplied buffer:
1649
+
1650
+ ```rust
1651
+ impl AsyncRead for Buggy {
1652
+ fn poll_read(
1653
+ self: Pin<&mut Self>,
1654
+ cx: &mut Context<'_>,
1655
+ buf: &mut ReadBuf<'_>
1656
+ ) -> Poll<Result<()>> {
1657
+ let new_buf = vec![0; 5].leak();
1658
+ *buf = ReadBuf::new(new_buf);
1659
+ buf.put_slice(b"hello");
1660
+ Poll::Ready(Ok(()))
1661
+ }
1662
+ }
1663
+ ```
1664
+
1665
+ Also, this release includes improvements to the multi-threaded scheduler that
1666
+ can increase throughput by up to 20% in some cases ([#4383]).
1667
+
1668
+ ### Fixed
1669
+
1670
+ - io: **soundness** don't expose uninitialized memory when using `io::Take` in edge case ([#4428])
1671
+ - fs: ensure `File::write` results in a `write` syscall when the runtime shuts down ([#4316])
1672
+ - process: drop pipe after child exits in `wait_with_output` ([#4315])
1673
+ - rt: improve error message when spawning a thread fails ([#4398])
1674
+ - rt: reduce false-positive thread wakups in the multi-threaded scheduler ([#4383])
1675
+ - sync: don't inherit `Send` from `parking_lot::*Guard` ([#4359])
1676
+
1677
+ ### Added
1678
+
1679
+ - net: `TcpSocket::linger()` and `set_linger()` ([#4324])
1680
+ - net: impl `UnwindSafe` for socket types ([#4384])
1681
+ - rt: impl `UnwindSafe` for `JoinHandle` ([#4418])
1682
+ - sync: `watch::Receiver::has_changed()` ([#4342])
1683
+ - sync: `oneshot::Receiver::blocking_recv()` ([#4334])
1684
+ - sync: `RwLock` blocking operations ([#4425])
1685
+
1686
+ ### Unstable
1687
+
1688
+ The following changes only apply when building with `--cfg tokio_unstable`
1689
+
1690
+ - rt: **breaking change** overhaul runtime metrics API ([#4373])
1691
+
1692
+ [#4428]: https://github.com/tokio-rs/tokio/pull/4428
1693
+ [#4316]: https://github.com/tokio-rs/tokio/pull/4316
1694
+ [#4315]: https://github.com/tokio-rs/tokio/pull/4315
1695
+ [#4398]: https://github.com/tokio-rs/tokio/pull/4398
1696
+ [#4383]: https://github.com/tokio-rs/tokio/pull/4383
1697
+ [#4359]: https://github.com/tokio-rs/tokio/pull/4359
1698
+ [#4324]: https://github.com/tokio-rs/tokio/pull/4324
1699
+ [#4384]: https://github.com/tokio-rs/tokio/pull/4384
1700
+ [#4418]: https://github.com/tokio-rs/tokio/pull/4418
1701
+ [#4342]: https://github.com/tokio-rs/tokio/pull/4342
1702
+ [#4334]: https://github.com/tokio-rs/tokio/pull/4334
1703
+ [#4425]: https://github.com/tokio-rs/tokio/pull/4425
1704
+ [#4373]: https://github.com/tokio-rs/tokio/pull/4373
1705
+
1706
+ # 1.15.0 (December 15, 2021)
1707
+
1708
+ ### Fixed
1709
+
1710
+ - io: add cooperative yielding support to `io::empty()` ([#4300])
1711
+ - time: make timeout robust against budget-depleting tasks ([#4314])
1712
+
1713
+ ### Changed
1714
+
1715
+ - update minimum supported Rust version to 1.46.
1716
+
1717
+ ### Added
1718
+
1719
+ - time: add `Interval::reset()` ([#4248])
1720
+ - io: add explicit lifetimes to `AsyncFdReadyGuard` ([#4267])
1721
+ - process: add `Command::as_std()` ([#4295])
1722
+
1723
+ ### Added (unstable)
1724
+
1725
+ - tracing: instrument `tokio::sync` types ([#4302])
1726
+
1727
+ [#4302]: https://github.com/tokio-rs/tokio/pull/4302
1728
+ [#4300]: https://github.com/tokio-rs/tokio/pull/4300
1729
+ [#4295]: https://github.com/tokio-rs/tokio/pull/4295
1730
+ [#4267]: https://github.com/tokio-rs/tokio/pull/4267
1731
+ [#4248]: https://github.com/tokio-rs/tokio/pull/4248
1732
+ [#4314]: https://github.com/tokio-rs/tokio/pull/4314
1733
+
1734
+ # 1.14.0 (November 15, 2021)
1735
+
1736
+ ### Fixed
1737
+
1738
+ - macros: fix compiler errors when using `mut` patterns in `select!` ([#4211])
1739
+ - sync: fix a data race between `oneshot::Sender::send` and awaiting a
1740
+ `oneshot::Receiver` when the oneshot has been closed ([#4226])
1741
+ - sync: make `AtomicWaker` panic safe ([#3689])
1742
+ - runtime: fix basic scheduler dropping tasks outside a runtime context
1743
+ ([#4213])
1744
+
1745
+ ### Added
1746
+
1747
+ - stats: add `RuntimeStats::busy_duration_total` ([#4179], [#4223])
1748
+
1749
+ ### Changed
1750
+
1751
+ - io: updated `copy` buffer size to match `std::io::copy` ([#4209])
1752
+
1753
+ ### Documented
1754
+
1755
+ - io: rename buffer to file in doc-test ([#4230])
1756
+ - sync: fix Notify example ([#4212])
1757
+
1758
+ [#4211]: https://github.com/tokio-rs/tokio/pull/4211
1759
+ [#4226]: https://github.com/tokio-rs/tokio/pull/4226
1760
+ [#3689]: https://github.com/tokio-rs/tokio/pull/3689
1761
+ [#4213]: https://github.com/tokio-rs/tokio/pull/4213
1762
+ [#4179]: https://github.com/tokio-rs/tokio/pull/4179
1763
+ [#4223]: https://github.com/tokio-rs/tokio/pull/4223
1764
+ [#4209]: https://github.com/tokio-rs/tokio/pull/4209
1765
+ [#4230]: https://github.com/tokio-rs/tokio/pull/4230
1766
+ [#4212]: https://github.com/tokio-rs/tokio/pull/4212
1767
+
1768
+ # 1.13.1 (November 15, 2021)
1769
+
1770
+ ### Fixed
1771
+
1772
+ - sync: fix a data race between `oneshot::Sender::send` and awaiting a
1773
+ `oneshot::Receiver` when the oneshot has been closed ([#4226])
1774
+
1775
+ [#4226]: https://github.com/tokio-rs/tokio/pull/4226
1776
+
1777
+ # 1.13.0 (October 29, 2021)
1778
+
1779
+ ### Fixed
1780
+
1781
+ - sync: fix `Notify` to clone the waker before locking its waiter list ([#4129])
1782
+ - tokio: add riscv32 to non atomic64 architectures ([#4185])
1783
+
1784
+ ### Added
1785
+
1786
+ - net: add `poll_{recv,send}_ready` methods to `udp` and `uds_datagram` ([#4131])
1787
+ - net: add `try_*`, `readable`, `writable`, `ready`, and `peer_addr` methods to split halves ([#4120])
1788
+ - sync: add `blocking_lock` to `Mutex` ([#4130])
1789
+ - sync: add `watch::Sender::send_replace` ([#3962], [#4195])
1790
+ - sync: expand `Debug` for `Mutex<T>` impl to unsized `T` ([#4134])
1791
+ - tracing: instrument time::Sleep ([#4072])
1792
+ - tracing: use structured location fields for spawned tasks ([#4128])
1793
+
1794
+ ### Changed
1795
+
1796
+ - io: add assert in `copy_bidirectional` that `poll_write` is sensible ([#4125])
1797
+ - macros: use qualified syntax when polling in `select!` ([#4192])
1798
+ - runtime: handle `block_on` wakeups better ([#4157])
1799
+ - task: allocate callback on heap immediately in debug mode ([#4203])
1800
+ - tokio: assert platform-minimum requirements at build time ([#3797])
1801
+
1802
+ ### Documented
1803
+
1804
+ - docs: conversion of doc comments to indicative mood ([#4174])
1805
+ - docs: add returning on the first error example for `try_join!` ([#4133])
1806
+ - docs: fixing broken links in `tokio/src/lib.rs` ([#4132])
1807
+ - signal: add example with background listener ([#4171])
1808
+ - sync: add more oneshot examples ([#4153])
1809
+ - time: document `Interval::tick` cancel safety ([#4152])
1810
+
1811
+ [#3797]: https://github.com/tokio-rs/tokio/pull/3797
1812
+ [#3962]: https://github.com/tokio-rs/tokio/pull/3962
1813
+ [#4072]: https://github.com/tokio-rs/tokio/pull/4072
1814
+ [#4120]: https://github.com/tokio-rs/tokio/pull/4120
1815
+ [#4125]: https://github.com/tokio-rs/tokio/pull/4125
1816
+ [#4128]: https://github.com/tokio-rs/tokio/pull/4128
1817
+ [#4129]: https://github.com/tokio-rs/tokio/pull/4129
1818
+ [#4130]: https://github.com/tokio-rs/tokio/pull/4130
1819
+ [#4131]: https://github.com/tokio-rs/tokio/pull/4131
1820
+ [#4132]: https://github.com/tokio-rs/tokio/pull/4132
1821
+ [#4133]: https://github.com/tokio-rs/tokio/pull/4133
1822
+ [#4134]: https://github.com/tokio-rs/tokio/pull/4134
1823
+ [#4152]: https://github.com/tokio-rs/tokio/pull/4152
1824
+ [#4153]: https://github.com/tokio-rs/tokio/pull/4153
1825
+ [#4157]: https://github.com/tokio-rs/tokio/pull/4157
1826
+ [#4171]: https://github.com/tokio-rs/tokio/pull/4171
1827
+ [#4174]: https://github.com/tokio-rs/tokio/pull/4174
1828
+ [#4185]: https://github.com/tokio-rs/tokio/pull/4185
1829
+ [#4192]: https://github.com/tokio-rs/tokio/pull/4192
1830
+ [#4195]: https://github.com/tokio-rs/tokio/pull/4195
1831
+ [#4203]: https://github.com/tokio-rs/tokio/pull/4203
1832
+
1833
+ # 1.12.0 (September 21, 2021)
1834
+
1835
+ ### Fixed
1836
+
1837
+ - mpsc: ensure `try_reserve` error is consistent with `try_send` ([#4119])
1838
+ - mpsc: use `spin_loop_hint` instead of `yield_now` ([#4115])
1839
+ - sync: make `SendError` field public ([#4097])
1840
+
1841
+ ### Added
1842
+
1843
+ - io: add POSIX AIO on FreeBSD ([#4054])
1844
+ - io: add convenience method `AsyncSeekExt::rewind` ([#4107])
1845
+ - runtime: add tracing span for `block_on` futures ([#4094])
1846
+ - runtime: callback when a worker parks and unparks ([#4070])
1847
+ - sync: implement `try_recv` for mpsc channels ([#4113])
1848
+
1849
+ ### Documented
1850
+
1851
+ - docs: clarify CPU-bound tasks on Tokio ([#4105])
1852
+ - mpsc: document spurious failures on `poll_recv` ([#4117])
1853
+ - mpsc: document that `PollSender` impls `Sink` ([#4110])
1854
+ - task: document non-guarantees of `yield_now` ([#4091])
1855
+ - time: document paused time details better ([#4061], [#4103])
1856
+
1857
+ [#4027]: https://github.com/tokio-rs/tokio/pull/4027
1858
+ [#4054]: https://github.com/tokio-rs/tokio/pull/4054
1859
+ [#4061]: https://github.com/tokio-rs/tokio/pull/4061
1860
+ [#4070]: https://github.com/tokio-rs/tokio/pull/4070
1861
+ [#4091]: https://github.com/tokio-rs/tokio/pull/4091
1862
+ [#4094]: https://github.com/tokio-rs/tokio/pull/4094
1863
+ [#4097]: https://github.com/tokio-rs/tokio/pull/4097
1864
+ [#4103]: https://github.com/tokio-rs/tokio/pull/4103
1865
+ [#4105]: https://github.com/tokio-rs/tokio/pull/4105
1866
+ [#4107]: https://github.com/tokio-rs/tokio/pull/4107
1867
+ [#4110]: https://github.com/tokio-rs/tokio/pull/4110
1868
+ [#4113]: https://github.com/tokio-rs/tokio/pull/4113
1869
+ [#4115]: https://github.com/tokio-rs/tokio/pull/4115
1870
+ [#4117]: https://github.com/tokio-rs/tokio/pull/4117
1871
+ [#4119]: https://github.com/tokio-rs/tokio/pull/4119
1872
+
1873
+ # 1.11.0 (August 31, 2021)
1874
+
1875
+ ### Fixed
1876
+
1877
+ - time: don't panic when Instant is not monotonic ([#4044])
1878
+ - io: fix panic in `fill_buf` by not calling `poll_fill_buf` twice ([#4084])
1879
+
1880
+ ### Added
1881
+
1882
+ - watch: add `watch::Sender::subscribe` ([#3800])
1883
+ - process: add `from_std` to `ChildStd*` ([#4045])
1884
+ - stats: initial work on runtime stats ([#4043])
1885
+
1886
+ ### Changed
1887
+
1888
+ - tracing: change span naming to new console convention ([#4042])
1889
+ - io: speed-up waking by using uninitialized array ([#4055], [#4071], [#4075])
1890
+
1891
+ ### Documented
1892
+
1893
+ - time: make Sleep examples easier to find ([#4040])
1894
+
1895
+ [#3800]: https://github.com/tokio-rs/tokio/pull/3800
1896
+ [#4040]: https://github.com/tokio-rs/tokio/pull/4040
1897
+ [#4042]: https://github.com/tokio-rs/tokio/pull/4042
1898
+ [#4043]: https://github.com/tokio-rs/tokio/pull/4043
1899
+ [#4044]: https://github.com/tokio-rs/tokio/pull/4044
1900
+ [#4045]: https://github.com/tokio-rs/tokio/pull/4045
1901
+ [#4055]: https://github.com/tokio-rs/tokio/pull/4055
1902
+ [#4071]: https://github.com/tokio-rs/tokio/pull/4071
1903
+ [#4075]: https://github.com/tokio-rs/tokio/pull/4075
1904
+ [#4084]: https://github.com/tokio-rs/tokio/pull/4084
1905
+
1906
+ # 1.10.1 (August 24, 2021)
1907
+
1908
+ ### Fixed
1909
+
1910
+ - runtime: fix leak in UnownedTask ([#4063])
1911
+
1912
+ [#4063]: https://github.com/tokio-rs/tokio/pull/4063
1913
+
1914
+ # 1.10.0 (August 12, 2021)
1915
+
1916
+ ### Added
1917
+
1918
+ - io: add `(read|write)_f(32|64)[_le]` methods ([#4022])
1919
+ - io: add `fill_buf` and `consume` to `AsyncBufReadExt` ([#3991])
1920
+ - process: add `Child::raw_handle()` on windows ([#3998])
1921
+
1922
+ ### Fixed
1923
+
1924
+ - doc: fix non-doc builds with `--cfg docsrs` ([#4020])
1925
+ - io: flush eagerly in `io::copy` ([#4001])
1926
+ - runtime: a debug assert was sometimes triggered during shutdown ([#4005])
1927
+ - sync: use `spin_loop_hint` instead of `yield_now` in mpsc ([#4037])
1928
+ - tokio: the test-util feature depends on rt, sync, and time ([#4036])
1929
+
1930
+ ### Changes
1931
+
1932
+ - runtime: reorganize parts of the runtime ([#3979], [#4005])
1933
+ - signal: make windows docs for signal module show up on unix builds ([#3770])
1934
+ - task: quickly send task to heap on debug mode ([#4009])
1935
+
1936
+ ### Documented
1937
+
1938
+ - io: document cancellation safety of `AsyncBufReadExt` ([#3997])
1939
+ - sync: document when `watch::send` fails ([#4021])
1940
+
1941
+ [#3770]: https://github.com/tokio-rs/tokio/pull/3770
1942
+ [#3979]: https://github.com/tokio-rs/tokio/pull/3979
1943
+ [#3991]: https://github.com/tokio-rs/tokio/pull/3991
1944
+ [#3997]: https://github.com/tokio-rs/tokio/pull/3997
1945
+ [#3998]: https://github.com/tokio-rs/tokio/pull/3998
1946
+ [#4001]: https://github.com/tokio-rs/tokio/pull/4001
1947
+ [#4005]: https://github.com/tokio-rs/tokio/pull/4005
1948
+ [#4009]: https://github.com/tokio-rs/tokio/pull/4009
1949
+ [#4020]: https://github.com/tokio-rs/tokio/pull/4020
1950
+ [#4021]: https://github.com/tokio-rs/tokio/pull/4021
1951
+ [#4022]: https://github.com/tokio-rs/tokio/pull/4022
1952
+ [#4036]: https://github.com/tokio-rs/tokio/pull/4036
1953
+ [#4037]: https://github.com/tokio-rs/tokio/pull/4037
1954
+
1955
+ # 1.9.0 (July 22, 2021)
1956
+
1957
+ ### Added
1958
+
1959
+ - net: allow customized I/O operations for `TcpStream` ([#3888])
1960
+ - sync: add getter for the mutex from a guard ([#3928])
1961
+ - task: expose nameable future for `TaskLocal::scope` ([#3273])
1962
+
1963
+ ### Fixed
1964
+
1965
+ - Fix leak if output of future panics on drop ([#3967])
1966
+ - Fix leak in `LocalSet` ([#3978])
1967
+
1968
+ ### Changes
1969
+
1970
+ - runtime: reorganize parts of the runtime ([#3909], [#3939], [#3950], [#3955], [#3980])
1971
+ - sync: clean up `OnceCell` ([#3945])
1972
+ - task: remove mutex in `JoinError` ([#3959])
1973
+
1974
+ [#3273]: https://github.com/tokio-rs/tokio/pull/3273
1975
+ [#3888]: https://github.com/tokio-rs/tokio/pull/3888
1976
+ [#3909]: https://github.com/tokio-rs/tokio/pull/3909
1977
+ [#3928]: https://github.com/tokio-rs/tokio/pull/3928
1978
+ [#3934]: https://github.com/tokio-rs/tokio/pull/3934
1979
+ [#3939]: https://github.com/tokio-rs/tokio/pull/3939
1980
+ [#3945]: https://github.com/tokio-rs/tokio/pull/3945
1981
+ [#3950]: https://github.com/tokio-rs/tokio/pull/3950
1982
+ [#3955]: https://github.com/tokio-rs/tokio/pull/3955
1983
+ [#3959]: https://github.com/tokio-rs/tokio/pull/3959
1984
+ [#3967]: https://github.com/tokio-rs/tokio/pull/3967
1985
+ [#3978]: https://github.com/tokio-rs/tokio/pull/3978
1986
+ [#3980]: https://github.com/tokio-rs/tokio/pull/3980
1987
+
1988
+ # 1.8.3 (July 26, 2021)
1989
+
1990
+ This release backports two fixes from 1.9.0
1991
+
1992
+ ### Fixed
1993
+
1994
+ - Fix leak if output of future panics on drop ([#3967])
1995
+ - Fix leak in `LocalSet` ([#3978])
1996
+
1997
+ [#3967]: https://github.com/tokio-rs/tokio/pull/3967
1998
+ [#3978]: https://github.com/tokio-rs/tokio/pull/3978
1999
+
2000
+ # 1.8.2 (July 19, 2021)
2001
+
2002
+ Fixes a missed edge case from 1.8.1.
2003
+
2004
+ ### Fixed
2005
+
2006
+ - runtime: drop canceled future on next poll ([#3965])
2007
+
2008
+ [#3965]: https://github.com/tokio-rs/tokio/pull/3965
2009
+
2010
+ # 1.8.1 (July 6, 2021)
2011
+
2012
+ Forward ports 1.5.1 fixes.
2013
+
2014
+ ### Fixed
2015
+
2016
+ - runtime: remotely abort tasks on `JoinHandle::abort` ([#3934])
2017
+
2018
+ [#3934]: https://github.com/tokio-rs/tokio/pull/3934
2019
+
2020
+ # 1.8.0 (July 2, 2021)
2021
+
2022
+ ### Added
2023
+
2024
+ - io: add `get_{ref,mut}` methods to `AsyncFdReadyGuard` and `AsyncFdReadyMutGuard` ([#3807])
2025
+ - io: efficient implementation of vectored writes for `BufWriter` ([#3163])
2026
+ - net: add ready/try methods to `NamedPipe{Client,Server}` ([#3866], [#3899])
2027
+ - sync: add `watch::Receiver::borrow_and_update` ([#3813])
2028
+ - sync: implement `From<T>` for `OnceCell<T>` ([#3877])
2029
+ - time: allow users to specify Interval behavior when delayed ([#3721])
2030
+
2031
+ ### Added (unstable)
2032
+
2033
+ - rt: add `tokio::task::Builder` ([#3881])
2034
+
2035
+ ### Fixed
2036
+
2037
+ - net: handle HUP event with `UnixStream` ([#3898])
2038
+
2039
+ ### Documented
2040
+
2041
+ - doc: document cancellation safety ([#3900])
2042
+ - time: add wait alias to sleep ([#3897])
2043
+ - time: document auto-advancing behavior of runtime ([#3763])
2044
+
2045
+ [#3163]: https://github.com/tokio-rs/tokio/pull/3163
2046
+ [#3721]: https://github.com/tokio-rs/tokio/pull/3721
2047
+ [#3763]: https://github.com/tokio-rs/tokio/pull/3763
2048
+ [#3807]: https://github.com/tokio-rs/tokio/pull/3807
2049
+ [#3813]: https://github.com/tokio-rs/tokio/pull/3813
2050
+ [#3866]: https://github.com/tokio-rs/tokio/pull/3866
2051
+ [#3877]: https://github.com/tokio-rs/tokio/pull/3877
2052
+ [#3881]: https://github.com/tokio-rs/tokio/pull/3881
2053
+ [#3897]: https://github.com/tokio-rs/tokio/pull/3897
2054
+ [#3898]: https://github.com/tokio-rs/tokio/pull/3898
2055
+ [#3899]: https://github.com/tokio-rs/tokio/pull/3899
2056
+ [#3900]: https://github.com/tokio-rs/tokio/pull/3900
2057
+
2058
+ # 1.7.2 (July 6, 2021)
2059
+
2060
+ Forward ports 1.5.1 fixes.
2061
+
2062
+ ### Fixed
2063
+
2064
+ - runtime: remotely abort tasks on `JoinHandle::abort` ([#3934])
2065
+
2066
+ [#3934]: https://github.com/tokio-rs/tokio/pull/3934
2067
+
2068
+ # 1.7.1 (June 18, 2021)
2069
+
2070
+ ### Fixed
2071
+
2072
+ - runtime: fix early task shutdown during runtime shutdown ([#3870])
2073
+
2074
+ [#3870]: https://github.com/tokio-rs/tokio/pull/3870
2075
+
2076
+ # 1.7.0 (June 15, 2021)
2077
+
2078
+ ### Added
2079
+
2080
+ - net: add named pipes on windows ([#3760])
2081
+ - net: add `TcpSocket` from `std::net::TcpStream` conversion ([#3838])
2082
+ - sync: add `receiver_count` to `watch::Sender` ([#3729])
2083
+ - sync: export `sync::notify::Notified` future publicly ([#3840])
2084
+ - tracing: instrument task wakers ([#3836])
2085
+
2086
+ ### Fixed
2087
+
2088
+ - macros: suppress `clippy::default_numeric_fallback` lint in generated code ([#3831])
2089
+ - runtime: immediately drop new tasks when runtime is shut down ([#3752])
2090
+ - sync: deprecate unused `mpsc::RecvError` type ([#3833])
2091
+
2092
+ ### Documented
2093
+
2094
+ - io: clarify EOF condition for `AsyncReadExt::read_buf` ([#3850])
2095
+ - io: clarify limits on return values of `AsyncWrite::poll_write` ([#3820])
2096
+ - sync: add examples to Semaphore ([#3808])
2097
+
2098
+ [#3729]: https://github.com/tokio-rs/tokio/pull/3729
2099
+ [#3752]: https://github.com/tokio-rs/tokio/pull/3752
2100
+ [#3760]: https://github.com/tokio-rs/tokio/pull/3760
2101
+ [#3808]: https://github.com/tokio-rs/tokio/pull/3808
2102
+ [#3820]: https://github.com/tokio-rs/tokio/pull/3820
2103
+ [#3831]: https://github.com/tokio-rs/tokio/pull/3831
2104
+ [#3833]: https://github.com/tokio-rs/tokio/pull/3833
2105
+ [#3836]: https://github.com/tokio-rs/tokio/pull/3836
2106
+ [#3838]: https://github.com/tokio-rs/tokio/pull/3838
2107
+ [#3840]: https://github.com/tokio-rs/tokio/pull/3840
2108
+ [#3850]: https://github.com/tokio-rs/tokio/pull/3850
2109
+
2110
+ # 1.6.3 (July 6, 2021)
2111
+
2112
+ Forward ports 1.5.1 fixes.
2113
+
2114
+ ### Fixed
2115
+
2116
+ - runtime: remotely abort tasks on `JoinHandle::abort` ([#3934])
2117
+
2118
+ [#3934]: https://github.com/tokio-rs/tokio/pull/3934
2119
+
2120
+ # 1.6.2 (June 14, 2021)
2121
+
2122
+ ### Fixes
2123
+
2124
+ - test: sub-ms `time:advance` regression introduced in 1.6 ([#3852])
2125
+
2126
+ [#3852]: https://github.com/tokio-rs/tokio/pull/3852
2127
+
2128
+ # 1.6.1 (May 28, 2021)
2129
+
2130
+ This release reverts [#3518] because it doesn't work on some kernels due to
2131
+ a kernel bug. ([#3803])
2132
+
2133
+ [#3518]: https://github.com/tokio-rs/tokio/issues/3518
2134
+ [#3803]: https://github.com/tokio-rs/tokio/issues/3803
2135
+
2136
+ # 1.6.0 (May 14, 2021)
2137
+
2138
+ ### Added
2139
+
2140
+ - fs: try doing a non-blocking read before punting to the threadpool ([#3518])
2141
+ - io: add `write_all_buf` to `AsyncWriteExt` ([#3737])
2142
+ - io: implement `AsyncSeek` for `BufReader`, `BufWriter`, and `BufStream` ([#3491])
2143
+ - net: support non-blocking vectored I/O ([#3761])
2144
+ - sync: add `mpsc::Sender::{reserve_owned, try_reserve_owned}` ([#3704])
2145
+ - sync: add a `MutexGuard::map` method that returns a `MappedMutexGuard` ([#2472])
2146
+ - time: add getter for Interval's period ([#3705])
2147
+
2148
+ ### Fixed
2149
+
2150
+ - io: wake pending writers on `DuplexStream` close ([#3756])
2151
+ - process: avoid redundant effort to reap orphan processes ([#3743])
2152
+ - signal: use `std::os::raw::c_int` instead of `libc::c_int` on public API ([#3774])
2153
+ - sync: preserve permit state in `notify_waiters` ([#3660])
2154
+ - task: update `JoinHandle` panic message ([#3727])
2155
+ - time: prevent `time::advance` from going too far ([#3712])
2156
+
2157
+ ### Documented
2158
+
2159
+ - net: hide `net::unix::datagram` module from docs ([#3775])
2160
+ - process: updated example ([#3748])
2161
+ - sync: `Barrier` doc should use task, not thread ([#3780])
2162
+ - task: update documentation on `block_in_place` ([#3753])
2163
+
2164
+ [#2472]: https://github.com/tokio-rs/tokio/pull/2472
2165
+ [#3491]: https://github.com/tokio-rs/tokio/pull/3491
2166
+ [#3518]: https://github.com/tokio-rs/tokio/pull/3518
2167
+ [#3660]: https://github.com/tokio-rs/tokio/pull/3660
2168
+ [#3704]: https://github.com/tokio-rs/tokio/pull/3704
2169
+ [#3705]: https://github.com/tokio-rs/tokio/pull/3705
2170
+ [#3712]: https://github.com/tokio-rs/tokio/pull/3712
2171
+ [#3727]: https://github.com/tokio-rs/tokio/pull/3727
2172
+ [#3737]: https://github.com/tokio-rs/tokio/pull/3737
2173
+ [#3743]: https://github.com/tokio-rs/tokio/pull/3743
2174
+ [#3748]: https://github.com/tokio-rs/tokio/pull/3748
2175
+ [#3753]: https://github.com/tokio-rs/tokio/pull/3753
2176
+ [#3756]: https://github.com/tokio-rs/tokio/pull/3756
2177
+ [#3761]: https://github.com/tokio-rs/tokio/pull/3761
2178
+ [#3774]: https://github.com/tokio-rs/tokio/pull/3774
2179
+ [#3775]: https://github.com/tokio-rs/tokio/pull/3775
2180
+ [#3780]: https://github.com/tokio-rs/tokio/pull/3780
2181
+
2182
+ # 1.5.1 (July 6, 2021)
2183
+
2184
+ ### Fixed
2185
+
2186
+ - runtime: remotely abort tasks on `JoinHandle::abort` ([#3934])
2187
+
2188
+ [#3934]: https://github.com/tokio-rs/tokio/pull/3934
2189
+
2190
+ # 1.5.0 (April 12, 2021)
2191
+
2192
+ ### Added
2193
+
2194
+ - io: add `AsyncSeekExt::stream_position` ([#3650])
2195
+ - io: add `AsyncWriteExt::write_vectored` ([#3678])
2196
+ - io: add a `copy_bidirectional` utility ([#3572])
2197
+ - net: implement `IntoRawFd` for `TcpSocket` ([#3684])
2198
+ - sync: add `OnceCell` ([#3591])
2199
+ - sync: add `OwnedRwLockReadGuard` and `OwnedRwLockWriteGuard` ([#3340])
2200
+ - sync: add `Semaphore::is_closed` ([#3673])
2201
+ - sync: add `mpsc::Sender::capacity` ([#3690])
2202
+ - sync: allow configuring `RwLock` max reads ([#3644])
2203
+ - task: add `sync_scope` for `LocalKey` ([#3612])
2204
+
2205
+ ### Fixed
2206
+
2207
+ - chore: try to avoid `noalias` attributes on intrusive linked list ([#3654])
2208
+ - rt: fix panic in `JoinHandle::abort()` when called from other threads ([#3672])
2209
+ - sync: don't panic in `oneshot::try_recv` ([#3674])
2210
+ - sync: fix notifications getting dropped on receiver drop ([#3652])
2211
+ - sync: fix `Semaphore` permit overflow calculation ([#3644])
2212
+
2213
+ ### Documented
2214
+
2215
+ - io: clarify requirements of `AsyncFd` ([#3635])
2216
+ - runtime: fix unclear docs for `{Handle,Runtime}::block_on` ([#3628])
2217
+ - sync: document that `Semaphore` is fair ([#3693])
2218
+ - sync: improve doc on blocking mutex ([#3645])
2219
+
2220
+ [#3340]: https://github.com/tokio-rs/tokio/pull/3340
2221
+ [#3572]: https://github.com/tokio-rs/tokio/pull/3572
2222
+ [#3591]: https://github.com/tokio-rs/tokio/pull/3591
2223
+ [#3612]: https://github.com/tokio-rs/tokio/pull/3612
2224
+ [#3628]: https://github.com/tokio-rs/tokio/pull/3628
2225
+ [#3635]: https://github.com/tokio-rs/tokio/pull/3635
2226
+ [#3644]: https://github.com/tokio-rs/tokio/pull/3644
2227
+ [#3645]: https://github.com/tokio-rs/tokio/pull/3645
2228
+ [#3650]: https://github.com/tokio-rs/tokio/pull/3650
2229
+ [#3652]: https://github.com/tokio-rs/tokio/pull/3652
2230
+ [#3654]: https://github.com/tokio-rs/tokio/pull/3654
2231
+ [#3672]: https://github.com/tokio-rs/tokio/pull/3672
2232
+ [#3673]: https://github.com/tokio-rs/tokio/pull/3673
2233
+ [#3674]: https://github.com/tokio-rs/tokio/pull/3674
2234
+ [#3678]: https://github.com/tokio-rs/tokio/pull/3678
2235
+ [#3684]: https://github.com/tokio-rs/tokio/pull/3684
2236
+ [#3690]: https://github.com/tokio-rs/tokio/pull/3690
2237
+ [#3693]: https://github.com/tokio-rs/tokio/pull/3693
2238
+
2239
+ # 1.4.0 (March 20, 2021)
2240
+
2241
+ ### Added
2242
+
2243
+ - macros: introduce biased argument for `select!` ([#3603])
2244
+ - runtime: add `Handle::block_on` ([#3569])
2245
+
2246
+ ### Fixed
2247
+
2248
+ - runtime: avoid unnecessary polling of `block_on` future ([#3582])
2249
+ - runtime: fix memory leak/growth when creating many runtimes ([#3564])
2250
+ - runtime: mark `EnterGuard` with `must_use` ([#3609])
2251
+
2252
+ ### Documented
2253
+
2254
+ - chore: mention fix for building docs in contributing guide ([#3618])
2255
+ - doc: add link to `PollSender` ([#3613])
2256
+ - doc: alias sleep to delay ([#3604])
2257
+ - sync: improve `Mutex` FIFO explanation ([#3615])
2258
+ - timer: fix double newline in module docs ([#3617])
2259
+
2260
+ [#3564]: https://github.com/tokio-rs/tokio/pull/3564
2261
+ [#3613]: https://github.com/tokio-rs/tokio/pull/3613
2262
+ [#3618]: https://github.com/tokio-rs/tokio/pull/3618
2263
+ [#3617]: https://github.com/tokio-rs/tokio/pull/3617
2264
+ [#3582]: https://github.com/tokio-rs/tokio/pull/3582
2265
+ [#3615]: https://github.com/tokio-rs/tokio/pull/3615
2266
+ [#3603]: https://github.com/tokio-rs/tokio/pull/3603
2267
+ [#3609]: https://github.com/tokio-rs/tokio/pull/3609
2268
+ [#3604]: https://github.com/tokio-rs/tokio/pull/3604
2269
+ [#3569]: https://github.com/tokio-rs/tokio/pull/3569
2270
+
2271
+ # 1.3.0 (March 9, 2021)
2272
+
2273
+ ### Added
2274
+
2275
+ - coop: expose an `unconstrained()` opt-out ([#3547])
2276
+ - net: add `into_std` for net types without it ([#3509])
2277
+ - sync: add `same_channel` method to `mpsc::Sender` ([#3532])
2278
+ - sync: add `{try_,}acquire_many_owned` to `Semaphore` ([#3535])
2279
+ - sync: add back `RwLockWriteGuard::map` and `RwLockWriteGuard::try_map` ([#3348])
2280
+
2281
+ ### Fixed
2282
+
2283
+ - sync: allow `oneshot::Receiver::close` after successful `try_recv` ([#3552])
2284
+ - time: do not panic on `timeout(Duration::MAX)` ([#3551])
2285
+
2286
+ ### Documented
2287
+
2288
+ - doc: doc aliases for pre-1.0 function names ([#3523])
2289
+ - io: fix typos ([#3541])
2290
+ - io: note the EOF behavior of `read_until` ([#3536])
2291
+ - io: update `AsyncRead::poll_read` doc ([#3557])
2292
+ - net: update `UdpSocket` splitting doc ([#3517])
2293
+ - runtime: add link to `LocalSet` on `new_current_thread` ([#3508])
2294
+ - runtime: update documentation of thread limits ([#3527])
2295
+ - sync: do not recommend `join_all` for `Barrier` ([#3514])
2296
+ - sync: documentation for `oneshot` ([#3592])
2297
+ - sync: rename `notify` to `notify_one` ([#3526])
2298
+ - time: fix typo in `Sleep` doc ([#3515])
2299
+ - time: sync `interval.rs` and `time/mod.rs` docs ([#3533])
2300
+
2301
+ [#3348]: https://github.com/tokio-rs/tokio/pull/3348
2302
+ [#3508]: https://github.com/tokio-rs/tokio/pull/3508
2303
+ [#3509]: https://github.com/tokio-rs/tokio/pull/3509
2304
+ [#3514]: https://github.com/tokio-rs/tokio/pull/3514
2305
+ [#3515]: https://github.com/tokio-rs/tokio/pull/3515
2306
+ [#3517]: https://github.com/tokio-rs/tokio/pull/3517
2307
+ [#3523]: https://github.com/tokio-rs/tokio/pull/3523
2308
+ [#3526]: https://github.com/tokio-rs/tokio/pull/3526
2309
+ [#3527]: https://github.com/tokio-rs/tokio/pull/3527
2310
+ [#3532]: https://github.com/tokio-rs/tokio/pull/3532
2311
+ [#3533]: https://github.com/tokio-rs/tokio/pull/3533
2312
+ [#3535]: https://github.com/tokio-rs/tokio/pull/3535
2313
+ [#3536]: https://github.com/tokio-rs/tokio/pull/3536
2314
+ [#3541]: https://github.com/tokio-rs/tokio/pull/3541
2315
+ [#3547]: https://github.com/tokio-rs/tokio/pull/3547
2316
+ [#3551]: https://github.com/tokio-rs/tokio/pull/3551
2317
+ [#3552]: https://github.com/tokio-rs/tokio/pull/3552
2318
+ [#3557]: https://github.com/tokio-rs/tokio/pull/3557
2319
+ [#3592]: https://github.com/tokio-rs/tokio/pull/3592
2320
+
2321
+ # 1.2.0 (February 5, 2021)
2322
+
2323
+ ### Added
2324
+
2325
+ - signal: make `Signal::poll_recv` method public ([#3383])
2326
+
2327
+ ### Fixed
2328
+
2329
+ - time: make `test-util` paused time fully deterministic ([#3492])
2330
+
2331
+ ### Documented
2332
+
2333
+ - sync: link to new broadcast and watch wrappers ([#3504])
2334
+
2335
+ [#3383]: https://github.com/tokio-rs/tokio/pull/3383
2336
+ [#3492]: https://github.com/tokio-rs/tokio/pull/3492
2337
+ [#3504]: https://github.com/tokio-rs/tokio/pull/3504
2338
+
2339
+ # 1.1.1 (January 29, 2021)
2340
+
2341
+ Forward ports 1.0.3 fix.
2342
+
2343
+ ### Fixed
2344
+ - io: memory leak during shutdown ([#3477]).
2345
+
2346
+ # 1.1.0 (January 22, 2021)
2347
+
2348
+ ### Added
2349
+
2350
+ - net: add `try_read_buf` and `try_recv_buf` ([#3351])
2351
+ - mpsc: Add `Sender::try_reserve` function ([#3418])
2352
+ - sync: add `RwLock` `try_read` and `try_write` methods ([#3400])
2353
+ - io: add `ReadBuf::inner_mut` ([#3443])
2354
+
2355
+ ### Changed
2356
+
2357
+ - macros: improve `select!` error message ([#3352])
2358
+ - io: keep track of initialized bytes in `read_to_end` ([#3426])
2359
+ - runtime: consolidate errors for context missing ([#3441])
2360
+
2361
+ ### Fixed
2362
+
2363
+ - task: wake `LocalSet` on `spawn_local` ([#3369])
2364
+ - sync: fix panic in broadcast::Receiver drop ([#3434])
2365
+
2366
+ ### Documented
2367
+ - stream: link to new `Stream` wrappers in `tokio-stream` ([#3343])
2368
+ - docs: mention that `test-util` feature is not enabled with full ([#3397])
2369
+ - process: add documentation to process::Child fields ([#3437])
2370
+ - io: clarify `AsyncFd` docs about changes of the inner fd ([#3430])
2371
+ - net: update datagram docs on splitting ([#3448])
2372
+ - time: document that `Sleep` is not `Unpin` ([#3457])
2373
+ - sync: add link to `PollSemaphore` ([#3456])
2374
+ - task: add `LocalSet` example ([#3438])
2375
+ - sync: improve bounded `mpsc` documentation ([#3458])
2376
+
2377
+ [#3343]: https://github.com/tokio-rs/tokio/pull/3343
2378
+ [#3351]: https://github.com/tokio-rs/tokio/pull/3351
2379
+ [#3352]: https://github.com/tokio-rs/tokio/pull/3352
2380
+ [#3369]: https://github.com/tokio-rs/tokio/pull/3369
2381
+ [#3397]: https://github.com/tokio-rs/tokio/pull/3397
2382
+ [#3400]: https://github.com/tokio-rs/tokio/pull/3400
2383
+ [#3418]: https://github.com/tokio-rs/tokio/pull/3418
2384
+ [#3426]: https://github.com/tokio-rs/tokio/pull/3426
2385
+ [#3430]: https://github.com/tokio-rs/tokio/pull/3430
2386
+ [#3434]: https://github.com/tokio-rs/tokio/pull/3434
2387
+ [#3437]: https://github.com/tokio-rs/tokio/pull/3437
2388
+ [#3438]: https://github.com/tokio-rs/tokio/pull/3438
2389
+ [#3441]: https://github.com/tokio-rs/tokio/pull/3441
2390
+ [#3443]: https://github.com/tokio-rs/tokio/pull/3443
2391
+ [#3448]: https://github.com/tokio-rs/tokio/pull/3448
2392
+ [#3456]: https://github.com/tokio-rs/tokio/pull/3456
2393
+ [#3457]: https://github.com/tokio-rs/tokio/pull/3457
2394
+ [#3458]: https://github.com/tokio-rs/tokio/pull/3458
2395
+
2396
+ # 1.0.3 (January 28, 2021)
2397
+
2398
+ ### Fixed
2399
+ - io: memory leak during shutdown ([#3477]).
2400
+
2401
+ [#3477]: https://github.com/tokio-rs/tokio/pull/3477
2402
+
2403
+ # 1.0.2 (January 14, 2021)
2404
+
2405
+ ### Fixed
2406
+ - io: soundness in `read_to_end` ([#3428]).
2407
+
2408
+ [#3428]: https://github.com/tokio-rs/tokio/pull/3428
2409
+
2410
+ # 1.0.1 (December 25, 2020)
2411
+
2412
+ This release fixes a soundness hole caused by the combination of `RwLockWriteGuard::map`
2413
+ and `RwLockWriteGuard::downgrade` by removing the `map` function. This is a breaking
2414
+ change, but breaking changes are allowed under our semver policy when they are required
2415
+ to fix a soundness hole. (See [this RFC][semver] for more.)
2416
+
2417
+ Note that we have chosen not to do a deprecation cycle or similar because Tokio 1.0.0 was
2418
+ released two days ago, and therefore the impact should be minimal.
2419
+
2420
+ Due to the soundness hole, we have also yanked Tokio version 1.0.0.
2421
+
2422
+ ### Removed
2423
+
2424
+ - sync: remove `RwLockWriteGuard::map` and `RwLockWriteGuard::try_map` ([#3345])
2425
+
2426
+ ### Fixed
2427
+
2428
+ - docs: remove stream feature from docs ([#3335])
2429
+
2430
+ [semver]: https://github.com/rust-lang/rfcs/blob/master/text/1122-language-semver.md#soundness-changes
2431
+ [#3335]: https://github.com/tokio-rs/tokio/pull/3335
2432
+ [#3345]: https://github.com/tokio-rs/tokio/pull/3345
2433
+
2434
+ # 1.0.0 (December 23, 2020)
2435
+
2436
+ Commit to the API and long-term support.
2437
+
2438
+ ### Fixed
2439
+
2440
+ - sync: spurious wakeup in `watch` ([#3234]).
2441
+
2442
+ ### Changed
2443
+
2444
+ - io: rename `AsyncFd::with_io()` to `try_io()` ([#3306])
2445
+ - fs: avoid OS specific `*Ext` traits in favor of conditionally defining the fn ([#3264]).
2446
+ - fs: `Sleep` is `!Unpin` ([#3278]).
2447
+ - net: pass `SocketAddr` by value ([#3125]).
2448
+ - net: `TcpStream::poll_peek` takes `ReadBuf` ([#3259]).
2449
+ - rt: rename `runtime::Builder::max_threads()` to `max_blocking_threads()` ([#3287]).
2450
+ - time: require `current_thread` runtime when calling `time::pause()` ([#3289]).
2451
+
2452
+ ### Removed
2453
+
2454
+ - remove `tokio::prelude` ([#3299]).
2455
+ - io: remove `AsyncFd::with_poll()` ([#3306]).
2456
+ - net: remove `{Tcp,Unix}Stream::shutdown()` in favor of `AsyncWrite::shutdown()` ([#3298]).
2457
+ - stream: move all stream utilities to `tokio-stream` until `Stream` is added to
2458
+ `std` ([#3277]).
2459
+ - sync: mpsc `try_recv()` due to unexpected behavior ([#3263]).
2460
+ - tracing: make unstable as `tracing-core` is not 1.0 yet ([#3266]).
2461
+
2462
+ ### Added
2463
+
2464
+ - fs: `poll_*` fns to `DirEntry` ([#3308]).
2465
+ - io: `poll_*` fns to `io::Lines`, `io::Split` ([#3308]).
2466
+ - io: `_mut` method variants to `AsyncFd` ([#3304]).
2467
+ - net: `poll_*` fns to `UnixDatagram` ([#3223]).
2468
+ - net: `UnixStream` readiness and non-blocking ops ([#3246]).
2469
+ - sync: `UnboundedReceiver::blocking_recv()` ([#3262]).
2470
+ - sync: `watch::Sender::borrow()` ([#3269]).
2471
+ - sync: `Semaphore::close()` ([#3065]).
2472
+ - sync: `poll_recv` fns to `mpsc::Receiver`, `mpsc::UnboundedReceiver` ([#3308]).
2473
+ - time: `poll_tick` fn to `time::Interval` ([#3316]).
2474
+
2475
+ [#3065]: https://github.com/tokio-rs/tokio/pull/3065
2476
+ [#3125]: https://github.com/tokio-rs/tokio/pull/3125
2477
+ [#3223]: https://github.com/tokio-rs/tokio/pull/3223
2478
+ [#3234]: https://github.com/tokio-rs/tokio/pull/3234
2479
+ [#3246]: https://github.com/tokio-rs/tokio/pull/3246
2480
+ [#3259]: https://github.com/tokio-rs/tokio/pull/3259
2481
+ [#3262]: https://github.com/tokio-rs/tokio/pull/3262
2482
+ [#3263]: https://github.com/tokio-rs/tokio/pull/3263
2483
+ [#3264]: https://github.com/tokio-rs/tokio/pull/3264
2484
+ [#3266]: https://github.com/tokio-rs/tokio/pull/3266
2485
+ [#3269]: https://github.com/tokio-rs/tokio/pull/3269
2486
+ [#3277]: https://github.com/tokio-rs/tokio/pull/3277
2487
+ [#3278]: https://github.com/tokio-rs/tokio/pull/3278
2488
+ [#3287]: https://github.com/tokio-rs/tokio/pull/3287
2489
+ [#3289]: https://github.com/tokio-rs/tokio/pull/3289
2490
+ [#3298]: https://github.com/tokio-rs/tokio/pull/3298
2491
+ [#3299]: https://github.com/tokio-rs/tokio/pull/3299
2492
+ [#3304]: https://github.com/tokio-rs/tokio/pull/3304
2493
+ [#3306]: https://github.com/tokio-rs/tokio/pull/3306
2494
+ [#3308]: https://github.com/tokio-rs/tokio/pull/3308
2495
+ [#3316]: https://github.com/tokio-rs/tokio/pull/3316
2496
+
2497
+ # 0.3.6 (December 14, 2020)
2498
+
2499
+ ### Fixed
2500
+
2501
+ - rt: fix deadlock in shutdown ([#3228])
2502
+ - rt: fix panic in task abort when off rt ([#3159])
2503
+ - sync: make `add_permits` panic with usize::MAX >> 3 permits ([#3188])
2504
+ - time: Fix race condition in timer drop ([#3229])
2505
+ - watch: fix spurious wakeup ([#3244])
2506
+
2507
+ ### Added
2508
+
2509
+ - example: add back udp-codec example ([#3205])
2510
+ - net: add `TcpStream::into_std` ([#3189])
2511
+
2512
+ [#3159]: https://github.com/tokio-rs/tokio/pull/3159
2513
+ [#3188]: https://github.com/tokio-rs/tokio/pull/3188
2514
+ [#3189]: https://github.com/tokio-rs/tokio/pull/3189
2515
+ [#3205]: https://github.com/tokio-rs/tokio/pull/3205
2516
+ [#3228]: https://github.com/tokio-rs/tokio/pull/3228
2517
+ [#3229]: https://github.com/tokio-rs/tokio/pull/3229
2518
+ [#3244]: https://github.com/tokio-rs/tokio/pull/3244
2519
+
2520
+ # 0.3.5 (November 30, 2020)
2521
+
2522
+ ### Fixed
2523
+
2524
+ - rt: fix `shutdown_timeout(0)` ([#3196]).
2525
+ - time: fixed race condition with small sleeps ([#3069]).
2526
+
2527
+ ### Added
2528
+
2529
+ - io: `AsyncFd::with_interest()` ([#3167]).
2530
+ - signal: `CtrlC` stream on windows ([#3186]).
2531
+
2532
+ [#3069]: https://github.com/tokio-rs/tokio/pull/3069
2533
+ [#3167]: https://github.com/tokio-rs/tokio/pull/3167
2534
+ [#3186]: https://github.com/tokio-rs/tokio/pull/3186
2535
+ [#3196]: https://github.com/tokio-rs/tokio/pull/3196
2536
+
2537
+ # 0.3.4 (November 18, 2020)
2538
+
2539
+ ### Fixed
2540
+
2541
+ - stream: `StreamMap` `Default` impl bound ([#3093]).
2542
+ - io: `AsyncFd::into_inner()` should deregister the FD ([#3104]).
2543
+
2544
+ ### Changed
2545
+
2546
+ - meta: `parking_lot` feature enabled with `full` ([#3119]).
2547
+
2548
+ ### Added
2549
+
2550
+ - io: `AsyncWrite` vectored writes ([#3149]).
2551
+ - net: TCP/UDP readiness and non-blocking ops ([#3130], [#2743], [#3138]).
2552
+ - net: TCP socket option (linger, send/recv buf size) ([#3145], [#3143]).
2553
+ - net: PID field in `UCred` with solaris/illumos ([#3085]).
2554
+ - rt: `runtime::Handle` allows spawning onto a runtime ([#3079]).
2555
+ - sync: `Notify::notify_waiters()` ([#3098]).
2556
+ - sync: `acquire_many()`, `try_acquire_many()` to `Semaphore` ([#3067]).
2557
+
2558
+ [#2743]: https://github.com/tokio-rs/tokio/pull/2743
2559
+ [#3067]: https://github.com/tokio-rs/tokio/pull/3067
2560
+ [#3079]: https://github.com/tokio-rs/tokio/pull/3079
2561
+ [#3085]: https://github.com/tokio-rs/tokio/pull/3085
2562
+ [#3093]: https://github.com/tokio-rs/tokio/pull/3093
2563
+ [#3098]: https://github.com/tokio-rs/tokio/pull/3098
2564
+ [#3104]: https://github.com/tokio-rs/tokio/pull/3104
2565
+ [#3119]: https://github.com/tokio-rs/tokio/pull/3119
2566
+ [#3130]: https://github.com/tokio-rs/tokio/pull/3130
2567
+ [#3138]: https://github.com/tokio-rs/tokio/pull/3138
2568
+ [#3143]: https://github.com/tokio-rs/tokio/pull/3143
2569
+ [#3145]: https://github.com/tokio-rs/tokio/pull/3145
2570
+ [#3149]: https://github.com/tokio-rs/tokio/pull/3149
2571
+
2572
+ # 0.3.3 (November 2, 2020)
2573
+
2574
+ Fixes a soundness hole by adding a missing `Send` bound to
2575
+ `Runtime::spawn_blocking()`.
2576
+
2577
+ ### Fixed
2578
+
2579
+ - rt: include missing `Send`, fixing soundness hole ([#3089]).
2580
+ - tracing: avoid huge trace span names ([#3074]).
2581
+
2582
+ ### Added
2583
+
2584
+ - net: `TcpSocket::reuseport()`, `TcpSocket::set_reuseport()` ([#3083]).
2585
+ - net: `TcpSocket::reuseaddr()` ([#3093]).
2586
+ - net: `TcpSocket::local_addr()` ([#3093]).
2587
+ - net: add pid to `UCred` ([#2633]).
2588
+
2589
+ [#2633]: https://github.com/tokio-rs/tokio/pull/2633
2590
+ [#3074]: https://github.com/tokio-rs/tokio/pull/3074
2591
+ [#3083]: https://github.com/tokio-rs/tokio/pull/3083
2592
+ [#3089]: https://github.com/tokio-rs/tokio/pull/3089
2593
+ [#3093]: https://github.com/tokio-rs/tokio/pull/3093
2594
+
2595
+ # 0.3.2 (October 27, 2020)
2596
+
2597
+ Adds `AsyncFd` as a replacement for v0.2's `PollEvented`.
2598
+
2599
+ ### Fixed
2600
+
2601
+ - io: fix a potential deadlock when shutting down the I/O driver ([#2903]).
2602
+ - sync: `RwLockWriteGuard::downgrade()` bug ([#2957]).
2603
+
2604
+ ### Added
2605
+
2606
+ - io: `AsyncFd` for receiving readiness events on raw FDs ([#2903]).
2607
+ - net: `poll_*` function on `UdpSocket` ([#2981]).
2608
+ - net: `UdpSocket::take_error()` ([#3051]).
2609
+ - sync: `oneshot::Sender::poll_closed()` ([#3032]).
2610
+
2611
+ [#2903]: https://github.com/tokio-rs/tokio/pull/2903
2612
+ [#2957]: https://github.com/tokio-rs/tokio/pull/2957
2613
+ [#2981]: https://github.com/tokio-rs/tokio/pull/2981
2614
+ [#3032]: https://github.com/tokio-rs/tokio/pull/3032
2615
+ [#3051]: https://github.com/tokio-rs/tokio/pull/3051
2616
+
2617
+ # 0.3.1 (October 21, 2020)
2618
+
2619
+ This release fixes an use-after-free in the IO driver. Additionally, the `read_buf`
2620
+ and `write_buf` methods have been added back to the IO traits, as the bytes crate
2621
+ is now on track to reach version 1.0 together with Tokio.
2622
+
2623
+ ### Fixed
2624
+
2625
+ - net: fix use-after-free ([#3019]).
2626
+ - fs: ensure buffered data is written on shutdown ([#3009]).
2627
+
2628
+ ### Added
2629
+
2630
+ - io: `copy_buf()` ([#2884]).
2631
+ - io: `AsyncReadExt::read_buf()`, `AsyncReadExt::write_buf()` for working with
2632
+ `Buf`/`BufMut` ([#3003]).
2633
+ - rt: `Runtime::spawn_blocking()` ([#2980]).
2634
+ - sync: `watch::Sender::is_closed()` ([#2991]).
2635
+
2636
+ [#2884]: https://github.com/tokio-rs/tokio/pull/2884
2637
+ [#2980]: https://github.com/tokio-rs/tokio/pull/2980
2638
+ [#2991]: https://github.com/tokio-rs/tokio/pull/2991
2639
+ [#3003]: https://github.com/tokio-rs/tokio/pull/3003
2640
+ [#3009]: https://github.com/tokio-rs/tokio/pull/3009
2641
+ [#3019]: https://github.com/tokio-rs/tokio/pull/3019
2642
+
2643
+ # 0.3.0 (October 15, 2020)
2644
+
2645
+ This represents a 1.0 beta release. APIs are polished and future-proofed. APIs
2646
+ not included for 1.0 stabilization have been removed.
2647
+
2648
+ Biggest changes are:
2649
+
2650
+ - I/O driver internal rewrite. The windows implementation includes significant
2651
+ changes.
2652
+ - Runtime API is polished, especially with how it interacts with feature flag
2653
+ combinations.
2654
+ - Feature flags are simplified
2655
+ - `rt-core` and `rt-util` are combined to `rt`
2656
+ - `rt-threaded` is renamed to `rt-multi-thread` to match builder API
2657
+ - `tcp`, `udp`, `uds`, `dns` are combined to `net`.
2658
+ - `parking_lot` is included with `full`
2659
+
2660
+ ### Changes
2661
+
2662
+ - meta: Minimum supported Rust version is now 1.45.
2663
+ - io: `AsyncRead` trait now takes `ReadBuf` in order to safely handle reading
2664
+ into uninitialized memory ([#2758]).
2665
+ - io: Internal I/O driver storage is now able to compact ([#2757]).
2666
+ - rt: `Runtime::block_on` now takes `&self` ([#2782]).
2667
+ - sync: `watch` reworked to decouple receiving a change notification from
2668
+ receiving the value ([#2814], [#2806]).
2669
+ - sync: `Notify::notify` is renamed to `notify_one` ([#2822]).
2670
+ - process: `Child::kill` is now an `async fn` that cleans zombies ([#2823]).
2671
+ - sync: use `const fn` constructors as possible ([#2833], [#2790])
2672
+ - signal: reduce cross-thread notification ([#2835]).
2673
+ - net: tcp,udp,uds types support operations with `&self` ([#2828], [#2919], [#2934]).
2674
+ - sync: blocking `mpsc` channel supports `send` with `&self` ([#2861]).
2675
+ - time: rename `delay_for` and `delay_until` to `sleep` and `sleep_until` ([#2826]).
2676
+ - io: upgrade to `mio` 0.7 ([#2893]).
2677
+ - io: `AsyncSeek` trait is tweaked ([#2885]).
2678
+ - fs: `File` operations take `&self` ([#2930]).
2679
+ - rt: runtime API, and `#[tokio::main]` macro polish ([#2876])
2680
+ - rt: `Runtime::enter` uses an RAII guard instead of a closure ([#2954]).
2681
+ - net: the `from_std` function on all sockets no longer sets socket into non-blocking mode ([#2893])
2682
+
2683
+ ### Added
2684
+
2685
+ - sync: `map` function to lock guards ([#2445]).
2686
+ - sync: `blocking_recv` and `blocking_send` fns to `mpsc` for use outside of Tokio ([#2685]).
2687
+ - rt: `Builder::thread_name_fn` for configuring thread names ([#1921]).
2688
+ - fs: impl `FromRawFd` and `FromRawHandle` for `File` ([#2792]).
2689
+ - process: `Child::wait` and `Child::try_wait` ([#2796]).
2690
+ - rt: support configuring thread keep-alive duration ([#2809]).
2691
+ - rt: `task::JoinHandle::abort` forcibly cancels a spawned task ([#2474]).
2692
+ - sync: `RwLock` write guard to read guard downgrading ([#2733]).
2693
+ - net: add `poll_*` functions that take `&self` to all net types ([#2845])
2694
+ - sync: `get_mut()` for `Mutex`, `RwLock` ([#2856]).
2695
+ - sync: `mpsc::Sender::closed()` waits for `Receiver` half to close ([#2840]).
2696
+ - sync: `mpsc::Sender::is_closed()` returns true if `Receiver` half is closed ([#2726]).
2697
+ - stream: `iter` and `iter_mut` to `StreamMap` ([#2890]).
2698
+ - net: implement `AsRawSocket` on windows ([#2911]).
2699
+ - net: `TcpSocket` creates a socket without binding or listening ([#2920]).
2700
+
2701
+ ### Removed
2702
+
2703
+ - io: vectored ops are removed from `AsyncRead`, `AsyncWrite` traits ([#2882]).
2704
+ - io: `mio` is removed from the public API. `PollEvented` and` Registration` are
2705
+ removed ([#2893]).
2706
+ - io: remove `bytes` from public API. `Buf` and `BufMut` implementation are
2707
+ removed ([#2908]).
2708
+ - time: `DelayQueue` is moved to `tokio-util` ([#2897]).
2709
+
2710
+ ### Fixed
2711
+
2712
+ - io: `stdout` and `stderr` buffering on windows ([#2734]).
2713
+
2714
+ [#1921]: https://github.com/tokio-rs/tokio/pull/1921
2715
+ [#2445]: https://github.com/tokio-rs/tokio/pull/2445
2716
+ [#2474]: https://github.com/tokio-rs/tokio/pull/2474
2717
+ [#2685]: https://github.com/tokio-rs/tokio/pull/2685
2718
+ [#2726]: https://github.com/tokio-rs/tokio/pull/2726
2719
+ [#2733]: https://github.com/tokio-rs/tokio/pull/2733
2720
+ [#2734]: https://github.com/tokio-rs/tokio/pull/2734
2721
+ [#2757]: https://github.com/tokio-rs/tokio/pull/2757
2722
+ [#2758]: https://github.com/tokio-rs/tokio/pull/2758
2723
+ [#2782]: https://github.com/tokio-rs/tokio/pull/2782
2724
+ [#2790]: https://github.com/tokio-rs/tokio/pull/2790
2725
+ [#2792]: https://github.com/tokio-rs/tokio/pull/2792
2726
+ [#2796]: https://github.com/tokio-rs/tokio/pull/2796
2727
+ [#2806]: https://github.com/tokio-rs/tokio/pull/2806
2728
+ [#2809]: https://github.com/tokio-rs/tokio/pull/2809
2729
+ [#2814]: https://github.com/tokio-rs/tokio/pull/2814
2730
+ [#2822]: https://github.com/tokio-rs/tokio/pull/2822
2731
+ [#2823]: https://github.com/tokio-rs/tokio/pull/2823
2732
+ [#2826]: https://github.com/tokio-rs/tokio/pull/2826
2733
+ [#2828]: https://github.com/tokio-rs/tokio/pull/2828
2734
+ [#2833]: https://github.com/tokio-rs/tokio/pull/2833
2735
+ [#2835]: https://github.com/tokio-rs/tokio/pull/2835
2736
+ [#2840]: https://github.com/tokio-rs/tokio/pull/2840
2737
+ [#2845]: https://github.com/tokio-rs/tokio/pull/2845
2738
+ [#2856]: https://github.com/tokio-rs/tokio/pull/2856
2739
+ [#2861]: https://github.com/tokio-rs/tokio/pull/2861
2740
+ [#2876]: https://github.com/tokio-rs/tokio/pull/2876
2741
+ [#2882]: https://github.com/tokio-rs/tokio/pull/2882
2742
+ [#2885]: https://github.com/tokio-rs/tokio/pull/2885
2743
+ [#2890]: https://github.com/tokio-rs/tokio/pull/2890
2744
+ [#2893]: https://github.com/tokio-rs/tokio/pull/2893
2745
+ [#2897]: https://github.com/tokio-rs/tokio/pull/2897
2746
+ [#2908]: https://github.com/tokio-rs/tokio/pull/2908
2747
+ [#2911]: https://github.com/tokio-rs/tokio/pull/2911
2748
+ [#2919]: https://github.com/tokio-rs/tokio/pull/2919
2749
+ [#2920]: https://github.com/tokio-rs/tokio/pull/2920
2750
+ [#2930]: https://github.com/tokio-rs/tokio/pull/2930
2751
+ [#2934]: https://github.com/tokio-rs/tokio/pull/2934
2752
+ [#2954]: https://github.com/tokio-rs/tokio/pull/2954
2753
+
2754
+ # 0.2.22 (July 21, 2020)
2755
+
2756
+ ### Fixes
2757
+
2758
+ - docs: misc improvements ([#2572], [#2658], [#2663], [#2656], [#2647], [#2630], [#2487], [#2621],
2759
+ [#2624], [#2600], [#2623], [#2622], [#2577], [#2569], [#2589], [#2575], [#2540], [#2564], [#2567],
2760
+ [#2520], [#2521], [#2493])
2761
+ - rt: allow calls to `block_on` inside calls to `block_in_place` that are
2762
+ themselves inside `block_on` ([#2645])
2763
+ - net: fix non-portable behavior when dropping `TcpStream` `OwnedWriteHalf` ([#2597])
2764
+ - io: improve stack usage by allocating large buffers on directly on the heap
2765
+ ([#2634])
2766
+ - io: fix unsound pin projection in `AsyncReadExt::read_buf` and
2767
+ `AsyncWriteExt::write_buf` ([#2612])
2768
+ - io: fix unnecessary zeroing for `AsyncRead` implementors ([#2525])
2769
+ - io: Fix `BufReader` not correctly forwarding `poll_write_buf` ([#2654])
2770
+ - io: fix panic in `AsyncReadExt::read_line` ([#2541])
2771
+
2772
+ ### Changes
2773
+
2774
+ - coop: returning `Poll::Pending` no longer decrements the task budget ([#2549])
2775
+
2776
+ ### Added
2777
+
2778
+ - io: little-endian variants of `AsyncReadExt` and `AsyncWriteExt` methods
2779
+ ([#1915])
2780
+ - task: add [`tracing`] instrumentation to spawned tasks ([#2655])
2781
+ - sync: allow unsized types in `Mutex` and `RwLock` (via `default` constructors)
2782
+ ([#2615])
2783
+ - net: add `ToSocketAddrs` implementation for `&[SocketAddr]` ([#2604])
2784
+ - fs: add `OpenOptionsExt` for `OpenOptions` ([#2515])
2785
+ - fs: add `DirBuilder` ([#2524])
2786
+
2787
+ [`tracing`]: https://crates.io/crates/tracing
2788
+ [#1915]: https://github.com/tokio-rs/tokio/pull/1915
2789
+ [#2487]: https://github.com/tokio-rs/tokio/pull/2487
2790
+ [#2493]: https://github.com/tokio-rs/tokio/pull/2493
2791
+ [#2515]: https://github.com/tokio-rs/tokio/pull/2515
2792
+ [#2520]: https://github.com/tokio-rs/tokio/pull/2520
2793
+ [#2521]: https://github.com/tokio-rs/tokio/pull/2521
2794
+ [#2524]: https://github.com/tokio-rs/tokio/pull/2524
2795
+ [#2525]: https://github.com/tokio-rs/tokio/pull/2525
2796
+ [#2540]: https://github.com/tokio-rs/tokio/pull/2540
2797
+ [#2541]: https://github.com/tokio-rs/tokio/pull/2541
2798
+ [#2549]: https://github.com/tokio-rs/tokio/pull/2549
2799
+ [#2564]: https://github.com/tokio-rs/tokio/pull/2564
2800
+ [#2567]: https://github.com/tokio-rs/tokio/pull/2567
2801
+ [#2569]: https://github.com/tokio-rs/tokio/pull/2569
2802
+ [#2572]: https://github.com/tokio-rs/tokio/pull/2572
2803
+ [#2575]: https://github.com/tokio-rs/tokio/pull/2575
2804
+ [#2577]: https://github.com/tokio-rs/tokio/pull/2577
2805
+ [#2589]: https://github.com/tokio-rs/tokio/pull/2589
2806
+ [#2597]: https://github.com/tokio-rs/tokio/pull/2597
2807
+ [#2600]: https://github.com/tokio-rs/tokio/pull/2600
2808
+ [#2604]: https://github.com/tokio-rs/tokio/pull/2604
2809
+ [#2612]: https://github.com/tokio-rs/tokio/pull/2612
2810
+ [#2615]: https://github.com/tokio-rs/tokio/pull/2615
2811
+ [#2621]: https://github.com/tokio-rs/tokio/pull/2621
2812
+ [#2622]: https://github.com/tokio-rs/tokio/pull/2622
2813
+ [#2623]: https://github.com/tokio-rs/tokio/pull/2623
2814
+ [#2624]: https://github.com/tokio-rs/tokio/pull/2624
2815
+ [#2630]: https://github.com/tokio-rs/tokio/pull/2630
2816
+ [#2634]: https://github.com/tokio-rs/tokio/pull/2634
2817
+ [#2645]: https://github.com/tokio-rs/tokio/pull/2645
2818
+ [#2647]: https://github.com/tokio-rs/tokio/pull/2647
2819
+ [#2654]: https://github.com/tokio-rs/tokio/pull/2654
2820
+ [#2655]: https://github.com/tokio-rs/tokio/pull/2655
2821
+ [#2656]: https://github.com/tokio-rs/tokio/pull/2656
2822
+ [#2658]: https://github.com/tokio-rs/tokio/pull/2658
2823
+ [#2663]: https://github.com/tokio-rs/tokio/pull/2663
2824
+
2825
+ # 0.2.21 (May 13, 2020)
2826
+
2827
+ ### Fixes
2828
+
2829
+ - macros: disambiguate built-in `#[test]` attribute in macro expansion ([#2503])
2830
+ - rt: `LocalSet` and task budgeting ([#2462]).
2831
+ - rt: task budgeting with `block_in_place` ([#2502]).
2832
+ - sync: release `broadcast` channel memory without sending a value ([#2509]).
2833
+ - time: notify when resetting a `Delay` to a time in the past ([#2290])
2834
+
2835
+ ### Added
2836
+
2837
+ - io: `get_mut`, `get_ref`, and `into_inner` to `Lines` ([#2450]).
2838
+ - io: `mio::Ready` argument to `PollEvented` ([#2419]).
2839
+ - os: illumos support ([#2486]).
2840
+ - rt: `Handle::spawn_blocking` ([#2501]).
2841
+ - sync: `OwnedMutexGuard` for `Arc<Mutex<T>>` ([#2455]).
2842
+
2843
+ [#2290]: https://github.com/tokio-rs/tokio/pull/2290
2844
+ [#2419]: https://github.com/tokio-rs/tokio/pull/2419
2845
+ [#2450]: https://github.com/tokio-rs/tokio/pull/2450
2846
+ [#2455]: https://github.com/tokio-rs/tokio/pull/2455
2847
+ [#2462]: https://github.com/tokio-rs/tokio/pull/2462
2848
+ [#2486]: https://github.com/tokio-rs/tokio/pull/2486
2849
+ [#2501]: https://github.com/tokio-rs/tokio/pull/2501
2850
+ [#2502]: https://github.com/tokio-rs/tokio/pull/2502
2851
+ [#2503]: https://github.com/tokio-rs/tokio/pull/2503
2852
+ [#2509]: https://github.com/tokio-rs/tokio/pull/2509
2853
+
2854
+ # 0.2.20 (April 28, 2020)
2855
+
2856
+ ### Fixes
2857
+
2858
+ - sync: `broadcast` closing the channel no longer requires capacity ([#2448]).
2859
+ - rt: regression when configuring runtime with `max_threads` less than number of CPUs ([#2457]).
2860
+
2861
+ [#2448]: https://github.com/tokio-rs/tokio/pull/2448
2862
+ [#2457]: https://github.com/tokio-rs/tokio/pull/2457
2863
+
2864
+ # 0.2.19 (April 24, 2020)
2865
+
2866
+ ### Fixes
2867
+
2868
+ - docs: misc improvements ([#2400], [#2405], [#2414], [#2420], [#2423], [#2426], [#2427], [#2434], [#2436], [#2440]).
2869
+ - rt: support `block_in_place` in more contexts ([#2409], [#2410]).
2870
+ - stream: no panic in `merge()` and `chain()` when using `size_hint()` ([#2430]).
2871
+ - task: include visibility modifier when defining a task-local ([#2416]).
2872
+
2873
+ ### Added
2874
+
2875
+ - rt: `runtime::Handle::block_on` ([#2437]).
2876
+ - sync: owned `Semaphore` permit ([#2421]).
2877
+ - tcp: owned split ([#2270]).
2878
+
2879
+ [#2270]: https://github.com/tokio-rs/tokio/pull/2270
2880
+ [#2400]: https://github.com/tokio-rs/tokio/pull/2400
2881
+ [#2405]: https://github.com/tokio-rs/tokio/pull/2405
2882
+ [#2409]: https://github.com/tokio-rs/tokio/pull/2409
2883
+ [#2410]: https://github.com/tokio-rs/tokio/pull/2410
2884
+ [#2414]: https://github.com/tokio-rs/tokio/pull/2414
2885
+ [#2416]: https://github.com/tokio-rs/tokio/pull/2416
2886
+ [#2420]: https://github.com/tokio-rs/tokio/pull/2420
2887
+ [#2421]: https://github.com/tokio-rs/tokio/pull/2421
2888
+ [#2423]: https://github.com/tokio-rs/tokio/pull/2423
2889
+ [#2426]: https://github.com/tokio-rs/tokio/pull/2426
2890
+ [#2427]: https://github.com/tokio-rs/tokio/pull/2427
2891
+ [#2430]: https://github.com/tokio-rs/tokio/pull/2430
2892
+ [#2434]: https://github.com/tokio-rs/tokio/pull/2434
2893
+ [#2436]: https://github.com/tokio-rs/tokio/pull/2436
2894
+ [#2437]: https://github.com/tokio-rs/tokio/pull/2437
2895
+ [#2440]: https://github.com/tokio-rs/tokio/pull/2440
2896
+
2897
+ # 0.2.18 (April 12, 2020)
2898
+
2899
+ ### Fixes
2900
+
2901
+ - task: `LocalSet` was incorrectly marked as `Send` ([#2398])
2902
+ - io: correctly report `WriteZero` failure in `write_int` ([#2334])
2903
+
2904
+ [#2334]: https://github.com/tokio-rs/tokio/pull/2334
2905
+ [#2398]: https://github.com/tokio-rs/tokio/pull/2398
2906
+
2907
+ # 0.2.17 (April 9, 2020)
2908
+
2909
+ ### Fixes
2910
+
2911
+ - rt: bug in work-stealing queue ([#2387])
2912
+
2913
+ ### Changes
2914
+
2915
+ - rt: threadpool uses logical CPU count instead of physical by default ([#2391])
2916
+
2917
+ [#2387]: https://github.com/tokio-rs/tokio/pull/2387
2918
+ [#2391]: https://github.com/tokio-rs/tokio/pull/2391
2919
+
2920
+ # 0.2.16 (April 3, 2020)
2921
+
2922
+ ### Fixes
2923
+
2924
+ - sync: fix a regression where `Mutex`, `Semaphore`, and `RwLock` futures no
2925
+ longer implement `Sync` ([#2375])
2926
+ - fs: fix `fs::copy` not copying file permissions ([#2354])
2927
+
2928
+ ### Added
2929
+
2930
+ - time: added `deadline` method to `delay_queue::Expired` ([#2300])
2931
+ - io: added `StreamReader` ([#2052])
2932
+
2933
+ [#2052]: https://github.com/tokio-rs/tokio/pull/2052
2934
+ [#2300]: https://github.com/tokio-rs/tokio/pull/2300
2935
+ [#2354]: https://github.com/tokio-rs/tokio/pull/2354
2936
+ [#2375]: https://github.com/tokio-rs/tokio/pull/2375
2937
+
2938
+ # 0.2.15 (April 2, 2020)
2939
+
2940
+ ### Fixes
2941
+
2942
+ - rt: fix queue regression ([#2362]).
2943
+
2944
+ ### Added
2945
+
2946
+ - sync: Add disarm to `mpsc::Sender` ([#2358]).
2947
+
2948
+ [#2358]: https://github.com/tokio-rs/tokio/pull/2358
2949
+ [#2362]: https://github.com/tokio-rs/tokio/pull/2362
2950
+
2951
+ # 0.2.14 (April 1, 2020)
2952
+
2953
+ ### Fixes
2954
+
2955
+ - rt: concurrency bug in scheduler ([#2273]).
2956
+ - rt: concurrency bug with shell runtime ([#2333]).
2957
+ - test-util: correct pause/resume of time ([#2253]).
2958
+ - time: `DelayQueue` correct wakeup after `insert` ([#2285]).
2959
+
2960
+ ### Added
2961
+
2962
+ - io: impl `RawFd`, `AsRawHandle` for std io types ([#2335]).
2963
+ - rt: automatic cooperative task yielding ([#2160], [#2343], [#2349]).
2964
+ - sync: `RwLock::into_inner` ([#2321]).
2965
+
2966
+ ### Changed
2967
+
2968
+ - sync: semaphore, mutex internals rewritten to avoid allocations ([#2325]).
2969
+
2970
+ [#2160]: https://github.com/tokio-rs/tokio/pull/2160
2971
+ [#2253]: https://github.com/tokio-rs/tokio/pull/2253
2972
+ [#2273]: https://github.com/tokio-rs/tokio/pull/2273
2973
+ [#2285]: https://github.com/tokio-rs/tokio/pull/2285
2974
+ [#2321]: https://github.com/tokio-rs/tokio/pull/2321
2975
+ [#2325]: https://github.com/tokio-rs/tokio/pull/2325
2976
+ [#2333]: https://github.com/tokio-rs/tokio/pull/2333
2977
+ [#2335]: https://github.com/tokio-rs/tokio/pull/2335
2978
+ [#2343]: https://github.com/tokio-rs/tokio/pull/2343
2979
+ [#2349]: https://github.com/tokio-rs/tokio/pull/2349
2980
+
2981
+ # 0.2.13 (February 28, 2020)
2982
+
2983
+ ### Fixes
2984
+
2985
+ - macros: unresolved import in `pin!` ([#2281]).
2986
+
2987
+ [#2281]: https://github.com/tokio-rs/tokio/pull/2281
2988
+
2989
+ # 0.2.12 (February 27, 2020)
2990
+
2991
+ ### Fixes
2992
+
2993
+ - net: `UnixStream::poll_shutdown` should call `shutdown(Write)` ([#2245]).
2994
+ - process: Wake up read and write on `EPOLLERR` ([#2218]).
2995
+ - rt: potential deadlock when using `block_in_place` and shutting down the
2996
+ runtime ([#2119]).
2997
+ - rt: only detect number of CPUs if `core_threads` not specified ([#2238]).
2998
+ - sync: reduce `watch::Receiver` struct size ([#2191]).
2999
+ - time: succeed when setting delay of `$MAX-1` ([#2184]).
3000
+ - time: avoid having to poll `DelayQueue` after inserting new delay ([#2217]).
3001
+
3002
+ ### Added
3003
+
3004
+ - macros: `pin!` variant that assigns to identifier and pins ([#2274]).
3005
+ - net: impl `Stream` for `Listener` types ([#2275]).
3006
+ - rt: `Runtime::shutdown_timeout` waits for runtime to shutdown for specified
3007
+ duration ([#2186]).
3008
+ - stream: `StreamMap` merges streams and can insert / remove streams at
3009
+ runtime ([#2185]).
3010
+ - stream: `StreamExt::skip()` skips a fixed number of items ([#2204]).
3011
+ - stream: `StreamExt::skip_while()` skips items based on a predicate ([#2205]).
3012
+ - sync: `Notify` provides basic `async` / `await` task notification ([#2210]).
3013
+ - sync: `Mutex::into_inner` retrieves guarded data ([#2250]).
3014
+ - sync: `mpsc::Sender::send_timeout` sends, waiting for up to specified duration
3015
+ for channel capacity ([#2227]).
3016
+ - time: impl `Ord` and `Hash` for `Instant` ([#2239]).
3017
+
3018
+ [#2119]: https://github.com/tokio-rs/tokio/pull/2119
3019
+ [#2184]: https://github.com/tokio-rs/tokio/pull/2184
3020
+ [#2185]: https://github.com/tokio-rs/tokio/pull/2185
3021
+ [#2186]: https://github.com/tokio-rs/tokio/pull/2186
3022
+ [#2191]: https://github.com/tokio-rs/tokio/pull/2191
3023
+ [#2204]: https://github.com/tokio-rs/tokio/pull/2204
3024
+ [#2205]: https://github.com/tokio-rs/tokio/pull/2205
3025
+ [#2210]: https://github.com/tokio-rs/tokio/pull/2210
3026
+ [#2217]: https://github.com/tokio-rs/tokio/pull/2217
3027
+ [#2218]: https://github.com/tokio-rs/tokio/pull/2218
3028
+ [#2227]: https://github.com/tokio-rs/tokio/pull/2227
3029
+ [#2238]: https://github.com/tokio-rs/tokio/pull/2238
3030
+ [#2239]: https://github.com/tokio-rs/tokio/pull/2239
3031
+ [#2245]: https://github.com/tokio-rs/tokio/pull/2245
3032
+ [#2250]: https://github.com/tokio-rs/tokio/pull/2250
3033
+ [#2274]: https://github.com/tokio-rs/tokio/pull/2274
3034
+ [#2275]: https://github.com/tokio-rs/tokio/pull/2275
3035
+
3036
+ # 0.2.11 (January 27, 2020)
3037
+
3038
+ ### Fixes
3039
+
3040
+ - docs: misc fixes and tweaks ([#2155], [#2103], [#2027], [#2167], [#2175]).
3041
+ - macros: handle generics in `#[tokio::main]` method ([#2177]).
3042
+ - sync: `broadcast` potential lost notifications ([#2135]).
3043
+ - rt: improve "no runtime" panic messages ([#2145]).
3044
+
3045
+ ### Added
3046
+
3047
+ - optional support for using `parking_lot` internally ([#2164]).
3048
+ - fs: `fs::copy`, an async version of `std::fs::copy` ([#2079]).
3049
+ - macros: `select!` waits for the first branch to complete ([#2152]).
3050
+ - macros: `join!` waits for all branches to complete ([#2158]).
3051
+ - macros: `try_join!` waits for all branches to complete or the first error ([#2169]).
3052
+ - macros: `pin!` pins a value to the stack ([#2163]).
3053
+ - net: `ReadHalf::poll()` and `ReadHalf::poll_peak` ([#2151])
3054
+ - stream: `StreamExt::timeout()` sets a per-item max duration ([#2149]).
3055
+ - stream: `StreamExt::fold()` applies a function, producing a single value. ([#2122]).
3056
+ - sync: impl `Eq`, `PartialEq` for `oneshot::RecvError` ([#2168]).
3057
+ - task: methods for inspecting the `JoinError` cause ([#2051]).
3058
+
3059
+ [#2027]: https://github.com/tokio-rs/tokio/pull/2027
3060
+ [#2051]: https://github.com/tokio-rs/tokio/pull/2051
3061
+ [#2079]: https://github.com/tokio-rs/tokio/pull/2079
3062
+ [#2103]: https://github.com/tokio-rs/tokio/pull/2103
3063
+ [#2122]: https://github.com/tokio-rs/tokio/pull/2122
3064
+ [#2135]: https://github.com/tokio-rs/tokio/pull/2135
3065
+ [#2145]: https://github.com/tokio-rs/tokio/pull/2145
3066
+ [#2149]: https://github.com/tokio-rs/tokio/pull/2149
3067
+ [#2151]: https://github.com/tokio-rs/tokio/pull/2151
3068
+ [#2152]: https://github.com/tokio-rs/tokio/pull/2152
3069
+ [#2155]: https://github.com/tokio-rs/tokio/pull/2155
3070
+ [#2158]: https://github.com/tokio-rs/tokio/pull/2158
3071
+ [#2163]: https://github.com/tokio-rs/tokio/pull/2163
3072
+ [#2164]: https://github.com/tokio-rs/tokio/pull/2164
3073
+ [#2167]: https://github.com/tokio-rs/tokio/pull/2167
3074
+ [#2168]: https://github.com/tokio-rs/tokio/pull/2168
3075
+ [#2169]: https://github.com/tokio-rs/tokio/pull/2169
3076
+ [#2175]: https://github.com/tokio-rs/tokio/pull/2175
3077
+ [#2177]: https://github.com/tokio-rs/tokio/pull/2177
3078
+
3079
+ # 0.2.10 (January 21, 2020)
3080
+
3081
+ ### Fixes
3082
+
3083
+ - `#[tokio::main]` when `rt-core` feature flag is not enabled ([#2139]).
3084
+ - remove `AsyncBufRead` from `BufStream` impl block ([#2108]).
3085
+ - potential undefined behavior when implementing `AsyncRead` incorrectly ([#2030]).
3086
+
3087
+ ### Added
3088
+
3089
+ - `BufStream::with_capacity` ([#2125]).
3090
+ - impl `From` and `Default` for `RwLock` ([#2089]).
3091
+ - `io::ReadHalf::is_pair_of` checks if provided `WriteHalf` is for the same
3092
+ underlying object ([#1762], [#2144]).
3093
+ - `runtime::Handle::try_current()` returns a handle to the current runtime ([#2118]).
3094
+ - `stream::empty()` returns an immediately ready empty stream ([#2092]).
3095
+ - `stream::once(val)` returns a stream that yields a single value: `val` ([#2094]).
3096
+ - `stream::pending()` returns a stream that never becomes ready ([#2092]).
3097
+ - `StreamExt::chain()` sequences a second stream after the first completes ([#2093]).
3098
+ - `StreamExt::collect()` transform a stream into a collection ([#2109]).
3099
+ - `StreamExt::fuse` ends the stream after the first `None` ([#2085]).
3100
+ - `StreamExt::merge` combines two streams, yielding values as they become ready ([#2091]).
3101
+ - Task-local storage ([#2126]).
3102
+
3103
+ [#1762]: https://github.com/tokio-rs/tokio/pull/1762
3104
+ [#2030]: https://github.com/tokio-rs/tokio/pull/2030
3105
+ [#2085]: https://github.com/tokio-rs/tokio/pull/2085
3106
+ [#2089]: https://github.com/tokio-rs/tokio/pull/2089
3107
+ [#2091]: https://github.com/tokio-rs/tokio/pull/2091
3108
+ [#2092]: https://github.com/tokio-rs/tokio/pull/2092
3109
+ [#2093]: https://github.com/tokio-rs/tokio/pull/2093
3110
+ [#2094]: https://github.com/tokio-rs/tokio/pull/2094
3111
+ [#2108]: https://github.com/tokio-rs/tokio/pull/2108
3112
+ [#2109]: https://github.com/tokio-rs/tokio/pull/2109
3113
+ [#2118]: https://github.com/tokio-rs/tokio/pull/2118
3114
+ [#2125]: https://github.com/tokio-rs/tokio/pull/2125
3115
+ [#2126]: https://github.com/tokio-rs/tokio/pull/2126
3116
+ [#2139]: https://github.com/tokio-rs/tokio/pull/2139
3117
+ [#2144]: https://github.com/tokio-rs/tokio/pull/2144
3118
+
3119
+ # 0.2.9 (January 9, 2020)
3120
+
3121
+ ### Fixes
3122
+
3123
+ - `AsyncSeek` impl for `File` ([#1986]).
3124
+ - rt: shutdown deadlock in `threaded_scheduler` ([#2074], [#2082]).
3125
+ - rt: memory ordering when dropping `JoinHandle` ([#2044]).
3126
+ - docs: misc API documentation fixes and improvements.
3127
+
3128
+ [#1986]: https://github.com/tokio-rs/tokio/pull/1986
3129
+ [#2044]: https://github.com/tokio-rs/tokio/pull/2044
3130
+ [#2074]: https://github.com/tokio-rs/tokio/pull/2074
3131
+ [#2082]: https://github.com/tokio-rs/tokio/pull/2082
3132
+
3133
+ # 0.2.8 (January 7, 2020)
3134
+
3135
+ ### Fixes
3136
+
3137
+ - depend on new version of `tokio-macros`.
3138
+
3139
+ # 0.2.7 (January 7, 2020)
3140
+
3141
+ ### Fixes
3142
+
3143
+ - potential deadlock when dropping `basic_scheduler` Runtime.
3144
+ - calling `spawn_blocking` from within a `spawn_blocking` ([#2006]).
3145
+ - storing a `Runtime` instance in a thread-local ([#2011]).
3146
+ - miscellaneous documentation fixes.
3147
+ - rt: fix `Waker::will_wake` to return true when tasks match ([#2045]).
3148
+ - test-util: `time::advance` runs pending tasks before changing the time ([#2059]).
3149
+
3150
+ ### Added
3151
+
3152
+ - `net::lookup_host` maps a `T: ToSocketAddrs` to a stream of `SocketAddrs` ([#1870]).
3153
+ - `process::Child` fields are made public to match `std` ([#2014]).
3154
+ - impl `Stream` for `sync::broadcast::Receiver` ([#2012]).
3155
+ - `sync::RwLock` provides an asynchronous read-write lock ([#1699]).
3156
+ - `runtime::Handle::current` returns the handle for the current runtime ([#2040]).
3157
+ - `StreamExt::filter` filters stream values according to a predicate ([#2001]).
3158
+ - `StreamExt::filter_map` simultaneously filter and map stream values ([#2001]).
3159
+ - `StreamExt::try_next` convenience for streams of `Result<T, E>` ([#2005]).
3160
+ - `StreamExt::take` limits a stream to a specified number of values ([#2025]).
3161
+ - `StreamExt::take_while` limits a stream based on a predicate ([#2029]).
3162
+ - `StreamExt::all` tests if every element of the stream matches a predicate ([#2035]).
3163
+ - `StreamExt::any` tests if any element of the stream matches a predicate ([#2034]).
3164
+ - `task::LocalSet.await` runs spawned tasks until the set is idle ([#1971]).
3165
+ - `time::DelayQueue::len` returns the number entries in the queue ([#1755]).
3166
+ - expose runtime options from the `#[tokio::main]` and `#[tokio::test]` ([#2022]).
3167
+
3168
+ [#1699]: https://github.com/tokio-rs/tokio/pull/1699
3169
+ [#1755]: https://github.com/tokio-rs/tokio/pull/1755
3170
+ [#1870]: https://github.com/tokio-rs/tokio/pull/1870
3171
+ [#1971]: https://github.com/tokio-rs/tokio/pull/1971
3172
+ [#2001]: https://github.com/tokio-rs/tokio/pull/2001
3173
+ [#2005]: https://github.com/tokio-rs/tokio/pull/2005
3174
+ [#2006]: https://github.com/tokio-rs/tokio/pull/2006
3175
+ [#2011]: https://github.com/tokio-rs/tokio/pull/2011
3176
+ [#2012]: https://github.com/tokio-rs/tokio/pull/2012
3177
+ [#2014]: https://github.com/tokio-rs/tokio/pull/2014
3178
+ [#2022]: https://github.com/tokio-rs/tokio/pull/2022
3179
+ [#2025]: https://github.com/tokio-rs/tokio/pull/2025
3180
+ [#2029]: https://github.com/tokio-rs/tokio/pull/2029
3181
+ [#2034]: https://github.com/tokio-rs/tokio/pull/2034
3182
+ [#2035]: https://github.com/tokio-rs/tokio/pull/2035
3183
+ [#2040]: https://github.com/tokio-rs/tokio/pull/2040
3184
+ [#2045]: https://github.com/tokio-rs/tokio/pull/2045
3185
+ [#2059]: https://github.com/tokio-rs/tokio/pull/2059
3186
+
3187
+ # 0.2.6 (December 19, 2019)
3188
+
3189
+ ### Fixes
3190
+
3191
+ - `fs::File::seek` API regression ([#1991]).
3192
+
3193
+ [#1991]: https://github.com/tokio-rs/tokio/pull/1991
3194
+
3195
+ # 0.2.5 (December 18, 2019)
3196
+
3197
+ ### Added
3198
+
3199
+ - `io::AsyncSeek` trait ([#1924]).
3200
+ - `Mutex::try_lock` ([#1939])
3201
+ - `mpsc::Receiver::try_recv` and `mpsc::UnboundedReceiver::try_recv` ([#1939]).
3202
+ - `writev` support for `TcpStream` ([#1956]).
3203
+ - `time::throttle` for throttling streams ([#1949]).
3204
+ - implement `Stream` for `time::DelayQueue` ([#1975]).
3205
+ - `sync::broadcast` provides a fan-out channel ([#1943]).
3206
+ - `sync::Semaphore` provides an async semaphore ([#1973]).
3207
+ - `stream::StreamExt` provides stream utilities ([#1962]).
3208
+
3209
+ ### Fixes
3210
+
3211
+ - deadlock risk while shutting down the runtime ([#1972]).
3212
+ - panic while shutting down the runtime ([#1978]).
3213
+ - `sync::MutexGuard` debug output ([#1961]).
3214
+ - misc doc improvements ([#1933], [#1934], [#1940], [#1942]).
3215
+
3216
+ ### Changes
3217
+
3218
+ - runtime threads are configured with `runtime::Builder::core_threads` and
3219
+ `runtime::Builder::max_threads`. `runtime::Builder::num_threads` is
3220
+ deprecated ([#1977]).
3221
+
3222
+ [#1924]: https://github.com/tokio-rs/tokio/pull/1924
3223
+ [#1933]: https://github.com/tokio-rs/tokio/pull/1933
3224
+ [#1934]: https://github.com/tokio-rs/tokio/pull/1934
3225
+ [#1939]: https://github.com/tokio-rs/tokio/pull/1939
3226
+ [#1940]: https://github.com/tokio-rs/tokio/pull/1940
3227
+ [#1942]: https://github.com/tokio-rs/tokio/pull/1942
3228
+ [#1943]: https://github.com/tokio-rs/tokio/pull/1943
3229
+ [#1949]: https://github.com/tokio-rs/tokio/pull/1949
3230
+ [#1956]: https://github.com/tokio-rs/tokio/pull/1956
3231
+ [#1961]: https://github.com/tokio-rs/tokio/pull/1961
3232
+ [#1962]: https://github.com/tokio-rs/tokio/pull/1962
3233
+ [#1972]: https://github.com/tokio-rs/tokio/pull/1972
3234
+ [#1973]: https://github.com/tokio-rs/tokio/pull/1973
3235
+ [#1975]: https://github.com/tokio-rs/tokio/pull/1975
3236
+ [#1977]: https://github.com/tokio-rs/tokio/pull/1977
3237
+ [#1978]: https://github.com/tokio-rs/tokio/pull/1978
3238
+
3239
+ # 0.2.4 (December 6, 2019)
3240
+
3241
+ ### Fixes
3242
+
3243
+ - `sync::Mutex` deadlock when `lock()` future is dropped early ([#1898]).
3244
+
3245
+ [#1898]: https://github.com/tokio-rs/tokio/pull/1898
3246
+
3247
+ # 0.2.3 (December 6, 2019)
3248
+
3249
+ ### Added
3250
+
3251
+ - read / write integers using `AsyncReadExt` and `AsyncWriteExt` ([#1863]).
3252
+ - `read_buf` / `write_buf` for reading / writing `Buf` / `BufMut` ([#1881]).
3253
+ - `TcpStream::poll_peek` - pollable API for performing TCP peek ([#1864]).
3254
+ - `sync::oneshot::error::TryRecvError` provides variants to detect the error
3255
+ kind ([#1874]).
3256
+ - `LocalSet::block_on` accepts `!'static` task ([#1882]).
3257
+ - `task::JoinError` is now `Sync` ([#1888]).
3258
+ - impl conversions between `tokio::time::Instant` and
3259
+ `std::time::Instant` ([#1904]).
3260
+
3261
+ ### Fixes
3262
+
3263
+ - calling `spawn_blocking` after runtime shutdown ([#1875]).
3264
+ - `LocalSet` drop infinite loop ([#1892]).
3265
+ - `LocalSet` hang under load ([#1905]).
3266
+ - improved documentation ([#1865], [#1866], [#1868], [#1874], [#1876], [#1911]).
3267
+
3268
+ [#1863]: https://github.com/tokio-rs/tokio/pull/1863
3269
+ [#1864]: https://github.com/tokio-rs/tokio/pull/1864
3270
+ [#1865]: https://github.com/tokio-rs/tokio/pull/1865
3271
+ [#1866]: https://github.com/tokio-rs/tokio/pull/1866
3272
+ [#1868]: https://github.com/tokio-rs/tokio/pull/1868
3273
+ [#1874]: https://github.com/tokio-rs/tokio/pull/1874
3274
+ [#1875]: https://github.com/tokio-rs/tokio/pull/1875
3275
+ [#1876]: https://github.com/tokio-rs/tokio/pull/1876
3276
+ [#1881]: https://github.com/tokio-rs/tokio/pull/1881
3277
+ [#1882]: https://github.com/tokio-rs/tokio/pull/1882
3278
+ [#1888]: https://github.com/tokio-rs/tokio/pull/1888
3279
+ [#1892]: https://github.com/tokio-rs/tokio/pull/1892
3280
+ [#1904]: https://github.com/tokio-rs/tokio/pull/1904
3281
+ [#1905]: https://github.com/tokio-rs/tokio/pull/1905
3282
+ [#1911]: https://github.com/tokio-rs/tokio/pull/1911
3283
+
3284
+ # 0.2.2 (November 29, 2019)
3285
+
3286
+ ### Fixes
3287
+
3288
+ - scheduling with `basic_scheduler` ([#1861]).
3289
+ - update `spawn` panic message to specify that a task scheduler is required ([#1839]).
3290
+ - API docs example for `runtime::Builder` to include a task scheduler ([#1841]).
3291
+ - general documentation ([#1834]).
3292
+ - building on illumos/solaris ([#1772]).
3293
+ - panic when dropping `LocalSet` ([#1843]).
3294
+ - API docs mention the required Cargo features for `Builder::{basic, threaded}_scheduler` ([#1858]).
3295
+
3296
+ ### Added
3297
+
3298
+ - impl `Stream` for `signal::unix::Signal` ([#1849]).
3299
+ - API docs for platform specific behavior of `signal::ctrl_c` and `signal::unix::Signal` ([#1854]).
3300
+ - API docs for `signal::unix::Signal::{recv, poll_recv}` and `signal::windows::CtrlBreak::{recv, poll_recv}` ([#1854]).
3301
+ - `File::into_std` and `File::try_into_std` methods ([#1856]).
3302
+
3303
+ [#1772]: https://github.com/tokio-rs/tokio/pull/1772
3304
+ [#1834]: https://github.com/tokio-rs/tokio/pull/1834
3305
+ [#1839]: https://github.com/tokio-rs/tokio/pull/1839
3306
+ [#1841]: https://github.com/tokio-rs/tokio/pull/1841
3307
+ [#1843]: https://github.com/tokio-rs/tokio/pull/1843
3308
+ [#1849]: https://github.com/tokio-rs/tokio/pull/1849
3309
+ [#1854]: https://github.com/tokio-rs/tokio/pull/1854
3310
+ [#1856]: https://github.com/tokio-rs/tokio/pull/1856
3311
+ [#1858]: https://github.com/tokio-rs/tokio/pull/1858
3312
+ [#1861]: https://github.com/tokio-rs/tokio/pull/1861
3313
+
3314
+ # 0.2.1 (November 26, 2019)
3315
+
3316
+ ### Fixes
3317
+
3318
+ - API docs for `TcpListener::incoming`, `UnixListener::incoming` ([#1831]).
3319
+
3320
+ ### Added
3321
+
3322
+ - `tokio::task::LocalSet` provides a strategy for spawning `!Send` tasks ([#1733]).
3323
+ - export `tokio::time::Elapsed` ([#1826]).
3324
+ - impl `AsRawFd`, `AsRawHandle` for `tokio::fs::File` ([#1827]).
3325
+
3326
+ [#1733]: https://github.com/tokio-rs/tokio/pull/1733
3327
+ [#1826]: https://github.com/tokio-rs/tokio/pull/1826
3328
+ [#1827]: https://github.com/tokio-rs/tokio/pull/1827
3329
+ [#1831]: https://github.com/tokio-rs/tokio/pull/1831
3330
+
3331
+ # 0.2.0 (November 26, 2019)
3332
+
3333
+ A major breaking change. Most implementation and APIs have changed one way or
3334
+ another. This changelog entry contains a highlight
3335
+
3336
+ ### Changed
3337
+
3338
+ - APIs are updated to use `async / await`.
3339
+ - most `tokio-*` crates are collapsed into this crate.
3340
+ - Scheduler is rewritten.
3341
+ - `tokio::spawn` returns a `JoinHandle`.
3342
+ - A single I/O / timer is used per runtime.
3343
+ - I/O driver uses a concurrent slab for allocating state.
3344
+ - components are made available via feature flag.
3345
+ - Use `bytes` 0.5
3346
+ - `tokio::codec` is moved to `tokio-util`.
3347
+
3348
+ ### Removed
3349
+
3350
+ - Standalone `timer` and `net` drivers are removed, use `Runtime` instead
3351
+ - `current_thread` runtime is removed, use `tokio::runtime::Runtime` with
3352
+ `basic_scheduler` instead.
3353
+
3354
+ # 0.1.21 (May 30, 2019)
3355
+
3356
+ ### Changed
3357
+
3358
+ - Bump `tokio-trace-core` version to 0.2 ([#1111]).
3359
+
3360
+ [#1111]: https://github.com/tokio-rs/tokio/pull/1111
3361
+
3362
+ # 0.1.20 (May 14, 2019)
3363
+
3364
+ ### Added
3365
+
3366
+ - `tokio::runtime::Builder::panic_handler` allows configuring handling
3367
+ panics on the runtime ([#1055]).
3368
+
3369
+ [#1055]: https://github.com/tokio-rs/tokio/pull/1055
3370
+
3371
+ # 0.1.19 (April 22, 2019)
3372
+
3373
+ ### Added
3374
+
3375
+ - Re-export `tokio::sync::Mutex` primitive ([#964]).
3376
+
3377
+ [#964]: https://github.com/tokio-rs/tokio/pull/964
3378
+
3379
+ # 0.1.18 (March 22, 2019)
3380
+
3381
+ ### Added
3382
+
3383
+ - `TypedExecutor` re-export and implementations ([#993]).
3384
+
3385
+ [#993]: https://github.com/tokio-rs/tokio/pull/993
3386
+
3387
+ # 0.1.17 (March 13, 2019)
3388
+
3389
+ ### Added
3390
+
3391
+ - Propagate trace subscriber in the runtime ([#966]).
3392
+
3393
+ [#966]: https://github.com/tokio-rs/tokio/pull/966
3394
+
3395
+ # 0.1.16 (March 1, 2019)
3396
+
3397
+ ### Fixed
3398
+
3399
+ - async-await: track latest nightly changes ([#940]).
3400
+
3401
+ ### Added
3402
+
3403
+ - `sync::Watch`, a single value broadcast channel ([#922]).
3404
+ - Async equivalent of read / write file helpers being added to `std` ([#896]).
3405
+
3406
+ [#896]: https://github.com/tokio-rs/tokio/pull/896
3407
+ [#922]: https://github.com/tokio-rs/tokio/pull/922
3408
+ [#940]: https://github.com/tokio-rs/tokio/pull/940
3409
+
3410
+ # 0.1.15 (January 24, 2019)
3411
+
3412
+ ### Added
3413
+
3414
+ - Re-export tokio-sync APIs ([#839]).
3415
+ - Stream enumerate combinator ([#832]).
3416
+
3417
+ [#832]: https://github.com/tokio-rs/tokio/pull/832
3418
+ [#839]: https://github.com/tokio-rs/tokio/pull/839
3419
+
3420
+ # 0.1.14 (January 6, 2019)
3421
+
3422
+ - Use feature flags to break up the crate, allowing users to pick & choose
3423
+ components ([#808]).
3424
+ - Export `UnixDatagram` and `UnixDatagramFramed` ([#772]).
3425
+
3426
+ [#772]: https://github.com/tokio-rs/tokio/pull/772
3427
+ [#808]: https://github.com/tokio-rs/tokio/pull/808
3428
+
3429
+ # 0.1.13 (November 21, 2018)
3430
+
3431
+ - Fix `Runtime::reactor()` when no tasks are spawned ([#721]).
3432
+ - `runtime::Builder` no longer uses deprecated methods ([#749]).
3433
+ - Provide `after_start` and `before_stop` configuration settings for
3434
+ `Runtime` ([#756]).
3435
+ - Implement throttle stream combinator ([#736]).
3436
+
3437
+ [#721]: https://github.com/tokio-rs/tokio/pull/721
3438
+ [#736]: https://github.com/tokio-rs/tokio/pull/736
3439
+ [#749]: https://github.com/tokio-rs/tokio/pull/749
3440
+ [#756]: https://github.com/tokio-rs/tokio/pull/756
3441
+
3442
+ # 0.1.12 (October 23, 2018)
3443
+
3444
+ - runtime: expose `keep_alive` on runtime builder ([#676]).
3445
+ - runtime: create a reactor per worker thread ([#660]).
3446
+ - codec: fix panic in `LengthDelimitedCodec` ([#682]).
3447
+ - io: re-export `tokio_io::io::read` function ([#689]).
3448
+ - runtime: check for executor re-entry in more places ([#708]).
3449
+
3450
+ [#660]: https://github.com/tokio-rs/tokio/pull/660
3451
+ [#676]: https://github.com/tokio-rs/tokio/pull/676
3452
+ [#682]: https://github.com/tokio-rs/tokio/pull/682
3453
+ [#689]: https://github.com/tokio-rs/tokio/pull/689
3454
+ [#708]: https://github.com/tokio-rs/tokio/pull/708
3455
+
3456
+ # 0.1.11 (September 28, 2018)
3457
+
3458
+ - Fix `tokio-async-await` dependency ([#675]).
3459
+
3460
+ [#675]: https://github.com/tokio-rs/tokio/pull/675
3461
+
3462
+ # 0.1.10 (September 27, 2018)
3463
+
3464
+ - Fix minimal versions
3465
+
3466
+ # 0.1.9 (September 27, 2018)
3467
+
3468
+ - Experimental async/await improvements ([#661]).
3469
+ - Re-export `TaskExecutor` from `tokio-current-thread` ([#652]).
3470
+ - Improve `Runtime` builder API ([#645]).
3471
+ - `tokio::run` panics when called from the context of an executor
3472
+ ([#646]).
3473
+ - Introduce `StreamExt` with a `timeout` helper ([#573]).
3474
+ - Move `length_delimited` into `tokio` ([#575]).
3475
+ - Re-organize `tokio::net` module ([#548]).
3476
+ - Re-export `tokio-current-thread::spawn` in current_thread runtime
3477
+ ([#579]).
3478
+
3479
+ [#548]: https://github.com/tokio-rs/tokio/pull/548
3480
+ [#573]: https://github.com/tokio-rs/tokio/pull/573
3481
+ [#575]: https://github.com/tokio-rs/tokio/pull/575
3482
+ [#579]: https://github.com/tokio-rs/tokio/pull/579
3483
+ [#645]: https://github.com/tokio-rs/tokio/pull/645
3484
+ [#646]: https://github.com/tokio-rs/tokio/pull/646
3485
+ [#652]: https://github.com/tokio-rs/tokio/pull/652
3486
+ [#661]: https://github.com/tokio-rs/tokio/pull/661
3487
+
3488
+ # 0.1.8 (August 23, 2018)
3489
+
3490
+ - Extract tokio::executor::current_thread to a sub crate ([#370])
3491
+ - Add `Runtime::block_on` ([#398])
3492
+ - Add `runtime::current_thread::block_on_all` ([#477])
3493
+ - Misc documentation improvements ([#450])
3494
+ - Implement `std::error::Error` for error types ([#501])
3495
+
3496
+ [#370]: https://github.com/tokio-rs/tokio/pull/370
3497
+ [#398]: https://github.com/tokio-rs/tokio/pull/398
3498
+ [#450]: https://github.com/tokio-rs/tokio/pull/450
3499
+ [#477]: https://github.com/tokio-rs/tokio/pull/477
3500
+ [#501]: https://github.com/tokio-rs/tokio/pull/501
3501
+
3502
+ # 0.1.7 (June 6, 2018)
3503
+
3504
+ - Add `Runtime::block_on` for concurrent runtime ([#391]).
3505
+ - Provide handle to `current_thread::Runtime` that allows spawning tasks from
3506
+ other threads ([#340]).
3507
+ - Provide `clock::now()`, a configurable source of time ([#381]).
3508
+
3509
+ [#340]: https://github.com/tokio-rs/tokio/pull/340
3510
+ [#381]: https://github.com/tokio-rs/tokio/pull/381
3511
+ [#391]: https://github.com/tokio-rs/tokio/pull/391
3512
+
3513
+ # 0.1.6 (May 2, 2018)
3514
+
3515
+ - Add asynchronous filesystem APIs ([#323]).
3516
+ - Add "current thread" runtime variant ([#308]).
3517
+ - `CurrentThread`: Expose inner `Park` instance.
3518
+ - Improve fairness of `CurrentThread` executor ([#313]).
3519
+
3520
+ [#308]: https://github.com/tokio-rs/tokio/pull/308
3521
+ [#313]: https://github.com/tokio-rs/tokio/pull/313
3522
+ [#323]: https://github.com/tokio-rs/tokio/pull/323
3523
+
3524
+ # 0.1.5 (March 30, 2018)
3525
+
3526
+ - Provide timer API ([#266])
3527
+
3528
+ [#266]: https://github.com/tokio-rs/tokio/pull/266
3529
+
3530
+ # 0.1.4 (March 22, 2018)
3531
+
3532
+ - Fix build on FreeBSD ([#218])
3533
+ - Shutdown the Runtime when the handle is dropped ([#214])
3534
+ - Set Runtime thread name prefix for worker threads ([#232])
3535
+ - Add builder for Runtime ([#234])
3536
+ - Extract TCP and UDP types into separate crates ([#224])
3537
+ - Optionally support futures 0.2.
3538
+
3539
+ [#214]: https://github.com/tokio-rs/tokio/pull/214
3540
+ [#218]: https://github.com/tokio-rs/tokio/pull/218
3541
+ [#224]: https://github.com/tokio-rs/tokio/pull/224
3542
+ [#232]: https://github.com/tokio-rs/tokio/pull/232
3543
+ [#234]: https://github.com/tokio-rs/tokio/pull/234
3544
+
3545
+ # 0.1.3 (March 09, 2018)
3546
+
3547
+ - Fix `CurrentThread::turn` to block on idle ([#212]).
3548
+
3549
+ [#212]: https://github.com/tokio-rs/tokio/pull/212
3550
+
3551
+ # 0.1.2 (March 09, 2018)
3552
+
3553
+ - Introduce Tokio Runtime ([#141])
3554
+ - Provide `CurrentThread` for more flexible usage of current thread executor ([#141]).
3555
+ - Add Lio for platforms that support it ([#142]).
3556
+ - I/O resources now lazily bind to the reactor ([#160]).
3557
+ - Extract Reactor to dedicated crate ([#169])
3558
+ - Add facade to sub crates and add prelude ([#166]).
3559
+ - Switch TCP/UDP fns to poll\_ -> Poll<...> style ([#175])
3560
+
3561
+ [#141]: https://github.com/tokio-rs/tokio/pull/141
3562
+ [#142]: https://github.com/tokio-rs/tokio/pull/142
3563
+ [#160]: https://github.com/tokio-rs/tokio/pull/160
3564
+ [#166]: https://github.com/tokio-rs/tokio/pull/166
3565
+ [#169]: https://github.com/tokio-rs/tokio/pull/169
3566
+ [#175]: https://github.com/tokio-rs/tokio/pull/175
3567
+
3568
+ # 0.1.1 (February 09, 2018)
3569
+
3570
+ - Doc fixes
3571
+
3572
+ # 0.1.0 (February 07, 2018)
3573
+
3574
+ - Initial crate released based on [RFC](https://github.com/tokio-rs/tokio-rfcs/pull/3).