wasmtime 10.0.1 → 11.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2692) hide show
  1. checksums.yaml +4 -4
  2. data/Cargo.lock +146 -140
  3. data/ext/Cargo.toml +6 -6
  4. data/ext/cargo-vendor/addr2line-0.21.0/.cargo-checksum.json +1 -0
  5. data/ext/cargo-vendor/addr2line-0.21.0/CHANGELOG.md +336 -0
  6. data/ext/cargo-vendor/addr2line-0.21.0/Cargo.lock +704 -0
  7. data/ext/cargo-vendor/addr2line-0.21.0/Cargo.toml +147 -0
  8. data/ext/cargo-vendor/addr2line-0.21.0/examples/addr2line.rs +317 -0
  9. data/ext/cargo-vendor/addr2line-0.21.0/src/lib.rs +1729 -0
  10. data/ext/cargo-vendor/aho-corasick-1.0.4/.cargo-checksum.json +1 -0
  11. data/ext/cargo-vendor/aho-corasick-1.0.4/Cargo.toml +70 -0
  12. data/ext/cargo-vendor/aho-corasick-1.0.4/src/ahocorasick.rs +2789 -0
  13. data/ext/cargo-vendor/aho-corasick-1.0.4/src/dfa.rs +816 -0
  14. data/ext/cargo-vendor/aho-corasick-1.0.4/src/lib.rs +327 -0
  15. data/ext/cargo-vendor/aho-corasick-1.0.4/src/nfa/contiguous.rs +1141 -0
  16. data/ext/cargo-vendor/aho-corasick-1.0.4/src/nfa/noncontiguous.rs +1710 -0
  17. data/ext/cargo-vendor/anyhow-1.0.75/.cargo-checksum.json +1 -0
  18. data/ext/cargo-vendor/anyhow-1.0.75/Cargo.toml +67 -0
  19. data/ext/cargo-vendor/anyhow-1.0.75/build.rs +131 -0
  20. data/ext/cargo-vendor/anyhow-1.0.75/src/backtrace.rs +401 -0
  21. data/ext/cargo-vendor/anyhow-1.0.75/src/context.rs +193 -0
  22. data/ext/cargo-vendor/anyhow-1.0.75/src/error.rs +996 -0
  23. data/ext/cargo-vendor/anyhow-1.0.75/src/kind.rs +119 -0
  24. data/ext/cargo-vendor/anyhow-1.0.75/src/lib.rs +689 -0
  25. data/ext/cargo-vendor/anyhow-1.0.75/src/wrapper.rs +81 -0
  26. data/ext/cargo-vendor/anyhow-1.0.75/tests/test_ensure.rs +722 -0
  27. data/ext/cargo-vendor/async-trait-0.1.73/.cargo-checksum.json +1 -0
  28. data/ext/cargo-vendor/async-trait-0.1.73/Cargo.toml +63 -0
  29. data/ext/cargo-vendor/async-trait-0.1.73/src/expand.rs +484 -0
  30. data/ext/cargo-vendor/async-trait-0.1.73/src/lib.rs +343 -0
  31. data/ext/cargo-vendor/async-trait-0.1.73/tests/test.rs +1606 -0
  32. data/ext/cargo-vendor/async-trait-0.1.73/tests/ui/consider-restricting.stderr +35 -0
  33. data/ext/cargo-vendor/async-trait-0.1.73/tests/ui/send-not-implemented.stderr +49 -0
  34. data/ext/cargo-vendor/backtrace-0.3.69/.cargo-checksum.json +1 -0
  35. data/ext/cargo-vendor/backtrace-0.3.69/Cargo.lock +192 -0
  36. data/ext/cargo-vendor/backtrace-0.3.69/Cargo.toml +145 -0
  37. data/ext/cargo-vendor/backtrace-0.3.69/build.rs +49 -0
  38. data/ext/cargo-vendor/backtrace-0.3.69/src/print/fuchsia.rs +441 -0
  39. data/ext/cargo-vendor/backtrace-0.3.69/src/print.rs +320 -0
  40. data/ext/cargo-vendor/backtrace-0.3.69/src/symbolize/gimli/parse_running_mmaps_unix.rs +295 -0
  41. data/ext/cargo-vendor/backtrace-0.3.69/src/symbolize/mod.rs +485 -0
  42. data/ext/cargo-vendor/backtrace-0.3.69/src/windows.rs +693 -0
  43. data/ext/cargo-vendor/cc-1.0.83/.cargo-checksum.json +1 -0
  44. data/ext/cargo-vendor/cc-1.0.83/Cargo.lock +111 -0
  45. data/ext/cargo-vendor/cc-1.0.83/Cargo.toml +43 -0
  46. data/ext/cargo-vendor/cc-1.0.83/src/lib.rs +4024 -0
  47. data/ext/cargo-vendor/cc-1.0.83/tests/test.rs +477 -0
  48. data/ext/cargo-vendor/cranelift-bforest-0.98.1/.cargo-checksum.json +1 -0
  49. data/ext/cargo-vendor/cranelift-bforest-0.98.1/Cargo.toml +31 -0
  50. data/ext/cargo-vendor/cranelift-codegen-0.98.1/.cargo-checksum.json +1 -0
  51. data/ext/cargo-vendor/cranelift-codegen-0.98.1/Cargo.toml +160 -0
  52. data/ext/cargo-vendor/cranelift-codegen-0.98.1/build.rs +391 -0
  53. data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/ir/libcall.rs +232 -0
  54. data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/aarch64/abi.rs +1506 -0
  55. data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/aarch64/inst/emit.rs +3714 -0
  56. data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/aarch64/inst/emit_tests.rs +7897 -0
  57. data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/aarch64/inst/mod.rs +2980 -0
  58. data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/aarch64/lower/isle.rs +837 -0
  59. data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/aarch64/lower.isle +2899 -0
  60. data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/aarch64/mod.rs +250 -0
  61. data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/call_conv.rs +119 -0
  62. data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/mod.rs +436 -0
  63. data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/riscv64/abi.rs +946 -0
  64. data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/riscv64/inst/emit.rs +3058 -0
  65. data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/riscv64/inst/encode.rs +281 -0
  66. data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/riscv64/inst/mod.rs +2070 -0
  67. data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/riscv64/inst/vector.rs +939 -0
  68. data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/riscv64/inst.isle +2927 -0
  69. data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/riscv64/inst_vector.isle +1650 -0
  70. data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/riscv64/lower/isle.rs +585 -0
  71. data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/riscv64/lower.isle +1984 -0
  72. data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/riscv64/mod.rs +228 -0
  73. data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/s390x/abi.rs +948 -0
  74. data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/s390x/inst.isle +5043 -0
  75. data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/s390x/lower/isle.rs +1039 -0
  76. data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/s390x/lower.isle +3983 -0
  77. data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/s390x/mod.rs +225 -0
  78. data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/x64/abi.rs +1220 -0
  79. data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/x64/encoding/rex.rs +588 -0
  80. data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/x64/inst/args.rs +2193 -0
  81. data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/x64/inst/emit.rs +4298 -0
  82. data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/x64/inst/emit_state.rs +72 -0
  83. data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/x64/inst/emit_tests.rs +5678 -0
  84. data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/x64/inst/mod.rs +2759 -0
  85. data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/x64/inst.isle +5079 -0
  86. data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/x64/lower/isle.rs +1096 -0
  87. data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/x64/lower.isle +4650 -0
  88. data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/x64/lower.rs +340 -0
  89. data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/x64/mod.rs +230 -0
  90. data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isle_prelude.rs +894 -0
  91. data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/lib.rs +140 -0
  92. data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/machinst/abi.rs +2605 -0
  93. data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/machinst/buffer.rs +2255 -0
  94. data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/machinst/isle.rs +836 -0
  95. data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/machinst/mod.rs +551 -0
  96. data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/machinst/reg.rs +556 -0
  97. data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/machinst/vcode.rs +1580 -0
  98. data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/opts/extends.isle +41 -0
  99. data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/opts/vector.isle +8 -0
  100. data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/prelude.isle +594 -0
  101. data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/prelude_lower.isle +1024 -0
  102. data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/settings.rs +601 -0
  103. data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/timing.rs +271 -0
  104. data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/unionfind.rs +74 -0
  105. data/ext/cargo-vendor/cranelift-codegen-meta-0.98.1/.cargo-checksum.json +1 -0
  106. data/ext/cargo-vendor/cranelift-codegen-meta-0.98.1/Cargo.toml +23 -0
  107. data/ext/cargo-vendor/cranelift-codegen-meta-0.98.1/src/cdsl/settings.rs +429 -0
  108. data/ext/cargo-vendor/cranelift-codegen-meta-0.98.1/src/isa/x86.rs +409 -0
  109. data/ext/cargo-vendor/cranelift-codegen-meta-0.98.1/src/shared/instructions.rs +3847 -0
  110. data/ext/cargo-vendor/cranelift-codegen-meta-0.98.1/src/shared/settings.rs +341 -0
  111. data/ext/cargo-vendor/cranelift-codegen-shared-0.98.1/.cargo-checksum.json +1 -0
  112. data/ext/cargo-vendor/cranelift-codegen-shared-0.98.1/Cargo.toml +22 -0
  113. data/ext/cargo-vendor/cranelift-control-0.98.1/.cargo-checksum.json +1 -0
  114. data/ext/cargo-vendor/cranelift-control-0.98.1/Cargo.toml +30 -0
  115. data/ext/cargo-vendor/cranelift-entity-0.98.1/.cargo-checksum.json +1 -0
  116. data/ext/cargo-vendor/cranelift-entity-0.98.1/Cargo.toml +35 -0
  117. data/ext/cargo-vendor/cranelift-frontend-0.98.1/.cargo-checksum.json +1 -0
  118. data/ext/cargo-vendor/cranelift-frontend-0.98.1/Cargo.toml +53 -0
  119. data/ext/cargo-vendor/cranelift-isle-0.98.1/.cargo-checksum.json +1 -0
  120. data/ext/cargo-vendor/cranelift-isle-0.98.1/Cargo.toml +37 -0
  121. data/ext/cargo-vendor/cranelift-native-0.98.1/.cargo-checksum.json +1 -0
  122. data/ext/cargo-vendor/cranelift-native-0.98.1/Cargo.toml +38 -0
  123. data/ext/cargo-vendor/cranelift-native-0.98.1/src/lib.rs +204 -0
  124. data/ext/cargo-vendor/cranelift-wasm-0.98.1/.cargo-checksum.json +1 -0
  125. data/ext/cargo-vendor/cranelift-wasm-0.98.1/Cargo.toml +85 -0
  126. data/ext/cargo-vendor/cranelift-wasm-0.98.1/src/code_translator.rs +3544 -0
  127. data/ext/cargo-vendor/cranelift-wasm-0.98.1/src/environ/spec.rs +852 -0
  128. data/ext/cargo-vendor/gimli-0.28.0/.cargo-checksum.json +1 -0
  129. data/ext/cargo-vendor/gimli-0.28.0/CHANGELOG.md +987 -0
  130. data/ext/cargo-vendor/gimli-0.28.0/Cargo.toml +109 -0
  131. data/ext/cargo-vendor/gimli-0.28.0/LICENSE-MIT +25 -0
  132. data/ext/cargo-vendor/gimli-0.28.0/README.md +81 -0
  133. data/ext/cargo-vendor/gimli-0.28.0/src/arch.rs +768 -0
  134. data/ext/cargo-vendor/gimli-0.28.0/src/common.rs +391 -0
  135. data/ext/cargo-vendor/gimli-0.28.0/src/constants.rs +1435 -0
  136. data/ext/cargo-vendor/gimli-0.28.0/src/endianity.rs +256 -0
  137. data/ext/cargo-vendor/gimli-0.28.0/src/leb128.rs +612 -0
  138. data/ext/cargo-vendor/gimli-0.28.0/src/lib.rs +79 -0
  139. data/ext/cargo-vendor/gimli-0.28.0/src/read/abbrev.rs +1089 -0
  140. data/ext/cargo-vendor/gimli-0.28.0/src/read/addr.rs +128 -0
  141. data/ext/cargo-vendor/gimli-0.28.0/src/read/aranges.rs +660 -0
  142. data/ext/cargo-vendor/gimli-0.28.0/src/read/cfi.rs +7712 -0
  143. data/ext/cargo-vendor/gimli-0.28.0/src/read/dwarf.rs +1184 -0
  144. data/ext/cargo-vendor/gimli-0.28.0/src/read/endian_reader.rs +639 -0
  145. data/ext/cargo-vendor/gimli-0.28.0/src/read/endian_slice.rs +321 -0
  146. data/ext/cargo-vendor/gimli-0.28.0/src/read/index.rs +535 -0
  147. data/ext/cargo-vendor/gimli-0.28.0/src/read/lazy.rs +116 -0
  148. data/ext/cargo-vendor/gimli-0.28.0/src/read/line.rs +3130 -0
  149. data/ext/cargo-vendor/gimli-0.28.0/src/read/lists.rs +68 -0
  150. data/ext/cargo-vendor/gimli-0.28.0/src/read/loclists.rs +1627 -0
  151. data/ext/cargo-vendor/gimli-0.28.0/src/read/lookup.rs +202 -0
  152. data/ext/cargo-vendor/gimli-0.28.0/src/read/mod.rs +830 -0
  153. data/ext/cargo-vendor/gimli-0.28.0/src/read/op.rs +4119 -0
  154. data/ext/cargo-vendor/gimli-0.28.0/src/read/pubnames.rs +141 -0
  155. data/ext/cargo-vendor/gimli-0.28.0/src/read/pubtypes.rs +141 -0
  156. data/ext/cargo-vendor/gimli-0.28.0/src/read/reader.rs +502 -0
  157. data/ext/cargo-vendor/gimli-0.28.0/src/read/rnglists.rs +1458 -0
  158. data/ext/cargo-vendor/gimli-0.28.0/src/read/str.rs +321 -0
  159. data/ext/cargo-vendor/gimli-0.28.0/src/read/unit.rs +6139 -0
  160. data/ext/cargo-vendor/gimli-0.28.0/src/read/util.rs +251 -0
  161. data/ext/cargo-vendor/gimli-0.28.0/src/read/value.rs +1621 -0
  162. data/ext/cargo-vendor/gimli-0.28.0/src/test_util.rs +53 -0
  163. data/ext/cargo-vendor/gimli-0.28.0/src/write/abbrev.rs +188 -0
  164. data/ext/cargo-vendor/gimli-0.28.0/src/write/cfi.rs +1050 -0
  165. data/ext/cargo-vendor/gimli-0.28.0/src/write/dwarf.rs +138 -0
  166. data/ext/cargo-vendor/gimli-0.28.0/src/write/endian_vec.rs +117 -0
  167. data/ext/cargo-vendor/gimli-0.28.0/src/write/line.rs +1957 -0
  168. data/ext/cargo-vendor/gimli-0.28.0/src/write/loc.rs +550 -0
  169. data/ext/cargo-vendor/gimli-0.28.0/src/write/mod.rs +425 -0
  170. data/ext/cargo-vendor/gimli-0.28.0/src/write/op.rs +1618 -0
  171. data/ext/cargo-vendor/gimli-0.28.0/src/write/range.rs +416 -0
  172. data/ext/cargo-vendor/gimli-0.28.0/src/write/section.rs +172 -0
  173. data/ext/cargo-vendor/gimli-0.28.0/src/write/str.rs +172 -0
  174. data/ext/cargo-vendor/gimli-0.28.0/src/write/unit.rs +3152 -0
  175. data/ext/cargo-vendor/gimli-0.28.0/src/write/writer.rs +494 -0
  176. data/ext/cargo-vendor/log-0.4.20/.cargo-checksum.json +1 -0
  177. data/ext/cargo-vendor/log-0.4.20/CHANGELOG.md +273 -0
  178. data/ext/cargo-vendor/log-0.4.20/Cargo.toml +118 -0
  179. data/ext/cargo-vendor/log-0.4.20/README.md +121 -0
  180. data/ext/cargo-vendor/log-0.4.20/src/__private_api.rs +57 -0
  181. data/ext/cargo-vendor/log-0.4.20/src/lib.rs +1827 -0
  182. data/ext/cargo-vendor/log-0.4.20/src/macros.rs +240 -0
  183. data/ext/cargo-vendor/object-0.32.0/.cargo-checksum.json +1 -0
  184. data/ext/cargo-vendor/object-0.32.0/CHANGELOG.md +679 -0
  185. data/ext/cargo-vendor/object-0.32.0/Cargo.toml +163 -0
  186. data/ext/cargo-vendor/object-0.32.0/README.md +58 -0
  187. data/ext/cargo-vendor/object-0.32.0/clippy.toml +1 -0
  188. data/ext/cargo-vendor/object-0.32.0/src/common.rs +501 -0
  189. data/ext/cargo-vendor/object-0.32.0/src/elf.rs +6156 -0
  190. data/ext/cargo-vendor/object-0.32.0/src/pe.rs +3054 -0
  191. data/ext/cargo-vendor/object-0.32.0/src/read/any.rs +1314 -0
  192. data/ext/cargo-vendor/object-0.32.0/src/read/coff/import.rs +209 -0
  193. data/ext/cargo-vendor/object-0.32.0/src/read/coff/mod.rs +21 -0
  194. data/ext/cargo-vendor/object-0.32.0/src/read/elf/file.rs +911 -0
  195. data/ext/cargo-vendor/object-0.32.0/src/read/elf/note.rs +266 -0
  196. data/ext/cargo-vendor/object-0.32.0/src/read/elf/relocation.rs +576 -0
  197. data/ext/cargo-vendor/object-0.32.0/src/read/elf/symbol.rs +585 -0
  198. data/ext/cargo-vendor/object-0.32.0/src/read/mod.rs +767 -0
  199. data/ext/cargo-vendor/object-0.32.0/src/write/elf/object.rs +903 -0
  200. data/ext/cargo-vendor/object-0.32.0/src/write/macho.rs +966 -0
  201. data/ext/cargo-vendor/object-0.32.0/tests/round_trip/macho.rs +63 -0
  202. data/ext/cargo-vendor/object-0.32.0/tests/round_trip/mod.rs +637 -0
  203. data/ext/cargo-vendor/quote-1.0.33/.cargo-checksum.json +1 -0
  204. data/ext/cargo-vendor/quote-1.0.33/Cargo.toml +50 -0
  205. data/ext/cargo-vendor/quote-1.0.33/src/lib.rs +1444 -0
  206. data/ext/cargo-vendor/quote-1.0.33/src/runtime.rs +530 -0
  207. data/ext/cargo-vendor/serde-1.0.185/.cargo-checksum.json +1 -0
  208. data/ext/cargo-vendor/serde-1.0.185/Cargo.toml +66 -0
  209. data/ext/cargo-vendor/serde-1.0.185/src/lib.rs +327 -0
  210. data/ext/cargo-vendor/serde-1.0.185/src/private/ser.rs +1385 -0
  211. data/ext/cargo-vendor/serde_derive-1.0.185/.cargo-checksum.json +1 -0
  212. data/ext/cargo-vendor/serde_derive-1.0.185/Cargo.toml +59 -0
  213. data/ext/cargo-vendor/serde_derive-1.0.185/README.md +114 -0
  214. data/ext/cargo-vendor/serde_derive-1.0.185/crates-io.md +65 -0
  215. data/ext/cargo-vendor/serde_derive-1.0.185/src/de.rs +3136 -0
  216. data/ext/cargo-vendor/serde_derive-1.0.185/src/internals/attr.rs +1878 -0
  217. data/ext/cargo-vendor/serde_derive-1.0.185/src/internals/symbol.rs +71 -0
  218. data/ext/cargo-vendor/serde_derive-1.0.185/src/lib.rs +102 -0
  219. data/ext/cargo-vendor/serde_derive-1.0.185/src/ser.rs +1359 -0
  220. data/ext/cargo-vendor/serde_json-1.0.105/.cargo-checksum.json +1 -0
  221. data/ext/cargo-vendor/serde_json-1.0.105/Cargo.toml +109 -0
  222. data/ext/cargo-vendor/serde_json-1.0.105/src/de.rs +2678 -0
  223. data/ext/cargo-vendor/serde_json-1.0.105/src/lib.rs +418 -0
  224. data/ext/cargo-vendor/serde_json-1.0.105/src/ser.rs +2247 -0
  225. data/ext/cargo-vendor/serde_json-1.0.105/src/value/de.rs +1419 -0
  226. data/ext/cargo-vendor/serde_json-1.0.105/src/value/ser.rs +1053 -0
  227. data/ext/cargo-vendor/serde_json-1.0.105/tests/test.rs +2499 -0
  228. data/ext/cargo-vendor/syn-2.0.29/.cargo-checksum.json +1 -0
  229. data/ext/cargo-vendor/syn-2.0.29/Cargo.toml +150 -0
  230. data/ext/cargo-vendor/syn-2.0.29/src/custom_keyword.rs +259 -0
  231. data/ext/cargo-vendor/syn-2.0.29/src/custom_punctuation.rs +302 -0
  232. data/ext/cargo-vendor/syn-2.0.29/src/export.rs +69 -0
  233. data/ext/cargo-vendor/syn-2.0.29/src/group.rs +291 -0
  234. data/ext/cargo-vendor/syn-2.0.29/src/lib.rs +970 -0
  235. data/ext/cargo-vendor/syn-2.0.29/src/parse_quote.rs +179 -0
  236. data/ext/cargo-vendor/syn-2.0.29/src/span.rs +63 -0
  237. data/ext/cargo-vendor/syn-2.0.29/src/token.rs +1071 -0
  238. data/ext/cargo-vendor/syn-2.0.29/tests/common/eq.rs +864 -0
  239. data/ext/cargo-vendor/thiserror-1.0.47/.cargo-checksum.json +1 -0
  240. data/ext/cargo-vendor/thiserror-1.0.47/Cargo.toml +48 -0
  241. data/ext/cargo-vendor/thiserror-1.0.47/build.rs +95 -0
  242. data/ext/cargo-vendor/thiserror-1.0.47/src/aserror.rs +50 -0
  243. data/ext/cargo-vendor/thiserror-1.0.47/src/display.rs +30 -0
  244. data/ext/cargo-vendor/thiserror-1.0.47/src/lib.rs +258 -0
  245. data/ext/cargo-vendor/thiserror-1.0.47/src/provide.rs +20 -0
  246. data/ext/cargo-vendor/thiserror-1.0.47/tests/test_backtrace.rs +274 -0
  247. data/ext/cargo-vendor/thiserror-1.0.47/tests/test_option.rs +105 -0
  248. data/ext/cargo-vendor/thiserror-impl-1.0.47/.cargo-checksum.json +1 -0
  249. data/ext/cargo-vendor/thiserror-impl-1.0.47/Cargo.toml +36 -0
  250. data/ext/cargo-vendor/thiserror-impl-1.0.47/src/expand.rs +545 -0
  251. data/ext/cargo-vendor/tokio-1.32.0/.cargo-checksum.json +1 -0
  252. data/ext/cargo-vendor/tokio-1.32.0/CHANGELOG.md +2987 -0
  253. data/ext/cargo-vendor/tokio-1.32.0/Cargo.toml +227 -0
  254. data/ext/cargo-vendor/tokio-1.32.0/README.md +249 -0
  255. data/ext/cargo-vendor/tokio-1.32.0/src/io/async_fd.rs +1243 -0
  256. data/ext/cargo-vendor/tokio-1.32.0/src/io/interest.rs +310 -0
  257. data/ext/cargo-vendor/tokio-1.32.0/src/io/ready.rs +322 -0
  258. data/ext/cargo-vendor/tokio-1.32.0/src/io/split.rs +201 -0
  259. data/ext/cargo-vendor/tokio-1.32.0/src/io/util/async_read_ext.rs +1298 -0
  260. data/ext/cargo-vendor/tokio-1.32.0/src/process/mod.rs +1674 -0
  261. data/ext/cargo-vendor/tokio-1.32.0/src/runtime/builder.rs +1336 -0
  262. data/ext/cargo-vendor/tokio-1.32.0/src/runtime/io/scheduled_io.rs +600 -0
  263. data/ext/cargo-vendor/tokio-1.32.0/src/runtime/metrics/batch.rs +163 -0
  264. data/ext/cargo-vendor/tokio-1.32.0/src/runtime/metrics/mock.rs +55 -0
  265. data/ext/cargo-vendor/tokio-1.32.0/src/runtime/metrics/runtime.rs +924 -0
  266. data/ext/cargo-vendor/tokio-1.32.0/src/runtime/metrics/worker.rs +84 -0
  267. data/ext/cargo-vendor/tokio-1.32.0/src/runtime/scheduler/current_thread/mod.rs +764 -0
  268. data/ext/cargo-vendor/tokio-1.32.0/src/runtime/scheduler/multi_thread/stats.rs +140 -0
  269. data/ext/cargo-vendor/tokio-1.32.0/src/runtime/scheduler/multi_thread_alt/handle.rs +75 -0
  270. data/ext/cargo-vendor/tokio-1.32.0/src/runtime/scheduler/multi_thread_alt/idle.rs +423 -0
  271. data/ext/cargo-vendor/tokio-1.32.0/src/runtime/scheduler/multi_thread_alt/stats.rs +171 -0
  272. data/ext/cargo-vendor/tokio-1.32.0/src/runtime/scheduler/multi_thread_alt/worker.rs +1595 -0
  273. data/ext/cargo-vendor/tokio-1.32.0/src/sync/broadcast.rs +1514 -0
  274. data/ext/cargo-vendor/tokio-1.32.0/tests/io_async_fd.rs +812 -0
  275. data/ext/cargo-vendor/tokio-1.32.0/tests/io_split.rs +116 -0
  276. data/ext/cargo-vendor/tokio-1.32.0/tests/rt_metrics.rs +731 -0
  277. data/ext/cargo-vendor/unicase-2.7.0/.cargo-checksum.json +1 -0
  278. data/ext/cargo-vendor/unicase-2.7.0/Cargo.toml +40 -0
  279. data/ext/cargo-vendor/unicase-2.7.0/LICENSE-APACHE +201 -0
  280. data/ext/cargo-vendor/unicase-2.7.0/README.md +32 -0
  281. data/ext/cargo-vendor/unicase-2.7.0/src/ascii.rs +186 -0
  282. data/ext/cargo-vendor/unicase-2.7.0/src/lib.rs +457 -0
  283. data/ext/cargo-vendor/unicase-2.7.0/src/unicode/map.rs +1965 -0
  284. data/ext/cargo-vendor/unicase-2.7.0/src/unicode/mod.rs +200 -0
  285. data/ext/cargo-vendor/wasi-cap-std-sync-11.0.0/.cargo-checksum.json +1 -0
  286. data/ext/cargo-vendor/wasi-cap-std-sync-11.0.0/Cargo.toml +90 -0
  287. data/ext/cargo-vendor/wasi-common-11.0.0/.cargo-checksum.json +1 -0
  288. data/ext/cargo-vendor/wasi-common-11.0.0/Cargo.toml +87 -0
  289. data/ext/cargo-vendor/wasmtime-11.0.0/.cargo-checksum.json +1 -0
  290. data/ext/cargo-vendor/wasmtime-11.0.0/Cargo.toml +183 -0
  291. data/ext/cargo-vendor/wasmtime-11.0.0/src/component/component.rs +397 -0
  292. data/ext/cargo-vendor/wasmtime-11.0.0/src/component/func/host.rs +472 -0
  293. data/ext/cargo-vendor/wasmtime-11.0.0/src/component/func/options.rs +270 -0
  294. data/ext/cargo-vendor/wasmtime-11.0.0/src/component/func/typed.rs +2298 -0
  295. data/ext/cargo-vendor/wasmtime-11.0.0/src/component/func.rs +701 -0
  296. data/ext/cargo-vendor/wasmtime-11.0.0/src/component/instance.rs +727 -0
  297. data/ext/cargo-vendor/wasmtime-11.0.0/src/component/mod.rs +313 -0
  298. data/ext/cargo-vendor/wasmtime-11.0.0/src/component/storage.rs +43 -0
  299. data/ext/cargo-vendor/wasmtime-11.0.0/src/component/types.rs +514 -0
  300. data/ext/cargo-vendor/wasmtime-11.0.0/src/component/values.rs +1319 -0
  301. data/ext/cargo-vendor/wasmtime-11.0.0/src/config.rs +2058 -0
  302. data/ext/cargo-vendor/wasmtime-11.0.0/src/engine.rs +756 -0
  303. data/ext/cargo-vendor/wasmtime-asm-macros-11.0.0/.cargo-checksum.json +1 -0
  304. data/ext/cargo-vendor/wasmtime-asm-macros-11.0.0/Cargo.toml +22 -0
  305. data/ext/cargo-vendor/wasmtime-cache-11.0.0/.cargo-checksum.json +1 -0
  306. data/ext/cargo-vendor/wasmtime-cache-11.0.0/Cargo.toml +73 -0
  307. data/ext/cargo-vendor/wasmtime-component-macro-11.0.0/.cargo-checksum.json +1 -0
  308. data/ext/cargo-vendor/wasmtime-component-macro-11.0.0/Cargo.toml +58 -0
  309. data/ext/cargo-vendor/wasmtime-component-macro-11.0.0/src/bindgen.rs +348 -0
  310. data/ext/cargo-vendor/wasmtime-component-macro-11.0.0/src/component.rs +1354 -0
  311. data/ext/cargo-vendor/wasmtime-component-macro-11.0.0/tests/codegen.rs +26 -0
  312. data/ext/cargo-vendor/wasmtime-component-util-11.0.0/.cargo-checksum.json +1 -0
  313. data/ext/cargo-vendor/wasmtime-component-util-11.0.0/Cargo.toml +25 -0
  314. data/ext/cargo-vendor/wasmtime-cranelift-11.0.0/.cargo-checksum.json +1 -0
  315. data/ext/cargo-vendor/wasmtime-cranelift-11.0.0/Cargo.toml +90 -0
  316. data/ext/cargo-vendor/wasmtime-cranelift-11.0.0/src/compiler/component.rs +593 -0
  317. data/ext/cargo-vendor/wasmtime-cranelift-11.0.0/src/compiler.rs +1297 -0
  318. data/ext/cargo-vendor/wasmtime-cranelift-11.0.0/src/func_environ.rs +2218 -0
  319. data/ext/cargo-vendor/wasmtime-cranelift-11.0.0/src/lib.rs +160 -0
  320. data/ext/cargo-vendor/wasmtime-cranelift-shared-11.0.0/.cargo-checksum.json +1 -0
  321. data/ext/cargo-vendor/wasmtime-cranelift-shared-11.0.0/Cargo.toml +57 -0
  322. data/ext/cargo-vendor/wasmtime-cranelift-shared-11.0.0/src/obj.rs +565 -0
  323. data/ext/cargo-vendor/wasmtime-environ-11.0.0/.cargo-checksum.json +1 -0
  324. data/ext/cargo-vendor/wasmtime-environ-11.0.0/Cargo.lock +681 -0
  325. data/ext/cargo-vendor/wasmtime-environ-11.0.0/Cargo.toml +116 -0
  326. data/ext/cargo-vendor/wasmtime-environ-11.0.0/examples/factc.rs +209 -0
  327. data/ext/cargo-vendor/wasmtime-environ-11.0.0/src/component/info.rs +530 -0
  328. data/ext/cargo-vendor/wasmtime-environ-11.0.0/src/component/translate/inline.rs +1069 -0
  329. data/ext/cargo-vendor/wasmtime-environ-11.0.0/src/component/translate.rs +843 -0
  330. data/ext/cargo-vendor/wasmtime-environ-11.0.0/src/component/types.rs +1827 -0
  331. data/ext/cargo-vendor/wasmtime-environ-11.0.0/src/fact/signature.rs +118 -0
  332. data/ext/cargo-vendor/wasmtime-environ-11.0.0/src/fact/trampoline.rs +3173 -0
  333. data/ext/cargo-vendor/wasmtime-environ-11.0.0/src/obj.rs +172 -0
  334. data/ext/cargo-vendor/wasmtime-fiber-11.0.0/.cargo-checksum.json +1 -0
  335. data/ext/cargo-vendor/wasmtime-fiber-11.0.0/Cargo.toml +46 -0
  336. data/ext/cargo-vendor/wasmtime-jit-11.0.0/.cargo-checksum.json +1 -0
  337. data/ext/cargo-vendor/wasmtime-jit-11.0.0/Cargo.toml +104 -0
  338. data/ext/cargo-vendor/wasmtime-jit-11.0.0/src/code_memory.rs +313 -0
  339. data/ext/cargo-vendor/wasmtime-jit-debug-11.0.0/.cargo-checksum.json +1 -0
  340. data/ext/cargo-vendor/wasmtime-jit-debug-11.0.0/Cargo.toml +55 -0
  341. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-11.0.0/.cargo-checksum.json +1 -0
  342. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-11.0.0/Cargo.toml +37 -0
  343. data/ext/cargo-vendor/wasmtime-runtime-11.0.0/.cargo-checksum.json +1 -0
  344. data/ext/cargo-vendor/wasmtime-runtime-11.0.0/Cargo.toml +110 -0
  345. data/ext/cargo-vendor/wasmtime-runtime-11.0.0/src/component.rs +727 -0
  346. data/ext/cargo-vendor/wasmtime-runtime-11.0.0/src/libcalls.rs +626 -0
  347. data/ext/cargo-vendor/wasmtime-types-11.0.1/.cargo-checksum.json +1 -0
  348. data/ext/cargo-vendor/wasmtime-types-11.0.1/Cargo.toml +34 -0
  349. data/ext/cargo-vendor/wasmtime-wasi-11.0.0/.cargo-checksum.json +1 -0
  350. data/ext/cargo-vendor/wasmtime-wasi-11.0.0/Cargo.toml +153 -0
  351. data/ext/cargo-vendor/wasmtime-wasi-11.0.0/src/preview2/clocks/host.rs +73 -0
  352. data/ext/cargo-vendor/wasmtime-wasi-11.0.0/src/preview2/clocks.rs +12 -0
  353. data/ext/cargo-vendor/wasmtime-wasi-11.0.0/src/preview2/ctx.rs +238 -0
  354. data/ext/cargo-vendor/wasmtime-wasi-11.0.0/src/preview2/mod.rs +44 -0
  355. data/ext/cargo-vendor/wasmtime-wasi-11.0.0/src/preview2/pipe.rs +233 -0
  356. data/ext/cargo-vendor/wasmtime-wasi-11.0.0/src/preview2/preview2/clocks.rs +80 -0
  357. data/ext/cargo-vendor/wasmtime-wasi-11.0.0/src/preview2/preview2/poll.rs +83 -0
  358. data/ext/cargo-vendor/wasmtime-wasi-11.0.0/src/preview2/sched/subscription.rs +104 -0
  359. data/ext/cargo-vendor/wasmtime-wasi-11.0.0/src/preview2/sched/sync.rs +156 -0
  360. data/ext/cargo-vendor/wasmtime-wasi-11.0.0/src/preview2/sched.rs +110 -0
  361. data/ext/cargo-vendor/wasmtime-wasi-11.0.0/wit/deps/poll/poll.wit +39 -0
  362. data/ext/cargo-vendor/wasmtime-winch-11.0.0/.cargo-checksum.json +1 -0
  363. data/ext/cargo-vendor/wasmtime-winch-11.0.0/Cargo.toml +63 -0
  364. data/ext/cargo-vendor/wasmtime-wit-bindgen-11.0.0/.cargo-checksum.json +1 -0
  365. data/ext/cargo-vendor/wasmtime-wit-bindgen-11.0.0/Cargo.toml +29 -0
  366. data/ext/cargo-vendor/wasmtime-wit-bindgen-11.0.0/src/lib.rs +1648 -0
  367. data/ext/cargo-vendor/wasmtime-wit-bindgen-11.0.0/src/rust.rs +491 -0
  368. data/ext/cargo-vendor/wasmtime-wit-bindgen-11.0.0/src/types.rs +183 -0
  369. data/ext/cargo-vendor/wast-63.0.0/.cargo-checksum.json +1 -0
  370. data/ext/cargo-vendor/wast-63.0.0/Cargo.toml +50 -0
  371. data/ext/cargo-vendor/wast-63.0.0/src/core/binary.rs +1246 -0
  372. data/ext/cargo-vendor/wast-63.0.0/src/core/custom.rs +390 -0
  373. data/ext/cargo-vendor/wast-63.0.0/src/core/func.rs +136 -0
  374. data/ext/cargo-vendor/wast-63.0.0/src/core/module.rs +217 -0
  375. data/ext/cargo-vendor/wast-63.0.0/src/encode.rs +89 -0
  376. data/ext/cargo-vendor/wast-63.0.0/src/lib.rs +537 -0
  377. data/ext/cargo-vendor/wat-1.0.70/.cargo-checksum.json +1 -0
  378. data/ext/cargo-vendor/wat-1.0.70/Cargo.toml +27 -0
  379. data/ext/cargo-vendor/wiggle-11.0.0/.cargo-checksum.json +1 -0
  380. data/ext/cargo-vendor/wiggle-11.0.0/Cargo.toml +106 -0
  381. data/ext/cargo-vendor/wiggle-generate-11.0.0/.cargo-checksum.json +1 -0
  382. data/ext/cargo-vendor/wiggle-generate-11.0.0/Cargo.toml +58 -0
  383. data/ext/cargo-vendor/wiggle-macro-11.0.0/.cargo-checksum.json +1 -0
  384. data/ext/cargo-vendor/wiggle-macro-11.0.0/Cargo.toml +55 -0
  385. data/ext/cargo-vendor/winch-codegen-0.9.0/.cargo-checksum.json +1 -0
  386. data/ext/cargo-vendor/winch-codegen-0.9.0/Cargo.toml +62 -0
  387. data/ext/cargo-vendor/winch-codegen-0.9.0/src/abi/mod.rs +251 -0
  388. data/ext/cargo-vendor/winch-codegen-0.9.0/src/codegen/call.rs +199 -0
  389. data/ext/cargo-vendor/winch-codegen-0.9.0/src/codegen/context.rs +328 -0
  390. data/ext/cargo-vendor/winch-codegen-0.9.0/src/codegen/control.rs +437 -0
  391. data/ext/cargo-vendor/winch-codegen-0.9.0/src/codegen/env.rs +64 -0
  392. data/ext/cargo-vendor/winch-codegen-0.9.0/src/codegen/mod.rs +319 -0
  393. data/ext/cargo-vendor/winch-codegen-0.9.0/src/isa/aarch64/abi.rs +250 -0
  394. data/ext/cargo-vendor/winch-codegen-0.9.0/src/isa/aarch64/asm.rs +312 -0
  395. data/ext/cargo-vendor/winch-codegen-0.9.0/src/isa/aarch64/masm.rs +293 -0
  396. data/ext/cargo-vendor/winch-codegen-0.9.0/src/isa/mod.rs +215 -0
  397. data/ext/cargo-vendor/winch-codegen-0.9.0/src/isa/x64/abi.rs +375 -0
  398. data/ext/cargo-vendor/winch-codegen-0.9.0/src/isa/x64/asm.rs +855 -0
  399. data/ext/cargo-vendor/winch-codegen-0.9.0/src/isa/x64/masm.rs +516 -0
  400. data/ext/cargo-vendor/winch-codegen-0.9.0/src/isa/x64/regs.rs +192 -0
  401. data/ext/cargo-vendor/winch-codegen-0.9.0/src/masm.rs +352 -0
  402. data/ext/cargo-vendor/winch-codegen-0.9.0/src/stack.rs +235 -0
  403. data/ext/cargo-vendor/winch-codegen-0.9.0/src/trampoline.rs +494 -0
  404. data/ext/cargo-vendor/winch-codegen-0.9.0/src/visitor.rs +630 -0
  405. data/ext/cargo-vendor/windows-targets-0.48.5/.cargo-checksum.json +1 -0
  406. data/ext/cargo-vendor/windows-targets-0.48.5/Cargo.toml +41 -0
  407. data/ext/cargo-vendor/windows-targets-0.48.5/readme.md +88 -0
  408. data/ext/cargo-vendor/windows-targets-0.48.5/src/lib.rs +55 -0
  409. data/ext/cargo-vendor/windows_aarch64_gnullvm-0.48.5/.cargo-checksum.json +1 -0
  410. data/ext/cargo-vendor/windows_aarch64_gnullvm-0.48.5/Cargo.toml +23 -0
  411. data/ext/cargo-vendor/windows_aarch64_gnullvm-0.48.5/lib/libwindows.0.48.5.a +0 -0
  412. data/ext/cargo-vendor/windows_aarch64_msvc-0.48.5/.cargo-checksum.json +1 -0
  413. data/ext/cargo-vendor/windows_aarch64_msvc-0.48.5/Cargo.toml +23 -0
  414. data/ext/cargo-vendor/windows_aarch64_msvc-0.48.5/lib/windows.0.48.5.lib +0 -0
  415. data/ext/cargo-vendor/windows_i686_gnu-0.48.5/.cargo-checksum.json +1 -0
  416. data/ext/cargo-vendor/windows_i686_gnu-0.48.5/Cargo.toml +23 -0
  417. data/ext/cargo-vendor/windows_i686_gnu-0.48.5/lib/libwindows.0.48.5.a +0 -0
  418. data/ext/cargo-vendor/windows_i686_msvc-0.48.5/.cargo-checksum.json +1 -0
  419. data/ext/cargo-vendor/windows_i686_msvc-0.48.5/Cargo.toml +23 -0
  420. data/ext/cargo-vendor/windows_i686_msvc-0.48.5/lib/windows.0.48.5.lib +0 -0
  421. data/ext/cargo-vendor/windows_x86_64_gnu-0.48.5/.cargo-checksum.json +1 -0
  422. data/ext/cargo-vendor/windows_x86_64_gnu-0.48.5/Cargo.toml +23 -0
  423. data/ext/cargo-vendor/windows_x86_64_gnu-0.48.5/lib/libwindows.0.48.5.a +0 -0
  424. data/ext/cargo-vendor/windows_x86_64_gnullvm-0.48.5/.cargo-checksum.json +1 -0
  425. data/ext/cargo-vendor/windows_x86_64_gnullvm-0.48.5/Cargo.toml +23 -0
  426. data/ext/cargo-vendor/windows_x86_64_gnullvm-0.48.5/lib/libwindows.0.48.5.a +0 -0
  427. data/ext/cargo-vendor/windows_x86_64_msvc-0.48.5/.cargo-checksum.json +1 -0
  428. data/ext/cargo-vendor/windows_x86_64_msvc-0.48.5/Cargo.toml +23 -0
  429. data/ext/cargo-vendor/windows_x86_64_msvc-0.48.5/lib/windows.0.48.5.lib +0 -0
  430. data/lib/wasmtime/version.rb +1 -1
  431. metadata +2291 -2262
  432. data/ext/cargo-vendor/addr2line-0.20.0/.cargo-checksum.json +0 -1
  433. data/ext/cargo-vendor/addr2line-0.20.0/CHANGELOG.md +0 -321
  434. data/ext/cargo-vendor/addr2line-0.20.0/Cargo.lock +0 -548
  435. data/ext/cargo-vendor/addr2line-0.20.0/Cargo.toml +0 -145
  436. data/ext/cargo-vendor/addr2line-0.20.0/examples/addr2line.rs +0 -306
  437. data/ext/cargo-vendor/addr2line-0.20.0/src/lib.rs +0 -1729
  438. data/ext/cargo-vendor/aho-corasick-1.0.3/.cargo-checksum.json +0 -1
  439. data/ext/cargo-vendor/aho-corasick-1.0.3/Cargo.toml +0 -70
  440. data/ext/cargo-vendor/aho-corasick-1.0.3/src/ahocorasick.rs +0 -2788
  441. data/ext/cargo-vendor/aho-corasick-1.0.3/src/dfa.rs +0 -804
  442. data/ext/cargo-vendor/aho-corasick-1.0.3/src/lib.rs +0 -326
  443. data/ext/cargo-vendor/aho-corasick-1.0.3/src/nfa/contiguous.rs +0 -1133
  444. data/ext/cargo-vendor/aho-corasick-1.0.3/src/nfa/noncontiguous.rs +0 -1328
  445. data/ext/cargo-vendor/anyhow-1.0.72/.cargo-checksum.json +0 -1
  446. data/ext/cargo-vendor/anyhow-1.0.72/Cargo.toml +0 -67
  447. data/ext/cargo-vendor/anyhow-1.0.72/build.rs +0 -131
  448. data/ext/cargo-vendor/anyhow-1.0.72/src/backtrace.rs +0 -401
  449. data/ext/cargo-vendor/anyhow-1.0.72/src/context.rs +0 -193
  450. data/ext/cargo-vendor/anyhow-1.0.72/src/error.rs +0 -992
  451. data/ext/cargo-vendor/anyhow-1.0.72/src/kind.rs +0 -116
  452. data/ext/cargo-vendor/anyhow-1.0.72/src/lib.rs +0 -683
  453. data/ext/cargo-vendor/anyhow-1.0.72/src/wrapper.rs +0 -81
  454. data/ext/cargo-vendor/anyhow-1.0.72/tests/test_ensure.rs +0 -721
  455. data/ext/cargo-vendor/async-trait-0.1.72/.cargo-checksum.json +0 -1
  456. data/ext/cargo-vendor/async-trait-0.1.72/Cargo.toml +0 -63
  457. data/ext/cargo-vendor/async-trait-0.1.72/src/expand.rs +0 -484
  458. data/ext/cargo-vendor/async-trait-0.1.72/src/lib.rs +0 -343
  459. data/ext/cargo-vendor/async-trait-0.1.72/tests/test.rs +0 -1606
  460. data/ext/cargo-vendor/async-trait-0.1.72/tests/ui/consider-restricting.stderr +0 -33
  461. data/ext/cargo-vendor/async-trait-0.1.72/tests/ui/send-not-implemented.stderr +0 -47
  462. data/ext/cargo-vendor/backtrace-0.3.68/.cargo-checksum.json +0 -1
  463. data/ext/cargo-vendor/backtrace-0.3.68/Cargo.lock +0 -192
  464. data/ext/cargo-vendor/backtrace-0.3.68/Cargo.toml +0 -144
  465. data/ext/cargo-vendor/backtrace-0.3.68/build.rs +0 -41
  466. data/ext/cargo-vendor/backtrace-0.3.68/ci/android-ndk.sh +0 -14
  467. data/ext/cargo-vendor/backtrace-0.3.68/ci/android-sdk.sh +0 -65
  468. data/ext/cargo-vendor/backtrace-0.3.68/ci/debuglink-docker.sh +0 -29
  469. data/ext/cargo-vendor/backtrace-0.3.68/ci/debuglink.sh +0 -75
  470. data/ext/cargo-vendor/backtrace-0.3.68/ci/docker/aarch64-linux-android/Dockerfile +0 -18
  471. data/ext/cargo-vendor/backtrace-0.3.68/ci/docker/aarch64-unknown-linux-gnu/Dockerfile +0 -11
  472. data/ext/cargo-vendor/backtrace-0.3.68/ci/docker/arm-linux-androideabi/Dockerfile +0 -18
  473. data/ext/cargo-vendor/backtrace-0.3.68/ci/docker/arm-unknown-linux-gnueabihf/Dockerfile +0 -10
  474. data/ext/cargo-vendor/backtrace-0.3.68/ci/docker/armv7-linux-androideabi/Dockerfile +0 -18
  475. data/ext/cargo-vendor/backtrace-0.3.68/ci/docker/armv7-unknown-linux-gnueabihf/Dockerfile +0 -10
  476. data/ext/cargo-vendor/backtrace-0.3.68/ci/docker/i586-unknown-linux-gnu/Dockerfile +0 -5
  477. data/ext/cargo-vendor/backtrace-0.3.68/ci/docker/i686-linux-android/Dockerfile +0 -18
  478. data/ext/cargo-vendor/backtrace-0.3.68/ci/docker/i686-unknown-linux-gnu/Dockerfile +0 -5
  479. data/ext/cargo-vendor/backtrace-0.3.68/ci/docker/powerpc64-unknown-linux-gnu/Dockerfile +0 -16
  480. data/ext/cargo-vendor/backtrace-0.3.68/ci/docker/s390x-unknown-linux-gnu/Dockerfile +0 -17
  481. data/ext/cargo-vendor/backtrace-0.3.68/ci/docker/x86_64-linux-android/Dockerfile +0 -18
  482. data/ext/cargo-vendor/backtrace-0.3.68/ci/docker/x86_64-pc-windows-gnu/Dockerfile +0 -10
  483. data/ext/cargo-vendor/backtrace-0.3.68/ci/docker/x86_64-unknown-linux-gnu/Dockerfile +0 -6
  484. data/ext/cargo-vendor/backtrace-0.3.68/ci/docker/x86_64-unknown-linux-musl/Dockerfile +0 -6
  485. data/ext/cargo-vendor/backtrace-0.3.68/ci/run-docker.sh +0 -33
  486. data/ext/cargo-vendor/backtrace-0.3.68/ci/run.sh +0 -6
  487. data/ext/cargo-vendor/backtrace-0.3.68/ci/runtest-android.rs +0 -50
  488. data/ext/cargo-vendor/backtrace-0.3.68/src/print/fuchsia.rs +0 -436
  489. data/ext/cargo-vendor/backtrace-0.3.68/src/print.rs +0 -319
  490. data/ext/cargo-vendor/backtrace-0.3.68/src/symbolize/gimli/parse_running_mmaps_unix.rs +0 -232
  491. data/ext/cargo-vendor/backtrace-0.3.68/src/symbolize/mod.rs +0 -485
  492. data/ext/cargo-vendor/backtrace-0.3.68/src/windows.rs +0 -693
  493. data/ext/cargo-vendor/cc-1.0.82/.cargo-checksum.json +0 -1
  494. data/ext/cargo-vendor/cc-1.0.82/Cargo.lock +0 -111
  495. data/ext/cargo-vendor/cc-1.0.82/Cargo.toml +0 -42
  496. data/ext/cargo-vendor/cc-1.0.82/src/lib.rs +0 -3983
  497. data/ext/cargo-vendor/cc-1.0.82/tests/test.rs +0 -461
  498. data/ext/cargo-vendor/cranelift-bforest-0.97.1/.cargo-checksum.json +0 -1
  499. data/ext/cargo-vendor/cranelift-bforest-0.97.1/Cargo.toml +0 -31
  500. data/ext/cargo-vendor/cranelift-codegen-0.97.1/.cargo-checksum.json +0 -1
  501. data/ext/cargo-vendor/cranelift-codegen-0.97.1/Cargo.toml +0 -158
  502. data/ext/cargo-vendor/cranelift-codegen-0.97.1/build.rs +0 -390
  503. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/ir/libcall.rs +0 -221
  504. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/aarch64/abi.rs +0 -1294
  505. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/aarch64/inst/emit.rs +0 -3684
  506. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/aarch64/inst/emit_tests.rs +0 -7895
  507. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/aarch64/inst/mod.rs +0 -2966
  508. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/aarch64/lower/isle.rs +0 -816
  509. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/aarch64/lower.isle +0 -2906
  510. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/aarch64/mod.rs +0 -238
  511. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/call_conv.rs +0 -136
  512. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/mod.rs +0 -424
  513. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/riscv64/abi.rs +0 -825
  514. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/riscv64/inst/emit.rs +0 -3008
  515. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/riscv64/inst/encode.rs +0 -262
  516. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/riscv64/inst/mod.rs +0 -1963
  517. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/riscv64/inst/vector.rs +0 -669
  518. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/riscv64/inst.isle +0 -2915
  519. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/riscv64/inst_vector.isle +0 -760
  520. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/riscv64/lower/isle.rs +0 -553
  521. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/riscv64/lower.isle +0 -1409
  522. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/riscv64/mod.rs +0 -216
  523. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/s390x/abi.rs +0 -957
  524. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/s390x/inst.isle +0 -5046
  525. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/s390x/lower/isle.rs +0 -1018
  526. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/s390x/lower.isle +0 -3991
  527. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/s390x/mod.rs +0 -213
  528. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/x64/abi.rs +0 -985
  529. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/x64/encoding/rex.rs +0 -588
  530. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/x64/inst/args.rs +0 -2193
  531. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/x64/inst/emit.rs +0 -4090
  532. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/x64/inst/emit_tests.rs +0 -5674
  533. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/x64/inst/mod.rs +0 -2667
  534. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/x64/inst.isle +0 -5104
  535. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/x64/lower/isle.rs +0 -1148
  536. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/x64/lower.isle +0 -4481
  537. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/x64/lower.rs +0 -328
  538. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/x64/mod.rs +0 -251
  539. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isle_prelude.rs +0 -862
  540. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/lib.rs +0 -140
  541. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/machinst/abi.rs +0 -2455
  542. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/machinst/buffer.rs +0 -2277
  543. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/machinst/isle.rs +0 -827
  544. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/machinst/mod.rs +0 -549
  545. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/machinst/reg.rs +0 -537
  546. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/machinst/vcode.rs +0 -1580
  547. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/opts/extends.isle +0 -34
  548. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/prelude.isle +0 -578
  549. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/prelude_lower.isle +0 -1012
  550. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/settings.rs +0 -600
  551. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/timing.rs +0 -271
  552. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/unionfind.rs +0 -74
  553. data/ext/cargo-vendor/cranelift-codegen-meta-0.97.1/.cargo-checksum.json +0 -1
  554. data/ext/cargo-vendor/cranelift-codegen-meta-0.97.1/Cargo.toml +0 -23
  555. data/ext/cargo-vendor/cranelift-codegen-meta-0.97.1/src/cdsl/settings.rs +0 -440
  556. data/ext/cargo-vendor/cranelift-codegen-meta-0.97.1/src/isa/x86.rs +0 -444
  557. data/ext/cargo-vendor/cranelift-codegen-meta-0.97.1/src/shared/instructions.rs +0 -3867
  558. data/ext/cargo-vendor/cranelift-codegen-meta-0.97.1/src/shared/settings.rs +0 -348
  559. data/ext/cargo-vendor/cranelift-codegen-shared-0.97.1/.cargo-checksum.json +0 -1
  560. data/ext/cargo-vendor/cranelift-codegen-shared-0.97.1/Cargo.toml +0 -22
  561. data/ext/cargo-vendor/cranelift-control-0.97.1/.cargo-checksum.json +0 -1
  562. data/ext/cargo-vendor/cranelift-control-0.97.1/Cargo.toml +0 -30
  563. data/ext/cargo-vendor/cranelift-entity-0.97.1/.cargo-checksum.json +0 -1
  564. data/ext/cargo-vendor/cranelift-entity-0.97.1/Cargo.toml +0 -35
  565. data/ext/cargo-vendor/cranelift-frontend-0.97.1/.cargo-checksum.json +0 -1
  566. data/ext/cargo-vendor/cranelift-frontend-0.97.1/Cargo.toml +0 -53
  567. data/ext/cargo-vendor/cranelift-isle-0.97.1/.cargo-checksum.json +0 -1
  568. data/ext/cargo-vendor/cranelift-isle-0.97.1/Cargo.toml +0 -37
  569. data/ext/cargo-vendor/cranelift-native-0.97.1/.cargo-checksum.json +0 -1
  570. data/ext/cargo-vendor/cranelift-native-0.97.1/Cargo.toml +0 -38
  571. data/ext/cargo-vendor/cranelift-native-0.97.1/src/lib.rs +0 -215
  572. data/ext/cargo-vendor/cranelift-wasm-0.97.1/.cargo-checksum.json +0 -1
  573. data/ext/cargo-vendor/cranelift-wasm-0.97.1/Cargo.toml +0 -85
  574. data/ext/cargo-vendor/cranelift-wasm-0.97.1/src/code_translator.rs +0 -3538
  575. data/ext/cargo-vendor/cranelift-wasm-0.97.1/src/environ/spec.rs +0 -834
  576. data/ext/cargo-vendor/log-0.4.19/.cargo-checksum.json +0 -1
  577. data/ext/cargo-vendor/log-0.4.19/CHANGELOG.md +0 -267
  578. data/ext/cargo-vendor/log-0.4.19/Cargo.toml +0 -117
  579. data/ext/cargo-vendor/log-0.4.19/README.md +0 -120
  580. data/ext/cargo-vendor/log-0.4.19/src/lib.rs +0 -1882
  581. data/ext/cargo-vendor/log-0.4.19/src/macros.rs +0 -280
  582. data/ext/cargo-vendor/object-0.31.1/.cargo-checksum.json +0 -1
  583. data/ext/cargo-vendor/object-0.31.1/CHANGELOG.md +0 -621
  584. data/ext/cargo-vendor/object-0.31.1/Cargo.toml +0 -161
  585. data/ext/cargo-vendor/object-0.31.1/README.md +0 -58
  586. data/ext/cargo-vendor/object-0.31.1/clippy.toml +0 -1
  587. data/ext/cargo-vendor/object-0.31.1/src/common.rs +0 -499
  588. data/ext/cargo-vendor/object-0.31.1/src/elf.rs +0 -6146
  589. data/ext/cargo-vendor/object-0.31.1/src/pe.rs +0 -3050
  590. data/ext/cargo-vendor/object-0.31.1/src/read/any.rs +0 -1323
  591. data/ext/cargo-vendor/object-0.31.1/src/read/coff/mod.rs +0 -18
  592. data/ext/cargo-vendor/object-0.31.1/src/read/elf/file.rs +0 -910
  593. data/ext/cargo-vendor/object-0.31.1/src/read/elf/note.rs +0 -263
  594. data/ext/cargo-vendor/object-0.31.1/src/read/elf/relocation.rs +0 -571
  595. data/ext/cargo-vendor/object-0.31.1/src/read/elf/symbol.rs +0 -577
  596. data/ext/cargo-vendor/object-0.31.1/src/read/mod.rs +0 -760
  597. data/ext/cargo-vendor/object-0.31.1/src/write/elf/object.rs +0 -891
  598. data/ext/cargo-vendor/object-0.31.1/src/write/macho.rs +0 -978
  599. data/ext/cargo-vendor/object-0.31.1/tests/round_trip/macho.rs +0 -24
  600. data/ext/cargo-vendor/object-0.31.1/tests/round_trip/mod.rs +0 -636
  601. data/ext/cargo-vendor/quote-1.0.32/.cargo-checksum.json +0 -1
  602. data/ext/cargo-vendor/quote-1.0.32/Cargo.toml +0 -50
  603. data/ext/cargo-vendor/quote-1.0.32/src/lib.rs +0 -1444
  604. data/ext/cargo-vendor/quote-1.0.32/src/runtime.rs +0 -496
  605. data/ext/cargo-vendor/serde-1.0.183/.cargo-checksum.json +0 -1
  606. data/ext/cargo-vendor/serde-1.0.183/Cargo.toml +0 -66
  607. data/ext/cargo-vendor/serde-1.0.183/src/lib.rs +0 -327
  608. data/ext/cargo-vendor/serde-1.0.183/src/private/ser.rs +0 -1372
  609. data/ext/cargo-vendor/serde_derive-1.0.183/.cargo-checksum.json +0 -1
  610. data/ext/cargo-vendor/serde_derive-1.0.183/Cargo.toml +0 -62
  611. data/ext/cargo-vendor/serde_derive-1.0.183/serde_derive-x86_64-unknown-linux-gnu +0 -0
  612. data/ext/cargo-vendor/serde_derive-1.0.183/src/buffer.rs +0 -69
  613. data/ext/cargo-vendor/serde_derive-1.0.183/src/bytecode.rs +0 -17
  614. data/ext/cargo-vendor/serde_derive-1.0.183/src/de.rs +0 -3143
  615. data/ext/cargo-vendor/serde_derive-1.0.183/src/internals/attr.rs +0 -1869
  616. data/ext/cargo-vendor/serde_derive-1.0.183/src/internals/symbol.rs +0 -70
  617. data/ext/cargo-vendor/serde_derive-1.0.183/src/lib.rs +0 -22
  618. data/ext/cargo-vendor/serde_derive-1.0.183/src/lib_from_source.rs +0 -35
  619. data/ext/cargo-vendor/serde_derive-1.0.183/src/lib_precompiled.rs +0 -234
  620. data/ext/cargo-vendor/serde_derive-1.0.183/src/ser.rs +0 -1353
  621. data/ext/cargo-vendor/serde_json-1.0.104/.cargo-checksum.json +0 -1
  622. data/ext/cargo-vendor/serde_json-1.0.104/Cargo.toml +0 -109
  623. data/ext/cargo-vendor/serde_json-1.0.104/src/de.rs +0 -2643
  624. data/ext/cargo-vendor/serde_json-1.0.104/src/lib.rs +0 -418
  625. data/ext/cargo-vendor/serde_json-1.0.104/src/ser.rs +0 -2234
  626. data/ext/cargo-vendor/serde_json-1.0.104/src/value/de.rs +0 -1403
  627. data/ext/cargo-vendor/serde_json-1.0.104/src/value/ser.rs +0 -1053
  628. data/ext/cargo-vendor/serde_json-1.0.104/tests/test.rs +0 -2502
  629. data/ext/cargo-vendor/syn-2.0.28/.cargo-checksum.json +0 -1
  630. data/ext/cargo-vendor/syn-2.0.28/Cargo.toml +0 -150
  631. data/ext/cargo-vendor/syn-2.0.28/src/custom_keyword.rs +0 -259
  632. data/ext/cargo-vendor/syn-2.0.28/src/custom_punctuation.rs +0 -302
  633. data/ext/cargo-vendor/syn-2.0.28/src/export.rs +0 -47
  634. data/ext/cargo-vendor/syn-2.0.28/src/group.rs +0 -283
  635. data/ext/cargo-vendor/syn-2.0.28/src/lib.rs +0 -970
  636. data/ext/cargo-vendor/syn-2.0.28/src/parse_quote.rs +0 -178
  637. data/ext/cargo-vendor/syn-2.0.28/src/span.rs +0 -62
  638. data/ext/cargo-vendor/syn-2.0.28/src/token.rs +0 -1068
  639. data/ext/cargo-vendor/syn-2.0.28/tests/common/eq.rs +0 -866
  640. data/ext/cargo-vendor/thiserror-1.0.44/.cargo-checksum.json +0 -1
  641. data/ext/cargo-vendor/thiserror-1.0.44/Cargo.toml +0 -48
  642. data/ext/cargo-vendor/thiserror-1.0.44/build.rs +0 -66
  643. data/ext/cargo-vendor/thiserror-1.0.44/src/aserror.rs +0 -48
  644. data/ext/cargo-vendor/thiserror-1.0.44/src/display.rs +0 -28
  645. data/ext/cargo-vendor/thiserror-1.0.44/src/lib.rs +0 -255
  646. data/ext/cargo-vendor/thiserror-1.0.44/src/provide.rs +0 -15
  647. data/ext/cargo-vendor/thiserror-1.0.44/tests/test_backtrace.rs +0 -297
  648. data/ext/cargo-vendor/thiserror-1.0.44/tests/test_option.rs +0 -108
  649. data/ext/cargo-vendor/thiserror-impl-1.0.44/.cargo-checksum.json +0 -1
  650. data/ext/cargo-vendor/thiserror-impl-1.0.44/Cargo.toml +0 -36
  651. data/ext/cargo-vendor/thiserror-impl-1.0.44/src/expand.rs +0 -545
  652. data/ext/cargo-vendor/tokio-1.30.0/.cargo-checksum.json +0 -1
  653. data/ext/cargo-vendor/tokio-1.30.0/CHANGELOG.md +0 -2952
  654. data/ext/cargo-vendor/tokio-1.30.0/Cargo.toml +0 -227
  655. data/ext/cargo-vendor/tokio-1.30.0/README.md +0 -244
  656. data/ext/cargo-vendor/tokio-1.30.0/src/io/async_fd.rs +0 -1252
  657. data/ext/cargo-vendor/tokio-1.30.0/src/io/interest.rs +0 -158
  658. data/ext/cargo-vendor/tokio-1.30.0/src/io/ready.rs +0 -293
  659. data/ext/cargo-vendor/tokio-1.30.0/src/io/split.rs +0 -184
  660. data/ext/cargo-vendor/tokio-1.30.0/src/io/util/async_read_ext.rs +0 -1295
  661. data/ext/cargo-vendor/tokio-1.30.0/src/process/mod.rs +0 -1680
  662. data/ext/cargo-vendor/tokio-1.30.0/src/runtime/builder.rs +0 -1323
  663. data/ext/cargo-vendor/tokio-1.30.0/src/runtime/io/scheduled_io.rs +0 -513
  664. data/ext/cargo-vendor/tokio-1.30.0/src/runtime/metrics/batch.rs +0 -162
  665. data/ext/cargo-vendor/tokio-1.30.0/src/runtime/metrics/mock.rs +0 -55
  666. data/ext/cargo-vendor/tokio-1.30.0/src/runtime/metrics/runtime.rs +0 -883
  667. data/ext/cargo-vendor/tokio-1.30.0/src/runtime/metrics/worker.rs +0 -80
  668. data/ext/cargo-vendor/tokio-1.30.0/src/runtime/scheduler/current_thread/mod.rs +0 -764
  669. data/ext/cargo-vendor/tokio-1.30.0/src/runtime/scheduler/multi_thread/stats.rs +0 -140
  670. data/ext/cargo-vendor/tokio-1.30.0/src/runtime/scheduler/multi_thread_alt/handle.rs +0 -75
  671. data/ext/cargo-vendor/tokio-1.30.0/src/runtime/scheduler/multi_thread_alt/idle.rs +0 -425
  672. data/ext/cargo-vendor/tokio-1.30.0/src/runtime/scheduler/multi_thread_alt/stats.rs +0 -171
  673. data/ext/cargo-vendor/tokio-1.30.0/src/runtime/scheduler/multi_thread_alt/worker.rs +0 -1567
  674. data/ext/cargo-vendor/tokio-1.30.0/src/sync/broadcast.rs +0 -1440
  675. data/ext/cargo-vendor/tokio-1.30.0/tests/io_async_fd.rs +0 -687
  676. data/ext/cargo-vendor/tokio-1.30.0/tests/io_split.rs +0 -79
  677. data/ext/cargo-vendor/tokio-1.30.0/tests/rt_metrics.rs +0 -718
  678. data/ext/cargo-vendor/unicase-2.6.0/.cargo-checksum.json +0 -1
  679. data/ext/cargo-vendor/unicase-2.6.0/Cargo.toml +0 -30
  680. data/ext/cargo-vendor/unicase-2.6.0/README.md +0 -31
  681. data/ext/cargo-vendor/unicase-2.6.0/src/ascii.rs +0 -187
  682. data/ext/cargo-vendor/unicase-2.6.0/src/lib.rs +0 -465
  683. data/ext/cargo-vendor/unicase-2.6.0/src/unicode/map.rs +0 -1995
  684. data/ext/cargo-vendor/unicase-2.6.0/src/unicode/mod.rs +0 -201
  685. data/ext/cargo-vendor/wasi-cap-std-sync-10.0.1/.cargo-checksum.json +0 -1
  686. data/ext/cargo-vendor/wasi-cap-std-sync-10.0.1/Cargo.toml +0 -90
  687. data/ext/cargo-vendor/wasi-common-10.0.1/.cargo-checksum.json +0 -1
  688. data/ext/cargo-vendor/wasi-common-10.0.1/Cargo.toml +0 -87
  689. data/ext/cargo-vendor/wasmtime-10.0.1/.cargo-checksum.json +0 -1
  690. data/ext/cargo-vendor/wasmtime-10.0.1/Cargo.toml +0 -183
  691. data/ext/cargo-vendor/wasmtime-10.0.1/src/component/component.rs +0 -382
  692. data/ext/cargo-vendor/wasmtime-10.0.1/src/component/func/host.rs +0 -423
  693. data/ext/cargo-vendor/wasmtime-10.0.1/src/component/func/options.rs +0 -237
  694. data/ext/cargo-vendor/wasmtime-10.0.1/src/component/func/typed.rs +0 -2059
  695. data/ext/cargo-vendor/wasmtime-10.0.1/src/component/func.rs +0 -684
  696. data/ext/cargo-vendor/wasmtime-10.0.1/src/component/instance.rs +0 -727
  697. data/ext/cargo-vendor/wasmtime-10.0.1/src/component/mod.rs +0 -313
  698. data/ext/cargo-vendor/wasmtime-10.0.1/src/component/storage.rs +0 -43
  699. data/ext/cargo-vendor/wasmtime-10.0.1/src/component/types.rs +0 -545
  700. data/ext/cargo-vendor/wasmtime-10.0.1/src/component/values.rs +0 -1219
  701. data/ext/cargo-vendor/wasmtime-10.0.1/src/config.rs +0 -2066
  702. data/ext/cargo-vendor/wasmtime-10.0.1/src/engine.rs +0 -757
  703. data/ext/cargo-vendor/wasmtime-asm-macros-10.0.1/.cargo-checksum.json +0 -1
  704. data/ext/cargo-vendor/wasmtime-asm-macros-10.0.1/Cargo.toml +0 -22
  705. data/ext/cargo-vendor/wasmtime-cache-10.0.1/.cargo-checksum.json +0 -1
  706. data/ext/cargo-vendor/wasmtime-cache-10.0.1/Cargo.toml +0 -73
  707. data/ext/cargo-vendor/wasmtime-component-macro-10.0.1/.cargo-checksum.json +0 -1
  708. data/ext/cargo-vendor/wasmtime-component-macro-10.0.1/Cargo.toml +0 -58
  709. data/ext/cargo-vendor/wasmtime-component-macro-10.0.1/src/bindgen.rs +0 -316
  710. data/ext/cargo-vendor/wasmtime-component-macro-10.0.1/src/component.rs +0 -1199
  711. data/ext/cargo-vendor/wasmtime-component-macro-10.0.1/tests/codegen.rs +0 -24
  712. data/ext/cargo-vendor/wasmtime-component-util-10.0.1/.cargo-checksum.json +0 -1
  713. data/ext/cargo-vendor/wasmtime-component-util-10.0.1/Cargo.toml +0 -25
  714. data/ext/cargo-vendor/wasmtime-cranelift-10.0.1/.cargo-checksum.json +0 -1
  715. data/ext/cargo-vendor/wasmtime-cranelift-10.0.1/Cargo.toml +0 -90
  716. data/ext/cargo-vendor/wasmtime-cranelift-10.0.1/src/compiler/component.rs +0 -578
  717. data/ext/cargo-vendor/wasmtime-cranelift-10.0.1/src/compiler.rs +0 -1200
  718. data/ext/cargo-vendor/wasmtime-cranelift-10.0.1/src/func_environ.rs +0 -2206
  719. data/ext/cargo-vendor/wasmtime-cranelift-10.0.1/src/lib.rs +0 -178
  720. data/ext/cargo-vendor/wasmtime-cranelift-shared-10.0.1/.cargo-checksum.json +0 -1
  721. data/ext/cargo-vendor/wasmtime-cranelift-shared-10.0.1/Cargo.toml +0 -57
  722. data/ext/cargo-vendor/wasmtime-cranelift-shared-10.0.1/src/obj.rs +0 -564
  723. data/ext/cargo-vendor/wasmtime-environ-10.0.1/.cargo-checksum.json +0 -1
  724. data/ext/cargo-vendor/wasmtime-environ-10.0.1/Cargo.lock +0 -681
  725. data/ext/cargo-vendor/wasmtime-environ-10.0.1/Cargo.toml +0 -116
  726. data/ext/cargo-vendor/wasmtime-environ-10.0.1/examples/factc.rs +0 -212
  727. data/ext/cargo-vendor/wasmtime-environ-10.0.1/src/component/info.rs +0 -514
  728. data/ext/cargo-vendor/wasmtime-environ-10.0.1/src/component/translate/inline.rs +0 -1067
  729. data/ext/cargo-vendor/wasmtime-environ-10.0.1/src/component/translate.rs +0 -1070
  730. data/ext/cargo-vendor/wasmtime-environ-10.0.1/src/component/types.rs +0 -1916
  731. data/ext/cargo-vendor/wasmtime-environ-10.0.1/src/fact/signature.rs +0 -118
  732. data/ext/cargo-vendor/wasmtime-environ-10.0.1/src/fact/trampoline.rs +0 -3157
  733. data/ext/cargo-vendor/wasmtime-environ-10.0.1/src/obj.rs +0 -171
  734. data/ext/cargo-vendor/wasmtime-fiber-10.0.1/.cargo-checksum.json +0 -1
  735. data/ext/cargo-vendor/wasmtime-fiber-10.0.1/Cargo.toml +0 -46
  736. data/ext/cargo-vendor/wasmtime-jit-10.0.1/.cargo-checksum.json +0 -1
  737. data/ext/cargo-vendor/wasmtime-jit-10.0.1/Cargo.toml +0 -104
  738. data/ext/cargo-vendor/wasmtime-jit-10.0.1/src/code_memory.rs +0 -309
  739. data/ext/cargo-vendor/wasmtime-jit-debug-10.0.1/.cargo-checksum.json +0 -1
  740. data/ext/cargo-vendor/wasmtime-jit-debug-10.0.1/Cargo.toml +0 -55
  741. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-10.0.1/.cargo-checksum.json +0 -1
  742. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-10.0.1/Cargo.toml +0 -37
  743. data/ext/cargo-vendor/wasmtime-runtime-10.0.1/.cargo-checksum.json +0 -1
  744. data/ext/cargo-vendor/wasmtime-runtime-10.0.1/Cargo.toml +0 -110
  745. data/ext/cargo-vendor/wasmtime-runtime-10.0.1/src/component.rs +0 -701
  746. data/ext/cargo-vendor/wasmtime-runtime-10.0.1/src/libcalls.rs +0 -578
  747. data/ext/cargo-vendor/wasmtime-types-10.0.1/.cargo-checksum.json +0 -1
  748. data/ext/cargo-vendor/wasmtime-types-10.0.1/Cargo.toml +0 -34
  749. data/ext/cargo-vendor/wasmtime-wasi-10.0.1/.cargo-checksum.json +0 -1
  750. data/ext/cargo-vendor/wasmtime-wasi-10.0.1/Cargo.toml +0 -153
  751. data/ext/cargo-vendor/wasmtime-wasi-10.0.1/src/preview2/clocks/host.rs +0 -73
  752. data/ext/cargo-vendor/wasmtime-wasi-10.0.1/src/preview2/clocks.rs +0 -17
  753. data/ext/cargo-vendor/wasmtime-wasi-10.0.1/src/preview2/ctx.rs +0 -206
  754. data/ext/cargo-vendor/wasmtime-wasi-10.0.1/src/preview2/mod.rs +0 -44
  755. data/ext/cargo-vendor/wasmtime-wasi-10.0.1/src/preview2/pipe.rs +0 -233
  756. data/ext/cargo-vendor/wasmtime-wasi-10.0.1/src/preview2/preview2/clocks.rs +0 -80
  757. data/ext/cargo-vendor/wasmtime-wasi-10.0.1/src/preview2/preview2/poll.rs +0 -84
  758. data/ext/cargo-vendor/wasmtime-wasi-10.0.1/src/preview2/sched/subscription.rs +0 -104
  759. data/ext/cargo-vendor/wasmtime-wasi-10.0.1/src/preview2/sched/sync.rs +0 -156
  760. data/ext/cargo-vendor/wasmtime-wasi-10.0.1/src/preview2/sched.rs +0 -105
  761. data/ext/cargo-vendor/wasmtime-wasi-10.0.1/wit/deps/poll/poll.wit +0 -41
  762. data/ext/cargo-vendor/wasmtime-winch-10.0.1/.cargo-checksum.json +0 -1
  763. data/ext/cargo-vendor/wasmtime-winch-10.0.1/Cargo.toml +0 -63
  764. data/ext/cargo-vendor/wasmtime-wit-bindgen-10.0.1/.cargo-checksum.json +0 -1
  765. data/ext/cargo-vendor/wasmtime-wit-bindgen-10.0.1/Cargo.toml +0 -29
  766. data/ext/cargo-vendor/wasmtime-wit-bindgen-10.0.1/src/lib.rs +0 -1631
  767. data/ext/cargo-vendor/wasmtime-wit-bindgen-10.0.1/src/rust.rs +0 -473
  768. data/ext/cargo-vendor/wasmtime-wit-bindgen-10.0.1/src/types.rs +0 -179
  769. data/ext/cargo-vendor/wast-62.0.1/.cargo-checksum.json +0 -1
  770. data/ext/cargo-vendor/wast-62.0.1/Cargo.toml +0 -50
  771. data/ext/cargo-vendor/wast-62.0.1/src/core/binary.rs +0 -1213
  772. data/ext/cargo-vendor/wast-62.0.1/src/core/custom.rs +0 -236
  773. data/ext/cargo-vendor/wast-62.0.1/src/core/func.rs +0 -121
  774. data/ext/cargo-vendor/wast-62.0.1/src/core/module.rs +0 -213
  775. data/ext/cargo-vendor/wast-62.0.1/src/encode.rs +0 -81
  776. data/ext/cargo-vendor/wast-62.0.1/src/lib.rs +0 -532
  777. data/ext/cargo-vendor/wat-1.0.69/.cargo-checksum.json +0 -1
  778. data/ext/cargo-vendor/wat-1.0.69/Cargo.toml +0 -27
  779. data/ext/cargo-vendor/wiggle-10.0.1/.cargo-checksum.json +0 -1
  780. data/ext/cargo-vendor/wiggle-10.0.1/Cargo.toml +0 -106
  781. data/ext/cargo-vendor/wiggle-generate-10.0.1/.cargo-checksum.json +0 -1
  782. data/ext/cargo-vendor/wiggle-generate-10.0.1/Cargo.toml +0 -58
  783. data/ext/cargo-vendor/wiggle-macro-10.0.1/.cargo-checksum.json +0 -1
  784. data/ext/cargo-vendor/wiggle-macro-10.0.1/Cargo.toml +0 -55
  785. data/ext/cargo-vendor/winch-codegen-0.8.1/.cargo-checksum.json +0 -1
  786. data/ext/cargo-vendor/winch-codegen-0.8.1/Cargo.toml +0 -62
  787. data/ext/cargo-vendor/winch-codegen-0.8.1/src/abi/mod.rs +0 -237
  788. data/ext/cargo-vendor/winch-codegen-0.8.1/src/codegen/call.rs +0 -225
  789. data/ext/cargo-vendor/winch-codegen-0.8.1/src/codegen/context.rs +0 -270
  790. data/ext/cargo-vendor/winch-codegen-0.8.1/src/codegen/env.rs +0 -52
  791. data/ext/cargo-vendor/winch-codegen-0.8.1/src/codegen/mod.rs +0 -214
  792. data/ext/cargo-vendor/winch-codegen-0.8.1/src/isa/aarch64/abi.rs +0 -243
  793. data/ext/cargo-vendor/winch-codegen-0.8.1/src/isa/aarch64/asm.rs +0 -300
  794. data/ext/cargo-vendor/winch-codegen-0.8.1/src/isa/aarch64/masm.rs +0 -230
  795. data/ext/cargo-vendor/winch-codegen-0.8.1/src/isa/mod.rs +0 -215
  796. data/ext/cargo-vendor/winch-codegen-0.8.1/src/isa/x64/abi.rs +0 -369
  797. data/ext/cargo-vendor/winch-codegen-0.8.1/src/isa/x64/asm.rs +0 -576
  798. data/ext/cargo-vendor/winch-codegen-0.8.1/src/isa/x64/masm.rs +0 -288
  799. data/ext/cargo-vendor/winch-codegen-0.8.1/src/isa/x64/regs.rs +0 -192
  800. data/ext/cargo-vendor/winch-codegen-0.8.1/src/masm.rs +0 -255
  801. data/ext/cargo-vendor/winch-codegen-0.8.1/src/stack.rs +0 -235
  802. data/ext/cargo-vendor/winch-codegen-0.8.1/src/trampoline.rs +0 -494
  803. data/ext/cargo-vendor/winch-codegen-0.8.1/src/visitor.rs +0 -353
  804. data/ext/cargo-vendor/windows-targets-0.48.1/.cargo-checksum.json +0 -1
  805. data/ext/cargo-vendor/windows-targets-0.48.1/Cargo.toml +0 -41
  806. data/ext/cargo-vendor/windows-targets-0.48.1/readme.md +0 -88
  807. data/ext/cargo-vendor/windows-targets-0.48.1/src/lib.rs +0 -55
  808. data/ext/cargo-vendor/windows_aarch64_gnullvm-0.48.0/.cargo-checksum.json +0 -1
  809. data/ext/cargo-vendor/windows_aarch64_gnullvm-0.48.0/Cargo.toml +0 -23
  810. data/ext/cargo-vendor/windows_aarch64_gnullvm-0.48.0/lib/libwindows.0.48.0.a +0 -0
  811. data/ext/cargo-vendor/windows_aarch64_msvc-0.48.0/.cargo-checksum.json +0 -1
  812. data/ext/cargo-vendor/windows_aarch64_msvc-0.48.0/Cargo.toml +0 -23
  813. data/ext/cargo-vendor/windows_aarch64_msvc-0.48.0/lib/windows.0.48.0.lib +0 -0
  814. data/ext/cargo-vendor/windows_i686_gnu-0.48.0/.cargo-checksum.json +0 -1
  815. data/ext/cargo-vendor/windows_i686_gnu-0.48.0/Cargo.toml +0 -23
  816. data/ext/cargo-vendor/windows_i686_gnu-0.48.0/lib/libwindows.0.48.0.a +0 -0
  817. data/ext/cargo-vendor/windows_i686_msvc-0.48.0/.cargo-checksum.json +0 -1
  818. data/ext/cargo-vendor/windows_i686_msvc-0.48.0/Cargo.toml +0 -23
  819. data/ext/cargo-vendor/windows_i686_msvc-0.48.0/lib/windows.0.48.0.lib +0 -0
  820. data/ext/cargo-vendor/windows_x86_64_gnu-0.48.0/.cargo-checksum.json +0 -1
  821. data/ext/cargo-vendor/windows_x86_64_gnu-0.48.0/Cargo.toml +0 -23
  822. data/ext/cargo-vendor/windows_x86_64_gnu-0.48.0/lib/libwindows.0.48.0.a +0 -0
  823. data/ext/cargo-vendor/windows_x86_64_gnullvm-0.48.0/.cargo-checksum.json +0 -1
  824. data/ext/cargo-vendor/windows_x86_64_gnullvm-0.48.0/Cargo.toml +0 -23
  825. data/ext/cargo-vendor/windows_x86_64_gnullvm-0.48.0/lib/libwindows.0.48.0.a +0 -0
  826. data/ext/cargo-vendor/windows_x86_64_msvc-0.48.0/.cargo-checksum.json +0 -1
  827. data/ext/cargo-vendor/windows_x86_64_msvc-0.48.0/Cargo.toml +0 -23
  828. data/ext/cargo-vendor/windows_x86_64_msvc-0.48.0/lib/windows.0.48.0.lib +0 -0
  829. /data/ext/cargo-vendor/{addr2line-0.20.0 → addr2line-0.21.0}/LICENSE-APACHE +0 -0
  830. /data/ext/cargo-vendor/{addr2line-0.20.0 → addr2line-0.21.0}/LICENSE-MIT +0 -0
  831. /data/ext/cargo-vendor/{addr2line-0.20.0 → addr2line-0.21.0}/README.md +0 -0
  832. /data/ext/cargo-vendor/{addr2line-0.20.0 → addr2line-0.21.0}/bench.plot.r +0 -0
  833. /data/ext/cargo-vendor/{addr2line-0.20.0 → addr2line-0.21.0}/benchmark.sh +0 -0
  834. /data/ext/cargo-vendor/{addr2line-0.20.0 → addr2line-0.21.0}/coverage.sh +0 -0
  835. /data/ext/cargo-vendor/{addr2line-0.20.0 → addr2line-0.21.0}/rustfmt.toml +0 -0
  836. /data/ext/cargo-vendor/{addr2line-0.20.0 → addr2line-0.21.0}/src/builtin_split_dwarf_loader.rs +0 -0
  837. /data/ext/cargo-vendor/{addr2line-0.20.0 → addr2line-0.21.0}/src/function.rs +0 -0
  838. /data/ext/cargo-vendor/{addr2line-0.20.0 → addr2line-0.21.0}/src/lazy.rs +0 -0
  839. /data/ext/cargo-vendor/{addr2line-0.20.0 → addr2line-0.21.0}/tests/correctness.rs +0 -0
  840. /data/ext/cargo-vendor/{addr2line-0.20.0 → addr2line-0.21.0}/tests/output_equivalence.rs +0 -0
  841. /data/ext/cargo-vendor/{addr2line-0.20.0 → addr2line-0.21.0}/tests/parse.rs +0 -0
  842. /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/COPYING +0 -0
  843. /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/DESIGN.md +0 -0
  844. /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/LICENSE-MIT +0 -0
  845. /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/README.md +0 -0
  846. /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/UNLICENSE +0 -0
  847. /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/rustfmt.toml +0 -0
  848. /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/automaton.rs +0 -0
  849. /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/macros.rs +0 -0
  850. /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/nfa/mod.rs +0 -0
  851. /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/packed/api.rs +0 -0
  852. /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/packed/mod.rs +0 -0
  853. /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/packed/pattern.rs +0 -0
  854. /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/packed/rabinkarp.rs +0 -0
  855. /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/packed/teddy/README.md +0 -0
  856. /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/packed/teddy/compile.rs +0 -0
  857. /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/packed/teddy/mod.rs +0 -0
  858. /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/packed/teddy/runtime.rs +0 -0
  859. /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/packed/tests.rs +0 -0
  860. /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/packed/vector.rs +0 -0
  861. /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/tests.rs +0 -0
  862. /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/transducer.rs +0 -0
  863. /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/util/alphabet.rs +0 -0
  864. /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/util/buffer.rs +0 -0
  865. /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/util/byte_frequencies.rs +0 -0
  866. /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/util/debug.rs +0 -0
  867. /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/util/error.rs +0 -0
  868. /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/util/int.rs +0 -0
  869. /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/util/mod.rs +0 -0
  870. /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/util/prefilter.rs +0 -0
  871. /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/util/primitives.rs +0 -0
  872. /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/util/remapper.rs +0 -0
  873. /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/util/search.rs +0 -0
  874. /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/util/special.rs +0 -0
  875. /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/LICENSE-APACHE +0 -0
  876. /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/LICENSE-MIT +0 -0
  877. /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/README.md +0 -0
  878. /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/rust-toolchain.toml +0 -0
  879. /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/src/chain.rs +0 -0
  880. /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/src/ensure.rs +0 -0
  881. /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/src/fmt.rs +0 -0
  882. /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/src/macros.rs +0 -0
  883. /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/src/ptr.rs +0 -0
  884. /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/common/mod.rs +0 -0
  885. /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/compiletest.rs +0 -0
  886. /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/drop/mod.rs +0 -0
  887. /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/test_autotrait.rs +0 -0
  888. /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/test_backtrace.rs +0 -0
  889. /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/test_boxed.rs +0 -0
  890. /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/test_chain.rs +0 -0
  891. /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/test_context.rs +0 -0
  892. /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/test_convert.rs +0 -0
  893. /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/test_downcast.rs +0 -0
  894. /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/test_ffi.rs +0 -0
  895. /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/test_fmt.rs +0 -0
  896. /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/test_macros.rs +0 -0
  897. /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/test_repr.rs +0 -0
  898. /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/test_source.rs +0 -0
  899. /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/ui/chained-comparison.rs +0 -0
  900. /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/ui/chained-comparison.stderr +0 -0
  901. /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/ui/empty-ensure.rs +0 -0
  902. /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/ui/empty-ensure.stderr +0 -0
  903. /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/ui/must-use.rs +0 -0
  904. /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/ui/must-use.stderr +0 -0
  905. /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/ui/no-impl.rs +0 -0
  906. /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/ui/no-impl.stderr +0 -0
  907. /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/ui/temporary-value.rs +0 -0
  908. /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/ui/temporary-value.stderr +0 -0
  909. /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/ui/wrong-interpolation.rs +0 -0
  910. /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/ui/wrong-interpolation.stderr +0 -0
  911. /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/LICENSE-APACHE +0 -0
  912. /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/LICENSE-MIT +0 -0
  913. /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/README.md +0 -0
  914. /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/build.rs +0 -0
  915. /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/src/args.rs +0 -0
  916. /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/src/bound.rs +0 -0
  917. /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/src/lifetime.rs +0 -0
  918. /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/src/parse.rs +0 -0
  919. /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/src/receiver.rs +0 -0
  920. /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/src/verbatim.rs +0 -0
  921. /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/compiletest.rs +0 -0
  922. /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/executor/mod.rs +0 -0
  923. /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/arg-implementation-detail.rs +0 -0
  924. /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/arg-implementation-detail.stderr +0 -0
  925. /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/bare-trait-object.rs +0 -0
  926. /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/bare-trait-object.stderr +0 -0
  927. /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/consider-restricting.rs +0 -0
  928. /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/delimiter-span.rs +0 -0
  929. /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/delimiter-span.stderr +0 -0
  930. /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/lifetime-defined-here.rs +0 -0
  931. /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/lifetime-defined-here.stderr +0 -0
  932. /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/lifetime-span.rs +0 -0
  933. /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/lifetime-span.stderr +0 -0
  934. /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/missing-async-in-impl.rs +0 -0
  935. /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/missing-async-in-impl.stderr +0 -0
  936. /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/missing-async-in-trait.rs +0 -0
  937. /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/missing-async-in-trait.stderr +0 -0
  938. /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/missing-body.rs +0 -0
  939. /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/missing-body.stderr +0 -0
  940. /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/must-use.rs +0 -0
  941. /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/must-use.stderr +0 -0
  942. /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/self-span.rs +0 -0
  943. /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/self-span.stderr +0 -0
  944. /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/send-not-implemented.rs +0 -0
  945. /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/unreachable.rs +0 -0
  946. /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/unreachable.stderr +0 -0
  947. /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/unsupported-self.rs +0 -0
  948. /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/unsupported-self.stderr +0 -0
  949. /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/LICENSE-APACHE +0 -0
  950. /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/LICENSE-MIT +0 -0
  951. /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/README.md +0 -0
  952. /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/benches/benchmarks.rs +0 -0
  953. /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/examples/backtrace.rs +0 -0
  954. /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/examples/raw.rs +0 -0
  955. /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/android-api.c +0 -0
  956. /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/backtrace/dbghelp.rs +0 -0
  957. /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/backtrace/libunwind.rs +0 -0
  958. /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/backtrace/miri.rs +0 -0
  959. /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/backtrace/mod.rs +0 -0
  960. /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/backtrace/noop.rs +0 -0
  961. /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/capture.rs +0 -0
  962. /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/dbghelp.rs +0 -0
  963. /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/lib.rs +0 -0
  964. /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/dbghelp.rs +0 -0
  965. /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/gimli/coff.rs +0 -0
  966. /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/gimli/elf.rs +0 -0
  967. /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/gimli/libs_dl_iterate_phdr.rs +0 -0
  968. /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/gimli/libs_haiku.rs +0 -0
  969. /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/gimli/libs_illumos.rs +0 -0
  970. /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/gimli/libs_libnx.rs +0 -0
  971. /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/gimli/libs_macos.rs +0 -0
  972. /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/gimli/libs_windows.rs +0 -0
  973. /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/gimli/macho.rs +0 -0
  974. /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/gimli/mmap_fake.rs +0 -0
  975. /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/gimli/mmap_unix.rs +0 -0
  976. /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/gimli/mmap_windows.rs +0 -0
  977. /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/gimli/stash.rs +0 -0
  978. /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/gimli.rs +0 -0
  979. /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/miri.rs +0 -0
  980. /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/noop.rs +0 -0
  981. /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/types.rs +0 -0
  982. /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/tests/accuracy/auxiliary.rs +0 -0
  983. /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/tests/accuracy/main.rs +0 -0
  984. /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/tests/common/mod.rs +0 -0
  985. /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/tests/concurrent-panics.rs +0 -0
  986. /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/tests/current-exe-mismatch.rs +0 -0
  987. /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/tests/long_fn_name.rs +0 -0
  988. /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/tests/skip_inner_frames.rs +0 -0
  989. /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/tests/smoke.rs +0 -0
  990. /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/LICENSE-APACHE +0 -0
  991. /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/LICENSE-MIT +0 -0
  992. /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/README.md +0 -0
  993. /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/src/bin/gcc-shim.rs +0 -0
  994. /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/src/com.rs +0 -0
  995. /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/src/os_pipe/unix.rs +0 -0
  996. /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/src/os_pipe/windows.rs +0 -0
  997. /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/src/os_pipe.rs +0 -0
  998. /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/src/registry.rs +0 -0
  999. /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/src/setup_config.rs +0 -0
  1000. /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/src/vs_instances.rs +0 -0
  1001. /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/src/winapi.rs +0 -0
  1002. /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/src/windows_registry.rs +0 -0
  1003. /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/src/windows_sys.rs +0 -0
  1004. /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/tests/cc_env.rs +0 -0
  1005. /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/tests/cflags.rs +0 -0
  1006. /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/tests/cxxflags.rs +0 -0
  1007. /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/tests/support/mod.rs +0 -0
  1008. /data/ext/cargo-vendor/{cranelift-bforest-0.97.1 → cranelift-bforest-0.98.1}/LICENSE +0 -0
  1009. /data/ext/cargo-vendor/{cranelift-bforest-0.97.1 → cranelift-bforest-0.98.1}/README.md +0 -0
  1010. /data/ext/cargo-vendor/{cranelift-bforest-0.97.1 → cranelift-bforest-0.98.1}/src/lib.rs +0 -0
  1011. /data/ext/cargo-vendor/{cranelift-bforest-0.97.1 → cranelift-bforest-0.98.1}/src/map.rs +0 -0
  1012. /data/ext/cargo-vendor/{cranelift-bforest-0.97.1 → cranelift-bforest-0.98.1}/src/node.rs +0 -0
  1013. /data/ext/cargo-vendor/{cranelift-bforest-0.97.1 → cranelift-bforest-0.98.1}/src/path.rs +0 -0
  1014. /data/ext/cargo-vendor/{cranelift-bforest-0.97.1 → cranelift-bforest-0.98.1}/src/pool.rs +0 -0
  1015. /data/ext/cargo-vendor/{cranelift-bforest-0.97.1 → cranelift-bforest-0.98.1}/src/set.rs +0 -0
  1016. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/LICENSE +0 -0
  1017. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/README.md +0 -0
  1018. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/benches/x64-evex-encoding.rs +0 -0
  1019. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/alias_analysis.rs +0 -0
  1020. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/binemit/mod.rs +0 -0
  1021. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/binemit/stack_map.rs +0 -0
  1022. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/bitset.rs +0 -0
  1023. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/cfg_printer.rs +0 -0
  1024. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/constant_hash.rs +0 -0
  1025. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/context.rs +0 -0
  1026. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ctxhash.rs +0 -0
  1027. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/cursor.rs +0 -0
  1028. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/data_value.rs +0 -0
  1029. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/dbg.rs +0 -0
  1030. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/dce.rs +0 -0
  1031. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/dominator_tree.rs +0 -0
  1032. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/egraph/cost.rs +0 -0
  1033. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/egraph/domtree.rs +0 -0
  1034. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/egraph/elaborate.rs +0 -0
  1035. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/egraph.rs +0 -0
  1036. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/flowgraph.rs +0 -0
  1037. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/fx.rs +0 -0
  1038. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/incremental_cache.rs +0 -0
  1039. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/inst_predicates.rs +0 -0
  1040. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/atomic_rmw_op.rs +0 -0
  1041. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/builder.rs +0 -0
  1042. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/condcodes.rs +0 -0
  1043. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/constant.rs +0 -0
  1044. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/dfg.rs +0 -0
  1045. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/dynamic_type.rs +0 -0
  1046. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/entities.rs +0 -0
  1047. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/extfunc.rs +0 -0
  1048. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/extname.rs +0 -0
  1049. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/function.rs +0 -0
  1050. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/globalvalue.rs +0 -0
  1051. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/immediates.rs +0 -0
  1052. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/instructions.rs +0 -0
  1053. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/jumptable.rs +0 -0
  1054. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/known_symbol.rs +0 -0
  1055. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/layout.rs +0 -0
  1056. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/memflags.rs +0 -0
  1057. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/mod.rs +0 -0
  1058. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/progpoint.rs +0 -0
  1059. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/sourceloc.rs +0 -0
  1060. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/stackslot.rs +0 -0
  1061. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/table.rs +0 -0
  1062. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/trapcode.rs +0 -0
  1063. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/types.rs +0 -0
  1064. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/aarch64/inst/args.rs +0 -0
  1065. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/aarch64/inst/imms.rs +0 -0
  1066. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/aarch64/inst/regs.rs +0 -0
  1067. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/aarch64/inst/unwind/systemv.rs +0 -0
  1068. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/aarch64/inst/unwind.rs +0 -0
  1069. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/aarch64/inst.isle +0 -0
  1070. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/aarch64/inst_neon.isle +0 -0
  1071. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/aarch64/lower/isle/generated_code.rs +0 -0
  1072. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/aarch64/lower.rs +0 -0
  1073. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/aarch64/lower_dynamic_neon.isle +0 -0
  1074. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/aarch64/settings.rs +0 -0
  1075. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/riscv64/inst/args.rs +0 -0
  1076. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/riscv64/inst/emit_tests.rs +0 -0
  1077. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/riscv64/inst/imms.rs +0 -0
  1078. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/riscv64/inst/regs.rs +0 -0
  1079. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/riscv64/inst/unwind/systemv.rs +0 -0
  1080. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/riscv64/inst/unwind.rs +0 -0
  1081. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/riscv64/lower/isle/generated_code.rs +0 -0
  1082. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/riscv64/lower.rs +0 -0
  1083. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/riscv64/settings.rs +0 -0
  1084. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/s390x/inst/args.rs +0 -0
  1085. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/s390x/inst/emit.rs +0 -0
  1086. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/s390x/inst/emit_tests.rs +0 -0
  1087. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/s390x/inst/imms.rs +0 -0
  1088. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/s390x/inst/mod.rs +0 -0
  1089. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/s390x/inst/regs.rs +0 -0
  1090. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/s390x/inst/unwind/systemv.rs +0 -0
  1091. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/s390x/inst/unwind.rs +0 -0
  1092. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/s390x/lower/isle/generated_code.rs +0 -0
  1093. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/s390x/lower.rs +0 -0
  1094. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/s390x/settings.rs +0 -0
  1095. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/unwind/systemv.rs +0 -0
  1096. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/unwind/winx64.rs +0 -0
  1097. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/unwind.rs +0 -0
  1098. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/x64/encoding/evex.rs +0 -0
  1099. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/x64/encoding/mod.rs +0 -0
  1100. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/x64/encoding/vex.rs +0 -0
  1101. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/x64/inst/regs.rs +0 -0
  1102. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/x64/inst/unwind/systemv.rs +0 -0
  1103. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/x64/inst/unwind/winx64.rs +0 -0
  1104. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/x64/inst/unwind.rs +0 -0
  1105. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/x64/lower/isle/generated_code.rs +0 -0
  1106. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/x64/settings.rs +0 -0
  1107. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/iterators.rs +0 -0
  1108. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/legalizer/globalvalue.rs +0 -0
  1109. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/legalizer/mod.rs +0 -0
  1110. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/legalizer/table.rs +0 -0
  1111. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/loop_analysis.rs +0 -0
  1112. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/machinst/blockorder.rs +0 -0
  1113. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/machinst/compile.rs +0 -0
  1114. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/machinst/helpers.rs +0 -0
  1115. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/machinst/inst_common.rs +0 -0
  1116. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/machinst/lower.rs +0 -0
  1117. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/machinst/valueregs.rs +0 -0
  1118. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/nan_canonicalization.rs +0 -0
  1119. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/opts/README.md +0 -0
  1120. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/opts/arithmetic.isle +0 -0
  1121. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/opts/bitops.isle +0 -0
  1122. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/opts/cprop.isle +0 -0
  1123. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/opts/generated_code.rs +0 -0
  1124. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/opts/icmp.isle +0 -0
  1125. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/opts/remat.isle +0 -0
  1126. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/opts/selects.isle +0 -0
  1127. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/opts/shifts.isle +0 -0
  1128. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/opts.rs +0 -0
  1129. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/prelude_opt.isle +0 -0
  1130. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/print_errors.rs +0 -0
  1131. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/remove_constant_phis.rs +0 -0
  1132. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/result.rs +0 -0
  1133. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/scoped_hash_map.rs +0 -0
  1134. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/souper_harvest.rs +0 -0
  1135. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/unreachable_code.rs +0 -0
  1136. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/value_label.rs +0 -0
  1137. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/verifier/mod.rs +0 -0
  1138. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/write.rs +0 -0
  1139. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/LICENSE +0 -0
  1140. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/README.md +0 -0
  1141. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/cdsl/formats.rs +0 -0
  1142. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/cdsl/instructions.rs +0 -0
  1143. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/cdsl/isa.rs +0 -0
  1144. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/cdsl/mod.rs +0 -0
  1145. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/cdsl/operands.rs +0 -0
  1146. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/cdsl/types.rs +0 -0
  1147. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/cdsl/typevar.rs +0 -0
  1148. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/constant_hash.rs +0 -0
  1149. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/error.rs +0 -0
  1150. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/gen_inst.rs +0 -0
  1151. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/gen_settings.rs +0 -0
  1152. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/gen_types.rs +0 -0
  1153. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/isa/arm64.rs +0 -0
  1154. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/isa/mod.rs +0 -0
  1155. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/isa/riscv64.rs +0 -0
  1156. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/isa/s390x.rs +0 -0
  1157. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/lib.rs +0 -0
  1158. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/shared/entities.rs +0 -0
  1159. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/shared/formats.rs +0 -0
  1160. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/shared/immediates.rs +0 -0
  1161. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/shared/mod.rs +0 -0
  1162. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/shared/types.rs +0 -0
  1163. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/srcgen.rs +0 -0
  1164. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/unique_table.rs +0 -0
  1165. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.97.1 → cranelift-codegen-shared-0.98.1}/LICENSE +0 -0
  1166. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.97.1 → cranelift-codegen-shared-0.98.1}/README.md +0 -0
  1167. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.97.1 → cranelift-codegen-shared-0.98.1}/src/constant_hash.rs +0 -0
  1168. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.97.1 → cranelift-codegen-shared-0.98.1}/src/constants.rs +0 -0
  1169. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.97.1 → cranelift-codegen-shared-0.98.1}/src/lib.rs +0 -0
  1170. /data/ext/cargo-vendor/{cranelift-control-0.97.1 → cranelift-control-0.98.1}/LICENSE +0 -0
  1171. /data/ext/cargo-vendor/{cranelift-control-0.97.1 → cranelift-control-0.98.1}/README.md +0 -0
  1172. /data/ext/cargo-vendor/{cranelift-control-0.97.1 → cranelift-control-0.98.1}/src/chaos.rs +0 -0
  1173. /data/ext/cargo-vendor/{cranelift-control-0.97.1 → cranelift-control-0.98.1}/src/lib.rs +0 -0
  1174. /data/ext/cargo-vendor/{cranelift-control-0.97.1 → cranelift-control-0.98.1}/src/zero_sized.rs +0 -0
  1175. /data/ext/cargo-vendor/{cranelift-entity-0.97.1 → cranelift-entity-0.98.1}/LICENSE +0 -0
  1176. /data/ext/cargo-vendor/{cranelift-entity-0.97.1 → cranelift-entity-0.98.1}/README.md +0 -0
  1177. /data/ext/cargo-vendor/{cranelift-entity-0.97.1 → cranelift-entity-0.98.1}/src/boxed_slice.rs +0 -0
  1178. /data/ext/cargo-vendor/{cranelift-entity-0.97.1 → cranelift-entity-0.98.1}/src/iter.rs +0 -0
  1179. /data/ext/cargo-vendor/{cranelift-entity-0.97.1 → cranelift-entity-0.98.1}/src/keys.rs +0 -0
  1180. /data/ext/cargo-vendor/{cranelift-entity-0.97.1 → cranelift-entity-0.98.1}/src/lib.rs +0 -0
  1181. /data/ext/cargo-vendor/{cranelift-entity-0.97.1 → cranelift-entity-0.98.1}/src/list.rs +0 -0
  1182. /data/ext/cargo-vendor/{cranelift-entity-0.97.1 → cranelift-entity-0.98.1}/src/map.rs +0 -0
  1183. /data/ext/cargo-vendor/{cranelift-entity-0.97.1 → cranelift-entity-0.98.1}/src/packed_option.rs +0 -0
  1184. /data/ext/cargo-vendor/{cranelift-entity-0.97.1 → cranelift-entity-0.98.1}/src/primary.rs +0 -0
  1185. /data/ext/cargo-vendor/{cranelift-entity-0.97.1 → cranelift-entity-0.98.1}/src/set.rs +0 -0
  1186. /data/ext/cargo-vendor/{cranelift-entity-0.97.1 → cranelift-entity-0.98.1}/src/sparse.rs +0 -0
  1187. /data/ext/cargo-vendor/{cranelift-frontend-0.97.1 → cranelift-frontend-0.98.1}/LICENSE +0 -0
  1188. /data/ext/cargo-vendor/{cranelift-frontend-0.97.1 → cranelift-frontend-0.98.1}/README.md +0 -0
  1189. /data/ext/cargo-vendor/{cranelift-frontend-0.97.1 → cranelift-frontend-0.98.1}/src/frontend.rs +0 -0
  1190. /data/ext/cargo-vendor/{cranelift-frontend-0.97.1 → cranelift-frontend-0.98.1}/src/lib.rs +0 -0
  1191. /data/ext/cargo-vendor/{cranelift-frontend-0.97.1 → cranelift-frontend-0.98.1}/src/ssa.rs +0 -0
  1192. /data/ext/cargo-vendor/{cranelift-frontend-0.97.1 → cranelift-frontend-0.98.1}/src/switch.rs +0 -0
  1193. /data/ext/cargo-vendor/{cranelift-frontend-0.97.1 → cranelift-frontend-0.98.1}/src/variable.rs +0 -0
  1194. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/README.md +0 -0
  1195. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/build.rs +0 -0
  1196. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/fail/bad_converters.isle +0 -0
  1197. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/fail/bound_var_type_mismatch.isle +0 -0
  1198. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/fail/converter_extractor_constructor.isle +0 -0
  1199. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/fail/error1.isle +0 -0
  1200. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/fail/extra_parens.isle +0 -0
  1201. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/fail/impure_expression.isle +0 -0
  1202. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/fail/impure_rhs.isle +0 -0
  1203. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/fail/multi_internal_etor.isle +0 -0
  1204. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/fail/multi_prio.isle +0 -0
  1205. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/link/borrows.isle +0 -0
  1206. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/link/borrows_main.rs +0 -0
  1207. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/link/iflets.isle +0 -0
  1208. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/link/iflets_main.rs +0 -0
  1209. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/link/multi_constructor.isle +0 -0
  1210. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/link/multi_constructor_main.rs +0 -0
  1211. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/link/multi_extractor.isle +0 -0
  1212. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/link/multi_extractor_main.rs +0 -0
  1213. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/link/test.isle +0 -0
  1214. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/link/test_main.rs +0 -0
  1215. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/pass/bound_var.isle +0 -0
  1216. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/pass/construct_and_extract.isle +0 -0
  1217. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/pass/conversions.isle +0 -0
  1218. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/pass/conversions_extern.isle +0 -0
  1219. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/pass/let.isle +0 -0
  1220. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/pass/nodebug.isle +0 -0
  1221. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/pass/prio_trie_bug.isle +0 -0
  1222. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/pass/test2.isle +0 -0
  1223. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/pass/test3.isle +0 -0
  1224. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/pass/test4.isle +0 -0
  1225. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/pass/tutorial.isle +0 -0
  1226. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/run/iconst.isle +0 -0
  1227. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/run/iconst_main.rs +0 -0
  1228. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/run/let_shadowing.isle +0 -0
  1229. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/run/let_shadowing_main.rs +0 -0
  1230. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/src/ast.rs +0 -0
  1231. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/src/codegen.rs +0 -0
  1232. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/src/compile.rs +0 -0
  1233. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/src/error.rs +0 -0
  1234. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/src/lexer.rs +0 -0
  1235. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/src/lib.rs +0 -0
  1236. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/src/log.rs +0 -0
  1237. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/src/overlap.rs +0 -0
  1238. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/src/parser.rs +0 -0
  1239. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/src/sema.rs +0 -0
  1240. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/src/serialize.rs +0 -0
  1241. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/src/trie_again.rs +0 -0
  1242. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/tests/run_tests.rs +0 -0
  1243. /data/ext/cargo-vendor/{cranelift-native-0.97.1 → cranelift-native-0.98.1}/LICENSE +0 -0
  1244. /data/ext/cargo-vendor/{cranelift-native-0.97.1 → cranelift-native-0.98.1}/README.md +0 -0
  1245. /data/ext/cargo-vendor/{cranelift-native-0.97.1 → cranelift-native-0.98.1}/src/riscv.rs +0 -0
  1246. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/LICENSE +0 -0
  1247. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/README.md +0 -0
  1248. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/src/code_translator/bounds_checks.rs +0 -0
  1249. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/src/environ/dummy.rs +0 -0
  1250. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/src/environ/mod.rs +0 -0
  1251. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/src/func_translator.rs +0 -0
  1252. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/src/heap.rs +0 -0
  1253. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/src/lib.rs +0 -0
  1254. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/src/module_translator.rs +0 -0
  1255. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/src/sections_translator.rs +0 -0
  1256. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/src/state.rs +0 -0
  1257. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/src/translation_utils.rs +0 -0
  1258. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/tests/wasm_testsuite.rs +0 -0
  1259. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/arith.wat +0 -0
  1260. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/br_table.wat +0 -0
  1261. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/call-simd.wat +0 -0
  1262. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/call.wat +0 -0
  1263. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/embenchen_fannkuch.wat +0 -0
  1264. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/embenchen_fasta.wat +0 -0
  1265. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/embenchen_ifs.wat +0 -0
  1266. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/embenchen_primes.wat +0 -0
  1267. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/fac-multi-value.wat +0 -0
  1268. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/fibonacci.wat +0 -0
  1269. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/globals.wat +0 -0
  1270. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/icall-simd.wat +0 -0
  1271. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/icall.wat +0 -0
  1272. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/if-reachability-translation-0.wat +0 -0
  1273. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/if-reachability-translation-1.wat +0 -0
  1274. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/if-reachability-translation-2.wat +0 -0
  1275. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/if-reachability-translation-3.wat +0 -0
  1276. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/if-reachability-translation-4.wat +0 -0
  1277. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/if-reachability-translation-5.wat +0 -0
  1278. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/if-reachability-translation-6.wat +0 -0
  1279. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/if-unreachable-else-params-2.wat +0 -0
  1280. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/if-unreachable-else-params.wat +0 -0
  1281. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/issue-1306-name-section-with-u32-max-function-index.wasm +0 -0
  1282. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/memory.wat +0 -0
  1283. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/multi-0.wat +0 -0
  1284. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/multi-1.wat +0 -0
  1285. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/multi-10.wat +0 -0
  1286. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/multi-11.wat +0 -0
  1287. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/multi-12.wat +0 -0
  1288. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/multi-13.wat +0 -0
  1289. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/multi-14.wat +0 -0
  1290. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/multi-15.wat +0 -0
  1291. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/multi-16.wat +0 -0
  1292. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/multi-17.wat +0 -0
  1293. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/multi-2.wat +0 -0
  1294. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/multi-3.wat +0 -0
  1295. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/multi-4.wat +0 -0
  1296. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/multi-5.wat +0 -0
  1297. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/multi-6.wat +0 -0
  1298. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/multi-7.wat +0 -0
  1299. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/multi-8.wat +0 -0
  1300. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/multi-9.wat +0 -0
  1301. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/nullref.wat +0 -0
  1302. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/passive-data.wat +0 -0
  1303. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/pr2303.wat +0 -0
  1304. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/pr2559.wat +0 -0
  1305. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/ref-func-0.wat +0 -0
  1306. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/rust_fannkuch.wat +0 -0
  1307. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/select.wat +0 -0
  1308. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/simd-store.wat +0 -0
  1309. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/simd.wat +0 -0
  1310. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/table-copy.wat +0 -0
  1311. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/unreachable_code.wat +0 -0
  1312. /data/ext/cargo-vendor/{log-0.4.19 → gimli-0.28.0}/LICENSE-APACHE +0 -0
  1313. /data/ext/cargo-vendor/{object-0.31.1 → log-0.4.20}/LICENSE-APACHE +0 -0
  1314. /data/ext/cargo-vendor/{log-0.4.19 → log-0.4.20}/LICENSE-MIT +0 -0
  1315. /data/ext/cargo-vendor/{log-0.4.19 → log-0.4.20}/benches/value.rs +0 -0
  1316. /data/ext/cargo-vendor/{log-0.4.19 → log-0.4.20}/src/kv/error.rs +0 -0
  1317. /data/ext/cargo-vendor/{log-0.4.19 → log-0.4.20}/src/kv/key.rs +0 -0
  1318. /data/ext/cargo-vendor/{log-0.4.19 → log-0.4.20}/src/kv/mod.rs +0 -0
  1319. /data/ext/cargo-vendor/{log-0.4.19 → log-0.4.20}/src/kv/source.rs +0 -0
  1320. /data/ext/cargo-vendor/{log-0.4.19 → log-0.4.20}/src/kv/value.rs +0 -0
  1321. /data/ext/cargo-vendor/{log-0.4.19 → log-0.4.20}/src/serde.rs +0 -0
  1322. /data/ext/cargo-vendor/{log-0.4.19 → log-0.4.20}/triagebot.toml +0 -0
  1323. /data/ext/cargo-vendor/{unicase-2.6.0 → object-0.32.0}/LICENSE-APACHE +0 -0
  1324. /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/LICENSE-MIT +0 -0
  1325. /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/archive.rs +0 -0
  1326. /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/endian.rs +0 -0
  1327. /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/lib.rs +0 -0
  1328. /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/macho.rs +0 -0
  1329. /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/pod.rs +0 -0
  1330. /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/archive.rs +0 -0
  1331. /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/coff/comdat.rs +0 -0
  1332. /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/coff/file.rs +0 -0
  1333. /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/coff/relocation.rs +0 -0
  1334. /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/coff/section.rs +0 -0
  1335. /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/coff/symbol.rs +0 -0
  1336. /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/elf/attributes.rs +0 -0
  1337. /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/elf/comdat.rs +0 -0
  1338. /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/elf/compression.rs +0 -0
  1339. /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/elf/dynamic.rs +0 -0
  1340. /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/elf/hash.rs +0 -0
  1341. /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/elf/mod.rs +0 -0
  1342. /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/elf/section.rs +0 -0
  1343. /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/elf/segment.rs +0 -0
  1344. /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/elf/version.rs +0 -0
  1345. /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/macho/dyld_cache.rs +0 -0
  1346. /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/macho/fat.rs +0 -0
  1347. /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/macho/file.rs +0 -0
  1348. /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/macho/load_command.rs +0 -0
  1349. /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/macho/mod.rs +0 -0
  1350. /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/macho/relocation.rs +0 -0
  1351. /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/macho/section.rs +0 -0
  1352. /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/macho/segment.rs +0 -0
  1353. /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/macho/symbol.rs +0 -0
  1354. /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/pe/data_directory.rs +0 -0
  1355. /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/pe/export.rs +0 -0
  1356. /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/pe/file.rs +0 -0
  1357. /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/pe/import.rs +0 -0
  1358. /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/pe/mod.rs +0 -0
  1359. /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/pe/relocation.rs +0 -0
  1360. /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/pe/resource.rs +0 -0
  1361. /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/pe/rich.rs +0 -0
  1362. /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/pe/section.rs +0 -0
  1363. /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/read_cache.rs +0 -0
  1364. /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/read_ref.rs +0 -0
  1365. /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/traits.rs +0 -0
  1366. /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/util.rs +0 -0
  1367. /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/wasm.rs +0 -0
  1368. /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/xcoff/comdat.rs +0 -0
  1369. /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/xcoff/file.rs +0 -0
  1370. /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/xcoff/mod.rs +0 -0
  1371. /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/xcoff/relocation.rs +0 -0
  1372. /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/xcoff/section.rs +0 -0
  1373. /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/xcoff/segment.rs +0 -0
  1374. /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/xcoff/symbol.rs +0 -0
  1375. /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/write/coff.rs +0 -0
  1376. /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/write/elf/mod.rs +0 -0
  1377. /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/write/elf/writer.rs +0 -0
  1378. /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/write/mod.rs +0 -0
  1379. /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/write/pe.rs +0 -0
  1380. /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/write/string.rs +0 -0
  1381. /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/write/util.rs +0 -0
  1382. /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/write/xcoff.rs +0 -0
  1383. /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/xcoff.rs +0 -0
  1384. /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/tests/integration.rs +0 -0
  1385. /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/tests/parse_self.rs +0 -0
  1386. /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/tests/read/coff.rs +0 -0
  1387. /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/tests/read/mod.rs +0 -0
  1388. /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/tests/round_trip/bss.rs +0 -0
  1389. /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/tests/round_trip/coff.rs +0 -0
  1390. /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/tests/round_trip/comdat.rs +0 -0
  1391. /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/tests/round_trip/common.rs +0 -0
  1392. /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/tests/round_trip/elf.rs +0 -0
  1393. /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/tests/round_trip/section_flags.rs +0 -0
  1394. /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/tests/round_trip/tls.rs +0 -0
  1395. /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/LICENSE-APACHE +0 -0
  1396. /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/LICENSE-MIT +0 -0
  1397. /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/README.md +0 -0
  1398. /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/rust-toolchain.toml +0 -0
  1399. /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/src/ext.rs +0 -0
  1400. /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/src/format.rs +0 -0
  1401. /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/src/ident_fragment.rs +0 -0
  1402. /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/src/spanned.rs +0 -0
  1403. /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/src/to_tokens.rs +0 -0
  1404. /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/tests/compiletest.rs +0 -0
  1405. /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/tests/test.rs +0 -0
  1406. /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/tests/ui/does-not-have-iter-interpolated-dup.rs +0 -0
  1407. /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/tests/ui/does-not-have-iter-interpolated-dup.stderr +0 -0
  1408. /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/tests/ui/does-not-have-iter-interpolated.rs +0 -0
  1409. /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/tests/ui/does-not-have-iter-interpolated.stderr +0 -0
  1410. /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/tests/ui/does-not-have-iter-separated.rs +0 -0
  1411. /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/tests/ui/does-not-have-iter-separated.stderr +0 -0
  1412. /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/tests/ui/does-not-have-iter.rs +0 -0
  1413. /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/tests/ui/does-not-have-iter.stderr +0 -0
  1414. /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/tests/ui/not-quotable.rs +0 -0
  1415. /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/tests/ui/not-quotable.stderr +0 -0
  1416. /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/tests/ui/not-repeatable.rs +0 -0
  1417. /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/tests/ui/not-repeatable.stderr +0 -0
  1418. /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/tests/ui/wrong-type-span.rs +0 -0
  1419. /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/tests/ui/wrong-type-span.stderr +0 -0
  1420. /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/LICENSE-APACHE +0 -0
  1421. /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/LICENSE-MIT +0 -0
  1422. /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/README.md +0 -0
  1423. /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/build.rs +0 -0
  1424. /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/crates-io.md +0 -0
  1425. /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/de/format.rs +0 -0
  1426. /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/de/ignored_any.rs +0 -0
  1427. /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/de/impls.rs +0 -0
  1428. /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/de/mod.rs +0 -0
  1429. /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/de/seed.rs +0 -0
  1430. /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/de/size_hint.rs +0 -0
  1431. /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/de/utf8.rs +0 -0
  1432. /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/de/value.rs +0 -0
  1433. /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/integer128.rs +0 -0
  1434. /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/macros.rs +0 -0
  1435. /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/private/de.rs +0 -0
  1436. /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/private/doc.rs +0 -0
  1437. /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/private/mod.rs +0 -0
  1438. /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/ser/fmt.rs +0 -0
  1439. /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/ser/impls.rs +0 -0
  1440. /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/ser/impossible.rs +0 -0
  1441. /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/ser/mod.rs +0 -0
  1442. /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/std_error.rs +0 -0
  1443. /data/ext/cargo-vendor/{serde_derive-1.0.183 → serde_derive-1.0.185}/LICENSE-APACHE +0 -0
  1444. /data/ext/cargo-vendor/{serde_derive-1.0.183 → serde_derive-1.0.185}/LICENSE-MIT +0 -0
  1445. /data/ext/cargo-vendor/{serde_derive-1.0.183 → serde_derive-1.0.185}/src/bound.rs +0 -0
  1446. /data/ext/cargo-vendor/{serde_derive-1.0.183 → serde_derive-1.0.185}/src/dummy.rs +0 -0
  1447. /data/ext/cargo-vendor/{serde_derive-1.0.183 → serde_derive-1.0.185}/src/fragment.rs +0 -0
  1448. /data/ext/cargo-vendor/{serde_derive-1.0.183 → serde_derive-1.0.185}/src/internals/ast.rs +0 -0
  1449. /data/ext/cargo-vendor/{serde_derive-1.0.183 → serde_derive-1.0.185}/src/internals/case.rs +0 -0
  1450. /data/ext/cargo-vendor/{serde_derive-1.0.183 → serde_derive-1.0.185}/src/internals/check.rs +0 -0
  1451. /data/ext/cargo-vendor/{serde_derive-1.0.183 → serde_derive-1.0.185}/src/internals/ctxt.rs +0 -0
  1452. /data/ext/cargo-vendor/{serde_derive-1.0.183 → serde_derive-1.0.185}/src/internals/mod.rs +0 -0
  1453. /data/ext/cargo-vendor/{serde_derive-1.0.183 → serde_derive-1.0.185}/src/internals/receiver.rs +0 -0
  1454. /data/ext/cargo-vendor/{serde_derive-1.0.183 → serde_derive-1.0.185}/src/internals/respan.rs +0 -0
  1455. /data/ext/cargo-vendor/{serde_derive-1.0.183 → serde_derive-1.0.185}/src/pretend.rs +0 -0
  1456. /data/ext/cargo-vendor/{serde_derive-1.0.183 → serde_derive-1.0.185}/src/this.rs +0 -0
  1457. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/CONTRIBUTING.md +0 -0
  1458. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/LICENSE-APACHE +0 -0
  1459. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/LICENSE-MIT +0 -0
  1460. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/README.md +0 -0
  1461. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/build.rs +0 -0
  1462. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/error.rs +0 -0
  1463. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/features_check/error.rs +0 -0
  1464. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/features_check/mod.rs +0 -0
  1465. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/io/core.rs +0 -0
  1466. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/io/mod.rs +0 -0
  1467. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/iter.rs +0 -0
  1468. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/algorithm.rs +0 -0
  1469. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/bhcomp.rs +0 -0
  1470. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/bignum.rs +0 -0
  1471. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/cached.rs +0 -0
  1472. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/cached_float80.rs +0 -0
  1473. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/digit.rs +0 -0
  1474. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/errors.rs +0 -0
  1475. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/exponent.rs +0 -0
  1476. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/float.rs +0 -0
  1477. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/large_powers.rs +0 -0
  1478. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/large_powers32.rs +0 -0
  1479. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/large_powers64.rs +0 -0
  1480. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/math.rs +0 -0
  1481. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/mod.rs +0 -0
  1482. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/num.rs +0 -0
  1483. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/parse.rs +0 -0
  1484. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/rounding.rs +0 -0
  1485. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/shift.rs +0 -0
  1486. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/small_powers.rs +0 -0
  1487. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/macros.rs +0 -0
  1488. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/map.rs +0 -0
  1489. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/number.rs +0 -0
  1490. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/raw.rs +0 -0
  1491. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/read.rs +0 -0
  1492. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/value/from.rs +0 -0
  1493. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/value/index.rs +0 -0
  1494. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/value/mod.rs +0 -0
  1495. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/value/partial_eq.rs +0 -0
  1496. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/compiletest.rs +0 -0
  1497. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/debug.rs +0 -0
  1498. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/lexical/algorithm.rs +0 -0
  1499. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/lexical/exponent.rs +0 -0
  1500. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/lexical/float.rs +0 -0
  1501. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/lexical/math.rs +0 -0
  1502. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/lexical/num.rs +0 -0
  1503. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/lexical/parse.rs +0 -0
  1504. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/lexical/rounding.rs +0 -0
  1505. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/lexical.rs +0 -0
  1506. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/macros/mod.rs +0 -0
  1507. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/map.rs +0 -0
  1508. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/regression/issue1004.rs +0 -0
  1509. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/regression/issue520.rs +0 -0
  1510. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/regression/issue795.rs +0 -0
  1511. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/regression/issue845.rs +0 -0
  1512. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/regression/issue953.rs +0 -0
  1513. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/regression.rs +0 -0
  1514. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/stream.rs +0 -0
  1515. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/missing_colon.rs +0 -0
  1516. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/missing_colon.stderr +0 -0
  1517. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/missing_comma.rs +0 -0
  1518. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/missing_comma.stderr +0 -0
  1519. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/missing_value.rs +0 -0
  1520. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/missing_value.stderr +0 -0
  1521. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/not_found.rs +0 -0
  1522. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/not_found.stderr +0 -0
  1523. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/parse_expr.rs +0 -0
  1524. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/parse_expr.stderr +0 -0
  1525. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/parse_key.rs +0 -0
  1526. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/parse_key.stderr +0 -0
  1527. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/unexpected_after_array_element.rs +0 -0
  1528. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/unexpected_after_array_element.stderr +0 -0
  1529. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/unexpected_after_map_entry.rs +0 -0
  1530. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/unexpected_after_map_entry.stderr +0 -0
  1531. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/unexpected_colon.rs +0 -0
  1532. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/unexpected_colon.stderr +0 -0
  1533. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/unexpected_comma.rs +0 -0
  1534. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/unexpected_comma.stderr +0 -0
  1535. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/LICENSE-APACHE +0 -0
  1536. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/LICENSE-MIT +0 -0
  1537. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/README.md +0 -0
  1538. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/benches/file.rs +0 -0
  1539. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/benches/rust.rs +0 -0
  1540. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/attr.rs +0 -0
  1541. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/bigint.rs +0 -0
  1542. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/buffer.rs +0 -0
  1543. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/data.rs +0 -0
  1544. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/derive.rs +0 -0
  1545. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/discouraged.rs +0 -0
  1546. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/drops.rs +0 -0
  1547. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/error.rs +0 -0
  1548. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/expr.rs +0 -0
  1549. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/ext.rs +0 -0
  1550. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/file.rs +0 -0
  1551. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/gen/clone.rs +0 -0
  1552. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/gen/debug.rs +0 -0
  1553. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/gen/eq.rs +0 -0
  1554. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/gen/fold.rs +0 -0
  1555. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/gen/hash.rs +0 -0
  1556. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/gen/visit.rs +0 -0
  1557. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/gen/visit_mut.rs +0 -0
  1558. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/gen_helper.rs +0 -0
  1559. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/generics.rs +0 -0
  1560. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/ident.rs +0 -0
  1561. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/item.rs +0 -0
  1562. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/lifetime.rs +0 -0
  1563. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/lit.rs +0 -0
  1564. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/lookahead.rs +0 -0
  1565. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/mac.rs +0 -0
  1566. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/macros.rs +0 -0
  1567. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/meta.rs +0 -0
  1568. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/op.rs +0 -0
  1569. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/parse.rs +0 -0
  1570. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/parse_macro_input.rs +0 -0
  1571. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/pat.rs +0 -0
  1572. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/path.rs +0 -0
  1573. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/print.rs +0 -0
  1574. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/punctuated.rs +0 -0
  1575. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/restriction.rs +0 -0
  1576. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/sealed.rs +0 -0
  1577. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/spanned.rs +0 -0
  1578. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/stmt.rs +0 -0
  1579. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/thread.rs +0 -0
  1580. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/tt.rs +0 -0
  1581. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/ty.rs +0 -0
  1582. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/verbatim.rs +0 -0
  1583. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/whitespace.rs +0 -0
  1584. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/common/mod.rs +0 -0
  1585. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/common/parse.rs +0 -0
  1586. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/debug/gen.rs +0 -0
  1587. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/debug/mod.rs +0 -0
  1588. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/macros/mod.rs +0 -0
  1589. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/regression/issue1108.rs +0 -0
  1590. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/regression/issue1235.rs +0 -0
  1591. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/regression.rs +0 -0
  1592. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/repo/mod.rs +0 -0
  1593. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/repo/progress.rs +0 -0
  1594. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_asyncness.rs +0 -0
  1595. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_attribute.rs +0 -0
  1596. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_derive_input.rs +0 -0
  1597. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_expr.rs +0 -0
  1598. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_generics.rs +0 -0
  1599. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_grouping.rs +0 -0
  1600. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_ident.rs +0 -0
  1601. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_item.rs +0 -0
  1602. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_iterators.rs +0 -0
  1603. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_lit.rs +0 -0
  1604. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_meta.rs +0 -0
  1605. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_parse_buffer.rs +0 -0
  1606. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_parse_stream.rs +0 -0
  1607. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_pat.rs +0 -0
  1608. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_path.rs +0 -0
  1609. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_precedence.rs +0 -0
  1610. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_receiver.rs +0 -0
  1611. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_round_trip.rs +0 -0
  1612. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_shebang.rs +0 -0
  1613. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_should_parse.rs +0 -0
  1614. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_size.rs +0 -0
  1615. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_stmt.rs +0 -0
  1616. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_token_trees.rs +0 -0
  1617. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_ty.rs +0 -0
  1618. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_visibility.rs +0 -0
  1619. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/zzz_stable.rs +0 -0
  1620. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/LICENSE-APACHE +0 -0
  1621. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/LICENSE-MIT +0 -0
  1622. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/README.md +0 -0
  1623. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/rust-toolchain.toml +0 -0
  1624. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/compiletest.rs +0 -0
  1625. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/test_deprecated.rs +0 -0
  1626. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/test_display.rs +0 -0
  1627. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/test_error.rs +0 -0
  1628. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/test_expr.rs +0 -0
  1629. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/test_from.rs +0 -0
  1630. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/test_generics.rs +0 -0
  1631. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/test_lints.rs +0 -0
  1632. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/test_path.rs +0 -0
  1633. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/test_source.rs +0 -0
  1634. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/test_transparent.rs +0 -0
  1635. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/bad-field-attr.rs +0 -0
  1636. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/bad-field-attr.stderr +0 -0
  1637. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/concat-display.rs +0 -0
  1638. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/concat-display.stderr +0 -0
  1639. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/duplicate-enum-source.rs +0 -0
  1640. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/duplicate-enum-source.stderr +0 -0
  1641. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/duplicate-fmt.rs +0 -0
  1642. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/duplicate-fmt.stderr +0 -0
  1643. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/duplicate-struct-source.rs +0 -0
  1644. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/duplicate-struct-source.stderr +0 -0
  1645. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/duplicate-transparent.rs +0 -0
  1646. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/duplicate-transparent.stderr +0 -0
  1647. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/from-backtrace-backtrace.rs +0 -0
  1648. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/from-backtrace-backtrace.stderr +0 -0
  1649. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/from-not-source.rs +0 -0
  1650. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/from-not-source.stderr +0 -0
  1651. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/lifetime.rs +0 -0
  1652. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/lifetime.stderr +0 -0
  1653. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/missing-fmt.rs +0 -0
  1654. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/missing-fmt.stderr +0 -0
  1655. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/no-display.rs +0 -0
  1656. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/no-display.stderr +0 -0
  1657. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/source-enum-not-error.rs +0 -0
  1658. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/source-enum-not-error.stderr +0 -0
  1659. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/source-struct-not-error.rs +0 -0
  1660. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/source-struct-not-error.stderr +0 -0
  1661. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/transparent-display.rs +0 -0
  1662. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/transparent-display.stderr +0 -0
  1663. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/transparent-enum-many.rs +0 -0
  1664. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/transparent-enum-many.stderr +0 -0
  1665. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/transparent-enum-source.rs +0 -0
  1666. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/transparent-enum-source.stderr +0 -0
  1667. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/transparent-struct-many.rs +0 -0
  1668. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/transparent-struct-many.stderr +0 -0
  1669. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/transparent-struct-source.rs +0 -0
  1670. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/transparent-struct-source.stderr +0 -0
  1671. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/unexpected-field-fmt.rs +0 -0
  1672. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/unexpected-field-fmt.stderr +0 -0
  1673. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/unexpected-struct-source.rs +0 -0
  1674. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/unexpected-struct-source.stderr +0 -0
  1675. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/union.rs +0 -0
  1676. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/union.stderr +0 -0
  1677. /data/ext/cargo-vendor/{thiserror-impl-1.0.44 → thiserror-impl-1.0.47}/LICENSE-APACHE +0 -0
  1678. /data/ext/cargo-vendor/{thiserror-impl-1.0.44 → thiserror-impl-1.0.47}/LICENSE-MIT +0 -0
  1679. /data/ext/cargo-vendor/{thiserror-impl-1.0.44 → thiserror-impl-1.0.47}/src/ast.rs +0 -0
  1680. /data/ext/cargo-vendor/{thiserror-impl-1.0.44 → thiserror-impl-1.0.47}/src/attr.rs +0 -0
  1681. /data/ext/cargo-vendor/{thiserror-impl-1.0.44 → thiserror-impl-1.0.47}/src/fmt.rs +0 -0
  1682. /data/ext/cargo-vendor/{thiserror-impl-1.0.44 → thiserror-impl-1.0.47}/src/generics.rs +0 -0
  1683. /data/ext/cargo-vendor/{thiserror-impl-1.0.44 → thiserror-impl-1.0.47}/src/lib.rs +0 -0
  1684. /data/ext/cargo-vendor/{thiserror-impl-1.0.44 → thiserror-impl-1.0.47}/src/prop.rs +0 -0
  1685. /data/ext/cargo-vendor/{thiserror-impl-1.0.44 → thiserror-impl-1.0.47}/src/valid.rs +0 -0
  1686. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/LICENSE +0 -0
  1687. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/docs/reactor-refactor.md +0 -0
  1688. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/external-types.toml +0 -0
  1689. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/blocking.rs +0 -0
  1690. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/doc/mod.rs +0 -0
  1691. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/doc/os.rs +0 -0
  1692. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/canonicalize.rs +0 -0
  1693. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/copy.rs +0 -0
  1694. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/create_dir.rs +0 -0
  1695. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/create_dir_all.rs +0 -0
  1696. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/dir_builder.rs +0 -0
  1697. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/file/tests.rs +0 -0
  1698. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/file.rs +0 -0
  1699. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/hard_link.rs +0 -0
  1700. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/metadata.rs +0 -0
  1701. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/mocks.rs +0 -0
  1702. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/mod.rs +0 -0
  1703. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/open_options/mock_open_options.rs +0 -0
  1704. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/open_options.rs +0 -0
  1705. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/read.rs +0 -0
  1706. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/read_dir.rs +0 -0
  1707. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/read_link.rs +0 -0
  1708. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/read_to_string.rs +0 -0
  1709. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/remove_dir.rs +0 -0
  1710. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/remove_dir_all.rs +0 -0
  1711. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/remove_file.rs +0 -0
  1712. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/rename.rs +0 -0
  1713. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/set_permissions.rs +0 -0
  1714. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/symlink.rs +0 -0
  1715. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/symlink_dir.rs +0 -0
  1716. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/symlink_file.rs +0 -0
  1717. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/symlink_metadata.rs +0 -0
  1718. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/try_exists.rs +0 -0
  1719. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/write.rs +0 -0
  1720. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/future/block_on.rs +0 -0
  1721. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/future/maybe_done.rs +0 -0
  1722. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/future/mod.rs +0 -0
  1723. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/future/poll_fn.rs +0 -0
  1724. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/future/trace.rs +0 -0
  1725. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/future/try_join.rs +0 -0
  1726. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fuzz.rs +0 -0
  1727. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/async_buf_read.rs +0 -0
  1728. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/async_read.rs +0 -0
  1729. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/async_seek.rs +0 -0
  1730. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/async_write.rs +0 -0
  1731. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/blocking.rs +0 -0
  1732. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/bsd/poll_aio.rs +0 -0
  1733. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/mod.rs +0 -0
  1734. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/poll_evented.rs +0 -0
  1735. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/read_buf.rs +0 -0
  1736. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/seek.rs +0 -0
  1737. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/stderr.rs +0 -0
  1738. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/stdin.rs +0 -0
  1739. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/stdio_common.rs +0 -0
  1740. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/stdout.rs +0 -0
  1741. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/async_buf_read_ext.rs +0 -0
  1742. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/async_seek_ext.rs +0 -0
  1743. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/async_write_ext.rs +0 -0
  1744. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/buf_reader.rs +0 -0
  1745. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/buf_stream.rs +0 -0
  1746. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/buf_writer.rs +0 -0
  1747. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/chain.rs +0 -0
  1748. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/copy.rs +0 -0
  1749. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/copy_bidirectional.rs +0 -0
  1750. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/copy_buf.rs +0 -0
  1751. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/empty.rs +0 -0
  1752. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/fill_buf.rs +0 -0
  1753. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/flush.rs +0 -0
  1754. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/lines.rs +0 -0
  1755. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/mem.rs +0 -0
  1756. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/mod.rs +0 -0
  1757. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/read.rs +0 -0
  1758. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/read_buf.rs +0 -0
  1759. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/read_exact.rs +0 -0
  1760. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/read_int.rs +0 -0
  1761. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/read_line.rs +0 -0
  1762. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/read_to_end.rs +0 -0
  1763. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/read_to_string.rs +0 -0
  1764. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/read_until.rs +0 -0
  1765. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/repeat.rs +0 -0
  1766. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/shutdown.rs +0 -0
  1767. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/sink.rs +0 -0
  1768. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/split.rs +0 -0
  1769. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/take.rs +0 -0
  1770. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/vec_with_initialized.rs +0 -0
  1771. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/write.rs +0 -0
  1772. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/write_all.rs +0 -0
  1773. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/write_all_buf.rs +0 -0
  1774. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/write_buf.rs +0 -0
  1775. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/write_int.rs +0 -0
  1776. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/write_vectored.rs +0 -0
  1777. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/lib.rs +0 -0
  1778. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/loom/mocked.rs +0 -0
  1779. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/loom/mod.rs +0 -0
  1780. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/loom/std/atomic_u16.rs +0 -0
  1781. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/loom/std/atomic_u32.rs +0 -0
  1782. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/loom/std/atomic_u64.rs +0 -0
  1783. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/loom/std/atomic_u64_as_mutex.rs +0 -0
  1784. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/loom/std/atomic_u64_native.rs +0 -0
  1785. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/loom/std/atomic_u64_static_const_new.rs +0 -0
  1786. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/loom/std/atomic_u64_static_once_cell.rs +0 -0
  1787. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/loom/std/atomic_usize.rs +0 -0
  1788. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/loom/std/barrier.rs +0 -0
  1789. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/loom/std/mod.rs +0 -0
  1790. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/loom/std/mutex.rs +0 -0
  1791. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/loom/std/parking_lot.rs +0 -0
  1792. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/loom/std/unsafe_cell.rs +0 -0
  1793. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/macros/addr_of.rs +0 -0
  1794. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/macros/cfg.rs +0 -0
  1795. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/macros/join.rs +0 -0
  1796. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/macros/loom.rs +0 -0
  1797. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/macros/mod.rs +0 -0
  1798. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/macros/pin.rs +0 -0
  1799. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/macros/ready.rs +0 -0
  1800. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/macros/select.rs +0 -0
  1801. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/macros/support.rs +0 -0
  1802. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/macros/thread_local.rs +0 -0
  1803. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/macros/trace.rs +0 -0
  1804. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/macros/try_join.rs +0 -0
  1805. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/addr.rs +0 -0
  1806. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/lookup_host.rs +0 -0
  1807. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/mod.rs +0 -0
  1808. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/tcp/listener.rs +0 -0
  1809. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/tcp/mod.rs +0 -0
  1810. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/tcp/socket.rs +0 -0
  1811. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/tcp/split.rs +0 -0
  1812. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/tcp/split_owned.rs +0 -0
  1813. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/tcp/stream.rs +0 -0
  1814. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/udp.rs +0 -0
  1815. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/unix/datagram/mod.rs +0 -0
  1816. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/unix/datagram/socket.rs +0 -0
  1817. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/unix/listener.rs +0 -0
  1818. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/unix/mod.rs +0 -0
  1819. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/unix/pipe.rs +0 -0
  1820. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/unix/socketaddr.rs +0 -0
  1821. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/unix/split.rs +0 -0
  1822. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/unix/split_owned.rs +0 -0
  1823. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/unix/stream.rs +0 -0
  1824. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/unix/ucred.rs +0 -0
  1825. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/windows/mod.rs +0 -0
  1826. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/windows/named_pipe.rs +0 -0
  1827. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/process/kill.rs +0 -0
  1828. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/process/unix/mod.rs +0 -0
  1829. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/process/unix/orphan.rs +0 -0
  1830. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/process/unix/reap.rs +0 -0
  1831. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/process/windows.rs +0 -0
  1832. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/blocking/mod.rs +0 -0
  1833. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/blocking/pool.rs +0 -0
  1834. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/blocking/schedule.rs +0 -0
  1835. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/blocking/shutdown.rs +0 -0
  1836. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/blocking/task.rs +0 -0
  1837. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/config.rs +0 -0
  1838. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/context/blocking.rs +0 -0
  1839. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/context/current.rs +0 -0
  1840. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/context/runtime.rs +0 -0
  1841. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/context/runtime_mt.rs +0 -0
  1842. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/context/scoped.rs +0 -0
  1843. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/context.rs +0 -0
  1844. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/coop.rs +0 -0
  1845. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/driver.rs +0 -0
  1846. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/dump.rs +0 -0
  1847. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/handle.rs +0 -0
  1848. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/id.rs +0 -0
  1849. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/io/driver/signal.rs +0 -0
  1850. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/io/driver.rs +0 -0
  1851. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/io/metrics.rs +0 -0
  1852. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/io/mod.rs +0 -0
  1853. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/io/registration.rs +0 -0
  1854. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/io/registration_set.rs +0 -0
  1855. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/metrics/histogram.rs +0 -0
  1856. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/metrics/io.rs +0 -0
  1857. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/metrics/mod.rs +0 -0
  1858. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/metrics/scheduler.rs +0 -0
  1859. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/mod.rs +0 -0
  1860. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/park.rs +0 -0
  1861. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/process.rs +0 -0
  1862. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/runtime.rs +0 -0
  1863. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/block_in_place.rs +0 -0
  1864. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/defer.rs +0 -0
  1865. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/inject/metrics.rs +0 -0
  1866. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/inject/pop.rs +0 -0
  1867. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/inject/rt_multi_thread.rs +0 -0
  1868. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/inject/shared.rs +0 -0
  1869. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/inject/synced.rs +0 -0
  1870. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/inject.rs +0 -0
  1871. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/lock.rs +0 -0
  1872. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/mod.rs +0 -0
  1873. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread/counters.rs +0 -0
  1874. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread/handle/metrics.rs +0 -0
  1875. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread/handle/taskdump.rs +0 -0
  1876. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread/handle.rs +0 -0
  1877. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread/idle.rs +0 -0
  1878. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread/mod.rs +0 -0
  1879. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread/overflow.rs +0 -0
  1880. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread/park.rs +0 -0
  1881. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread/queue.rs +0 -0
  1882. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread/trace.rs +0 -0
  1883. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread/trace_mock.rs +0 -0
  1884. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread/worker/metrics.rs +0 -0
  1885. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread/worker/taskdump.rs +0 -0
  1886. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread/worker/taskdump_mock.rs +0 -0
  1887. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread/worker.rs +0 -0
  1888. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread_alt/counters.rs +0 -0
  1889. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread_alt/handle/metrics.rs +0 -0
  1890. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread_alt/handle/taskdump.rs +0 -0
  1891. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread_alt/mod.rs +0 -0
  1892. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread_alt/overflow.rs +0 -0
  1893. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread_alt/park.rs +0 -0
  1894. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread_alt/queue.rs +0 -0
  1895. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread_alt/trace.rs +0 -0
  1896. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread_alt/trace_mock.rs +0 -0
  1897. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread_alt/worker/metrics.rs +0 -0
  1898. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread_alt/worker/taskdump.rs +0 -0
  1899. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread_alt/worker/taskdump_mock.rs +0 -0
  1900. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/signal/mod.rs +0 -0
  1901. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/task/abort.rs +0 -0
  1902. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/task/core.rs +0 -0
  1903. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/task/error.rs +0 -0
  1904. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/task/harness.rs +0 -0
  1905. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/task/id.rs +0 -0
  1906. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/task/join.rs +0 -0
  1907. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/task/list.rs +0 -0
  1908. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/task/mod.rs +0 -0
  1909. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/task/raw.rs +0 -0
  1910. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/task/state.rs +0 -0
  1911. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/task/trace/mod.rs +0 -0
  1912. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/task/trace/symbol.rs +0 -0
  1913. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/task/trace/tree.rs +0 -0
  1914. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/task/waker.rs +0 -0
  1915. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/inject.rs +0 -0
  1916. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/loom_blocking.rs +0 -0
  1917. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/loom_current_thread/yield_now.rs +0 -0
  1918. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/loom_current_thread.rs +0 -0
  1919. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/loom_join_set.rs +0 -0
  1920. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/loom_local.rs +0 -0
  1921. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/loom_multi_thread/queue.rs +0 -0
  1922. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/loom_multi_thread/shutdown.rs +0 -0
  1923. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/loom_multi_thread/yield_now.rs +0 -0
  1924. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/loom_multi_thread.rs +0 -0
  1925. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/loom_multi_thread_alt/queue.rs +0 -0
  1926. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/loom_multi_thread_alt/shutdown.rs +0 -0
  1927. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/loom_multi_thread_alt/yield_now.rs +0 -0
  1928. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/loom_multi_thread_alt.rs +0 -0
  1929. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/loom_oneshot.rs +0 -0
  1930. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/mod.rs +0 -0
  1931. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/queue.rs +0 -0
  1932. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/task.rs +0 -0
  1933. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/task_combinations.rs +0 -0
  1934. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/thread_id.rs +0 -0
  1935. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/time/entry.rs +0 -0
  1936. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/time/handle.rs +0 -0
  1937. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/time/mod.rs +0 -0
  1938. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/time/source.rs +0 -0
  1939. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/time/tests/mod.rs +0 -0
  1940. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/time/wheel/level.rs +0 -0
  1941. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/time/wheel/mod.rs +0 -0
  1942. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/signal/ctrl_c.rs +0 -0
  1943. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/signal/mod.rs +0 -0
  1944. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/signal/registry.rs +0 -0
  1945. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/signal/reusable_box.rs +0 -0
  1946. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/signal/unix.rs +0 -0
  1947. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/signal/windows/stub.rs +0 -0
  1948. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/signal/windows/sys.rs +0 -0
  1949. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/signal/windows.rs +0 -0
  1950. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/barrier.rs +0 -0
  1951. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/batch_semaphore.rs +0 -0
  1952. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/mod.rs +0 -0
  1953. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/mpsc/block.rs +0 -0
  1954. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/mpsc/bounded.rs +0 -0
  1955. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/mpsc/chan.rs +0 -0
  1956. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/mpsc/error.rs +0 -0
  1957. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/mpsc/list.rs +0 -0
  1958. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/mpsc/mod.rs +0 -0
  1959. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/mpsc/unbounded.rs +0 -0
  1960. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/mutex.rs +0 -0
  1961. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/notify.rs +0 -0
  1962. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/once_cell.rs +0 -0
  1963. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/oneshot.rs +0 -0
  1964. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/rwlock/owned_read_guard.rs +0 -0
  1965. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/rwlock/owned_write_guard.rs +0 -0
  1966. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/rwlock/owned_write_guard_mapped.rs +0 -0
  1967. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/rwlock/read_guard.rs +0 -0
  1968. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/rwlock/write_guard.rs +0 -0
  1969. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/rwlock/write_guard_mapped.rs +0 -0
  1970. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/rwlock.rs +0 -0
  1971. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/semaphore.rs +0 -0
  1972. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/task/atomic_waker.rs +0 -0
  1973. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/task/mod.rs +0 -0
  1974. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/tests/atomic_waker.rs +0 -0
  1975. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/tests/loom_atomic_waker.rs +0 -0
  1976. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/tests/loom_broadcast.rs +0 -0
  1977. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/tests/loom_list.rs +0 -0
  1978. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/tests/loom_mpsc.rs +0 -0
  1979. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/tests/loom_notify.rs +0 -0
  1980. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/tests/loom_oneshot.rs +0 -0
  1981. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/tests/loom_rwlock.rs +0 -0
  1982. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/tests/loom_semaphore_batch.rs +0 -0
  1983. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/tests/loom_watch.rs +0 -0
  1984. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/tests/mod.rs +0 -0
  1985. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/tests/notify.rs +0 -0
  1986. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/tests/semaphore_batch.rs +0 -0
  1987. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/watch.rs +0 -0
  1988. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/task/blocking.rs +0 -0
  1989. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/task/builder.rs +0 -0
  1990. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/task/consume_budget.rs +0 -0
  1991. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/task/join_set.rs +0 -0
  1992. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/task/local.rs +0 -0
  1993. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/task/mod.rs +0 -0
  1994. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/task/spawn.rs +0 -0
  1995. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/task/task_local.rs +0 -0
  1996. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/task/unconstrained.rs +0 -0
  1997. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/task/yield_now.rs +0 -0
  1998. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/time/clock.rs +0 -0
  1999. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/time/error.rs +0 -0
  2000. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/time/instant.rs +0 -0
  2001. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/time/interval.rs +0 -0
  2002. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/time/mod.rs +0 -0
  2003. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/time/sleep.rs +0 -0
  2004. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/time/timeout.rs +0 -0
  2005. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/atomic_cell.rs +0 -0
  2006. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/bit.rs +0 -0
  2007. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/cacheline.rs +0 -0
  2008. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/error.rs +0 -0
  2009. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/idle_notified_set.rs +0 -0
  2010. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/linked_list.rs +0 -0
  2011. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/markers.rs +0 -0
  2012. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/memchr.rs +0 -0
  2013. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/mod.rs +0 -0
  2014. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/once_cell.rs +0 -0
  2015. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/rand/rt.rs +0 -0
  2016. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/rand/rt_unstable.rs +0 -0
  2017. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/rand.rs +0 -0
  2018. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/rc_cell.rs +0 -0
  2019. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/sync_wrapper.rs +0 -0
  2020. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/trace.rs +0 -0
  2021. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/try_lock.rs +0 -0
  2022. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/wake.rs +0 -0
  2023. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/wake_list.rs +0 -0
  2024. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/_require_full.rs +0 -0
  2025. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/async_send_sync.rs +0 -0
  2026. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/buffered.rs +0 -0
  2027. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/dump.rs +0 -0
  2028. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/fs.rs +0 -0
  2029. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/fs_canonicalize_dir.rs +0 -0
  2030. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/fs_copy.rs +0 -0
  2031. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/fs_dir.rs +0 -0
  2032. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/fs_file.rs +0 -0
  2033. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/fs_link.rs +0 -0
  2034. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/fs_open_options.rs +0 -0
  2035. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/fs_open_options_windows.rs +0 -0
  2036. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/fs_remove_dir_all.rs +0 -0
  2037. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/fs_remove_file.rs +0 -0
  2038. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/fs_rename.rs +0 -0
  2039. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/fs_symlink_dir_windows.rs +0 -0
  2040. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/fs_symlink_file_windows.rs +0 -0
  2041. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/fs_try_exists.rs +0 -0
  2042. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_async_read.rs +0 -0
  2043. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_buf_reader.rs +0 -0
  2044. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_buf_writer.rs +0 -0
  2045. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_chain.rs +0 -0
  2046. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_copy.rs +0 -0
  2047. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_copy_bidirectional.rs +0 -0
  2048. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_driver.rs +0 -0
  2049. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_driver_drop.rs +0 -0
  2050. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_fill_buf.rs +0 -0
  2051. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_lines.rs +0 -0
  2052. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_mem_stream.rs +0 -0
  2053. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_panic.rs +0 -0
  2054. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_poll_aio.rs +0 -0
  2055. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_read.rs +0 -0
  2056. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_read_buf.rs +0 -0
  2057. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_read_exact.rs +0 -0
  2058. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_read_line.rs +0 -0
  2059. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_read_to_end.rs +0 -0
  2060. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_read_to_string.rs +0 -0
  2061. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_read_until.rs +0 -0
  2062. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_take.rs +0 -0
  2063. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_util_empty.rs +0 -0
  2064. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_write.rs +0 -0
  2065. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_write_all.rs +0 -0
  2066. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_write_all_buf.rs +0 -0
  2067. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_write_buf.rs +0 -0
  2068. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_write_int.rs +0 -0
  2069. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/join_handle_panic.rs +0 -0
  2070. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/macros_join.rs +0 -0
  2071. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/macros_pin.rs +0 -0
  2072. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/macros_rename_test.rs +0 -0
  2073. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/macros_select.rs +0 -0
  2074. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/macros_test.rs +0 -0
  2075. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/macros_try_join.rs +0 -0
  2076. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/net_bind_resource.rs +0 -0
  2077. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/net_lookup_host.rs +0 -0
  2078. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/net_named_pipe.rs +0 -0
  2079. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/net_panic.rs +0 -0
  2080. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/net_unix_pipe.rs +0 -0
  2081. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/no_rt.rs +0 -0
  2082. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/process_arg0.rs +0 -0
  2083. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/process_issue_2174.rs +0 -0
  2084. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/process_issue_42.rs +0 -0
  2085. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/process_kill_on_drop.rs +0 -0
  2086. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/process_raw_handle.rs +0 -0
  2087. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/process_smoke.rs +0 -0
  2088. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/rt_basic.rs +0 -0
  2089. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/rt_common.rs +0 -0
  2090. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/rt_handle.rs +0 -0
  2091. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/rt_handle_block_on.rs +0 -0
  2092. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/rt_panic.rs +0 -0
  2093. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/rt_threaded.rs +0 -0
  2094. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/rt_threaded_alt.rs +0 -0
  2095. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/rt_time_start_paused.rs +0 -0
  2096. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/signal_ctrl_c.rs +0 -0
  2097. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/signal_drop_recv.rs +0 -0
  2098. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/signal_drop_rt.rs +0 -0
  2099. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/signal_drop_signal.rs +0 -0
  2100. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/signal_multi_rt.rs +0 -0
  2101. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/signal_no_rt.rs +0 -0
  2102. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/signal_notify_both.rs +0 -0
  2103. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/signal_panic.rs +0 -0
  2104. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/signal_twice.rs +0 -0
  2105. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/signal_usr1.rs +0 -0
  2106. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/support/io_vec.rs +0 -0
  2107. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/support/leaked_buffers.rs +0 -0
  2108. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/support/mpsc_stream.rs +0 -0
  2109. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/support/panic.rs +0 -0
  2110. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/support/signal.rs +0 -0
  2111. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/sync_barrier.rs +0 -0
  2112. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/sync_broadcast.rs +0 -0
  2113. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/sync_errors.rs +0 -0
  2114. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/sync_mpsc.rs +0 -0
  2115. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/sync_mpsc_weak.rs +0 -0
  2116. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/sync_mutex.rs +0 -0
  2117. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/sync_mutex_owned.rs +0 -0
  2118. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/sync_notify.rs +0 -0
  2119. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/sync_once_cell.rs +0 -0
  2120. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/sync_oneshot.rs +0 -0
  2121. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/sync_panic.rs +0 -0
  2122. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/sync_rwlock.rs +0 -0
  2123. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/sync_semaphore.rs +0 -0
  2124. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/sync_semaphore_owned.rs +0 -0
  2125. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/sync_watch.rs +0 -0
  2126. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/task_abort.rs +0 -0
  2127. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/task_blocking.rs +0 -0
  2128. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/task_builder.rs +0 -0
  2129. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/task_id.rs +0 -0
  2130. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/task_join_set.rs +0 -0
  2131. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/task_local.rs +0 -0
  2132. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/task_local_set.rs +0 -0
  2133. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/task_panic.rs +0 -0
  2134. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/task_yield_now.rs +0 -0
  2135. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/tcp_accept.rs +0 -0
  2136. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/tcp_connect.rs +0 -0
  2137. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/tcp_echo.rs +0 -0
  2138. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/tcp_into_split.rs +0 -0
  2139. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/tcp_into_std.rs +0 -0
  2140. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/tcp_peek.rs +0 -0
  2141. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/tcp_shutdown.rs +0 -0
  2142. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/tcp_socket.rs +0 -0
  2143. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/tcp_split.rs +0 -0
  2144. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/tcp_stream.rs +0 -0
  2145. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/test_clock.rs +0 -0
  2146. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/time_interval.rs +0 -0
  2147. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/time_panic.rs +0 -0
  2148. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/time_pause.rs +0 -0
  2149. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/time_rt.rs +0 -0
  2150. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/time_sleep.rs +0 -0
  2151. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/time_timeout.rs +0 -0
  2152. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/udp.rs +0 -0
  2153. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/uds_cred.rs +0 -0
  2154. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/uds_datagram.rs +0 -0
  2155. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/uds_split.rs +0 -0
  2156. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/uds_stream.rs +0 -0
  2157. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/unwindsafe.rs +0 -0
  2158. /data/ext/cargo-vendor/{unicase-2.6.0 → unicase-2.7.0}/LICENSE-MIT +0 -0
  2159. /data/ext/cargo-vendor/{unicase-2.6.0 → unicase-2.7.0}/build.rs +0 -0
  2160. /data/ext/cargo-vendor/{wasi-cap-std-sync-10.0.1 → wasi-cap-std-sync-11.0.0}/LICENSE +0 -0
  2161. /data/ext/cargo-vendor/{wasi-cap-std-sync-10.0.1 → wasi-cap-std-sync-11.0.0}/README.md +0 -0
  2162. /data/ext/cargo-vendor/{wasi-cap-std-sync-10.0.1 → wasi-cap-std-sync-11.0.0}/src/clocks.rs +0 -0
  2163. /data/ext/cargo-vendor/{wasi-cap-std-sync-10.0.1 → wasi-cap-std-sync-11.0.0}/src/dir.rs +0 -0
  2164. /data/ext/cargo-vendor/{wasi-cap-std-sync-10.0.1 → wasi-cap-std-sync-11.0.0}/src/file.rs +0 -0
  2165. /data/ext/cargo-vendor/{wasi-cap-std-sync-10.0.1 → wasi-cap-std-sync-11.0.0}/src/lib.rs +0 -0
  2166. /data/ext/cargo-vendor/{wasi-cap-std-sync-10.0.1 → wasi-cap-std-sync-11.0.0}/src/net.rs +0 -0
  2167. /data/ext/cargo-vendor/{wasi-cap-std-sync-10.0.1 → wasi-cap-std-sync-11.0.0}/src/sched/unix.rs +0 -0
  2168. /data/ext/cargo-vendor/{wasi-cap-std-sync-10.0.1 → wasi-cap-std-sync-11.0.0}/src/sched/windows.rs +0 -0
  2169. /data/ext/cargo-vendor/{wasi-cap-std-sync-10.0.1 → wasi-cap-std-sync-11.0.0}/src/sched.rs +0 -0
  2170. /data/ext/cargo-vendor/{wasi-cap-std-sync-10.0.1 → wasi-cap-std-sync-11.0.0}/src/stdio.rs +0 -0
  2171. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/LICENSE +0 -0
  2172. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/README.md +0 -0
  2173. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/README.md +0 -0
  2174. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/docs/README.md +0 -0
  2175. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/phases/README.md +0 -0
  2176. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/phases/ephemeral/docs.md +0 -0
  2177. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/phases/ephemeral/witx/typenames.witx +0 -0
  2178. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_args.witx +0 -0
  2179. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_clock.witx +0 -0
  2180. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_environ.witx +0 -0
  2181. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_fd.witx +0 -0
  2182. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_path.witx +0 -0
  2183. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_poll.witx +0 -0
  2184. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_proc.witx +0 -0
  2185. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_random.witx +0 -0
  2186. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_sched.witx +0 -0
  2187. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_sock.witx +0 -0
  2188. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/phases/old/snapshot_0/docs.md +0 -0
  2189. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/phases/old/snapshot_0/witx/typenames.witx +0 -0
  2190. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/phases/old/snapshot_0/witx/wasi_unstable.witx +0 -0
  2191. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/phases/snapshot/docs.html +0 -0
  2192. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/phases/snapshot/docs.md +0 -0
  2193. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/phases/snapshot/witx/typenames.witx +0 -0
  2194. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/phases/snapshot/witx/wasi_snapshot_preview1.witx +0 -0
  2195. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/proposal-template/README.md +0 -0
  2196. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/proposals/README.md +0 -0
  2197. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/snapshots/README.md +0 -0
  2198. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/standard/README.md +0 -0
  2199. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/build.rs +0 -0
  2200. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/src/clocks.rs +0 -0
  2201. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/src/ctx.rs +0 -0
  2202. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/src/dir.rs +0 -0
  2203. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/src/error.rs +0 -0
  2204. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/src/file.rs +0 -0
  2205. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/src/lib.rs +0 -0
  2206. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/src/pipe.rs +0 -0
  2207. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/src/random.rs +0 -0
  2208. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/src/sched/subscription.rs +0 -0
  2209. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/src/sched.rs +0 -0
  2210. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/src/snapshots/mod.rs +0 -0
  2211. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/src/snapshots/preview_0.rs +0 -0
  2212. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/src/snapshots/preview_1/error.rs +0 -0
  2213. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/src/snapshots/preview_1.rs +0 -0
  2214. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/src/string_array.rs +0 -0
  2215. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/src/table.rs +0 -0
  2216. /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/LICENSE +0 -0
  2217. /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/README.md +0 -0
  2218. /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/code.rs +0 -0
  2219. /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/compiler.rs +0 -0
  2220. /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/component/linker.rs +0 -0
  2221. /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/component/matching.rs +0 -0
  2222. /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/component/store.rs +0 -0
  2223. /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/engine/serialization.rs +0 -0
  2224. /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/externals.rs +0 -0
  2225. /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/func/typed.rs +0 -0
  2226. /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/func.rs +0 -0
  2227. /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/instance.rs +0 -0
  2228. /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/lib.rs +0 -0
  2229. /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/limits.rs +0 -0
  2230. /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/linker.rs +0 -0
  2231. /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/memory.rs +0 -0
  2232. /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/module/registry.rs +0 -0
  2233. /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/module.rs +0 -0
  2234. /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/profiling.rs +0 -0
  2235. /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/ref.rs +0 -0
  2236. /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/signatures.rs +0 -0
  2237. /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/store/context.rs +0 -0
  2238. /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/store/data.rs +0 -0
  2239. /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/store/func_refs.rs +0 -0
  2240. /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/store.rs +0 -0
  2241. /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/trampoline/func.rs +0 -0
  2242. /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/trampoline/global.rs +0 -0
  2243. /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/trampoline/memory.rs +0 -0
  2244. /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/trampoline/table.rs +0 -0
  2245. /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/trampoline.rs +0 -0
  2246. /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/trap.rs +0 -0
  2247. /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/types/matching.rs +0 -0
  2248. /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/types.rs +0 -0
  2249. /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/unix.rs +0 -0
  2250. /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/values.rs +0 -0
  2251. /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/windows.rs +0 -0
  2252. /data/ext/cargo-vendor/{wasmtime-asm-macros-10.0.1 → wasmtime-asm-macros-11.0.0}/src/lib.rs +0 -0
  2253. /data/ext/cargo-vendor/{wasmtime-cache-10.0.1 → wasmtime-cache-11.0.0}/LICENSE +0 -0
  2254. /data/ext/cargo-vendor/{wasmtime-cache-10.0.1 → wasmtime-cache-11.0.0}/build.rs +0 -0
  2255. /data/ext/cargo-vendor/{wasmtime-cache-10.0.1 → wasmtime-cache-11.0.0}/src/config/tests.rs +0 -0
  2256. /data/ext/cargo-vendor/{wasmtime-cache-10.0.1 → wasmtime-cache-11.0.0}/src/config.rs +0 -0
  2257. /data/ext/cargo-vendor/{wasmtime-cache-10.0.1 → wasmtime-cache-11.0.0}/src/lib.rs +0 -0
  2258. /data/ext/cargo-vendor/{wasmtime-cache-10.0.1 → wasmtime-cache-11.0.0}/src/tests.rs +0 -0
  2259. /data/ext/cargo-vendor/{wasmtime-cache-10.0.1 → wasmtime-cache-11.0.0}/src/worker/tests/system_time_stub.rs +0 -0
  2260. /data/ext/cargo-vendor/{wasmtime-cache-10.0.1 → wasmtime-cache-11.0.0}/src/worker/tests.rs +0 -0
  2261. /data/ext/cargo-vendor/{wasmtime-cache-10.0.1 → wasmtime-cache-11.0.0}/src/worker.rs +0 -0
  2262. /data/ext/cargo-vendor/{wasmtime-cache-10.0.1 → wasmtime-cache-11.0.0}/tests/cache_write_default_config.rs +0 -0
  2263. /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/src/lib.rs +0 -0
  2264. /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/char.wit +0 -0
  2265. /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/conventions.wit +0 -0
  2266. /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/direct-import.wit +0 -0
  2267. /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/empty.wit +0 -0
  2268. /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/flags.wit +0 -0
  2269. /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/floats.wit +0 -0
  2270. /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/function-new.wit +0 -0
  2271. /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/integers.wit +0 -0
  2272. /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/lists.wit +0 -0
  2273. /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/many-arguments.wit +0 -0
  2274. /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/multi-return.wit +0 -0
  2275. /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/records.wit +0 -0
  2276. /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/rename.wit +0 -0
  2277. /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/share-types.wit +0 -0
  2278. /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/simple-functions.wit +0 -0
  2279. /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/simple-lists.wit +0 -0
  2280. /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/simple-wasi.wit +0 -0
  2281. /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/small-anonymous.wit +0 -0
  2282. /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/smoke-default.wit +0 -0
  2283. /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/smoke-export.wit +0 -0
  2284. /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/smoke.wit +0 -0
  2285. /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/strings.wit +0 -0
  2286. /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/unions.wit +0 -0
  2287. /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/use-paths.wit +0 -0
  2288. /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/variants.wit +0 -0
  2289. /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/worlds-with-types.wit +0 -0
  2290. /data/ext/cargo-vendor/{wasmtime-component-util-10.0.1 → wasmtime-component-util-11.0.0}/src/lib.rs +0 -0
  2291. /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-11.0.0}/LICENSE +0 -0
  2292. /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-11.0.0}/SECURITY.md +0 -0
  2293. /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-11.0.0}/src/builder.rs +0 -0
  2294. /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-11.0.0}/src/debug/gc.rs +0 -0
  2295. /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-11.0.0}/src/debug/transform/address_transform.rs +0 -0
  2296. /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-11.0.0}/src/debug/transform/attr.rs +0 -0
  2297. /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-11.0.0}/src/debug/transform/expression.rs +0 -0
  2298. /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-11.0.0}/src/debug/transform/line_program.rs +0 -0
  2299. /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-11.0.0}/src/debug/transform/mod.rs +0 -0
  2300. /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-11.0.0}/src/debug/transform/range_info_builder.rs +0 -0
  2301. /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-11.0.0}/src/debug/transform/refs.rs +0 -0
  2302. /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-11.0.0}/src/debug/transform/simulate.rs +0 -0
  2303. /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-11.0.0}/src/debug/transform/unit.rs +0 -0
  2304. /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-11.0.0}/src/debug/transform/utils.rs +0 -0
  2305. /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-11.0.0}/src/debug/write_debuginfo.rs +0 -0
  2306. /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-11.0.0}/src/debug.rs +0 -0
  2307. /data/ext/cargo-vendor/{wasmtime-cranelift-shared-10.0.1 → wasmtime-cranelift-shared-11.0.0}/src/compiled_function.rs +0 -0
  2308. /data/ext/cargo-vendor/{wasmtime-cranelift-shared-10.0.1 → wasmtime-cranelift-shared-11.0.0}/src/isa_builder.rs +0 -0
  2309. /data/ext/cargo-vendor/{wasmtime-cranelift-shared-10.0.1 → wasmtime-cranelift-shared-11.0.0}/src/lib.rs +0 -0
  2310. /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/LICENSE +0 -0
  2311. /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/address_map.rs +0 -0
  2312. /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/builtin.rs +0 -0
  2313. /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/compilation.rs +0 -0
  2314. /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/component/compiler.rs +0 -0
  2315. /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/component/dfg.rs +0 -0
  2316. /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/component/translate/adapt.rs +0 -0
  2317. /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/component/vmcomponent_offsets.rs +0 -0
  2318. /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/component.rs +0 -0
  2319. /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/fact/core_types.rs +0 -0
  2320. /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/fact/transcode.rs +0 -0
  2321. /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/fact/traps.rs +0 -0
  2322. /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/fact.rs +0 -0
  2323. /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/lib.rs +0 -0
  2324. /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/module.rs +0 -0
  2325. /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/module_environ.rs +0 -0
  2326. /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/module_types.rs +0 -0
  2327. /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/ref_bits.rs +0 -0
  2328. /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/scopevec.rs +0 -0
  2329. /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/stack_map.rs +0 -0
  2330. /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/trap_encoding.rs +0 -0
  2331. /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/tunables.rs +0 -0
  2332. /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/vmoffsets.rs +0 -0
  2333. /data/ext/cargo-vendor/{wasmtime-fiber-10.0.1 → wasmtime-fiber-11.0.0}/LICENSE +0 -0
  2334. /data/ext/cargo-vendor/{wasmtime-fiber-10.0.1 → wasmtime-fiber-11.0.0}/build.rs +0 -0
  2335. /data/ext/cargo-vendor/{wasmtime-fiber-10.0.1 → wasmtime-fiber-11.0.0}/src/lib.rs +0 -0
  2336. /data/ext/cargo-vendor/{wasmtime-fiber-10.0.1 → wasmtime-fiber-11.0.0}/src/unix/aarch64.rs +0 -0
  2337. /data/ext/cargo-vendor/{wasmtime-fiber-10.0.1 → wasmtime-fiber-11.0.0}/src/unix/arm.rs +0 -0
  2338. /data/ext/cargo-vendor/{wasmtime-fiber-10.0.1 → wasmtime-fiber-11.0.0}/src/unix/riscv64.rs +0 -0
  2339. /data/ext/cargo-vendor/{wasmtime-fiber-10.0.1 → wasmtime-fiber-11.0.0}/src/unix/s390x.S +0 -0
  2340. /data/ext/cargo-vendor/{wasmtime-fiber-10.0.1 → wasmtime-fiber-11.0.0}/src/unix/x86.rs +0 -0
  2341. /data/ext/cargo-vendor/{wasmtime-fiber-10.0.1 → wasmtime-fiber-11.0.0}/src/unix/x86_64.rs +0 -0
  2342. /data/ext/cargo-vendor/{wasmtime-fiber-10.0.1 → wasmtime-fiber-11.0.0}/src/unix.rs +0 -0
  2343. /data/ext/cargo-vendor/{wasmtime-fiber-10.0.1 → wasmtime-fiber-11.0.0}/src/windows.c +0 -0
  2344. /data/ext/cargo-vendor/{wasmtime-fiber-10.0.1 → wasmtime-fiber-11.0.0}/src/windows.rs +0 -0
  2345. /data/ext/cargo-vendor/{wasmtime-jit-10.0.1 → wasmtime-jit-11.0.0}/LICENSE +0 -0
  2346. /data/ext/cargo-vendor/{wasmtime-jit-10.0.1 → wasmtime-jit-11.0.0}/src/debug.rs +0 -0
  2347. /data/ext/cargo-vendor/{wasmtime-jit-10.0.1 → wasmtime-jit-11.0.0}/src/demangling.rs +0 -0
  2348. /data/ext/cargo-vendor/{wasmtime-jit-10.0.1 → wasmtime-jit-11.0.0}/src/instantiate.rs +0 -0
  2349. /data/ext/cargo-vendor/{wasmtime-jit-10.0.1 → wasmtime-jit-11.0.0}/src/lib.rs +0 -0
  2350. /data/ext/cargo-vendor/{wasmtime-jit-10.0.1 → wasmtime-jit-11.0.0}/src/profiling/jitdump.rs +0 -0
  2351. /data/ext/cargo-vendor/{wasmtime-jit-10.0.1 → wasmtime-jit-11.0.0}/src/profiling/perfmap.rs +0 -0
  2352. /data/ext/cargo-vendor/{wasmtime-jit-10.0.1 → wasmtime-jit-11.0.0}/src/profiling/vtune.rs +0 -0
  2353. /data/ext/cargo-vendor/{wasmtime-jit-10.0.1 → wasmtime-jit-11.0.0}/src/profiling.rs +0 -0
  2354. /data/ext/cargo-vendor/{wasmtime-jit-10.0.1 → wasmtime-jit-11.0.0}/src/unwind/miri.rs +0 -0
  2355. /data/ext/cargo-vendor/{wasmtime-jit-10.0.1 → wasmtime-jit-11.0.0}/src/unwind/systemv.rs +0 -0
  2356. /data/ext/cargo-vendor/{wasmtime-jit-10.0.1 → wasmtime-jit-11.0.0}/src/unwind/winx64.rs +0 -0
  2357. /data/ext/cargo-vendor/{wasmtime-jit-10.0.1 → wasmtime-jit-11.0.0}/src/unwind.rs +0 -0
  2358. /data/ext/cargo-vendor/{wasmtime-jit-debug-10.0.1 → wasmtime-jit-debug-11.0.0}/README.md +0 -0
  2359. /data/ext/cargo-vendor/{wasmtime-jit-debug-10.0.1 → wasmtime-jit-debug-11.0.0}/src/gdb_jit_int.rs +0 -0
  2360. /data/ext/cargo-vendor/{wasmtime-jit-debug-10.0.1 → wasmtime-jit-debug-11.0.0}/src/lib.rs +0 -0
  2361. /data/ext/cargo-vendor/{wasmtime-jit-debug-10.0.1 → wasmtime-jit-debug-11.0.0}/src/perf_jitdump.rs +0 -0
  2362. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-10.0.1 → wasmtime-jit-icache-coherence-11.0.0}/src/lib.rs +0 -0
  2363. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-10.0.1 → wasmtime-jit-icache-coherence-11.0.0}/src/libc.rs +0 -0
  2364. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-10.0.1 → wasmtime-jit-icache-coherence-11.0.0}/src/miri.rs +0 -0
  2365. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-10.0.1 → wasmtime-jit-icache-coherence-11.0.0}/src/win.rs +0 -0
  2366. /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/LICENSE +0 -0
  2367. /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/build.rs +0 -0
  2368. /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/component/transcode.rs +0 -0
  2369. /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/cow.rs +0 -0
  2370. /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/debug_builtins.rs +0 -0
  2371. /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/export.rs +0 -0
  2372. /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/externref.rs +0 -0
  2373. /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/helpers.c +0 -0
  2374. /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/imports.rs +0 -0
  2375. /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/instance/allocator/pooling/index_allocator.rs +0 -0
  2376. /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/instance/allocator/pooling/unix.rs +0 -0
  2377. /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/instance/allocator/pooling/windows.rs +0 -0
  2378. /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/instance/allocator/pooling.rs +0 -0
  2379. /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/instance/allocator.rs +0 -0
  2380. /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/instance.rs +0 -0
  2381. /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/lib.rs +0 -0
  2382. /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/memory.rs +0 -0
  2383. /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/mmap/miri.rs +0 -0
  2384. /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/mmap/unix.rs +0 -0
  2385. /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/mmap/windows.rs +0 -0
  2386. /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/mmap.rs +0 -0
  2387. /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/mmap_vec.rs +0 -0
  2388. /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/module_id.rs +0 -0
  2389. /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/parking_spot.rs +0 -0
  2390. /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/send_sync_ptr.rs +0 -0
  2391. /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/store_box.rs +0 -0
  2392. /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/table.rs +0 -0
  2393. /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/trampolines/aarch64.rs +0 -0
  2394. /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/trampolines/riscv64.rs +0 -0
  2395. /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/trampolines/s390x.S +0 -0
  2396. /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/trampolines/s390x.rs +0 -0
  2397. /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/trampolines/x86_64.rs +0 -0
  2398. /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/trampolines.rs +0 -0
  2399. /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/traphandlers/backtrace/aarch64.rs +0 -0
  2400. /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/traphandlers/backtrace/riscv64.rs +0 -0
  2401. /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/traphandlers/backtrace/s390x.rs +0 -0
  2402. /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/traphandlers/backtrace/x86_64.rs +0 -0
  2403. /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/traphandlers/backtrace.rs +0 -0
  2404. /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/traphandlers/macos.rs +0 -0
  2405. /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/traphandlers/unix.rs +0 -0
  2406. /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/traphandlers/windows.rs +0 -0
  2407. /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/traphandlers.rs +0 -0
  2408. /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/vmcontext/vm_host_func_context.rs +0 -0
  2409. /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/vmcontext.rs +0 -0
  2410. /data/ext/cargo-vendor/{wasmtime-types-10.0.1 → wasmtime-types-11.0.1}/LICENSE +0 -0
  2411. /data/ext/cargo-vendor/{wasmtime-types-10.0.1 → wasmtime-types-11.0.1}/src/error.rs +0 -0
  2412. /data/ext/cargo-vendor/{wasmtime-types-10.0.1 → wasmtime-types-11.0.1}/src/lib.rs +0 -0
  2413. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/LICENSE +0 -0
  2414. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/README.md +0 -0
  2415. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/build.rs +0 -0
  2416. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/src/lib.rs +0 -0
  2417. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/src/preview2/error.rs +0 -0
  2418. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/src/preview2/filesystem.rs +0 -0
  2419. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/src/preview2/preview1/mod.rs +0 -0
  2420. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/src/preview2/preview2/env.rs +0 -0
  2421. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/src/preview2/preview2/exit.rs +0 -0
  2422. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/src/preview2/preview2/filesystem.rs +0 -0
  2423. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/src/preview2/preview2/io.rs +0 -0
  2424. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/src/preview2/preview2/mod.rs +0 -0
  2425. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/src/preview2/preview2/random.rs +0 -0
  2426. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/src/preview2/random.rs +0 -0
  2427. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/src/preview2/stdio.rs +0 -0
  2428. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/src/preview2/stream.rs +0 -0
  2429. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/src/preview2/table.rs +0 -0
  2430. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/src/preview2/wasi/command.rs +0 -0
  2431. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/src/preview2/wasi/mod.rs +0 -0
  2432. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/clocks/monotonic-clock.wit +0 -0
  2433. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/clocks/timezone.wit +0 -0
  2434. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/clocks/wall-clock.wit +0 -0
  2435. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/filesystem/filesystem.wit +0 -0
  2436. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/http/incoming-handler.wit +0 -0
  2437. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/http/outgoing-handler.wit +0 -0
  2438. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/http/types.wit +0 -0
  2439. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/io/streams.wit +0 -0
  2440. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/logging/handler.wit +0 -0
  2441. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/preview/command-extended.wit +0 -0
  2442. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/preview/command.wit +0 -0
  2443. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/preview/proxy.wit +0 -0
  2444. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/preview/reactor.wit +0 -0
  2445. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/random/insecure-seed.wit +0 -0
  2446. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/random/insecure.wit +0 -0
  2447. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/random/random.wit +0 -0
  2448. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/sockets/instance-network.wit +0 -0
  2449. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/sockets/ip-name-lookup.wit +0 -0
  2450. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/sockets/network.wit +0 -0
  2451. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/sockets/tcp-create-socket.wit +0 -0
  2452. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/sockets/tcp.wit +0 -0
  2453. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/sockets/udp-create-socket.wit +0 -0
  2454. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/sockets/udp.wit +0 -0
  2455. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/wasi-cli-base/environment.wit +0 -0
  2456. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/wasi-cli-base/exit.wit +0 -0
  2457. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/wasi-cli-base/preopens.wit +0 -0
  2458. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/wasi-cli-base/stdio.wit +0 -0
  2459. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/main.wit +0 -0
  2460. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/test.wit +0 -0
  2461. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/witx/typenames.witx +0 -0
  2462. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/witx/wasi_snapshot_preview1.witx +0 -0
  2463. /data/ext/cargo-vendor/{wasmtime-winch-10.0.1 → wasmtime-winch-11.0.0}/LICENSE +0 -0
  2464. /data/ext/cargo-vendor/{wasmtime-winch-10.0.1 → wasmtime-winch-11.0.0}/src/builder.rs +0 -0
  2465. /data/ext/cargo-vendor/{wasmtime-winch-10.0.1 → wasmtime-winch-11.0.0}/src/compiler.rs +0 -0
  2466. /data/ext/cargo-vendor/{wasmtime-winch-10.0.1 → wasmtime-winch-11.0.0}/src/lib.rs +0 -0
  2467. /data/ext/cargo-vendor/{wasmtime-wit-bindgen-10.0.1 → wasmtime-wit-bindgen-11.0.0}/src/source.rs +0 -0
  2468. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/LICENSE +0 -0
  2469. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/README.md +0 -0
  2470. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/component/alias.rs +0 -0
  2471. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/component/binary.rs +0 -0
  2472. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/component/component.rs +0 -0
  2473. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/component/custom.rs +0 -0
  2474. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/component/expand.rs +0 -0
  2475. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/component/export.rs +0 -0
  2476. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/component/func.rs +0 -0
  2477. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/component/import.rs +0 -0
  2478. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/component/instance.rs +0 -0
  2479. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/component/item_ref.rs +0 -0
  2480. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/component/module.rs +0 -0
  2481. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/component/resolve.rs +0 -0
  2482. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/component/types.rs +0 -0
  2483. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/component/wast.rs +0 -0
  2484. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/component.rs +0 -0
  2485. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/core/export.rs +0 -0
  2486. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/core/expr.rs +0 -0
  2487. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/core/global.rs +0 -0
  2488. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/core/import.rs +0 -0
  2489. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/core/memory.rs +0 -0
  2490. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/core/resolve/deinline_import_export.rs +0 -0
  2491. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/core/resolve/mod.rs +0 -0
  2492. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/core/resolve/names.rs +0 -0
  2493. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/core/resolve/types.rs +0 -0
  2494. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/core/table.rs +0 -0
  2495. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/core/tag.rs +0 -0
  2496. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/core/types.rs +0 -0
  2497. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/core/wast.rs +0 -0
  2498. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/core.rs +0 -0
  2499. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/error.rs +0 -0
  2500. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/gensym.rs +0 -0
  2501. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/lexer.rs +0 -0
  2502. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/names.rs +0 -0
  2503. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/parser.rs +0 -0
  2504. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/token.rs +0 -0
  2505. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/wast.rs +0 -0
  2506. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/wat.rs +0 -0
  2507. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/annotations.rs +0 -0
  2508. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/comments.rs +0 -0
  2509. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/bad-core-func-alias.wat +0 -0
  2510. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/bad-core-func-alias.wat.err +0 -0
  2511. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/bad-func-alias.wat +0 -0
  2512. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/bad-func-alias.wat.err +0 -0
  2513. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/bad-index.wat +0 -0
  2514. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/bad-index.wat.err +0 -0
  2515. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/bad-name.wat +0 -0
  2516. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/bad-name.wat.err +0 -0
  2517. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/bad-name2.wat +0 -0
  2518. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/bad-name2.wat.err +0 -0
  2519. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/bad-name3.wat +0 -0
  2520. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/bad-name3.wat.err +0 -0
  2521. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/block1.wat +0 -0
  2522. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/block1.wat.err +0 -0
  2523. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/block2.wat +0 -0
  2524. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/block2.wat.err +0 -0
  2525. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/block3.wat +0 -0
  2526. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/block3.wat.err +0 -0
  2527. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment0.wat +0 -0
  2528. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment0.wat.err +0 -0
  2529. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment1.wat +0 -0
  2530. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment1.wat.err +0 -0
  2531. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment2.wat +0 -0
  2532. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment2.wat.err +0 -0
  2533. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment3.wat +0 -0
  2534. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment3.wat.err +0 -0
  2535. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment4.wat +0 -0
  2536. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment4.wat.err +0 -0
  2537. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment5.wat +0 -0
  2538. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment5.wat.err +0 -0
  2539. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment6.wat +0 -0
  2540. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment6.wat.err +0 -0
  2541. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment7.wat +0 -0
  2542. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment7.wat.err +0 -0
  2543. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment8.wat +0 -0
  2544. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment8.wat.err +0 -0
  2545. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment0.wat +0 -0
  2546. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment0.wat.err +0 -0
  2547. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment1.wat +0 -0
  2548. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment1.wat.err +0 -0
  2549. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment2.wat +0 -0
  2550. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment2.wat.err +0 -0
  2551. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment3.wat +0 -0
  2552. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment3.wat.err +0 -0
  2553. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment4.wat +0 -0
  2554. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment4.wat.err +0 -0
  2555. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment5.wat +0 -0
  2556. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment5.wat.err +0 -0
  2557. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment6.wat +0 -0
  2558. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment6.wat.err +0 -0
  2559. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment7.wat +0 -0
  2560. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment7.wat.err +0 -0
  2561. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment8.wat +0 -0
  2562. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment8.wat.err +0 -0
  2563. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string0.wat +0 -0
  2564. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string0.wat.err +0 -0
  2565. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string1.wat +0 -0
  2566. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string1.wat.err +0 -0
  2567. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string2.wat +0 -0
  2568. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string2.wat.err +0 -0
  2569. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string3.wat +0 -0
  2570. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string3.wat.err +0 -0
  2571. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string4.wat +0 -0
  2572. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string4.wat.err +0 -0
  2573. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string5.wat +0 -0
  2574. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string5.wat.err +0 -0
  2575. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string6.wat +0 -0
  2576. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string6.wat.err +0 -0
  2577. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string7.wat +0 -0
  2578. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string7.wat.err +0 -0
  2579. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string8.wat +0 -0
  2580. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string8.wat.err +0 -0
  2581. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/inline1.wat +0 -0
  2582. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/inline1.wat.err +0 -0
  2583. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/newline-in-string.wat +0 -0
  2584. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/newline-in-string.wat.err +0 -0
  2585. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string1.wat +0 -0
  2586. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string1.wat.err +0 -0
  2587. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string10.wat +0 -0
  2588. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string10.wat.err +0 -0
  2589. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string11.wat +0 -0
  2590. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string11.wat.err +0 -0
  2591. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string12.wat +0 -0
  2592. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string12.wat.err +0 -0
  2593. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string13.wat +0 -0
  2594. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string13.wat.err +0 -0
  2595. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string14.wat +0 -0
  2596. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string14.wat.err +0 -0
  2597. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string15.wat +0 -0
  2598. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string15.wat.err +0 -0
  2599. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string16.wat +0 -0
  2600. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string16.wat.err +0 -0
  2601. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string2.wat +0 -0
  2602. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string2.wat.err +0 -0
  2603. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string3.wat +0 -0
  2604. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string3.wat.err +0 -0
  2605. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string4.wat +0 -0
  2606. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string4.wat.err +0 -0
  2607. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string5.wat +0 -0
  2608. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string5.wat.err +0 -0
  2609. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string6.wat +0 -0
  2610. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string6.wat.err +0 -0
  2611. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string7.wat +0 -0
  2612. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string7.wat.err +0 -0
  2613. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string8.wat +0 -0
  2614. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string8.wat.err +0 -0
  2615. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string9.wat +0 -0
  2616. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string9.wat.err +0 -0
  2617. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/unbalanced.wat +0 -0
  2618. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/unbalanced.wat.err +0 -0
  2619. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail.rs +0 -0
  2620. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/recursive.rs +0 -0
  2621. /data/ext/cargo-vendor/{wat-1.0.69 → wat-1.0.70}/LICENSE +0 -0
  2622. /data/ext/cargo-vendor/{wat-1.0.69 → wat-1.0.70}/README.md +0 -0
  2623. /data/ext/cargo-vendor/{wat-1.0.69 → wat-1.0.70}/src/lib.rs +0 -0
  2624. /data/ext/cargo-vendor/{wiggle-10.0.1 → wiggle-11.0.0}/LICENSE +0 -0
  2625. /data/ext/cargo-vendor/{wiggle-10.0.1 → wiggle-11.0.0}/README.md +0 -0
  2626. /data/ext/cargo-vendor/{wiggle-10.0.1 → wiggle-11.0.0}/src/borrow.rs +0 -0
  2627. /data/ext/cargo-vendor/{wiggle-10.0.1 → wiggle-11.0.0}/src/error.rs +0 -0
  2628. /data/ext/cargo-vendor/{wiggle-10.0.1 → wiggle-11.0.0}/src/guest_type.rs +0 -0
  2629. /data/ext/cargo-vendor/{wiggle-10.0.1 → wiggle-11.0.0}/src/lib.rs +0 -0
  2630. /data/ext/cargo-vendor/{wiggle-10.0.1 → wiggle-11.0.0}/src/region.rs +0 -0
  2631. /data/ext/cargo-vendor/{wiggle-10.0.1 → wiggle-11.0.0}/src/wasmtime.rs +0 -0
  2632. /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-11.0.0}/LICENSE +0 -0
  2633. /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-11.0.0}/README.md +0 -0
  2634. /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-11.0.0}/src/codegen_settings.rs +0 -0
  2635. /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-11.0.0}/src/config.rs +0 -0
  2636. /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-11.0.0}/src/funcs.rs +0 -0
  2637. /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-11.0.0}/src/lib.rs +0 -0
  2638. /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-11.0.0}/src/lifetimes.rs +0 -0
  2639. /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-11.0.0}/src/module_trait.rs +0 -0
  2640. /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-11.0.0}/src/names.rs +0 -0
  2641. /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-11.0.0}/src/types/error.rs +0 -0
  2642. /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-11.0.0}/src/types/flags.rs +0 -0
  2643. /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-11.0.0}/src/types/handle.rs +0 -0
  2644. /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-11.0.0}/src/types/mod.rs +0 -0
  2645. /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-11.0.0}/src/types/record.rs +0 -0
  2646. /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-11.0.0}/src/types/variant.rs +0 -0
  2647. /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-11.0.0}/src/wasmtime.rs +0 -0
  2648. /data/ext/cargo-vendor/{wiggle-macro-10.0.1 → wiggle-macro-11.0.0}/LICENSE +0 -0
  2649. /data/ext/cargo-vendor/{wiggle-macro-10.0.1 → wiggle-macro-11.0.0}/src/lib.rs +0 -0
  2650. /data/ext/cargo-vendor/{winch-codegen-0.8.1 → winch-codegen-0.9.0}/LICENSE +0 -0
  2651. /data/ext/cargo-vendor/{winch-codegen-0.8.1 → winch-codegen-0.9.0}/build.rs +0 -0
  2652. /data/ext/cargo-vendor/{winch-codegen-0.8.1 → winch-codegen-0.9.0}/src/abi/local.rs +0 -0
  2653. /data/ext/cargo-vendor/{winch-codegen-0.8.1 → winch-codegen-0.9.0}/src/frame/mod.rs +0 -0
  2654. /data/ext/cargo-vendor/{winch-codegen-0.8.1 → winch-codegen-0.9.0}/src/isa/aarch64/address.rs +0 -0
  2655. /data/ext/cargo-vendor/{winch-codegen-0.8.1 → winch-codegen-0.9.0}/src/isa/aarch64/mod.rs +0 -0
  2656. /data/ext/cargo-vendor/{winch-codegen-0.8.1 → winch-codegen-0.9.0}/src/isa/aarch64/regs.rs +0 -0
  2657. /data/ext/cargo-vendor/{winch-codegen-0.8.1 → winch-codegen-0.9.0}/src/isa/reg.rs +0 -0
  2658. /data/ext/cargo-vendor/{winch-codegen-0.8.1 → winch-codegen-0.9.0}/src/isa/x64/address.rs +0 -0
  2659. /data/ext/cargo-vendor/{winch-codegen-0.8.1 → winch-codegen-0.9.0}/src/isa/x64/mod.rs +0 -0
  2660. /data/ext/cargo-vendor/{winch-codegen-0.8.1 → winch-codegen-0.9.0}/src/lib.rs +0 -0
  2661. /data/ext/cargo-vendor/{winch-codegen-0.8.1 → winch-codegen-0.9.0}/src/regalloc.rs +0 -0
  2662. /data/ext/cargo-vendor/{winch-codegen-0.8.1 → winch-codegen-0.9.0}/src/regset.rs +0 -0
  2663. /data/ext/cargo-vendor/{windows-targets-0.48.1 → windows-targets-0.48.5}/license-apache-2.0 +0 -0
  2664. /data/ext/cargo-vendor/{windows-targets-0.48.1 → windows-targets-0.48.5}/license-mit +0 -0
  2665. /data/ext/cargo-vendor/{windows_aarch64_gnullvm-0.48.0 → windows_aarch64_gnullvm-0.48.5}/build.rs +0 -0
  2666. /data/ext/cargo-vendor/{windows_aarch64_gnullvm-0.48.0 → windows_aarch64_gnullvm-0.48.5}/license-apache-2.0 +0 -0
  2667. /data/ext/cargo-vendor/{windows_aarch64_gnullvm-0.48.0 → windows_aarch64_gnullvm-0.48.5}/license-mit +0 -0
  2668. /data/ext/cargo-vendor/{windows_aarch64_gnullvm-0.48.0 → windows_aarch64_gnullvm-0.48.5}/src/lib.rs +0 -0
  2669. /data/ext/cargo-vendor/{windows_aarch64_msvc-0.48.0 → windows_aarch64_msvc-0.48.5}/build.rs +0 -0
  2670. /data/ext/cargo-vendor/{windows_aarch64_msvc-0.48.0 → windows_aarch64_msvc-0.48.5}/license-apache-2.0 +0 -0
  2671. /data/ext/cargo-vendor/{windows_aarch64_msvc-0.48.0 → windows_aarch64_msvc-0.48.5}/license-mit +0 -0
  2672. /data/ext/cargo-vendor/{windows_aarch64_msvc-0.48.0 → windows_aarch64_msvc-0.48.5}/src/lib.rs +0 -0
  2673. /data/ext/cargo-vendor/{windows_i686_gnu-0.48.0 → windows_i686_gnu-0.48.5}/build.rs +0 -0
  2674. /data/ext/cargo-vendor/{windows_i686_gnu-0.48.0 → windows_i686_gnu-0.48.5}/license-apache-2.0 +0 -0
  2675. /data/ext/cargo-vendor/{windows_i686_gnu-0.48.0 → windows_i686_gnu-0.48.5}/license-mit +0 -0
  2676. /data/ext/cargo-vendor/{windows_i686_gnu-0.48.0 → windows_i686_gnu-0.48.5}/src/lib.rs +0 -0
  2677. /data/ext/cargo-vendor/{windows_i686_msvc-0.48.0 → windows_i686_msvc-0.48.5}/build.rs +0 -0
  2678. /data/ext/cargo-vendor/{windows_i686_msvc-0.48.0 → windows_i686_msvc-0.48.5}/license-apache-2.0 +0 -0
  2679. /data/ext/cargo-vendor/{windows_i686_msvc-0.48.0 → windows_i686_msvc-0.48.5}/license-mit +0 -0
  2680. /data/ext/cargo-vendor/{windows_i686_msvc-0.48.0 → windows_i686_msvc-0.48.5}/src/lib.rs +0 -0
  2681. /data/ext/cargo-vendor/{windows_x86_64_gnu-0.48.0 → windows_x86_64_gnu-0.48.5}/build.rs +0 -0
  2682. /data/ext/cargo-vendor/{windows_x86_64_gnu-0.48.0 → windows_x86_64_gnu-0.48.5}/license-apache-2.0 +0 -0
  2683. /data/ext/cargo-vendor/{windows_x86_64_gnu-0.48.0 → windows_x86_64_gnu-0.48.5}/license-mit +0 -0
  2684. /data/ext/cargo-vendor/{windows_x86_64_gnu-0.48.0 → windows_x86_64_gnu-0.48.5}/src/lib.rs +0 -0
  2685. /data/ext/cargo-vendor/{windows_x86_64_gnullvm-0.48.0 → windows_x86_64_gnullvm-0.48.5}/build.rs +0 -0
  2686. /data/ext/cargo-vendor/{windows_x86_64_gnullvm-0.48.0 → windows_x86_64_gnullvm-0.48.5}/license-apache-2.0 +0 -0
  2687. /data/ext/cargo-vendor/{windows_x86_64_gnullvm-0.48.0 → windows_x86_64_gnullvm-0.48.5}/license-mit +0 -0
  2688. /data/ext/cargo-vendor/{windows_x86_64_gnullvm-0.48.0 → windows_x86_64_gnullvm-0.48.5}/src/lib.rs +0 -0
  2689. /data/ext/cargo-vendor/{windows_x86_64_msvc-0.48.0 → windows_x86_64_msvc-0.48.5}/build.rs +0 -0
  2690. /data/ext/cargo-vendor/{windows_x86_64_msvc-0.48.0 → windows_x86_64_msvc-0.48.5}/license-apache-2.0 +0 -0
  2691. /data/ext/cargo-vendor/{windows_x86_64_msvc-0.48.0 → windows_x86_64_msvc-0.48.5}/license-mit +0 -0
  2692. /data/ext/cargo-vendor/{windows_x86_64_msvc-0.48.0 → windows_x86_64_msvc-0.48.5}/src/lib.rs +0 -0
@@ -1,2066 +0,0 @@
1
- use crate::memory::MemoryCreator;
2
- use crate::trampoline::MemoryCreatorProxy;
3
- use anyhow::{bail, Result};
4
- use serde::{Deserialize, Serialize};
5
- use std::collections::{HashMap, HashSet};
6
- use std::fmt;
7
- #[cfg(any(feature = "cache", feature = "cranelift", feature = "winch"))]
8
- use std::path::Path;
9
- use std::str::FromStr;
10
- use std::sync::Arc;
11
- use target_lexicon::Architecture;
12
- use wasmparser::WasmFeatures;
13
- #[cfg(feature = "cache")]
14
- use wasmtime_cache::CacheConfig;
15
- use wasmtime_environ::Tunables;
16
- use wasmtime_jit::profiling::{self, ProfilingAgent};
17
- use wasmtime_runtime::{InstanceAllocator, OnDemandInstanceAllocator, RuntimeMemoryCreator};
18
-
19
- pub use wasmtime_environ::CacheStore;
20
-
21
- /// Represents the module instance allocation strategy to use.
22
- #[derive(Clone)]
23
- pub enum InstanceAllocationStrategy {
24
- /// The on-demand instance allocation strategy.
25
- ///
26
- /// Resources related to a module instance are allocated at instantiation time and
27
- /// immediately deallocated when the `Store` referencing the instance is dropped.
28
- ///
29
- /// This is the default allocation strategy for Wasmtime.
30
- OnDemand,
31
- /// The pooling instance allocation strategy.
32
- ///
33
- /// A pool of resources is created in advance and module instantiation reuses resources
34
- /// from the pool. Resources are returned to the pool when the `Store` referencing the instance
35
- /// is dropped.
36
- #[cfg(feature = "pooling-allocator")]
37
- Pooling(PoolingAllocationConfig),
38
- }
39
-
40
- impl InstanceAllocationStrategy {
41
- /// The default pooling instance allocation strategy.
42
- #[cfg(feature = "pooling-allocator")]
43
- pub fn pooling() -> Self {
44
- Self::Pooling(Default::default())
45
- }
46
- }
47
-
48
- impl Default for InstanceAllocationStrategy {
49
- fn default() -> Self {
50
- Self::OnDemand
51
- }
52
- }
53
-
54
- #[derive(Clone)]
55
- /// Configure the strategy used for versioning in serializing and deserializing [`crate::Module`].
56
- pub enum ModuleVersionStrategy {
57
- /// Use the wasmtime crate's Cargo package version.
58
- WasmtimeVersion,
59
- /// Use a custom version string. Must be at most 255 bytes.
60
- Custom(String),
61
- /// Emit no version string in serialization, and accept all version strings in deserialization.
62
- None,
63
- }
64
-
65
- impl Default for ModuleVersionStrategy {
66
- fn default() -> Self {
67
- ModuleVersionStrategy::WasmtimeVersion
68
- }
69
- }
70
-
71
- impl std::hash::Hash for ModuleVersionStrategy {
72
- fn hash<H: std::hash::Hasher>(&self, hasher: &mut H) {
73
- match self {
74
- Self::WasmtimeVersion => env!("CARGO_PKG_VERSION").hash(hasher),
75
- Self::Custom(s) => s.hash(hasher),
76
- Self::None => {}
77
- };
78
- }
79
- }
80
-
81
- /// Global configuration options used to create an [`Engine`](crate::Engine)
82
- /// and customize its behavior.
83
- ///
84
- /// This structure exposed a builder-like interface and is primarily consumed by
85
- /// [`Engine::new()`](crate::Engine::new).
86
- ///
87
- /// The validation of `Config` is deferred until the engine is being built, thus
88
- /// a problematic config may cause `Engine::new` to fail.
89
- #[derive(Clone)]
90
- pub struct Config {
91
- #[cfg(any(feature = "cranelift", feature = "winch"))]
92
- compiler_config: CompilerConfig,
93
- profiling_strategy: ProfilingStrategy,
94
-
95
- pub(crate) tunables: Tunables,
96
- #[cfg(feature = "cache")]
97
- pub(crate) cache_config: CacheConfig,
98
- pub(crate) mem_creator: Option<Arc<dyn RuntimeMemoryCreator>>,
99
- pub(crate) allocation_strategy: InstanceAllocationStrategy,
100
- pub(crate) max_wasm_stack: usize,
101
- pub(crate) features: WasmFeatures,
102
- pub(crate) wasm_backtrace: bool,
103
- pub(crate) wasm_backtrace_details_env_used: bool,
104
- pub(crate) native_unwind_info: bool,
105
- #[cfg(feature = "async")]
106
- pub(crate) async_stack_size: usize,
107
- pub(crate) async_support: bool,
108
- pub(crate) module_version: ModuleVersionStrategy,
109
- pub(crate) parallel_compilation: bool,
110
- pub(crate) memory_init_cow: bool,
111
- pub(crate) memory_guaranteed_dense_image_size: u64,
112
- pub(crate) force_memory_init_memfd: bool,
113
- }
114
-
115
- /// User-provided configuration for the compiler.
116
- #[cfg(any(feature = "cranelift", feature = "winch"))]
117
- #[derive(Debug, Clone)]
118
- struct CompilerConfig {
119
- strategy: Strategy,
120
- target: Option<target_lexicon::Triple>,
121
- settings: HashMap<String, String>,
122
- flags: HashSet<String>,
123
- #[cfg(any(feature = "cranelift", feature = "winch"))]
124
- cache_store: Option<Arc<dyn CacheStore>>,
125
- clif_dir: Option<std::path::PathBuf>,
126
- }
127
-
128
- #[cfg(any(feature = "cranelift", feature = "winch"))]
129
- impl CompilerConfig {
130
- fn new(strategy: Strategy) -> Self {
131
- Self {
132
- strategy,
133
- target: None,
134
- settings: HashMap::new(),
135
- flags: HashSet::new(),
136
- cache_store: None,
137
- clif_dir: None,
138
- }
139
- }
140
-
141
- /// Ensures that the key is not set or equals to the given value.
142
- /// If the key is not set, it will be set to the given value.
143
- ///
144
- /// # Returns
145
- ///
146
- /// Returns true if successfully set or already had the given setting
147
- /// value, or false if the setting was explicitly set to something
148
- /// else previously.
149
- fn ensure_setting_unset_or_given(&mut self, k: &str, v: &str) -> bool {
150
- if let Some(value) = self.settings.get(k) {
151
- if value != v {
152
- return false;
153
- }
154
- } else {
155
- self.settings.insert(k.to_string(), v.to_string());
156
- }
157
- true
158
- }
159
- }
160
-
161
- #[cfg(any(feature = "cranelift", feature = "winch"))]
162
- impl Default for CompilerConfig {
163
- fn default() -> Self {
164
- Self::new(Strategy::Auto)
165
- }
166
- }
167
-
168
- impl Config {
169
- /// Creates a new configuration object with the default configuration
170
- /// specified.
171
- pub fn new() -> Self {
172
- let mut ret = Self {
173
- tunables: Tunables::default(),
174
- #[cfg(any(feature = "cranelift", feature = "winch"))]
175
- compiler_config: CompilerConfig::default(),
176
- #[cfg(feature = "cache")]
177
- cache_config: CacheConfig::new_cache_disabled(),
178
- profiling_strategy: ProfilingStrategy::None,
179
- mem_creator: None,
180
- allocation_strategy: InstanceAllocationStrategy::OnDemand,
181
- // 512k of stack -- note that this is chosen currently to not be too
182
- // big, not be too small, and be a good default for most platforms.
183
- // One platform of particular note is Windows where the stack size
184
- // of the main thread seems to, by default, be smaller than that of
185
- // Linux and macOS. This 512k value at least lets our current test
186
- // suite pass on the main thread of Windows (using `--test-threads
187
- // 1` forces this), or at least it passed when this change was
188
- // committed.
189
- max_wasm_stack: 512 * 1024,
190
- wasm_backtrace: true,
191
- wasm_backtrace_details_env_used: false,
192
- native_unwind_info: true,
193
- features: WasmFeatures::default(),
194
- #[cfg(feature = "async")]
195
- async_stack_size: 2 << 20,
196
- async_support: false,
197
- module_version: ModuleVersionStrategy::default(),
198
- parallel_compilation: !cfg!(miri),
199
- memory_init_cow: true,
200
- memory_guaranteed_dense_image_size: 16 << 20,
201
- force_memory_init_memfd: false,
202
- };
203
- #[cfg(any(feature = "cranelift", feature = "winch"))]
204
- {
205
- ret.cranelift_debug_verifier(false);
206
- ret.cranelift_opt_level(OptLevel::Speed);
207
- }
208
-
209
- ret.wasm_reference_types(true);
210
- ret.wasm_multi_value(true);
211
- ret.wasm_bulk_memory(true);
212
- ret.wasm_simd(true);
213
- ret.wasm_backtrace_details(WasmBacktraceDetails::Environment);
214
-
215
- // This is on-by-default in `wasmparser` since it's a stage 4+ proposal
216
- // but it's not implemented in Wasmtime yet so disable it.
217
- ret.features.tail_call = false;
218
-
219
- ret
220
- }
221
-
222
- /// Sets the target triple for the [`Config`].
223
- ///
224
- /// By default, the host target triple is used for the [`Config`].
225
- ///
226
- /// This method can be used to change the target triple.
227
- ///
228
- /// Cranelift flags will not be inferred for the given target and any
229
- /// existing target-specific Cranelift flags will be cleared.
230
- ///
231
- /// # Errors
232
- ///
233
- /// This method will error if the given target triple is not supported.
234
- #[cfg(any(feature = "cranelift", feature = "winch"))]
235
- #[cfg_attr(nightlydoc, doc(cfg(any(feature = "cranelift", feature = "winch"))))]
236
- pub fn target(&mut self, target: &str) -> Result<&mut Self> {
237
- self.compiler_config.target =
238
- Some(target_lexicon::Triple::from_str(target).map_err(|e| anyhow::anyhow!(e))?);
239
-
240
- Ok(self)
241
- }
242
-
243
- /// Enables the incremental compilation cache in Cranelift, using the provided `CacheStore`
244
- /// backend for storage.
245
- #[cfg(all(feature = "incremental-cache", feature = "cranelift"))]
246
- pub fn enable_incremental_compilation(
247
- &mut self,
248
- cache_store: Arc<dyn CacheStore>,
249
- ) -> Result<&mut Self> {
250
- self.compiler_config.cache_store = Some(cache_store);
251
- Ok(self)
252
- }
253
-
254
- /// Whether or not to enable support for asynchronous functions in Wasmtime.
255
- ///
256
- /// When enabled, the config can optionally define host functions with `async`.
257
- /// Instances created and functions called with this `Config` *must* be called
258
- /// through their asynchronous APIs, however. For example using
259
- /// [`Func::call`](crate::Func::call) will panic when used with this config.
260
- ///
261
- /// # Asynchronous Wasm
262
- ///
263
- /// WebAssembly does not currently have a way to specify at the bytecode
264
- /// level what is and isn't async. Host-defined functions, however, may be
265
- /// defined as `async`. WebAssembly imports always appear synchronous, which
266
- /// gives rise to a bit of an impedance mismatch here. To solve this
267
- /// Wasmtime supports "asynchronous configs" which enables calling these
268
- /// asynchronous functions in a way that looks synchronous to the executing
269
- /// WebAssembly code.
270
- ///
271
- /// An asynchronous config must always invoke wasm code asynchronously,
272
- /// meaning we'll always represent its computation as a
273
- /// [`Future`](std::future::Future). The `poll` method of the futures
274
- /// returned by Wasmtime will perform the actual work of calling the
275
- /// WebAssembly. Wasmtime won't manage its own thread pools or similar,
276
- /// that's left up to the embedder.
277
- ///
278
- /// To implement futures in a way that WebAssembly sees asynchronous host
279
- /// functions as synchronous, all async Wasmtime futures will execute on a
280
- /// separately allocated native stack from the thread otherwise executing
281
- /// Wasmtime. This separate native stack can then be switched to and from.
282
- /// Using this whenever an `async` host function returns a future that
283
- /// resolves to `Pending` we switch away from the temporary stack back to
284
- /// the main stack and propagate the `Pending` status.
285
- ///
286
- /// In general it's encouraged that the integration with `async` and
287
- /// wasmtime is designed early on in your embedding of Wasmtime to ensure
288
- /// that it's planned that WebAssembly executes in the right context of your
289
- /// application.
290
- ///
291
- /// # Execution in `poll`
292
- ///
293
- /// The [`Future::poll`](std::future::Future::poll) method is the main
294
- /// driving force behind Rust's futures. That method's own documentation
295
- /// states "an implementation of `poll` should strive to return quickly, and
296
- /// should not block". This, however, can be at odds with executing
297
- /// WebAssembly code as part of the `poll` method itself. If your
298
- /// WebAssembly is untrusted then this could allow the `poll` method to take
299
- /// arbitrarily long in the worst case, likely blocking all other
300
- /// asynchronous tasks.
301
- ///
302
- /// To remedy this situation you have a a few possible ways to solve this:
303
- ///
304
- /// * The most efficient solution is to enable
305
- /// [`Config::epoch_interruption`] in conjunction with
306
- /// [`crate::Store::epoch_deadline_async_yield_and_update`]. Coupled with
307
- /// periodic calls to [`crate::Engine::increment_epoch`] this will cause
308
- /// executing WebAssembly to periodically yield back according to the
309
- /// epoch configuration settings. This enables `Future::poll` to take at
310
- /// most a certain amount of time according to epoch configuration
311
- /// settings and when increments happen. The benefit of this approach is
312
- /// that the instrumentation in compiled code is quite lightweight, but a
313
- /// downside can be that the scheduling is somewhat nondeterministic since
314
- /// increments are usually timer-based which are not always deterministic.
315
- ///
316
- /// Note that to prevent infinite execution of wasm it's recommended to
317
- /// place a timeout on the entire future representing executing wasm code
318
- /// and the periodic yields with epochs should ensure that when the
319
- /// timeout is reached it's appropriately recognized.
320
- ///
321
- /// * Alternatively you can enable the
322
- /// [`Config::consume_fuel`](crate::Config::consume_fuel) method as well
323
- /// as [`crate::Store::out_of_fuel_async_yield`] When doing so this will
324
- /// configure Wasmtime futures to yield periodically while they're
325
- /// executing WebAssembly code. After consuming the specified amount of
326
- /// fuel wasm futures will return `Poll::Pending` from their `poll`
327
- /// method, and will get automatically re-polled later. This enables the
328
- /// `Future::poll` method to take roughly a fixed amount of time since
329
- /// fuel is guaranteed to get consumed while wasm is executing. Unlike
330
- /// epoch-based preemption this is deterministic since wasm always
331
- /// consumes a fixed amount of fuel per-operation. The downside of this
332
- /// approach, however, is that the compiled code instrumentation is
333
- /// significantly more expensive than epoch checks.
334
- ///
335
- /// Note that to prevent infinite execution of wasm it's recommended to
336
- /// place a timeout on the entire future representing executing wasm code
337
- /// and the periodic yields with epochs should ensure that when the
338
- /// timeout is reached it's appropriately recognized.
339
- ///
340
- /// In all cases special care needs to be taken when integrating
341
- /// asynchronous wasm into your application. You should carefully plan where
342
- /// WebAssembly will execute and what compute resources will be allotted to
343
- /// it. If Wasmtime doesn't support exactly what you'd like just yet, please
344
- /// feel free to open an issue!
345
- #[cfg(feature = "async")]
346
- #[cfg_attr(nightlydoc, doc(cfg(feature = "async")))]
347
- pub fn async_support(&mut self, enable: bool) -> &mut Self {
348
- self.async_support = enable;
349
- self
350
- }
351
-
352
- /// Configures whether DWARF debug information will be emitted during
353
- /// compilation.
354
- ///
355
- /// By default this option is `false`.
356
- pub fn debug_info(&mut self, enable: bool) -> &mut Self {
357
- self.tunables.generate_native_debuginfo = enable;
358
- self
359
- }
360
-
361
- /// Configures whether [`WasmBacktrace`] will be present in the context of
362
- /// errors returned from Wasmtime.
363
- ///
364
- /// A backtrace may be collected whenever an error is returned from a host
365
- /// function call through to WebAssembly or when WebAssembly itself hits a
366
- /// trap condition, such as an out-of-bounds memory access. This flag
367
- /// indicates, in these conditions, whether the backtrace is collected or
368
- /// not.
369
- ///
370
- /// Currently wasm backtraces are implemented through frame pointer walking.
371
- /// This means that collecting a backtrace is expected to be a fast and
372
- /// relatively cheap operation. Additionally backtrace collection is
373
- /// suitable in concurrent environments since one thread capturing a
374
- /// backtrace won't block other threads.
375
- ///
376
- /// Collected backtraces are attached via [`anyhow::Error::context`] to
377
- /// errors returned from host functions. The [`WasmBacktrace`] type can be
378
- /// acquired via [`anyhow::Error::downcast_ref`] to inspect the backtrace.
379
- /// When this option is disabled then this context is never applied to
380
- /// errors coming out of wasm.
381
- ///
382
- /// This option is `true` by default.
383
- ///
384
- /// [`WasmBacktrace`]: crate::WasmBacktrace
385
- pub fn wasm_backtrace(&mut self, enable: bool) -> &mut Self {
386
- self.wasm_backtrace = enable;
387
- self
388
- }
389
-
390
- /// Configures whether backtraces in `Trap` will parse debug info in the wasm file to
391
- /// have filename/line number information.
392
- ///
393
- /// When enabled this will causes modules to retain debugging information
394
- /// found in wasm binaries. This debug information will be used when a trap
395
- /// happens to symbolicate each stack frame and attempt to print a
396
- /// filename/line number for each wasm frame in the stack trace.
397
- ///
398
- /// By default this option is `WasmBacktraceDetails::Environment`, meaning
399
- /// that wasm will read `WASMTIME_BACKTRACE_DETAILS` to indicate whether details
400
- /// should be parsed.
401
- pub fn wasm_backtrace_details(&mut self, enable: WasmBacktraceDetails) -> &mut Self {
402
- self.wasm_backtrace_details_env_used = false;
403
- self.tunables.parse_wasm_debuginfo = match enable {
404
- WasmBacktraceDetails::Enable => true,
405
- WasmBacktraceDetails::Disable => false,
406
- WasmBacktraceDetails::Environment => {
407
- self.wasm_backtrace_details_env_used = true;
408
- std::env::var("WASMTIME_BACKTRACE_DETAILS")
409
- .map(|s| s == "1")
410
- .unwrap_or(false)
411
- }
412
- };
413
- self
414
- }
415
-
416
- /// Configures whether to generate native unwind information
417
- /// (e.g. `.eh_frame` on Linux).
418
- ///
419
- /// This configuration option only exists to help third-party stack
420
- /// capturing mechanisms, such as the system's unwinder or the `backtrace`
421
- /// crate, determine how to unwind through Wasm frames. It does not affect
422
- /// whether Wasmtime can capture Wasm backtraces or not. The presence of
423
- /// [`WasmBacktrace`] is controlled by the [`Config::wasm_backtrace`]
424
- /// option.
425
- ///
426
- /// Note that native unwind information is always generated when targeting
427
- /// Windows, since the Windows ABI requires it.
428
- ///
429
- /// This option defaults to `true`.
430
- ///
431
- /// [`WasmBacktrace`]: crate::WasmBacktrace
432
- pub fn native_unwind_info(&mut self, enable: bool) -> &mut Self {
433
- self.native_unwind_info = enable;
434
- self
435
- }
436
-
437
- /// Configures whether execution of WebAssembly will "consume fuel" to
438
- /// either halt or yield execution as desired.
439
- ///
440
- /// This can be used to deterministically prevent infinitely-executing
441
- /// WebAssembly code by instrumenting generated code to consume fuel as it
442
- /// executes. When fuel runs out the behavior is defined by configuration
443
- /// within a [`Store`], and by default a trap is raised.
444
- ///
445
- /// Note that a [`Store`] starts with no fuel, so if you enable this option
446
- /// you'll have to be sure to pour some fuel into [`Store`] before
447
- /// executing some code.
448
- ///
449
- /// By default this option is `false`.
450
- ///
451
- /// [`Store`]: crate::Store
452
- pub fn consume_fuel(&mut self, enable: bool) -> &mut Self {
453
- self.tunables.consume_fuel = enable;
454
- self
455
- }
456
-
457
- /// Enables epoch-based interruption.
458
- ///
459
- /// When executing code in async mode, we sometimes want to
460
- /// implement a form of cooperative timeslicing: long-running Wasm
461
- /// guest code should periodically yield to the executor
462
- /// loop. This yielding could be implemented by using "fuel" (see
463
- /// [`consume_fuel`](Config::consume_fuel)). However, fuel
464
- /// instrumentation is somewhat expensive: it modifies the
465
- /// compiled form of the Wasm code so that it maintains a precise
466
- /// instruction count, frequently checking this count against the
467
- /// remaining fuel. If one does not need this precise count or
468
- /// deterministic interruptions, and only needs a periodic
469
- /// interrupt of some form, then It would be better to have a more
470
- /// lightweight mechanism.
471
- ///
472
- /// Epoch-based interruption is that mechanism. There is a global
473
- /// "epoch", which is a counter that divides time into arbitrary
474
- /// periods (or epochs). This counter lives on the
475
- /// [`Engine`](crate::Engine) and can be incremented by calling
476
- /// [`Engine::increment_epoch`](crate::Engine::increment_epoch).
477
- /// Epoch-based instrumentation works by setting a "deadline
478
- /// epoch". The compiled code knows the deadline, and at certain
479
- /// points, checks the current epoch against that deadline. It
480
- /// will yield if the deadline has been reached.
481
- ///
482
- /// The idea is that checking an infrequently-changing counter is
483
- /// cheaper than counting and frequently storing a precise metric
484
- /// (instructions executed) locally. The interruptions are not
485
- /// deterministic, but if the embedder increments the epoch in a
486
- /// periodic way (say, every regular timer tick by a thread or
487
- /// signal handler), then we can ensure that all async code will
488
- /// yield to the executor within a bounded time.
489
- ///
490
- /// The deadline check cannot be avoided by malicious wasm code. It is safe
491
- /// to use epoch deadlines to limit the execution time of untrusted
492
- /// code.
493
- ///
494
- /// The [`Store`](crate::Store) tracks the deadline, and controls
495
- /// what happens when the deadline is reached during
496
- /// execution. Several behaviors are possible:
497
- ///
498
- /// - Trap if code is executing when the epoch deadline is
499
- /// met. See
500
- /// [`Store::epoch_deadline_trap`](crate::Store::epoch_deadline_trap).
501
- ///
502
- /// - Call an arbitrary function. This function may chose to trap or
503
- /// increment the epoch. See
504
- /// [`Store::epoch_deadline_callback`](crate::Store::epoch_deadline_callback).
505
- ///
506
- /// - Yield to the executor loop, then resume when the future is
507
- /// next polled. See
508
- /// [`Store::epoch_deadline_async_yield_and_update`](crate::Store::epoch_deadline_async_yield_and_update).
509
- ///
510
- /// Trapping is the default. The yielding behaviour may be used for
511
- /// the timeslicing behavior described above.
512
- ///
513
- /// This feature is available with or without async support.
514
- /// However, without async support, the timeslicing behaviour is
515
- /// not available. This means epoch-based interruption can only
516
- /// serve as a simple external-interruption mechanism.
517
- ///
518
- /// An initial deadline must be set before executing code by calling
519
- /// [`Store::set_epoch_deadline`](crate::Store::set_epoch_deadline). If this
520
- /// deadline is not configured then wasm will immediately trap.
521
- ///
522
- /// ## When to use fuel vs. epochs
523
- ///
524
- /// In general, epoch-based interruption results in faster
525
- /// execution. This difference is sometimes significant: in some
526
- /// measurements, up to 2-3x. This is because epoch-based
527
- /// interruption does less work: it only watches for a global
528
- /// rarely-changing counter to increment, rather than keeping a
529
- /// local frequently-changing counter and comparing it to a
530
- /// deadline.
531
- ///
532
- /// Fuel, in contrast, should be used when *deterministic*
533
- /// yielding or trapping is needed. For example, if it is required
534
- /// that the same function call with the same starting state will
535
- /// always either complete or trap with an out-of-fuel error,
536
- /// deterministically, then fuel with a fixed bound should be
537
- /// used.
538
- ///
539
- /// # See Also
540
- ///
541
- /// - [`Engine::increment_epoch`](crate::Engine::increment_epoch)
542
- /// - [`Store::set_epoch_deadline`](crate::Store::set_epoch_deadline)
543
- /// - [`Store::epoch_deadline_trap`](crate::Store::epoch_deadline_trap)
544
- /// - [`Store::epoch_deadline_callback`](crate::Store::epoch_deadline_callback)
545
- /// - [`Store::epoch_deadline_async_yield_and_update`](crate::Store::epoch_deadline_async_yield_and_update)
546
- pub fn epoch_interruption(&mut self, enable: bool) -> &mut Self {
547
- self.tunables.epoch_interruption = enable;
548
- self
549
- }
550
-
551
- /// Configures the maximum amount of stack space available for
552
- /// executing WebAssembly code.
553
- ///
554
- /// WebAssembly has well-defined semantics on stack overflow. This is
555
- /// intended to be a knob which can help configure how much stack space
556
- /// wasm execution is allowed to consume. Note that the number here is not
557
- /// super-precise, but rather wasm will take at most "pretty close to this
558
- /// much" stack space.
559
- ///
560
- /// If a wasm call (or series of nested wasm calls) take more stack space
561
- /// than the `size` specified then a stack overflow trap will be raised.
562
- ///
563
- /// Caveat: this knob only limits the stack space consumed by wasm code.
564
- /// More importantly, it does not ensure that this much stack space is
565
- /// available on the calling thread stack. Exhausting the thread stack
566
- /// typically leads to an **abort** of the process.
567
- ///
568
- /// Here are some examples of how that could happen:
569
- ///
570
- /// - Let's assume this option is set to 2 MiB and then a thread that has
571
- /// a stack with 512 KiB left.
572
- ///
573
- /// If wasm code consumes more than 512 KiB then the process will be aborted.
574
- ///
575
- /// - Assuming the same conditions, but this time wasm code does not consume
576
- /// any stack but calls into a host function. The host function consumes
577
- /// more than 512 KiB of stack space. The process will be aborted.
578
- ///
579
- /// There's another gotcha related to recursive calling into wasm: the stack
580
- /// space consumed by a host function is counted towards this limit. The
581
- /// host functions are not prevented from consuming more than this limit.
582
- /// However, if the host function that used more than this limit and called
583
- /// back into wasm, then the execution will trap immediatelly because of
584
- /// stack overflow.
585
- ///
586
- /// When the `async` feature is enabled, this value cannot exceed the
587
- /// `async_stack_size` option. Be careful not to set this value too close
588
- /// to `async_stack_size` as doing so may limit how much stack space
589
- /// is available for host functions.
590
- ///
591
- /// By default this option is 512 KiB.
592
- ///
593
- /// # Errors
594
- ///
595
- /// The `Engine::new` method will fail if the `size` specified here is
596
- /// either 0 or larger than the [`Config::async_stack_size`] configuration.
597
- pub fn max_wasm_stack(&mut self, size: usize) -> &mut Self {
598
- self.max_wasm_stack = size;
599
- self
600
- }
601
-
602
- /// Configures the size of the stacks used for asynchronous execution.
603
- ///
604
- /// This setting configures the size of the stacks that are allocated for
605
- /// asynchronous execution. The value cannot be less than `max_wasm_stack`.
606
- ///
607
- /// The amount of stack space guaranteed for host functions is
608
- /// `async_stack_size - max_wasm_stack`, so take care not to set these two values
609
- /// close to one another; doing so may cause host functions to overflow the
610
- /// stack and abort the process.
611
- ///
612
- /// By default this option is 2 MiB.
613
- ///
614
- /// # Errors
615
- ///
616
- /// The `Engine::new` method will fail if the value for this option is
617
- /// smaller than the [`Config::max_wasm_stack`] option.
618
- #[cfg(feature = "async")]
619
- #[cfg_attr(nightlydoc, doc(cfg(feature = "async")))]
620
- pub fn async_stack_size(&mut self, size: usize) -> &mut Self {
621
- self.async_stack_size = size;
622
- self
623
- }
624
-
625
- /// Configures whether the WebAssembly threads proposal will be enabled for
626
- /// compilation.
627
- ///
628
- /// The [WebAssembly threads proposal][threads] is not currently fully
629
- /// standardized and is undergoing development. Additionally the support in
630
- /// wasmtime itself is still being worked on. Support for this feature can
631
- /// be enabled through this method for appropriate wasm modules.
632
- ///
633
- /// This feature gates items such as shared memories and atomic
634
- /// instructions. Note that the threads feature depends on the
635
- /// bulk memory feature, which is enabled by default.
636
- ///
637
- /// This is `false` by default.
638
- ///
639
- /// > **Note**: Wasmtime does not implement everything for the wasm threads
640
- /// > spec at this time, so bugs, panics, and possibly segfaults should be
641
- /// > expected. This should not be enabled in a production setting right
642
- /// > now.
643
- ///
644
- /// # Errors
645
- ///
646
- /// The validation of this feature are deferred until the engine is being built,
647
- /// and thus may cause `Engine::new` fail if the `bulk_memory` feature is disabled.
648
- ///
649
- /// [threads]: https://github.com/webassembly/threads
650
- pub fn wasm_threads(&mut self, enable: bool) -> &mut Self {
651
- self.features.threads = enable;
652
- self
653
- }
654
-
655
- /// Configures whether the [WebAssembly reference types proposal][proposal]
656
- /// will be enabled for compilation.
657
- ///
658
- /// This feature gates items such as the `externref` and `funcref` types as
659
- /// well as allowing a module to define multiple tables.
660
- ///
661
- /// Note that the reference types proposal depends on the bulk memory proposal.
662
- ///
663
- /// This feature is `true` by default.
664
- ///
665
- /// # Errors
666
- ///
667
- /// The validation of this feature are deferred until the engine is being built,
668
- /// and thus may cause `Engine::new` fail if the `bulk_memory` feature is disabled.
669
- ///
670
- /// [proposal]: https://github.com/webassembly/reference-types
671
- pub fn wasm_reference_types(&mut self, enable: bool) -> &mut Self {
672
- self.features.reference_types = enable;
673
- self
674
- }
675
-
676
- /// Configures whether the [WebAssembly function references proposal][proposal]
677
- /// will be enabled for compilation.
678
- ///
679
- /// This feature gates non-nullable reference types, function reference
680
- /// types, call_ref, ref.func, and non-nullable reference related instructions.
681
- ///
682
- /// Note that the function references proposal depends on the reference types proposal.
683
- ///
684
- /// This feature is `false` by default.
685
- ///
686
- /// [proposal]: https://github.com/WebAssembly/function-references
687
- pub fn wasm_function_references(&mut self, enable: bool) -> &mut Self {
688
- self.features.function_references = enable;
689
- self
690
- }
691
-
692
- /// Configures whether the WebAssembly SIMD proposal will be
693
- /// enabled for compilation.
694
- ///
695
- /// The [WebAssembly SIMD proposal][proposal]. This feature gates items such
696
- /// as the `v128` type and all of its operators being in a module. Note that
697
- /// this does not enable the [relaxed simd proposal].
698
- ///
699
- /// On x86_64 platforms note that enabling this feature requires SSE 4.2 and
700
- /// below to be available on the target platform. Compilation will fail if
701
- /// the compile target does not include SSE 4.2.
702
- ///
703
- /// This is `true` by default.
704
- ///
705
- /// [proposal]: https://github.com/webassembly/simd
706
- /// [relaxed simd proposal]: https://github.com/WebAssembly/relaxed-simd
707
- pub fn wasm_simd(&mut self, enable: bool) -> &mut Self {
708
- self.features.simd = enable;
709
- self
710
- }
711
-
712
- /// Configures whether the WebAssembly Relaxed SIMD proposal will be
713
- /// enabled for compilation.
714
- ///
715
- /// The [WebAssembly Relaxed SIMD proposal][proposal] is not, at the time of
716
- /// this writing, at stage 4. The relaxed SIMD proposal adds new
717
- /// instructions to WebAssembly which, for some specific inputs, are allowed
718
- /// to produce different results on different hosts. More-or-less this
719
- /// proposal enables exposing platform-specific semantics of SIMD
720
- /// instructions in a controlled fashion to a WebAssembly program. From an
721
- /// embedder's perspective this means that WebAssembly programs may execute
722
- /// differently depending on whether the host is x86_64 or AArch64, for
723
- /// example.
724
- ///
725
- /// By default Wasmtime lowers relaxed SIMD instructions to the fastest
726
- /// lowering for the platform it's running on. This means that, by default,
727
- /// some relaxed SIMD instructions may have different results for the same
728
- /// inputs across x86_64 and AArch64. This behavior can be disabled through
729
- /// the [`Config::relaxed_simd_deterministic`] option which will force
730
- /// deterministic behavior across all platforms, as classified by the
731
- /// specification, at the cost of performance.
732
- ///
733
- /// This is `false` by default.
734
- ///
735
- /// [proposal]: https://github.com/webassembly/relaxed-simd
736
- pub fn wasm_relaxed_simd(&mut self, enable: bool) -> &mut Self {
737
- self.features.relaxed_simd = enable;
738
- self
739
- }
740
-
741
- /// This option can be used to control the behavior of the [relaxed SIMD
742
- /// proposal's][proposal] instructions.
743
- ///
744
- /// The relaxed SIMD proposal introduces instructions that are allowed to
745
- /// have different behavior on different architectures, primarily to afford
746
- /// an efficient implementation on all architectures. This means, however,
747
- /// that the same module may execute differently on one host than another,
748
- /// which typically is not otherwise the case. This option is provided to
749
- /// force Wasmtime to generate deterministic code for all relaxed simd
750
- /// instructions, at the cost of performance, for all architectures. When
751
- /// this option is enabled then the deterministic behavior of all
752
- /// instructions in the relaxed SIMD proposal is selected.
753
- ///
754
- /// This is `false` by default.
755
- ///
756
- /// [proposal]: https://github.com/webassembly/relaxed-simd
757
- pub fn relaxed_simd_deterministic(&mut self, enable: bool) -> &mut Self {
758
- self.tunables.relaxed_simd_deterministic = enable;
759
- self
760
- }
761
-
762
- /// Configures whether the [WebAssembly bulk memory operations
763
- /// proposal][proposal] will be enabled for compilation.
764
- ///
765
- /// This feature gates items such as the `memory.copy` instruction, passive
766
- /// data/table segments, etc, being in a module.
767
- ///
768
- /// This is `true` by default.
769
- ///
770
- /// Feature `reference_types`, which is also `true` by default, requires
771
- /// this feature to be enabled. Thus disabling this feature must also disable
772
- /// `reference_types` as well using [`wasm_reference_types`](crate::Config::wasm_reference_types).
773
- ///
774
- /// # Errors
775
- ///
776
- /// Disabling this feature without disabling `reference_types` will cause
777
- /// `Engine::new` to fail.
778
- ///
779
- /// [proposal]: https://github.com/webassembly/bulk-memory-operations
780
- pub fn wasm_bulk_memory(&mut self, enable: bool) -> &mut Self {
781
- self.features.bulk_memory = enable;
782
- self
783
- }
784
-
785
- /// Configures whether the WebAssembly multi-value [proposal] will
786
- /// be enabled for compilation.
787
- ///
788
- /// This feature gates functions and blocks returning multiple values in a
789
- /// module, for example.
790
- ///
791
- /// This is `true` by default.
792
- ///
793
- /// [proposal]: https://github.com/webassembly/multi-value
794
- pub fn wasm_multi_value(&mut self, enable: bool) -> &mut Self {
795
- self.features.multi_value = enable;
796
- self
797
- }
798
-
799
- /// Configures whether the WebAssembly multi-memory [proposal] will
800
- /// be enabled for compilation.
801
- ///
802
- /// This feature gates modules having more than one linear memory
803
- /// declaration or import.
804
- ///
805
- /// This is `false` by default.
806
- ///
807
- /// [proposal]: https://github.com/webassembly/multi-memory
808
- pub fn wasm_multi_memory(&mut self, enable: bool) -> &mut Self {
809
- self.features.multi_memory = enable;
810
- self
811
- }
812
-
813
- /// Configures whether the WebAssembly memory64 [proposal] will
814
- /// be enabled for compilation.
815
- ///
816
- /// Note that this the upstream specification is not finalized and Wasmtime
817
- /// may also have bugs for this feature since it hasn't been exercised
818
- /// much.
819
- ///
820
- /// This is `false` by default.
821
- ///
822
- /// [proposal]: https://github.com/webassembly/memory64
823
- pub fn wasm_memory64(&mut self, enable: bool) -> &mut Self {
824
- self.features.memory64 = enable;
825
- self
826
- }
827
-
828
- /// Configures whether the WebAssembly component-model [proposal] will
829
- /// be enabled for compilation.
830
- ///
831
- /// Note that this feature is a work-in-progress and is incomplete.
832
- ///
833
- /// This is `false` by default.
834
- ///
835
- /// [proposal]: https://github.com/webassembly/component-model
836
- #[cfg(feature = "component-model")]
837
- pub fn wasm_component_model(&mut self, enable: bool) -> &mut Self {
838
- self.features.component_model = enable;
839
- self
840
- }
841
-
842
- /// Configures which compilation strategy will be used for wasm modules.
843
- ///
844
- /// This method can be used to configure which compiler is used for wasm
845
- /// modules, and for more documentation consult the [`Strategy`] enumeration
846
- /// and its documentation.
847
- ///
848
- /// The default value for this is `Strategy::Auto`.
849
- #[cfg(any(feature = "cranelift", feature = "winch"))]
850
- #[cfg_attr(nightlydoc, doc(cfg(any(feature = "cranelift", feature = "winch"))))]
851
- pub fn strategy(&mut self, strategy: Strategy) -> &mut Self {
852
- self.compiler_config.strategy = strategy;
853
- self
854
- }
855
-
856
- /// Creates a default profiler based on the profiling strategy chosen.
857
- ///
858
- /// Profiler creation calls the type's default initializer where the purpose is
859
- /// really just to put in place the type used for profiling.
860
- ///
861
- /// Some [`ProfilingStrategy`] require specific platforms or particular feature
862
- /// to be enabled, such as `ProfilingStrategy::JitDump` requires the `jitdump`
863
- /// feature.
864
- ///
865
- /// # Errors
866
- ///
867
- /// The validation of this field is deferred until the engine is being built, and thus may
868
- /// cause `Engine::new` fail if the required feature is disabled, or the platform is not
869
- /// supported.
870
- pub fn profiler(&mut self, profile: ProfilingStrategy) -> &mut Self {
871
- self.profiling_strategy = profile;
872
- self
873
- }
874
-
875
- /// Configures whether the debug verifier of Cranelift is enabled or not.
876
- ///
877
- /// When Cranelift is used as a code generation backend this will configure
878
- /// it to have the `enable_verifier` flag which will enable a number of debug
879
- /// checks inside of Cranelift. This is largely only useful for the
880
- /// developers of wasmtime itself.
881
- ///
882
- /// The default value for this is `false`
883
- #[cfg(any(feature = "cranelift", feature = "winch"))]
884
- #[cfg_attr(nightlydoc, doc(cfg(any(feature = "cranelift", feature = "winch"))))]
885
- pub fn cranelift_debug_verifier(&mut self, enable: bool) -> &mut Self {
886
- let val = if enable { "true" } else { "false" };
887
- self.compiler_config
888
- .settings
889
- .insert("enable_verifier".to_string(), val.to_string());
890
- self
891
- }
892
-
893
- /// Configures the Cranelift code generator optimization level.
894
- ///
895
- /// When the Cranelift code generator is used you can configure the
896
- /// optimization level used for generated code in a few various ways. For
897
- /// more information see the documentation of [`OptLevel`].
898
- ///
899
- /// The default value for this is `OptLevel::None`.
900
- #[cfg(any(feature = "cranelift", feature = "winch"))]
901
- #[cfg_attr(nightlydoc, doc(cfg(any(feature = "cranelift", feature = "winch"))))]
902
- pub fn cranelift_opt_level(&mut self, level: OptLevel) -> &mut Self {
903
- let val = match level {
904
- OptLevel::None => "none",
905
- OptLevel::Speed => "speed",
906
- OptLevel::SpeedAndSize => "speed_and_size",
907
- };
908
- self.compiler_config
909
- .settings
910
- .insert("opt_level".to_string(), val.to_string());
911
- self
912
- }
913
-
914
- /// Configures whether Cranelift should perform a NaN-canonicalization pass.
915
- ///
916
- /// When Cranelift is used as a code generation backend this will configure
917
- /// it to replace NaNs with a single canonical value. This is useful for users
918
- /// requiring entirely deterministic WebAssembly computation.
919
- /// This is not required by the WebAssembly spec, so it is not enabled by default.
920
- ///
921
- /// The default value for this is `false`
922
- #[cfg(any(feature = "cranelift", feature = "winch"))]
923
- #[cfg_attr(nightlydoc, doc(cfg(any(feature = "cranelift", feature = "winch"))))]
924
- pub fn cranelift_nan_canonicalization(&mut self, enable: bool) -> &mut Self {
925
- let val = if enable { "true" } else { "false" };
926
- self.compiler_config
927
- .settings
928
- .insert("enable_nan_canonicalization".to_string(), val.to_string());
929
- self
930
- }
931
-
932
- /// Allows setting a Cranelift boolean flag or preset. This allows
933
- /// fine-tuning of Cranelift settings.
934
- ///
935
- /// Since Cranelift flags may be unstable, this method should not be considered to be stable
936
- /// either; other `Config` functions should be preferred for stability.
937
- ///
938
- /// # Safety
939
- ///
940
- /// This is marked as unsafe, because setting the wrong flag might break invariants,
941
- /// resulting in execution hazards.
942
- ///
943
- /// # Errors
944
- ///
945
- /// The validation of the flags are deferred until the engine is being built, and thus may
946
- /// cause `Engine::new` fail if the flag's name does not exist, or the value is not appropriate
947
- /// for the flag type.
948
- #[cfg(any(feature = "cranelift", feature = "winch"))]
949
- #[cfg_attr(nightlydoc, doc(cfg(any(feature = "cranelift", feature = "winch"))))]
950
- pub unsafe fn cranelift_flag_enable(&mut self, flag: &str) -> &mut Self {
951
- self.compiler_config.flags.insert(flag.to_string());
952
- self
953
- }
954
-
955
- /// Allows settings another Cranelift flag defined by a flag name and value. This allows
956
- /// fine-tuning of Cranelift settings.
957
- ///
958
- /// Since Cranelift flags may be unstable, this method should not be considered to be stable
959
- /// either; other `Config` functions should be preferred for stability.
960
- ///
961
- /// # Safety
962
- ///
963
- /// This is marked as unsafe, because setting the wrong flag might break invariants,
964
- /// resulting in execution hazards.
965
- ///
966
- /// # Errors
967
- ///
968
- /// The validation of the flags are deferred until the engine is being built, and thus may
969
- /// cause `Engine::new` fail if the flag's name does not exist, or incompatible with other
970
- /// settings.
971
- ///
972
- /// For example, feature `wasm_backtrace` will set `unwind_info` to `true`, but if it's
973
- /// manually set to false then it will fail.
974
- #[cfg(any(feature = "cranelift", feature = "winch"))]
975
- #[cfg_attr(nightlydoc, doc(cfg(any(feature = "cranelift", feature = "winch"))))]
976
- pub unsafe fn cranelift_flag_set(&mut self, name: &str, value: &str) -> &mut Self {
977
- self.compiler_config
978
- .settings
979
- .insert(name.to_string(), value.to_string());
980
- self
981
- }
982
-
983
- /// Loads cache configuration specified at `path`.
984
- ///
985
- /// This method will read the file specified by `path` on the filesystem and
986
- /// attempt to load cache configuration from it. This method can also fail
987
- /// due to I/O errors, misconfiguration, syntax errors, etc. For expected
988
- /// syntax in the configuration file see the [documentation online][docs].
989
- ///
990
- /// By default cache configuration is not enabled or loaded.
991
- ///
992
- /// This method is only available when the `cache` feature of this crate is
993
- /// enabled.
994
- ///
995
- /// # Errors
996
- ///
997
- /// This method can fail due to any error that happens when loading the file
998
- /// pointed to by `path` and attempting to load the cache configuration.
999
- ///
1000
- /// [docs]: https://bytecodealliance.github.io/wasmtime/cli-cache.html
1001
- #[cfg(feature = "cache")]
1002
- #[cfg_attr(nightlydoc, doc(cfg(feature = "cache")))]
1003
- pub fn cache_config_load(&mut self, path: impl AsRef<Path>) -> Result<&mut Self> {
1004
- self.cache_config = CacheConfig::from_file(Some(path.as_ref()))?;
1005
- Ok(self)
1006
- }
1007
-
1008
- /// Disable caching.
1009
- ///
1010
- /// Every call to [`Module::new(my_wasm)`][crate::Module::new] will
1011
- /// recompile `my_wasm`, even when it is unchanged.
1012
- ///
1013
- /// By default, new configs do not have caching enabled. This method is only
1014
- /// useful for disabling a previous cache configuration.
1015
- ///
1016
- /// This method is only available when the `cache` feature of this crate is
1017
- /// enabled.
1018
- #[cfg(feature = "cache")]
1019
- #[cfg_attr(nightlydoc, doc(cfg(feature = "cache")))]
1020
- pub fn disable_cache(&mut self) -> &mut Self {
1021
- self.cache_config = CacheConfig::new_cache_disabled();
1022
- self
1023
- }
1024
-
1025
- /// Loads cache configuration from the system default path.
1026
- ///
1027
- /// This commit is the same as [`Config::cache_config_load`] except that it
1028
- /// does not take a path argument and instead loads the default
1029
- /// configuration present on the system. This is located, for example, on
1030
- /// Unix at `$HOME/.config/wasmtime/config.toml` and is typically created
1031
- /// with the `wasmtime config new` command.
1032
- ///
1033
- /// By default cache configuration is not enabled or loaded.
1034
- ///
1035
- /// This method is only available when the `cache` feature of this crate is
1036
- /// enabled.
1037
- ///
1038
- /// # Errors
1039
- ///
1040
- /// This method can fail due to any error that happens when loading the
1041
- /// default system configuration. Note that it is not an error if the
1042
- /// default config file does not exist, in which case the default settings
1043
- /// for an enabled cache are applied.
1044
- ///
1045
- /// [docs]: https://bytecodealliance.github.io/wasmtime/cli-cache.html
1046
- #[cfg(feature = "cache")]
1047
- #[cfg_attr(nightlydoc, doc(cfg(feature = "cache")))]
1048
- pub fn cache_config_load_default(&mut self) -> Result<&mut Self> {
1049
- self.cache_config = CacheConfig::from_file(None)?;
1050
- Ok(self)
1051
- }
1052
-
1053
- /// Sets a custom memory creator.
1054
- ///
1055
- /// Custom memory creators are used when creating host `Memory` objects or when
1056
- /// creating instance linear memories for the on-demand instance allocation strategy.
1057
- pub fn with_host_memory(&mut self, mem_creator: Arc<dyn MemoryCreator>) -> &mut Self {
1058
- self.mem_creator = Some(Arc::new(MemoryCreatorProxy(mem_creator)));
1059
- self
1060
- }
1061
-
1062
- /// Sets the instance allocation strategy to use.
1063
- ///
1064
- /// When using the pooling instance allocation strategy, all linear memories
1065
- /// will be created as "static" and the
1066
- /// [`Config::static_memory_maximum_size`] and
1067
- /// [`Config::static_memory_guard_size`] options will be used to configure
1068
- /// the virtual memory allocations of linear memories.
1069
- pub fn allocation_strategy(&mut self, strategy: InstanceAllocationStrategy) -> &mut Self {
1070
- self.allocation_strategy = strategy;
1071
- self
1072
- }
1073
-
1074
- /// Configures the maximum size, in bytes, where a linear memory is
1075
- /// considered static, above which it'll be considered dynamic.
1076
- ///
1077
- /// > Note: this value has important performance ramifications, be sure to
1078
- /// > understand what this value does before tweaking it and benchmarking.
1079
- ///
1080
- /// This function configures the threshold for wasm memories whether they're
1081
- /// implemented as a dynamically relocatable chunk of memory or a statically
1082
- /// located chunk of memory. The `max_size` parameter here is the size, in
1083
- /// bytes, where if the maximum size of a linear memory is below `max_size`
1084
- /// then it will be statically allocated with enough space to never have to
1085
- /// move. If the maximum size of a linear memory is larger than `max_size`
1086
- /// then wasm memory will be dynamically located and may move in memory
1087
- /// through growth operations.
1088
- ///
1089
- /// Specifying a `max_size` of 0 means that all memories will be dynamic and
1090
- /// may be relocated through `memory.grow`. Also note that if any wasm
1091
- /// memory's maximum size is below `max_size` then it will still reserve
1092
- /// `max_size` bytes in the virtual memory space.
1093
- ///
1094
- /// ## Static vs Dynamic Memory
1095
- ///
1096
- /// Linear memories represent contiguous arrays of bytes, but they can also
1097
- /// be grown through the API and wasm instructions. When memory is grown if
1098
- /// space hasn't been preallocated then growth may involve relocating the
1099
- /// base pointer in memory. Memories in Wasmtime are classified in two
1100
- /// different ways:
1101
- ///
1102
- /// * **static** - these memories preallocate all space necessary they'll
1103
- /// ever need, meaning that the base pointer of these memories is never
1104
- /// moved. Static memories may take more virtual memory space because of
1105
- /// pre-reserving space for memories.
1106
- ///
1107
- /// * **dynamic** - these memories are not preallocated and may move during
1108
- /// growth operations. Dynamic memories consume less virtual memory space
1109
- /// because they don't need to preallocate space for future growth.
1110
- ///
1111
- /// Static memories can be optimized better in JIT code because once the
1112
- /// base address is loaded in a function it's known that we never need to
1113
- /// reload it because it never changes, `memory.grow` is generally a pretty
1114
- /// fast operation because the wasm memory is never relocated, and under
1115
- /// some conditions bounds checks can be elided on memory accesses.
1116
- ///
1117
- /// Dynamic memories can't be quite as heavily optimized because the base
1118
- /// address may need to be reloaded more often, they may require relocating
1119
- /// lots of data on `memory.grow`, and dynamic memories require
1120
- /// unconditional bounds checks on all memory accesses.
1121
- ///
1122
- /// ## Should you use static or dynamic memory?
1123
- ///
1124
- /// In general you probably don't need to change the value of this property.
1125
- /// The defaults here are optimized for each target platform to consume a
1126
- /// reasonable amount of physical memory while also generating speedy
1127
- /// machine code.
1128
- ///
1129
- /// One of the main reasons you may want to configure this today is if your
1130
- /// environment can't reserve virtual memory space for each wasm linear
1131
- /// memory. On 64-bit platforms wasm memories require a 6GB reservation by
1132
- /// default, and system limits may prevent this in some scenarios. In this
1133
- /// case you may wish to force memories to be allocated dynamically meaning
1134
- /// that the virtual memory footprint of creating a wasm memory should be
1135
- /// exactly what's used by the wasm itself.
1136
- ///
1137
- /// For 32-bit memories a static memory must contain at least 4GB of
1138
- /// reserved address space plus a guard page to elide any bounds checks at
1139
- /// all. Smaller static memories will use similar bounds checks as dynamic
1140
- /// memories.
1141
- ///
1142
- /// ## Default
1143
- ///
1144
- /// The default value for this property depends on the host platform. For
1145
- /// 64-bit platforms there's lots of address space available, so the default
1146
- /// configured here is 4GB. WebAssembly linear memories currently max out at
1147
- /// 4GB which means that on 64-bit platforms Wasmtime by default always uses
1148
- /// a static memory. This, coupled with a sufficiently sized guard region,
1149
- /// should produce the fastest JIT code on 64-bit platforms, but does
1150
- /// require a large address space reservation for each wasm memory.
1151
- ///
1152
- /// For 32-bit platforms this value defaults to 1GB. This means that wasm
1153
- /// memories whose maximum size is less than 1GB will be allocated
1154
- /// statically, otherwise they'll be considered dynamic.
1155
- ///
1156
- /// ## Static Memory and Pooled Instance Allocation
1157
- ///
1158
- /// When using the pooling instance allocator memories are considered to
1159
- /// always be static memories, they are never dynamic. This setting
1160
- /// configures the size of linear memory to reserve for each memory in the
1161
- /// pooling allocator.
1162
- pub fn static_memory_maximum_size(&mut self, max_size: u64) -> &mut Self {
1163
- let max_pages = max_size / u64::from(wasmtime_environ::WASM_PAGE_SIZE);
1164
- self.tunables.static_memory_bound = max_pages;
1165
- self
1166
- }
1167
-
1168
- /// Indicates that the "static" style of memory should always be used.
1169
- ///
1170
- /// This configuration option enables selecting the "static" option for all
1171
- /// linear memories created within this `Config`. This means that all
1172
- /// memories will be allocated up-front and will never move. Additionally
1173
- /// this means that all memories are synthetically limited by the
1174
- /// [`Config::static_memory_maximum_size`] option, irregardless of what the
1175
- /// actual maximum size is on the memory's original type.
1176
- ///
1177
- /// For the difference between static and dynamic memories, see the
1178
- /// [`Config::static_memory_maximum_size`].
1179
- pub fn static_memory_forced(&mut self, force: bool) -> &mut Self {
1180
- self.tunables.static_memory_bound_is_maximum = force;
1181
- self
1182
- }
1183
-
1184
- /// Configures the size, in bytes, of the guard region used at the end of a
1185
- /// static memory's address space reservation.
1186
- ///
1187
- /// > Note: this value has important performance ramifications, be sure to
1188
- /// > understand what this value does before tweaking it and benchmarking.
1189
- ///
1190
- /// All WebAssembly loads/stores are bounds-checked and generate a trap if
1191
- /// they're out-of-bounds. Loads and stores are often very performance
1192
- /// critical, so we want the bounds check to be as fast as possible!
1193
- /// Accelerating these memory accesses is the motivation for a guard after a
1194
- /// memory allocation.
1195
- ///
1196
- /// Memories (both static and dynamic) can be configured with a guard at the
1197
- /// end of them which consists of unmapped virtual memory. This unmapped
1198
- /// memory will trigger a memory access violation (e.g. segfault) if
1199
- /// accessed. This allows JIT code to elide bounds checks if it can prove
1200
- /// that an access, if out of bounds, would hit the guard region. This means
1201
- /// that having such a guard of unmapped memory can remove the need for
1202
- /// bounds checks in JIT code.
1203
- ///
1204
- /// For the difference between static and dynamic memories, see the
1205
- /// [`Config::static_memory_maximum_size`].
1206
- ///
1207
- /// ## How big should the guard be?
1208
- ///
1209
- /// In general, like with configuring `static_memory_maximum_size`, you
1210
- /// probably don't want to change this value from the defaults. Otherwise,
1211
- /// though, the size of the guard region affects the number of bounds checks
1212
- /// needed for generated wasm code. More specifically, loads/stores with
1213
- /// immediate offsets will generate bounds checks based on how big the guard
1214
- /// page is.
1215
- ///
1216
- /// For 32-bit memories a 4GB static memory is required to even start
1217
- /// removing bounds checks. A 4GB guard size will guarantee that the module
1218
- /// has zero bounds checks for memory accesses. A 2GB guard size will
1219
- /// eliminate all bounds checks with an immediate offset less than 2GB. A
1220
- /// guard size of zero means that all memory accesses will still have bounds
1221
- /// checks.
1222
- ///
1223
- /// ## Default
1224
- ///
1225
- /// The default value for this property is 2GB on 64-bit platforms. This
1226
- /// allows eliminating almost all bounds checks on loads/stores with an
1227
- /// immediate offset of less than 2GB. On 32-bit platforms this defaults to
1228
- /// 64KB.
1229
- ///
1230
- /// ## Errors
1231
- ///
1232
- /// The `Engine::new` method will return an error if this option is smaller
1233
- /// than the value configured for [`Config::dynamic_memory_guard_size`].
1234
- pub fn static_memory_guard_size(&mut self, guard_size: u64) -> &mut Self {
1235
- let guard_size = round_up_to_pages(guard_size);
1236
- self.tunables.static_memory_offset_guard_size = guard_size;
1237
- self
1238
- }
1239
-
1240
- /// Configures the size, in bytes, of the guard region used at the end of a
1241
- /// dynamic memory's address space reservation.
1242
- ///
1243
- /// For the difference between static and dynamic memories, see the
1244
- /// [`Config::static_memory_maximum_size`]
1245
- ///
1246
- /// For more information about what a guard is, see the documentation on
1247
- /// [`Config::static_memory_guard_size`].
1248
- ///
1249
- /// Note that the size of the guard region for dynamic memories is not super
1250
- /// critical for performance. Making it reasonably-sized can improve
1251
- /// generated code slightly, but for maximum performance you'll want to lean
1252
- /// towards static memories rather than dynamic anyway.
1253
- ///
1254
- /// Also note that the dynamic memory guard size must be smaller than the
1255
- /// static memory guard size, so if a large dynamic memory guard is
1256
- /// specified then the static memory guard size will also be automatically
1257
- /// increased.
1258
- ///
1259
- /// ## Default
1260
- ///
1261
- /// This value defaults to 64KB.
1262
- ///
1263
- /// ## Errors
1264
- ///
1265
- /// The `Engine::new` method will return an error if this option is larger
1266
- /// than the value configured for [`Config::static_memory_guard_size`].
1267
- pub fn dynamic_memory_guard_size(&mut self, guard_size: u64) -> &mut Self {
1268
- let guard_size = round_up_to_pages(guard_size);
1269
- self.tunables.dynamic_memory_offset_guard_size = guard_size;
1270
- self
1271
- }
1272
-
1273
- /// Configures the size, in bytes, of the extra virtual memory space
1274
- /// reserved after a "dynamic" memory for growing into.
1275
- ///
1276
- /// For the difference between static and dynamic memories, see the
1277
- /// [`Config::static_memory_maximum_size`]
1278
- ///
1279
- /// Dynamic memories can be relocated in the process's virtual address space
1280
- /// on growth and do not always reserve their entire space up-front. This
1281
- /// means that a growth of the memory may require movement in the address
1282
- /// space, which in the worst case can copy a large number of bytes from one
1283
- /// region to another.
1284
- ///
1285
- /// This setting configures how many bytes are reserved after the initial
1286
- /// reservation for a dynamic memory for growing into. A value of 0 here
1287
- /// means that no extra bytes are reserved and all calls to `memory.grow`
1288
- /// will need to relocate the wasm linear memory (copying all the bytes). A
1289
- /// value of 1 megabyte, however, means that `memory.grow` can allocate up
1290
- /// to a megabyte of extra memory before the memory needs to be moved in
1291
- /// linear memory.
1292
- ///
1293
- /// Note that this is a currently simple heuristic for optimizing the growth
1294
- /// of dynamic memories, primarily implemented for the memory64 proposal
1295
- /// where all memories are currently "dynamic". This is unlikely to be a
1296
- /// one-size-fits-all style approach and if you're an embedder running into
1297
- /// issues with dynamic memories and growth and are interested in having
1298
- /// other growth strategies available here please feel free to [open an
1299
- /// issue on the Wasmtime repository][issue]!
1300
- ///
1301
- /// [issue]: https://github.com/bytecodealliance/wasmtime/issues/ne
1302
- ///
1303
- /// ## Default
1304
- ///
1305
- /// For 64-bit platforms this defaults to 2GB, and for 32-bit platforms this
1306
- /// defaults to 1MB.
1307
- pub fn dynamic_memory_reserved_for_growth(&mut self, reserved: u64) -> &mut Self {
1308
- self.tunables.dynamic_memory_growth_reserve = round_up_to_pages(reserved);
1309
- self
1310
- }
1311
-
1312
- /// Indicates whether a guard region is present before allocations of
1313
- /// linear memory.
1314
- ///
1315
- /// Guard regions before linear memories are never used during normal
1316
- /// operation of WebAssembly modules, even if they have out-of-bounds
1317
- /// loads. The only purpose for a preceding guard region in linear memory
1318
- /// is extra protection against possible bugs in code generators like
1319
- /// Cranelift. This setting does not affect performance in any way, but will
1320
- /// result in larger virtual memory reservations for linear memories (it
1321
- /// won't actually ever use more memory, just use more of the address
1322
- /// space).
1323
- ///
1324
- /// The size of the guard region before linear memory is the same as the
1325
- /// guard size that comes after linear memory, which is configured by
1326
- /// [`Config::static_memory_guard_size`] and
1327
- /// [`Config::dynamic_memory_guard_size`].
1328
- ///
1329
- /// ## Default
1330
- ///
1331
- /// This value defaults to `true`.
1332
- pub fn guard_before_linear_memory(&mut self, guard: bool) -> &mut Self {
1333
- self.tunables.guard_before_linear_memory = guard;
1334
- self
1335
- }
1336
-
1337
- /// Configure the version information used in serialized and deserialzied [`crate::Module`]s.
1338
- /// This effects the behavior of [`crate::Module::serialize()`], as well as
1339
- /// [`crate::Module::deserialize()`] and related functions.
1340
- ///
1341
- /// The default strategy is to use the wasmtime crate's Cargo package version.
1342
- pub fn module_version(&mut self, strategy: ModuleVersionStrategy) -> Result<&mut Self> {
1343
- match strategy {
1344
- // This case requires special precondition for assertion in SerializedModule::to_bytes
1345
- ModuleVersionStrategy::Custom(ref v) => {
1346
- if v.as_bytes().len() > 255 {
1347
- bail!("custom module version cannot be more than 255 bytes: {}", v);
1348
- }
1349
- }
1350
- _ => {}
1351
- }
1352
- self.module_version = strategy;
1353
- Ok(self)
1354
- }
1355
-
1356
- /// Configure wether wasmtime should compile a module using multiple
1357
- /// threads.
1358
- ///
1359
- /// Disabling this will result in a single thread being used to compile
1360
- /// the wasm bytecode.
1361
- ///
1362
- /// By default parallel compilation is enabled.
1363
- #[cfg(feature = "parallel-compilation")]
1364
- #[cfg_attr(nightlydoc, doc(cfg(feature = "parallel-compilation")))]
1365
- pub fn parallel_compilation(&mut self, parallel: bool) -> &mut Self {
1366
- self.parallel_compilation = parallel;
1367
- self
1368
- }
1369
-
1370
- /// Configures whether compiled artifacts will contain information to map
1371
- /// native program addresses back to the original wasm module.
1372
- ///
1373
- /// This configuration option is `true` by default and, if enabled,
1374
- /// generates the appropriate tables in compiled modules to map from native
1375
- /// address back to wasm source addresses. This is used for displaying wasm
1376
- /// program counters in backtraces as well as generating filenames/line
1377
- /// numbers if so configured as well (and the original wasm module has DWARF
1378
- /// debugging information present).
1379
- pub fn generate_address_map(&mut self, generate: bool) -> &mut Self {
1380
- self.tunables.generate_address_map = generate;
1381
- self
1382
- }
1383
-
1384
- /// Configures whether copy-on-write memory-mapped data is used to
1385
- /// initialize a linear memory.
1386
- ///
1387
- /// Initializing linear memory via a copy-on-write mapping can drastically
1388
- /// improve instantiation costs of a WebAssembly module because copying
1389
- /// memory is deferred. Additionally if a page of memory is only ever read
1390
- /// from WebAssembly and never written too then the same underlying page of
1391
- /// data will be reused between all instantiations of a module meaning that
1392
- /// if a module is instantiated many times this can lower the overall memory
1393
- /// required needed to run that module.
1394
- ///
1395
- /// This feature is only applicable when a WebAssembly module meets specific
1396
- /// criteria to be initialized in this fashion, such as:
1397
- ///
1398
- /// * Only memories defined in the module can be initialized this way.
1399
- /// * Data segments for memory must use statically known offsets.
1400
- /// * Data segments for memory must all be in-bounds.
1401
- ///
1402
- /// Modules which do not meet these criteria will fall back to
1403
- /// initialization of linear memory based on copying memory.
1404
- ///
1405
- /// This feature of Wasmtime is also platform-specific:
1406
- ///
1407
- /// * Linux - this feature is supported for all instances of [`Module`].
1408
- /// Modules backed by an existing mmap (such as those created by
1409
- /// [`Module::deserialize_file`]) will reuse that mmap to cow-initialize
1410
- /// memory. Other instance of [`Module`] may use the `memfd_create`
1411
- /// syscall to create an initialization image to `mmap`.
1412
- /// * Unix (not Linux) - this feature is only supported when loading modules
1413
- /// from a precompiled file via [`Module::deserialize_file`] where there
1414
- /// is a file descriptor to use to map data into the process. Note that
1415
- /// the module must have been compiled with this setting enabled as well.
1416
- /// * Windows - there is no support for this feature at this time. Memory
1417
- /// initialization will always copy bytes.
1418
- ///
1419
- /// By default this option is enabled.
1420
- ///
1421
- /// [`Module::deserialize_file`]: crate::Module::deserialize_file
1422
- /// [`Module`]: crate::Module
1423
- pub fn memory_init_cow(&mut self, enable: bool) -> &mut Self {
1424
- self.memory_init_cow = enable;
1425
- self
1426
- }
1427
-
1428
- /// A configuration option to force the usage of `memfd_create` on Linux to
1429
- /// be used as the backing source for a module's initial memory image.
1430
- ///
1431
- /// When [`Config::memory_init_cow`] is enabled, which is enabled by
1432
- /// default, module memory initialization images are taken from a module's
1433
- /// original mmap if possible. If a precompiled module was loaded from disk
1434
- /// this means that the disk's file is used as an mmap source for the
1435
- /// initial linear memory contents. This option can be used to force, on
1436
- /// Linux, that instead of using the original file on disk a new in-memory
1437
- /// file is created with `memfd_create` to hold the contents of the initial
1438
- /// image.
1439
- ///
1440
- /// This option can be used to avoid possibly loading the contents of memory
1441
- /// from disk through a page fault. Instead with `memfd_create` the contents
1442
- /// of memory are always in RAM, meaning that even page faults which
1443
- /// initially populate a wasm linear memory will only work with RAM instead
1444
- /// of ever hitting the disk that the original precompiled module is stored
1445
- /// on.
1446
- ///
1447
- /// This option is disabled by default.
1448
- pub fn force_memory_init_memfd(&mut self, enable: bool) -> &mut Self {
1449
- self.force_memory_init_memfd = enable;
1450
- self
1451
- }
1452
-
1453
- /// Configures the "guaranteed dense image size" for copy-on-write
1454
- /// initialized memories.
1455
- ///
1456
- /// When using the [`Config::memory_init_cow`] feature to initialize memory
1457
- /// efficiently (which is enabled by default), compiled modules contain an
1458
- /// image of the module's initial heap. If the module has a fairly sparse
1459
- /// initial heap, with just a few data segments at very different offsets,
1460
- /// this could result in a large region of zero bytes in the image. In
1461
- /// other words, it's not very memory-efficient.
1462
- ///
1463
- /// We normally use a heuristic to avoid this: if less than half
1464
- /// of the initialized range (first non-zero to last non-zero
1465
- /// byte) of any memory in the module has pages with nonzero
1466
- /// bytes, then we avoid creating a memory image for the entire module.
1467
- ///
1468
- /// However, if the embedder always needs the instantiation-time efficiency
1469
- /// of copy-on-write initialization, and is otherwise carefully controlling
1470
- /// parameters of the modules (for example, by limiting the maximum heap
1471
- /// size of the modules), then it may be desirable to ensure a memory image
1472
- /// is created even if this could go against the heuristic above. Thus, we
1473
- /// add another condition: there is a size of initialized data region up to
1474
- /// which we *always* allow a memory image. The embedder can set this to a
1475
- /// known maximum heap size if they desire to always get the benefits of
1476
- /// copy-on-write images.
1477
- ///
1478
- /// In the future we may implement a "best of both worlds"
1479
- /// solution where we have a dense image up to some limit, and
1480
- /// then support a sparse list of initializers beyond that; this
1481
- /// would get most of the benefit of copy-on-write and pay the incremental
1482
- /// cost of eager initialization only for those bits of memory
1483
- /// that are out-of-bounds. However, for now, an embedder desiring
1484
- /// fast instantiation should ensure that this setting is as large
1485
- /// as the maximum module initial memory content size.
1486
- ///
1487
- /// By default this value is 16 MiB.
1488
- pub fn memory_guaranteed_dense_image_size(&mut self, size_in_bytes: u64) -> &mut Self {
1489
- self.memory_guaranteed_dense_image_size = size_in_bytes;
1490
- self
1491
- }
1492
-
1493
- pub(crate) fn validate(&self) -> Result<()> {
1494
- if self.features.reference_types && !self.features.bulk_memory {
1495
- bail!("feature 'reference_types' requires 'bulk_memory' to be enabled");
1496
- }
1497
- if self.features.threads && !self.features.bulk_memory {
1498
- bail!("feature 'threads' requires 'bulk_memory' to be enabled");
1499
- }
1500
- #[cfg(feature = "async")]
1501
- if self.max_wasm_stack > self.async_stack_size {
1502
- bail!("max_wasm_stack size cannot exceed the async_stack_size");
1503
- }
1504
- if self.max_wasm_stack == 0 {
1505
- bail!("max_wasm_stack size cannot be zero");
1506
- }
1507
- if self.tunables.static_memory_offset_guard_size
1508
- < self.tunables.dynamic_memory_offset_guard_size
1509
- {
1510
- bail!("static memory guard size cannot be smaller than dynamic memory guard size");
1511
- }
1512
-
1513
- Ok(())
1514
- }
1515
-
1516
- pub(crate) fn build_allocator(&self) -> Result<Box<dyn InstanceAllocator + Send + Sync>> {
1517
- #[cfg(feature = "async")]
1518
- let stack_size = self.async_stack_size;
1519
-
1520
- #[cfg(not(feature = "async"))]
1521
- let stack_size = 0;
1522
-
1523
- match &self.allocation_strategy {
1524
- InstanceAllocationStrategy::OnDemand => Ok(Box::new(OnDemandInstanceAllocator::new(
1525
- self.mem_creator.clone(),
1526
- stack_size,
1527
- ))),
1528
- #[cfg(feature = "pooling-allocator")]
1529
- InstanceAllocationStrategy::Pooling(config) => {
1530
- let mut config = config.config;
1531
- config.stack_size = stack_size;
1532
- Ok(Box::new(wasmtime_runtime::PoolingInstanceAllocator::new(
1533
- &config,
1534
- &self.tunables,
1535
- )?))
1536
- }
1537
- }
1538
- }
1539
-
1540
- pub(crate) fn build_profiler(&self) -> Result<Box<dyn ProfilingAgent>> {
1541
- Ok(match self.profiling_strategy {
1542
- ProfilingStrategy::PerfMap => profiling::new_perfmap()?,
1543
- ProfilingStrategy::JitDump => profiling::new_jitdump()?,
1544
- ProfilingStrategy::VTune => profiling::new_vtune()?,
1545
- ProfilingStrategy::None => profiling::new_null(),
1546
- })
1547
- }
1548
-
1549
- #[cfg(any(feature = "cranelift", feature = "winch"))]
1550
- pub(crate) fn build_compiler(mut self) -> Result<(Self, Box<dyn wasmtime_environ::Compiler>)> {
1551
- let mut compiler = match self.compiler_config.strategy {
1552
- #[cfg(feature = "cranelift")]
1553
- Strategy::Auto => wasmtime_cranelift::builder(),
1554
- #[cfg(all(feature = "winch", not(feature = "cranelift")))]
1555
- Strategy::Auto => wasmtime_winch::builder(),
1556
- #[cfg(feature = "cranelift")]
1557
- Strategy::Cranelift => wasmtime_cranelift::builder(),
1558
- #[cfg(not(feature = "cranelift"))]
1559
- Strategy::Cranelift => bail!("cranelift support not compiled in"),
1560
- #[cfg(feature = "winch")]
1561
- Strategy::Winch => wasmtime_winch::builder(),
1562
- #[cfg(not(feature = "winch"))]
1563
- Strategy::Winch => bail!("winch support not compiled in"),
1564
- };
1565
-
1566
- if let Some(target) = &self.compiler_config.target {
1567
- compiler.target(target.clone())?;
1568
- }
1569
-
1570
- if let Some(path) = &self.compiler_config.clif_dir {
1571
- compiler.clif_dir(path)?;
1572
- }
1573
-
1574
- // If probestack is enabled for a target, Wasmtime will always use the
1575
- // inline strategy which doesn't require us to define a `__probestack`
1576
- // function or similar.
1577
- self.compiler_config
1578
- .settings
1579
- .insert("probestack_strategy".into(), "inline".into());
1580
-
1581
- let host = target_lexicon::Triple::host();
1582
- let target = self.compiler_config.target.as_ref().unwrap_or(&host);
1583
-
1584
- // On supported targets, we enable stack probing by default.
1585
- // This is required on Windows because of the way Windows
1586
- // commits its stacks, but it's also a good idea on other
1587
- // platforms to ensure guard pages are hit for large frame
1588
- // sizes.
1589
- if probestack_supported(target.architecture) {
1590
- self.compiler_config
1591
- .flags
1592
- .insert("enable_probestack".into());
1593
- }
1594
-
1595
- if self.native_unwind_info ||
1596
- // Windows always needs unwind info, since it is part of the ABI.
1597
- target.operating_system == target_lexicon::OperatingSystem::Windows
1598
- {
1599
- if !self
1600
- .compiler_config
1601
- .ensure_setting_unset_or_given("unwind_info", "true")
1602
- {
1603
- bail!("compiler option 'unwind_info' must be enabled profiling");
1604
- }
1605
- }
1606
-
1607
- // We require frame pointers for correct stack walking, which is safety
1608
- // critical in the presence of reference types, and otherwise it is just
1609
- // really bad developer experience to get wrong.
1610
- self.compiler_config
1611
- .settings
1612
- .insert("preserve_frame_pointers".into(), "true".into());
1613
-
1614
- // check for incompatible compiler options and set required values
1615
- if self.features.reference_types {
1616
- if !self
1617
- .compiler_config
1618
- .ensure_setting_unset_or_given("enable_safepoints", "true")
1619
- {
1620
- bail!("compiler option 'enable_safepoints' must be enabled when 'reference types' is enabled");
1621
- }
1622
- }
1623
- if self.features.simd {
1624
- if !self
1625
- .compiler_config
1626
- .ensure_setting_unset_or_given("enable_simd", "true")
1627
- {
1628
- bail!("compiler option 'enable_simd' must be enabled when 'simd' is enabled");
1629
- }
1630
- }
1631
-
1632
- if self.features.relaxed_simd && !self.features.simd {
1633
- bail!("cannot disable the simd proposal but enable the relaxed simd proposal");
1634
- }
1635
-
1636
- // Apply compiler settings and flags
1637
- for (k, v) in self.compiler_config.settings.iter() {
1638
- compiler.set(k, v)?;
1639
- }
1640
- for flag in self.compiler_config.flags.iter() {
1641
- compiler.enable(flag)?;
1642
- }
1643
-
1644
- if let Some(cache_store) = &self.compiler_config.cache_store {
1645
- compiler.enable_incremental_compilation(cache_store.clone())?;
1646
- }
1647
-
1648
- Ok((self, compiler.build()?))
1649
- }
1650
-
1651
- /// Internal setting for whether adapter modules for components will have
1652
- /// extra WebAssembly instructions inserted performing more debug checks
1653
- /// then are necessary.
1654
- #[cfg(feature = "component-model")]
1655
- pub fn debug_adapter_modules(&mut self, debug: bool) -> &mut Self {
1656
- self.tunables.debug_adapter_modules = debug;
1657
- self
1658
- }
1659
-
1660
- /// Enables clif output when compiling a WebAssembly module.
1661
- #[cfg(any(feature = "cranelift", feature = "winch"))]
1662
- pub fn emit_clif(&mut self, path: &Path) {
1663
- self.compiler_config.clif_dir = Some(path.to_path_buf());
1664
- }
1665
- }
1666
-
1667
- fn round_up_to_pages(val: u64) -> u64 {
1668
- let page_size = wasmtime_runtime::page_size() as u64;
1669
- debug_assert!(page_size.is_power_of_two());
1670
- val.checked_add(page_size - 1)
1671
- .map(|val| val & !(page_size - 1))
1672
- .unwrap_or(u64::MAX / page_size + 1)
1673
- }
1674
-
1675
- impl Default for Config {
1676
- fn default() -> Config {
1677
- Config::new()
1678
- }
1679
- }
1680
-
1681
- impl fmt::Debug for Config {
1682
- fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
1683
- let mut f = f.debug_struct("Config");
1684
- f.field("debug_info", &self.tunables.generate_native_debuginfo)
1685
- .field("parse_wasm_debuginfo", &self.tunables.parse_wasm_debuginfo)
1686
- .field("wasm_threads", &self.features.threads)
1687
- .field("wasm_reference_types", &self.features.reference_types)
1688
- .field(
1689
- "wasm_function_references",
1690
- &self.features.function_references,
1691
- )
1692
- .field("wasm_bulk_memory", &self.features.bulk_memory)
1693
- .field("wasm_simd", &self.features.simd)
1694
- .field("wasm_relaxed_simd", &self.features.relaxed_simd)
1695
- .field("wasm_multi_value", &self.features.multi_value)
1696
- .field(
1697
- "static_memory_maximum_size",
1698
- &(u64::from(self.tunables.static_memory_bound)
1699
- * u64::from(wasmtime_environ::WASM_PAGE_SIZE)),
1700
- )
1701
- .field(
1702
- "static_memory_guard_size",
1703
- &self.tunables.static_memory_offset_guard_size,
1704
- )
1705
- .field(
1706
- "dynamic_memory_guard_size",
1707
- &self.tunables.dynamic_memory_offset_guard_size,
1708
- )
1709
- .field(
1710
- "guard_before_linear_memory",
1711
- &self.tunables.guard_before_linear_memory,
1712
- )
1713
- .field("parallel_compilation", &self.parallel_compilation);
1714
- #[cfg(any(feature = "cranelift", feature = "winch"))]
1715
- {
1716
- f.field("compiler_config", &self.compiler_config);
1717
- }
1718
- f.finish()
1719
- }
1720
- }
1721
-
1722
- /// Possible Compilation strategies for a wasm module.
1723
- ///
1724
- /// This is used as an argument to the [`Config::strategy`] method.
1725
- #[non_exhaustive]
1726
- #[derive(Clone, Debug, Copy)]
1727
- pub enum Strategy {
1728
- /// An indicator that the compilation strategy should be automatically
1729
- /// selected.
1730
- ///
1731
- /// This is generally what you want for most projects and indicates that the
1732
- /// `wasmtime` crate itself should make the decision about what the best
1733
- /// code generator for a wasm module is.
1734
- ///
1735
- /// Currently this always defaults to Cranelift, but the default value may
1736
- /// change over time.
1737
- Auto,
1738
-
1739
- /// Currently the default backend, Cranelift aims to be a reasonably fast
1740
- /// code generator which generates high quality machine code.
1741
- Cranelift,
1742
-
1743
- /// A baseline compiler for WebAssembly, currently under active development and not ready for
1744
- /// production applications.
1745
- Winch,
1746
- }
1747
-
1748
- /// Possible optimization levels for the Cranelift codegen backend.
1749
- #[non_exhaustive]
1750
- #[derive(Clone, Debug, Serialize, Deserialize, Eq, PartialEq)]
1751
- pub enum OptLevel {
1752
- /// No optimizations performed, minimizes compilation time by disabling most
1753
- /// optimizations.
1754
- None,
1755
- /// Generates the fastest possible code, but may take longer.
1756
- Speed,
1757
- /// Similar to `speed`, but also performs transformations aimed at reducing
1758
- /// code size.
1759
- SpeedAndSize,
1760
- }
1761
-
1762
- /// Select which profiling technique to support.
1763
- #[derive(Debug, Clone, Copy, PartialEq)]
1764
- pub enum ProfilingStrategy {
1765
- /// No profiler support.
1766
- None,
1767
-
1768
- /// Collect function name information as the "perf map" file format, used with `perf` on Linux.
1769
- PerfMap,
1770
-
1771
- /// Collect profiling info for "jitdump" file format, used with `perf` on
1772
- /// Linux.
1773
- JitDump,
1774
-
1775
- /// Collect profiling info using the "ittapi", used with `VTune` on Linux.
1776
- VTune,
1777
- }
1778
-
1779
- /// Select how wasm backtrace detailed information is handled.
1780
- #[derive(Debug, Clone, Copy)]
1781
- pub enum WasmBacktraceDetails {
1782
- /// Support is unconditionally enabled and wasmtime will parse and read
1783
- /// debug information.
1784
- Enable,
1785
-
1786
- /// Support is disabled, and wasmtime will not parse debug information for
1787
- /// backtrace details.
1788
- Disable,
1789
-
1790
- /// Support for backtrace details is conditional on the
1791
- /// `WASMTIME_BACKTRACE_DETAILS` environment variable.
1792
- Environment,
1793
- }
1794
-
1795
- /// Configuration options used with [`InstanceAllocationStrategy::Pooling`] to
1796
- /// change the behavior of the pooling instance allocator.
1797
- ///
1798
- /// This structure has a builder-style API in the same manner as [`Config`] and
1799
- /// is configured with [`Config::allocation_strategy`].
1800
- #[cfg(feature = "pooling-allocator")]
1801
- #[derive(Debug, Clone, Default)]
1802
- pub struct PoolingAllocationConfig {
1803
- config: wasmtime_runtime::PoolingInstanceAllocatorConfig,
1804
- }
1805
-
1806
- #[cfg(feature = "pooling-allocator")]
1807
- impl PoolingAllocationConfig {
1808
- /// Configures the maximum number of "unused warm slots" to retain in the
1809
- /// pooling allocator.
1810
- ///
1811
- /// The pooling allocator operates over slots to allocate from, and each
1812
- /// slot is considered "cold" if it's never been used before or "warm" if
1813
- /// it's been used by some module in the past. Slots in the pooling
1814
- /// allocator additionally track an "affinity" flag to a particular core
1815
- /// wasm module. When a module is instantiated into a slot then the slot is
1816
- /// considered affine to that module, even after the instance has been
1817
- /// dealloocated.
1818
- ///
1819
- /// When a new instance is created then a slot must be chosen, and the
1820
- /// current algorithm for selecting a slot is:
1821
- ///
1822
- /// * If there are slots that are affine to the module being instantiated,
1823
- /// then the most recently used slot is selected to be allocated from.
1824
- /// This is done to improve reuse of resources such as memory mappings and
1825
- /// additionally try to benefit from temporal locality for things like
1826
- /// caches.
1827
- ///
1828
- /// * Otherwise if there are more than N affine slots to other modules, then
1829
- /// one of those affine slots is chosen to be allocated. The slot chosen
1830
- /// is picked on a least-recently-used basis.
1831
- ///
1832
- /// * Finally, if there are less than N affine slots to other modules, then
1833
- /// the non-affine slots are allocated from.
1834
- ///
1835
- /// This setting, `max_unused_warm_slots`, is the value for N in the above
1836
- /// algorithm. The purpose of this setting is to have a knob over the RSS
1837
- /// impact of "unused slots" for a long-running wasm server.
1838
- ///
1839
- /// If this setting is set to 0, for example, then affine slots are
1840
- /// aggressively resused on a least-recently-used basis. A "cold" slot is
1841
- /// only used if there are no affine slots available to allocate from. This
1842
- /// means that the set of slots used over the lifetime of a program is the
1843
- /// same as the maximum concurrent number of wasm instances.
1844
- ///
1845
- /// If this setting is set to infinity, however, then cold slots are
1846
- /// prioritized to be allocated from. This means that the set of slots used
1847
- /// over the lifetime of a program will approach
1848
- /// [`PoolingAllocationConfig::instance_count`], or the maximum number of
1849
- /// slots in the pooling allocator.
1850
- ///
1851
- /// Wasmtime does not aggressively decommit all resources associated with a
1852
- /// slot when the slot is not in use. For example the
1853
- /// [`PoolingAllocationConfig::linear_memory_keep_resident`] option can be
1854
- /// used to keep memory associated with a slot, even when it's not in use.
1855
- /// This means that the total set of used slots in the pooling instance
1856
- /// allocator can impact the overall RSS usage of a program.
1857
- ///
1858
- /// The default value for this option is 100.
1859
- pub fn max_unused_warm_slots(&mut self, max: u32) -> &mut Self {
1860
- self.config.max_unused_warm_slots = max;
1861
- self
1862
- }
1863
-
1864
- /// Configures whether or not stacks used for async futures are reset to
1865
- /// zero after usage.
1866
- ///
1867
- /// When the [`async_support`](Config::async_support) method is enabled for
1868
- /// Wasmtime and the [`call_async`] variant
1869
- /// of calling WebAssembly is used then Wasmtime will create a separate
1870
- /// runtime execution stack for each future produced by [`call_async`].
1871
- /// During the deallocation process Wasmtime won't by default reset the
1872
- /// contents of the stack back to zero.
1873
- ///
1874
- /// When this option is enabled it can be seen as a defense-in-depth
1875
- /// mechanism to reset a stack back to zero. This is not required for
1876
- /// correctness and can be a costly operation in highly concurrent
1877
- /// environments due to modifications of the virtual address space requiring
1878
- /// process-wide synchronization.
1879
- ///
1880
- /// This option defaults to `false`.
1881
- ///
1882
- /// [`call_async`]: crate::TypedFunc::call_async
1883
- #[cfg(feature = "async")]
1884
- #[cfg_attr(nightlydoc, doc(cfg(feature = "async")))]
1885
- pub fn async_stack_zeroing(&mut self, enable: bool) -> &mut Self {
1886
- self.config.async_stack_zeroing = enable;
1887
- self
1888
- }
1889
-
1890
- /// How much memory, in bytes, to keep resident for async stacks allocated
1891
- /// with the pooling allocator.
1892
- ///
1893
- /// When [`PoolingAllocationConfig::async_stack_zeroing`] is enabled then
1894
- /// Wasmtime will reset the contents of async stacks back to zero upon
1895
- /// deallocation. This option can be used to perform the zeroing operation
1896
- /// with `memset` up to a certain threshold of bytes instead of using system
1897
- /// calls to reset the stack to zero.
1898
- ///
1899
- /// Note that when using this option the memory with async stacks will
1900
- /// never be decommitted.
1901
- #[cfg(feature = "async")]
1902
- #[cfg_attr(nightlydoc, doc(cfg(feature = "async")))]
1903
- pub fn async_stack_keep_resident(&mut self, size: usize) -> &mut Self {
1904
- let size = round_up_to_pages(size as u64) as usize;
1905
- self.config.async_stack_keep_resident = size;
1906
- self
1907
- }
1908
-
1909
- /// How much memory, in bytes, to keep resident for each linear memory
1910
- /// after deallocation.
1911
- ///
1912
- /// This option is only applicable on Linux and has no effect on other
1913
- /// platforms.
1914
- ///
1915
- /// By default Wasmtime will use `madvise` to reset the entire contents of
1916
- /// linear memory back to zero when a linear memory is deallocated. This
1917
- /// option can be used to use `memset` instead to set memory back to zero
1918
- /// which can, in some configurations, reduce the number of page faults
1919
- /// taken when a slot is reused.
1920
- pub fn linear_memory_keep_resident(&mut self, size: usize) -> &mut Self {
1921
- let size = round_up_to_pages(size as u64) as usize;
1922
- self.config.linear_memory_keep_resident = size;
1923
- self
1924
- }
1925
-
1926
- /// How much memory, in bytes, to keep resident for each table after
1927
- /// deallocation.
1928
- ///
1929
- /// This option is only applicable on Linux and has no effect on other
1930
- /// platforms.
1931
- ///
1932
- /// This option is the same as
1933
- /// [`PoolingAllocationConfig::linear_memory_keep_resident`] except that it
1934
- /// is applicable to tables instead.
1935
- pub fn table_keep_resident(&mut self, size: usize) -> &mut Self {
1936
- let size = round_up_to_pages(size as u64) as usize;
1937
- self.config.table_keep_resident = size;
1938
- self
1939
- }
1940
-
1941
- /// The maximum number of concurrent instances supported (default is 1000).
1942
- ///
1943
- /// This value has a direct impact on the amount of memory allocated by the pooling
1944
- /// instance allocator.
1945
- ///
1946
- /// The pooling instance allocator allocates three memory pools with sizes depending on this value:
1947
- ///
1948
- /// * An instance pool, where each entry in the pool can store the runtime representation
1949
- /// of an instance, including a maximal `VMContext` structure.
1950
- ///
1951
- /// * A memory pool, where each entry in the pool contains the reserved address space for each
1952
- /// linear memory supported by an instance.
1953
- ///
1954
- /// * A table pool, where each entry in the pool contains the space needed for each WebAssembly table
1955
- /// supported by an instance (see `table_elements` to control the size of each table).
1956
- ///
1957
- /// Additionally, this value will also control the maximum number of execution stacks allowed for
1958
- /// asynchronous execution (one per instance), when enabled.
1959
- ///
1960
- /// The memory pool will reserve a large quantity of host process address space to elide the bounds
1961
- /// checks required for correct WebAssembly memory semantics. Even for 64-bit address spaces, the
1962
- /// address space is limited when dealing with a large number of supported instances.
1963
- ///
1964
- /// For example, on Linux x86_64, the userland address space limit is 128 TiB. That might seem like a lot,
1965
- /// but each linear memory will *reserve* 6 GiB of space by default. Multiply that by the number of linear
1966
- /// memories each instance supports and then by the number of supported instances and it becomes apparent
1967
- /// that address space can be exhausted depending on the number of supported instances.
1968
- pub fn instance_count(&mut self, count: u32) -> &mut Self {
1969
- self.config.limits.count = count;
1970
- self
1971
- }
1972
-
1973
- /// The maximum size, in bytes, allocated for an instance and its
1974
- /// `VMContext`.
1975
- ///
1976
- /// This amount of space is pre-allocated for `count` number of instances
1977
- /// and is used to store the runtime `wasmtime_runtime::Instance` structure
1978
- /// along with its adjacent `VMContext` structure. The `Instance` type has a
1979
- /// static size but `VMContext` is dynamically sized depending on the module
1980
- /// being instantiated. This size limit loosely correlates to the size of
1981
- /// the wasm module, taking into account factors such as:
1982
- ///
1983
- /// * number of functions
1984
- /// * number of globals
1985
- /// * number of memories
1986
- /// * number of tables
1987
- /// * number of function types
1988
- ///
1989
- /// If the allocated size per instance is too small then instantiation of a
1990
- /// module will fail at runtime with an error indicating how many bytes were
1991
- /// needed. This amount of bytes are committed to memory per-instance when
1992
- /// a pooling allocator is created.
1993
- ///
1994
- /// The default value for this is 1MB.
1995
- pub fn instance_size(&mut self, size: usize) -> &mut Self {
1996
- self.config.limits.size = size;
1997
- self
1998
- }
1999
-
2000
- /// The maximum number of defined tables for a module (default is 1).
2001
- ///
2002
- /// This value controls the capacity of the `VMTableDefinition` table in each instance's
2003
- /// `VMContext` structure.
2004
- ///
2005
- /// The allocated size of the table will be `tables * sizeof(VMTableDefinition)` for each
2006
- /// instance regardless of how many tables are defined by an instance's module.
2007
- pub fn instance_tables(&mut self, tables: u32) -> &mut Self {
2008
- self.config.limits.tables = tables;
2009
- self
2010
- }
2011
-
2012
- /// The maximum table elements for any table defined in a module (default is 10000).
2013
- ///
2014
- /// If a table's minimum element limit is greater than this value, the module will
2015
- /// fail to instantiate.
2016
- ///
2017
- /// If a table's maximum element limit is unbounded or greater than this value,
2018
- /// the maximum will be `table_elements` for the purpose of any `table.grow` instruction.
2019
- ///
2020
- /// This value is used to reserve the maximum space for each supported table; table elements
2021
- /// are pointer-sized in the Wasmtime runtime. Therefore, the space reserved for each instance
2022
- /// is `tables * table_elements * sizeof::<*const ()>`.
2023
- pub fn instance_table_elements(&mut self, elements: u32) -> &mut Self {
2024
- self.config.limits.table_elements = elements;
2025
- self
2026
- }
2027
-
2028
- /// The maximum number of defined linear memories for a module (default is 1).
2029
- ///
2030
- /// This value controls the capacity of the `VMMemoryDefinition` table in each instance's
2031
- /// `VMContext` structure.
2032
- ///
2033
- /// The allocated size of the table will be `memories * sizeof(VMMemoryDefinition)` for each
2034
- /// instance regardless of how many memories are defined by an instance's module.
2035
- pub fn instance_memories(&mut self, memories: u32) -> &mut Self {
2036
- self.config.limits.memories = memories;
2037
- self
2038
- }
2039
-
2040
- /// The maximum number of pages for any linear memory defined in a module (default is 160).
2041
- ///
2042
- /// The default of 160 means at most 10 MiB of host memory may be committed for each instance.
2043
- ///
2044
- /// If a memory's minimum page limit is greater than this value, the module will
2045
- /// fail to instantiate.
2046
- ///
2047
- /// If a memory's maximum page limit is unbounded or greater than this value,
2048
- /// the maximum will be `memory_pages` for the purpose of any `memory.grow` instruction.
2049
- ///
2050
- /// This value is used to control the maximum accessible space for each linear memory of an instance.
2051
- ///
2052
- /// The reservation size of each linear memory is controlled by the
2053
- /// `static_memory_maximum_size` setting and this value cannot
2054
- /// exceed the configured static memory maximum size.
2055
- pub fn instance_memory_pages(&mut self, pages: u64) -> &mut Self {
2056
- self.config.limits.memory_pages = pages;
2057
- self
2058
- }
2059
- }
2060
-
2061
- pub(crate) fn probestack_supported(arch: Architecture) -> bool {
2062
- matches!(
2063
- arch,
2064
- Architecture::X86_64 | Architecture::Aarch64(_) | Architecture::Riscv64(_)
2065
- )
2066
- }