wasmtime 25.0.1 → 25.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2036) hide show
  1. checksums.yaml +4 -4
  2. data/Cargo.lock +89 -80
  3. data/ext/Cargo.toml +7 -7
  4. data/ext/cargo-vendor/anyhow-1.0.89/.cargo-checksum.json +1 -0
  5. data/ext/cargo-vendor/anyhow-1.0.89/Cargo.toml +126 -0
  6. data/ext/cargo-vendor/anyhow-1.0.89/README.md +181 -0
  7. data/ext/cargo-vendor/anyhow-1.0.89/build/probe.rs +35 -0
  8. data/ext/cargo-vendor/anyhow-1.0.89/build.rs +192 -0
  9. data/ext/cargo-vendor/anyhow-1.0.89/src/backtrace.rs +411 -0
  10. data/ext/cargo-vendor/anyhow-1.0.89/src/chain.rs +102 -0
  11. data/ext/cargo-vendor/anyhow-1.0.89/src/context.rs +193 -0
  12. data/ext/cargo-vendor/anyhow-1.0.89/src/error.rs +1027 -0
  13. data/ext/cargo-vendor/anyhow-1.0.89/src/kind.rs +121 -0
  14. data/ext/cargo-vendor/anyhow-1.0.89/src/lib.rs +731 -0
  15. data/ext/cargo-vendor/anyhow-1.0.89/src/wrapper.rs +84 -0
  16. data/ext/cargo-vendor/anyhow-1.0.89/tests/compiletest.rs +7 -0
  17. data/ext/cargo-vendor/anyhow-1.0.89/tests/test_autotrait.rs +34 -0
  18. data/ext/cargo-vendor/anyhow-1.0.89/tests/test_backtrace.rs +15 -0
  19. data/ext/cargo-vendor/anyhow-1.0.89/tests/test_ensure.rs +741 -0
  20. data/ext/cargo-vendor/anyhow-1.0.89/tests/test_fmt.rs +93 -0
  21. data/ext/cargo-vendor/async-timer-1.0.0-beta.15/.cargo-checksum.json +1 -0
  22. data/ext/cargo-vendor/async-timer-1.0.0-beta.15/Cargo.toml +99 -0
  23. data/ext/cargo-vendor/async-timer-1.0.0-beta.15/src/timer/async_tokio1.rs +308 -0
  24. data/ext/cargo-vendor/cranelift-bforest-0.112.2/.cargo-checksum.json +1 -0
  25. data/ext/cargo-vendor/cranelift-bforest-0.112.2/Cargo.toml +59 -0
  26. data/ext/cargo-vendor/cranelift-bitset-0.112.2/.cargo-checksum.json +1 -0
  27. data/ext/cargo-vendor/cranelift-bitset-0.112.2/Cargo.toml +74 -0
  28. data/ext/cargo-vendor/cranelift-codegen-0.112.2/.cargo-checksum.json +1 -0
  29. data/ext/cargo-vendor/cranelift-codegen-0.112.2/Cargo.toml +222 -0
  30. data/ext/cargo-vendor/cranelift-codegen-meta-0.112.2/.cargo-checksum.json +1 -0
  31. data/ext/cargo-vendor/cranelift-codegen-meta-0.112.2/Cargo.toml +54 -0
  32. data/ext/cargo-vendor/cranelift-codegen-shared-0.112.2/.cargo-checksum.json +1 -0
  33. data/ext/cargo-vendor/cranelift-codegen-shared-0.112.2/Cargo.toml +32 -0
  34. data/ext/cargo-vendor/cranelift-control-0.112.2/.cargo-checksum.json +1 -0
  35. data/ext/cargo-vendor/cranelift-control-0.112.2/Cargo.toml +43 -0
  36. data/ext/cargo-vendor/cranelift-entity-0.112.2/.cargo-checksum.json +1 -0
  37. data/ext/cargo-vendor/cranelift-entity-0.112.2/Cargo.toml +75 -0
  38. data/ext/cargo-vendor/cranelift-frontend-0.112.2/.cargo-checksum.json +1 -0
  39. data/ext/cargo-vendor/cranelift-frontend-0.112.2/Cargo.toml +97 -0
  40. data/ext/cargo-vendor/cranelift-isle-0.112.2/.cargo-checksum.json +1 -0
  41. data/ext/cargo-vendor/cranelift-isle-0.112.2/Cargo.toml +69 -0
  42. data/ext/cargo-vendor/cranelift-native-0.112.2/.cargo-checksum.json +1 -0
  43. data/ext/cargo-vendor/cranelift-native-0.112.2/Cargo.toml +52 -0
  44. data/ext/cargo-vendor/cranelift-wasm-0.112.2/.cargo-checksum.json +1 -0
  45. data/ext/cargo-vendor/cranelift-wasm-0.112.2/Cargo.toml +128 -0
  46. data/ext/cargo-vendor/pulley-interpreter-0.1.2/.cargo-checksum.json +1 -0
  47. data/ext/cargo-vendor/pulley-interpreter-0.1.2/Cargo.toml +85 -0
  48. data/ext/cargo-vendor/tokio-1.40.0/.cargo-checksum.json +1 -0
  49. data/ext/cargo-vendor/tokio-1.40.0/CHANGELOG.md +3574 -0
  50. data/ext/cargo-vendor/tokio-1.40.0/Cargo.toml +804 -0
  51. data/ext/cargo-vendor/tokio-1.40.0/README.md +252 -0
  52. data/ext/cargo-vendor/tokio-1.40.0/src/fs/file.rs +978 -0
  53. data/ext/cargo-vendor/tokio-1.40.0/src/fs/read_dir.rs +357 -0
  54. data/ext/cargo-vendor/tokio-1.40.0/src/fs/try_exists.rs +28 -0
  55. data/ext/cargo-vendor/tokio-1.40.0/src/future/maybe_done.rs +123 -0
  56. data/ext/cargo-vendor/tokio-1.40.0/src/io/async_fd.rs +1358 -0
  57. data/ext/cargo-vendor/tokio-1.40.0/src/io/async_read.rs +132 -0
  58. data/ext/cargo-vendor/tokio-1.40.0/src/io/blocking.rs +294 -0
  59. data/ext/cargo-vendor/tokio-1.40.0/src/io/bsd/poll_aio.rs +197 -0
  60. data/ext/cargo-vendor/tokio-1.40.0/src/io/mod.rs +292 -0
  61. data/ext/cargo-vendor/tokio-1.40.0/src/io/poll_evented.rs +305 -0
  62. data/ext/cargo-vendor/tokio-1.40.0/src/io/seek.rs +57 -0
  63. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/buf_reader.rs +311 -0
  64. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/buf_writer.rs +310 -0
  65. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/chain.rs +144 -0
  66. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/copy.rs +295 -0
  67. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/copy_bidirectional.rs +137 -0
  68. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/copy_buf.rs +108 -0
  69. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/empty.rs +164 -0
  70. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/lines.rs +145 -0
  71. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/mem.rs +429 -0
  72. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/mod.rs +111 -0
  73. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/read.rs +55 -0
  74. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/read_buf.rs +72 -0
  75. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/read_exact.rs +69 -0
  76. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/read_int.rs +158 -0
  77. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/read_line.rs +119 -0
  78. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/read_to_end.rs +143 -0
  79. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/read_to_string.rs +78 -0
  80. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/read_until.rs +80 -0
  81. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/repeat.rs +75 -0
  82. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/sink.rs +94 -0
  83. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/split.rs +121 -0
  84. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/take.rs +138 -0
  85. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/write_all.rs +55 -0
  86. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/write_all_buf.rs +64 -0
  87. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/write_buf.rs +55 -0
  88. data/ext/cargo-vendor/tokio-1.40.0/src/io/util/write_int.rs +151 -0
  89. data/ext/cargo-vendor/tokio-1.40.0/src/lib.rs +696 -0
  90. data/ext/cargo-vendor/tokio-1.40.0/src/loom/mocked.rs +58 -0
  91. data/ext/cargo-vendor/tokio-1.40.0/src/loom/std/atomic_u16.rs +48 -0
  92. data/ext/cargo-vendor/tokio-1.40.0/src/loom/std/atomic_u32.rs +48 -0
  93. data/ext/cargo-vendor/tokio-1.40.0/src/loom/std/atomic_usize.rs +60 -0
  94. data/ext/cargo-vendor/tokio-1.40.0/src/loom/std/mutex.rs +44 -0
  95. data/ext/cargo-vendor/tokio-1.40.0/src/macros/mod.rs +36 -0
  96. data/ext/cargo-vendor/tokio-1.40.0/src/macros/select.rs +1261 -0
  97. data/ext/cargo-vendor/tokio-1.40.0/src/net/addr.rs +333 -0
  98. data/ext/cargo-vendor/tokio-1.40.0/src/net/tcp/listener.rs +451 -0
  99. data/ext/cargo-vendor/tokio-1.40.0/src/net/tcp/stream.rs +1424 -0
  100. data/ext/cargo-vendor/tokio-1.40.0/src/net/udp.rs +2049 -0
  101. data/ext/cargo-vendor/tokio-1.40.0/src/net/unix/datagram/socket.rs +1595 -0
  102. data/ext/cargo-vendor/tokio-1.40.0/src/net/unix/listener.rs +240 -0
  103. data/ext/cargo-vendor/tokio-1.40.0/src/process/mod.rs +1690 -0
  104. data/ext/cargo-vendor/tokio-1.40.0/src/process/unix/pidfd_reaper.rs +322 -0
  105. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/blocking/pool.rs +608 -0
  106. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/blocking/schedule.rs +70 -0
  107. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/builder.rs +1456 -0
  108. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/config.rs +49 -0
  109. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/coop.rs +323 -0
  110. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/io/registration.rs +259 -0
  111. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/mod.rs +417 -0
  112. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/scheduler/current_thread/mod.rs +795 -0
  113. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/scheduler/mod.rs +283 -0
  114. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/scheduler/multi_thread/handle.rs +84 -0
  115. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/scheduler/multi_thread/worker.rs +1261 -0
  116. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/scheduler/multi_thread_alt/handle.rs +85 -0
  117. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/scheduler/multi_thread_alt/worker.rs +1604 -0
  118. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/task/core.rs +496 -0
  119. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/task/error.rs +202 -0
  120. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/task/harness.rs +532 -0
  121. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/task/id.rs +99 -0
  122. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/task/join.rs +378 -0
  123. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/task/mod.rs +546 -0
  124. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/task_hooks.rs +36 -0
  125. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/tests/loom_multi_thread.rs +462 -0
  126. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/tests/loom_multi_thread_alt.rs +572 -0
  127. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/tests/mod.rs +82 -0
  128. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/tests/queue.rs +293 -0
  129. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/tests/task.rs +455 -0
  130. data/ext/cargo-vendor/tokio-1.40.0/src/runtime/time/mod.rs +513 -0
  131. data/ext/cargo-vendor/tokio-1.40.0/src/sync/batch_semaphore.rs +780 -0
  132. data/ext/cargo-vendor/tokio-1.40.0/src/sync/broadcast.rs +1541 -0
  133. data/ext/cargo-vendor/tokio-1.40.0/src/sync/mpsc/chan.rs +600 -0
  134. data/ext/cargo-vendor/tokio-1.40.0/src/sync/mpsc/error.rs +169 -0
  135. data/ext/cargo-vendor/tokio-1.40.0/src/sync/mpsc/mod.rs +140 -0
  136. data/ext/cargo-vendor/tokio-1.40.0/src/sync/notify.rs +1218 -0
  137. data/ext/cargo-vendor/tokio-1.40.0/src/sync/oneshot.rs +1408 -0
  138. data/ext/cargo-vendor/tokio-1.40.0/src/task/consume_budget.rs +41 -0
  139. data/ext/cargo-vendor/tokio-1.40.0/src/task/join_set.rs +798 -0
  140. data/ext/cargo-vendor/tokio-1.40.0/src/task/local.rs +1257 -0
  141. data/ext/cargo-vendor/tokio-1.40.0/src/task/spawn.rs +207 -0
  142. data/ext/cargo-vendor/tokio-1.40.0/src/task/yield_now.rs +64 -0
  143. data/ext/cargo-vendor/tokio-1.40.0/src/time/interval.rs +644 -0
  144. data/ext/cargo-vendor/tokio-1.40.0/src/time/sleep.rs +453 -0
  145. data/ext/cargo-vendor/tokio-1.40.0/src/util/bit.rs +64 -0
  146. data/ext/cargo-vendor/tokio-1.40.0/src/util/sync_wrapper.rs +37 -0
  147. data/ext/cargo-vendor/tokio-1.40.0/tests/async_send_sync.rs +759 -0
  148. data/ext/cargo-vendor/tokio-1.40.0/tests/io_async_fd.rs +855 -0
  149. data/ext/cargo-vendor/tokio-1.40.0/tests/io_copy.rs +101 -0
  150. data/ext/cargo-vendor/tokio-1.40.0/tests/io_write_all_buf.rs +145 -0
  151. data/ext/cargo-vendor/tokio-1.40.0/tests/macros_join.rs +176 -0
  152. data/ext/cargo-vendor/tokio-1.40.0/tests/sync_mpsc.rs +1456 -0
  153. data/ext/cargo-vendor/tokio-1.40.0/tests/task_abort.rs +332 -0
  154. data/ext/cargo-vendor/tokio-1.40.0/tests/task_hooks.rs +76 -0
  155. data/ext/cargo-vendor/tokio-1.40.0/tests/task_join_set.rs +347 -0
  156. data/ext/cargo-vendor/tokio-1.40.0/tests/uds_stream.rs +435 -0
  157. data/ext/cargo-vendor/wasi-common-25.0.2/.cargo-checksum.json +1 -0
  158. data/ext/cargo-vendor/wasi-common-25.0.2/Cargo.toml +242 -0
  159. data/ext/cargo-vendor/wasm-encoder-0.218.0/.cargo-checksum.json +1 -0
  160. data/ext/cargo-vendor/wasm-encoder-0.218.0/Cargo.toml +65 -0
  161. data/ext/cargo-vendor/wasm-encoder-0.218.0/README.md +80 -0
  162. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/component/aliases.rs +160 -0
  163. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/component/builder.rs +467 -0
  164. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/component/canonicals.rs +176 -0
  165. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/component/components.rs +29 -0
  166. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/component/exports.rs +129 -0
  167. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/component/imports.rs +169 -0
  168. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/component/instances.rs +199 -0
  169. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/component/modules.rs +29 -0
  170. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/component/names.rs +155 -0
  171. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/component/start.rs +52 -0
  172. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/component/types.rs +774 -0
  173. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/component.rs +168 -0
  174. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/branch_hints.rs +125 -0
  175. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/code.rs +4032 -0
  176. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/custom.rs +73 -0
  177. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/data.rs +186 -0
  178. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/dump.rs +627 -0
  179. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/elements.rs +224 -0
  180. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/exports.rs +85 -0
  181. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/functions.rs +63 -0
  182. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/globals.rs +100 -0
  183. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/imports.rs +143 -0
  184. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/linking.rs +263 -0
  185. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/memories.rs +115 -0
  186. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/names.rs +304 -0
  187. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/producers.rs +181 -0
  188. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/start.rs +39 -0
  189. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/tables.rs +129 -0
  190. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/tags.rs +85 -0
  191. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/types.rs +717 -0
  192. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core.rs +175 -0
  193. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/lib.rs +218 -0
  194. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/raw.rs +30 -0
  195. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/reencode/component.rs +1344 -0
  196. data/ext/cargo-vendor/wasm-encoder-0.218.0/src/reencode.rs +1958 -0
  197. data/ext/cargo-vendor/wasmtime-25.0.2/.cargo-checksum.json +1 -0
  198. data/ext/cargo-vendor/wasmtime-25.0.2/Cargo.toml +407 -0
  199. data/ext/cargo-vendor/wasmtime-25.0.2/src/runtime/type_registry.rs +1233 -0
  200. data/ext/cargo-vendor/wasmtime-25.0.2/src/runtime/vm/traphandlers/backtrace.rs +287 -0
  201. data/ext/cargo-vendor/wasmtime-asm-macros-25.0.2/.cargo-checksum.json +1 -0
  202. data/ext/cargo-vendor/wasmtime-asm-macros-25.0.2/Cargo.toml +33 -0
  203. data/ext/cargo-vendor/wasmtime-cache-25.0.2/.cargo-checksum.json +1 -0
  204. data/ext/cargo-vendor/wasmtime-cache-25.0.2/Cargo.toml +112 -0
  205. data/ext/cargo-vendor/wasmtime-component-macro-25.0.2/.cargo-checksum.json +1 -0
  206. data/ext/cargo-vendor/wasmtime-component-macro-25.0.2/Cargo.toml +115 -0
  207. data/ext/cargo-vendor/wasmtime-component-util-25.0.2/.cargo-checksum.json +1 -0
  208. data/ext/cargo-vendor/wasmtime-component-util-25.0.2/Cargo.toml +36 -0
  209. data/ext/cargo-vendor/wasmtime-cranelift-25.0.2/.cargo-checksum.json +1 -0
  210. data/ext/cargo-vendor/wasmtime-cranelift-25.0.2/Cargo.toml +137 -0
  211. data/ext/cargo-vendor/wasmtime-environ-25.0.2/.cargo-checksum.json +1 -0
  212. data/ext/cargo-vendor/wasmtime-environ-25.0.2/Cargo.lock +792 -0
  213. data/ext/cargo-vendor/wasmtime-environ-25.0.2/Cargo.toml +195 -0
  214. data/ext/cargo-vendor/wasmtime-environ-25.0.2/src/compile/module_environ.rs +1267 -0
  215. data/ext/cargo-vendor/wasmtime-fiber-25.0.2/.cargo-checksum.json +1 -0
  216. data/ext/cargo-vendor/wasmtime-fiber-25.0.2/Cargo.toml +84 -0
  217. data/ext/cargo-vendor/wasmtime-jit-debug-25.0.2/.cargo-checksum.json +1 -0
  218. data/ext/cargo-vendor/wasmtime-jit-debug-25.0.2/Cargo.toml +86 -0
  219. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-25.0.2/.cargo-checksum.json +1 -0
  220. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-25.0.2/Cargo.toml +71 -0
  221. data/ext/cargo-vendor/wasmtime-slab-25.0.2/.cargo-checksum.json +1 -0
  222. data/ext/cargo-vendor/wasmtime-slab-25.0.2/Cargo.toml +50 -0
  223. data/ext/cargo-vendor/wasmtime-types-25.0.2/.cargo-checksum.json +1 -0
  224. data/ext/cargo-vendor/wasmtime-types-25.0.2/Cargo.toml +80 -0
  225. data/ext/cargo-vendor/wasmtime-versioned-export-macros-25.0.2/.cargo-checksum.json +1 -0
  226. data/ext/cargo-vendor/wasmtime-versioned-export-macros-25.0.2/Cargo.toml +41 -0
  227. data/ext/cargo-vendor/wasmtime-wasi-25.0.2/.cargo-checksum.json +1 -0
  228. data/ext/cargo-vendor/wasmtime-wasi-25.0.2/Cargo.toml +224 -0
  229. data/ext/cargo-vendor/wasmtime-winch-25.0.2/.cargo-checksum.json +1 -0
  230. data/ext/cargo-vendor/wasmtime-winch-25.0.2/Cargo.toml +100 -0
  231. data/ext/cargo-vendor/wasmtime-wit-bindgen-25.0.2/.cargo-checksum.json +1 -0
  232. data/ext/cargo-vendor/wasmtime-wit-bindgen-25.0.2/Cargo.toml +66 -0
  233. data/ext/cargo-vendor/wast-218.0.0/.cargo-checksum.json +1 -0
  234. data/ext/cargo-vendor/wast-218.0.0/Cargo.toml +101 -0
  235. data/ext/cargo-vendor/wast-218.0.0/src/component/binary.rs +878 -0
  236. data/ext/cargo-vendor/wast-218.0.0/src/component/component.rs +329 -0
  237. data/ext/cargo-vendor/wast-218.0.0/src/component/expand.rs +896 -0
  238. data/ext/cargo-vendor/wast-218.0.0/src/component/func.rs +537 -0
  239. data/ext/cargo-vendor/wast-218.0.0/src/component/resolve.rs +1075 -0
  240. data/ext/cargo-vendor/wast-218.0.0/src/component/types.rs +1003 -0
  241. data/ext/cargo-vendor/wast-218.0.0/src/core/binary.rs +1495 -0
  242. data/ext/cargo-vendor/wast-218.0.0/src/core/expr.rs +2225 -0
  243. data/ext/cargo-vendor/wast-218.0.0/src/core/resolve/deinline_import_export.rs +232 -0
  244. data/ext/cargo-vendor/wast-218.0.0/src/core/resolve/names.rs +868 -0
  245. data/ext/cargo-vendor/wast-218.0.0/src/core/resolve/types.rs +274 -0
  246. data/ext/cargo-vendor/wast-218.0.0/src/core/table.rs +308 -0
  247. data/ext/cargo-vendor/wast-218.0.0/src/core/types.rs +1117 -0
  248. data/ext/cargo-vendor/wast-218.0.0/src/lib.rs +566 -0
  249. data/ext/cargo-vendor/wast-218.0.0/src/wast.rs +567 -0
  250. data/ext/cargo-vendor/wat-1.218.0/.cargo-checksum.json +1 -0
  251. data/ext/cargo-vendor/wat-1.218.0/Cargo.toml +56 -0
  252. data/ext/cargo-vendor/wiggle-25.0.2/.cargo-checksum.json +1 -0
  253. data/ext/cargo-vendor/wiggle-25.0.2/Cargo.toml +119 -0
  254. data/ext/cargo-vendor/wiggle-generate-25.0.2/.cargo-checksum.json +1 -0
  255. data/ext/cargo-vendor/wiggle-generate-25.0.2/Cargo.toml +85 -0
  256. data/ext/cargo-vendor/wiggle-macro-25.0.2/.cargo-checksum.json +1 -0
  257. data/ext/cargo-vendor/wiggle-macro-25.0.2/Cargo.toml +78 -0
  258. data/ext/cargo-vendor/winch-codegen-0.23.2/.cargo-checksum.json +1 -0
  259. data/ext/cargo-vendor/winch-codegen-0.23.2/Cargo.toml +95 -0
  260. data/lib/wasmtime/version.rb +1 -1
  261. metadata +1816 -1777
  262. data/ext/cargo-vendor/anyhow-1.0.86/.cargo-checksum.json +0 -1
  263. data/ext/cargo-vendor/anyhow-1.0.86/Cargo.toml +0 -130
  264. data/ext/cargo-vendor/anyhow-1.0.86/README.md +0 -181
  265. data/ext/cargo-vendor/anyhow-1.0.86/build/probe.rs +0 -35
  266. data/ext/cargo-vendor/anyhow-1.0.86/build.rs +0 -179
  267. data/ext/cargo-vendor/anyhow-1.0.86/src/backtrace.rs +0 -406
  268. data/ext/cargo-vendor/anyhow-1.0.86/src/chain.rs +0 -102
  269. data/ext/cargo-vendor/anyhow-1.0.86/src/context.rs +0 -193
  270. data/ext/cargo-vendor/anyhow-1.0.86/src/error.rs +0 -1024
  271. data/ext/cargo-vendor/anyhow-1.0.86/src/kind.rs +0 -121
  272. data/ext/cargo-vendor/anyhow-1.0.86/src/lib.rs +0 -730
  273. data/ext/cargo-vendor/anyhow-1.0.86/src/wrapper.rs +0 -84
  274. data/ext/cargo-vendor/anyhow-1.0.86/tests/compiletest.rs +0 -7
  275. data/ext/cargo-vendor/anyhow-1.0.86/tests/test_autotrait.rs +0 -15
  276. data/ext/cargo-vendor/anyhow-1.0.86/tests/test_backtrace.rs +0 -15
  277. data/ext/cargo-vendor/anyhow-1.0.86/tests/test_ensure.rs +0 -741
  278. data/ext/cargo-vendor/anyhow-1.0.86/tests/test_fmt.rs +0 -94
  279. data/ext/cargo-vendor/async-timer-1.0.0-beta.14/.cargo-checksum.json +0 -1
  280. data/ext/cargo-vendor/async-timer-1.0.0-beta.14/Cargo.toml +0 -78
  281. data/ext/cargo-vendor/async-timer-1.0.0-beta.14/src/timer/async_tokio1.rs +0 -299
  282. data/ext/cargo-vendor/cranelift-bforest-0.112.1/.cargo-checksum.json +0 -1
  283. data/ext/cargo-vendor/cranelift-bforest-0.112.1/Cargo.toml +0 -59
  284. data/ext/cargo-vendor/cranelift-bitset-0.112.1/.cargo-checksum.json +0 -1
  285. data/ext/cargo-vendor/cranelift-bitset-0.112.1/Cargo.toml +0 -74
  286. data/ext/cargo-vendor/cranelift-codegen-0.112.1/.cargo-checksum.json +0 -1
  287. data/ext/cargo-vendor/cranelift-codegen-0.112.1/Cargo.toml +0 -222
  288. data/ext/cargo-vendor/cranelift-codegen-meta-0.112.1/.cargo-checksum.json +0 -1
  289. data/ext/cargo-vendor/cranelift-codegen-meta-0.112.1/Cargo.toml +0 -54
  290. data/ext/cargo-vendor/cranelift-codegen-shared-0.112.1/.cargo-checksum.json +0 -1
  291. data/ext/cargo-vendor/cranelift-codegen-shared-0.112.1/Cargo.toml +0 -32
  292. data/ext/cargo-vendor/cranelift-control-0.112.1/.cargo-checksum.json +0 -1
  293. data/ext/cargo-vendor/cranelift-control-0.112.1/Cargo.toml +0 -43
  294. data/ext/cargo-vendor/cranelift-entity-0.112.1/.cargo-checksum.json +0 -1
  295. data/ext/cargo-vendor/cranelift-entity-0.112.1/Cargo.toml +0 -75
  296. data/ext/cargo-vendor/cranelift-frontend-0.112.1/.cargo-checksum.json +0 -1
  297. data/ext/cargo-vendor/cranelift-frontend-0.112.1/Cargo.toml +0 -97
  298. data/ext/cargo-vendor/cranelift-isle-0.112.1/.cargo-checksum.json +0 -1
  299. data/ext/cargo-vendor/cranelift-isle-0.112.1/Cargo.toml +0 -69
  300. data/ext/cargo-vendor/cranelift-native-0.112.1/.cargo-checksum.json +0 -1
  301. data/ext/cargo-vendor/cranelift-native-0.112.1/Cargo.toml +0 -52
  302. data/ext/cargo-vendor/cranelift-wasm-0.112.1/.cargo-checksum.json +0 -1
  303. data/ext/cargo-vendor/cranelift-wasm-0.112.1/Cargo.toml +0 -128
  304. data/ext/cargo-vendor/pulley-interpreter-0.1.1/.cargo-checksum.json +0 -1
  305. data/ext/cargo-vendor/pulley-interpreter-0.1.1/Cargo.toml +0 -85
  306. data/ext/cargo-vendor/tokio-1.39.3/.cargo-checksum.json +0 -1
  307. data/ext/cargo-vendor/tokio-1.39.3/CHANGELOG.md +0 -3525
  308. data/ext/cargo-vendor/tokio-1.39.3/Cargo.toml +0 -800
  309. data/ext/cargo-vendor/tokio-1.39.3/README.md +0 -252
  310. data/ext/cargo-vendor/tokio-1.39.3/src/fs/file.rs +0 -979
  311. data/ext/cargo-vendor/tokio-1.39.3/src/fs/read_dir.rs +0 -358
  312. data/ext/cargo-vendor/tokio-1.39.3/src/fs/try_exists.rs +0 -34
  313. data/ext/cargo-vendor/tokio-1.39.3/src/future/maybe_done.rs +0 -71
  314. data/ext/cargo-vendor/tokio-1.39.3/src/io/async_fd.rs +0 -1359
  315. data/ext/cargo-vendor/tokio-1.39.3/src/io/async_read.rs +0 -131
  316. data/ext/cargo-vendor/tokio-1.39.3/src/io/blocking.rs +0 -294
  317. data/ext/cargo-vendor/tokio-1.39.3/src/io/bsd/poll_aio.rs +0 -197
  318. data/ext/cargo-vendor/tokio-1.39.3/src/io/mod.rs +0 -292
  319. data/ext/cargo-vendor/tokio-1.39.3/src/io/poll_evented.rs +0 -304
  320. data/ext/cargo-vendor/tokio-1.39.3/src/io/seek.rs +0 -57
  321. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/buf_reader.rs +0 -311
  322. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/buf_writer.rs +0 -310
  323. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/chain.rs +0 -144
  324. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/copy.rs +0 -295
  325. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/copy_bidirectional.rs +0 -137
  326. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/copy_buf.rs +0 -108
  327. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/empty.rs +0 -164
  328. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/lines.rs +0 -145
  329. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/mem.rs +0 -374
  330. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/mod.rs +0 -111
  331. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/read.rs +0 -55
  332. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/read_buf.rs +0 -72
  333. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/read_exact.rs +0 -69
  334. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/read_int.rs +0 -159
  335. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/read_line.rs +0 -119
  336. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/read_to_end.rs +0 -143
  337. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/read_to_string.rs +0 -78
  338. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/read_until.rs +0 -80
  339. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/repeat.rs +0 -75
  340. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/sink.rs +0 -94
  341. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/split.rs +0 -121
  342. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/take.rs +0 -138
  343. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/write_all.rs +0 -55
  344. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/write_all_buf.rs +0 -56
  345. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/write_buf.rs +0 -55
  346. data/ext/cargo-vendor/tokio-1.39.3/src/io/util/write_int.rs +0 -152
  347. data/ext/cargo-vendor/tokio-1.39.3/src/lib.rs +0 -690
  348. data/ext/cargo-vendor/tokio-1.39.3/src/loom/mocked.rs +0 -53
  349. data/ext/cargo-vendor/tokio-1.39.3/src/loom/std/atomic_u16.rs +0 -45
  350. data/ext/cargo-vendor/tokio-1.39.3/src/loom/std/atomic_u32.rs +0 -45
  351. data/ext/cargo-vendor/tokio-1.39.3/src/loom/std/atomic_usize.rs +0 -57
  352. data/ext/cargo-vendor/tokio-1.39.3/src/loom/std/mutex.rs +0 -36
  353. data/ext/cargo-vendor/tokio-1.39.3/src/macros/mod.rs +0 -39
  354. data/ext/cargo-vendor/tokio-1.39.3/src/macros/ready.rs +0 -8
  355. data/ext/cargo-vendor/tokio-1.39.3/src/macros/select.rs +0 -1261
  356. data/ext/cargo-vendor/tokio-1.39.3/src/net/addr.rs +0 -333
  357. data/ext/cargo-vendor/tokio-1.39.3/src/net/tcp/listener.rs +0 -451
  358. data/ext/cargo-vendor/tokio-1.39.3/src/net/tcp/stream.rs +0 -1424
  359. data/ext/cargo-vendor/tokio-1.39.3/src/net/udp.rs +0 -2049
  360. data/ext/cargo-vendor/tokio-1.39.3/src/net/unix/datagram/socket.rs +0 -1595
  361. data/ext/cargo-vendor/tokio-1.39.3/src/net/unix/listener.rs +0 -240
  362. data/ext/cargo-vendor/tokio-1.39.3/src/process/mod.rs +0 -1686
  363. data/ext/cargo-vendor/tokio-1.39.3/src/process/unix/pidfd_reaper.rs +0 -322
  364. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/blocking/pool.rs +0 -608
  365. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/blocking/schedule.rs +0 -60
  366. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/builder.rs +0 -1352
  367. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/config.rs +0 -43
  368. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/coop.rs +0 -323
  369. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/io/registration.rs +0 -259
  370. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/mod.rs +0 -410
  371. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/scheduler/current_thread/mod.rs +0 -772
  372. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/scheduler/mod.rs +0 -271
  373. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/scheduler/multi_thread/handle.rs +0 -74
  374. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/scheduler/multi_thread/worker.rs +0 -1260
  375. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/scheduler/multi_thread_alt/handle.rs +0 -75
  376. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/scheduler/multi_thread_alt/worker.rs +0 -1603
  377. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/task/core.rs +0 -494
  378. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/task/error.rs +0 -169
  379. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/task/harness.rs +0 -517
  380. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/task/id.rs +0 -98
  381. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/task/join.rs +0 -377
  382. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/task/mod.rs +0 -537
  383. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/tests/loom_multi_thread.rs +0 -462
  384. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/tests/loom_multi_thread_alt.rs +0 -572
  385. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/tests/mod.rs +0 -76
  386. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/tests/queue.rs +0 -287
  387. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/tests/task.rs +0 -353
  388. data/ext/cargo-vendor/tokio-1.39.3/src/runtime/time/mod.rs +0 -474
  389. data/ext/cargo-vendor/tokio-1.39.3/src/sync/batch_semaphore.rs +0 -779
  390. data/ext/cargo-vendor/tokio-1.39.3/src/sync/broadcast.rs +0 -1541
  391. data/ext/cargo-vendor/tokio-1.39.3/src/sync/mpsc/chan.rs +0 -597
  392. data/ext/cargo-vendor/tokio-1.39.3/src/sync/mpsc/error.rs +0 -149
  393. data/ext/cargo-vendor/tokio-1.39.3/src/sync/mpsc/mod.rs +0 -124
  394. data/ext/cargo-vendor/tokio-1.39.3/src/sync/notify.rs +0 -1218
  395. data/ext/cargo-vendor/tokio-1.39.3/src/sync/oneshot.rs +0 -1408
  396. data/ext/cargo-vendor/tokio-1.39.3/src/task/consume_budget.rs +0 -41
  397. data/ext/cargo-vendor/tokio-1.39.3/src/task/join_set.rs +0 -725
  398. data/ext/cargo-vendor/tokio-1.39.3/src/task/local.rs +0 -1250
  399. data/ext/cargo-vendor/tokio-1.39.3/src/task/spawn.rs +0 -207
  400. data/ext/cargo-vendor/tokio-1.39.3/src/task/yield_now.rs +0 -64
  401. data/ext/cargo-vendor/tokio-1.39.3/src/time/interval.rs +0 -644
  402. data/ext/cargo-vendor/tokio-1.39.3/src/time/sleep.rs +0 -452
  403. data/ext/cargo-vendor/tokio-1.39.3/src/util/bit.rs +0 -69
  404. data/ext/cargo-vendor/tokio-1.39.3/src/util/sync_wrapper.rs +0 -26
  405. data/ext/cargo-vendor/tokio-1.39.3/tests/async_send_sync.rs +0 -753
  406. data/ext/cargo-vendor/tokio-1.39.3/tests/io_async_fd.rs +0 -853
  407. data/ext/cargo-vendor/tokio-1.39.3/tests/io_copy.rs +0 -102
  408. data/ext/cargo-vendor/tokio-1.39.3/tests/io_write_all_buf.rs +0 -96
  409. data/ext/cargo-vendor/tokio-1.39.3/tests/macros_join.rs +0 -176
  410. data/ext/cargo-vendor/tokio-1.39.3/tests/sync_mpsc.rs +0 -1436
  411. data/ext/cargo-vendor/tokio-1.39.3/tests/task_abort.rs +0 -222
  412. data/ext/cargo-vendor/tokio-1.39.3/tests/task_join_set.rs +0 -307
  413. data/ext/cargo-vendor/tokio-1.39.3/tests/uds_stream.rs +0 -424
  414. data/ext/cargo-vendor/wasi-common-25.0.1/.cargo-checksum.json +0 -1
  415. data/ext/cargo-vendor/wasi-common-25.0.1/Cargo.toml +0 -242
  416. data/ext/cargo-vendor/wasmtime-25.0.1/.cargo-checksum.json +0 -1
  417. data/ext/cargo-vendor/wasmtime-25.0.1/Cargo.toml +0 -407
  418. data/ext/cargo-vendor/wasmtime-25.0.1/src/runtime/type_registry.rs +0 -1099
  419. data/ext/cargo-vendor/wasmtime-25.0.1/src/runtime/vm/traphandlers/backtrace.rs +0 -267
  420. data/ext/cargo-vendor/wasmtime-asm-macros-25.0.1/.cargo-checksum.json +0 -1
  421. data/ext/cargo-vendor/wasmtime-asm-macros-25.0.1/Cargo.toml +0 -33
  422. data/ext/cargo-vendor/wasmtime-cache-25.0.1/.cargo-checksum.json +0 -1
  423. data/ext/cargo-vendor/wasmtime-cache-25.0.1/Cargo.toml +0 -112
  424. data/ext/cargo-vendor/wasmtime-component-macro-25.0.1/.cargo-checksum.json +0 -1
  425. data/ext/cargo-vendor/wasmtime-component-macro-25.0.1/Cargo.toml +0 -115
  426. data/ext/cargo-vendor/wasmtime-component-util-25.0.1/.cargo-checksum.json +0 -1
  427. data/ext/cargo-vendor/wasmtime-component-util-25.0.1/Cargo.toml +0 -36
  428. data/ext/cargo-vendor/wasmtime-cranelift-25.0.1/.cargo-checksum.json +0 -1
  429. data/ext/cargo-vendor/wasmtime-cranelift-25.0.1/Cargo.toml +0 -137
  430. data/ext/cargo-vendor/wasmtime-environ-25.0.1/.cargo-checksum.json +0 -1
  431. data/ext/cargo-vendor/wasmtime-environ-25.0.1/Cargo.lock +0 -792
  432. data/ext/cargo-vendor/wasmtime-environ-25.0.1/Cargo.toml +0 -195
  433. data/ext/cargo-vendor/wasmtime-environ-25.0.1/src/compile/module_environ.rs +0 -1264
  434. data/ext/cargo-vendor/wasmtime-fiber-25.0.1/.cargo-checksum.json +0 -1
  435. data/ext/cargo-vendor/wasmtime-fiber-25.0.1/Cargo.toml +0 -84
  436. data/ext/cargo-vendor/wasmtime-jit-debug-25.0.1/.cargo-checksum.json +0 -1
  437. data/ext/cargo-vendor/wasmtime-jit-debug-25.0.1/Cargo.toml +0 -86
  438. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-25.0.1/.cargo-checksum.json +0 -1
  439. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-25.0.1/Cargo.toml +0 -71
  440. data/ext/cargo-vendor/wasmtime-slab-25.0.1/.cargo-checksum.json +0 -1
  441. data/ext/cargo-vendor/wasmtime-slab-25.0.1/Cargo.toml +0 -50
  442. data/ext/cargo-vendor/wasmtime-types-25.0.1/.cargo-checksum.json +0 -1
  443. data/ext/cargo-vendor/wasmtime-types-25.0.1/Cargo.toml +0 -80
  444. data/ext/cargo-vendor/wasmtime-versioned-export-macros-25.0.1/.cargo-checksum.json +0 -1
  445. data/ext/cargo-vendor/wasmtime-versioned-export-macros-25.0.1/Cargo.toml +0 -41
  446. data/ext/cargo-vendor/wasmtime-wasi-25.0.1/.cargo-checksum.json +0 -1
  447. data/ext/cargo-vendor/wasmtime-wasi-25.0.1/Cargo.toml +0 -224
  448. data/ext/cargo-vendor/wasmtime-winch-25.0.1/.cargo-checksum.json +0 -1
  449. data/ext/cargo-vendor/wasmtime-winch-25.0.1/Cargo.toml +0 -100
  450. data/ext/cargo-vendor/wasmtime-wit-bindgen-25.0.1/.cargo-checksum.json +0 -1
  451. data/ext/cargo-vendor/wasmtime-wit-bindgen-25.0.1/Cargo.toml +0 -66
  452. data/ext/cargo-vendor/wast-217.0.0/.cargo-checksum.json +0 -1
  453. data/ext/cargo-vendor/wast-217.0.0/Cargo.toml +0 -101
  454. data/ext/cargo-vendor/wast-217.0.0/src/component/binary.rs +0 -1014
  455. data/ext/cargo-vendor/wast-217.0.0/src/component/component.rs +0 -324
  456. data/ext/cargo-vendor/wast-217.0.0/src/component/expand.rs +0 -879
  457. data/ext/cargo-vendor/wast-217.0.0/src/component/func.rs +0 -486
  458. data/ext/cargo-vendor/wast-217.0.0/src/component/resolve.rs +0 -994
  459. data/ext/cargo-vendor/wast-217.0.0/src/component/types.rs +0 -999
  460. data/ext/cargo-vendor/wast-217.0.0/src/core/binary.rs +0 -1556
  461. data/ext/cargo-vendor/wast-217.0.0/src/core/expr.rs +0 -2110
  462. data/ext/cargo-vendor/wast-217.0.0/src/core/resolve/deinline_import_export.rs +0 -232
  463. data/ext/cargo-vendor/wast-217.0.0/src/core/resolve/names.rs +0 -808
  464. data/ext/cargo-vendor/wast-217.0.0/src/core/resolve/types.rs +0 -273
  465. data/ext/cargo-vendor/wast-217.0.0/src/core/table.rs +0 -308
  466. data/ext/cargo-vendor/wast-217.0.0/src/core/types.rs +0 -1057
  467. data/ext/cargo-vendor/wast-217.0.0/src/lib.rs +0 -557
  468. data/ext/cargo-vendor/wast-217.0.0/src/wast.rs +0 -552
  469. data/ext/cargo-vendor/wat-1.217.0/.cargo-checksum.json +0 -1
  470. data/ext/cargo-vendor/wat-1.217.0/Cargo.toml +0 -56
  471. data/ext/cargo-vendor/wiggle-25.0.1/.cargo-checksum.json +0 -1
  472. data/ext/cargo-vendor/wiggle-25.0.1/Cargo.toml +0 -119
  473. data/ext/cargo-vendor/wiggle-generate-25.0.1/.cargo-checksum.json +0 -1
  474. data/ext/cargo-vendor/wiggle-generate-25.0.1/Cargo.toml +0 -85
  475. data/ext/cargo-vendor/wiggle-macro-25.0.1/.cargo-checksum.json +0 -1
  476. data/ext/cargo-vendor/wiggle-macro-25.0.1/Cargo.toml +0 -78
  477. data/ext/cargo-vendor/winch-codegen-0.23.1/.cargo-checksum.json +0 -1
  478. data/ext/cargo-vendor/winch-codegen-0.23.1/Cargo.toml +0 -95
  479. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/LICENSE-APACHE +0 -0
  480. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/LICENSE-MIT +0 -0
  481. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/rust-toolchain.toml +0 -0
  482. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/src/ensure.rs +0 -0
  483. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/src/fmt.rs +0 -0
  484. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/src/macros.rs +0 -0
  485. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/src/ptr.rs +0 -0
  486. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/common/mod.rs +0 -0
  487. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/drop/mod.rs +0 -0
  488. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/test_boxed.rs +0 -0
  489. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/test_chain.rs +0 -0
  490. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/test_context.rs +0 -0
  491. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/test_convert.rs +0 -0
  492. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/test_downcast.rs +0 -0
  493. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/test_ffi.rs +0 -0
  494. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/test_macros.rs +0 -0
  495. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/test_repr.rs +0 -0
  496. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/test_source.rs +0 -0
  497. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/ui/chained-comparison.rs +0 -0
  498. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/ui/chained-comparison.stderr +0 -0
  499. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/ui/empty-ensure.rs +0 -0
  500. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/ui/empty-ensure.stderr +0 -0
  501. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/ui/ensure-nonbool.rs +0 -0
  502. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/ui/ensure-nonbool.stderr +0 -0
  503. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/ui/must-use.rs +0 -0
  504. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/ui/must-use.stderr +0 -0
  505. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/ui/no-impl.rs +0 -0
  506. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/ui/no-impl.stderr +0 -0
  507. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/ui/temporary-value.rs +0 -0
  508. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/ui/temporary-value.stderr +0 -0
  509. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/ui/wrong-interpolation.rs +0 -0
  510. /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/ui/wrong-interpolation.stderr +0 -0
  511. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/README.md +0 -0
  512. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/build.rs +0 -0
  513. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/src/c_wrapper/posix.c +0 -0
  514. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/src/interval.rs +0 -0
  515. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/src/lib.rs +0 -0
  516. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/src/state.rs +0 -0
  517. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/src/timed.rs +0 -0
  518. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/src/timer/apple.rs +0 -0
  519. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/src/timer/dummy.rs +0 -0
  520. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/src/timer/mod.rs +0 -0
  521. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/src/timer/posix.rs +0 -0
  522. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/src/timer/web.rs +0 -0
  523. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/src/timer/win.rs +0 -0
  524. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/src/utils.rs +0 -0
  525. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/tests/interval.rs +0 -0
  526. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/tests/timed.rs +0 -0
  527. /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/tests/timer.rs +0 -0
  528. /data/ext/cargo-vendor/{cranelift-bforest-0.112.1 → cranelift-bforest-0.112.2}/LICENSE +0 -0
  529. /data/ext/cargo-vendor/{cranelift-bforest-0.112.1 → cranelift-bforest-0.112.2}/README.md +0 -0
  530. /data/ext/cargo-vendor/{cranelift-bforest-0.112.1 → cranelift-bforest-0.112.2}/src/lib.rs +0 -0
  531. /data/ext/cargo-vendor/{cranelift-bforest-0.112.1 → cranelift-bforest-0.112.2}/src/map.rs +0 -0
  532. /data/ext/cargo-vendor/{cranelift-bforest-0.112.1 → cranelift-bforest-0.112.2}/src/node.rs +0 -0
  533. /data/ext/cargo-vendor/{cranelift-bforest-0.112.1 → cranelift-bforest-0.112.2}/src/path.rs +0 -0
  534. /data/ext/cargo-vendor/{cranelift-bforest-0.112.1 → cranelift-bforest-0.112.2}/src/pool.rs +0 -0
  535. /data/ext/cargo-vendor/{cranelift-bforest-0.112.1 → cranelift-bforest-0.112.2}/src/set.rs +0 -0
  536. /data/ext/cargo-vendor/{cranelift-bitset-0.112.1 → cranelift-bitset-0.112.2}/src/compound.rs +0 -0
  537. /data/ext/cargo-vendor/{cranelift-bitset-0.112.1 → cranelift-bitset-0.112.2}/src/lib.rs +0 -0
  538. /data/ext/cargo-vendor/{cranelift-bitset-0.112.1 → cranelift-bitset-0.112.2}/src/scalar.rs +0 -0
  539. /data/ext/cargo-vendor/{cranelift-bitset-0.112.1 → cranelift-bitset-0.112.2}/tests/bitset.rs +0 -0
  540. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/LICENSE +0 -0
  541. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/README.md +0 -0
  542. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/benches/x64-evex-encoding.rs +0 -0
  543. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/build.rs +0 -0
  544. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/alias_analysis.rs +0 -0
  545. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/binemit/mod.rs +0 -0
  546. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/cfg_printer.rs +0 -0
  547. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/constant_hash.rs +0 -0
  548. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/context.rs +0 -0
  549. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ctxhash.rs +0 -0
  550. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/cursor.rs +0 -0
  551. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/data_value.rs +0 -0
  552. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/dbg.rs +0 -0
  553. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/dominator_tree.rs +0 -0
  554. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/egraph/cost.rs +0 -0
  555. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/egraph/elaborate.rs +0 -0
  556. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/egraph.rs +0 -0
  557. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/flowgraph.rs +0 -0
  558. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/incremental_cache.rs +0 -0
  559. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/inst_predicates.rs +0 -0
  560. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/atomic_rmw_op.rs +0 -0
  561. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/builder.rs +0 -0
  562. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/condcodes.rs +0 -0
  563. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/constant.rs +0 -0
  564. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/dfg.rs +0 -0
  565. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/dynamic_type.rs +0 -0
  566. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/entities.rs +0 -0
  567. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/extfunc.rs +0 -0
  568. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/extname.rs +0 -0
  569. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/function.rs +0 -0
  570. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/globalvalue.rs +0 -0
  571. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/immediates.rs +0 -0
  572. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/instructions.rs +0 -0
  573. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/jumptable.rs +0 -0
  574. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/known_symbol.rs +0 -0
  575. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/layout.rs +0 -0
  576. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/libcall.rs +0 -0
  577. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/memflags.rs +0 -0
  578. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/memtype.rs +0 -0
  579. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/mod.rs +0 -0
  580. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/pcc.rs +0 -0
  581. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/progpoint.rs +0 -0
  582. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/sourceloc.rs +0 -0
  583. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/stackslot.rs +0 -0
  584. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/trapcode.rs +0 -0
  585. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/types.rs +0 -0
  586. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ir/user_stack_maps.rs +0 -0
  587. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/aarch64/abi.rs +0 -0
  588. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/aarch64/inst/args.rs +0 -0
  589. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/aarch64/inst/emit.rs +0 -0
  590. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/aarch64/inst/emit_tests.rs +0 -0
  591. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/aarch64/inst/imms.rs +0 -0
  592. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/aarch64/inst/mod.rs +0 -0
  593. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/aarch64/inst/regs.rs +0 -0
  594. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/aarch64/inst/unwind/systemv.rs +0 -0
  595. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/aarch64/inst/unwind.rs +0 -0
  596. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/aarch64/inst.isle +0 -0
  597. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/aarch64/inst_neon.isle +0 -0
  598. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/aarch64/lower/isle/generated_code.rs +0 -0
  599. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/aarch64/lower/isle.rs +0 -0
  600. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/aarch64/lower.isle +0 -0
  601. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/aarch64/lower.rs +0 -0
  602. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/aarch64/lower_dynamic_neon.isle +0 -0
  603. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/aarch64/mod.rs +0 -0
  604. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/aarch64/pcc.rs +0 -0
  605. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/aarch64/settings.rs +0 -0
  606. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/call_conv.rs +0 -0
  607. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/mod.rs +0 -0
  608. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/pulley32.rs +0 -0
  609. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/pulley64.rs +0 -0
  610. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/pulley_shared/abi.rs +0 -0
  611. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/pulley_shared/inst/args.rs +0 -0
  612. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/pulley_shared/inst/emit.rs +0 -0
  613. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/pulley_shared/inst/mod.rs +0 -0
  614. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/pulley_shared/inst/regs.rs +0 -0
  615. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/pulley_shared/inst.isle +0 -0
  616. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/pulley_shared/lower/isle/generated_code.rs +0 -0
  617. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/pulley_shared/lower/isle.rs +0 -0
  618. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/pulley_shared/lower.isle +0 -0
  619. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/pulley_shared/lower.rs +0 -0
  620. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/pulley_shared/mod.rs +0 -0
  621. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/pulley_shared/settings.rs +0 -0
  622. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/riscv64/abi.rs +0 -0
  623. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/riscv64/inst/args.rs +0 -0
  624. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/riscv64/inst/emit.rs +0 -0
  625. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/riscv64/inst/emit_tests.rs +0 -0
  626. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/riscv64/inst/encode.rs +0 -0
  627. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/riscv64/inst/imms.rs +0 -0
  628. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/riscv64/inst/mod.rs +0 -0
  629. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/riscv64/inst/regs.rs +0 -0
  630. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/riscv64/inst/unwind/systemv.rs +0 -0
  631. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/riscv64/inst/unwind.rs +0 -0
  632. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/riscv64/inst/vector.rs +0 -0
  633. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/riscv64/inst.isle +0 -0
  634. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/riscv64/inst_vector.isle +0 -0
  635. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/riscv64/lower/isle/generated_code.rs +0 -0
  636. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/riscv64/lower/isle.rs +0 -0
  637. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/riscv64/lower.isle +0 -0
  638. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/riscv64/lower.rs +0 -0
  639. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/riscv64/mod.rs +0 -0
  640. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/riscv64/settings.rs +0 -0
  641. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/s390x/abi.rs +0 -0
  642. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/s390x/inst/args.rs +0 -0
  643. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/s390x/inst/emit.rs +0 -0
  644. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/s390x/inst/emit_tests.rs +0 -0
  645. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/s390x/inst/imms.rs +0 -0
  646. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/s390x/inst/mod.rs +0 -0
  647. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/s390x/inst/regs.rs +0 -0
  648. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/s390x/inst/unwind/systemv.rs +0 -0
  649. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/s390x/inst/unwind.rs +0 -0
  650. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/s390x/inst.isle +0 -0
  651. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/s390x/lower/isle/generated_code.rs +0 -0
  652. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/s390x/lower/isle.rs +0 -0
  653. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/s390x/lower.isle +0 -0
  654. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/s390x/lower.rs +0 -0
  655. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/s390x/mod.rs +0 -0
  656. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/s390x/settings.rs +0 -0
  657. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/unwind/systemv.rs +0 -0
  658. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/unwind/winx64.rs +0 -0
  659. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/unwind.rs +0 -0
  660. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/abi.rs +0 -0
  661. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/encoding/evex.rs +0 -0
  662. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/encoding/mod.rs +0 -0
  663. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/encoding/rex.rs +0 -0
  664. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/encoding/vex.rs +0 -0
  665. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/inst/args.rs +0 -0
  666. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/inst/emit.rs +0 -0
  667. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/inst/emit_state.rs +0 -0
  668. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/inst/emit_tests.rs +0 -0
  669. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/inst/mod.rs +0 -0
  670. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/inst/regs.rs +0 -0
  671. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/inst/stack_switch.rs +0 -0
  672. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/inst/unwind/systemv.rs +0 -0
  673. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/inst/unwind/winx64.rs +0 -0
  674. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/inst/unwind.rs +0 -0
  675. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/inst.isle +0 -0
  676. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/lower/isle/generated_code.rs +0 -0
  677. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/lower/isle.rs +0 -0
  678. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/lower.isle +0 -0
  679. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/lower.rs +0 -0
  680. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/mod.rs +0 -0
  681. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/pcc.rs +0 -0
  682. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isa/x64/settings.rs +0 -0
  683. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/isle_prelude.rs +0 -0
  684. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/iterators.rs +0 -0
  685. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/legalizer/globalvalue.rs +0 -0
  686. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/legalizer/mod.rs +0 -0
  687. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/lib.rs +0 -0
  688. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/loop_analysis.rs +0 -0
  689. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/machinst/abi.rs +0 -0
  690. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/machinst/blockorder.rs +0 -0
  691. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/machinst/buffer.rs +0 -0
  692. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/machinst/compile.rs +0 -0
  693. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/machinst/helpers.rs +0 -0
  694. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/machinst/inst_common.rs +0 -0
  695. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/machinst/isle.rs +0 -0
  696. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/machinst/lower.rs +0 -0
  697. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/machinst/mod.rs +0 -0
  698. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/machinst/pcc.rs +0 -0
  699. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/machinst/reg.rs +0 -0
  700. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/machinst/valueregs.rs +0 -0
  701. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/machinst/vcode.rs +0 -0
  702. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/nan_canonicalization.rs +0 -0
  703. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/opts/README.md +0 -0
  704. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/opts/arithmetic.isle +0 -0
  705. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/opts/bitops.isle +0 -0
  706. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/opts/cprop.isle +0 -0
  707. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/opts/extends.isle +0 -0
  708. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/opts/generated_code.rs +0 -0
  709. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/opts/icmp.isle +0 -0
  710. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/opts/remat.isle +0 -0
  711. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/opts/selects.isle +0 -0
  712. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/opts/shifts.isle +0 -0
  713. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/opts/spaceship.isle +0 -0
  714. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/opts/spectre.isle +0 -0
  715. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/opts/vector.isle +0 -0
  716. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/opts.rs +0 -0
  717. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/prelude.isle +0 -0
  718. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/prelude_lower.isle +0 -0
  719. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/prelude_opt.isle +0 -0
  720. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/print_errors.rs +0 -0
  721. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/ranges.rs +0 -0
  722. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/remove_constant_phis.rs +0 -0
  723. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/result.rs +0 -0
  724. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/scoped_hash_map.rs +0 -0
  725. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/settings.rs +0 -0
  726. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/souper_harvest.rs +0 -0
  727. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/timing.rs +0 -0
  728. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/traversals.rs +0 -0
  729. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/unionfind.rs +0 -0
  730. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/unreachable_code.rs +0 -0
  731. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/value_label.rs +0 -0
  732. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/verifier/mod.rs +0 -0
  733. /data/ext/cargo-vendor/{cranelift-codegen-0.112.1 → cranelift-codegen-0.112.2}/src/write.rs +0 -0
  734. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/LICENSE +0 -0
  735. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/README.md +0 -0
  736. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/cdsl/formats.rs +0 -0
  737. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/cdsl/instructions.rs +0 -0
  738. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/cdsl/isa.rs +0 -0
  739. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/cdsl/mod.rs +0 -0
  740. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/cdsl/operands.rs +0 -0
  741. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/cdsl/settings.rs +0 -0
  742. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/cdsl/types.rs +0 -0
  743. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/cdsl/typevar.rs +0 -0
  744. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/constant_hash.rs +0 -0
  745. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/error.rs +0 -0
  746. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/gen_inst.rs +0 -0
  747. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/gen_isle.rs +0 -0
  748. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/gen_settings.rs +0 -0
  749. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/gen_types.rs +0 -0
  750. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/isa/arm64.rs +0 -0
  751. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/isa/mod.rs +0 -0
  752. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/isa/pulley.rs +0 -0
  753. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/isa/riscv64.rs +0 -0
  754. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/isa/s390x.rs +0 -0
  755. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/isa/x86.rs +0 -0
  756. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/isle.rs +0 -0
  757. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/lib.rs +0 -0
  758. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/shared/entities.rs +0 -0
  759. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/shared/formats.rs +0 -0
  760. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/shared/immediates.rs +0 -0
  761. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/shared/instructions.rs +0 -0
  762. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/shared/mod.rs +0 -0
  763. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/shared/settings.rs +0 -0
  764. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/shared/types.rs +0 -0
  765. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/srcgen.rs +0 -0
  766. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.1 → cranelift-codegen-meta-0.112.2}/src/unique_table.rs +0 -0
  767. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.112.1 → cranelift-codegen-shared-0.112.2}/LICENSE +0 -0
  768. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.112.1 → cranelift-codegen-shared-0.112.2}/README.md +0 -0
  769. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.112.1 → cranelift-codegen-shared-0.112.2}/src/constant_hash.rs +0 -0
  770. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.112.1 → cranelift-codegen-shared-0.112.2}/src/constants.rs +0 -0
  771. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.112.1 → cranelift-codegen-shared-0.112.2}/src/lib.rs +0 -0
  772. /data/ext/cargo-vendor/{cranelift-control-0.112.1 → cranelift-control-0.112.2}/LICENSE +0 -0
  773. /data/ext/cargo-vendor/{cranelift-control-0.112.1 → cranelift-control-0.112.2}/README.md +0 -0
  774. /data/ext/cargo-vendor/{cranelift-control-0.112.1 → cranelift-control-0.112.2}/src/chaos.rs +0 -0
  775. /data/ext/cargo-vendor/{cranelift-control-0.112.1 → cranelift-control-0.112.2}/src/lib.rs +0 -0
  776. /data/ext/cargo-vendor/{cranelift-control-0.112.1 → cranelift-control-0.112.2}/src/zero_sized.rs +0 -0
  777. /data/ext/cargo-vendor/{cranelift-entity-0.112.1 → cranelift-entity-0.112.2}/LICENSE +0 -0
  778. /data/ext/cargo-vendor/{cranelift-entity-0.112.1 → cranelift-entity-0.112.2}/README.md +0 -0
  779. /data/ext/cargo-vendor/{cranelift-entity-0.112.1 → cranelift-entity-0.112.2}/src/boxed_slice.rs +0 -0
  780. /data/ext/cargo-vendor/{cranelift-entity-0.112.1 → cranelift-entity-0.112.2}/src/iter.rs +0 -0
  781. /data/ext/cargo-vendor/{cranelift-entity-0.112.1 → cranelift-entity-0.112.2}/src/keys.rs +0 -0
  782. /data/ext/cargo-vendor/{cranelift-entity-0.112.1 → cranelift-entity-0.112.2}/src/lib.rs +0 -0
  783. /data/ext/cargo-vendor/{cranelift-entity-0.112.1 → cranelift-entity-0.112.2}/src/list.rs +0 -0
  784. /data/ext/cargo-vendor/{cranelift-entity-0.112.1 → cranelift-entity-0.112.2}/src/map.rs +0 -0
  785. /data/ext/cargo-vendor/{cranelift-entity-0.112.1 → cranelift-entity-0.112.2}/src/packed_option.rs +0 -0
  786. /data/ext/cargo-vendor/{cranelift-entity-0.112.1 → cranelift-entity-0.112.2}/src/primary.rs +0 -0
  787. /data/ext/cargo-vendor/{cranelift-entity-0.112.1 → cranelift-entity-0.112.2}/src/set.rs +0 -0
  788. /data/ext/cargo-vendor/{cranelift-entity-0.112.1 → cranelift-entity-0.112.2}/src/sparse.rs +0 -0
  789. /data/ext/cargo-vendor/{cranelift-entity-0.112.1 → cranelift-entity-0.112.2}/src/unsigned.rs +0 -0
  790. /data/ext/cargo-vendor/{cranelift-frontend-0.112.1 → cranelift-frontend-0.112.2}/LICENSE +0 -0
  791. /data/ext/cargo-vendor/{cranelift-frontend-0.112.1 → cranelift-frontend-0.112.2}/README.md +0 -0
  792. /data/ext/cargo-vendor/{cranelift-frontend-0.112.1 → cranelift-frontend-0.112.2}/src/frontend/safepoints.rs +0 -0
  793. /data/ext/cargo-vendor/{cranelift-frontend-0.112.1 → cranelift-frontend-0.112.2}/src/frontend.rs +0 -0
  794. /data/ext/cargo-vendor/{cranelift-frontend-0.112.1 → cranelift-frontend-0.112.2}/src/lib.rs +0 -0
  795. /data/ext/cargo-vendor/{cranelift-frontend-0.112.1 → cranelift-frontend-0.112.2}/src/ssa.rs +0 -0
  796. /data/ext/cargo-vendor/{cranelift-frontend-0.112.1 → cranelift-frontend-0.112.2}/src/switch.rs +0 -0
  797. /data/ext/cargo-vendor/{cranelift-frontend-0.112.1 → cranelift-frontend-0.112.2}/src/variable.rs +0 -0
  798. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/README.md +0 -0
  799. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/build.rs +0 -0
  800. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/fail/bad_converters.isle +0 -0
  801. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/fail/bound_var_type_mismatch.isle +0 -0
  802. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/fail/converter_extractor_constructor.isle +0 -0
  803. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/fail/error1.isle +0 -0
  804. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/fail/extra_parens.isle +0 -0
  805. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/fail/impure_expression.isle +0 -0
  806. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/fail/impure_rhs.isle +0 -0
  807. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/fail/multi_internal_etor.isle +0 -0
  808. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/fail/multi_prio.isle +0 -0
  809. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/link/borrows.isle +0 -0
  810. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/link/borrows_main.rs +0 -0
  811. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/link/iflets.isle +0 -0
  812. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/link/iflets_main.rs +0 -0
  813. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/link/multi_constructor.isle +0 -0
  814. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/link/multi_constructor_main.rs +0 -0
  815. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/link/multi_extractor.isle +0 -0
  816. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/link/multi_extractor_main.rs +0 -0
  817. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/link/test.isle +0 -0
  818. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/link/test_main.rs +0 -0
  819. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/pass/bound_var.isle +0 -0
  820. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/pass/construct_and_extract.isle +0 -0
  821. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/pass/conversions.isle +0 -0
  822. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/pass/conversions_extern.isle +0 -0
  823. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/pass/let.isle +0 -0
  824. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/pass/nodebug.isle +0 -0
  825. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/pass/prio_trie_bug.isle +0 -0
  826. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/pass/test2.isle +0 -0
  827. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/pass/test3.isle +0 -0
  828. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/pass/test4.isle +0 -0
  829. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/pass/tutorial.isle +0 -0
  830. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/run/iconst.isle +0 -0
  831. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/run/iconst_main.rs +0 -0
  832. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/run/let_shadowing.isle +0 -0
  833. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/isle_examples/run/let_shadowing_main.rs +0 -0
  834. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/src/ast.rs +0 -0
  835. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/src/codegen.rs +0 -0
  836. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/src/compile.rs +0 -0
  837. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/src/disjointsets.rs +0 -0
  838. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/src/error.rs +0 -0
  839. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/src/files.rs +0 -0
  840. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/src/lexer.rs +0 -0
  841. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/src/lib.rs +0 -0
  842. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/src/log.rs +0 -0
  843. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/src/overlap.rs +0 -0
  844. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/src/parser.rs +0 -0
  845. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/src/sema.rs +0 -0
  846. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/src/serialize.rs +0 -0
  847. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/src/stablemapset.rs +0 -0
  848. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/src/trie_again.rs +0 -0
  849. /data/ext/cargo-vendor/{cranelift-isle-0.112.1 → cranelift-isle-0.112.2}/tests/run_tests.rs +0 -0
  850. /data/ext/cargo-vendor/{cranelift-native-0.112.1 → cranelift-native-0.112.2}/LICENSE +0 -0
  851. /data/ext/cargo-vendor/{cranelift-native-0.112.1 → cranelift-native-0.112.2}/README.md +0 -0
  852. /data/ext/cargo-vendor/{cranelift-native-0.112.1 → cranelift-native-0.112.2}/src/lib.rs +0 -0
  853. /data/ext/cargo-vendor/{cranelift-native-0.112.1 → cranelift-native-0.112.2}/src/riscv.rs +0 -0
  854. /data/ext/cargo-vendor/{cranelift-wasm-0.112.1 → cranelift-wasm-0.112.2}/LICENSE +0 -0
  855. /data/ext/cargo-vendor/{cranelift-wasm-0.112.1 → cranelift-wasm-0.112.2}/README.md +0 -0
  856. /data/ext/cargo-vendor/{cranelift-wasm-0.112.1 → cranelift-wasm-0.112.2}/src/code_translator/bounds_checks.rs +0 -0
  857. /data/ext/cargo-vendor/{cranelift-wasm-0.112.1 → cranelift-wasm-0.112.2}/src/code_translator.rs +0 -0
  858. /data/ext/cargo-vendor/{cranelift-wasm-0.112.1 → cranelift-wasm-0.112.2}/src/environ/dummy.rs +0 -0
  859. /data/ext/cargo-vendor/{cranelift-wasm-0.112.1 → cranelift-wasm-0.112.2}/src/environ/mod.rs +0 -0
  860. /data/ext/cargo-vendor/{cranelift-wasm-0.112.1 → cranelift-wasm-0.112.2}/src/environ/spec.rs +0 -0
  861. /data/ext/cargo-vendor/{cranelift-wasm-0.112.1 → cranelift-wasm-0.112.2}/src/func_translator.rs +0 -0
  862. /data/ext/cargo-vendor/{cranelift-wasm-0.112.1 → cranelift-wasm-0.112.2}/src/heap.rs +0 -0
  863. /data/ext/cargo-vendor/{cranelift-wasm-0.112.1 → cranelift-wasm-0.112.2}/src/lib.rs +0 -0
  864. /data/ext/cargo-vendor/{cranelift-wasm-0.112.1 → cranelift-wasm-0.112.2}/src/module_translator.rs +0 -0
  865. /data/ext/cargo-vendor/{cranelift-wasm-0.112.1 → cranelift-wasm-0.112.2}/src/sections_translator.rs +0 -0
  866. /data/ext/cargo-vendor/{cranelift-wasm-0.112.1 → cranelift-wasm-0.112.2}/src/state.rs +0 -0
  867. /data/ext/cargo-vendor/{cranelift-wasm-0.112.1 → cranelift-wasm-0.112.2}/src/table.rs +0 -0
  868. /data/ext/cargo-vendor/{cranelift-wasm-0.112.1 → cranelift-wasm-0.112.2}/src/translation_utils.rs +0 -0
  869. /data/ext/cargo-vendor/{pulley-interpreter-0.1.1 → pulley-interpreter-0.1.2}/README.md +0 -0
  870. /data/ext/cargo-vendor/{pulley-interpreter-0.1.1 → pulley-interpreter-0.1.2}/src/decode.rs +0 -0
  871. /data/ext/cargo-vendor/{pulley-interpreter-0.1.1 → pulley-interpreter-0.1.2}/src/disas.rs +0 -0
  872. /data/ext/cargo-vendor/{pulley-interpreter-0.1.1 → pulley-interpreter-0.1.2}/src/encode.rs +0 -0
  873. /data/ext/cargo-vendor/{pulley-interpreter-0.1.1 → pulley-interpreter-0.1.2}/src/imms.rs +0 -0
  874. /data/ext/cargo-vendor/{pulley-interpreter-0.1.1 → pulley-interpreter-0.1.2}/src/interp.rs +0 -0
  875. /data/ext/cargo-vendor/{pulley-interpreter-0.1.1 → pulley-interpreter-0.1.2}/src/lib.rs +0 -0
  876. /data/ext/cargo-vendor/{pulley-interpreter-0.1.1 → pulley-interpreter-0.1.2}/src/op.rs +0 -0
  877. /data/ext/cargo-vendor/{pulley-interpreter-0.1.1 → pulley-interpreter-0.1.2}/src/opcode.rs +0 -0
  878. /data/ext/cargo-vendor/{pulley-interpreter-0.1.1 → pulley-interpreter-0.1.2}/src/regs.rs +0 -0
  879. /data/ext/cargo-vendor/{pulley-interpreter-0.1.1 → pulley-interpreter-0.1.2}/tests/all/disas.rs +0 -0
  880. /data/ext/cargo-vendor/{pulley-interpreter-0.1.1 → pulley-interpreter-0.1.2}/tests/all/interp.rs +0 -0
  881. /data/ext/cargo-vendor/{pulley-interpreter-0.1.1 → pulley-interpreter-0.1.2}/tests/all/main.rs +0 -0
  882. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/LICENSE +0 -0
  883. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/docs/reactor-refactor.md +0 -0
  884. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/blocking.rs +0 -0
  885. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/doc/mod.rs +0 -0
  886. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/doc/os.rs +0 -0
  887. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/canonicalize.rs +0 -0
  888. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/copy.rs +0 -0
  889. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/create_dir.rs +0 -0
  890. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/create_dir_all.rs +0 -0
  891. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/dir_builder.rs +0 -0
  892. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/file/tests.rs +0 -0
  893. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/hard_link.rs +0 -0
  894. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/metadata.rs +0 -0
  895. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/mocks.rs +0 -0
  896. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/mod.rs +0 -0
  897. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/open_options/mock_open_options.rs +0 -0
  898. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/open_options.rs +0 -0
  899. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/read.rs +0 -0
  900. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/read_link.rs +0 -0
  901. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/read_to_string.rs +0 -0
  902. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/remove_dir.rs +0 -0
  903. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/remove_dir_all.rs +0 -0
  904. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/remove_file.rs +0 -0
  905. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/rename.rs +0 -0
  906. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/set_permissions.rs +0 -0
  907. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/symlink.rs +0 -0
  908. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/symlink_dir.rs +0 -0
  909. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/symlink_file.rs +0 -0
  910. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/symlink_metadata.rs +0 -0
  911. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/write.rs +0 -0
  912. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/future/block_on.rs +0 -0
  913. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/future/mod.rs +0 -0
  914. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/future/poll_fn.rs +0 -0
  915. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/future/trace.rs +0 -0
  916. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/future/try_join.rs +0 -0
  917. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fuzz.rs +0 -0
  918. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/async_buf_read.rs +0 -0
  919. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/async_seek.rs +0 -0
  920. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/async_write.rs +0 -0
  921. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/interest.rs +0 -0
  922. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/join.rs +0 -0
  923. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/read_buf.rs +0 -0
  924. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/ready.rs +0 -0
  925. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/split.rs +0 -0
  926. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/stderr.rs +0 -0
  927. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/stdin.rs +0 -0
  928. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/stdio_common.rs +0 -0
  929. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/stdout.rs +0 -0
  930. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/util/async_buf_read_ext.rs +0 -0
  931. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/util/async_read_ext.rs +0 -0
  932. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/util/async_seek_ext.rs +0 -0
  933. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/util/async_write_ext.rs +0 -0
  934. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/util/buf_stream.rs +0 -0
  935. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/util/fill_buf.rs +0 -0
  936. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/util/flush.rs +0 -0
  937. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/util/shutdown.rs +0 -0
  938. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/util/vec_with_initialized.rs +0 -0
  939. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/util/write.rs +0 -0
  940. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/util/write_vectored.rs +0 -0
  941. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/loom/mod.rs +0 -0
  942. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/loom/std/atomic_u64.rs +0 -0
  943. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/loom/std/atomic_u64_as_mutex.rs +0 -0
  944. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/loom/std/atomic_u64_native.rs +0 -0
  945. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/loom/std/atomic_u64_static_const_new.rs +0 -0
  946. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/loom/std/atomic_u64_static_once_cell.rs +0 -0
  947. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/loom/std/barrier.rs +0 -0
  948. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/loom/std/mod.rs +0 -0
  949. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/loom/std/parking_lot.rs +0 -0
  950. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/loom/std/unsafe_cell.rs +0 -0
  951. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/macros/addr_of.rs +0 -0
  952. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/macros/cfg.rs +0 -0
  953. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/macros/join.rs +0 -0
  954. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/macros/loom.rs +0 -0
  955. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/macros/pin.rs +0 -0
  956. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/macros/support.rs +0 -0
  957. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/macros/thread_local.rs +0 -0
  958. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/macros/trace.rs +0 -0
  959. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/macros/try_join.rs +0 -0
  960. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/lookup_host.rs +0 -0
  961. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/mod.rs +0 -0
  962. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/tcp/mod.rs +0 -0
  963. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/tcp/socket.rs +0 -0
  964. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/tcp/split.rs +0 -0
  965. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/tcp/split_owned.rs +0 -0
  966. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/unix/datagram/mod.rs +0 -0
  967. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/unix/mod.rs +0 -0
  968. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/unix/pipe.rs +0 -0
  969. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/unix/socket.rs +0 -0
  970. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/unix/socketaddr.rs +0 -0
  971. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/unix/split.rs +0 -0
  972. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/unix/split_owned.rs +0 -0
  973. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/unix/stream.rs +0 -0
  974. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/unix/ucred.rs +0 -0
  975. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/windows/mod.rs +0 -0
  976. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/windows/named_pipe.rs +0 -0
  977. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/process/kill.rs +0 -0
  978. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/process/unix/mod.rs +0 -0
  979. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/process/unix/orphan.rs +0 -0
  980. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/process/unix/reap.rs +0 -0
  981. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/process/windows.rs +0 -0
  982. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/blocking/mod.rs +0 -0
  983. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/blocking/shutdown.rs +0 -0
  984. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/blocking/task.rs +0 -0
  985. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/context/blocking.rs +0 -0
  986. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/context/current.rs +0 -0
  987. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/context/runtime.rs +0 -0
  988. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/context/runtime_mt.rs +0 -0
  989. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/context/scoped.rs +0 -0
  990. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/context.rs +0 -0
  991. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/driver.rs +0 -0
  992. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/dump.rs +0 -0
  993. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/handle.rs +0 -0
  994. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/id.rs +0 -0
  995. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/io/driver/signal.rs +0 -0
  996. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/io/driver.rs +0 -0
  997. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/io/metrics.rs +0 -0
  998. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/io/mod.rs +0 -0
  999. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/io/registration_set.rs +0 -0
  1000. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/io/scheduled_io.rs +0 -0
  1001. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/metrics/batch.rs +0 -0
  1002. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/metrics/histogram.rs +0 -0
  1003. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/metrics/io.rs +0 -0
  1004. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/metrics/mock.rs +0 -0
  1005. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/metrics/mod.rs +0 -0
  1006. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/metrics/runtime.rs +0 -0
  1007. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/metrics/scheduler.rs +0 -0
  1008. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/metrics/worker.rs +0 -0
  1009. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/park.rs +0 -0
  1010. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/process.rs +0 -0
  1011. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/runtime.rs +0 -0
  1012. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/block_in_place.rs +0 -0
  1013. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/defer.rs +0 -0
  1014. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/inject/metrics.rs +0 -0
  1015. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/inject/pop.rs +0 -0
  1016. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/inject/rt_multi_thread.rs +0 -0
  1017. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/inject/shared.rs +0 -0
  1018. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/inject/synced.rs +0 -0
  1019. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/inject.rs +0 -0
  1020. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/lock.rs +0 -0
  1021. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread/counters.rs +0 -0
  1022. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread/handle/metrics.rs +0 -0
  1023. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread/handle/taskdump.rs +0 -0
  1024. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread/idle.rs +0 -0
  1025. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread/mod.rs +0 -0
  1026. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread/overflow.rs +0 -0
  1027. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread/park.rs +0 -0
  1028. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread/queue.rs +0 -0
  1029. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread/stats.rs +0 -0
  1030. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread/trace.rs +0 -0
  1031. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread/trace_mock.rs +0 -0
  1032. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread/worker/metrics.rs +0 -0
  1033. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread/worker/taskdump.rs +0 -0
  1034. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread/worker/taskdump_mock.rs +0 -0
  1035. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread_alt/counters.rs +0 -0
  1036. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread_alt/handle/metrics.rs +0 -0
  1037. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread_alt/handle/taskdump.rs +0 -0
  1038. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread_alt/idle.rs +0 -0
  1039. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread_alt/mod.rs +0 -0
  1040. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread_alt/overflow.rs +0 -0
  1041. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread_alt/park.rs +0 -0
  1042. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread_alt/queue.rs +0 -0
  1043. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread_alt/stats.rs +0 -0
  1044. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread_alt/trace.rs +0 -0
  1045. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread_alt/trace_mock.rs +0 -0
  1046. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread_alt/worker/metrics.rs +0 -0
  1047. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread_alt/worker/taskdump.rs +0 -0
  1048. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread_alt/worker/taskdump_mock.rs +0 -0
  1049. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/signal/mod.rs +0 -0
  1050. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/task/abort.rs +0 -0
  1051. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/task/list.rs +0 -0
  1052. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/task/raw.rs +0 -0
  1053. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/task/state.rs +0 -0
  1054. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/task/trace/mod.rs +0 -0
  1055. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/task/trace/symbol.rs +0 -0
  1056. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/task/trace/tree.rs +0 -0
  1057. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/task/waker.rs +0 -0
  1058. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/tests/inject.rs +0 -0
  1059. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/tests/loom_blocking.rs +0 -0
  1060. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/tests/loom_current_thread/yield_now.rs +0 -0
  1061. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/tests/loom_current_thread.rs +0 -0
  1062. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/tests/loom_join_set.rs +0 -0
  1063. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/tests/loom_local.rs +0 -0
  1064. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/tests/loom_multi_thread/queue.rs +0 -0
  1065. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/tests/loom_multi_thread/shutdown.rs +0 -0
  1066. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/tests/loom_multi_thread/yield_now.rs +0 -0
  1067. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/tests/loom_multi_thread_alt/queue.rs +0 -0
  1068. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/tests/loom_multi_thread_alt/shutdown.rs +0 -0
  1069. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/tests/loom_multi_thread_alt/yield_now.rs +0 -0
  1070. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/tests/loom_oneshot.rs +0 -0
  1071. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/tests/task_combinations.rs +0 -0
  1072. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/thread_id.rs +0 -0
  1073. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/time/entry.rs +0 -0
  1074. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/time/handle.rs +0 -0
  1075. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/time/source.rs +0 -0
  1076. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/time/tests/mod.rs +0 -0
  1077. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/time/wheel/level.rs +0 -0
  1078. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/time/wheel/mod.rs +0 -0
  1079. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/signal/ctrl_c.rs +0 -0
  1080. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/signal/mod.rs +0 -0
  1081. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/signal/registry.rs +0 -0
  1082. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/signal/reusable_box.rs +0 -0
  1083. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/signal/unix.rs +0 -0
  1084. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/signal/windows/stub.rs +0 -0
  1085. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/signal/windows/sys.rs +0 -0
  1086. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/signal/windows.rs +0 -0
  1087. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/barrier.rs +0 -0
  1088. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/mod.rs +0 -0
  1089. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/mpsc/block.rs +0 -0
  1090. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/mpsc/bounded.rs +0 -0
  1091. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/mpsc/list.rs +0 -0
  1092. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/mpsc/unbounded.rs +0 -0
  1093. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/mutex.rs +0 -0
  1094. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/once_cell.rs +0 -0
  1095. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/rwlock/owned_read_guard.rs +0 -0
  1096. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/rwlock/owned_write_guard.rs +0 -0
  1097. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/rwlock/owned_write_guard_mapped.rs +0 -0
  1098. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/rwlock/read_guard.rs +0 -0
  1099. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/rwlock/write_guard.rs +0 -0
  1100. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/rwlock/write_guard_mapped.rs +0 -0
  1101. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/rwlock.rs +0 -0
  1102. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/semaphore.rs +0 -0
  1103. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/task/atomic_waker.rs +0 -0
  1104. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/task/mod.rs +0 -0
  1105. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/tests/atomic_waker.rs +0 -0
  1106. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/tests/loom_atomic_waker.rs +0 -0
  1107. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/tests/loom_broadcast.rs +0 -0
  1108. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/tests/loom_list.rs +0 -0
  1109. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/tests/loom_mpsc.rs +0 -0
  1110. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/tests/loom_notify.rs +0 -0
  1111. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/tests/loom_oneshot.rs +0 -0
  1112. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/tests/loom_rwlock.rs +0 -0
  1113. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/tests/loom_semaphore_batch.rs +0 -0
  1114. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/tests/loom_watch.rs +0 -0
  1115. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/tests/mod.rs +0 -0
  1116. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/tests/notify.rs +0 -0
  1117. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/tests/semaphore_batch.rs +0 -0
  1118. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/watch.rs +0 -0
  1119. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/task/blocking.rs +0 -0
  1120. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/task/builder.rs +0 -0
  1121. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/task/mod.rs +0 -0
  1122. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/task/task_local.rs +0 -0
  1123. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/task/unconstrained.rs +0 -0
  1124. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/time/clock.rs +0 -0
  1125. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/time/error.rs +0 -0
  1126. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/time/instant.rs +0 -0
  1127. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/time/mod.rs +0 -0
  1128. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/time/timeout.rs +0 -0
  1129. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/atomic_cell.rs +0 -0
  1130. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/cacheline.rs +0 -0
  1131. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/error.rs +0 -0
  1132. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/idle_notified_set.rs +0 -0
  1133. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/linked_list.rs +0 -0
  1134. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/markers.rs +0 -0
  1135. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/memchr.rs +0 -0
  1136. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/metric_atomics.rs +0 -0
  1137. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/mod.rs +0 -0
  1138. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/once_cell.rs +0 -0
  1139. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/rand/rt.rs +0 -0
  1140. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/rand/rt_unstable.rs +0 -0
  1141. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/rand.rs +0 -0
  1142. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/rc_cell.rs +0 -0
  1143. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/sharded_list.rs +0 -0
  1144. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/trace.rs +0 -0
  1145. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/try_lock.rs +0 -0
  1146. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/wake.rs +0 -0
  1147. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/wake_list.rs +0 -0
  1148. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/_require_full.rs +0 -0
  1149. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/buffered.rs +0 -0
  1150. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/coop_budget.rs +0 -0
  1151. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/dump.rs +0 -0
  1152. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/duplex_stream.rs +0 -0
  1153. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/fs.rs +0 -0
  1154. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/fs_canonicalize_dir.rs +0 -0
  1155. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/fs_copy.rs +0 -0
  1156. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/fs_dir.rs +0 -0
  1157. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/fs_file.rs +0 -0
  1158. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/fs_link.rs +0 -0
  1159. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/fs_open_options.rs +0 -0
  1160. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/fs_open_options_windows.rs +0 -0
  1161. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/fs_remove_dir_all.rs +0 -0
  1162. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/fs_remove_file.rs +0 -0
  1163. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/fs_rename.rs +0 -0
  1164. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/fs_symlink_dir_windows.rs +0 -0
  1165. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/fs_symlink_file_windows.rs +0 -0
  1166. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/fs_try_exists.rs +0 -0
  1167. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_async_read.rs +0 -0
  1168. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_buf_reader.rs +0 -0
  1169. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_buf_writer.rs +0 -0
  1170. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_chain.rs +0 -0
  1171. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_copy_bidirectional.rs +0 -0
  1172. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_driver.rs +0 -0
  1173. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_driver_drop.rs +0 -0
  1174. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_fill_buf.rs +0 -0
  1175. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_join.rs +0 -0
  1176. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_lines.rs +0 -0
  1177. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_mem_stream.rs +0 -0
  1178. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_panic.rs +0 -0
  1179. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_poll_aio.rs +0 -0
  1180. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_read.rs +0 -0
  1181. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_read_buf.rs +0 -0
  1182. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_read_exact.rs +0 -0
  1183. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_read_line.rs +0 -0
  1184. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_read_to_end.rs +0 -0
  1185. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_read_to_string.rs +0 -0
  1186. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_read_until.rs +0 -0
  1187. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_repeat.rs +0 -0
  1188. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_sink.rs +0 -0
  1189. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_split.rs +0 -0
  1190. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_take.rs +0 -0
  1191. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_util_empty.rs +0 -0
  1192. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_write.rs +0 -0
  1193. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_write_all.rs +0 -0
  1194. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_write_buf.rs +0 -0
  1195. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_write_int.rs +0 -0
  1196. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/join_handle_panic.rs +0 -0
  1197. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/macros_pin.rs +0 -0
  1198. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/macros_rename_test.rs +0 -0
  1199. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/macros_select.rs +0 -0
  1200. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/macros_test.rs +0 -0
  1201. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/macros_try_join.rs +0 -0
  1202. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/net_bind_resource.rs +0 -0
  1203. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/net_lookup_host.rs +0 -0
  1204. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/net_named_pipe.rs +0 -0
  1205. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/net_panic.rs +0 -0
  1206. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/net_unix_pipe.rs +0 -0
  1207. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/no_rt.rs +0 -0
  1208. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/process_arg0.rs +0 -0
  1209. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/process_change_of_runtime.rs +0 -0
  1210. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/process_issue_2174.rs +0 -0
  1211. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/process_issue_42.rs +0 -0
  1212. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/process_kill_on_drop.rs +0 -0
  1213. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/process_raw_handle.rs +0 -0
  1214. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/process_smoke.rs +0 -0
  1215. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/rt_basic.rs +0 -0
  1216. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/rt_common.rs +0 -0
  1217. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/rt_handle.rs +0 -0
  1218. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/rt_handle_block_on.rs +0 -0
  1219. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/rt_metrics.rs +0 -0
  1220. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/rt_panic.rs +0 -0
  1221. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/rt_threaded.rs +0 -0
  1222. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/rt_threaded_alt.rs +0 -0
  1223. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/rt_time_start_paused.rs +0 -0
  1224. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/rt_unstable_metrics.rs +0 -0
  1225. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/signal_ctrl_c.rs +0 -0
  1226. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/signal_drop_recv.rs +0 -0
  1227. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/signal_drop_rt.rs +0 -0
  1228. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/signal_drop_signal.rs +0 -0
  1229. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/signal_multi_rt.rs +0 -0
  1230. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/signal_no_rt.rs +0 -0
  1231. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/signal_notify_both.rs +0 -0
  1232. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/signal_panic.rs +0 -0
  1233. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/signal_twice.rs +0 -0
  1234. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/signal_usr1.rs +0 -0
  1235. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/support/io_vec.rs +0 -0
  1236. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/support/leaked_buffers.rs +0 -0
  1237. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/support/mpsc_stream.rs +0 -0
  1238. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/support/panic.rs +0 -0
  1239. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/support/signal.rs +0 -0
  1240. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/sync_barrier.rs +0 -0
  1241. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/sync_broadcast.rs +0 -0
  1242. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/sync_errors.rs +0 -0
  1243. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/sync_mpsc_weak.rs +0 -0
  1244. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/sync_mutex.rs +0 -0
  1245. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/sync_mutex_owned.rs +0 -0
  1246. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/sync_notify.rs +0 -0
  1247. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/sync_once_cell.rs +0 -0
  1248. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/sync_oneshot.rs +0 -0
  1249. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/sync_panic.rs +0 -0
  1250. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/sync_rwlock.rs +0 -0
  1251. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/sync_semaphore.rs +0 -0
  1252. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/sync_semaphore_owned.rs +0 -0
  1253. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/sync_watch.rs +0 -0
  1254. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/task_blocking.rs +0 -0
  1255. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/task_builder.rs +0 -0
  1256. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/task_id.rs +0 -0
  1257. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/task_local.rs +0 -0
  1258. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/task_local_set.rs +0 -0
  1259. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/task_panic.rs +0 -0
  1260. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/task_yield_now.rs +0 -0
  1261. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/tcp_accept.rs +0 -0
  1262. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/tcp_connect.rs +0 -0
  1263. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/tcp_echo.rs +0 -0
  1264. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/tcp_into_split.rs +0 -0
  1265. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/tcp_into_std.rs +0 -0
  1266. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/tcp_peek.rs +0 -0
  1267. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/tcp_shutdown.rs +0 -0
  1268. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/tcp_socket.rs +0 -0
  1269. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/tcp_split.rs +0 -0
  1270. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/tcp_stream.rs +0 -0
  1271. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/test_clock.rs +0 -0
  1272. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/time_interval.rs +0 -0
  1273. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/time_panic.rs +0 -0
  1274. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/time_pause.rs +0 -0
  1275. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/time_rt.rs +0 -0
  1276. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/time_sleep.rs +0 -0
  1277. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/time_timeout.rs +0 -0
  1278. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/udp.rs +0 -0
  1279. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/uds_cred.rs +0 -0
  1280. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/uds_datagram.rs +0 -0
  1281. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/uds_socket.rs +0 -0
  1282. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/uds_split.rs +0 -0
  1283. /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/unwindsafe.rs +0 -0
  1284. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/LICENSE +0 -0
  1285. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/README.md +0 -0
  1286. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/clocks.rs +0 -0
  1287. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/ctx.rs +0 -0
  1288. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/dir.rs +0 -0
  1289. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/error.rs +0 -0
  1290. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/file.rs +0 -0
  1291. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/lib.rs +0 -0
  1292. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/pipe.rs +0 -0
  1293. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/random.rs +0 -0
  1294. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/sched/subscription.rs +0 -0
  1295. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/sched.rs +0 -0
  1296. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/snapshots/mod.rs +0 -0
  1297. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/snapshots/preview_0.rs +0 -0
  1298. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/snapshots/preview_1/error.rs +0 -0
  1299. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/snapshots/preview_1.rs +0 -0
  1300. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/string_array.rs +0 -0
  1301. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/sync/clocks.rs +0 -0
  1302. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/sync/dir.rs +0 -0
  1303. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/sync/file.rs +0 -0
  1304. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/sync/mod.rs +0 -0
  1305. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/sync/net.rs +0 -0
  1306. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/sync/sched/unix.rs +0 -0
  1307. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/sync/sched/windows.rs +0 -0
  1308. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/sync/sched.rs +0 -0
  1309. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/sync/stdio.rs +0 -0
  1310. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/table.rs +0 -0
  1311. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/tokio/dir.rs +0 -0
  1312. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/tokio/file.rs +0 -0
  1313. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/tokio/mod.rs +0 -0
  1314. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/tokio/net.rs +0 -0
  1315. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/tokio/sched/unix.rs +0 -0
  1316. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/tokio/sched/windows.rs +0 -0
  1317. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/tokio/sched.rs +0 -0
  1318. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/src/tokio/stdio.rs +0 -0
  1319. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/tests/all/async_.rs +0 -0
  1320. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/tests/all/main.rs +0 -0
  1321. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/tests/all/sync.rs +0 -0
  1322. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/witx/preview0/typenames.witx +0 -0
  1323. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/witx/preview0/wasi_unstable.witx +0 -0
  1324. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/witx/preview1/typenames.witx +0 -0
  1325. /data/ext/cargo-vendor/{wasi-common-25.0.1 → wasi-common-25.0.2}/witx/preview1/wasi_snapshot_preview1.witx +0 -0
  1326. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/LICENSE +0 -0
  1327. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/README.md +0 -0
  1328. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/build.rs +0 -0
  1329. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/proptest-regressions/runtime/vm/instance/allocator/pooling/memory_pool.txt +0 -0
  1330. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/compile/code_builder.rs +0 -0
  1331. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/compile/runtime.rs +0 -0
  1332. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/compile.rs +0 -0
  1333. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/config.rs +0 -0
  1334. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/engine/serialization.rs +0 -0
  1335. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/engine.rs +0 -0
  1336. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/lib.rs +0 -0
  1337. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/profiling_agent/jitdump.rs +0 -0
  1338. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/profiling_agent/perfmap.rs +0 -0
  1339. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/profiling_agent/vtune.rs +0 -0
  1340. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/profiling_agent.rs +0 -0
  1341. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/code.rs +0 -0
  1342. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/code_memory.rs +0 -0
  1343. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/bindgen_examples/_0_hello_world.rs +0 -0
  1344. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/bindgen_examples/_1_world_imports.rs +0 -0
  1345. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/bindgen_examples/_2_world_exports.rs +0 -0
  1346. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/bindgen_examples/_3_interface_imports.rs +0 -0
  1347. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/bindgen_examples/_4_imported_resources.rs +0 -0
  1348. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/bindgen_examples/_5_all_world_export_kinds.rs +0 -0
  1349. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/bindgen_examples/_6_exported_resources.rs +0 -0
  1350. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/bindgen_examples/mod.rs +0 -0
  1351. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/component.rs +0 -0
  1352. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/func/host.rs +0 -0
  1353. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/func/options.rs +0 -0
  1354. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/func/typed.rs +0 -0
  1355. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/func.rs +0 -0
  1356. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/instance.rs +0 -0
  1357. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/linker.rs +0 -0
  1358. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/matching.rs +0 -0
  1359. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/mod.rs +0 -0
  1360. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/resource_table.rs +0 -0
  1361. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/resources.rs +0 -0
  1362. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/storage.rs +0 -0
  1363. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/store.rs +0 -0
  1364. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/types.rs +0 -0
  1365. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/component/values.rs +0 -0
  1366. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/coredump.rs +0 -0
  1367. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/debug.rs +0 -0
  1368. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/externals/global.rs +0 -0
  1369. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/externals/table.rs +0 -0
  1370. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/externals.rs +0 -0
  1371. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/func/typed.rs +0 -0
  1372. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/func.rs +0 -0
  1373. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/gc/disabled/anyref.rs +0 -0
  1374. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/gc/disabled/arrayref.rs +0 -0
  1375. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/gc/disabled/externref.rs +0 -0
  1376. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/gc/disabled/i31.rs +0 -0
  1377. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/gc/disabled/rooting.rs +0 -0
  1378. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/gc/disabled/structref.rs +0 -0
  1379. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/gc/disabled.rs +0 -0
  1380. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/gc/enabled/anyref.rs +0 -0
  1381. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/gc/enabled/arrayref.rs +0 -0
  1382. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/gc/enabled/externref.rs +0 -0
  1383. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/gc/enabled/i31.rs +0 -0
  1384. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/gc/enabled/rooting.rs +0 -0
  1385. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/gc/enabled/structref.rs +0 -0
  1386. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/gc/enabled.rs +0 -0
  1387. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/gc/noextern.rs +0 -0
  1388. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/gc.rs +0 -0
  1389. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/instance.rs +0 -0
  1390. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/instantiate.rs +0 -0
  1391. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/limits.rs +0 -0
  1392. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/linker.rs +0 -0
  1393. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/memory.rs +0 -0
  1394. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/module/registry.rs +0 -0
  1395. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/module.rs +0 -0
  1396. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/profiling.rs +0 -0
  1397. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/resources.rs +0 -0
  1398. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/signatures.rs +0 -0
  1399. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/stack.rs +0 -0
  1400. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/store/context.rs +0 -0
  1401. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/store/data.rs +0 -0
  1402. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/store/func_refs.rs +0 -0
  1403. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/store.rs +0 -0
  1404. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/trampoline/func.rs +0 -0
  1405. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/trampoline/global.rs +0 -0
  1406. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/trampoline/memory.rs +0 -0
  1407. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/trampoline/table.rs +0 -0
  1408. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/trampoline.rs +0 -0
  1409. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/trap.rs +0 -0
  1410. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/types/matching.rs +0 -0
  1411. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/types.rs +0 -0
  1412. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/uninhabited.rs +0 -0
  1413. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/unix.rs +0 -0
  1414. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/v128.rs +0 -0
  1415. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/values.rs +0 -0
  1416. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/arch/aarch64.rs +0 -0
  1417. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/arch/mod.rs +0 -0
  1418. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/arch/riscv64.rs +0 -0
  1419. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/arch/s390x.S +0 -0
  1420. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/arch/s390x.rs +0 -0
  1421. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/arch/unsupported.rs +0 -0
  1422. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/arch/x86_64.rs +0 -0
  1423. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/async_yield.rs +0 -0
  1424. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/component/libcalls.rs +0 -0
  1425. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/component/resources.rs +0 -0
  1426. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/component.rs +0 -0
  1427. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/const_expr.rs +0 -0
  1428. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/cow.rs +0 -0
  1429. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/debug_builtins.rs +0 -0
  1430. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/export.rs +0 -0
  1431. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/gc/disabled.rs +0 -0
  1432. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/gc/enabled/arrayref.rs +0 -0
  1433. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/gc/enabled/data.rs +0 -0
  1434. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/gc/enabled/drc.rs +0 -0
  1435. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/gc/enabled/externref.rs +0 -0
  1436. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/gc/enabled/free_list.rs +0 -0
  1437. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/gc/enabled/structref.rs +0 -0
  1438. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/gc/enabled.rs +0 -0
  1439. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/gc/gc_ref.rs +0 -0
  1440. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/gc/gc_runtime.rs +0 -0
  1441. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/gc/host_data.rs +0 -0
  1442. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/gc/i31.rs +0 -0
  1443. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/gc.rs +0 -0
  1444. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/helpers.c +0 -0
  1445. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/imports.rs +0 -0
  1446. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/instance/allocator/on_demand.rs +0 -0
  1447. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/instance/allocator/pooling/decommit_queue.rs +0 -0
  1448. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/instance/allocator/pooling/gc_heap_pool.rs +0 -0
  1449. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/instance/allocator/pooling/generic_stack_pool.rs +0 -0
  1450. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/instance/allocator/pooling/index_allocator.rs +0 -0
  1451. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/instance/allocator/pooling/memory_pool.rs +0 -0
  1452. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/instance/allocator/pooling/table_pool.rs +0 -0
  1453. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/instance/allocator/pooling/unix_stack_pool.rs +0 -0
  1454. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/instance/allocator/pooling.rs +0 -0
  1455. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/instance/allocator.rs +0 -0
  1456. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/instance.rs +0 -0
  1457. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/libcalls.rs +0 -0
  1458. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/memory.rs +0 -0
  1459. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/mmap.rs +0 -0
  1460. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/mmap_vec.rs +0 -0
  1461. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/module_id.rs +0 -0
  1462. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/mpk/disabled.rs +0 -0
  1463. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/mpk/enabled.rs +0 -0
  1464. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/mpk/mod.rs +0 -0
  1465. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/mpk/pkru.rs +0 -0
  1466. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/mpk/sys.rs +0 -0
  1467. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/send_sync_ptr.rs +0 -0
  1468. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/store_box.rs +0 -0
  1469. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/custom/capi.rs +0 -0
  1470. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/custom/mmap.rs +0 -0
  1471. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/custom/mod.rs +0 -0
  1472. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/custom/traphandlers.rs +0 -0
  1473. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/custom/unwind.rs +0 -0
  1474. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/custom/vm.rs +0 -0
  1475. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/miri/mmap.rs +0 -0
  1476. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/miri/mod.rs +0 -0
  1477. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/miri/traphandlers.rs +0 -0
  1478. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/miri/unwind.rs +0 -0
  1479. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/miri/vm.rs +0 -0
  1480. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/mod.rs +0 -0
  1481. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/unix/machports.rs +0 -0
  1482. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/unix/macos_traphandlers.rs +0 -0
  1483. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/unix/mmap.rs +0 -0
  1484. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/unix/mod.rs +0 -0
  1485. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/unix/signals.rs +0 -0
  1486. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/unix/unwind.rs +0 -0
  1487. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/unix/vm.rs +0 -0
  1488. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/windows/mmap.rs +0 -0
  1489. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/windows/mod.rs +0 -0
  1490. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/windows/traphandlers.rs +0 -0
  1491. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/windows/unwind.rs +0 -0
  1492. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/sys/windows/vm.rs +0 -0
  1493. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/table.rs +0 -0
  1494. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/threads/mod.rs +0 -0
  1495. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/threads/parking_spot.rs +0 -0
  1496. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/threads/shared_memory.rs +0 -0
  1497. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/threads/shared_memory_disabled.rs +0 -0
  1498. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/traphandlers/coredump_disabled.rs +0 -0
  1499. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/traphandlers/coredump_enabled.rs +0 -0
  1500. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/traphandlers.rs +0 -0
  1501. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/vmcontext/vm_host_func_context.rs +0 -0
  1502. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm/vmcontext.rs +0 -0
  1503. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/vm.rs +0 -0
  1504. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime/windows.rs +0 -0
  1505. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/runtime.rs +0 -0
  1506. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/sync_nostd.rs +0 -0
  1507. /data/ext/cargo-vendor/{wasmtime-25.0.1 → wasmtime-25.0.2}/src/sync_std.rs +0 -0
  1508. /data/ext/cargo-vendor/{wasmtime-asm-macros-25.0.1 → wasmtime-asm-macros-25.0.2}/src/lib.rs +0 -0
  1509. /data/ext/cargo-vendor/{wasmtime-cache-25.0.1 → wasmtime-cache-25.0.2}/LICENSE +0 -0
  1510. /data/ext/cargo-vendor/{wasmtime-cache-25.0.1 → wasmtime-cache-25.0.2}/build.rs +0 -0
  1511. /data/ext/cargo-vendor/{wasmtime-cache-25.0.1 → wasmtime-cache-25.0.2}/src/config/tests.rs +0 -0
  1512. /data/ext/cargo-vendor/{wasmtime-cache-25.0.1 → wasmtime-cache-25.0.2}/src/config.rs +0 -0
  1513. /data/ext/cargo-vendor/{wasmtime-cache-25.0.1 → wasmtime-cache-25.0.2}/src/lib.rs +0 -0
  1514. /data/ext/cargo-vendor/{wasmtime-cache-25.0.1 → wasmtime-cache-25.0.2}/src/tests.rs +0 -0
  1515. /data/ext/cargo-vendor/{wasmtime-cache-25.0.1 → wasmtime-cache-25.0.2}/src/worker/tests/system_time_stub.rs +0 -0
  1516. /data/ext/cargo-vendor/{wasmtime-cache-25.0.1 → wasmtime-cache-25.0.2}/src/worker/tests.rs +0 -0
  1517. /data/ext/cargo-vendor/{wasmtime-cache-25.0.1 → wasmtime-cache-25.0.2}/src/worker.rs +0 -0
  1518. /data/ext/cargo-vendor/{wasmtime-cache-25.0.1 → wasmtime-cache-25.0.2}/tests/cache_write_default_config.rs +0 -0
  1519. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/build.rs +0 -0
  1520. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/src/bindgen.rs +0 -0
  1521. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/src/component.rs +0 -0
  1522. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/src/lib.rs +0 -0
  1523. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/char.wit +0 -0
  1524. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/conventions.wit +0 -0
  1525. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/dead-code.wit +0 -0
  1526. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/direct-import.wit +0 -0
  1527. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/empty.wit +0 -0
  1528. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/flags.wit +0 -0
  1529. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/floats.wit +0 -0
  1530. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/function-new.wit +0 -0
  1531. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/integers.wit +0 -0
  1532. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/lists.wit +0 -0
  1533. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/many-arguments.wit +0 -0
  1534. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/multi-return.wit +0 -0
  1535. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/multiversion/deps/v1/root.wit +0 -0
  1536. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/multiversion/deps/v2/root.wit +0 -0
  1537. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/multiversion/root.wit +0 -0
  1538. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/records.wit +0 -0
  1539. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/rename.wit +0 -0
  1540. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/resources-export.wit +0 -0
  1541. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/resources-import.wit +0 -0
  1542. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/share-types.wit +0 -0
  1543. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/simple-functions.wit +0 -0
  1544. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/simple-lists.wit +0 -0
  1545. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/simple-wasi.wit +0 -0
  1546. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/small-anonymous.wit +0 -0
  1547. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/smoke-default.wit +0 -0
  1548. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/smoke-export.wit +0 -0
  1549. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/smoke.wit +0 -0
  1550. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/strings.wit +0 -0
  1551. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/unversioned-foo.wit +0 -0
  1552. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/use-paths.wit +0 -0
  1553. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/variants.wit +0 -0
  1554. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/wat.wit +0 -0
  1555. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen/worlds-with-types.wit +0 -0
  1556. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen.rs +0 -0
  1557. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/codegen_no_std.rs +0 -0
  1558. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/char.rs +0 -0
  1559. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/char_async.rs +0 -0
  1560. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/char_tracing_async.rs +0 -0
  1561. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/conventions.rs +0 -0
  1562. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/conventions_async.rs +0 -0
  1563. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/conventions_tracing_async.rs +0 -0
  1564. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/dead-code.rs +0 -0
  1565. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/dead-code_async.rs +0 -0
  1566. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/dead-code_tracing_async.rs +0 -0
  1567. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/direct-import.rs +0 -0
  1568. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/direct-import_async.rs +0 -0
  1569. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/direct-import_tracing_async.rs +0 -0
  1570. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/empty.rs +0 -0
  1571. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/empty_async.rs +0 -0
  1572. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/empty_tracing_async.rs +0 -0
  1573. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/flags.rs +0 -0
  1574. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/flags_async.rs +0 -0
  1575. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/flags_tracing_async.rs +0 -0
  1576. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/floats.rs +0 -0
  1577. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/floats_async.rs +0 -0
  1578. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/floats_tracing_async.rs +0 -0
  1579. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/function-new.rs +0 -0
  1580. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/function-new_async.rs +0 -0
  1581. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/function-new_tracing_async.rs +0 -0
  1582. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/integers.rs +0 -0
  1583. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/integers_async.rs +0 -0
  1584. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/integers_tracing_async.rs +0 -0
  1585. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/lists.rs +0 -0
  1586. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/lists_async.rs +0 -0
  1587. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/lists_tracing_async.rs +0 -0
  1588. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/many-arguments.rs +0 -0
  1589. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/many-arguments_async.rs +0 -0
  1590. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/many-arguments_tracing_async.rs +0 -0
  1591. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/multi-return.rs +0 -0
  1592. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/multi-return_async.rs +0 -0
  1593. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/multi-return_tracing_async.rs +0 -0
  1594. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/multiversion.rs +0 -0
  1595. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/multiversion_async.rs +0 -0
  1596. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/multiversion_tracing_async.rs +0 -0
  1597. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/records.rs +0 -0
  1598. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/records_async.rs +0 -0
  1599. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/records_tracing_async.rs +0 -0
  1600. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/rename.rs +0 -0
  1601. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/rename_async.rs +0 -0
  1602. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/rename_tracing_async.rs +0 -0
  1603. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/resources-export.rs +0 -0
  1604. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/resources-export_async.rs +0 -0
  1605. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/resources-export_tracing_async.rs +0 -0
  1606. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/resources-import.rs +0 -0
  1607. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/resources-import_async.rs +0 -0
  1608. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/resources-import_tracing_async.rs +0 -0
  1609. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/share-types.rs +0 -0
  1610. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/share-types_async.rs +0 -0
  1611. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/share-types_tracing_async.rs +0 -0
  1612. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/simple-functions.rs +0 -0
  1613. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/simple-functions_async.rs +0 -0
  1614. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/simple-functions_tracing_async.rs +0 -0
  1615. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/simple-lists.rs +0 -0
  1616. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/simple-lists_async.rs +0 -0
  1617. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/simple-lists_tracing_async.rs +0 -0
  1618. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/simple-wasi.rs +0 -0
  1619. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/simple-wasi_async.rs +0 -0
  1620. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/simple-wasi_tracing_async.rs +0 -0
  1621. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/small-anonymous.rs +0 -0
  1622. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/small-anonymous_async.rs +0 -0
  1623. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/small-anonymous_tracing_async.rs +0 -0
  1624. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/smoke-default.rs +0 -0
  1625. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/smoke-default_async.rs +0 -0
  1626. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/smoke-default_tracing_async.rs +0 -0
  1627. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/smoke-export.rs +0 -0
  1628. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/smoke-export_async.rs +0 -0
  1629. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/smoke-export_tracing_async.rs +0 -0
  1630. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/smoke.rs +0 -0
  1631. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/smoke_async.rs +0 -0
  1632. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/smoke_tracing_async.rs +0 -0
  1633. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/strings.rs +0 -0
  1634. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/strings_async.rs +0 -0
  1635. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/strings_tracing_async.rs +0 -0
  1636. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/unversioned-foo.rs +0 -0
  1637. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/unversioned-foo_async.rs +0 -0
  1638. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/unversioned-foo_tracing_async.rs +0 -0
  1639. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/use-paths.rs +0 -0
  1640. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/use-paths_async.rs +0 -0
  1641. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/use-paths_tracing_async.rs +0 -0
  1642. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/variants.rs +0 -0
  1643. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/variants_async.rs +0 -0
  1644. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/variants_tracing_async.rs +0 -0
  1645. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/wat.rs +0 -0
  1646. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/wat_async.rs +0 -0
  1647. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/wat_tracing_async.rs +0 -0
  1648. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/worlds-with-types.rs +0 -0
  1649. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/worlds-with-types_async.rs +0 -0
  1650. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded/worlds-with-types_tracing_async.rs +0 -0
  1651. /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.1 → wasmtime-component-macro-25.0.2}/tests/expanded.rs +0 -0
  1652. /data/ext/cargo-vendor/{wasmtime-component-util-25.0.1 → wasmtime-component-util-25.0.2}/src/lib.rs +0 -0
  1653. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/LICENSE +0 -0
  1654. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/SECURITY.md +0 -0
  1655. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/builder.rs +0 -0
  1656. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/compiled_function.rs +0 -0
  1657. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/compiler/component.rs +0 -0
  1658. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/compiler.rs +0 -0
  1659. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/debug/gc.rs +0 -0
  1660. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/debug/transform/address_transform.rs +0 -0
  1661. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/debug/transform/attr.rs +0 -0
  1662. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/debug/transform/expression.rs +0 -0
  1663. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/debug/transform/line_program.rs +0 -0
  1664. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/debug/transform/mod.rs +0 -0
  1665. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/debug/transform/range_info_builder.rs +0 -0
  1666. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/debug/transform/refs.rs +0 -0
  1667. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/debug/transform/simulate.rs +0 -0
  1668. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/debug/transform/unit.rs +0 -0
  1669. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/debug/transform/utils.rs +0 -0
  1670. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/debug/write_debuginfo.rs +0 -0
  1671. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/debug.rs +0 -0
  1672. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/func_environ.rs +0 -0
  1673. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/gc/disabled.rs +0 -0
  1674. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/gc/enabled.rs +0 -0
  1675. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/gc.rs +0 -0
  1676. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/isa_builder.rs +0 -0
  1677. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/lib.rs +0 -0
  1678. /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.1 → wasmtime-cranelift-25.0.2}/src/obj.rs +0 -0
  1679. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/LICENSE +0 -0
  1680. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/examples/factc.rs +0 -0
  1681. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/address_map.rs +0 -0
  1682. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/builtin.rs +0 -0
  1683. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/compile/address_map.rs +0 -0
  1684. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/compile/mod.rs +0 -0
  1685. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/compile/module_artifacts.rs +0 -0
  1686. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/compile/module_types.rs +0 -0
  1687. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/compile/trap_encoding.rs +0 -0
  1688. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/component/artifacts.rs +0 -0
  1689. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/component/compiler.rs +0 -0
  1690. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/component/dfg.rs +0 -0
  1691. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/component/info.rs +0 -0
  1692. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/component/names.rs +0 -0
  1693. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/component/translate/adapt.rs +0 -0
  1694. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/component/translate/inline.rs +0 -0
  1695. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/component/translate.rs +0 -0
  1696. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/component/types.rs +0 -0
  1697. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/component/types_builder/resources.rs +0 -0
  1698. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/component/types_builder.rs +0 -0
  1699. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/component/vmcomponent_offsets.rs +0 -0
  1700. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/component.rs +0 -0
  1701. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/demangling.rs +0 -0
  1702. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/fact/core_types.rs +0 -0
  1703. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/fact/signature.rs +0 -0
  1704. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/fact/trampoline.rs +0 -0
  1705. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/fact/transcode.rs +0 -0
  1706. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/fact/traps.rs +0 -0
  1707. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/fact.rs +0 -0
  1708. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/gc.rs +0 -0
  1709. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/lib.rs +0 -0
  1710. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/module.rs +0 -0
  1711. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/module_artifacts.rs +0 -0
  1712. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/module_types.rs +0 -0
  1713. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/obj.rs +0 -0
  1714. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/ref_bits.rs +0 -0
  1715. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/scopevec.rs +0 -0
  1716. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/stack_map.rs +0 -0
  1717. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/trap_encoding.rs +0 -0
  1718. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/tunables.rs +0 -0
  1719. /data/ext/cargo-vendor/{wasmtime-environ-25.0.1 → wasmtime-environ-25.0.2}/src/vmoffsets.rs +0 -0
  1720. /data/ext/cargo-vendor/{wasmtime-fiber-25.0.1 → wasmtime-fiber-25.0.2}/LICENSE +0 -0
  1721. /data/ext/cargo-vendor/{wasmtime-fiber-25.0.1 → wasmtime-fiber-25.0.2}/build.rs +0 -0
  1722. /data/ext/cargo-vendor/{wasmtime-fiber-25.0.1 → wasmtime-fiber-25.0.2}/src/lib.rs +0 -0
  1723. /data/ext/cargo-vendor/{wasmtime-fiber-25.0.1 → wasmtime-fiber-25.0.2}/src/unix/aarch64.rs +0 -0
  1724. /data/ext/cargo-vendor/{wasmtime-fiber-25.0.1 → wasmtime-fiber-25.0.2}/src/unix/arm.rs +0 -0
  1725. /data/ext/cargo-vendor/{wasmtime-fiber-25.0.1 → wasmtime-fiber-25.0.2}/src/unix/riscv64.rs +0 -0
  1726. /data/ext/cargo-vendor/{wasmtime-fiber-25.0.1 → wasmtime-fiber-25.0.2}/src/unix/s390x.S +0 -0
  1727. /data/ext/cargo-vendor/{wasmtime-fiber-25.0.1 → wasmtime-fiber-25.0.2}/src/unix/x86.rs +0 -0
  1728. /data/ext/cargo-vendor/{wasmtime-fiber-25.0.1 → wasmtime-fiber-25.0.2}/src/unix/x86_64.rs +0 -0
  1729. /data/ext/cargo-vendor/{wasmtime-fiber-25.0.1 → wasmtime-fiber-25.0.2}/src/unix.rs +0 -0
  1730. /data/ext/cargo-vendor/{wasmtime-fiber-25.0.1 → wasmtime-fiber-25.0.2}/src/windows.c +0 -0
  1731. /data/ext/cargo-vendor/{wasmtime-fiber-25.0.1 → wasmtime-fiber-25.0.2}/src/windows.rs +0 -0
  1732. /data/ext/cargo-vendor/{wasmtime-jit-debug-25.0.1 → wasmtime-jit-debug-25.0.2}/README.md +0 -0
  1733. /data/ext/cargo-vendor/{wasmtime-jit-debug-25.0.1 → wasmtime-jit-debug-25.0.2}/src/gdb_jit_int.rs +0 -0
  1734. /data/ext/cargo-vendor/{wasmtime-jit-debug-25.0.1 → wasmtime-jit-debug-25.0.2}/src/lib.rs +0 -0
  1735. /data/ext/cargo-vendor/{wasmtime-jit-debug-25.0.1 → wasmtime-jit-debug-25.0.2}/src/perf_jitdump.rs +0 -0
  1736. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-25.0.1 → wasmtime-jit-icache-coherence-25.0.2}/src/lib.rs +0 -0
  1737. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-25.0.1 → wasmtime-jit-icache-coherence-25.0.2}/src/libc.rs +0 -0
  1738. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-25.0.1 → wasmtime-jit-icache-coherence-25.0.2}/src/miri.rs +0 -0
  1739. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-25.0.1 → wasmtime-jit-icache-coherence-25.0.2}/src/win.rs +0 -0
  1740. /data/ext/cargo-vendor/{wasmtime-slab-25.0.1 → wasmtime-slab-25.0.2}/src/lib.rs +0 -0
  1741. /data/ext/cargo-vendor/{wasmtime-types-25.0.1 → wasmtime-types-25.0.2}/LICENSE +0 -0
  1742. /data/ext/cargo-vendor/{wasmtime-types-25.0.1 → wasmtime-types-25.0.2}/src/error.rs +0 -0
  1743. /data/ext/cargo-vendor/{wasmtime-types-25.0.1 → wasmtime-types-25.0.2}/src/lib.rs +0 -0
  1744. /data/ext/cargo-vendor/{wasmtime-types-25.0.1 → wasmtime-types-25.0.2}/src/prelude.rs +0 -0
  1745. /data/ext/cargo-vendor/{wasmtime-versioned-export-macros-25.0.1 → wasmtime-versioned-export-macros-25.0.2}/src/lib.rs +0 -0
  1746. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/LICENSE +0 -0
  1747. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/README.md +0 -0
  1748. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/bindings.rs +0 -0
  1749. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/clocks/host.rs +0 -0
  1750. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/clocks.rs +0 -0
  1751. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/ctx.rs +0 -0
  1752. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/error.rs +0 -0
  1753. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/filesystem.rs +0 -0
  1754. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/host/clocks.rs +0 -0
  1755. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/host/env.rs +0 -0
  1756. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/host/exit.rs +0 -0
  1757. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/host/filesystem/sync.rs +0 -0
  1758. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/host/filesystem.rs +0 -0
  1759. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/host/instance_network.rs +0 -0
  1760. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/host/io.rs +0 -0
  1761. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/host/mod.rs +0 -0
  1762. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/host/network.rs +0 -0
  1763. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/host/random.rs +0 -0
  1764. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/host/tcp.rs +0 -0
  1765. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/host/tcp_create_socket.rs +0 -0
  1766. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/host/udp.rs +0 -0
  1767. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/host/udp_create_socket.rs +0 -0
  1768. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/ip_name_lookup.rs +0 -0
  1769. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/lib.rs +0 -0
  1770. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/network.rs +0 -0
  1771. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/pipe.rs +0 -0
  1772. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/poll.rs +0 -0
  1773. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/preview0.rs +0 -0
  1774. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/preview1.rs +0 -0
  1775. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/random.rs +0 -0
  1776. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/runtime.rs +0 -0
  1777. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/stdio/worker_thread_stdin.rs +0 -0
  1778. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/stdio.rs +0 -0
  1779. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/stream.rs +0 -0
  1780. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/tcp.rs +0 -0
  1781. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/udp.rs +0 -0
  1782. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/src/write_stream.rs +0 -0
  1783. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/tests/all/api.rs +0 -0
  1784. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/tests/all/async_.rs +0 -0
  1785. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/tests/all/main.rs +0 -0
  1786. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/tests/all/preview1.rs +0 -0
  1787. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/tests/all/sync.rs +0 -0
  1788. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/tests/process_stdin.rs +0 -0
  1789. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/cli/command.wit +0 -0
  1790. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/cli/environment.wit +0 -0
  1791. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/cli/exit.wit +0 -0
  1792. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/cli/imports.wit +0 -0
  1793. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/cli/run.wit +0 -0
  1794. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/cli/stdio.wit +0 -0
  1795. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/cli/terminal.wit +0 -0
  1796. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/clocks/monotonic-clock.wit +0 -0
  1797. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/clocks/timezone.wit +0 -0
  1798. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/clocks/wall-clock.wit +0 -0
  1799. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/clocks/world.wit +0 -0
  1800. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/filesystem/preopens.wit +0 -0
  1801. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/filesystem/types.wit +0 -0
  1802. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/filesystem/world.wit +0 -0
  1803. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/io/error.wit +0 -0
  1804. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/io/poll.wit +0 -0
  1805. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/io/streams.wit +0 -0
  1806. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/io/world.wit +0 -0
  1807. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/random/insecure-seed.wit +0 -0
  1808. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/random/insecure.wit +0 -0
  1809. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/random/random.wit +0 -0
  1810. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/random/world.wit +0 -0
  1811. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/sockets/instance-network.wit +0 -0
  1812. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/sockets/ip-name-lookup.wit +0 -0
  1813. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/sockets/network.wit +0 -0
  1814. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/sockets/tcp-create-socket.wit +0 -0
  1815. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/sockets/tcp.wit +0 -0
  1816. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/sockets/udp-create-socket.wit +0 -0
  1817. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/sockets/udp.wit +0 -0
  1818. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/deps/sockets/world.wit +0 -0
  1819. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/test.wit +0 -0
  1820. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/wit/world.wit +0 -0
  1821. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/witx/preview0/typenames.witx +0 -0
  1822. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/witx/preview0/wasi_unstable.witx +0 -0
  1823. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/witx/preview1/typenames.witx +0 -0
  1824. /data/ext/cargo-vendor/{wasmtime-wasi-25.0.1 → wasmtime-wasi-25.0.2}/witx/preview1/wasi_snapshot_preview1.witx +0 -0
  1825. /data/ext/cargo-vendor/{wasmtime-winch-25.0.1 → wasmtime-winch-25.0.2}/LICENSE +0 -0
  1826. /data/ext/cargo-vendor/{wasmtime-winch-25.0.1 → wasmtime-winch-25.0.2}/src/builder.rs +0 -0
  1827. /data/ext/cargo-vendor/{wasmtime-winch-25.0.1 → wasmtime-winch-25.0.2}/src/compiler.rs +0 -0
  1828. /data/ext/cargo-vendor/{wasmtime-winch-25.0.1 → wasmtime-winch-25.0.2}/src/lib.rs +0 -0
  1829. /data/ext/cargo-vendor/{wasmtime-wit-bindgen-25.0.1 → wasmtime-wit-bindgen-25.0.2}/src/lib.rs +0 -0
  1830. /data/ext/cargo-vendor/{wasmtime-wit-bindgen-25.0.1 → wasmtime-wit-bindgen-25.0.2}/src/rust.rs +0 -0
  1831. /data/ext/cargo-vendor/{wasmtime-wit-bindgen-25.0.1 → wasmtime-wit-bindgen-25.0.2}/src/source.rs +0 -0
  1832. /data/ext/cargo-vendor/{wasmtime-wit-bindgen-25.0.1 → wasmtime-wit-bindgen-25.0.2}/src/types.rs +0 -0
  1833. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/README.md +0 -0
  1834. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/component/alias.rs +0 -0
  1835. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/component/custom.rs +0 -0
  1836. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/component/export.rs +0 -0
  1837. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/component/import.rs +0 -0
  1838. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/component/instance.rs +0 -0
  1839. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/component/item_ref.rs +0 -0
  1840. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/component/module.rs +0 -0
  1841. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/component/wast.rs +0 -0
  1842. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/component.rs +0 -0
  1843. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/core/binary/dwarf.rs +0 -0
  1844. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/core/binary/dwarf_disabled.rs +0 -0
  1845. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/core/custom.rs +0 -0
  1846. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/core/export.rs +0 -0
  1847. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/core/func.rs +0 -0
  1848. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/core/global.rs +0 -0
  1849. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/core/import.rs +0 -0
  1850. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/core/memory.rs +0 -0
  1851. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/core/module.rs +0 -0
  1852. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/core/resolve/mod.rs +0 -0
  1853. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/core/tag.rs +0 -0
  1854. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/core/wast.rs +0 -0
  1855. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/core.rs +0 -0
  1856. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/encode.rs +0 -0
  1857. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/error.rs +0 -0
  1858. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/gensym.rs +0 -0
  1859. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/lexer.rs +0 -0
  1860. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/names.rs +0 -0
  1861. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/parser.rs +0 -0
  1862. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/token.rs +0 -0
  1863. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/wat.rs +0 -0
  1864. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/annotations.rs +0 -0
  1865. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/comments.rs +0 -0
  1866. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/bad-core-func-alias.wat +0 -0
  1867. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/bad-core-func-alias.wat.err +0 -0
  1868. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/bad-func-alias.wat +0 -0
  1869. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/bad-func-alias.wat.err +0 -0
  1870. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/bad-index.wat +0 -0
  1871. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/bad-index.wat.err +0 -0
  1872. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/bad-name.wat +0 -0
  1873. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/bad-name.wat.err +0 -0
  1874. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/bad-name2.wat +0 -0
  1875. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/bad-name2.wat.err +0 -0
  1876. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/bad-name3.wat +0 -0
  1877. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/bad-name3.wat.err +0 -0
  1878. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/block1.wat +0 -0
  1879. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/block1.wat.err +0 -0
  1880. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/block2.wat +0 -0
  1881. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/block2.wat.err +0 -0
  1882. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/block3.wat +0 -0
  1883. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/block3.wat.err +0 -0
  1884. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment0.wat +0 -0
  1885. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment0.wat.err +0 -0
  1886. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment1.wat +0 -0
  1887. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment1.wat.err +0 -0
  1888. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment2.wat +0 -0
  1889. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment2.wat.err +0 -0
  1890. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment3.wat +0 -0
  1891. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment3.wat.err +0 -0
  1892. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment4.wat +0 -0
  1893. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment4.wat.err +0 -0
  1894. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment5.wat +0 -0
  1895. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment5.wat.err +0 -0
  1896. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment6.wat +0 -0
  1897. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment6.wat.err +0 -0
  1898. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment7.wat +0 -0
  1899. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment7.wat.err +0 -0
  1900. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment8.wat +0 -0
  1901. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment8.wat.err +0 -0
  1902. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment0.wat +0 -0
  1903. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment0.wat.err +0 -0
  1904. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment1.wat +0 -0
  1905. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment1.wat.err +0 -0
  1906. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment2.wat +0 -0
  1907. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment2.wat.err +0 -0
  1908. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment3.wat +0 -0
  1909. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment3.wat.err +0 -0
  1910. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment4.wat +0 -0
  1911. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment4.wat.err +0 -0
  1912. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment5.wat +0 -0
  1913. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment5.wat.err +0 -0
  1914. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment6.wat +0 -0
  1915. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment6.wat.err +0 -0
  1916. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment7.wat +0 -0
  1917. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment7.wat.err +0 -0
  1918. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment8.wat +0 -0
  1919. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment8.wat.err +0 -0
  1920. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string0.wat +0 -0
  1921. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string0.wat.err +0 -0
  1922. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string1.wat +0 -0
  1923. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string1.wat.err +0 -0
  1924. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string2.wat +0 -0
  1925. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string2.wat.err +0 -0
  1926. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string3.wat +0 -0
  1927. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string3.wat.err +0 -0
  1928. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string4.wat +0 -0
  1929. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string4.wat.err +0 -0
  1930. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string5.wat +0 -0
  1931. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string5.wat.err +0 -0
  1932. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string6.wat +0 -0
  1933. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string6.wat.err +0 -0
  1934. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string7.wat +0 -0
  1935. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string7.wat.err +0 -0
  1936. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string8.wat +0 -0
  1937. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string8.wat.err +0 -0
  1938. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/inline1.wat +0 -0
  1939. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/inline1.wat.err +0 -0
  1940. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/newline-in-string.wat +0 -0
  1941. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/newline-in-string.wat.err +0 -0
  1942. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string1.wat +0 -0
  1943. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string1.wat.err +0 -0
  1944. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string10.wat +0 -0
  1945. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string10.wat.err +0 -0
  1946. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string11.wat +0 -0
  1947. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string11.wat.err +0 -0
  1948. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string12.wat +0 -0
  1949. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string12.wat.err +0 -0
  1950. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string13.wat +0 -0
  1951. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string13.wat.err +0 -0
  1952. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string14.wat +0 -0
  1953. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string14.wat.err +0 -0
  1954. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string15.wat +0 -0
  1955. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string15.wat.err +0 -0
  1956. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string16.wat +0 -0
  1957. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string16.wat.err +0 -0
  1958. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string2.wat +0 -0
  1959. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string2.wat.err +0 -0
  1960. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string3.wat +0 -0
  1961. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string3.wat.err +0 -0
  1962. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string4.wat +0 -0
  1963. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string4.wat.err +0 -0
  1964. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string5.wat +0 -0
  1965. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string5.wat.err +0 -0
  1966. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string6.wat +0 -0
  1967. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string6.wat.err +0 -0
  1968. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string7.wat +0 -0
  1969. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string7.wat.err +0 -0
  1970. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string8.wat +0 -0
  1971. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string8.wat.err +0 -0
  1972. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string9.wat +0 -0
  1973. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string9.wat.err +0 -0
  1974. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/unbalanced.wat +0 -0
  1975. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/unbalanced.wat.err +0 -0
  1976. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail.rs +0 -0
  1977. /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/recursive.rs +0 -0
  1978. /data/ext/cargo-vendor/{wat-1.217.0 → wat-1.218.0}/README.md +0 -0
  1979. /data/ext/cargo-vendor/{wat-1.217.0 → wat-1.218.0}/src/lib.rs +0 -0
  1980. /data/ext/cargo-vendor/{wiggle-25.0.1 → wiggle-25.0.2}/LICENSE +0 -0
  1981. /data/ext/cargo-vendor/{wiggle-25.0.1 → wiggle-25.0.2}/README.md +0 -0
  1982. /data/ext/cargo-vendor/{wiggle-25.0.1 → wiggle-25.0.2}/src/error.rs +0 -0
  1983. /data/ext/cargo-vendor/{wiggle-25.0.1 → wiggle-25.0.2}/src/guest_type.rs +0 -0
  1984. /data/ext/cargo-vendor/{wiggle-25.0.1 → wiggle-25.0.2}/src/lib.rs +0 -0
  1985. /data/ext/cargo-vendor/{wiggle-25.0.1 → wiggle-25.0.2}/src/region.rs +0 -0
  1986. /data/ext/cargo-vendor/{wiggle-generate-25.0.1 → wiggle-generate-25.0.2}/LICENSE +0 -0
  1987. /data/ext/cargo-vendor/{wiggle-generate-25.0.1 → wiggle-generate-25.0.2}/README.md +0 -0
  1988. /data/ext/cargo-vendor/{wiggle-generate-25.0.1 → wiggle-generate-25.0.2}/src/codegen_settings.rs +0 -0
  1989. /data/ext/cargo-vendor/{wiggle-generate-25.0.1 → wiggle-generate-25.0.2}/src/config.rs +0 -0
  1990. /data/ext/cargo-vendor/{wiggle-generate-25.0.1 → wiggle-generate-25.0.2}/src/funcs.rs +0 -0
  1991. /data/ext/cargo-vendor/{wiggle-generate-25.0.1 → wiggle-generate-25.0.2}/src/lib.rs +0 -0
  1992. /data/ext/cargo-vendor/{wiggle-generate-25.0.1 → wiggle-generate-25.0.2}/src/lifetimes.rs +0 -0
  1993. /data/ext/cargo-vendor/{wiggle-generate-25.0.1 → wiggle-generate-25.0.2}/src/module_trait.rs +0 -0
  1994. /data/ext/cargo-vendor/{wiggle-generate-25.0.1 → wiggle-generate-25.0.2}/src/names.rs +0 -0
  1995. /data/ext/cargo-vendor/{wiggle-generate-25.0.1 → wiggle-generate-25.0.2}/src/types/error.rs +0 -0
  1996. /data/ext/cargo-vendor/{wiggle-generate-25.0.1 → wiggle-generate-25.0.2}/src/types/flags.rs +0 -0
  1997. /data/ext/cargo-vendor/{wiggle-generate-25.0.1 → wiggle-generate-25.0.2}/src/types/handle.rs +0 -0
  1998. /data/ext/cargo-vendor/{wiggle-generate-25.0.1 → wiggle-generate-25.0.2}/src/types/mod.rs +0 -0
  1999. /data/ext/cargo-vendor/{wiggle-generate-25.0.1 → wiggle-generate-25.0.2}/src/types/record.rs +0 -0
  2000. /data/ext/cargo-vendor/{wiggle-generate-25.0.1 → wiggle-generate-25.0.2}/src/types/variant.rs +0 -0
  2001. /data/ext/cargo-vendor/{wiggle-generate-25.0.1 → wiggle-generate-25.0.2}/src/wasmtime.rs +0 -0
  2002. /data/ext/cargo-vendor/{wiggle-macro-25.0.1 → wiggle-macro-25.0.2}/LICENSE +0 -0
  2003. /data/ext/cargo-vendor/{wiggle-macro-25.0.1 → wiggle-macro-25.0.2}/build.rs +0 -0
  2004. /data/ext/cargo-vendor/{wiggle-macro-25.0.1 → wiggle-macro-25.0.2}/src/lib.rs +0 -0
  2005. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/LICENSE +0 -0
  2006. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/build.rs +0 -0
  2007. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/abi/local.rs +0 -0
  2008. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/abi/mod.rs +0 -0
  2009. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/codegen/bounds.rs +0 -0
  2010. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/codegen/builtin.rs +0 -0
  2011. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/codegen/call.rs +0 -0
  2012. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/codegen/context.rs +0 -0
  2013. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/codegen/control.rs +0 -0
  2014. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/codegen/env.rs +0 -0
  2015. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/codegen/mod.rs +0 -0
  2016. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/frame/mod.rs +0 -0
  2017. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/isa/aarch64/abi.rs +0 -0
  2018. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/isa/aarch64/address.rs +0 -0
  2019. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/isa/aarch64/asm.rs +0 -0
  2020. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/isa/aarch64/masm.rs +0 -0
  2021. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/isa/aarch64/mod.rs +0 -0
  2022. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/isa/aarch64/regs.rs +0 -0
  2023. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/isa/mod.rs +0 -0
  2024. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/isa/reg.rs +0 -0
  2025. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/isa/x64/abi.rs +0 -0
  2026. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/isa/x64/address.rs +0 -0
  2027. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/isa/x64/asm.rs +0 -0
  2028. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/isa/x64/masm.rs +0 -0
  2029. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/isa/x64/mod.rs +0 -0
  2030. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/isa/x64/regs.rs +0 -0
  2031. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/lib.rs +0 -0
  2032. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/masm.rs +0 -0
  2033. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/regalloc.rs +0 -0
  2034. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/regset.rs +0 -0
  2035. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/stack.rs +0 -0
  2036. /data/ext/cargo-vendor/{winch-codegen-0.23.1 → winch-codegen-0.23.2}/src/visitor.rs +0 -0
@@ -1,3525 +0,0 @@
1
- # 1.39.3 (August 17th, 2024)
2
-
3
- This release fixes a regression where the unix socket api stopped accepting
4
- the abstract socket namespace. ([#6772])
5
-
6
- [#6772]: https://github.com/tokio-rs/tokio/pull/6772
7
-
8
- # 1.39.2 (July 27th, 2024)
9
-
10
- This release fixes a regression where the `select!` macro stopped accepting
11
- expressions that make use of temporary lifetime extension. ([#6722])
12
-
13
- [#6722]: https://github.com/tokio-rs/tokio/pull/6722
14
-
15
- # 1.39.1 (July 23rd, 2024)
16
-
17
- This release reverts "time: avoid traversing entries in the time wheel twice"
18
- because it contains a bug. ([#6715])
19
-
20
- [#6715]: https://github.com/tokio-rs/tokio/pull/6715
21
-
22
- # 1.39.0 (July 23rd, 2024)
23
-
24
- Yanked. Please use 1.39.1 instead.
25
-
26
- - This release bumps the MSRV to 1.70. ([#6645])
27
- - This release upgrades to mio v1. ([#6635])
28
- - This release upgrades to windows-sys v0.52 ([#6154])
29
-
30
- ### Added
31
-
32
- - io: implement `AsyncSeek` for `Empty` ([#6663])
33
- - metrics: stabilize `num_alive_tasks` ([#6619], [#6667])
34
- - process: add `Command::as_std_mut` ([#6608])
35
- - sync: add `watch::Sender::same_channel` ([#6637])
36
- - sync: add `{Receiver,UnboundedReceiver}::{sender_strong_count,sender_weak_count}` ([#6661])
37
- - sync: implement `Default` for `watch::Sender` ([#6626])
38
- - task: implement `Clone` for `AbortHandle` ([#6621])
39
- - task: stabilize `consume_budget` ([#6622])
40
-
41
- ### Changed
42
-
43
- - io: improve panic message of `ReadBuf::put_slice()` ([#6629])
44
- - io: read during write in `copy_bidirectional` and `copy` ([#6532])
45
- - runtime: replace `num_cpus` with `available_parallelism` ([#6709])
46
- - task: avoid stack overflow when passing large future to `block_on` ([#6692])
47
- - time: avoid traversing entries in the time wheel twice ([#6584])
48
- - time: support `IntoFuture` with `timeout` ([#6666])
49
- - macros: support `IntoFuture` with `join!` and `select!` ([#6710])
50
-
51
- ### Fixed
52
-
53
- - docs: fix docsrs builds with the fs feature enabled ([#6585])
54
- - io: only use short-read optimization on known-to-be-compatible platforms ([#6668])
55
- - time: fix overflow panic when using large durations with `Interval` ([#6612])
56
-
57
- ### Added (unstable)
58
-
59
- - macros: allow `unhandled_panic` behavior for `#[tokio::main]` and `#[tokio::test]` ([#6593])
60
- - metrics: add `spawned_tasks_count` ([#6114])
61
- - metrics: add `worker_park_unpark_count` ([#6696])
62
- - metrics: add worker thread id ([#6695])
63
-
64
- ### Documented
65
-
66
- - io: update `tokio::io::stdout` documentation ([#6674])
67
- - macros: typo fix in `join.rs` and `try_join.rs` ([#6641])
68
- - runtime: fix typo in `unhandled_panic` ([#6660])
69
- - task: document behavior of `JoinSet::try_join_next` when all tasks are running ([#6671])
70
-
71
- [#6114]: https://github.com/tokio-rs/tokio/pull/6114
72
- [#6154]: https://github.com/tokio-rs/tokio/pull/6154
73
- [#6532]: https://github.com/tokio-rs/tokio/pull/6532
74
- [#6584]: https://github.com/tokio-rs/tokio/pull/6584
75
- [#6585]: https://github.com/tokio-rs/tokio/pull/6585
76
- [#6593]: https://github.com/tokio-rs/tokio/pull/6593
77
- [#6608]: https://github.com/tokio-rs/tokio/pull/6608
78
- [#6612]: https://github.com/tokio-rs/tokio/pull/6612
79
- [#6619]: https://github.com/tokio-rs/tokio/pull/6619
80
- [#6621]: https://github.com/tokio-rs/tokio/pull/6621
81
- [#6622]: https://github.com/tokio-rs/tokio/pull/6622
82
- [#6626]: https://github.com/tokio-rs/tokio/pull/6626
83
- [#6629]: https://github.com/tokio-rs/tokio/pull/6629
84
- [#6635]: https://github.com/tokio-rs/tokio/pull/6635
85
- [#6637]: https://github.com/tokio-rs/tokio/pull/6637
86
- [#6641]: https://github.com/tokio-rs/tokio/pull/6641
87
- [#6645]: https://github.com/tokio-rs/tokio/pull/6645
88
- [#6660]: https://github.com/tokio-rs/tokio/pull/6660
89
- [#6661]: https://github.com/tokio-rs/tokio/pull/6661
90
- [#6663]: https://github.com/tokio-rs/tokio/pull/6663
91
- [#6666]: https://github.com/tokio-rs/tokio/pull/6666
92
- [#6667]: https://github.com/tokio-rs/tokio/pull/6667
93
- [#6668]: https://github.com/tokio-rs/tokio/pull/6668
94
- [#6671]: https://github.com/tokio-rs/tokio/pull/6671
95
- [#6674]: https://github.com/tokio-rs/tokio/pull/6674
96
- [#6692]: https://github.com/tokio-rs/tokio/pull/6692
97
- [#6695]: https://github.com/tokio-rs/tokio/pull/6695
98
- [#6696]: https://github.com/tokio-rs/tokio/pull/6696
99
- [#6709]: https://github.com/tokio-rs/tokio/pull/6709
100
- [#6710]: https://github.com/tokio-rs/tokio/pull/6710
101
-
102
- # 1.38.1 (July 16th, 2024)
103
-
104
- This release fixes the bug identified as ([#6682]), which caused timers not
105
- to fire when they should.
106
-
107
- ### Fixed
108
-
109
- - time: update `wake_up` while holding all the locks of sharded time wheels ([#6683])
110
-
111
- [#6682]: https://github.com/tokio-rs/tokio/pull/6682
112
- [#6683]: https://github.com/tokio-rs/tokio/pull/6683
113
-
114
- # 1.38.0 (May 30th, 2024)
115
-
116
- This release marks the beginning of stabilization for runtime metrics. It
117
- stabilizes `RuntimeMetrics::worker_count`. Future releases will continue to
118
- stabilize more metrics.
119
-
120
- ### Added
121
-
122
- - fs: add `File::create_new` ([#6573])
123
- - io: add `copy_bidirectional_with_sizes` ([#6500])
124
- - io: implement `AsyncBufRead` for `Join` ([#6449])
125
- - net: add Apple visionOS support ([#6465])
126
- - net: implement `Clone` for `NamedPipeInfo` ([#6586])
127
- - net: support QNX OS ([#6421])
128
- - sync: add `Notify::notify_last` ([#6520])
129
- - sync: add `mpsc::Receiver::{capacity,max_capacity}` ([#6511])
130
- - sync: add `split` method to the semaphore permit ([#6472], [#6478])
131
- - task: add `tokio::task::join_set::Builder::spawn_blocking` ([#6578])
132
- - wasm: support rt-multi-thread with wasm32-wasi-preview1-threads ([#6510])
133
-
134
- ### Changed
135
-
136
- - macros: make `#[tokio::test]` append `#[test]` at the end of the attribute list ([#6497])
137
- - metrics: fix `blocking_threads` count ([#6551])
138
- - metrics: stabilize `RuntimeMetrics::worker_count` ([#6556])
139
- - runtime: move task out of the `lifo_slot` in `block_in_place` ([#6596])
140
- - runtime: panic if `global_queue_interval` is zero ([#6445])
141
- - sync: always drop message in destructor for oneshot receiver ([#6558])
142
- - sync: instrument `Semaphore` for task dumps ([#6499])
143
- - sync: use FIFO ordering when waking batches of wakers ([#6521])
144
- - task: make `LocalKey::get` work with Clone types ([#6433])
145
- - tests: update nix and mio-aio dev-dependencies ([#6552])
146
- - time: clean up implementation ([#6517])
147
- - time: lazily init timers on first poll ([#6512])
148
- - time: remove the `true_when` field in `TimerShared` ([#6563])
149
- - time: use sharding for timer implementation ([#6534])
150
-
151
- ### Fixed
152
-
153
- - taskdump: allow building taskdump docs on non-unix machines ([#6564])
154
- - time: check for overflow in `Interval::poll_tick` ([#6487])
155
- - sync: fix incorrect `is_empty` on mpsc block boundaries ([#6603])
156
-
157
- ### Documented
158
-
159
- - fs: rewrite file system docs ([#6467])
160
- - io: fix `stdin` documentation ([#6581])
161
- - io: fix obsolete reference in `ReadHalf::unsplit()` documentation ([#6498])
162
- - macros: render more comprehensible documentation for `select!` ([#6468])
163
- - net: add missing types to module docs ([#6482])
164
- - net: fix misleading `NamedPipeServer` example ([#6590])
165
- - sync: add examples for `SemaphorePermit`, `OwnedSemaphorePermit` ([#6477])
166
- - sync: document that `Barrier::wait` is not cancel safe ([#6494])
167
- - sync: explain relation between `watch::Sender::{subscribe,closed}` ([#6490])
168
- - task: clarify that you can't abort `spawn_blocking` tasks ([#6571])
169
- - task: fix a typo in doc of `LocalSet::run_until` ([#6599])
170
- - time: fix test-util requirement for pause and resume in docs ([#6503])
171
-
172
- [#6421]: https://github.com/tokio-rs/tokio/pull/6421
173
- [#6433]: https://github.com/tokio-rs/tokio/pull/6433
174
- [#6445]: https://github.com/tokio-rs/tokio/pull/6445
175
- [#6449]: https://github.com/tokio-rs/tokio/pull/6449
176
- [#6465]: https://github.com/tokio-rs/tokio/pull/6465
177
- [#6467]: https://github.com/tokio-rs/tokio/pull/6467
178
- [#6468]: https://github.com/tokio-rs/tokio/pull/6468
179
- [#6472]: https://github.com/tokio-rs/tokio/pull/6472
180
- [#6477]: https://github.com/tokio-rs/tokio/pull/6477
181
- [#6478]: https://github.com/tokio-rs/tokio/pull/6478
182
- [#6482]: https://github.com/tokio-rs/tokio/pull/6482
183
- [#6487]: https://github.com/tokio-rs/tokio/pull/6487
184
- [#6490]: https://github.com/tokio-rs/tokio/pull/6490
185
- [#6494]: https://github.com/tokio-rs/tokio/pull/6494
186
- [#6497]: https://github.com/tokio-rs/tokio/pull/6497
187
- [#6498]: https://github.com/tokio-rs/tokio/pull/6498
188
- [#6499]: https://github.com/tokio-rs/tokio/pull/6499
189
- [#6500]: https://github.com/tokio-rs/tokio/pull/6500
190
- [#6503]: https://github.com/tokio-rs/tokio/pull/6503
191
- [#6510]: https://github.com/tokio-rs/tokio/pull/6510
192
- [#6511]: https://github.com/tokio-rs/tokio/pull/6511
193
- [#6512]: https://github.com/tokio-rs/tokio/pull/6512
194
- [#6517]: https://github.com/tokio-rs/tokio/pull/6517
195
- [#6520]: https://github.com/tokio-rs/tokio/pull/6520
196
- [#6521]: https://github.com/tokio-rs/tokio/pull/6521
197
- [#6534]: https://github.com/tokio-rs/tokio/pull/6534
198
- [#6551]: https://github.com/tokio-rs/tokio/pull/6551
199
- [#6552]: https://github.com/tokio-rs/tokio/pull/6552
200
- [#6556]: https://github.com/tokio-rs/tokio/pull/6556
201
- [#6558]: https://github.com/tokio-rs/tokio/pull/6558
202
- [#6563]: https://github.com/tokio-rs/tokio/pull/6563
203
- [#6564]: https://github.com/tokio-rs/tokio/pull/6564
204
- [#6571]: https://github.com/tokio-rs/tokio/pull/6571
205
- [#6573]: https://github.com/tokio-rs/tokio/pull/6573
206
- [#6578]: https://github.com/tokio-rs/tokio/pull/6578
207
- [#6581]: https://github.com/tokio-rs/tokio/pull/6581
208
- [#6586]: https://github.com/tokio-rs/tokio/pull/6586
209
- [#6590]: https://github.com/tokio-rs/tokio/pull/6590
210
- [#6596]: https://github.com/tokio-rs/tokio/pull/6596
211
- [#6599]: https://github.com/tokio-rs/tokio/pull/6599
212
- [#6603]: https://github.com/tokio-rs/tokio/pull/6603
213
-
214
- # 1.37.0 (March 28th, 2024)
215
-
216
- ### Added
217
-
218
- - fs: add `set_max_buf_size` to `tokio::fs::File` ([#6411])
219
- - io: add `try_new` and `try_with_interest` to `AsyncFd` ([#6345])
220
- - sync: add `forget_permits` method to semaphore ([#6331])
221
- - sync: add `is_closed`, `is_empty`, and `len` to mpsc receivers ([#6348])
222
- - sync: add a `rwlock()` method to owned `RwLock` guards ([#6418])
223
- - sync: expose strong and weak counts of mpsc sender handles ([#6405])
224
- - sync: implement `Clone` for `watch::Sender` ([#6388])
225
- - task: add `TaskLocalFuture::take_value` ([#6340])
226
- - task: implement `FromIterator` for `JoinSet` ([#6300])
227
-
228
- ### Changed
229
-
230
- - io: make `io::split` use a mutex instead of a spinlock ([#6403])
231
-
232
- ### Fixed
233
-
234
- - docs: fix docsrs build without net feature ([#6360])
235
- - macros: allow select with only else branch ([#6339])
236
- - runtime: fix leaking registration entries when os registration fails ([#6329])
237
-
238
- ### Documented
239
-
240
- - io: document cancel safety of `AsyncBufReadExt::fill_buf` ([#6431])
241
- - io: document cancel safety of `AsyncReadExt`'s primitive read functions ([#6337])
242
- - runtime: add doc link from `Runtime` to `#[tokio::main]` ([#6366])
243
- - runtime: make the `enter` example deterministic ([#6351])
244
- - sync: add Semaphore example for limiting the number of outgoing requests ([#6419])
245
- - sync: fix missing period in broadcast docs ([#6377])
246
- - sync: mark `mpsc::Sender::downgrade` with `#[must_use]` ([#6326])
247
- - sync: reorder `const_new` before `new_with` ([#6392])
248
- - sync: update watch channel docs ([#6395])
249
- - task: fix documentation links ([#6336])
250
-
251
- ### Changed (unstable)
252
-
253
- - runtime: include task `Id` in taskdumps ([#6328])
254
- - runtime: panic if `unhandled_panic` is enabled when not supported ([#6410])
255
-
256
- [#6300]: https://github.com/tokio-rs/tokio/pull/6300
257
- [#6326]: https://github.com/tokio-rs/tokio/pull/6326
258
- [#6328]: https://github.com/tokio-rs/tokio/pull/6328
259
- [#6329]: https://github.com/tokio-rs/tokio/pull/6329
260
- [#6331]: https://github.com/tokio-rs/tokio/pull/6331
261
- [#6336]: https://github.com/tokio-rs/tokio/pull/6336
262
- [#6337]: https://github.com/tokio-rs/tokio/pull/6337
263
- [#6339]: https://github.com/tokio-rs/tokio/pull/6339
264
- [#6340]: https://github.com/tokio-rs/tokio/pull/6340
265
- [#6345]: https://github.com/tokio-rs/tokio/pull/6345
266
- [#6348]: https://github.com/tokio-rs/tokio/pull/6348
267
- [#6351]: https://github.com/tokio-rs/tokio/pull/6351
268
- [#6360]: https://github.com/tokio-rs/tokio/pull/6360
269
- [#6366]: https://github.com/tokio-rs/tokio/pull/6366
270
- [#6377]: https://github.com/tokio-rs/tokio/pull/6377
271
- [#6388]: https://github.com/tokio-rs/tokio/pull/6388
272
- [#6392]: https://github.com/tokio-rs/tokio/pull/6392
273
- [#6395]: https://github.com/tokio-rs/tokio/pull/6395
274
- [#6403]: https://github.com/tokio-rs/tokio/pull/6403
275
- [#6405]: https://github.com/tokio-rs/tokio/pull/6405
276
- [#6410]: https://github.com/tokio-rs/tokio/pull/6410
277
- [#6411]: https://github.com/tokio-rs/tokio/pull/6411
278
- [#6418]: https://github.com/tokio-rs/tokio/pull/6418
279
- [#6419]: https://github.com/tokio-rs/tokio/pull/6419
280
- [#6431]: https://github.com/tokio-rs/tokio/pull/6431
281
-
282
- # 1.36.0 (February 2nd, 2024)
283
-
284
- ### Added
285
-
286
- - io: add `tokio::io::Join` ([#6220])
287
- - io: implement `AsyncWrite` for `Empty` ([#6235])
288
- - net: add support for anonymous unix pipes ([#6127])
289
- - net: add `UnixSocket` ([#6290])
290
- - net: expose keepalive option on `TcpSocket` ([#6311])
291
- - sync: add `{Receiver,UnboundedReceiver}::poll_recv_many` ([#6236])
292
- - sync: add `Sender::{try_,}reserve_many` ([#6205])
293
- - sync: add `watch::Receiver::mark_unchanged` ([#6252])
294
- - task: add `JoinSet::try_join_next` ([#6280])
295
-
296
- ### Changed
297
-
298
- - io: make `copy` cooperative ([#6265])
299
- - io: make `repeat` and `sink` cooperative ([#6254])
300
- - io: simplify check for empty slice ([#6293])
301
- - process: use pidfd on Linux when available ([#6152])
302
- - sync: use AtomicBool in broadcast channel future ([#6298])
303
-
304
- ### Documented
305
-
306
- - io: clarify `clear_ready` docs ([#6304])
307
- - net: document that `*Fd` traits on `TcpSocket` are unix-only ([#6294])
308
- - sync: document FIFO behavior of `tokio::sync::Mutex` ([#6279])
309
- - chore: typographic improvements ([#6262])
310
- - runtime: remove obsolete comment ([#6303])
311
- - task: fix typo ([#6261])
312
-
313
- [#6220]: https://github.com/tokio-rs/tokio/pull/6220
314
- [#6235]: https://github.com/tokio-rs/tokio/pull/6235
315
- [#6127]: https://github.com/tokio-rs/tokio/pull/6127
316
- [#6290]: https://github.com/tokio-rs/tokio/pull/6290
317
- [#6311]: https://github.com/tokio-rs/tokio/pull/6311
318
- [#6236]: https://github.com/tokio-rs/tokio/pull/6236
319
- [#6205]: https://github.com/tokio-rs/tokio/pull/6205
320
- [#6252]: https://github.com/tokio-rs/tokio/pull/6252
321
- [#6280]: https://github.com/tokio-rs/tokio/pull/6280
322
- [#6265]: https://github.com/tokio-rs/tokio/pull/6265
323
- [#6254]: https://github.com/tokio-rs/tokio/pull/6254
324
- [#6293]: https://github.com/tokio-rs/tokio/pull/6293
325
- [#6238]: https://github.com/tokio-rs/tokio/pull/6238
326
- [#6152]: https://github.com/tokio-rs/tokio/pull/6152
327
- [#6298]: https://github.com/tokio-rs/tokio/pull/6298
328
- [#6262]: https://github.com/tokio-rs/tokio/pull/6262
329
- [#6303]: https://github.com/tokio-rs/tokio/pull/6303
330
- [#6261]: https://github.com/tokio-rs/tokio/pull/6261
331
- [#6304]: https://github.com/tokio-rs/tokio/pull/6304
332
- [#6294]: https://github.com/tokio-rs/tokio/pull/6294
333
- [#6279]: https://github.com/tokio-rs/tokio/pull/6279
334
-
335
- # 1.35.1 (December 19, 2023)
336
-
337
- This is a forward part of a change that was backported to 1.25.3.
338
-
339
- ### Fixed
340
-
341
- - io: add budgeting to `tokio::runtime::io::registration::async_io` ([#6221])
342
-
343
- [#6221]: https://github.com/tokio-rs/tokio/pull/6221
344
-
345
- # 1.35.0 (December 8th, 2023)
346
-
347
- ### Added
348
-
349
- - net: add Apple watchOS support ([#6176])
350
-
351
- ### Changed
352
-
353
- - io: drop the `Sized` requirements from `AsyncReadExt.read_buf` ([#6169])
354
- - runtime: make `Runtime` unwind safe ([#6189])
355
- - runtime: reduce the lock contention in task spawn ([#6001])
356
- - tokio: update nix dependency to 0.27.1 ([#6190])
357
-
358
- ### Fixed
359
-
360
- - chore: make `--cfg docsrs` work without net feature ([#6166])
361
- - chore: use relaxed load for `unsync_load` on miri ([#6179])
362
- - runtime: handle missing context on wake ([#6148])
363
- - taskdump: fix taskdump cargo config example ([#6150])
364
- - taskdump: skip notified tasks during taskdumps ([#6194])
365
- - tracing: avoid creating resource spans with current parent, use a None parent instead ([#6107])
366
- - tracing: make task span explicit root ([#6158])
367
-
368
- ### Documented
369
-
370
- - io: flush in `AsyncWriteExt` examples ([#6149])
371
- - runtime: document fairness guarantees and current behavior ([#6145])
372
- - task: document cancel safety of `LocalSet::run_until` ([#6147])
373
-
374
- [#6001]: https://github.com/tokio-rs/tokio/pull/6001
375
- [#6107]: https://github.com/tokio-rs/tokio/pull/6107
376
- [#6144]: https://github.com/tokio-rs/tokio/pull/6144
377
- [#6145]: https://github.com/tokio-rs/tokio/pull/6145
378
- [#6147]: https://github.com/tokio-rs/tokio/pull/6147
379
- [#6148]: https://github.com/tokio-rs/tokio/pull/6148
380
- [#6149]: https://github.com/tokio-rs/tokio/pull/6149
381
- [#6150]: https://github.com/tokio-rs/tokio/pull/6150
382
- [#6158]: https://github.com/tokio-rs/tokio/pull/6158
383
- [#6166]: https://github.com/tokio-rs/tokio/pull/6166
384
- [#6169]: https://github.com/tokio-rs/tokio/pull/6169
385
- [#6176]: https://github.com/tokio-rs/tokio/pull/6176
386
- [#6179]: https://github.com/tokio-rs/tokio/pull/6179
387
- [#6189]: https://github.com/tokio-rs/tokio/pull/6189
388
- [#6190]: https://github.com/tokio-rs/tokio/pull/6190
389
- [#6194]: https://github.com/tokio-rs/tokio/pull/6194
390
-
391
- # 1.34.0 (November 19th, 2023)
392
-
393
- ### Fixed
394
-
395
- - io: allow `clear_readiness` after io driver shutdown ([#6067])
396
- - io: fix integer overflow in `take` ([#6080])
397
- - io: fix I/O resource hang ([#6134])
398
- - sync: fix `broadcast::channel` link ([#6100])
399
-
400
- ### Changed
401
-
402
- - macros: use `::core` qualified imports instead of `::std` inside `tokio::test` macro ([#5973])
403
-
404
- ### Added
405
-
406
- - fs: update cfg attr in `fs::read_dir` to include `aix` ([#6075])
407
- - sync: add `mpsc::Receiver::recv_many` ([#6010])
408
- - tokio: added vita target support ([#6094])
409
-
410
- [#5973]: https://github.com/tokio-rs/tokio/pull/5973
411
- [#6067]: https://github.com/tokio-rs/tokio/pull/6067
412
- [#6080]: https://github.com/tokio-rs/tokio/pull/6080
413
- [#6134]: https://github.com/tokio-rs/tokio/pull/6134
414
- [#6100]: https://github.com/tokio-rs/tokio/pull/6100
415
- [#6075]: https://github.com/tokio-rs/tokio/pull/6075
416
- [#6010]: https://github.com/tokio-rs/tokio/pull/6010
417
- [#6094]: https://github.com/tokio-rs/tokio/pull/6094
418
-
419
- # 1.33.0 (October 9, 2023)
420
-
421
- ### Fixed
422
-
423
- - io: mark `Interest::add` with `#[must_use]` ([#6037])
424
- - runtime: fix cache line size for RISC-V ([#5994])
425
- - sync: prevent lock poisoning in `watch::Receiver::wait_for` ([#6021])
426
- - task: fix `spawn_local` source location ([#5984])
427
-
428
- ### Changed
429
-
430
- - sync: use Acquire/Release orderings instead of SeqCst in `watch` ([#6018])
431
-
432
- ### Added
433
-
434
- - fs: add vectored writes to `tokio::fs::File` ([#5958])
435
- - io: add `Interest::remove` method ([#5906])
436
- - io: add vectored writes to `DuplexStream` ([#5985])
437
- - net: add Apple tvOS support ([#6045])
438
- - sync: add `?Sized` bound to `{MutexGuard,OwnedMutexGuard}::map` ([#5997])
439
- - sync: add `watch::Receiver::mark_unseen` ([#5962], [#6014], [#6017])
440
- - sync: add `watch::Sender::new` ([#5998])
441
- - sync: add const fn `OnceCell::from_value` ([#5903])
442
-
443
- ### Removed
444
-
445
- - remove unused `stats` feature ([#5952])
446
-
447
- ### Documented
448
-
449
- - add missing backticks in code examples ([#5938], [#6056])
450
- - fix typos ([#5988], [#6030])
451
- - process: document that `Child::wait` is cancel safe ([#5977])
452
- - sync: add examples for `Semaphore` ([#5939], [#5956], [#5978], [#6031], [#6032], [#6050])
453
- - sync: document that `broadcast` capacity is a lower bound ([#6042])
454
- - sync: document that `const_new` is not instrumented ([#6002])
455
- - sync: improve cancel-safety documentation for `mpsc::Sender::send` ([#5947])
456
- - sync: improve docs for `watch` channel ([#5954])
457
- - taskdump: render taskdump documentation on docs.rs ([#5972])
458
-
459
- ### Unstable
460
-
461
- - taskdump: fix potential deadlock ([#6036])
462
-
463
- [#5903]: https://github.com/tokio-rs/tokio/pull/5903
464
- [#5906]: https://github.com/tokio-rs/tokio/pull/5906
465
- [#5938]: https://github.com/tokio-rs/tokio/pull/5938
466
- [#5939]: https://github.com/tokio-rs/tokio/pull/5939
467
- [#5947]: https://github.com/tokio-rs/tokio/pull/5947
468
- [#5952]: https://github.com/tokio-rs/tokio/pull/5952
469
- [#5954]: https://github.com/tokio-rs/tokio/pull/5954
470
- [#5956]: https://github.com/tokio-rs/tokio/pull/5956
471
- [#5958]: https://github.com/tokio-rs/tokio/pull/5958
472
- [#5960]: https://github.com/tokio-rs/tokio/pull/5960
473
- [#5962]: https://github.com/tokio-rs/tokio/pull/5962
474
- [#5971]: https://github.com/tokio-rs/tokio/pull/5971
475
- [#5972]: https://github.com/tokio-rs/tokio/pull/5972
476
- [#5977]: https://github.com/tokio-rs/tokio/pull/5977
477
- [#5978]: https://github.com/tokio-rs/tokio/pull/5978
478
- [#5984]: https://github.com/tokio-rs/tokio/pull/5984
479
- [#5985]: https://github.com/tokio-rs/tokio/pull/5985
480
- [#5988]: https://github.com/tokio-rs/tokio/pull/5988
481
- [#5994]: https://github.com/tokio-rs/tokio/pull/5994
482
- [#5997]: https://github.com/tokio-rs/tokio/pull/5997
483
- [#5998]: https://github.com/tokio-rs/tokio/pull/5998
484
- [#6002]: https://github.com/tokio-rs/tokio/pull/6002
485
- [#6014]: https://github.com/tokio-rs/tokio/pull/6014
486
- [#6017]: https://github.com/tokio-rs/tokio/pull/6017
487
- [#6018]: https://github.com/tokio-rs/tokio/pull/6018
488
- [#6021]: https://github.com/tokio-rs/tokio/pull/6021
489
- [#6030]: https://github.com/tokio-rs/tokio/pull/6030
490
- [#6031]: https://github.com/tokio-rs/tokio/pull/6031
491
- [#6032]: https://github.com/tokio-rs/tokio/pull/6032
492
- [#6036]: https://github.com/tokio-rs/tokio/pull/6036
493
- [#6037]: https://github.com/tokio-rs/tokio/pull/6037
494
- [#6042]: https://github.com/tokio-rs/tokio/pull/6042
495
- [#6045]: https://github.com/tokio-rs/tokio/pull/6045
496
- [#6050]: https://github.com/tokio-rs/tokio/pull/6050
497
- [#6056]: https://github.com/tokio-rs/tokio/pull/6056
498
- [#6058]: https://github.com/tokio-rs/tokio/pull/6058
499
-
500
- # 1.32.1 (December 19, 2023)
501
-
502
- This is a forward part of a change that was backported to 1.25.3.
503
-
504
- ### Fixed
505
-
506
- - io: add budgeting to `tokio::runtime::io::registration::async_io` ([#6221])
507
-
508
- [#6221]: https://github.com/tokio-rs/tokio/pull/6221
509
-
510
- # 1.32.0 (August 16, 2023)
511
-
512
- ### Fixed
513
-
514
- - sync: fix potential quadratic behavior in `broadcast::Receiver` ([#5925])
515
-
516
- ### Added
517
-
518
- - process: stabilize `Command::raw_arg` ([#5930])
519
- - io: enable awaiting error readiness ([#5781])
520
-
521
- ### Unstable
522
-
523
- - rt(alt): improve scalability of alt runtime as the number of cores grows ([#5935])
524
-
525
- [#5925]: https://github.com/tokio-rs/tokio/pull/5925
526
- [#5930]: https://github.com/tokio-rs/tokio/pull/5930
527
- [#5781]: https://github.com/tokio-rs/tokio/pull/5781
528
- [#5935]: https://github.com/tokio-rs/tokio/pull/5935
529
-
530
- # 1.31.0 (August 10, 2023)
531
-
532
- ### Fixed
533
-
534
- * io: delegate `WriteHalf::poll_write_vectored` ([#5914])
535
-
536
- ### Unstable
537
-
538
- * rt(alt): fix memory leak in unstable next-gen scheduler prototype ([#5911])
539
- * rt: expose mean task poll time metric ([#5927])
540
-
541
- [#5914]: https://github.com/tokio-rs/tokio/pull/5914
542
- [#5911]: https://github.com/tokio-rs/tokio/pull/5911
543
- [#5927]: https://github.com/tokio-rs/tokio/pull/5927
544
-
545
- # 1.30.0 (August 9, 2023)
546
-
547
- This release bumps the MSRV of Tokio to 1.63. ([#5887])
548
-
549
- ### Changed
550
-
551
- - tokio: reduce LLVM code generation ([#5859])
552
- - io: support `--cfg mio_unsupported_force_poll_poll` flag ([#5881])
553
- - sync: make `const_new` methods always available ([#5885])
554
- - sync: avoid false sharing in mpsc channel ([#5829])
555
- - rt: pop at least one task from inject queue ([#5908])
556
-
557
- ### Added
558
-
559
- - sync: add `broadcast::Sender::new` ([#5824])
560
- - net: implement `UCred` for espidf ([#5868])
561
- - fs: add `File::options()` ([#5869])
562
- - time: implement extra reset variants for `Interval` ([#5878])
563
- - process: add `{ChildStd*}::into_owned_{fd, handle}` ([#5899])
564
-
565
- ### Removed
566
-
567
- - tokio: removed unused `tokio_*` cfgs ([#5890])
568
- - remove build script to speed up compilation ([#5887])
569
-
570
- ### Documented
571
-
572
- - sync: mention lagging in docs for `broadcast::send` ([#5820])
573
- - runtime: expand on sharing runtime docs ([#5858])
574
- - io: use vec in example for `AsyncReadExt::read_exact` ([#5863])
575
- - time: mark `Sleep` as `!Unpin` in docs ([#5916])
576
- - process: fix `raw_arg` not showing up in docs ([#5865])
577
-
578
- ### Unstable
579
-
580
- - rt: add runtime ID ([#5864])
581
- - rt: initial implementation of new threaded runtime ([#5823])
582
-
583
- [#5820]: https://github.com/tokio-rs/tokio/pull/5820
584
- [#5823]: https://github.com/tokio-rs/tokio/pull/5823
585
- [#5824]: https://github.com/tokio-rs/tokio/pull/5824
586
- [#5829]: https://github.com/tokio-rs/tokio/pull/5829
587
- [#5858]: https://github.com/tokio-rs/tokio/pull/5858
588
- [#5859]: https://github.com/tokio-rs/tokio/pull/5859
589
- [#5863]: https://github.com/tokio-rs/tokio/pull/5863
590
- [#5864]: https://github.com/tokio-rs/tokio/pull/5864
591
- [#5865]: https://github.com/tokio-rs/tokio/pull/5865
592
- [#5868]: https://github.com/tokio-rs/tokio/pull/5868
593
- [#5869]: https://github.com/tokio-rs/tokio/pull/5869
594
- [#5878]: https://github.com/tokio-rs/tokio/pull/5878
595
- [#5881]: https://github.com/tokio-rs/tokio/pull/5881
596
- [#5885]: https://github.com/tokio-rs/tokio/pull/5885
597
- [#5887]: https://github.com/tokio-rs/tokio/pull/5887
598
- [#5890]: https://github.com/tokio-rs/tokio/pull/5890
599
- [#5899]: https://github.com/tokio-rs/tokio/pull/5899
600
- [#5908]: https://github.com/tokio-rs/tokio/pull/5908
601
- [#5916]: https://github.com/tokio-rs/tokio/pull/5916
602
-
603
- # 1.29.1 (June 29, 2023)
604
-
605
- ### Fixed
606
-
607
- - rt: fix nesting two `block_in_place` with a `block_on` between ([#5837])
608
-
609
- [#5837]: https://github.com/tokio-rs/tokio/pull/5837
610
-
611
- # 1.29.0 (June 27, 2023)
612
-
613
- Technically a breaking change, the `Send` implementation is removed from
614
- `runtime::EnterGuard`. This change fixes a bug and should not impact most users.
615
-
616
- ### Breaking
617
-
618
- - rt: `EnterGuard` should not be `Send` ([#5766])
619
-
620
- ### Fixed
621
-
622
- - fs: reduce blocking ops in `fs::read_dir` ([#5653])
623
- - rt: fix possible starvation ([#5686], [#5712])
624
- - rt: fix stacked borrows issue in `JoinSet` ([#5693])
625
- - rt: panic if `EnterGuard` dropped incorrect order ([#5772])
626
- - time: do not overflow to signal value ([#5710])
627
- - fs: wait for in-flight ops before cloning `File` ([#5803])
628
-
629
- ### Changed
630
-
631
- - rt: reduce time to poll tasks scheduled from outside the runtime ([#5705], [#5720])
632
-
633
- ### Added
634
-
635
- - net: add uds doc alias for unix sockets ([#5659])
636
- - rt: add metric for number of tasks ([#5628])
637
- - sync: implement more traits for channel errors ([#5666])
638
- - net: add nodelay methods on TcpSocket ([#5672])
639
- - sync: add `broadcast::Receiver::blocking_recv` ([#5690])
640
- - process: add `raw_arg` method to `Command` ([#5704])
641
- - io: support PRIORITY epoll events ([#5566])
642
- - task: add `JoinSet::poll_join_next` ([#5721])
643
- - net: add support for Redox OS ([#5790])
644
-
645
-
646
- ### Unstable
647
-
648
- - rt: add the ability to dump task backtraces ([#5608], [#5676], [#5708], [#5717])
649
- - rt: instrument task poll times with a histogram ([#5685])
650
-
651
- [#5766]: https://github.com/tokio-rs/tokio/pull/5766
652
- [#5653]: https://github.com/tokio-rs/tokio/pull/5653
653
- [#5686]: https://github.com/tokio-rs/tokio/pull/5686
654
- [#5712]: https://github.com/tokio-rs/tokio/pull/5712
655
- [#5693]: https://github.com/tokio-rs/tokio/pull/5693
656
- [#5772]: https://github.com/tokio-rs/tokio/pull/5772
657
- [#5710]: https://github.com/tokio-rs/tokio/pull/5710
658
- [#5803]: https://github.com/tokio-rs/tokio/pull/5803
659
- [#5705]: https://github.com/tokio-rs/tokio/pull/5705
660
- [#5720]: https://github.com/tokio-rs/tokio/pull/5720
661
- [#5659]: https://github.com/tokio-rs/tokio/pull/5659
662
- [#5628]: https://github.com/tokio-rs/tokio/pull/5628
663
- [#5666]: https://github.com/tokio-rs/tokio/pull/5666
664
- [#5672]: https://github.com/tokio-rs/tokio/pull/5672
665
- [#5690]: https://github.com/tokio-rs/tokio/pull/5690
666
- [#5704]: https://github.com/tokio-rs/tokio/pull/5704
667
- [#5566]: https://github.com/tokio-rs/tokio/pull/5566
668
- [#5721]: https://github.com/tokio-rs/tokio/pull/5721
669
- [#5790]: https://github.com/tokio-rs/tokio/pull/5790
670
- [#5608]: https://github.com/tokio-rs/tokio/pull/5608
671
- [#5676]: https://github.com/tokio-rs/tokio/pull/5676
672
- [#5708]: https://github.com/tokio-rs/tokio/pull/5708
673
- [#5717]: https://github.com/tokio-rs/tokio/pull/5717
674
- [#5685]: https://github.com/tokio-rs/tokio/pull/5685
675
-
676
- # 1.28.2 (May 28, 2023)
677
-
678
- Forward ports 1.18.6 changes.
679
-
680
- ### Fixed
681
-
682
- - deps: disable default features for mio ([#5728])
683
-
684
- [#5728]: https://github.com/tokio-rs/tokio/pull/5728
685
-
686
- # 1.28.1 (May 10th, 2023)
687
-
688
- This release fixes a mistake in the build script that makes `AsFd`
689
- implementations unavailable on Rust 1.63. ([#5677])
690
-
691
- [#5677]: https://github.com/tokio-rs/tokio/pull/5677
692
-
693
- # 1.28.0 (April 25th, 2023)
694
-
695
- ### Added
696
-
697
- - io: add `AsyncFd::async_io` ([#5542])
698
- - io: impl BufMut for ReadBuf ([#5590])
699
- - net: add `recv_buf` for `UdpSocket` and `UnixDatagram` ([#5583])
700
- - sync: add `OwnedSemaphorePermit::semaphore` ([#5618])
701
- - sync: add `same_channel` to broadcast channel ([#5607])
702
- - sync: add `watch::Receiver::wait_for` ([#5611])
703
- - task: add `JoinSet::spawn_blocking` and `JoinSet::spawn_blocking_on` ([#5612])
704
-
705
- ### Changed
706
-
707
- - deps: update windows-sys to 0.48 ([#5591])
708
- - io: make `read_to_end` not grow unnecessarily ([#5610])
709
- - macros: make entrypoints more efficient ([#5621])
710
- - sync: improve Debug impl for `RwLock` ([#5647])
711
- - sync: reduce contention in `Notify` ([#5503])
712
-
713
- ### Fixed
714
-
715
- - net: support `get_peer_cred` on AIX ([#5065])
716
- - sync: avoid deadlocks in `broadcast` with custom wakers ([#5578])
717
-
718
- ### Documented
719
-
720
- - sync: fix typo in `Semaphore::MAX_PERMITS` ([#5645])
721
- - sync: fix typo in `tokio::sync::watch::Sender` docs ([#5587])
722
-
723
- [#5065]: https://github.com/tokio-rs/tokio/pull/5065
724
- [#5503]: https://github.com/tokio-rs/tokio/pull/5503
725
- [#5542]: https://github.com/tokio-rs/tokio/pull/5542
726
- [#5578]: https://github.com/tokio-rs/tokio/pull/5578
727
- [#5583]: https://github.com/tokio-rs/tokio/pull/5583
728
- [#5587]: https://github.com/tokio-rs/tokio/pull/5587
729
- [#5590]: https://github.com/tokio-rs/tokio/pull/5590
730
- [#5591]: https://github.com/tokio-rs/tokio/pull/5591
731
- [#5607]: https://github.com/tokio-rs/tokio/pull/5607
732
- [#5610]: https://github.com/tokio-rs/tokio/pull/5610
733
- [#5611]: https://github.com/tokio-rs/tokio/pull/5611
734
- [#5612]: https://github.com/tokio-rs/tokio/pull/5612
735
- [#5618]: https://github.com/tokio-rs/tokio/pull/5618
736
- [#5621]: https://github.com/tokio-rs/tokio/pull/5621
737
- [#5645]: https://github.com/tokio-rs/tokio/pull/5645
738
- [#5647]: https://github.com/tokio-rs/tokio/pull/5647
739
-
740
- # 1.27.0 (March 27th, 2023)
741
-
742
- This release bumps the MSRV of Tokio to 1.56. ([#5559])
743
-
744
- ### Added
745
-
746
- - io: add `async_io` helper method to sockets ([#5512])
747
- - io: add implementations of `AsFd`/`AsHandle`/`AsSocket` ([#5514], [#5540])
748
- - net: add `UdpSocket::peek_sender()` ([#5520])
749
- - sync: add `RwLockWriteGuard::{downgrade_map, try_downgrade_map}` ([#5527])
750
- - task: add `JoinHandle::abort_handle` ([#5543])
751
-
752
- ### Changed
753
-
754
- - io: use `memchr` from `libc` ([#5558])
755
- - macros: accept path as crate rename in `#[tokio::main]` ([#5557])
756
- - macros: update to syn 2.0.0 ([#5572])
757
- - time: don't register for a wakeup when `Interval` returns `Ready` ([#5553])
758
-
759
- ### Fixed
760
-
761
- - fs: fuse std iterator in `ReadDir` ([#5555])
762
- - tracing: fix `spawn_blocking` location fields ([#5573])
763
- - time: clean up redundant check in `Wheel::poll()` ([#5574])
764
-
765
- ### Documented
766
-
767
- - macros: define cancellation safety ([#5525])
768
- - io: add details to docs of `tokio::io::copy[_buf]` ([#5575])
769
- - io: refer to `ReaderStream` and `StreamReader` in module docs ([#5576])
770
-
771
- [#5512]: https://github.com/tokio-rs/tokio/pull/5512
772
- [#5514]: https://github.com/tokio-rs/tokio/pull/5514
773
- [#5520]: https://github.com/tokio-rs/tokio/pull/5520
774
- [#5525]: https://github.com/tokio-rs/tokio/pull/5525
775
- [#5527]: https://github.com/tokio-rs/tokio/pull/5527
776
- [#5540]: https://github.com/tokio-rs/tokio/pull/5540
777
- [#5543]: https://github.com/tokio-rs/tokio/pull/5543
778
- [#5553]: https://github.com/tokio-rs/tokio/pull/5553
779
- [#5555]: https://github.com/tokio-rs/tokio/pull/5555
780
- [#5557]: https://github.com/tokio-rs/tokio/pull/5557
781
- [#5558]: https://github.com/tokio-rs/tokio/pull/5558
782
- [#5559]: https://github.com/tokio-rs/tokio/pull/5559
783
- [#5572]: https://github.com/tokio-rs/tokio/pull/5572
784
- [#5573]: https://github.com/tokio-rs/tokio/pull/5573
785
- [#5574]: https://github.com/tokio-rs/tokio/pull/5574
786
- [#5575]: https://github.com/tokio-rs/tokio/pull/5575
787
- [#5576]: https://github.com/tokio-rs/tokio/pull/5576
788
-
789
- # 1.26.0 (March 1st, 2023)
790
-
791
- ### Fixed
792
-
793
- - macros: fix empty `join!` and `try_join!` ([#5504])
794
- - sync: don't leak tracing spans in mutex guards ([#5469])
795
- - sync: drop wakers after unlocking the mutex in Notify ([#5471])
796
- - sync: drop wakers outside lock in semaphore ([#5475])
797
-
798
- ### Added
799
-
800
- - fs: add `fs::try_exists` ([#4299])
801
- - net: add types for named unix pipes ([#5351])
802
- - sync: add `MappedOwnedMutexGuard` ([#5474])
803
-
804
- ### Changed
805
-
806
- - chore: update windows-sys to 0.45 ([#5386])
807
- - net: use Message Read Mode for named pipes ([#5350])
808
- - sync: mark lock guards with `#[clippy::has_significant_drop]` ([#5422])
809
- - sync: reduce contention in watch channel ([#5464])
810
- - time: remove cache padding in timer entries ([#5468])
811
- - time: Improve `Instant::now()` perf with test-util ([#5513])
812
-
813
- ### Internal Changes
814
-
815
- - io: use `poll_fn` in `copy_bidirectional` ([#5486])
816
- - net: refactor named pipe builders to not use bitfields ([#5477])
817
- - rt: remove Arc from Clock ([#5434])
818
- - sync: make `notify_waiters` calls atomic ([#5458])
819
- - time: don't store deadline twice in sleep entries ([#5410])
820
-
821
- ### Unstable
822
-
823
- - metrics: add a new metric for budget exhaustion yields ([#5517])
824
-
825
- ### Documented
826
-
827
- - io: improve AsyncFd example ([#5481])
828
- - runtime: document the nature of the main future ([#5494])
829
- - runtime: remove extra period in docs ([#5511])
830
- - signal: updated Documentation for Signals ([#5459])
831
- - sync: add doc aliases for `blocking_*` methods ([#5448])
832
- - sync: fix docs for Send/Sync bounds in broadcast ([#5480])
833
- - sync: document drop behavior for channels ([#5497])
834
- - task: clarify what happens to spawned work during runtime shutdown ([#5394])
835
- - task: clarify `process::Command` docs ([#5413])
836
- - task: fix wording with 'unsend' ([#5452])
837
- - time: document immediate completion guarantee for timeouts ([#5509])
838
- - tokio: document supported platforms ([#5483])
839
-
840
- [#4299]: https://github.com/tokio-rs/tokio/pull/4299
841
- [#5350]: https://github.com/tokio-rs/tokio/pull/5350
842
- [#5351]: https://github.com/tokio-rs/tokio/pull/5351
843
- [#5386]: https://github.com/tokio-rs/tokio/pull/5386
844
- [#5394]: https://github.com/tokio-rs/tokio/pull/5394
845
- [#5410]: https://github.com/tokio-rs/tokio/pull/5410
846
- [#5413]: https://github.com/tokio-rs/tokio/pull/5413
847
- [#5422]: https://github.com/tokio-rs/tokio/pull/5422
848
- [#5434]: https://github.com/tokio-rs/tokio/pull/5434
849
- [#5448]: https://github.com/tokio-rs/tokio/pull/5448
850
- [#5452]: https://github.com/tokio-rs/tokio/pull/5452
851
- [#5458]: https://github.com/tokio-rs/tokio/pull/5458
852
- [#5459]: https://github.com/tokio-rs/tokio/pull/5459
853
- [#5464]: https://github.com/tokio-rs/tokio/pull/5464
854
- [#5468]: https://github.com/tokio-rs/tokio/pull/5468
855
- [#5469]: https://github.com/tokio-rs/tokio/pull/5469
856
- [#5471]: https://github.com/tokio-rs/tokio/pull/5471
857
- [#5474]: https://github.com/tokio-rs/tokio/pull/5474
858
- [#5475]: https://github.com/tokio-rs/tokio/pull/5475
859
- [#5477]: https://github.com/tokio-rs/tokio/pull/5477
860
- [#5480]: https://github.com/tokio-rs/tokio/pull/5480
861
- [#5481]: https://github.com/tokio-rs/tokio/pull/5481
862
- [#5483]: https://github.com/tokio-rs/tokio/pull/5483
863
- [#5486]: https://github.com/tokio-rs/tokio/pull/5486
864
- [#5494]: https://github.com/tokio-rs/tokio/pull/5494
865
- [#5497]: https://github.com/tokio-rs/tokio/pull/5497
866
- [#5504]: https://github.com/tokio-rs/tokio/pull/5504
867
- [#5509]: https://github.com/tokio-rs/tokio/pull/5509
868
- [#5511]: https://github.com/tokio-rs/tokio/pull/5511
869
- [#5513]: https://github.com/tokio-rs/tokio/pull/5513
870
- [#5517]: https://github.com/tokio-rs/tokio/pull/5517
871
-
872
- # 1.25.3 (December 17th, 2023)
873
-
874
- ### Fixed
875
- - io: add budgeting to `tokio::runtime::io::registration::async_io` ([#6221])
876
-
877
- [#6221]: https://github.com/tokio-rs/tokio/pull/6221
878
-
879
- # 1.25.2 (September 22, 2023)
880
-
881
- Forward ports 1.20.6 changes.
882
-
883
- ### Changed
884
-
885
- - io: use `memchr` from `libc` ([#5960])
886
-
887
- [#5960]: https://github.com/tokio-rs/tokio/pull/5960
888
-
889
- # 1.25.1 (May 28, 2023)
890
-
891
- Forward ports 1.18.6 changes.
892
-
893
- ### Fixed
894
-
895
- - deps: disable default features for mio ([#5728])
896
-
897
- [#5728]: https://github.com/tokio-rs/tokio/pull/5728
898
-
899
- # 1.25.0 (January 28, 2023)
900
-
901
- ### Fixed
902
-
903
- - rt: fix runtime metrics reporting ([#5330])
904
-
905
- ### Added
906
-
907
- - sync: add `broadcast::Sender::len` ([#5343])
908
-
909
- ### Changed
910
-
911
- - fs: increase maximum read buffer size to 2MiB ([#5397])
912
-
913
- [#5330]: https://github.com/tokio-rs/tokio/pull/5330
914
- [#5343]: https://github.com/tokio-rs/tokio/pull/5343
915
- [#5397]: https://github.com/tokio-rs/tokio/pull/5397
916
-
917
- # 1.24.2 (January 17, 2023)
918
-
919
- Forward ports 1.18.5 changes.
920
-
921
- ### Fixed
922
-
923
- - io: fix unsoundness in `ReadHalf::unsplit` ([#5375])
924
-
925
- [#5375]: https://github.com/tokio-rs/tokio/pull/5375
926
-
927
- # 1.24.1 (January 6, 2022)
928
-
929
- This release fixes a compilation failure on targets without `AtomicU64` when using rustc older than 1.63. ([#5356])
930
-
931
- [#5356]: https://github.com/tokio-rs/tokio/pull/5356
932
-
933
- # 1.24.0 (January 5, 2022)
934
-
935
- ### Fixed
936
- - rt: improve native `AtomicU64` support detection ([#5284])
937
-
938
- ### Added
939
- - rt: add configuration option for max number of I/O events polled from the OS
940
- per tick ([#5186])
941
- - rt: add an environment variable for configuring the default number of worker
942
- threads per runtime instance ([#4250])
943
-
944
- ### Changed
945
- - sync: reduce MPSC channel stack usage ([#5294])
946
- - io: reduce lock contention in I/O operations ([#5300])
947
- - fs: speed up `read_dir()` by chunking operations ([#5309])
948
- - rt: use internal `ThreadId` implementation ([#5329])
949
- - test: don't auto-advance time when a `spawn_blocking` task is running ([#5115])
950
-
951
- [#5186]: https://github.com/tokio-rs/tokio/pull/5186
952
- [#5294]: https://github.com/tokio-rs/tokio/pull/5294
953
- [#5284]: https://github.com/tokio-rs/tokio/pull/5284
954
- [#4250]: https://github.com/tokio-rs/tokio/pull/4250
955
- [#5300]: https://github.com/tokio-rs/tokio/pull/5300
956
- [#5329]: https://github.com/tokio-rs/tokio/pull/5329
957
- [#5115]: https://github.com/tokio-rs/tokio/pull/5115
958
- [#5309]: https://github.com/tokio-rs/tokio/pull/5309
959
-
960
- # 1.23.1 (January 4, 2022)
961
-
962
- This release forward ports changes from 1.18.4.
963
-
964
- ### Fixed
965
-
966
- - net: fix Windows named pipe server builder to maintain option when toggling
967
- pipe mode ([#5336]).
968
-
969
- [#5336]: https://github.com/tokio-rs/tokio/pull/5336
970
-
971
- # 1.23.0 (December 5, 2022)
972
-
973
- ### Fixed
974
-
975
- - net: fix Windows named pipe connect ([#5208])
976
- - io: support vectored writes for `ChildStdin` ([#5216])
977
- - io: fix `async fn ready()` false positive for OS-specific events ([#5231])
978
-
979
- ### Changed
980
- - runtime: `yield_now` defers task until after driver poll ([#5223])
981
- - runtime: reduce amount of codegen needed per spawned task ([#5213])
982
- - windows: replace `winapi` dependency with `windows-sys` ([#5204])
983
-
984
- [#5208]: https://github.com/tokio-rs/tokio/pull/5208
985
- [#5216]: https://github.com/tokio-rs/tokio/pull/5216
986
- [#5213]: https://github.com/tokio-rs/tokio/pull/5213
987
- [#5204]: https://github.com/tokio-rs/tokio/pull/5204
988
- [#5223]: https://github.com/tokio-rs/tokio/pull/5223
989
- [#5231]: https://github.com/tokio-rs/tokio/pull/5231
990
-
991
- # 1.22.0 (November 17, 2022)
992
-
993
- ### Added
994
- - runtime: add `Handle::runtime_flavor` ([#5138])
995
- - sync: add `Mutex::blocking_lock_owned` ([#5130])
996
- - sync: add `Semaphore::MAX_PERMITS` ([#5144])
997
- - sync: add `merge()` to semaphore permits ([#4948])
998
- - sync: add `mpsc::WeakUnboundedSender` ([#5189])
999
-
1000
- ### Added (unstable)
1001
-
1002
- - process: add `Command::process_group` ([#5114])
1003
- - runtime: export metrics about the blocking thread pool ([#5161])
1004
- - task: add `task::id()` and `task::try_id()` ([#5171])
1005
-
1006
- ### Fixed
1007
- - macros: don't take ownership of futures in macros ([#5087])
1008
- - runtime: fix Stacked Borrows violation in `LocalOwnedTasks` ([#5099])
1009
- - runtime: mitigate ABA with 32-bit queue indices when possible ([#5042])
1010
- - task: wake local tasks to the local queue when woken by the same thread ([#5095])
1011
- - time: panic in release mode when `mark_pending` called illegally ([#5093])
1012
- - runtime: fix typo in expect message ([#5169])
1013
- - runtime: fix `unsync_load` on atomic types ([#5175])
1014
- - task: elaborate safety comments in task deallocation ([#5172])
1015
- - runtime: fix `LocalSet` drop in thread local ([#5179])
1016
- - net: remove libc type leakage in a public API ([#5191])
1017
- - runtime: update the alignment of `CachePadded` ([#5106])
1018
-
1019
- ### Changed
1020
- - io: make `tokio::io::copy` continue filling the buffer when writer stalls ([#5066])
1021
- - runtime: remove `coop::budget` from `LocalSet::run_until` ([#5155])
1022
- - sync: make `Notify` panic safe ([#5154])
1023
-
1024
- ### Documented
1025
- - io: fix doc for `write_i8` to use signed integers ([#5040])
1026
- - net: fix doc typos for TCP and UDP `set_tos` methods ([#5073])
1027
- - net: fix function name in `UdpSocket::recv` documentation ([#5150])
1028
- - sync: typo in `TryLockError` for `RwLock::try_write` ([#5160])
1029
- - task: document that spawned tasks execute immediately ([#5117])
1030
- - time: document return type of `timeout` ([#5118])
1031
- - time: document that `timeout` checks only before poll ([#5126])
1032
- - sync: specify return type of `oneshot::Receiver` in docs ([#5198])
1033
-
1034
- ### Internal changes
1035
- - runtime: use const `Mutex::new` for globals ([#5061])
1036
- - runtime: remove `Option` around `mio::Events` in io driver ([#5078])
1037
- - runtime: remove a conditional compilation clause ([#5104])
1038
- - runtime: remove a reference to internal time handle ([#5107])
1039
- - runtime: misc time driver cleanup ([#5120])
1040
- - runtime: move signal driver to runtime module ([#5121])
1041
- - runtime: signal driver now uses I/O driver directly ([#5125])
1042
- - runtime: start decoupling I/O driver and I/O handle ([#5127])
1043
- - runtime: switch `io::handle` refs with scheduler:Handle ([#5128])
1044
- - runtime: remove Arc from I/O driver ([#5134])
1045
- - runtime: use signal driver handle via `scheduler::Handle` ([#5135])
1046
- - runtime: move internal clock fns out of context ([#5139])
1047
- - runtime: remove `runtime::context` module ([#5140])
1048
- - runtime: keep driver cfgs in `driver.rs` ([#5141])
1049
- - runtime: add `runtime::context` to unify thread-locals ([#5143])
1050
- - runtime: rename some confusing internal variables/fns ([#5151])
1051
- - runtime: move `coop` mod into `runtime` ([#5152])
1052
- - runtime: move budget state to context thread-local ([#5157])
1053
- - runtime: move park logic into runtime module ([#5158])
1054
- - runtime: move `Runtime` into its own file ([#5159])
1055
- - runtime: unify entering a runtime with `Handle::enter` ([#5163])
1056
- - runtime: remove handle reference from each scheduler ([#5166])
1057
- - runtime: move `enter` into `context` ([#5167])
1058
- - runtime: combine context and entered thread-locals ([#5168])
1059
- - runtime: fix accidental unsetting of current handle ([#5178])
1060
- - runtime: move `CoreStage` methods to `Core` ([#5182])
1061
- - sync: name mpsc semaphore types ([#5146])
1062
-
1063
- [#4948]: https://github.com/tokio-rs/tokio/pull/4948
1064
- [#5040]: https://github.com/tokio-rs/tokio/pull/5040
1065
- [#5042]: https://github.com/tokio-rs/tokio/pull/5042
1066
- [#5061]: https://github.com/tokio-rs/tokio/pull/5061
1067
- [#5066]: https://github.com/tokio-rs/tokio/pull/5066
1068
- [#5073]: https://github.com/tokio-rs/tokio/pull/5073
1069
- [#5078]: https://github.com/tokio-rs/tokio/pull/5078
1070
- [#5087]: https://github.com/tokio-rs/tokio/pull/5087
1071
- [#5093]: https://github.com/tokio-rs/tokio/pull/5093
1072
- [#5095]: https://github.com/tokio-rs/tokio/pull/5095
1073
- [#5099]: https://github.com/tokio-rs/tokio/pull/5099
1074
- [#5104]: https://github.com/tokio-rs/tokio/pull/5104
1075
- [#5106]: https://github.com/tokio-rs/tokio/pull/5106
1076
- [#5107]: https://github.com/tokio-rs/tokio/pull/5107
1077
- [#5114]: https://github.com/tokio-rs/tokio/pull/5114
1078
- [#5117]: https://github.com/tokio-rs/tokio/pull/5117
1079
- [#5118]: https://github.com/tokio-rs/tokio/pull/5118
1080
- [#5120]: https://github.com/tokio-rs/tokio/pull/5120
1081
- [#5121]: https://github.com/tokio-rs/tokio/pull/5121
1082
- [#5125]: https://github.com/tokio-rs/tokio/pull/5125
1083
- [#5126]: https://github.com/tokio-rs/tokio/pull/5126
1084
- [#5127]: https://github.com/tokio-rs/tokio/pull/5127
1085
- [#5128]: https://github.com/tokio-rs/tokio/pull/5128
1086
- [#5130]: https://github.com/tokio-rs/tokio/pull/5130
1087
- [#5134]: https://github.com/tokio-rs/tokio/pull/5134
1088
- [#5135]: https://github.com/tokio-rs/tokio/pull/5135
1089
- [#5138]: https://github.com/tokio-rs/tokio/pull/5138
1090
- [#5138]: https://github.com/tokio-rs/tokio/pull/5138
1091
- [#5139]: https://github.com/tokio-rs/tokio/pull/5139
1092
- [#5140]: https://github.com/tokio-rs/tokio/pull/5140
1093
- [#5141]: https://github.com/tokio-rs/tokio/pull/5141
1094
- [#5143]: https://github.com/tokio-rs/tokio/pull/5143
1095
- [#5144]: https://github.com/tokio-rs/tokio/pull/5144
1096
- [#5144]: https://github.com/tokio-rs/tokio/pull/5144
1097
- [#5146]: https://github.com/tokio-rs/tokio/pull/5146
1098
- [#5150]: https://github.com/tokio-rs/tokio/pull/5150
1099
- [#5151]: https://github.com/tokio-rs/tokio/pull/5151
1100
- [#5152]: https://github.com/tokio-rs/tokio/pull/5152
1101
- [#5154]: https://github.com/tokio-rs/tokio/pull/5154
1102
- [#5155]: https://github.com/tokio-rs/tokio/pull/5155
1103
- [#5157]: https://github.com/tokio-rs/tokio/pull/5157
1104
- [#5158]: https://github.com/tokio-rs/tokio/pull/5158
1105
- [#5159]: https://github.com/tokio-rs/tokio/pull/5159
1106
- [#5160]: https://github.com/tokio-rs/tokio/pull/5160
1107
- [#5161]: https://github.com/tokio-rs/tokio/pull/5161
1108
- [#5163]: https://github.com/tokio-rs/tokio/pull/5163
1109
- [#5166]: https://github.com/tokio-rs/tokio/pull/5166
1110
- [#5167]: https://github.com/tokio-rs/tokio/pull/5167
1111
- [#5168]: https://github.com/tokio-rs/tokio/pull/5168
1112
- [#5169]: https://github.com/tokio-rs/tokio/pull/5169
1113
- [#5171]: https://github.com/tokio-rs/tokio/pull/5171
1114
- [#5172]: https://github.com/tokio-rs/tokio/pull/5172
1115
- [#5175]: https://github.com/tokio-rs/tokio/pull/5175
1116
- [#5178]: https://github.com/tokio-rs/tokio/pull/5178
1117
- [#5179]: https://github.com/tokio-rs/tokio/pull/5179
1118
- [#5182]: https://github.com/tokio-rs/tokio/pull/5182
1119
- [#5189]: https://github.com/tokio-rs/tokio/pull/5189
1120
- [#5191]: https://github.com/tokio-rs/tokio/pull/5191
1121
- [#5198]: https://github.com/tokio-rs/tokio/pull/5198
1122
-
1123
- # 1.21.2 (September 27, 2022)
1124
-
1125
- This release removes the dependency on the `once_cell` crate to restore the MSRV
1126
- of 1.21.x, which is the latest minor version at the time of release. ([#5048])
1127
-
1128
- [#5048]: https://github.com/tokio-rs/tokio/pull/5048
1129
-
1130
- # 1.21.1 (September 13, 2022)
1131
-
1132
- ### Fixed
1133
-
1134
- - net: fix dependency resolution for socket2 ([#5000])
1135
- - task: ignore failure to set TLS in `LocalSet` Drop ([#4976])
1136
-
1137
- [#4976]: https://github.com/tokio-rs/tokio/pull/4976
1138
- [#5000]: https://github.com/tokio-rs/tokio/pull/5000
1139
-
1140
- # 1.21.0 (September 2, 2022)
1141
-
1142
- This release is the first release of Tokio to intentionally support WASM. The
1143
- `sync,macros,io-util,rt,time` features are stabilized on WASM. Additionally the
1144
- wasm32-wasi target is given unstable support for the `net` feature.
1145
-
1146
- ### Added
1147
-
1148
- - net: add `device` and `bind_device` methods to TCP/UDP sockets ([#4882])
1149
- - net: add `tos` and `set_tos` methods to TCP and UDP sockets ([#4877])
1150
- - net: add security flags to named pipe `ServerOptions` ([#4845])
1151
- - signal: add more windows signal handlers ([#4924])
1152
- - sync: add `mpsc::Sender::max_capacity` method ([#4904])
1153
- - sync: implement Weak version of `mpsc::Sender` ([#4595])
1154
- - task: add `LocalSet::enter` ([#4765])
1155
- - task: stabilize `JoinSet` and `AbortHandle` ([#4920])
1156
- - tokio: add `track_caller` to public APIs ([#4805], [#4848], [#4852])
1157
- - wasm: initial support for `wasm32-wasi` target ([#4716])
1158
-
1159
- ### Fixed
1160
-
1161
- - miri: improve miri compatibility by avoiding temporary references in `linked_list::Link` impls ([#4841])
1162
- - signal: don't register write interest on signal pipe ([#4898])
1163
- - sync: add `#[must_use]` to lock guards ([#4886])
1164
- - sync: fix hang when calling `recv` on closed and reopened broadcast channel ([#4867])
1165
- - task: propagate attributes on task-locals ([#4837])
1166
-
1167
- ### Changed
1168
-
1169
- - fs: change panic to error in `File::start_seek` ([#4897])
1170
- - io: reduce syscalls in `poll_read` ([#4840])
1171
- - process: use blocking threadpool for child stdio I/O ([#4824])
1172
- - signal: make `SignalKind` methods const ([#4956])
1173
-
1174
- ### Internal changes
1175
-
1176
- - rt: extract `basic_scheduler::Config` ([#4935])
1177
- - rt: move I/O driver into `runtime` module ([#4942])
1178
- - rt: rename internal scheduler types ([#4945])
1179
-
1180
- ### Documented
1181
-
1182
- - chore: fix typos and grammar ([#4858], [#4894], [#4928])
1183
- - io: fix typo in `AsyncSeekExt::rewind` docs ([#4893])
1184
- - net: add documentation to `try_read()` for zero-length buffers ([#4937])
1185
- - runtime: remove incorrect panic section for `Builder::worker_threads` ([#4849])
1186
- - sync: doc of `watch::Sender::send` improved ([#4959])
1187
- - task: add cancel safety docs to `JoinHandle` ([#4901])
1188
- - task: expand on cancellation of `spawn_blocking` ([#4811])
1189
- - time: clarify that the first tick of `Interval::tick` happens immediately ([#4951])
1190
-
1191
- ### Unstable
1192
-
1193
- - rt: add unstable option to disable the LIFO slot ([#4936])
1194
- - task: fix incorrect signature in `Builder::spawn_on` ([#4953])
1195
- - task: make `task::Builder::spawn*` methods fallible ([#4823])
1196
-
1197
- [#4595]: https://github.com/tokio-rs/tokio/pull/4595
1198
- [#4716]: https://github.com/tokio-rs/tokio/pull/4716
1199
- [#4765]: https://github.com/tokio-rs/tokio/pull/4765
1200
- [#4805]: https://github.com/tokio-rs/tokio/pull/4805
1201
- [#4811]: https://github.com/tokio-rs/tokio/pull/4811
1202
- [#4823]: https://github.com/tokio-rs/tokio/pull/4823
1203
- [#4824]: https://github.com/tokio-rs/tokio/pull/4824
1204
- [#4837]: https://github.com/tokio-rs/tokio/pull/4837
1205
- [#4840]: https://github.com/tokio-rs/tokio/pull/4840
1206
- [#4841]: https://github.com/tokio-rs/tokio/pull/4841
1207
- [#4845]: https://github.com/tokio-rs/tokio/pull/4845
1208
- [#4848]: https://github.com/tokio-rs/tokio/pull/4848
1209
- [#4849]: https://github.com/tokio-rs/tokio/pull/4849
1210
- [#4852]: https://github.com/tokio-rs/tokio/pull/4852
1211
- [#4858]: https://github.com/tokio-rs/tokio/pull/4858
1212
- [#4867]: https://github.com/tokio-rs/tokio/pull/4867
1213
- [#4877]: https://github.com/tokio-rs/tokio/pull/4877
1214
- [#4882]: https://github.com/tokio-rs/tokio/pull/4882
1215
- [#4886]: https://github.com/tokio-rs/tokio/pull/4886
1216
- [#4893]: https://github.com/tokio-rs/tokio/pull/4893
1217
- [#4894]: https://github.com/tokio-rs/tokio/pull/4894
1218
- [#4897]: https://github.com/tokio-rs/tokio/pull/4897
1219
- [#4898]: https://github.com/tokio-rs/tokio/pull/4898
1220
- [#4901]: https://github.com/tokio-rs/tokio/pull/4901
1221
- [#4904]: https://github.com/tokio-rs/tokio/pull/4904
1222
- [#4920]: https://github.com/tokio-rs/tokio/pull/4920
1223
- [#4924]: https://github.com/tokio-rs/tokio/pull/4924
1224
- [#4928]: https://github.com/tokio-rs/tokio/pull/4928
1225
- [#4935]: https://github.com/tokio-rs/tokio/pull/4935
1226
- [#4936]: https://github.com/tokio-rs/tokio/pull/4936
1227
- [#4937]: https://github.com/tokio-rs/tokio/pull/4937
1228
- [#4942]: https://github.com/tokio-rs/tokio/pull/4942
1229
- [#4945]: https://github.com/tokio-rs/tokio/pull/4945
1230
- [#4951]: https://github.com/tokio-rs/tokio/pull/4951
1231
- [#4953]: https://github.com/tokio-rs/tokio/pull/4953
1232
- [#4956]: https://github.com/tokio-rs/tokio/pull/4956
1233
- [#4959]: https://github.com/tokio-rs/tokio/pull/4959
1234
-
1235
- # 1.20.6 (September 22, 2023)
1236
-
1237
- This is a backport of a change from 1.27.0.
1238
-
1239
- ### Changed
1240
-
1241
- - io: use `memchr` from `libc` ([#5960])
1242
-
1243
- [#5960]: https://github.com/tokio-rs/tokio/pull/5960
1244
-
1245
- # 1.20.5 (May 28, 2023)
1246
-
1247
- Forward ports 1.18.6 changes.
1248
-
1249
- ### Fixed
1250
-
1251
- - deps: disable default features for mio ([#5728])
1252
-
1253
- [#5728]: https://github.com/tokio-rs/tokio/pull/5728
1254
-
1255
- # 1.20.4 (January 17, 2023)
1256
-
1257
- Forward ports 1.18.5 changes.
1258
-
1259
- ### Fixed
1260
-
1261
- - io: fix unsoundness in `ReadHalf::unsplit` ([#5375])
1262
-
1263
- [#5375]: https://github.com/tokio-rs/tokio/pull/5375
1264
-
1265
- # 1.20.3 (January 3, 2022)
1266
-
1267
- This release forward ports changes from 1.18.4.
1268
-
1269
- ### Fixed
1270
-
1271
- - net: fix Windows named pipe server builder to maintain option when toggling
1272
- pipe mode ([#5336]).
1273
-
1274
- [#5336]: https://github.com/tokio-rs/tokio/pull/5336
1275
-
1276
- # 1.20.2 (September 27, 2022)
1277
-
1278
- This release removes the dependency on the `once_cell` crate to restore the MSRV
1279
- of the 1.20.x LTS release. ([#5048])
1280
-
1281
- [#5048]: https://github.com/tokio-rs/tokio/pull/5048
1282
-
1283
- # 1.20.1 (July 25, 2022)
1284
-
1285
- ### Fixed
1286
-
1287
- - chore: fix version detection in build script ([#4860])
1288
-
1289
- [#4860]: https://github.com/tokio-rs/tokio/pull/4860
1290
-
1291
- # 1.20.0 (July 12, 2022)
1292
-
1293
- ### Added
1294
- - tokio: add `track_caller` to public APIs ([#4772], [#4791], [#4793], [#4806], [#4808])
1295
- - sync: Add `has_changed` method to `watch::Ref` ([#4758])
1296
-
1297
- ### Changed
1298
-
1299
- - time: remove `src/time/driver/wheel/stack.rs` ([#4766])
1300
- - rt: clean up arguments passed to basic scheduler ([#4767])
1301
- - net: be more specific about winapi features ([#4764])
1302
- - tokio: use const initialized thread locals where possible ([#4677])
1303
- - task: various small improvements to LocalKey ([#4795])
1304
-
1305
- ### Documented
1306
-
1307
- - fs: warn about performance pitfall ([#4762])
1308
- - chore: fix spelling ([#4769])
1309
- - sync: document spurious failures in oneshot ([#4777])
1310
- - sync: add warning for watch in non-Send futures ([#4741])
1311
- - chore: fix typo ([#4798])
1312
-
1313
- ### Unstable
1314
-
1315
- - joinset: rename `join_one` to `join_next` ([#4755])
1316
- - rt: unhandled panic config for current thread rt ([#4770])
1317
-
1318
- [#4677]: https://github.com/tokio-rs/tokio/pull/4677
1319
- [#4741]: https://github.com/tokio-rs/tokio/pull/4741
1320
- [#4755]: https://github.com/tokio-rs/tokio/pull/4755
1321
- [#4758]: https://github.com/tokio-rs/tokio/pull/4758
1322
- [#4762]: https://github.com/tokio-rs/tokio/pull/4762
1323
- [#4764]: https://github.com/tokio-rs/tokio/pull/4764
1324
- [#4766]: https://github.com/tokio-rs/tokio/pull/4766
1325
- [#4767]: https://github.com/tokio-rs/tokio/pull/4767
1326
- [#4769]: https://github.com/tokio-rs/tokio/pull/4769
1327
- [#4770]: https://github.com/tokio-rs/tokio/pull/4770
1328
- [#4772]: https://github.com/tokio-rs/tokio/pull/4772
1329
- [#4777]: https://github.com/tokio-rs/tokio/pull/4777
1330
- [#4791]: https://github.com/tokio-rs/tokio/pull/4791
1331
- [#4793]: https://github.com/tokio-rs/tokio/pull/4793
1332
- [#4795]: https://github.com/tokio-rs/tokio/pull/4795
1333
- [#4798]: https://github.com/tokio-rs/tokio/pull/4798
1334
- [#4806]: https://github.com/tokio-rs/tokio/pull/4806
1335
- [#4808]: https://github.com/tokio-rs/tokio/pull/4808
1336
-
1337
- # 1.19.2 (June 6, 2022)
1338
-
1339
- This release fixes another bug in `Notified::enable`. ([#4751])
1340
-
1341
- [#4751]: https://github.com/tokio-rs/tokio/pull/4751
1342
-
1343
- # 1.19.1 (June 5, 2022)
1344
-
1345
- This release fixes a bug in `Notified::enable`. ([#4747])
1346
-
1347
- [#4747]: https://github.com/tokio-rs/tokio/pull/4747
1348
-
1349
- # 1.19.0 (June 3, 2022)
1350
-
1351
- ### Added
1352
-
1353
- - runtime: add `is_finished` method for `JoinHandle` and `AbortHandle` ([#4709])
1354
- - runtime: make global queue and event polling intervals configurable ([#4671])
1355
- - sync: add `Notified::enable` ([#4705])
1356
- - sync: add `watch::Sender::send_if_modified` ([#4591])
1357
- - sync: add resubscribe method to broadcast::Receiver ([#4607])
1358
- - net: add `take_error` to `TcpSocket` and `TcpStream` ([#4739])
1359
-
1360
- ### Changed
1361
-
1362
- - io: refactor out usage of Weak in the io handle ([#4656])
1363
-
1364
- ### Fixed
1365
-
1366
- - macros: avoid starvation in `join!` and `try_join!` ([#4624])
1367
-
1368
- ### Documented
1369
-
1370
- - runtime: clarify semantics of tasks outliving `block_on` ([#4729])
1371
- - time: fix example for `MissedTickBehavior::Burst` ([#4713])
1372
-
1373
- ### Unstable
1374
-
1375
- - metrics: correctly update atomics in `IoDriverMetrics` ([#4725])
1376
- - metrics: fix compilation with unstable, process, and rt, but without net ([#4682])
1377
- - task: add `#[track_caller]` to `JoinSet`/`JoinMap` ([#4697])
1378
- - task: add `Builder::{spawn_on, spawn_local_on, spawn_blocking_on}` ([#4683])
1379
- - task: add `consume_budget` for cooperative scheduling ([#4498])
1380
- - task: add `join_set::Builder` for configuring `JoinSet` tasks ([#4687])
1381
- - task: update return value of `JoinSet::join_one` ([#4726])
1382
-
1383
- [#4498]: https://github.com/tokio-rs/tokio/pull/4498
1384
- [#4591]: https://github.com/tokio-rs/tokio/pull/4591
1385
- [#4607]: https://github.com/tokio-rs/tokio/pull/4607
1386
- [#4624]: https://github.com/tokio-rs/tokio/pull/4624
1387
- [#4656]: https://github.com/tokio-rs/tokio/pull/4656
1388
- [#4671]: https://github.com/tokio-rs/tokio/pull/4671
1389
- [#4682]: https://github.com/tokio-rs/tokio/pull/4682
1390
- [#4683]: https://github.com/tokio-rs/tokio/pull/4683
1391
- [#4687]: https://github.com/tokio-rs/tokio/pull/4687
1392
- [#4697]: https://github.com/tokio-rs/tokio/pull/4697
1393
- [#4705]: https://github.com/tokio-rs/tokio/pull/4705
1394
- [#4709]: https://github.com/tokio-rs/tokio/pull/4709
1395
- [#4713]: https://github.com/tokio-rs/tokio/pull/4713
1396
- [#4725]: https://github.com/tokio-rs/tokio/pull/4725
1397
- [#4726]: https://github.com/tokio-rs/tokio/pull/4726
1398
- [#4729]: https://github.com/tokio-rs/tokio/pull/4729
1399
- [#4739]: https://github.com/tokio-rs/tokio/pull/4739
1400
-
1401
- # 1.18.6 (May 28, 2023)
1402
-
1403
- ### Fixed
1404
-
1405
- - deps: disable default features for mio ([#5728])
1406
-
1407
- [#5728]: https://github.com/tokio-rs/tokio/pull/5728
1408
-
1409
- # 1.18.5 (January 17, 2023)
1410
-
1411
- ### Fixed
1412
-
1413
- - io: fix unsoundness in `ReadHalf::unsplit` ([#5375])
1414
-
1415
- [#5375]: https://github.com/tokio-rs/tokio/pull/5375
1416
-
1417
- # 1.18.4 (January 3, 2022)
1418
-
1419
- ### Fixed
1420
-
1421
- - net: fix Windows named pipe server builder to maintain option when toggling
1422
- pipe mode ([#5336]).
1423
-
1424
- [#5336]: https://github.com/tokio-rs/tokio/pull/5336
1425
-
1426
- # 1.18.3 (September 27, 2022)
1427
-
1428
- This release removes the dependency on the `once_cell` crate to restore the MSRV
1429
- of the 1.18.x LTS release. ([#5048])
1430
-
1431
- [#5048]: https://github.com/tokio-rs/tokio/pull/5048
1432
-
1433
- # 1.18.2 (May 5, 2022)
1434
-
1435
- Add missing features for the `winapi` dependency. ([#4663])
1436
-
1437
- [#4663]: https://github.com/tokio-rs/tokio/pull/4663
1438
-
1439
- # 1.18.1 (May 2, 2022)
1440
-
1441
- The 1.18.0 release broke the build for targets without 64-bit atomics when
1442
- building with `tokio_unstable`. This release fixes that. ([#4649])
1443
-
1444
- [#4649]: https://github.com/tokio-rs/tokio/pull/4649
1445
-
1446
- # 1.18.0 (April 27, 2022)
1447
-
1448
- This release adds a number of new APIs in `tokio::net`, `tokio::signal`, and
1449
- `tokio::sync`. In addition, it adds new unstable APIs to `tokio::task` (`Id`s
1450
- for uniquely identifying a task, and `AbortHandle` for remotely cancelling a
1451
- task), as well as a number of bugfixes.
1452
-
1453
- ### Fixed
1454
-
1455
- - blocking: add missing `#[track_caller]` for `spawn_blocking` ([#4616])
1456
- - macros: fix `select` macro to process 64 branches ([#4519])
1457
- - net: fix `try_io` methods not calling Mio's `try_io` internally ([#4582])
1458
- - runtime: recover when OS fails to spawn a new thread ([#4485])
1459
-
1460
- ### Added
1461
-
1462
- - net: add `UdpSocket::peer_addr` ([#4611])
1463
- - net: add `try_read_buf` method for named pipes ([#4626])
1464
- - signal: add `SignalKind` `Hash`/`Eq` impls and `c_int` conversion ([#4540])
1465
- - signal: add support for signals up to `SIGRTMAX` ([#4555])
1466
- - sync: add `watch::Sender::send_modify` method ([#4310])
1467
- - sync: add `broadcast::Receiver::len` method ([#4542])
1468
- - sync: add `watch::Receiver::same_channel` method ([#4581])
1469
- - sync: implement `Clone` for `RecvError` types ([#4560])
1470
-
1471
- ### Changed
1472
-
1473
- - update `mio` to 0.8.1 ([#4582])
1474
- - macros: rename `tokio::select!`'s internal `util` module ([#4543])
1475
- - runtime: use `Vec::with_capacity` when building runtime ([#4553])
1476
-
1477
- ### Documented
1478
-
1479
- - improve docs for `tokio_unstable` ([#4524])
1480
- - runtime: include more documentation for thread_pool/worker ([#4511])
1481
- - runtime: update `Handle::current`'s docs to mention `EnterGuard` ([#4567])
1482
- - time: clarify platform specific timer resolution ([#4474])
1483
- - signal: document that `Signal::recv` is cancel-safe ([#4634])
1484
- - sync: `UnboundedReceiver` close docs ([#4548])
1485
-
1486
- ### Unstable
1487
-
1488
- The following changes only apply when building with `--cfg tokio_unstable`:
1489
-
1490
- - task: add `task::Id` type ([#4630])
1491
- - task: add `AbortHandle` type for cancelling tasks in a `JoinSet` ([#4530],
1492
- [#4640])
1493
- - task: fix missing `doc(cfg(...))` attributes for `JoinSet` ([#4531])
1494
- - task: fix broken link in `AbortHandle` RustDoc ([#4545])
1495
- - metrics: add initial IO driver metrics ([#4507])
1496
-
1497
-
1498
- [#4616]: https://github.com/tokio-rs/tokio/pull/4616
1499
- [#4519]: https://github.com/tokio-rs/tokio/pull/4519
1500
- [#4582]: https://github.com/tokio-rs/tokio/pull/4582
1501
- [#4485]: https://github.com/tokio-rs/tokio/pull/4485
1502
- [#4613]: https://github.com/tokio-rs/tokio/pull/4613
1503
- [#4611]: https://github.com/tokio-rs/tokio/pull/4611
1504
- [#4626]: https://github.com/tokio-rs/tokio/pull/4626
1505
- [#4540]: https://github.com/tokio-rs/tokio/pull/4540
1506
- [#4555]: https://github.com/tokio-rs/tokio/pull/4555
1507
- [#4310]: https://github.com/tokio-rs/tokio/pull/4310
1508
- [#4542]: https://github.com/tokio-rs/tokio/pull/4542
1509
- [#4581]: https://github.com/tokio-rs/tokio/pull/4581
1510
- [#4560]: https://github.com/tokio-rs/tokio/pull/4560
1511
- [#4631]: https://github.com/tokio-rs/tokio/pull/4631
1512
- [#4582]: https://github.com/tokio-rs/tokio/pull/4582
1513
- [#4543]: https://github.com/tokio-rs/tokio/pull/4543
1514
- [#4553]: https://github.com/tokio-rs/tokio/pull/4553
1515
- [#4524]: https://github.com/tokio-rs/tokio/pull/4524
1516
- [#4511]: https://github.com/tokio-rs/tokio/pull/4511
1517
- [#4567]: https://github.com/tokio-rs/tokio/pull/4567
1518
- [#4474]: https://github.com/tokio-rs/tokio/pull/4474
1519
- [#4634]: https://github.com/tokio-rs/tokio/pull/4634
1520
- [#4548]: https://github.com/tokio-rs/tokio/pull/4548
1521
- [#4630]: https://github.com/tokio-rs/tokio/pull/4630
1522
- [#4530]: https://github.com/tokio-rs/tokio/pull/4530
1523
- [#4640]: https://github.com/tokio-rs/tokio/pull/4640
1524
- [#4531]: https://github.com/tokio-rs/tokio/pull/4531
1525
- [#4545]: https://github.com/tokio-rs/tokio/pull/4545
1526
- [#4507]: https://github.com/tokio-rs/tokio/pull/4507
1527
-
1528
- # 1.17.0 (February 16, 2022)
1529
-
1530
- This release updates the minimum supported Rust version (MSRV) to 1.49, the
1531
- `mio` dependency to v0.8, and the (optional) `parking_lot` dependency to v0.12.
1532
- Additionally, it contains several bug fixes, as well as internal refactoring and
1533
- performance improvements.
1534
-
1535
- ### Fixed
1536
-
1537
- - time: prevent panicking in `sleep` with large durations ([#4495])
1538
- - time: eliminate potential panics in `Instant` arithmetic on platforms where
1539
- `Instant::now` is not monotonic ([#4461])
1540
- - io: fix `DuplexStream` not participating in cooperative yielding ([#4478])
1541
- - rt: fix potential double panic when dropping a `JoinHandle` ([#4430])
1542
-
1543
- ### Changed
1544
-
1545
- - update minimum supported Rust version to 1.49 ([#4457])
1546
- - update `parking_lot` dependency to v0.12.0 ([#4459])
1547
- - update `mio` dependency to v0.8 ([#4449])
1548
- - rt: remove an unnecessary lock in the blocking pool ([#4436])
1549
- - rt: remove an unnecessary enum in the basic scheduler ([#4462])
1550
- - time: use bit manipulation instead of modulo to improve performance ([#4480])
1551
- - net: use `std::future::Ready` instead of our own `Ready` future ([#4271])
1552
- - replace deprecated `atomic::spin_loop_hint` with `hint::spin_loop` ([#4491])
1553
- - fix miri failures in intrusive linked lists ([#4397])
1554
-
1555
- ### Documented
1556
-
1557
- - io: add an example for `tokio::process::ChildStdin` ([#4479])
1558
-
1559
- ### Unstable
1560
-
1561
- The following changes only apply when building with `--cfg tokio_unstable`:
1562
-
1563
- - task: fix missing location information in `tracing` spans generated by
1564
- `spawn_local` ([#4483])
1565
- - task: add `JoinSet` for managing sets of tasks ([#4335])
1566
- - metrics: fix compilation error on MIPS ([#4475])
1567
- - metrics: fix compilation error on arm32v7 ([#4453])
1568
-
1569
- [#4495]: https://github.com/tokio-rs/tokio/pull/4495
1570
- [#4461]: https://github.com/tokio-rs/tokio/pull/4461
1571
- [#4478]: https://github.com/tokio-rs/tokio/pull/4478
1572
- [#4430]: https://github.com/tokio-rs/tokio/pull/4430
1573
- [#4457]: https://github.com/tokio-rs/tokio/pull/4457
1574
- [#4459]: https://github.com/tokio-rs/tokio/pull/4459
1575
- [#4449]: https://github.com/tokio-rs/tokio/pull/4449
1576
- [#4462]: https://github.com/tokio-rs/tokio/pull/4462
1577
- [#4436]: https://github.com/tokio-rs/tokio/pull/4436
1578
- [#4480]: https://github.com/tokio-rs/tokio/pull/4480
1579
- [#4271]: https://github.com/tokio-rs/tokio/pull/4271
1580
- [#4491]: https://github.com/tokio-rs/tokio/pull/4491
1581
- [#4397]: https://github.com/tokio-rs/tokio/pull/4397
1582
- [#4479]: https://github.com/tokio-rs/tokio/pull/4479
1583
- [#4483]: https://github.com/tokio-rs/tokio/pull/4483
1584
- [#4335]: https://github.com/tokio-rs/tokio/pull/4335
1585
- [#4475]: https://github.com/tokio-rs/tokio/pull/4475
1586
- [#4453]: https://github.com/tokio-rs/tokio/pull/4453
1587
-
1588
- # 1.16.1 (January 28, 2022)
1589
-
1590
- This release fixes a bug in [#4428] with the change [#4437].
1591
-
1592
- [#4428]: https://github.com/tokio-rs/tokio/pull/4428
1593
- [#4437]: https://github.com/tokio-rs/tokio/pull/4437
1594
-
1595
- # 1.16.0 (January 27, 2022)
1596
-
1597
- Fixes a soundness bug in `io::Take` ([#4428]). The unsoundness is exposed when
1598
- leaking memory in the given `AsyncRead` implementation and then overwriting the
1599
- supplied buffer:
1600
-
1601
- ```rust
1602
- impl AsyncRead for Buggy {
1603
- fn poll_read(
1604
- self: Pin<&mut Self>,
1605
- cx: &mut Context<'_>,
1606
- buf: &mut ReadBuf<'_>
1607
- ) -> Poll<Result<()>> {
1608
- let new_buf = vec![0; 5].leak();
1609
- *buf = ReadBuf::new(new_buf);
1610
- buf.put_slice(b"hello");
1611
- Poll::Ready(Ok(()))
1612
- }
1613
- }
1614
- ```
1615
-
1616
- Also, this release includes improvements to the multi-threaded scheduler that
1617
- can increase throughput by up to 20% in some cases ([#4383]).
1618
-
1619
- ### Fixed
1620
-
1621
- - io: **soundness** don't expose uninitialized memory when using `io::Take` in edge case ([#4428])
1622
- - fs: ensure `File::write` results in a `write` syscall when the runtime shuts down ([#4316])
1623
- - process: drop pipe after child exits in `wait_with_output` ([#4315])
1624
- - rt: improve error message when spawning a thread fails ([#4398])
1625
- - rt: reduce false-positive thread wakups in the multi-threaded scheduler ([#4383])
1626
- - sync: don't inherit `Send` from `parking_lot::*Guard` ([#4359])
1627
-
1628
- ### Added
1629
-
1630
- - net: `TcpSocket::linger()` and `set_linger()` ([#4324])
1631
- - net: impl `UnwindSafe` for socket types ([#4384])
1632
- - rt: impl `UnwindSafe` for `JoinHandle` ([#4418])
1633
- - sync: `watch::Receiver::has_changed()` ([#4342])
1634
- - sync: `oneshot::Receiver::blocking_recv()` ([#4334])
1635
- - sync: `RwLock` blocking operations ([#4425])
1636
-
1637
- ### Unstable
1638
-
1639
- The following changes only apply when building with `--cfg tokio_unstable`
1640
-
1641
- - rt: **breaking change** overhaul runtime metrics API ([#4373])
1642
-
1643
- [#4428]: https://github.com/tokio-rs/tokio/pull/4428
1644
- [#4316]: https://github.com/tokio-rs/tokio/pull/4316
1645
- [#4315]: https://github.com/tokio-rs/tokio/pull/4315
1646
- [#4398]: https://github.com/tokio-rs/tokio/pull/4398
1647
- [#4383]: https://github.com/tokio-rs/tokio/pull/4383
1648
- [#4359]: https://github.com/tokio-rs/tokio/pull/4359
1649
- [#4324]: https://github.com/tokio-rs/tokio/pull/4324
1650
- [#4384]: https://github.com/tokio-rs/tokio/pull/4384
1651
- [#4418]: https://github.com/tokio-rs/tokio/pull/4418
1652
- [#4342]: https://github.com/tokio-rs/tokio/pull/4342
1653
- [#4334]: https://github.com/tokio-rs/tokio/pull/4334
1654
- [#4425]: https://github.com/tokio-rs/tokio/pull/4425
1655
- [#4373]: https://github.com/tokio-rs/tokio/pull/4373
1656
-
1657
- # 1.15.0 (December 15, 2021)
1658
-
1659
- ### Fixed
1660
-
1661
- - io: add cooperative yielding support to `io::empty()` ([#4300])
1662
- - time: make timeout robust against budget-depleting tasks ([#4314])
1663
-
1664
- ### Changed
1665
-
1666
- - update minimum supported Rust version to 1.46.
1667
-
1668
- ### Added
1669
-
1670
- - time: add `Interval::reset()` ([#4248])
1671
- - io: add explicit lifetimes to `AsyncFdReadyGuard` ([#4267])
1672
- - process: add `Command::as_std()` ([#4295])
1673
-
1674
- ### Added (unstable)
1675
-
1676
- - tracing: instrument `tokio::sync` types ([#4302])
1677
-
1678
- [#4302]: https://github.com/tokio-rs/tokio/pull/4302
1679
- [#4300]: https://github.com/tokio-rs/tokio/pull/4300
1680
- [#4295]: https://github.com/tokio-rs/tokio/pull/4295
1681
- [#4267]: https://github.com/tokio-rs/tokio/pull/4267
1682
- [#4248]: https://github.com/tokio-rs/tokio/pull/4248
1683
- [#4314]: https://github.com/tokio-rs/tokio/pull/4314
1684
-
1685
- # 1.14.0 (November 15, 2021)
1686
-
1687
- ### Fixed
1688
-
1689
- - macros: fix compiler errors when using `mut` patterns in `select!` ([#4211])
1690
- - sync: fix a data race between `oneshot::Sender::send` and awaiting a
1691
- `oneshot::Receiver` when the oneshot has been closed ([#4226])
1692
- - sync: make `AtomicWaker` panic safe ([#3689])
1693
- - runtime: fix basic scheduler dropping tasks outside a runtime context
1694
- ([#4213])
1695
-
1696
- ### Added
1697
-
1698
- - stats: add `RuntimeStats::busy_duration_total` ([#4179], [#4223])
1699
-
1700
- ### Changed
1701
-
1702
- - io: updated `copy` buffer size to match `std::io::copy` ([#4209])
1703
-
1704
- ### Documented
1705
-
1706
- - io: rename buffer to file in doc-test ([#4230])
1707
- - sync: fix Notify example ([#4212])
1708
-
1709
- [#4211]: https://github.com/tokio-rs/tokio/pull/4211
1710
- [#4226]: https://github.com/tokio-rs/tokio/pull/4226
1711
- [#3689]: https://github.com/tokio-rs/tokio/pull/3689
1712
- [#4213]: https://github.com/tokio-rs/tokio/pull/4213
1713
- [#4179]: https://github.com/tokio-rs/tokio/pull/4179
1714
- [#4223]: https://github.com/tokio-rs/tokio/pull/4223
1715
- [#4209]: https://github.com/tokio-rs/tokio/pull/4209
1716
- [#4230]: https://github.com/tokio-rs/tokio/pull/4230
1717
- [#4212]: https://github.com/tokio-rs/tokio/pull/4212
1718
-
1719
- # 1.13.1 (November 15, 2021)
1720
-
1721
- ### Fixed
1722
-
1723
- - sync: fix a data race between `oneshot::Sender::send` and awaiting a
1724
- `oneshot::Receiver` when the oneshot has been closed ([#4226])
1725
-
1726
- [#4226]: https://github.com/tokio-rs/tokio/pull/4226
1727
-
1728
- # 1.13.0 (October 29, 2021)
1729
-
1730
- ### Fixed
1731
-
1732
- - sync: fix `Notify` to clone the waker before locking its waiter list ([#4129])
1733
- - tokio: add riscv32 to non atomic64 architectures ([#4185])
1734
-
1735
- ### Added
1736
-
1737
- - net: add `poll_{recv,send}_ready` methods to `udp` and `uds_datagram` ([#4131])
1738
- - net: add `try_*`, `readable`, `writable`, `ready`, and `peer_addr` methods to split halves ([#4120])
1739
- - sync: add `blocking_lock` to `Mutex` ([#4130])
1740
- - sync: add `watch::Sender::send_replace` ([#3962], [#4195])
1741
- - sync: expand `Debug` for `Mutex<T>` impl to unsized `T` ([#4134])
1742
- - tracing: instrument time::Sleep ([#4072])
1743
- - tracing: use structured location fields for spawned tasks ([#4128])
1744
-
1745
- ### Changed
1746
-
1747
- - io: add assert in `copy_bidirectional` that `poll_write` is sensible ([#4125])
1748
- - macros: use qualified syntax when polling in `select!` ([#4192])
1749
- - runtime: handle `block_on` wakeups better ([#4157])
1750
- - task: allocate callback on heap immediately in debug mode ([#4203])
1751
- - tokio: assert platform-minimum requirements at build time ([#3797])
1752
-
1753
- ### Documented
1754
-
1755
- - docs: conversion of doc comments to indicative mood ([#4174])
1756
- - docs: add returning on the first error example for `try_join!` ([#4133])
1757
- - docs: fixing broken links in `tokio/src/lib.rs` ([#4132])
1758
- - signal: add example with background listener ([#4171])
1759
- - sync: add more oneshot examples ([#4153])
1760
- - time: document `Interval::tick` cancel safety ([#4152])
1761
-
1762
- [#3797]: https://github.com/tokio-rs/tokio/pull/3797
1763
- [#3962]: https://github.com/tokio-rs/tokio/pull/3962
1764
- [#4072]: https://github.com/tokio-rs/tokio/pull/4072
1765
- [#4120]: https://github.com/tokio-rs/tokio/pull/4120
1766
- [#4125]: https://github.com/tokio-rs/tokio/pull/4125
1767
- [#4128]: https://github.com/tokio-rs/tokio/pull/4128
1768
- [#4129]: https://github.com/tokio-rs/tokio/pull/4129
1769
- [#4130]: https://github.com/tokio-rs/tokio/pull/4130
1770
- [#4131]: https://github.com/tokio-rs/tokio/pull/4131
1771
- [#4132]: https://github.com/tokio-rs/tokio/pull/4132
1772
- [#4133]: https://github.com/tokio-rs/tokio/pull/4133
1773
- [#4134]: https://github.com/tokio-rs/tokio/pull/4134
1774
- [#4152]: https://github.com/tokio-rs/tokio/pull/4152
1775
- [#4153]: https://github.com/tokio-rs/tokio/pull/4153
1776
- [#4157]: https://github.com/tokio-rs/tokio/pull/4157
1777
- [#4171]: https://github.com/tokio-rs/tokio/pull/4171
1778
- [#4174]: https://github.com/tokio-rs/tokio/pull/4174
1779
- [#4185]: https://github.com/tokio-rs/tokio/pull/4185
1780
- [#4192]: https://github.com/tokio-rs/tokio/pull/4192
1781
- [#4195]: https://github.com/tokio-rs/tokio/pull/4195
1782
- [#4203]: https://github.com/tokio-rs/tokio/pull/4203
1783
-
1784
- # 1.12.0 (September 21, 2021)
1785
-
1786
- ### Fixed
1787
-
1788
- - mpsc: ensure `try_reserve` error is consistent with `try_send` ([#4119])
1789
- - mpsc: use `spin_loop_hint` instead of `yield_now` ([#4115])
1790
- - sync: make `SendError` field public ([#4097])
1791
-
1792
- ### Added
1793
-
1794
- - io: add POSIX AIO on FreeBSD ([#4054])
1795
- - io: add convenience method `AsyncSeekExt::rewind` ([#4107])
1796
- - runtime: add tracing span for `block_on` futures ([#4094])
1797
- - runtime: callback when a worker parks and unparks ([#4070])
1798
- - sync: implement `try_recv` for mpsc channels ([#4113])
1799
-
1800
- ### Documented
1801
-
1802
- - docs: clarify CPU-bound tasks on Tokio ([#4105])
1803
- - mpsc: document spurious failures on `poll_recv` ([#4117])
1804
- - mpsc: document that `PollSender` impls `Sink` ([#4110])
1805
- - task: document non-guarantees of `yield_now` ([#4091])
1806
- - time: document paused time details better ([#4061], [#4103])
1807
-
1808
- [#4027]: https://github.com/tokio-rs/tokio/pull/4027
1809
- [#4054]: https://github.com/tokio-rs/tokio/pull/4054
1810
- [#4061]: https://github.com/tokio-rs/tokio/pull/4061
1811
- [#4070]: https://github.com/tokio-rs/tokio/pull/4070
1812
- [#4091]: https://github.com/tokio-rs/tokio/pull/4091
1813
- [#4094]: https://github.com/tokio-rs/tokio/pull/4094
1814
- [#4097]: https://github.com/tokio-rs/tokio/pull/4097
1815
- [#4103]: https://github.com/tokio-rs/tokio/pull/4103
1816
- [#4105]: https://github.com/tokio-rs/tokio/pull/4105
1817
- [#4107]: https://github.com/tokio-rs/tokio/pull/4107
1818
- [#4110]: https://github.com/tokio-rs/tokio/pull/4110
1819
- [#4113]: https://github.com/tokio-rs/tokio/pull/4113
1820
- [#4115]: https://github.com/tokio-rs/tokio/pull/4115
1821
- [#4117]: https://github.com/tokio-rs/tokio/pull/4117
1822
- [#4119]: https://github.com/tokio-rs/tokio/pull/4119
1823
-
1824
- # 1.11.0 (August 31, 2021)
1825
-
1826
- ### Fixed
1827
-
1828
- - time: don't panic when Instant is not monotonic ([#4044])
1829
- - io: fix panic in `fill_buf` by not calling `poll_fill_buf` twice ([#4084])
1830
-
1831
- ### Added
1832
-
1833
- - watch: add `watch::Sender::subscribe` ([#3800])
1834
- - process: add `from_std` to `ChildStd*` ([#4045])
1835
- - stats: initial work on runtime stats ([#4043])
1836
-
1837
- ### Changed
1838
-
1839
- - tracing: change span naming to new console convention ([#4042])
1840
- - io: speed-up waking by using uninitialized array ([#4055], [#4071], [#4075])
1841
-
1842
- ### Documented
1843
-
1844
- - time: make Sleep examples easier to find ([#4040])
1845
-
1846
- [#3800]: https://github.com/tokio-rs/tokio/pull/3800
1847
- [#4040]: https://github.com/tokio-rs/tokio/pull/4040
1848
- [#4042]: https://github.com/tokio-rs/tokio/pull/4042
1849
- [#4043]: https://github.com/tokio-rs/tokio/pull/4043
1850
- [#4044]: https://github.com/tokio-rs/tokio/pull/4044
1851
- [#4045]: https://github.com/tokio-rs/tokio/pull/4045
1852
- [#4055]: https://github.com/tokio-rs/tokio/pull/4055
1853
- [#4071]: https://github.com/tokio-rs/tokio/pull/4071
1854
- [#4075]: https://github.com/tokio-rs/tokio/pull/4075
1855
- [#4084]: https://github.com/tokio-rs/tokio/pull/4084
1856
-
1857
- # 1.10.1 (August 24, 2021)
1858
-
1859
- ### Fixed
1860
-
1861
- - runtime: fix leak in UnownedTask ([#4063])
1862
-
1863
- [#4063]: https://github.com/tokio-rs/tokio/pull/4063
1864
-
1865
- # 1.10.0 (August 12, 2021)
1866
-
1867
- ### Added
1868
-
1869
- - io: add `(read|write)_f(32|64)[_le]` methods ([#4022])
1870
- - io: add `fill_buf` and `consume` to `AsyncBufReadExt` ([#3991])
1871
- - process: add `Child::raw_handle()` on windows ([#3998])
1872
-
1873
- ### Fixed
1874
-
1875
- - doc: fix non-doc builds with `--cfg docsrs` ([#4020])
1876
- - io: flush eagerly in `io::copy` ([#4001])
1877
- - runtime: a debug assert was sometimes triggered during shutdown ([#4005])
1878
- - sync: use `spin_loop_hint` instead of `yield_now` in mpsc ([#4037])
1879
- - tokio: the test-util feature depends on rt, sync, and time ([#4036])
1880
-
1881
- ### Changes
1882
-
1883
- - runtime: reorganize parts of the runtime ([#3979], [#4005])
1884
- - signal: make windows docs for signal module show up on unix builds ([#3770])
1885
- - task: quickly send task to heap on debug mode ([#4009])
1886
-
1887
- ### Documented
1888
-
1889
- - io: document cancellation safety of `AsyncBufReadExt` ([#3997])
1890
- - sync: document when `watch::send` fails ([#4021])
1891
-
1892
- [#3770]: https://github.com/tokio-rs/tokio/pull/3770
1893
- [#3979]: https://github.com/tokio-rs/tokio/pull/3979
1894
- [#3991]: https://github.com/tokio-rs/tokio/pull/3991
1895
- [#3997]: https://github.com/tokio-rs/tokio/pull/3997
1896
- [#3998]: https://github.com/tokio-rs/tokio/pull/3998
1897
- [#4001]: https://github.com/tokio-rs/tokio/pull/4001
1898
- [#4005]: https://github.com/tokio-rs/tokio/pull/4005
1899
- [#4009]: https://github.com/tokio-rs/tokio/pull/4009
1900
- [#4020]: https://github.com/tokio-rs/tokio/pull/4020
1901
- [#4021]: https://github.com/tokio-rs/tokio/pull/4021
1902
- [#4022]: https://github.com/tokio-rs/tokio/pull/4022
1903
- [#4036]: https://github.com/tokio-rs/tokio/pull/4036
1904
- [#4037]: https://github.com/tokio-rs/tokio/pull/4037
1905
-
1906
- # 1.9.0 (July 22, 2021)
1907
-
1908
- ### Added
1909
-
1910
- - net: allow customized I/O operations for `TcpStream` ([#3888])
1911
- - sync: add getter for the mutex from a guard ([#3928])
1912
- - task: expose nameable future for `TaskLocal::scope` ([#3273])
1913
-
1914
- ### Fixed
1915
-
1916
- - Fix leak if output of future panics on drop ([#3967])
1917
- - Fix leak in `LocalSet` ([#3978])
1918
-
1919
- ### Changes
1920
-
1921
- - runtime: reorganize parts of the runtime ([#3909], [#3939], [#3950], [#3955], [#3980])
1922
- - sync: clean up `OnceCell` ([#3945])
1923
- - task: remove mutex in `JoinError` ([#3959])
1924
-
1925
- [#3273]: https://github.com/tokio-rs/tokio/pull/3273
1926
- [#3888]: https://github.com/tokio-rs/tokio/pull/3888
1927
- [#3909]: https://github.com/tokio-rs/tokio/pull/3909
1928
- [#3928]: https://github.com/tokio-rs/tokio/pull/3928
1929
- [#3934]: https://github.com/tokio-rs/tokio/pull/3934
1930
- [#3939]: https://github.com/tokio-rs/tokio/pull/3939
1931
- [#3945]: https://github.com/tokio-rs/tokio/pull/3945
1932
- [#3950]: https://github.com/tokio-rs/tokio/pull/3950
1933
- [#3955]: https://github.com/tokio-rs/tokio/pull/3955
1934
- [#3959]: https://github.com/tokio-rs/tokio/pull/3959
1935
- [#3967]: https://github.com/tokio-rs/tokio/pull/3967
1936
- [#3978]: https://github.com/tokio-rs/tokio/pull/3978
1937
- [#3980]: https://github.com/tokio-rs/tokio/pull/3980
1938
-
1939
- # 1.8.3 (July 26, 2021)
1940
-
1941
- This release backports two fixes from 1.9.0
1942
-
1943
- ### Fixed
1944
-
1945
- - Fix leak if output of future panics on drop ([#3967])
1946
- - Fix leak in `LocalSet` ([#3978])
1947
-
1948
- [#3967]: https://github.com/tokio-rs/tokio/pull/3967
1949
- [#3978]: https://github.com/tokio-rs/tokio/pull/3978
1950
-
1951
- # 1.8.2 (July 19, 2021)
1952
-
1953
- Fixes a missed edge case from 1.8.1.
1954
-
1955
- ### Fixed
1956
-
1957
- - runtime: drop canceled future on next poll ([#3965])
1958
-
1959
- [#3965]: https://github.com/tokio-rs/tokio/pull/3965
1960
-
1961
- # 1.8.1 (July 6, 2021)
1962
-
1963
- Forward ports 1.5.1 fixes.
1964
-
1965
- ### Fixed
1966
-
1967
- - runtime: remotely abort tasks on `JoinHandle::abort` ([#3934])
1968
-
1969
- [#3934]: https://github.com/tokio-rs/tokio/pull/3934
1970
-
1971
- # 1.8.0 (July 2, 2021)
1972
-
1973
- ### Added
1974
-
1975
- - io: add `get_{ref,mut}` methods to `AsyncFdReadyGuard` and `AsyncFdReadyMutGuard` ([#3807])
1976
- - io: efficient implementation of vectored writes for `BufWriter` ([#3163])
1977
- - net: add ready/try methods to `NamedPipe{Client,Server}` ([#3866], [#3899])
1978
- - sync: add `watch::Receiver::borrow_and_update` ([#3813])
1979
- - sync: implement `From<T>` for `OnceCell<T>` ([#3877])
1980
- - time: allow users to specify Interval behavior when delayed ([#3721])
1981
-
1982
- ### Added (unstable)
1983
-
1984
- - rt: add `tokio::task::Builder` ([#3881])
1985
-
1986
- ### Fixed
1987
-
1988
- - net: handle HUP event with `UnixStream` ([#3898])
1989
-
1990
- ### Documented
1991
-
1992
- - doc: document cancellation safety ([#3900])
1993
- - time: add wait alias to sleep ([#3897])
1994
- - time: document auto-advancing behavior of runtime ([#3763])
1995
-
1996
- [#3163]: https://github.com/tokio-rs/tokio/pull/3163
1997
- [#3721]: https://github.com/tokio-rs/tokio/pull/3721
1998
- [#3763]: https://github.com/tokio-rs/tokio/pull/3763
1999
- [#3807]: https://github.com/tokio-rs/tokio/pull/3807
2000
- [#3813]: https://github.com/tokio-rs/tokio/pull/3813
2001
- [#3866]: https://github.com/tokio-rs/tokio/pull/3866
2002
- [#3877]: https://github.com/tokio-rs/tokio/pull/3877
2003
- [#3881]: https://github.com/tokio-rs/tokio/pull/3881
2004
- [#3897]: https://github.com/tokio-rs/tokio/pull/3897
2005
- [#3898]: https://github.com/tokio-rs/tokio/pull/3898
2006
- [#3899]: https://github.com/tokio-rs/tokio/pull/3899
2007
- [#3900]: https://github.com/tokio-rs/tokio/pull/3900
2008
-
2009
- # 1.7.2 (July 6, 2021)
2010
-
2011
- Forward ports 1.5.1 fixes.
2012
-
2013
- ### Fixed
2014
-
2015
- - runtime: remotely abort tasks on `JoinHandle::abort` ([#3934])
2016
-
2017
- [#3934]: https://github.com/tokio-rs/tokio/pull/3934
2018
-
2019
- # 1.7.1 (June 18, 2021)
2020
-
2021
- ### Fixed
2022
-
2023
- - runtime: fix early task shutdown during runtime shutdown ([#3870])
2024
-
2025
- [#3870]: https://github.com/tokio-rs/tokio/pull/3870
2026
-
2027
- # 1.7.0 (June 15, 2021)
2028
-
2029
- ### Added
2030
-
2031
- - net: add named pipes on windows ([#3760])
2032
- - net: add `TcpSocket` from `std::net::TcpStream` conversion ([#3838])
2033
- - sync: add `receiver_count` to `watch::Sender` ([#3729])
2034
- - sync: export `sync::notify::Notified` future publicly ([#3840])
2035
- - tracing: instrument task wakers ([#3836])
2036
-
2037
- ### Fixed
2038
-
2039
- - macros: suppress `clippy::default_numeric_fallback` lint in generated code ([#3831])
2040
- - runtime: immediately drop new tasks when runtime is shut down ([#3752])
2041
- - sync: deprecate unused `mpsc::RecvError` type ([#3833])
2042
-
2043
- ### Documented
2044
-
2045
- - io: clarify EOF condition for `AsyncReadExt::read_buf` ([#3850])
2046
- - io: clarify limits on return values of `AsyncWrite::poll_write` ([#3820])
2047
- - sync: add examples to Semaphore ([#3808])
2048
-
2049
- [#3729]: https://github.com/tokio-rs/tokio/pull/3729
2050
- [#3752]: https://github.com/tokio-rs/tokio/pull/3752
2051
- [#3760]: https://github.com/tokio-rs/tokio/pull/3760
2052
- [#3808]: https://github.com/tokio-rs/tokio/pull/3808
2053
- [#3820]: https://github.com/tokio-rs/tokio/pull/3820
2054
- [#3831]: https://github.com/tokio-rs/tokio/pull/3831
2055
- [#3833]: https://github.com/tokio-rs/tokio/pull/3833
2056
- [#3836]: https://github.com/tokio-rs/tokio/pull/3836
2057
- [#3838]: https://github.com/tokio-rs/tokio/pull/3838
2058
- [#3840]: https://github.com/tokio-rs/tokio/pull/3840
2059
- [#3850]: https://github.com/tokio-rs/tokio/pull/3850
2060
-
2061
- # 1.6.3 (July 6, 2021)
2062
-
2063
- Forward ports 1.5.1 fixes.
2064
-
2065
- ### Fixed
2066
-
2067
- - runtime: remotely abort tasks on `JoinHandle::abort` ([#3934])
2068
-
2069
- [#3934]: https://github.com/tokio-rs/tokio/pull/3934
2070
-
2071
- # 1.6.2 (June 14, 2021)
2072
-
2073
- ### Fixes
2074
-
2075
- - test: sub-ms `time:advance` regression introduced in 1.6 ([#3852])
2076
-
2077
- [#3852]: https://github.com/tokio-rs/tokio/pull/3852
2078
-
2079
- # 1.6.1 (May 28, 2021)
2080
-
2081
- This release reverts [#3518] because it doesn't work on some kernels due to
2082
- a kernel bug. ([#3803])
2083
-
2084
- [#3518]: https://github.com/tokio-rs/tokio/issues/3518
2085
- [#3803]: https://github.com/tokio-rs/tokio/issues/3803
2086
-
2087
- # 1.6.0 (May 14, 2021)
2088
-
2089
- ### Added
2090
-
2091
- - fs: try doing a non-blocking read before punting to the threadpool ([#3518])
2092
- - io: add `write_all_buf` to `AsyncWriteExt` ([#3737])
2093
- - io: implement `AsyncSeek` for `BufReader`, `BufWriter`, and `BufStream` ([#3491])
2094
- - net: support non-blocking vectored I/O ([#3761])
2095
- - sync: add `mpsc::Sender::{reserve_owned, try_reserve_owned}` ([#3704])
2096
- - sync: add a `MutexGuard::map` method that returns a `MappedMutexGuard` ([#2472])
2097
- - time: add getter for Interval's period ([#3705])
2098
-
2099
- ### Fixed
2100
-
2101
- - io: wake pending writers on `DuplexStream` close ([#3756])
2102
- - process: avoid redundant effort to reap orphan processes ([#3743])
2103
- - signal: use `std::os::raw::c_int` instead of `libc::c_int` on public API ([#3774])
2104
- - sync: preserve permit state in `notify_waiters` ([#3660])
2105
- - task: update `JoinHandle` panic message ([#3727])
2106
- - time: prevent `time::advance` from going too far ([#3712])
2107
-
2108
- ### Documented
2109
-
2110
- - net: hide `net::unix::datagram` module from docs ([#3775])
2111
- - process: updated example ([#3748])
2112
- - sync: `Barrier` doc should use task, not thread ([#3780])
2113
- - task: update documentation on `block_in_place` ([#3753])
2114
-
2115
- [#2472]: https://github.com/tokio-rs/tokio/pull/2472
2116
- [#3491]: https://github.com/tokio-rs/tokio/pull/3491
2117
- [#3518]: https://github.com/tokio-rs/tokio/pull/3518
2118
- [#3660]: https://github.com/tokio-rs/tokio/pull/3660
2119
- [#3704]: https://github.com/tokio-rs/tokio/pull/3704
2120
- [#3705]: https://github.com/tokio-rs/tokio/pull/3705
2121
- [#3712]: https://github.com/tokio-rs/tokio/pull/3712
2122
- [#3727]: https://github.com/tokio-rs/tokio/pull/3727
2123
- [#3737]: https://github.com/tokio-rs/tokio/pull/3737
2124
- [#3743]: https://github.com/tokio-rs/tokio/pull/3743
2125
- [#3748]: https://github.com/tokio-rs/tokio/pull/3748
2126
- [#3753]: https://github.com/tokio-rs/tokio/pull/3753
2127
- [#3756]: https://github.com/tokio-rs/tokio/pull/3756
2128
- [#3761]: https://github.com/tokio-rs/tokio/pull/3761
2129
- [#3774]: https://github.com/tokio-rs/tokio/pull/3774
2130
- [#3775]: https://github.com/tokio-rs/tokio/pull/3775
2131
- [#3780]: https://github.com/tokio-rs/tokio/pull/3780
2132
-
2133
- # 1.5.1 (July 6, 2021)
2134
-
2135
- ### Fixed
2136
-
2137
- - runtime: remotely abort tasks on `JoinHandle::abort` ([#3934])
2138
-
2139
- [#3934]: https://github.com/tokio-rs/tokio/pull/3934
2140
-
2141
- # 1.5.0 (April 12, 2021)
2142
-
2143
- ### Added
2144
-
2145
- - io: add `AsyncSeekExt::stream_position` ([#3650])
2146
- - io: add `AsyncWriteExt::write_vectored` ([#3678])
2147
- - io: add a `copy_bidirectional` utility ([#3572])
2148
- - net: implement `IntoRawFd` for `TcpSocket` ([#3684])
2149
- - sync: add `OnceCell` ([#3591])
2150
- - sync: add `OwnedRwLockReadGuard` and `OwnedRwLockWriteGuard` ([#3340])
2151
- - sync: add `Semaphore::is_closed` ([#3673])
2152
- - sync: add `mpsc::Sender::capacity` ([#3690])
2153
- - sync: allow configuring `RwLock` max reads ([#3644])
2154
- - task: add `sync_scope` for `LocalKey` ([#3612])
2155
-
2156
- ### Fixed
2157
-
2158
- - chore: try to avoid `noalias` attributes on intrusive linked list ([#3654])
2159
- - rt: fix panic in `JoinHandle::abort()` when called from other threads ([#3672])
2160
- - sync: don't panic in `oneshot::try_recv` ([#3674])
2161
- - sync: fix notifications getting dropped on receiver drop ([#3652])
2162
- - sync: fix `Semaphore` permit overflow calculation ([#3644])
2163
-
2164
- ### Documented
2165
-
2166
- - io: clarify requirements of `AsyncFd` ([#3635])
2167
- - runtime: fix unclear docs for `{Handle,Runtime}::block_on` ([#3628])
2168
- - sync: document that `Semaphore` is fair ([#3693])
2169
- - sync: improve doc on blocking mutex ([#3645])
2170
-
2171
- [#3340]: https://github.com/tokio-rs/tokio/pull/3340
2172
- [#3572]: https://github.com/tokio-rs/tokio/pull/3572
2173
- [#3591]: https://github.com/tokio-rs/tokio/pull/3591
2174
- [#3612]: https://github.com/tokio-rs/tokio/pull/3612
2175
- [#3628]: https://github.com/tokio-rs/tokio/pull/3628
2176
- [#3635]: https://github.com/tokio-rs/tokio/pull/3635
2177
- [#3644]: https://github.com/tokio-rs/tokio/pull/3644
2178
- [#3645]: https://github.com/tokio-rs/tokio/pull/3645
2179
- [#3650]: https://github.com/tokio-rs/tokio/pull/3650
2180
- [#3652]: https://github.com/tokio-rs/tokio/pull/3652
2181
- [#3654]: https://github.com/tokio-rs/tokio/pull/3654
2182
- [#3672]: https://github.com/tokio-rs/tokio/pull/3672
2183
- [#3673]: https://github.com/tokio-rs/tokio/pull/3673
2184
- [#3674]: https://github.com/tokio-rs/tokio/pull/3674
2185
- [#3678]: https://github.com/tokio-rs/tokio/pull/3678
2186
- [#3684]: https://github.com/tokio-rs/tokio/pull/3684
2187
- [#3690]: https://github.com/tokio-rs/tokio/pull/3690
2188
- [#3693]: https://github.com/tokio-rs/tokio/pull/3693
2189
-
2190
- # 1.4.0 (March 20, 2021)
2191
-
2192
- ### Added
2193
-
2194
- - macros: introduce biased argument for `select!` ([#3603])
2195
- - runtime: add `Handle::block_on` ([#3569])
2196
-
2197
- ### Fixed
2198
-
2199
- - runtime: avoid unnecessary polling of `block_on` future ([#3582])
2200
- - runtime: fix memory leak/growth when creating many runtimes ([#3564])
2201
- - runtime: mark `EnterGuard` with `must_use` ([#3609])
2202
-
2203
- ### Documented
2204
-
2205
- - chore: mention fix for building docs in contributing guide ([#3618])
2206
- - doc: add link to `PollSender` ([#3613])
2207
- - doc: alias sleep to delay ([#3604])
2208
- - sync: improve `Mutex` FIFO explanation ([#3615])
2209
- - timer: fix double newline in module docs ([#3617])
2210
-
2211
- [#3564]: https://github.com/tokio-rs/tokio/pull/3564
2212
- [#3613]: https://github.com/tokio-rs/tokio/pull/3613
2213
- [#3618]: https://github.com/tokio-rs/tokio/pull/3618
2214
- [#3617]: https://github.com/tokio-rs/tokio/pull/3617
2215
- [#3582]: https://github.com/tokio-rs/tokio/pull/3582
2216
- [#3615]: https://github.com/tokio-rs/tokio/pull/3615
2217
- [#3603]: https://github.com/tokio-rs/tokio/pull/3603
2218
- [#3609]: https://github.com/tokio-rs/tokio/pull/3609
2219
- [#3604]: https://github.com/tokio-rs/tokio/pull/3604
2220
- [#3569]: https://github.com/tokio-rs/tokio/pull/3569
2221
-
2222
- # 1.3.0 (March 9, 2021)
2223
-
2224
- ### Added
2225
-
2226
- - coop: expose an `unconstrained()` opt-out ([#3547])
2227
- - net: add `into_std` for net types without it ([#3509])
2228
- - sync: add `same_channel` method to `mpsc::Sender` ([#3532])
2229
- - sync: add `{try_,}acquire_many_owned` to `Semaphore` ([#3535])
2230
- - sync: add back `RwLockWriteGuard::map` and `RwLockWriteGuard::try_map` ([#3348])
2231
-
2232
- ### Fixed
2233
-
2234
- - sync: allow `oneshot::Receiver::close` after successful `try_recv` ([#3552])
2235
- - time: do not panic on `timeout(Duration::MAX)` ([#3551])
2236
-
2237
- ### Documented
2238
-
2239
- - doc: doc aliases for pre-1.0 function names ([#3523])
2240
- - io: fix typos ([#3541])
2241
- - io: note the EOF behavior of `read_until` ([#3536])
2242
- - io: update `AsyncRead::poll_read` doc ([#3557])
2243
- - net: update `UdpSocket` splitting doc ([#3517])
2244
- - runtime: add link to `LocalSet` on `new_current_thread` ([#3508])
2245
- - runtime: update documentation of thread limits ([#3527])
2246
- - sync: do not recommend `join_all` for `Barrier` ([#3514])
2247
- - sync: documentation for `oneshot` ([#3592])
2248
- - sync: rename `notify` to `notify_one` ([#3526])
2249
- - time: fix typo in `Sleep` doc ([#3515])
2250
- - time: sync `interval.rs` and `time/mod.rs` docs ([#3533])
2251
-
2252
- [#3348]: https://github.com/tokio-rs/tokio/pull/3348
2253
- [#3508]: https://github.com/tokio-rs/tokio/pull/3508
2254
- [#3509]: https://github.com/tokio-rs/tokio/pull/3509
2255
- [#3514]: https://github.com/tokio-rs/tokio/pull/3514
2256
- [#3515]: https://github.com/tokio-rs/tokio/pull/3515
2257
- [#3517]: https://github.com/tokio-rs/tokio/pull/3517
2258
- [#3523]: https://github.com/tokio-rs/tokio/pull/3523
2259
- [#3526]: https://github.com/tokio-rs/tokio/pull/3526
2260
- [#3527]: https://github.com/tokio-rs/tokio/pull/3527
2261
- [#3532]: https://github.com/tokio-rs/tokio/pull/3532
2262
- [#3533]: https://github.com/tokio-rs/tokio/pull/3533
2263
- [#3535]: https://github.com/tokio-rs/tokio/pull/3535
2264
- [#3536]: https://github.com/tokio-rs/tokio/pull/3536
2265
- [#3541]: https://github.com/tokio-rs/tokio/pull/3541
2266
- [#3547]: https://github.com/tokio-rs/tokio/pull/3547
2267
- [#3551]: https://github.com/tokio-rs/tokio/pull/3551
2268
- [#3552]: https://github.com/tokio-rs/tokio/pull/3552
2269
- [#3557]: https://github.com/tokio-rs/tokio/pull/3557
2270
- [#3592]: https://github.com/tokio-rs/tokio/pull/3592
2271
-
2272
- # 1.2.0 (February 5, 2021)
2273
-
2274
- ### Added
2275
-
2276
- - signal: make `Signal::poll_recv` method public ([#3383])
2277
-
2278
- ### Fixed
2279
-
2280
- - time: make `test-util` paused time fully deterministic ([#3492])
2281
-
2282
- ### Documented
2283
-
2284
- - sync: link to new broadcast and watch wrappers ([#3504])
2285
-
2286
- [#3383]: https://github.com/tokio-rs/tokio/pull/3383
2287
- [#3492]: https://github.com/tokio-rs/tokio/pull/3492
2288
- [#3504]: https://github.com/tokio-rs/tokio/pull/3504
2289
-
2290
- # 1.1.1 (January 29, 2021)
2291
-
2292
- Forward ports 1.0.3 fix.
2293
-
2294
- ### Fixed
2295
- - io: memory leak during shutdown ([#3477]).
2296
-
2297
- # 1.1.0 (January 22, 2021)
2298
-
2299
- ### Added
2300
-
2301
- - net: add `try_read_buf` and `try_recv_buf` ([#3351])
2302
- - mpsc: Add `Sender::try_reserve` function ([#3418])
2303
- - sync: add `RwLock` `try_read` and `try_write` methods ([#3400])
2304
- - io: add `ReadBuf::inner_mut` ([#3443])
2305
-
2306
- ### Changed
2307
-
2308
- - macros: improve `select!` error message ([#3352])
2309
- - io: keep track of initialized bytes in `read_to_end` ([#3426])
2310
- - runtime: consolidate errors for context missing ([#3441])
2311
-
2312
- ### Fixed
2313
-
2314
- - task: wake `LocalSet` on `spawn_local` ([#3369])
2315
- - sync: fix panic in broadcast::Receiver drop ([#3434])
2316
-
2317
- ### Documented
2318
- - stream: link to new `Stream` wrappers in `tokio-stream` ([#3343])
2319
- - docs: mention that `test-util` feature is not enabled with full ([#3397])
2320
- - process: add documentation to process::Child fields ([#3437])
2321
- - io: clarify `AsyncFd` docs about changes of the inner fd ([#3430])
2322
- - net: update datagram docs on splitting ([#3448])
2323
- - time: document that `Sleep` is not `Unpin` ([#3457])
2324
- - sync: add link to `PollSemaphore` ([#3456])
2325
- - task: add `LocalSet` example ([#3438])
2326
- - sync: improve bounded `mpsc` documentation ([#3458])
2327
-
2328
- [#3343]: https://github.com/tokio-rs/tokio/pull/3343
2329
- [#3351]: https://github.com/tokio-rs/tokio/pull/3351
2330
- [#3352]: https://github.com/tokio-rs/tokio/pull/3352
2331
- [#3369]: https://github.com/tokio-rs/tokio/pull/3369
2332
- [#3397]: https://github.com/tokio-rs/tokio/pull/3397
2333
- [#3400]: https://github.com/tokio-rs/tokio/pull/3400
2334
- [#3418]: https://github.com/tokio-rs/tokio/pull/3418
2335
- [#3426]: https://github.com/tokio-rs/tokio/pull/3426
2336
- [#3430]: https://github.com/tokio-rs/tokio/pull/3430
2337
- [#3434]: https://github.com/tokio-rs/tokio/pull/3434
2338
- [#3437]: https://github.com/tokio-rs/tokio/pull/3437
2339
- [#3438]: https://github.com/tokio-rs/tokio/pull/3438
2340
- [#3441]: https://github.com/tokio-rs/tokio/pull/3441
2341
- [#3443]: https://github.com/tokio-rs/tokio/pull/3443
2342
- [#3448]: https://github.com/tokio-rs/tokio/pull/3448
2343
- [#3456]: https://github.com/tokio-rs/tokio/pull/3456
2344
- [#3457]: https://github.com/tokio-rs/tokio/pull/3457
2345
- [#3458]: https://github.com/tokio-rs/tokio/pull/3458
2346
-
2347
- # 1.0.3 (January 28, 2021)
2348
-
2349
- ### Fixed
2350
- - io: memory leak during shutdown ([#3477]).
2351
-
2352
- [#3477]: https://github.com/tokio-rs/tokio/pull/3477
2353
-
2354
- # 1.0.2 (January 14, 2021)
2355
-
2356
- ### Fixed
2357
- - io: soundness in `read_to_end` ([#3428]).
2358
-
2359
- [#3428]: https://github.com/tokio-rs/tokio/pull/3428
2360
-
2361
- # 1.0.1 (December 25, 2020)
2362
-
2363
- This release fixes a soundness hole caused by the combination of `RwLockWriteGuard::map`
2364
- and `RwLockWriteGuard::downgrade` by removing the `map` function. This is a breaking
2365
- change, but breaking changes are allowed under our semver policy when they are required
2366
- to fix a soundness hole. (See [this RFC][semver] for more.)
2367
-
2368
- Note that we have chosen not to do a deprecation cycle or similar because Tokio 1.0.0 was
2369
- released two days ago, and therefore the impact should be minimal.
2370
-
2371
- Due to the soundness hole, we have also yanked Tokio version 1.0.0.
2372
-
2373
- ### Removed
2374
-
2375
- - sync: remove `RwLockWriteGuard::map` and `RwLockWriteGuard::try_map` ([#3345])
2376
-
2377
- ### Fixed
2378
-
2379
- - docs: remove stream feature from docs ([#3335])
2380
-
2381
- [semver]: https://github.com/rust-lang/rfcs/blob/master/text/1122-language-semver.md#soundness-changes
2382
- [#3335]: https://github.com/tokio-rs/tokio/pull/3335
2383
- [#3345]: https://github.com/tokio-rs/tokio/pull/3345
2384
-
2385
- # 1.0.0 (December 23, 2020)
2386
-
2387
- Commit to the API and long-term support.
2388
-
2389
- ### Fixed
2390
-
2391
- - sync: spurious wakeup in `watch` ([#3234]).
2392
-
2393
- ### Changed
2394
-
2395
- - io: rename `AsyncFd::with_io()` to `try_io()` ([#3306])
2396
- - fs: avoid OS specific `*Ext` traits in favor of conditionally defining the fn ([#3264]).
2397
- - fs: `Sleep` is `!Unpin` ([#3278]).
2398
- - net: pass `SocketAddr` by value ([#3125]).
2399
- - net: `TcpStream::poll_peek` takes `ReadBuf` ([#3259]).
2400
- - rt: rename `runtime::Builder::max_threads()` to `max_blocking_threads()` ([#3287]).
2401
- - time: require `current_thread` runtime when calling `time::pause()` ([#3289]).
2402
-
2403
- ### Removed
2404
-
2405
- - remove `tokio::prelude` ([#3299]).
2406
- - io: remove `AsyncFd::with_poll()` ([#3306]).
2407
- - net: remove `{Tcp,Unix}Stream::shutdown()` in favor of `AsyncWrite::shutdown()` ([#3298]).
2408
- - stream: move all stream utilities to `tokio-stream` until `Stream` is added to
2409
- `std` ([#3277]).
2410
- - sync: mpsc `try_recv()` due to unexpected behavior ([#3263]).
2411
- - tracing: make unstable as `tracing-core` is not 1.0 yet ([#3266]).
2412
-
2413
- ### Added
2414
-
2415
- - fs: `poll_*` fns to `DirEntry` ([#3308]).
2416
- - io: `poll_*` fns to `io::Lines`, `io::Split` ([#3308]).
2417
- - io: `_mut` method variants to `AsyncFd` ([#3304]).
2418
- - net: `poll_*` fns to `UnixDatagram` ([#3223]).
2419
- - net: `UnixStream` readiness and non-blocking ops ([#3246]).
2420
- - sync: `UnboundedReceiver::blocking_recv()` ([#3262]).
2421
- - sync: `watch::Sender::borrow()` ([#3269]).
2422
- - sync: `Semaphore::close()` ([#3065]).
2423
- - sync: `poll_recv` fns to `mpsc::Receiver`, `mpsc::UnboundedReceiver` ([#3308]).
2424
- - time: `poll_tick` fn to `time::Interval` ([#3316]).
2425
-
2426
- [#3065]: https://github.com/tokio-rs/tokio/pull/3065
2427
- [#3125]: https://github.com/tokio-rs/tokio/pull/3125
2428
- [#3223]: https://github.com/tokio-rs/tokio/pull/3223
2429
- [#3234]: https://github.com/tokio-rs/tokio/pull/3234
2430
- [#3246]: https://github.com/tokio-rs/tokio/pull/3246
2431
- [#3259]: https://github.com/tokio-rs/tokio/pull/3259
2432
- [#3262]: https://github.com/tokio-rs/tokio/pull/3262
2433
- [#3263]: https://github.com/tokio-rs/tokio/pull/3263
2434
- [#3264]: https://github.com/tokio-rs/tokio/pull/3264
2435
- [#3266]: https://github.com/tokio-rs/tokio/pull/3266
2436
- [#3269]: https://github.com/tokio-rs/tokio/pull/3269
2437
- [#3277]: https://github.com/tokio-rs/tokio/pull/3277
2438
- [#3278]: https://github.com/tokio-rs/tokio/pull/3278
2439
- [#3287]: https://github.com/tokio-rs/tokio/pull/3287
2440
- [#3289]: https://github.com/tokio-rs/tokio/pull/3289
2441
- [#3298]: https://github.com/tokio-rs/tokio/pull/3298
2442
- [#3299]: https://github.com/tokio-rs/tokio/pull/3299
2443
- [#3304]: https://github.com/tokio-rs/tokio/pull/3304
2444
- [#3306]: https://github.com/tokio-rs/tokio/pull/3306
2445
- [#3308]: https://github.com/tokio-rs/tokio/pull/3308
2446
- [#3316]: https://github.com/tokio-rs/tokio/pull/3316
2447
-
2448
- # 0.3.6 (December 14, 2020)
2449
-
2450
- ### Fixed
2451
-
2452
- - rt: fix deadlock in shutdown ([#3228])
2453
- - rt: fix panic in task abort when off rt ([#3159])
2454
- - sync: make `add_permits` panic with usize::MAX >> 3 permits ([#3188])
2455
- - time: Fix race condition in timer drop ([#3229])
2456
- - watch: fix spurious wakeup ([#3244])
2457
-
2458
- ### Added
2459
-
2460
- - example: add back udp-codec example ([#3205])
2461
- - net: add `TcpStream::into_std` ([#3189])
2462
-
2463
- [#3159]: https://github.com/tokio-rs/tokio/pull/3159
2464
- [#3188]: https://github.com/tokio-rs/tokio/pull/3188
2465
- [#3189]: https://github.com/tokio-rs/tokio/pull/3189
2466
- [#3205]: https://github.com/tokio-rs/tokio/pull/3205
2467
- [#3228]: https://github.com/tokio-rs/tokio/pull/3228
2468
- [#3229]: https://github.com/tokio-rs/tokio/pull/3229
2469
- [#3244]: https://github.com/tokio-rs/tokio/pull/3244
2470
-
2471
- # 0.3.5 (November 30, 2020)
2472
-
2473
- ### Fixed
2474
-
2475
- - rt: fix `shutdown_timeout(0)` ([#3196]).
2476
- - time: fixed race condition with small sleeps ([#3069]).
2477
-
2478
- ### Added
2479
-
2480
- - io: `AsyncFd::with_interest()` ([#3167]).
2481
- - signal: `CtrlC` stream on windows ([#3186]).
2482
-
2483
- [#3069]: https://github.com/tokio-rs/tokio/pull/3069
2484
- [#3167]: https://github.com/tokio-rs/tokio/pull/3167
2485
- [#3186]: https://github.com/tokio-rs/tokio/pull/3186
2486
- [#3196]: https://github.com/tokio-rs/tokio/pull/3196
2487
-
2488
- # 0.3.4 (November 18, 2020)
2489
-
2490
- ### Fixed
2491
-
2492
- - stream: `StreamMap` `Default` impl bound ([#3093]).
2493
- - io: `AsyncFd::into_inner()` should deregister the FD ([#3104]).
2494
-
2495
- ### Changed
2496
-
2497
- - meta: `parking_lot` feature enabled with `full` ([#3119]).
2498
-
2499
- ### Added
2500
-
2501
- - io: `AsyncWrite` vectored writes ([#3149]).
2502
- - net: TCP/UDP readiness and non-blocking ops ([#3130], [#2743], [#3138]).
2503
- - net: TCP socket option (linger, send/recv buf size) ([#3145], [#3143]).
2504
- - net: PID field in `UCred` with solaris/illumos ([#3085]).
2505
- - rt: `runtime::Handle` allows spawning onto a runtime ([#3079]).
2506
- - sync: `Notify::notify_waiters()` ([#3098]).
2507
- - sync: `acquire_many()`, `try_acquire_many()` to `Semaphore` ([#3067]).
2508
-
2509
- [#2743]: https://github.com/tokio-rs/tokio/pull/2743
2510
- [#3067]: https://github.com/tokio-rs/tokio/pull/3067
2511
- [#3079]: https://github.com/tokio-rs/tokio/pull/3079
2512
- [#3085]: https://github.com/tokio-rs/tokio/pull/3085
2513
- [#3093]: https://github.com/tokio-rs/tokio/pull/3093
2514
- [#3098]: https://github.com/tokio-rs/tokio/pull/3098
2515
- [#3104]: https://github.com/tokio-rs/tokio/pull/3104
2516
- [#3119]: https://github.com/tokio-rs/tokio/pull/3119
2517
- [#3130]: https://github.com/tokio-rs/tokio/pull/3130
2518
- [#3138]: https://github.com/tokio-rs/tokio/pull/3138
2519
- [#3143]: https://github.com/tokio-rs/tokio/pull/3143
2520
- [#3145]: https://github.com/tokio-rs/tokio/pull/3145
2521
- [#3149]: https://github.com/tokio-rs/tokio/pull/3149
2522
-
2523
- # 0.3.3 (November 2, 2020)
2524
-
2525
- Fixes a soundness hole by adding a missing `Send` bound to
2526
- `Runtime::spawn_blocking()`.
2527
-
2528
- ### Fixed
2529
-
2530
- - rt: include missing `Send`, fixing soundness hole ([#3089]).
2531
- - tracing: avoid huge trace span names ([#3074]).
2532
-
2533
- ### Added
2534
-
2535
- - net: `TcpSocket::reuseport()`, `TcpSocket::set_reuseport()` ([#3083]).
2536
- - net: `TcpSocket::reuseaddr()` ([#3093]).
2537
- - net: `TcpSocket::local_addr()` ([#3093]).
2538
- - net: add pid to `UCred` ([#2633]).
2539
-
2540
- [#2633]: https://github.com/tokio-rs/tokio/pull/2633
2541
- [#3074]: https://github.com/tokio-rs/tokio/pull/3074
2542
- [#3083]: https://github.com/tokio-rs/tokio/pull/3083
2543
- [#3089]: https://github.com/tokio-rs/tokio/pull/3089
2544
- [#3093]: https://github.com/tokio-rs/tokio/pull/3093
2545
-
2546
- # 0.3.2 (October 27, 2020)
2547
-
2548
- Adds `AsyncFd` as a replacement for v0.2's `PollEvented`.
2549
-
2550
- ### Fixed
2551
-
2552
- - io: fix a potential deadlock when shutting down the I/O driver ([#2903]).
2553
- - sync: `RwLockWriteGuard::downgrade()` bug ([#2957]).
2554
-
2555
- ### Added
2556
-
2557
- - io: `AsyncFd` for receiving readiness events on raw FDs ([#2903]).
2558
- - net: `poll_*` function on `UdpSocket` ([#2981]).
2559
- - net: `UdpSocket::take_error()` ([#3051]).
2560
- - sync: `oneshot::Sender::poll_closed()` ([#3032]).
2561
-
2562
- [#2903]: https://github.com/tokio-rs/tokio/pull/2903
2563
- [#2957]: https://github.com/tokio-rs/tokio/pull/2957
2564
- [#2981]: https://github.com/tokio-rs/tokio/pull/2981
2565
- [#3032]: https://github.com/tokio-rs/tokio/pull/3032
2566
- [#3051]: https://github.com/tokio-rs/tokio/pull/3051
2567
-
2568
- # 0.3.1 (October 21, 2020)
2569
-
2570
- This release fixes an use-after-free in the IO driver. Additionally, the `read_buf`
2571
- and `write_buf` methods have been added back to the IO traits, as the bytes crate
2572
- is now on track to reach version 1.0 together with Tokio.
2573
-
2574
- ### Fixed
2575
-
2576
- - net: fix use-after-free ([#3019]).
2577
- - fs: ensure buffered data is written on shutdown ([#3009]).
2578
-
2579
- ### Added
2580
-
2581
- - io: `copy_buf()` ([#2884]).
2582
- - io: `AsyncReadExt::read_buf()`, `AsyncReadExt::write_buf()` for working with
2583
- `Buf`/`BufMut` ([#3003]).
2584
- - rt: `Runtime::spawn_blocking()` ([#2980]).
2585
- - sync: `watch::Sender::is_closed()` ([#2991]).
2586
-
2587
- [#2884]: https://github.com/tokio-rs/tokio/pull/2884
2588
- [#2980]: https://github.com/tokio-rs/tokio/pull/2980
2589
- [#2991]: https://github.com/tokio-rs/tokio/pull/2991
2590
- [#3003]: https://github.com/tokio-rs/tokio/pull/3003
2591
- [#3009]: https://github.com/tokio-rs/tokio/pull/3009
2592
- [#3019]: https://github.com/tokio-rs/tokio/pull/3019
2593
-
2594
- # 0.3.0 (October 15, 2020)
2595
-
2596
- This represents a 1.0 beta release. APIs are polished and future-proofed. APIs
2597
- not included for 1.0 stabilization have been removed.
2598
-
2599
- Biggest changes are:
2600
-
2601
- - I/O driver internal rewrite. The windows implementation includes significant
2602
- changes.
2603
- - Runtime API is polished, especially with how it interacts with feature flag
2604
- combinations.
2605
- - Feature flags are simplified
2606
- - `rt-core` and `rt-util` are combined to `rt`
2607
- - `rt-threaded` is renamed to `rt-multi-thread` to match builder API
2608
- - `tcp`, `udp`, `uds`, `dns` are combined to `net`.
2609
- - `parking_lot` is included with `full`
2610
-
2611
- ### Changes
2612
-
2613
- - meta: Minimum supported Rust version is now 1.45.
2614
- - io: `AsyncRead` trait now takes `ReadBuf` in order to safely handle reading
2615
- into uninitialized memory ([#2758]).
2616
- - io: Internal I/O driver storage is now able to compact ([#2757]).
2617
- - rt: `Runtime::block_on` now takes `&self` ([#2782]).
2618
- - sync: `watch` reworked to decouple receiving a change notification from
2619
- receiving the value ([#2814], [#2806]).
2620
- - sync: `Notify::notify` is renamed to `notify_one` ([#2822]).
2621
- - process: `Child::kill` is now an `async fn` that cleans zombies ([#2823]).
2622
- - sync: use `const fn` constructors as possible ([#2833], [#2790])
2623
- - signal: reduce cross-thread notification ([#2835]).
2624
- - net: tcp,udp,uds types support operations with `&self` ([#2828], [#2919], [#2934]).
2625
- - sync: blocking `mpsc` channel supports `send` with `&self` ([#2861]).
2626
- - time: rename `delay_for` and `delay_until` to `sleep` and `sleep_until` ([#2826]).
2627
- - io: upgrade to `mio` 0.7 ([#2893]).
2628
- - io: `AsyncSeek` trait is tweaked ([#2885]).
2629
- - fs: `File` operations take `&self` ([#2930]).
2630
- - rt: runtime API, and `#[tokio::main]` macro polish ([#2876])
2631
- - rt: `Runtime::enter` uses an RAII guard instead of a closure ([#2954]).
2632
- - net: the `from_std` function on all sockets no longer sets socket into non-blocking mode ([#2893])
2633
-
2634
- ### Added
2635
-
2636
- - sync: `map` function to lock guards ([#2445]).
2637
- - sync: `blocking_recv` and `blocking_send` fns to `mpsc` for use outside of Tokio ([#2685]).
2638
- - rt: `Builder::thread_name_fn` for configuring thread names ([#1921]).
2639
- - fs: impl `FromRawFd` and `FromRawHandle` for `File` ([#2792]).
2640
- - process: `Child::wait` and `Child::try_wait` ([#2796]).
2641
- - rt: support configuring thread keep-alive duration ([#2809]).
2642
- - rt: `task::JoinHandle::abort` forcibly cancels a spawned task ([#2474]).
2643
- - sync: `RwLock` write guard to read guard downgrading ([#2733]).
2644
- - net: add `poll_*` functions that take `&self` to all net types ([#2845])
2645
- - sync: `get_mut()` for `Mutex`, `RwLock` ([#2856]).
2646
- - sync: `mpsc::Sender::closed()` waits for `Receiver` half to close ([#2840]).
2647
- - sync: `mpsc::Sender::is_closed()` returns true if `Receiver` half is closed ([#2726]).
2648
- - stream: `iter` and `iter_mut` to `StreamMap` ([#2890]).
2649
- - net: implement `AsRawSocket` on windows ([#2911]).
2650
- - net: `TcpSocket` creates a socket without binding or listening ([#2920]).
2651
-
2652
- ### Removed
2653
-
2654
- - io: vectored ops are removed from `AsyncRead`, `AsyncWrite` traits ([#2882]).
2655
- - io: `mio` is removed from the public API. `PollEvented` and` Registration` are
2656
- removed ([#2893]).
2657
- - io: remove `bytes` from public API. `Buf` and `BufMut` implementation are
2658
- removed ([#2908]).
2659
- - time: `DelayQueue` is moved to `tokio-util` ([#2897]).
2660
-
2661
- ### Fixed
2662
-
2663
- - io: `stdout` and `stderr` buffering on windows ([#2734]).
2664
-
2665
- [#1921]: https://github.com/tokio-rs/tokio/pull/1921
2666
- [#2445]: https://github.com/tokio-rs/tokio/pull/2445
2667
- [#2474]: https://github.com/tokio-rs/tokio/pull/2474
2668
- [#2685]: https://github.com/tokio-rs/tokio/pull/2685
2669
- [#2726]: https://github.com/tokio-rs/tokio/pull/2726
2670
- [#2733]: https://github.com/tokio-rs/tokio/pull/2733
2671
- [#2734]: https://github.com/tokio-rs/tokio/pull/2734
2672
- [#2757]: https://github.com/tokio-rs/tokio/pull/2757
2673
- [#2758]: https://github.com/tokio-rs/tokio/pull/2758
2674
- [#2782]: https://github.com/tokio-rs/tokio/pull/2782
2675
- [#2790]: https://github.com/tokio-rs/tokio/pull/2790
2676
- [#2792]: https://github.com/tokio-rs/tokio/pull/2792
2677
- [#2796]: https://github.com/tokio-rs/tokio/pull/2796
2678
- [#2806]: https://github.com/tokio-rs/tokio/pull/2806
2679
- [#2809]: https://github.com/tokio-rs/tokio/pull/2809
2680
- [#2814]: https://github.com/tokio-rs/tokio/pull/2814
2681
- [#2822]: https://github.com/tokio-rs/tokio/pull/2822
2682
- [#2823]: https://github.com/tokio-rs/tokio/pull/2823
2683
- [#2826]: https://github.com/tokio-rs/tokio/pull/2826
2684
- [#2828]: https://github.com/tokio-rs/tokio/pull/2828
2685
- [#2833]: https://github.com/tokio-rs/tokio/pull/2833
2686
- [#2835]: https://github.com/tokio-rs/tokio/pull/2835
2687
- [#2840]: https://github.com/tokio-rs/tokio/pull/2840
2688
- [#2845]: https://github.com/tokio-rs/tokio/pull/2845
2689
- [#2856]: https://github.com/tokio-rs/tokio/pull/2856
2690
- [#2861]: https://github.com/tokio-rs/tokio/pull/2861
2691
- [#2876]: https://github.com/tokio-rs/tokio/pull/2876
2692
- [#2882]: https://github.com/tokio-rs/tokio/pull/2882
2693
- [#2885]: https://github.com/tokio-rs/tokio/pull/2885
2694
- [#2890]: https://github.com/tokio-rs/tokio/pull/2890
2695
- [#2893]: https://github.com/tokio-rs/tokio/pull/2893
2696
- [#2897]: https://github.com/tokio-rs/tokio/pull/2897
2697
- [#2908]: https://github.com/tokio-rs/tokio/pull/2908
2698
- [#2911]: https://github.com/tokio-rs/tokio/pull/2911
2699
- [#2919]: https://github.com/tokio-rs/tokio/pull/2919
2700
- [#2920]: https://github.com/tokio-rs/tokio/pull/2920
2701
- [#2930]: https://github.com/tokio-rs/tokio/pull/2930
2702
- [#2934]: https://github.com/tokio-rs/tokio/pull/2934
2703
- [#2954]: https://github.com/tokio-rs/tokio/pull/2954
2704
-
2705
- # 0.2.22 (July 21, 2020)
2706
-
2707
- ### Fixes
2708
-
2709
- - docs: misc improvements ([#2572], [#2658], [#2663], [#2656], [#2647], [#2630], [#2487], [#2621],
2710
- [#2624], [#2600], [#2623], [#2622], [#2577], [#2569], [#2589], [#2575], [#2540], [#2564], [#2567],
2711
- [#2520], [#2521], [#2493])
2712
- - rt: allow calls to `block_on` inside calls to `block_in_place` that are
2713
- themselves inside `block_on` ([#2645])
2714
- - net: fix non-portable behavior when dropping `TcpStream` `OwnedWriteHalf` ([#2597])
2715
- - io: improve stack usage by allocating large buffers on directly on the heap
2716
- ([#2634])
2717
- - io: fix unsound pin projection in `AsyncReadExt::read_buf` and
2718
- `AsyncWriteExt::write_buf` ([#2612])
2719
- - io: fix unnecessary zeroing for `AsyncRead` implementors ([#2525])
2720
- - io: Fix `BufReader` not correctly forwarding `poll_write_buf` ([#2654])
2721
- - io: fix panic in `AsyncReadExt::read_line` ([#2541])
2722
-
2723
- ### Changes
2724
-
2725
- - coop: returning `Poll::Pending` no longer decrements the task budget ([#2549])
2726
-
2727
- ### Added
2728
-
2729
- - io: little-endian variants of `AsyncReadExt` and `AsyncWriteExt` methods
2730
- ([#1915])
2731
- - task: add [`tracing`] instrumentation to spawned tasks ([#2655])
2732
- - sync: allow unsized types in `Mutex` and `RwLock` (via `default` constructors)
2733
- ([#2615])
2734
- - net: add `ToSocketAddrs` implementation for `&[SocketAddr]` ([#2604])
2735
- - fs: add `OpenOptionsExt` for `OpenOptions` ([#2515])
2736
- - fs: add `DirBuilder` ([#2524])
2737
-
2738
- [`tracing`]: https://crates.io/crates/tracing
2739
- [#1915]: https://github.com/tokio-rs/tokio/pull/1915
2740
- [#2487]: https://github.com/tokio-rs/tokio/pull/2487
2741
- [#2493]: https://github.com/tokio-rs/tokio/pull/2493
2742
- [#2515]: https://github.com/tokio-rs/tokio/pull/2515
2743
- [#2520]: https://github.com/tokio-rs/tokio/pull/2520
2744
- [#2521]: https://github.com/tokio-rs/tokio/pull/2521
2745
- [#2524]: https://github.com/tokio-rs/tokio/pull/2524
2746
- [#2525]: https://github.com/tokio-rs/tokio/pull/2525
2747
- [#2540]: https://github.com/tokio-rs/tokio/pull/2540
2748
- [#2541]: https://github.com/tokio-rs/tokio/pull/2541
2749
- [#2549]: https://github.com/tokio-rs/tokio/pull/2549
2750
- [#2564]: https://github.com/tokio-rs/tokio/pull/2564
2751
- [#2567]: https://github.com/tokio-rs/tokio/pull/2567
2752
- [#2569]: https://github.com/tokio-rs/tokio/pull/2569
2753
- [#2572]: https://github.com/tokio-rs/tokio/pull/2572
2754
- [#2575]: https://github.com/tokio-rs/tokio/pull/2575
2755
- [#2577]: https://github.com/tokio-rs/tokio/pull/2577
2756
- [#2589]: https://github.com/tokio-rs/tokio/pull/2589
2757
- [#2597]: https://github.com/tokio-rs/tokio/pull/2597
2758
- [#2600]: https://github.com/tokio-rs/tokio/pull/2600
2759
- [#2604]: https://github.com/tokio-rs/tokio/pull/2604
2760
- [#2612]: https://github.com/tokio-rs/tokio/pull/2612
2761
- [#2615]: https://github.com/tokio-rs/tokio/pull/2615
2762
- [#2621]: https://github.com/tokio-rs/tokio/pull/2621
2763
- [#2622]: https://github.com/tokio-rs/tokio/pull/2622
2764
- [#2623]: https://github.com/tokio-rs/tokio/pull/2623
2765
- [#2624]: https://github.com/tokio-rs/tokio/pull/2624
2766
- [#2630]: https://github.com/tokio-rs/tokio/pull/2630
2767
- [#2634]: https://github.com/tokio-rs/tokio/pull/2634
2768
- [#2645]: https://github.com/tokio-rs/tokio/pull/2645
2769
- [#2647]: https://github.com/tokio-rs/tokio/pull/2647
2770
- [#2654]: https://github.com/tokio-rs/tokio/pull/2654
2771
- [#2655]: https://github.com/tokio-rs/tokio/pull/2655
2772
- [#2656]: https://github.com/tokio-rs/tokio/pull/2656
2773
- [#2658]: https://github.com/tokio-rs/tokio/pull/2658
2774
- [#2663]: https://github.com/tokio-rs/tokio/pull/2663
2775
-
2776
- # 0.2.21 (May 13, 2020)
2777
-
2778
- ### Fixes
2779
-
2780
- - macros: disambiguate built-in `#[test]` attribute in macro expansion ([#2503])
2781
- - rt: `LocalSet` and task budgeting ([#2462]).
2782
- - rt: task budgeting with `block_in_place` ([#2502]).
2783
- - sync: release `broadcast` channel memory without sending a value ([#2509]).
2784
- - time: notify when resetting a `Delay` to a time in the past ([#2290])
2785
-
2786
- ### Added
2787
-
2788
- - io: `get_mut`, `get_ref`, and `into_inner` to `Lines` ([#2450]).
2789
- - io: `mio::Ready` argument to `PollEvented` ([#2419]).
2790
- - os: illumos support ([#2486]).
2791
- - rt: `Handle::spawn_blocking` ([#2501]).
2792
- - sync: `OwnedMutexGuard` for `Arc<Mutex<T>>` ([#2455]).
2793
-
2794
- [#2290]: https://github.com/tokio-rs/tokio/pull/2290
2795
- [#2419]: https://github.com/tokio-rs/tokio/pull/2419
2796
- [#2450]: https://github.com/tokio-rs/tokio/pull/2450
2797
- [#2455]: https://github.com/tokio-rs/tokio/pull/2455
2798
- [#2462]: https://github.com/tokio-rs/tokio/pull/2462
2799
- [#2486]: https://github.com/tokio-rs/tokio/pull/2486
2800
- [#2501]: https://github.com/tokio-rs/tokio/pull/2501
2801
- [#2502]: https://github.com/tokio-rs/tokio/pull/2502
2802
- [#2503]: https://github.com/tokio-rs/tokio/pull/2503
2803
- [#2509]: https://github.com/tokio-rs/tokio/pull/2509
2804
-
2805
- # 0.2.20 (April 28, 2020)
2806
-
2807
- ### Fixes
2808
-
2809
- - sync: `broadcast` closing the channel no longer requires capacity ([#2448]).
2810
- - rt: regression when configuring runtime with `max_threads` less than number of CPUs ([#2457]).
2811
-
2812
- [#2448]: https://github.com/tokio-rs/tokio/pull/2448
2813
- [#2457]: https://github.com/tokio-rs/tokio/pull/2457
2814
-
2815
- # 0.2.19 (April 24, 2020)
2816
-
2817
- ### Fixes
2818
-
2819
- - docs: misc improvements ([#2400], [#2405], [#2414], [#2420], [#2423], [#2426], [#2427], [#2434], [#2436], [#2440]).
2820
- - rt: support `block_in_place` in more contexts ([#2409], [#2410]).
2821
- - stream: no panic in `merge()` and `chain()` when using `size_hint()` ([#2430]).
2822
- - task: include visibility modifier when defining a task-local ([#2416]).
2823
-
2824
- ### Added
2825
-
2826
- - rt: `runtime::Handle::block_on` ([#2437]).
2827
- - sync: owned `Semaphore` permit ([#2421]).
2828
- - tcp: owned split ([#2270]).
2829
-
2830
- [#2270]: https://github.com/tokio-rs/tokio/pull/2270
2831
- [#2400]: https://github.com/tokio-rs/tokio/pull/2400
2832
- [#2405]: https://github.com/tokio-rs/tokio/pull/2405
2833
- [#2409]: https://github.com/tokio-rs/tokio/pull/2409
2834
- [#2410]: https://github.com/tokio-rs/tokio/pull/2410
2835
- [#2414]: https://github.com/tokio-rs/tokio/pull/2414
2836
- [#2416]: https://github.com/tokio-rs/tokio/pull/2416
2837
- [#2420]: https://github.com/tokio-rs/tokio/pull/2420
2838
- [#2421]: https://github.com/tokio-rs/tokio/pull/2421
2839
- [#2423]: https://github.com/tokio-rs/tokio/pull/2423
2840
- [#2426]: https://github.com/tokio-rs/tokio/pull/2426
2841
- [#2427]: https://github.com/tokio-rs/tokio/pull/2427
2842
- [#2430]: https://github.com/tokio-rs/tokio/pull/2430
2843
- [#2434]: https://github.com/tokio-rs/tokio/pull/2434
2844
- [#2436]: https://github.com/tokio-rs/tokio/pull/2436
2845
- [#2437]: https://github.com/tokio-rs/tokio/pull/2437
2846
- [#2440]: https://github.com/tokio-rs/tokio/pull/2440
2847
-
2848
- # 0.2.18 (April 12, 2020)
2849
-
2850
- ### Fixes
2851
-
2852
- - task: `LocalSet` was incorrectly marked as `Send` ([#2398])
2853
- - io: correctly report `WriteZero` failure in `write_int` ([#2334])
2854
-
2855
- [#2334]: https://github.com/tokio-rs/tokio/pull/2334
2856
- [#2398]: https://github.com/tokio-rs/tokio/pull/2398
2857
-
2858
- # 0.2.17 (April 9, 2020)
2859
-
2860
- ### Fixes
2861
-
2862
- - rt: bug in work-stealing queue ([#2387])
2863
-
2864
- ### Changes
2865
-
2866
- - rt: threadpool uses logical CPU count instead of physical by default ([#2391])
2867
-
2868
- [#2387]: https://github.com/tokio-rs/tokio/pull/2387
2869
- [#2391]: https://github.com/tokio-rs/tokio/pull/2391
2870
-
2871
- # 0.2.16 (April 3, 2020)
2872
-
2873
- ### Fixes
2874
-
2875
- - sync: fix a regression where `Mutex`, `Semaphore`, and `RwLock` futures no
2876
- longer implement `Sync` ([#2375])
2877
- - fs: fix `fs::copy` not copying file permissions ([#2354])
2878
-
2879
- ### Added
2880
-
2881
- - time: added `deadline` method to `delay_queue::Expired` ([#2300])
2882
- - io: added `StreamReader` ([#2052])
2883
-
2884
- [#2052]: https://github.com/tokio-rs/tokio/pull/2052
2885
- [#2300]: https://github.com/tokio-rs/tokio/pull/2300
2886
- [#2354]: https://github.com/tokio-rs/tokio/pull/2354
2887
- [#2375]: https://github.com/tokio-rs/tokio/pull/2375
2888
-
2889
- # 0.2.15 (April 2, 2020)
2890
-
2891
- ### Fixes
2892
-
2893
- - rt: fix queue regression ([#2362]).
2894
-
2895
- ### Added
2896
-
2897
- - sync: Add disarm to `mpsc::Sender` ([#2358]).
2898
-
2899
- [#2358]: https://github.com/tokio-rs/tokio/pull/2358
2900
- [#2362]: https://github.com/tokio-rs/tokio/pull/2362
2901
-
2902
- # 0.2.14 (April 1, 2020)
2903
-
2904
- ### Fixes
2905
-
2906
- - rt: concurrency bug in scheduler ([#2273]).
2907
- - rt: concurrency bug with shell runtime ([#2333]).
2908
- - test-util: correct pause/resume of time ([#2253]).
2909
- - time: `DelayQueue` correct wakeup after `insert` ([#2285]).
2910
-
2911
- ### Added
2912
-
2913
- - io: impl `RawFd`, `AsRawHandle` for std io types ([#2335]).
2914
- - rt: automatic cooperative task yielding ([#2160], [#2343], [#2349]).
2915
- - sync: `RwLock::into_inner` ([#2321]).
2916
-
2917
- ### Changed
2918
-
2919
- - sync: semaphore, mutex internals rewritten to avoid allocations ([#2325]).
2920
-
2921
- [#2160]: https://github.com/tokio-rs/tokio/pull/2160
2922
- [#2253]: https://github.com/tokio-rs/tokio/pull/2253
2923
- [#2273]: https://github.com/tokio-rs/tokio/pull/2273
2924
- [#2285]: https://github.com/tokio-rs/tokio/pull/2285
2925
- [#2321]: https://github.com/tokio-rs/tokio/pull/2321
2926
- [#2325]: https://github.com/tokio-rs/tokio/pull/2325
2927
- [#2333]: https://github.com/tokio-rs/tokio/pull/2333
2928
- [#2335]: https://github.com/tokio-rs/tokio/pull/2335
2929
- [#2343]: https://github.com/tokio-rs/tokio/pull/2343
2930
- [#2349]: https://github.com/tokio-rs/tokio/pull/2349
2931
-
2932
- # 0.2.13 (February 28, 2020)
2933
-
2934
- ### Fixes
2935
-
2936
- - macros: unresolved import in `pin!` ([#2281]).
2937
-
2938
- [#2281]: https://github.com/tokio-rs/tokio/pull/2281
2939
-
2940
- # 0.2.12 (February 27, 2020)
2941
-
2942
- ### Fixes
2943
-
2944
- - net: `UnixStream::poll_shutdown` should call `shutdown(Write)` ([#2245]).
2945
- - process: Wake up read and write on `EPOLLERR` ([#2218]).
2946
- - rt: potential deadlock when using `block_in_place` and shutting down the
2947
- runtime ([#2119]).
2948
- - rt: only detect number of CPUs if `core_threads` not specified ([#2238]).
2949
- - sync: reduce `watch::Receiver` struct size ([#2191]).
2950
- - time: succeed when setting delay of `$MAX-1` ([#2184]).
2951
- - time: avoid having to poll `DelayQueue` after inserting new delay ([#2217]).
2952
-
2953
- ### Added
2954
-
2955
- - macros: `pin!` variant that assigns to identifier and pins ([#2274]).
2956
- - net: impl `Stream` for `Listener` types ([#2275]).
2957
- - rt: `Runtime::shutdown_timeout` waits for runtime to shutdown for specified
2958
- duration ([#2186]).
2959
- - stream: `StreamMap` merges streams and can insert / remove streams at
2960
- runtime ([#2185]).
2961
- - stream: `StreamExt::skip()` skips a fixed number of items ([#2204]).
2962
- - stream: `StreamExt::skip_while()` skips items based on a predicate ([#2205]).
2963
- - sync: `Notify` provides basic `async` / `await` task notification ([#2210]).
2964
- - sync: `Mutex::into_inner` retrieves guarded data ([#2250]).
2965
- - sync: `mpsc::Sender::send_timeout` sends, waiting for up to specified duration
2966
- for channel capacity ([#2227]).
2967
- - time: impl `Ord` and `Hash` for `Instant` ([#2239]).
2968
-
2969
- [#2119]: https://github.com/tokio-rs/tokio/pull/2119
2970
- [#2184]: https://github.com/tokio-rs/tokio/pull/2184
2971
- [#2185]: https://github.com/tokio-rs/tokio/pull/2185
2972
- [#2186]: https://github.com/tokio-rs/tokio/pull/2186
2973
- [#2191]: https://github.com/tokio-rs/tokio/pull/2191
2974
- [#2204]: https://github.com/tokio-rs/tokio/pull/2204
2975
- [#2205]: https://github.com/tokio-rs/tokio/pull/2205
2976
- [#2210]: https://github.com/tokio-rs/tokio/pull/2210
2977
- [#2217]: https://github.com/tokio-rs/tokio/pull/2217
2978
- [#2218]: https://github.com/tokio-rs/tokio/pull/2218
2979
- [#2227]: https://github.com/tokio-rs/tokio/pull/2227
2980
- [#2238]: https://github.com/tokio-rs/tokio/pull/2238
2981
- [#2239]: https://github.com/tokio-rs/tokio/pull/2239
2982
- [#2245]: https://github.com/tokio-rs/tokio/pull/2245
2983
- [#2250]: https://github.com/tokio-rs/tokio/pull/2250
2984
- [#2274]: https://github.com/tokio-rs/tokio/pull/2274
2985
- [#2275]: https://github.com/tokio-rs/tokio/pull/2275
2986
-
2987
- # 0.2.11 (January 27, 2020)
2988
-
2989
- ### Fixes
2990
-
2991
- - docs: misc fixes and tweaks ([#2155], [#2103], [#2027], [#2167], [#2175]).
2992
- - macros: handle generics in `#[tokio::main]` method ([#2177]).
2993
- - sync: `broadcast` potential lost notifications ([#2135]).
2994
- - rt: improve "no runtime" panic messages ([#2145]).
2995
-
2996
- ### Added
2997
-
2998
- - optional support for using `parking_lot` internally ([#2164]).
2999
- - fs: `fs::copy`, an async version of `std::fs::copy` ([#2079]).
3000
- - macros: `select!` waits for the first branch to complete ([#2152]).
3001
- - macros: `join!` waits for all branches to complete ([#2158]).
3002
- - macros: `try_join!` waits for all branches to complete or the first error ([#2169]).
3003
- - macros: `pin!` pins a value to the stack ([#2163]).
3004
- - net: `ReadHalf::poll()` and `ReadHalf::poll_peak` ([#2151])
3005
- - stream: `StreamExt::timeout()` sets a per-item max duration ([#2149]).
3006
- - stream: `StreamExt::fold()` applies a function, producing a single value. ([#2122]).
3007
- - sync: impl `Eq`, `PartialEq` for `oneshot::RecvError` ([#2168]).
3008
- - task: methods for inspecting the `JoinError` cause ([#2051]).
3009
-
3010
- [#2027]: https://github.com/tokio-rs/tokio/pull/2027
3011
- [#2051]: https://github.com/tokio-rs/tokio/pull/2051
3012
- [#2079]: https://github.com/tokio-rs/tokio/pull/2079
3013
- [#2103]: https://github.com/tokio-rs/tokio/pull/2103
3014
- [#2122]: https://github.com/tokio-rs/tokio/pull/2122
3015
- [#2135]: https://github.com/tokio-rs/tokio/pull/2135
3016
- [#2145]: https://github.com/tokio-rs/tokio/pull/2145
3017
- [#2149]: https://github.com/tokio-rs/tokio/pull/2149
3018
- [#2151]: https://github.com/tokio-rs/tokio/pull/2151
3019
- [#2152]: https://github.com/tokio-rs/tokio/pull/2152
3020
- [#2155]: https://github.com/tokio-rs/tokio/pull/2155
3021
- [#2158]: https://github.com/tokio-rs/tokio/pull/2158
3022
- [#2163]: https://github.com/tokio-rs/tokio/pull/2163
3023
- [#2164]: https://github.com/tokio-rs/tokio/pull/2164
3024
- [#2167]: https://github.com/tokio-rs/tokio/pull/2167
3025
- [#2168]: https://github.com/tokio-rs/tokio/pull/2168
3026
- [#2169]: https://github.com/tokio-rs/tokio/pull/2169
3027
- [#2175]: https://github.com/tokio-rs/tokio/pull/2175
3028
- [#2177]: https://github.com/tokio-rs/tokio/pull/2177
3029
-
3030
- # 0.2.10 (January 21, 2020)
3031
-
3032
- ### Fixes
3033
-
3034
- - `#[tokio::main]` when `rt-core` feature flag is not enabled ([#2139]).
3035
- - remove `AsyncBufRead` from `BufStream` impl block ([#2108]).
3036
- - potential undefined behavior when implementing `AsyncRead` incorrectly ([#2030]).
3037
-
3038
- ### Added
3039
-
3040
- - `BufStream::with_capacity` ([#2125]).
3041
- - impl `From` and `Default` for `RwLock` ([#2089]).
3042
- - `io::ReadHalf::is_pair_of` checks if provided `WriteHalf` is for the same
3043
- underlying object ([#1762], [#2144]).
3044
- - `runtime::Handle::try_current()` returns a handle to the current runtime ([#2118]).
3045
- - `stream::empty()` returns an immediately ready empty stream ([#2092]).
3046
- - `stream::once(val)` returns a stream that yields a single value: `val` ([#2094]).
3047
- - `stream::pending()` returns a stream that never becomes ready ([#2092]).
3048
- - `StreamExt::chain()` sequences a second stream after the first completes ([#2093]).
3049
- - `StreamExt::collect()` transform a stream into a collection ([#2109]).
3050
- - `StreamExt::fuse` ends the stream after the first `None` ([#2085]).
3051
- - `StreamExt::merge` combines two streams, yielding values as they become ready ([#2091]).
3052
- - Task-local storage ([#2126]).
3053
-
3054
- [#1762]: https://github.com/tokio-rs/tokio/pull/1762
3055
- [#2030]: https://github.com/tokio-rs/tokio/pull/2030
3056
- [#2085]: https://github.com/tokio-rs/tokio/pull/2085
3057
- [#2089]: https://github.com/tokio-rs/tokio/pull/2089
3058
- [#2091]: https://github.com/tokio-rs/tokio/pull/2091
3059
- [#2092]: https://github.com/tokio-rs/tokio/pull/2092
3060
- [#2093]: https://github.com/tokio-rs/tokio/pull/2093
3061
- [#2094]: https://github.com/tokio-rs/tokio/pull/2094
3062
- [#2108]: https://github.com/tokio-rs/tokio/pull/2108
3063
- [#2109]: https://github.com/tokio-rs/tokio/pull/2109
3064
- [#2118]: https://github.com/tokio-rs/tokio/pull/2118
3065
- [#2125]: https://github.com/tokio-rs/tokio/pull/2125
3066
- [#2126]: https://github.com/tokio-rs/tokio/pull/2126
3067
- [#2139]: https://github.com/tokio-rs/tokio/pull/2139
3068
- [#2144]: https://github.com/tokio-rs/tokio/pull/2144
3069
-
3070
- # 0.2.9 (January 9, 2020)
3071
-
3072
- ### Fixes
3073
-
3074
- - `AsyncSeek` impl for `File` ([#1986]).
3075
- - rt: shutdown deadlock in `threaded_scheduler` ([#2074], [#2082]).
3076
- - rt: memory ordering when dropping `JoinHandle` ([#2044]).
3077
- - docs: misc API documentation fixes and improvements.
3078
-
3079
- [#1986]: https://github.com/tokio-rs/tokio/pull/1986
3080
- [#2044]: https://github.com/tokio-rs/tokio/pull/2044
3081
- [#2074]: https://github.com/tokio-rs/tokio/pull/2074
3082
- [#2082]: https://github.com/tokio-rs/tokio/pull/2082
3083
-
3084
- # 0.2.8 (January 7, 2020)
3085
-
3086
- ### Fixes
3087
-
3088
- - depend on new version of `tokio-macros`.
3089
-
3090
- # 0.2.7 (January 7, 2020)
3091
-
3092
- ### Fixes
3093
-
3094
- - potential deadlock when dropping `basic_scheduler` Runtime.
3095
- - calling `spawn_blocking` from within a `spawn_blocking` ([#2006]).
3096
- - storing a `Runtime` instance in a thread-local ([#2011]).
3097
- - miscellaneous documentation fixes.
3098
- - rt: fix `Waker::will_wake` to return true when tasks match ([#2045]).
3099
- - test-util: `time::advance` runs pending tasks before changing the time ([#2059]).
3100
-
3101
- ### Added
3102
-
3103
- - `net::lookup_host` maps a `T: ToSocketAddrs` to a stream of `SocketAddrs` ([#1870]).
3104
- - `process::Child` fields are made public to match `std` ([#2014]).
3105
- - impl `Stream` for `sync::broadcast::Receiver` ([#2012]).
3106
- - `sync::RwLock` provides an asynchronous read-write lock ([#1699]).
3107
- - `runtime::Handle::current` returns the handle for the current runtime ([#2040]).
3108
- - `StreamExt::filter` filters stream values according to a predicate ([#2001]).
3109
- - `StreamExt::filter_map` simultaneously filter and map stream values ([#2001]).
3110
- - `StreamExt::try_next` convenience for streams of `Result<T, E>` ([#2005]).
3111
- - `StreamExt::take` limits a stream to a specified number of values ([#2025]).
3112
- - `StreamExt::take_while` limits a stream based on a predicate ([#2029]).
3113
- - `StreamExt::all` tests if every element of the stream matches a predicate ([#2035]).
3114
- - `StreamExt::any` tests if any element of the stream matches a predicate ([#2034]).
3115
- - `task::LocalSet.await` runs spawned tasks until the set is idle ([#1971]).
3116
- - `time::DelayQueue::len` returns the number entries in the queue ([#1755]).
3117
- - expose runtime options from the `#[tokio::main]` and `#[tokio::test]` ([#2022]).
3118
-
3119
- [#1699]: https://github.com/tokio-rs/tokio/pull/1699
3120
- [#1755]: https://github.com/tokio-rs/tokio/pull/1755
3121
- [#1870]: https://github.com/tokio-rs/tokio/pull/1870
3122
- [#1971]: https://github.com/tokio-rs/tokio/pull/1971
3123
- [#2001]: https://github.com/tokio-rs/tokio/pull/2001
3124
- [#2005]: https://github.com/tokio-rs/tokio/pull/2005
3125
- [#2006]: https://github.com/tokio-rs/tokio/pull/2006
3126
- [#2011]: https://github.com/tokio-rs/tokio/pull/2011
3127
- [#2012]: https://github.com/tokio-rs/tokio/pull/2012
3128
- [#2014]: https://github.com/tokio-rs/tokio/pull/2014
3129
- [#2022]: https://github.com/tokio-rs/tokio/pull/2022
3130
- [#2025]: https://github.com/tokio-rs/tokio/pull/2025
3131
- [#2029]: https://github.com/tokio-rs/tokio/pull/2029
3132
- [#2034]: https://github.com/tokio-rs/tokio/pull/2034
3133
- [#2035]: https://github.com/tokio-rs/tokio/pull/2035
3134
- [#2040]: https://github.com/tokio-rs/tokio/pull/2040
3135
- [#2045]: https://github.com/tokio-rs/tokio/pull/2045
3136
- [#2059]: https://github.com/tokio-rs/tokio/pull/2059
3137
-
3138
- # 0.2.6 (December 19, 2019)
3139
-
3140
- ### Fixes
3141
-
3142
- - `fs::File::seek` API regression ([#1991]).
3143
-
3144
- [#1991]: https://github.com/tokio-rs/tokio/pull/1991
3145
-
3146
- # 0.2.5 (December 18, 2019)
3147
-
3148
- ### Added
3149
-
3150
- - `io::AsyncSeek` trait ([#1924]).
3151
- - `Mutex::try_lock` ([#1939])
3152
- - `mpsc::Receiver::try_recv` and `mpsc::UnboundedReceiver::try_recv` ([#1939]).
3153
- - `writev` support for `TcpStream` ([#1956]).
3154
- - `time::throttle` for throttling streams ([#1949]).
3155
- - implement `Stream` for `time::DelayQueue` ([#1975]).
3156
- - `sync::broadcast` provides a fan-out channel ([#1943]).
3157
- - `sync::Semaphore` provides an async semaphore ([#1973]).
3158
- - `stream::StreamExt` provides stream utilities ([#1962]).
3159
-
3160
- ### Fixes
3161
-
3162
- - deadlock risk while shutting down the runtime ([#1972]).
3163
- - panic while shutting down the runtime ([#1978]).
3164
- - `sync::MutexGuard` debug output ([#1961]).
3165
- - misc doc improvements ([#1933], [#1934], [#1940], [#1942]).
3166
-
3167
- ### Changes
3168
-
3169
- - runtime threads are configured with `runtime::Builder::core_threads` and
3170
- `runtime::Builder::max_threads`. `runtime::Builder::num_threads` is
3171
- deprecated ([#1977]).
3172
-
3173
- [#1924]: https://github.com/tokio-rs/tokio/pull/1924
3174
- [#1933]: https://github.com/tokio-rs/tokio/pull/1933
3175
- [#1934]: https://github.com/tokio-rs/tokio/pull/1934
3176
- [#1939]: https://github.com/tokio-rs/tokio/pull/1939
3177
- [#1940]: https://github.com/tokio-rs/tokio/pull/1940
3178
- [#1942]: https://github.com/tokio-rs/tokio/pull/1942
3179
- [#1943]: https://github.com/tokio-rs/tokio/pull/1943
3180
- [#1949]: https://github.com/tokio-rs/tokio/pull/1949
3181
- [#1956]: https://github.com/tokio-rs/tokio/pull/1956
3182
- [#1961]: https://github.com/tokio-rs/tokio/pull/1961
3183
- [#1962]: https://github.com/tokio-rs/tokio/pull/1962
3184
- [#1972]: https://github.com/tokio-rs/tokio/pull/1972
3185
- [#1973]: https://github.com/tokio-rs/tokio/pull/1973
3186
- [#1975]: https://github.com/tokio-rs/tokio/pull/1975
3187
- [#1977]: https://github.com/tokio-rs/tokio/pull/1977
3188
- [#1978]: https://github.com/tokio-rs/tokio/pull/1978
3189
-
3190
- # 0.2.4 (December 6, 2019)
3191
-
3192
- ### Fixes
3193
-
3194
- - `sync::Mutex` deadlock when `lock()` future is dropped early ([#1898]).
3195
-
3196
- [#1898]: https://github.com/tokio-rs/tokio/pull/1898
3197
-
3198
- # 0.2.3 (December 6, 2019)
3199
-
3200
- ### Added
3201
-
3202
- - read / write integers using `AsyncReadExt` and `AsyncWriteExt` ([#1863]).
3203
- - `read_buf` / `write_buf` for reading / writing `Buf` / `BufMut` ([#1881]).
3204
- - `TcpStream::poll_peek` - pollable API for performing TCP peek ([#1864]).
3205
- - `sync::oneshot::error::TryRecvError` provides variants to detect the error
3206
- kind ([#1874]).
3207
- - `LocalSet::block_on` accepts `!'static` task ([#1882]).
3208
- - `task::JoinError` is now `Sync` ([#1888]).
3209
- - impl conversions between `tokio::time::Instant` and
3210
- `std::time::Instant` ([#1904]).
3211
-
3212
- ### Fixes
3213
-
3214
- - calling `spawn_blocking` after runtime shutdown ([#1875]).
3215
- - `LocalSet` drop infinite loop ([#1892]).
3216
- - `LocalSet` hang under load ([#1905]).
3217
- - improved documentation ([#1865], [#1866], [#1868], [#1874], [#1876], [#1911]).
3218
-
3219
- [#1863]: https://github.com/tokio-rs/tokio/pull/1863
3220
- [#1864]: https://github.com/tokio-rs/tokio/pull/1864
3221
- [#1865]: https://github.com/tokio-rs/tokio/pull/1865
3222
- [#1866]: https://github.com/tokio-rs/tokio/pull/1866
3223
- [#1868]: https://github.com/tokio-rs/tokio/pull/1868
3224
- [#1874]: https://github.com/tokio-rs/tokio/pull/1874
3225
- [#1875]: https://github.com/tokio-rs/tokio/pull/1875
3226
- [#1876]: https://github.com/tokio-rs/tokio/pull/1876
3227
- [#1881]: https://github.com/tokio-rs/tokio/pull/1881
3228
- [#1882]: https://github.com/tokio-rs/tokio/pull/1882
3229
- [#1888]: https://github.com/tokio-rs/tokio/pull/1888
3230
- [#1892]: https://github.com/tokio-rs/tokio/pull/1892
3231
- [#1904]: https://github.com/tokio-rs/tokio/pull/1904
3232
- [#1905]: https://github.com/tokio-rs/tokio/pull/1905
3233
- [#1911]: https://github.com/tokio-rs/tokio/pull/1911
3234
-
3235
- # 0.2.2 (November 29, 2019)
3236
-
3237
- ### Fixes
3238
-
3239
- - scheduling with `basic_scheduler` ([#1861]).
3240
- - update `spawn` panic message to specify that a task scheduler is required ([#1839]).
3241
- - API docs example for `runtime::Builder` to include a task scheduler ([#1841]).
3242
- - general documentation ([#1834]).
3243
- - building on illumos/solaris ([#1772]).
3244
- - panic when dropping `LocalSet` ([#1843]).
3245
- - API docs mention the required Cargo features for `Builder::{basic, threaded}_scheduler` ([#1858]).
3246
-
3247
- ### Added
3248
-
3249
- - impl `Stream` for `signal::unix::Signal` ([#1849]).
3250
- - API docs for platform specific behavior of `signal::ctrl_c` and `signal::unix::Signal` ([#1854]).
3251
- - API docs for `signal::unix::Signal::{recv, poll_recv}` and `signal::windows::CtrlBreak::{recv, poll_recv}` ([#1854]).
3252
- - `File::into_std` and `File::try_into_std` methods ([#1856]).
3253
-
3254
- [#1772]: https://github.com/tokio-rs/tokio/pull/1772
3255
- [#1834]: https://github.com/tokio-rs/tokio/pull/1834
3256
- [#1839]: https://github.com/tokio-rs/tokio/pull/1839
3257
- [#1841]: https://github.com/tokio-rs/tokio/pull/1841
3258
- [#1843]: https://github.com/tokio-rs/tokio/pull/1843
3259
- [#1849]: https://github.com/tokio-rs/tokio/pull/1849
3260
- [#1854]: https://github.com/tokio-rs/tokio/pull/1854
3261
- [#1856]: https://github.com/tokio-rs/tokio/pull/1856
3262
- [#1858]: https://github.com/tokio-rs/tokio/pull/1858
3263
- [#1861]: https://github.com/tokio-rs/tokio/pull/1861
3264
-
3265
- # 0.2.1 (November 26, 2019)
3266
-
3267
- ### Fixes
3268
-
3269
- - API docs for `TcpListener::incoming`, `UnixListener::incoming` ([#1831]).
3270
-
3271
- ### Added
3272
-
3273
- - `tokio::task::LocalSet` provides a strategy for spawning `!Send` tasks ([#1733]).
3274
- - export `tokio::time::Elapsed` ([#1826]).
3275
- - impl `AsRawFd`, `AsRawHandle` for `tokio::fs::File` ([#1827]).
3276
-
3277
- [#1733]: https://github.com/tokio-rs/tokio/pull/1733
3278
- [#1826]: https://github.com/tokio-rs/tokio/pull/1826
3279
- [#1827]: https://github.com/tokio-rs/tokio/pull/1827
3280
- [#1831]: https://github.com/tokio-rs/tokio/pull/1831
3281
-
3282
- # 0.2.0 (November 26, 2019)
3283
-
3284
- A major breaking change. Most implementation and APIs have changed one way or
3285
- another. This changelog entry contains a highlight
3286
-
3287
- ### Changed
3288
-
3289
- - APIs are updated to use `async / await`.
3290
- - most `tokio-*` crates are collapsed into this crate.
3291
- - Scheduler is rewritten.
3292
- - `tokio::spawn` returns a `JoinHandle`.
3293
- - A single I/O / timer is used per runtime.
3294
- - I/O driver uses a concurrent slab for allocating state.
3295
- - components are made available via feature flag.
3296
- - Use `bytes` 0.5
3297
- - `tokio::codec` is moved to `tokio-util`.
3298
-
3299
- ### Removed
3300
-
3301
- - Standalone `timer` and `net` drivers are removed, use `Runtime` instead
3302
- - `current_thread` runtime is removed, use `tokio::runtime::Runtime` with
3303
- `basic_scheduler` instead.
3304
-
3305
- # 0.1.21 (May 30, 2019)
3306
-
3307
- ### Changed
3308
-
3309
- - Bump `tokio-trace-core` version to 0.2 ([#1111]).
3310
-
3311
- [#1111]: https://github.com/tokio-rs/tokio/pull/1111
3312
-
3313
- # 0.1.20 (May 14, 2019)
3314
-
3315
- ### Added
3316
-
3317
- - `tokio::runtime::Builder::panic_handler` allows configuring handling
3318
- panics on the runtime ([#1055]).
3319
-
3320
- [#1055]: https://github.com/tokio-rs/tokio/pull/1055
3321
-
3322
- # 0.1.19 (April 22, 2019)
3323
-
3324
- ### Added
3325
-
3326
- - Re-export `tokio::sync::Mutex` primitive ([#964]).
3327
-
3328
- [#964]: https://github.com/tokio-rs/tokio/pull/964
3329
-
3330
- # 0.1.18 (March 22, 2019)
3331
-
3332
- ### Added
3333
-
3334
- - `TypedExecutor` re-export and implementations ([#993]).
3335
-
3336
- [#993]: https://github.com/tokio-rs/tokio/pull/993
3337
-
3338
- # 0.1.17 (March 13, 2019)
3339
-
3340
- ### Added
3341
-
3342
- - Propagate trace subscriber in the runtime ([#966]).
3343
-
3344
- [#966]: https://github.com/tokio-rs/tokio/pull/966
3345
-
3346
- # 0.1.16 (March 1, 2019)
3347
-
3348
- ### Fixed
3349
-
3350
- - async-await: track latest nightly changes ([#940]).
3351
-
3352
- ### Added
3353
-
3354
- - `sync::Watch`, a single value broadcast channel ([#922]).
3355
- - Async equivalent of read / write file helpers being added to `std` ([#896]).
3356
-
3357
- [#896]: https://github.com/tokio-rs/tokio/pull/896
3358
- [#922]: https://github.com/tokio-rs/tokio/pull/922
3359
- [#940]: https://github.com/tokio-rs/tokio/pull/940
3360
-
3361
- # 0.1.15 (January 24, 2019)
3362
-
3363
- ### Added
3364
-
3365
- - Re-export tokio-sync APIs ([#839]).
3366
- - Stream enumerate combinator ([#832]).
3367
-
3368
- [#832]: https://github.com/tokio-rs/tokio/pull/832
3369
- [#839]: https://github.com/tokio-rs/tokio/pull/839
3370
-
3371
- # 0.1.14 (January 6, 2019)
3372
-
3373
- - Use feature flags to break up the crate, allowing users to pick & choose
3374
- components ([#808]).
3375
- - Export `UnixDatagram` and `UnixDatagramFramed` ([#772]).
3376
-
3377
- [#772]: https://github.com/tokio-rs/tokio/pull/772
3378
- [#808]: https://github.com/tokio-rs/tokio/pull/808
3379
-
3380
- # 0.1.13 (November 21, 2018)
3381
-
3382
- - Fix `Runtime::reactor()` when no tasks are spawned ([#721]).
3383
- - `runtime::Builder` no longer uses deprecated methods ([#749]).
3384
- - Provide `after_start` and `before_stop` configuration settings for
3385
- `Runtime` ([#756]).
3386
- - Implement throttle stream combinator ([#736]).
3387
-
3388
- [#721]: https://github.com/tokio-rs/tokio/pull/721
3389
- [#736]: https://github.com/tokio-rs/tokio/pull/736
3390
- [#749]: https://github.com/tokio-rs/tokio/pull/749
3391
- [#756]: https://github.com/tokio-rs/tokio/pull/756
3392
-
3393
- # 0.1.12 (October 23, 2018)
3394
-
3395
- - runtime: expose `keep_alive` on runtime builder ([#676]).
3396
- - runtime: create a reactor per worker thread ([#660]).
3397
- - codec: fix panic in `LengthDelimitedCodec` ([#682]).
3398
- - io: re-export `tokio_io::io::read` function ([#689]).
3399
- - runtime: check for executor re-entry in more places ([#708]).
3400
-
3401
- [#660]: https://github.com/tokio-rs/tokio/pull/660
3402
- [#676]: https://github.com/tokio-rs/tokio/pull/676
3403
- [#682]: https://github.com/tokio-rs/tokio/pull/682
3404
- [#689]: https://github.com/tokio-rs/tokio/pull/689
3405
- [#708]: https://github.com/tokio-rs/tokio/pull/708
3406
-
3407
- # 0.1.11 (September 28, 2018)
3408
-
3409
- - Fix `tokio-async-await` dependency ([#675]).
3410
-
3411
- [#675]: https://github.com/tokio-rs/tokio/pull/675
3412
-
3413
- # 0.1.10 (September 27, 2018)
3414
-
3415
- - Fix minimal versions
3416
-
3417
- # 0.1.9 (September 27, 2018)
3418
-
3419
- - Experimental async/await improvements ([#661]).
3420
- - Re-export `TaskExecutor` from `tokio-current-thread` ([#652]).
3421
- - Improve `Runtime` builder API ([#645]).
3422
- - `tokio::run` panics when called from the context of an executor
3423
- ([#646]).
3424
- - Introduce `StreamExt` with a `timeout` helper ([#573]).
3425
- - Move `length_delimited` into `tokio` ([#575]).
3426
- - Re-organize `tokio::net` module ([#548]).
3427
- - Re-export `tokio-current-thread::spawn` in current_thread runtime
3428
- ([#579]).
3429
-
3430
- [#548]: https://github.com/tokio-rs/tokio/pull/548
3431
- [#573]: https://github.com/tokio-rs/tokio/pull/573
3432
- [#575]: https://github.com/tokio-rs/tokio/pull/575
3433
- [#579]: https://github.com/tokio-rs/tokio/pull/579
3434
- [#645]: https://github.com/tokio-rs/tokio/pull/645
3435
- [#646]: https://github.com/tokio-rs/tokio/pull/646
3436
- [#652]: https://github.com/tokio-rs/tokio/pull/652
3437
- [#661]: https://github.com/tokio-rs/tokio/pull/661
3438
-
3439
- # 0.1.8 (August 23, 2018)
3440
-
3441
- - Extract tokio::executor::current_thread to a sub crate ([#370])
3442
- - Add `Runtime::block_on` ([#398])
3443
- - Add `runtime::current_thread::block_on_all` ([#477])
3444
- - Misc documentation improvements ([#450])
3445
- - Implement `std::error::Error` for error types ([#501])
3446
-
3447
- [#370]: https://github.com/tokio-rs/tokio/pull/370
3448
- [#398]: https://github.com/tokio-rs/tokio/pull/398
3449
- [#450]: https://github.com/tokio-rs/tokio/pull/450
3450
- [#477]: https://github.com/tokio-rs/tokio/pull/477
3451
- [#501]: https://github.com/tokio-rs/tokio/pull/501
3452
-
3453
- # 0.1.7 (June 6, 2018)
3454
-
3455
- - Add `Runtime::block_on` for concurrent runtime ([#391]).
3456
- - Provide handle to `current_thread::Runtime` that allows spawning tasks from
3457
- other threads ([#340]).
3458
- - Provide `clock::now()`, a configurable source of time ([#381]).
3459
-
3460
- [#340]: https://github.com/tokio-rs/tokio/pull/340
3461
- [#381]: https://github.com/tokio-rs/tokio/pull/381
3462
- [#391]: https://github.com/tokio-rs/tokio/pull/391
3463
-
3464
- # 0.1.6 (May 2, 2018)
3465
-
3466
- - Add asynchronous filesystem APIs ([#323]).
3467
- - Add "current thread" runtime variant ([#308]).
3468
- - `CurrentThread`: Expose inner `Park` instance.
3469
- - Improve fairness of `CurrentThread` executor ([#313]).
3470
-
3471
- [#308]: https://github.com/tokio-rs/tokio/pull/308
3472
- [#313]: https://github.com/tokio-rs/tokio/pull/313
3473
- [#323]: https://github.com/tokio-rs/tokio/pull/323
3474
-
3475
- # 0.1.5 (March 30, 2018)
3476
-
3477
- - Provide timer API ([#266])
3478
-
3479
- [#266]: https://github.com/tokio-rs/tokio/pull/266
3480
-
3481
- # 0.1.4 (March 22, 2018)
3482
-
3483
- - Fix build on FreeBSD ([#218])
3484
- - Shutdown the Runtime when the handle is dropped ([#214])
3485
- - Set Runtime thread name prefix for worker threads ([#232])
3486
- - Add builder for Runtime ([#234])
3487
- - Extract TCP and UDP types into separate crates ([#224])
3488
- - Optionally support futures 0.2.
3489
-
3490
- [#214]: https://github.com/tokio-rs/tokio/pull/214
3491
- [#218]: https://github.com/tokio-rs/tokio/pull/218
3492
- [#224]: https://github.com/tokio-rs/tokio/pull/224
3493
- [#232]: https://github.com/tokio-rs/tokio/pull/232
3494
- [#234]: https://github.com/tokio-rs/tokio/pull/234
3495
-
3496
- # 0.1.3 (March 09, 2018)
3497
-
3498
- - Fix `CurrentThread::turn` to block on idle ([#212]).
3499
-
3500
- [#212]: https://github.com/tokio-rs/tokio/pull/212
3501
-
3502
- # 0.1.2 (March 09, 2018)
3503
-
3504
- - Introduce Tokio Runtime ([#141])
3505
- - Provide `CurrentThread` for more flexible usage of current thread executor ([#141]).
3506
- - Add Lio for platforms that support it ([#142]).
3507
- - I/O resources now lazily bind to the reactor ([#160]).
3508
- - Extract Reactor to dedicated crate ([#169])
3509
- - Add facade to sub crates and add prelude ([#166]).
3510
- - Switch TCP/UDP fns to poll\_ -> Poll<...> style ([#175])
3511
-
3512
- [#141]: https://github.com/tokio-rs/tokio/pull/141
3513
- [#142]: https://github.com/tokio-rs/tokio/pull/142
3514
- [#160]: https://github.com/tokio-rs/tokio/pull/160
3515
- [#166]: https://github.com/tokio-rs/tokio/pull/166
3516
- [#169]: https://github.com/tokio-rs/tokio/pull/169
3517
- [#175]: https://github.com/tokio-rs/tokio/pull/175
3518
-
3519
- # 0.1.1 (February 09, 2018)
3520
-
3521
- - Doc fixes
3522
-
3523
- # 0.1.0 (February 07, 2018)
3524
-
3525
- - Initial crate released based on [RFC](https://github.com/tokio-rs/tokio-rfcs/pull/3).