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,2059 +0,0 @@
1
- use crate::component::func::{Func, Memory, MemoryMut, Options};
2
- use crate::component::storage::{storage_as_slice, storage_as_slice_mut};
3
- use crate::store::StoreOpaque;
4
- use crate::{AsContext, AsContextMut, StoreContext, StoreContextMut, ValRaw};
5
- use anyhow::{anyhow, bail, Context, Result};
6
- use std::borrow::Cow;
7
- use std::fmt;
8
- use std::marker;
9
- use std::mem::{self, MaybeUninit};
10
- use std::str;
11
- use wasmtime_environ::component::{
12
- CanonicalAbiInfo, ComponentTypes, InterfaceType, StringEncoding, VariantInfo, MAX_FLAT_PARAMS,
13
- MAX_FLAT_RESULTS,
14
- };
15
-
16
- /// A statically-typed version of [`Func`] which takes `Params` as input and
17
- /// returns `Return`.
18
- ///
19
- /// This is an efficient way to invoke a WebAssembly component where if the
20
- /// inputs and output are statically known this can eschew the vast majority of
21
- /// machinery and checks when calling WebAssembly. This is the most optimized
22
- /// way to call a WebAssembly component.
23
- ///
24
- /// Note that like [`Func`] this is a pointer within a [`Store`](crate::Store)
25
- /// and usage will panic if used with the wrong store.
26
- ///
27
- /// This type is primarily created with the [`Func::typed`] API.
28
- pub struct TypedFunc<Params, Return> {
29
- func: Func,
30
-
31
- // The definition of this field is somewhat subtle and may be surprising.
32
- // Naively one might expect something like
33
- //
34
- // _marker: marker::PhantomData<fn(Params) -> Return>,
35
- //
36
- // Since this is a function pointer after all. The problem with this
37
- // definition though is that it imposes the wrong variance on `Params` from
38
- // what we want. Abstractly a `fn(Params)` is able to store `Params` within
39
- // it meaning you can only give it `Params` that live longer than the
40
- // function pointer.
41
- //
42
- // With a component model function, however, we're always copying data from
43
- // the host into the guest, so we are never storing pointers to `Params`
44
- // into the guest outside the duration of a `call`, meaning we can actually
45
- // accept values in `TypedFunc::call` which live for a shorter duration
46
- // than the `Params` argument on the struct.
47
- //
48
- // This all means that we don't use a phantom function pointer, but instead
49
- // feign phantom storage here to get the variance desired.
50
- _marker: marker::PhantomData<(Params, Return)>,
51
- }
52
-
53
- impl<Params, Return> Copy for TypedFunc<Params, Return> {}
54
-
55
- impl<Params, Return> Clone for TypedFunc<Params, Return> {
56
- fn clone(&self) -> TypedFunc<Params, Return> {
57
- *self
58
- }
59
- }
60
-
61
- impl<Params, Return> TypedFunc<Params, Return>
62
- where
63
- Params: ComponentNamedList + Lower,
64
- Return: Lift,
65
- {
66
- /// Creates a new [`TypedFunc`] from the provided component [`Func`],
67
- /// unsafely asserting that the underlying function takes `Params` as
68
- /// input and returns `Return`.
69
- ///
70
- /// # Unsafety
71
- ///
72
- /// This is an unsafe function because it does not verify that the [`Func`]
73
- /// provided actually implements this signature. It's up to the caller to
74
- /// have performed some other sort of check to ensure that the signature is
75
- /// correct.
76
- pub unsafe fn new_unchecked(func: Func) -> TypedFunc<Params, Return> {
77
- TypedFunc {
78
- _marker: marker::PhantomData,
79
- func,
80
- }
81
- }
82
-
83
- /// Returns the underlying un-typed [`Func`] that this [`TypedFunc`]
84
- /// references.
85
- pub fn func(&self) -> &Func {
86
- &self.func
87
- }
88
-
89
- /// Calls the underlying WebAssembly component function using the provided
90
- /// `params` as input.
91
- ///
92
- /// This method is used to enter into a component. Execution happens within
93
- /// the `store` provided. The `params` are copied into WebAssembly memory
94
- /// as appropriate and a core wasm function is invoked.
95
- ///
96
- /// # Post-return
97
- ///
98
- /// In the component model each function can have a "post return" specified
99
- /// which allows cleaning up the arguments returned to the host. For example
100
- /// if WebAssembly returns a string to the host then it might be a uniquely
101
- /// allocated string which, after the host finishes processing it, needs to
102
- /// be deallocated in the wasm instance's own linear memory to prevent
103
- /// memory leaks in wasm itself. The `post-return` canonical abi option is
104
- /// used to configured this.
105
- ///
106
- /// To accommodate this feature of the component model after invoking a
107
- /// function via [`TypedFunc::call`] you must next invoke
108
- /// [`TypedFunc::post_return`]. Note that the return value of the function
109
- /// should be processed between these two function calls. The return value
110
- /// continues to be usable from an embedder's perspective after
111
- /// `post_return` is called, but after `post_return` is invoked it may no
112
- /// longer retain the same value that the wasm module originally returned.
113
- ///
114
- /// Also note that [`TypedFunc::post_return`] must be invoked irrespective
115
- /// of whether the canonical ABI option `post-return` was configured or not.
116
- /// This means that embedders must unconditionally call
117
- /// [`TypedFunc::post_return`] when a function returns. If this function
118
- /// call returns an error, however, then [`TypedFunc::post_return`] is not
119
- /// required.
120
- ///
121
- /// # Errors
122
- ///
123
- /// This function can return an error for a number of reasons:
124
- ///
125
- /// * If the wasm itself traps during execution.
126
- /// * If the wasm traps while copying arguments into memory.
127
- /// * If the wasm provides bad allocation pointers when copying arguments
128
- /// into memory.
129
- /// * If the wasm returns a value which violates the canonical ABI.
130
- /// * If this function's instances cannot be entered, for example if the
131
- /// instance is currently calling a host function.
132
- /// * If a previous function call occurred and the corresponding
133
- /// `post_return` hasn't been invoked yet.
134
- ///
135
- /// In general there are many ways that things could go wrong when copying
136
- /// types in and out of a wasm module with the canonical ABI, and certain
137
- /// error conditions are specific to certain types. For example a
138
- /// WebAssembly module can't return an invalid `char`. When allocating space
139
- /// for this host to copy a string into the returned pointer must be
140
- /// in-bounds in memory.
141
- ///
142
- /// If an error happens then the error should contain detailed enough
143
- /// information to understand which part of the canonical ABI went wrong
144
- /// and what to inspect.
145
- ///
146
- /// # Panics
147
- ///
148
- /// Panics if this is called on a function in an asynchronous store. This
149
- /// only works with functions defined within a synchonous store. Also
150
- /// panics if `store` does not own this function.
151
- pub fn call(&self, store: impl AsContextMut, params: Params) -> Result<Return> {
152
- assert!(
153
- !store.as_context().async_support(),
154
- "must use `call_async` when async support is enabled on the config"
155
- );
156
- self.call_impl(store, params)
157
- }
158
-
159
- /// Exactly like [`Self::call`], except for use on asynchronous stores.
160
- ///
161
- /// # Panics
162
- ///
163
- /// Panics if this is called on a function in a synchronous store. This
164
- /// only works with functions defined within an asynchronous store. Also
165
- /// panics if `store` does not own this function.
166
- #[cfg(feature = "async")]
167
- #[cfg_attr(nightlydoc, doc(cfg(feature = "async")))]
168
- pub async fn call_async<T>(
169
- &self,
170
- mut store: impl AsContextMut<Data = T>,
171
- params: Params,
172
- ) -> Result<Return>
173
- where
174
- T: Send,
175
- Params: Send + Sync,
176
- Return: Send + Sync,
177
- {
178
- let mut store = store.as_context_mut();
179
- assert!(
180
- store.0.async_support(),
181
- "cannot use `call_async` when async support is not enabled on the config"
182
- );
183
- store
184
- .on_fiber(|store| self.call_impl(store, params))
185
- .await?
186
- }
187
-
188
- fn call_impl(&self, mut store: impl AsContextMut, params: Params) -> Result<Return> {
189
- let store = &mut store.as_context_mut();
190
- // Note that this is in theory simpler than it might read at this time.
191
- // Here we're doing a runtime dispatch on the `flatten_count` for the
192
- // params/results to see whether they're inbounds. This creates 4 cases
193
- // to handle. In reality this is a highly optimizable branch where LLVM
194
- // will easily figure out that only one branch here is taken.
195
- //
196
- // Otherwise this current construction is done to ensure that the stack
197
- // space reserved for the params/results is always of the appropriate
198
- // size (as the params/results needed differ depending on the "flatten"
199
- // count)
200
- if Params::flatten_count() <= MAX_FLAT_PARAMS {
201
- if Return::flatten_count() <= MAX_FLAT_RESULTS {
202
- self.func.call_raw(
203
- store,
204
- &params,
205
- Self::lower_stack_args,
206
- Self::lift_stack_result,
207
- )
208
- } else {
209
- self.func.call_raw(
210
- store,
211
- &params,
212
- Self::lower_stack_args,
213
- Self::lift_heap_result,
214
- )
215
- }
216
- } else {
217
- if Return::flatten_count() <= MAX_FLAT_RESULTS {
218
- self.func.call_raw(
219
- store,
220
- &params,
221
- Self::lower_heap_args,
222
- Self::lift_stack_result,
223
- )
224
- } else {
225
- self.func.call_raw(
226
- store,
227
- &params,
228
- Self::lower_heap_args,
229
- Self::lift_heap_result,
230
- )
231
- }
232
- }
233
- }
234
-
235
- /// Lower parameters directly onto the stack specified by the `dst`
236
- /// location.
237
- ///
238
- /// This is only valid to call when the "flatten count" is small enough, or
239
- /// when the canonical ABI says arguments go through the stack rather than
240
- /// the heap.
241
- fn lower_stack_args<T>(
242
- store: &mut StoreContextMut<'_, T>,
243
- options: &Options,
244
- params: &Params,
245
- dst: &mut MaybeUninit<Params::Lower>,
246
- ) -> Result<()> {
247
- assert!(Params::flatten_count() <= MAX_FLAT_PARAMS);
248
- params.lower(store, options, dst)?;
249
- Ok(())
250
- }
251
-
252
- /// Lower parameters onto a heap-allocated location.
253
- ///
254
- /// This is used when the stack space to be used for the arguments is above
255
- /// the `MAX_FLAT_PARAMS` threshold. Here the wasm's `realloc` function is
256
- /// invoked to allocate space and then parameters are stored at that heap
257
- /// pointer location.
258
- fn lower_heap_args<T>(
259
- store: &mut StoreContextMut<'_, T>,
260
- options: &Options,
261
- params: &Params,
262
- dst: &mut MaybeUninit<ValRaw>,
263
- ) -> Result<()> {
264
- assert!(Params::flatten_count() > MAX_FLAT_PARAMS);
265
-
266
- // Memory must exist via validation if the arguments are stored on the
267
- // heap, so we can create a `MemoryMut` at this point. Afterwards
268
- // `realloc` is used to allocate space for all the arguments and then
269
- // they're all stored in linear memory.
270
- //
271
- // Note that `realloc` will bake in a check that the returned pointer is
272
- // in-bounds.
273
- let mut memory = MemoryMut::new(store.as_context_mut(), options);
274
- let ptr = memory.realloc(0, 0, Params::ALIGN32, Params::SIZE32)?;
275
- params.store(&mut memory, ptr)?;
276
-
277
- // Note that the pointer here is stored as a 64-bit integer. This allows
278
- // this to work with either 32 or 64-bit memories. For a 32-bit memory
279
- // it'll just ignore the upper 32 zero bits, and for 64-bit memories
280
- // this'll have the full 64-bits. Note that for 32-bit memories the call
281
- // to `realloc` above guarantees that the `ptr` is in-bounds meaning
282
- // that we will know that the zero-extended upper bits of `ptr` are
283
- // guaranteed to be zero.
284
- //
285
- // This comment about 64-bit integers is also referred to below with
286
- // "WRITEPTR64".
287
- dst.write(ValRaw::i64(ptr as i64));
288
-
289
- Ok(())
290
- }
291
-
292
- /// Lift the result of a function directly from the stack result.
293
- ///
294
- /// This is only used when the result fits in the maximum number of stack
295
- /// slots.
296
- fn lift_stack_result(
297
- store: &StoreOpaque,
298
- options: &Options,
299
- dst: &Return::Lower,
300
- ) -> Result<Return> {
301
- assert!(Return::flatten_count() <= MAX_FLAT_RESULTS);
302
- Return::lift(store, options, dst)
303
- }
304
-
305
- /// Lift the result of a function where the result is stored indirectly on
306
- /// the heap.
307
- fn lift_heap_result(store: &StoreOpaque, options: &Options, dst: &ValRaw) -> Result<Return> {
308
- assert!(Return::flatten_count() > MAX_FLAT_RESULTS);
309
- // FIXME: needs to read an i64 for memory64
310
- let ptr = usize::try_from(dst.get_u32())?;
311
- if ptr % usize::try_from(Return::ALIGN32)? != 0 {
312
- bail!("return pointer not aligned");
313
- }
314
-
315
- let memory = Memory::new(store, options);
316
- let bytes = memory
317
- .as_slice()
318
- .get(ptr..)
319
- .and_then(|b| b.get(..Return::SIZE32))
320
- .ok_or_else(|| anyhow::anyhow!("pointer out of bounds of memory"))?;
321
- Return::load(&memory, bytes)
322
- }
323
-
324
- /// See [`Func::post_return`]
325
- pub fn post_return(&self, store: impl AsContextMut) -> Result<()> {
326
- self.func.post_return(store)
327
- }
328
-
329
- /// See [`Func::post_return_async`]
330
- #[cfg(feature = "async")]
331
- #[cfg_attr(nightlydoc, doc(cfg(feature = "async")))]
332
- pub async fn post_return_async<T: Send>(
333
- &self,
334
- store: impl AsContextMut<Data = T>,
335
- ) -> Result<()> {
336
- self.func.post_return_async(store).await
337
- }
338
- }
339
-
340
- /// A trait representing a static list of named types that can be passed to or
341
- /// returned from a [`TypedFunc`].
342
- ///
343
- /// This trait is implemented for a number of tuple types and is not expected
344
- /// to be implemented externally. The contents of this trait are hidden as it's
345
- /// intended to be an implementation detail of Wasmtime. The contents of this
346
- /// trait are not covered by Wasmtime's stability guarantees.
347
- ///
348
- /// For more information about this trait see [`Func::typed`] and
349
- /// [`TypedFunc`].
350
- //
351
- // Note that this is an `unsafe` trait, and the unsafety means that
352
- // implementations of this trait must be correct or otherwise [`TypedFunc`]
353
- // would not be memory safe. The main reason this is `unsafe` is the
354
- // `typecheck` function which must operate correctly relative to the `AsTuple`
355
- // interpretation of the implementor.
356
- pub unsafe trait ComponentNamedList: ComponentType {
357
- /// Performs a typecheck to ensure that this `ComponentNamedList`
358
- /// implementor matches the types of the types in `params`.
359
- #[doc(hidden)]
360
- fn typecheck_list(params: &[InterfaceType], types: &ComponentTypes) -> Result<()>;
361
- }
362
-
363
- /// A trait representing types which can be passed to and read from components
364
- /// with the canonical ABI.
365
- ///
366
- /// This trait is implemented for Rust types which can be communicated to
367
- /// components. This is implemented for Rust types which correspond to
368
- /// interface types in the component model of WebAssembly. The [`Func::typed`]
369
- /// and [`TypedFunc`] Rust items are the main consumers of this trait.
370
- ///
371
- /// For more information on this trait see the examples in [`Func::typed`].
372
- ///
373
- /// The contents of this trait are hidden as it's intended to be an
374
- /// implementation detail of Wasmtime. The contents of this trait are not
375
- /// covered by Wasmtime's stability guarantees.
376
- //
377
- // Note that this is an `unsafe` trait as `TypedFunc`'s safety heavily relies on
378
- // the correctness of the implementations of this trait. Some ways in which this
379
- // trait must be correct to be safe are:
380
- //
381
- // * The `Lower` associated type must be a `ValRaw` sequence. It doesn't have to
382
- // literally be `[ValRaw; N]` but when laid out in memory it must be adjacent
383
- // `ValRaw` values and have a multiple of the size of `ValRaw` and the same
384
- // alignment.
385
- //
386
- // * The `lower` function must initialize the bits within `Lower` that are going
387
- // to be read by the trampoline that's used to enter core wasm. A trampoline
388
- // is passed `*mut Lower` and will read the canonical abi arguments in
389
- // sequence, so all of the bits must be correctly initialized.
390
- //
391
- // * The `size` and `align` functions must be correct for this value stored in
392
- // the canonical ABI. The `Cursor<T>` iteration of these bytes rely on this
393
- // for correctness as they otherwise eschew bounds-checking.
394
- //
395
- // There are likely some other correctness issues which aren't documented as
396
- // well, this isn't intended to be an exhaustive list. It suffices to say,
397
- // though, that correctness bugs in this trait implementation are highly likely
398
- // to lead to security bugs, which again leads to the `unsafe` in the trait.
399
- //
400
- // Also note that this trait specifically is not sealed because we have a proc
401
- // macro that generates implementations of this trait for external types in a
402
- // `#[derive]`-like fashion.
403
- pub unsafe trait ComponentType {
404
- /// Representation of the "lowered" form of this component value.
405
- ///
406
- /// Lowerings lower into core wasm values which are represented by `ValRaw`.
407
- /// This `Lower` type must be a list of `ValRaw` as either a literal array
408
- /// or a struct where every field is a `ValRaw`. This must be `Copy` (as
409
- /// `ValRaw` is `Copy`) and support all byte patterns. This being correct is
410
- /// one reason why the trait is unsafe.
411
- #[doc(hidden)]
412
- type Lower: Copy;
413
-
414
- /// The information about this type's canonical ABI (size/align/etc).
415
- #[doc(hidden)]
416
- const ABI: CanonicalAbiInfo;
417
-
418
- #[doc(hidden)]
419
- const SIZE32: usize = Self::ABI.size32 as usize;
420
- #[doc(hidden)]
421
- const ALIGN32: u32 = Self::ABI.align32;
422
-
423
- #[doc(hidden)]
424
- const IS_RUST_UNIT_TYPE: bool = false;
425
-
426
- /// Returns the number of core wasm abi values will be used to represent
427
- /// this type in its lowered form.
428
- ///
429
- /// This divides the size of `Self::Lower` by the size of `ValRaw`.
430
- #[doc(hidden)]
431
- fn flatten_count() -> usize {
432
- assert!(mem::size_of::<Self::Lower>() % mem::size_of::<ValRaw>() == 0);
433
- assert!(mem::align_of::<Self::Lower>() == mem::align_of::<ValRaw>());
434
- mem::size_of::<Self::Lower>() / mem::size_of::<ValRaw>()
435
- }
436
-
437
- /// Performs a type-check to see whether this component value type matches
438
- /// the interface type `ty` provided.
439
- #[doc(hidden)]
440
- fn typecheck(ty: &InterfaceType, types: &ComponentTypes) -> Result<()>;
441
- }
442
-
443
- #[doc(hidden)]
444
- pub unsafe trait ComponentVariant: ComponentType {
445
- const CASES: &'static [Option<CanonicalAbiInfo>];
446
- const INFO: VariantInfo = VariantInfo::new_static(Self::CASES);
447
- const PAYLOAD_OFFSET32: usize = Self::INFO.payload_offset32 as usize;
448
- }
449
-
450
- /// Host types which can be passed to WebAssembly components.
451
- ///
452
- /// This trait is implemented for all types that can be passed to components
453
- /// either as parameters of component exports or returns of component imports.
454
- /// This trait represents the ability to convert from the native host
455
- /// representation to the canonical ABI.
456
- //
457
- // TODO: #[derive(Lower)]
458
- // TODO: more docs here
459
- pub unsafe trait Lower: ComponentType {
460
- /// Performs the "lower" function in the canonical ABI.
461
- ///
462
- /// This method will lower the given value into wasm linear memory. The
463
- /// `store` and `func` are provided in case memory is needed (e.g. for
464
- /// strings/lists) so `realloc` can be called. The `dst` is the destination
465
- /// to store the lowered results.
466
- ///
467
- /// Note that `dst` is a pointer to uninitialized memory. It's expected
468
- /// that `dst` is fully initialized by the time this function returns, hence
469
- /// the `unsafe` on the trait implementation.
470
- ///
471
- /// This will only be called if `typecheck` passes for `Op::Lower`.
472
- #[doc(hidden)]
473
- fn lower<T>(
474
- &self,
475
- store: &mut StoreContextMut<T>,
476
- options: &Options,
477
- dst: &mut MaybeUninit<Self::Lower>,
478
- ) -> Result<()>;
479
-
480
- /// Performs the "store" operation in the canonical ABI.
481
- ///
482
- /// This function will store `self` into the linear memory described by
483
- /// `memory` at the `offset` provided.
484
- ///
485
- /// It is expected that `offset` is a valid offset in memory for
486
- /// `Self::SIZE32` bytes. At this time that's not an unsafe contract as it's
487
- /// always re-checked on all stores, but this is something that will need to
488
- /// be improved in the future to remove extra bounds checks. For now this
489
- /// function will panic if there's a bug and `offset` isn't valid within
490
- /// memory.
491
- ///
492
- /// This will only be called if `typecheck` passes for `Op::Lower`.
493
- #[doc(hidden)]
494
- fn store<T>(&self, memory: &mut MemoryMut<'_, T>, offset: usize) -> Result<()>;
495
- }
496
-
497
- /// Host types which can be created from the canonical ABI.
498
- //
499
- // TODO: #[derive(Lower)]
500
- // TODO: more docs here
501
- pub unsafe trait Lift: Sized + ComponentType {
502
- /// Performs the "lift" operation in the canonical ABI.
503
- ///
504
- /// This will read the core wasm values from `src` and use the memory
505
- /// specified by `func` and `store` optionally if necessary. An instance of
506
- /// `Self` is then created from the values, assuming validation succeeds.
507
- ///
508
- /// Note that this has a default implementation but if `typecheck` passes
509
- /// for `Op::Lift` this needs to be overridden.
510
- #[doc(hidden)]
511
- fn lift(store: &StoreOpaque, options: &Options, src: &Self::Lower) -> Result<Self>;
512
-
513
- /// Performs the "load" operation in the canonical ABI.
514
- ///
515
- /// This is given the linear-memory representation of `Self` in the `bytes`
516
- /// array provided which is guaranteed to be `Self::SIZE32` bytes large. All
517
- /// of memory is then also described with `Memory` for bounds-checks and
518
- /// such as necessary for strings/lists.
519
- ///
520
- /// Note that this has a default implementation but if `typecheck` passes
521
- /// for `Op::Lift` this needs to be overridden.
522
- #[doc(hidden)]
523
- fn load(memory: &Memory<'_>, bytes: &[u8]) -> Result<Self>;
524
- }
525
-
526
- // Macro to help generate "forwarding implementations" of `ComponentType` to
527
- // another type, used for wrappers in Rust like `&T`, `Box<T>`, etc. Note that
528
- // these wrappers only implement lowering because lifting native Rust types
529
- // cannot be done.
530
- macro_rules! forward_type_impls {
531
- ($(($($generics:tt)*) $a:ty => $b:ty,)*) => ($(
532
- unsafe impl <$($generics)*> ComponentType for $a {
533
- type Lower = <$b as ComponentType>::Lower;
534
-
535
- const ABI: CanonicalAbiInfo = <$b as ComponentType>::ABI;
536
-
537
- #[inline]
538
- fn typecheck(ty: &InterfaceType, types: &ComponentTypes) -> Result<()> {
539
- <$b as ComponentType>::typecheck(ty, types)
540
- }
541
- }
542
- )*)
543
- }
544
-
545
- forward_type_impls! {
546
- (T: ComponentType + ?Sized) &'_ T => T,
547
- (T: ComponentType + ?Sized) Box<T> => T,
548
- (T: ComponentType + ?Sized) std::rc::Rc<T> => T,
549
- (T: ComponentType + ?Sized) std::sync::Arc<T> => T,
550
- () String => str,
551
- (T: ComponentType) Vec<T> => [T],
552
- }
553
-
554
- macro_rules! forward_lowers {
555
- ($(($($generics:tt)*) $a:ty => $b:ty,)*) => ($(
556
- unsafe impl <$($generics)*> Lower for $a {
557
- fn lower<U>(
558
- &self,
559
- store: &mut StoreContextMut<U>,
560
- options: &Options,
561
- dst: &mut MaybeUninit<Self::Lower>,
562
- ) -> Result<()> {
563
- <$b as Lower>::lower(self, store, options, dst)
564
- }
565
-
566
- fn store<U>(&self, memory: &mut MemoryMut<'_, U>, offset: usize) -> Result<()> {
567
- <$b as Lower>::store(self, memory, offset)
568
- }
569
- }
570
- )*)
571
- }
572
-
573
- forward_lowers! {
574
- (T: Lower + ?Sized) &'_ T => T,
575
- (T: Lower + ?Sized) Box<T> => T,
576
- (T: Lower + ?Sized) std::rc::Rc<T> => T,
577
- (T: Lower + ?Sized) std::sync::Arc<T> => T,
578
- () String => str,
579
- (T: Lower) Vec<T> => [T],
580
- }
581
-
582
- macro_rules! forward_string_lifts {
583
- ($($a:ty,)*) => ($(
584
- unsafe impl Lift for $a {
585
- fn lift(store: &StoreOpaque, options: &Options, src: &Self::Lower) -> Result<Self> {
586
- Ok(<WasmStr as Lift>::lift(store, options, src)?.to_str_from_store(store)?.into())
587
- }
588
-
589
- fn load(memory: &Memory<'_>, bytes: &[u8]) -> Result<Self> {
590
- Ok(<WasmStr as Lift>::load(memory, bytes)?.to_str_from_store(&memory.store)?.into())
591
- }
592
- }
593
- )*)
594
- }
595
-
596
- forward_string_lifts! {
597
- Box<str>,
598
- std::rc::Rc<str>,
599
- std::sync::Arc<str>,
600
- String,
601
- }
602
-
603
- macro_rules! forward_list_lifts {
604
- ($($a:ty,)*) => ($(
605
- unsafe impl <T: Lift> Lift for $a {
606
- fn lift(store: &StoreOpaque, options: &Options, src: &Self::Lower) -> Result<Self> {
607
- let list = <WasmList::<T> as Lift>::lift(store, options, src)?;
608
- (0..list.len).map(|index| list.get_from_store(store, index).unwrap()).collect()
609
- }
610
-
611
- fn load(memory: &Memory<'_>, bytes: &[u8]) -> Result<Self> {
612
- let list = <WasmList::<T> as Lift>::load(memory, bytes)?;
613
- (0..list.len).map(|index| list.get_from_store(&memory.store, index).unwrap()).collect()
614
- }
615
- }
616
- )*)
617
- }
618
-
619
- forward_list_lifts! {
620
- Box<[T]>,
621
- std::rc::Rc<[T]>,
622
- std::sync::Arc<[T]>,
623
- Vec<T>,
624
- }
625
-
626
- // Macro to help generate `ComponentType` implementations for primitive types
627
- // such as integers, char, bool, etc.
628
- macro_rules! integers {
629
- ($($primitive:ident = $ty:ident in $field:ident/$get:ident with abi:$abi:ident,)*) => ($(
630
- unsafe impl ComponentType for $primitive {
631
- type Lower = ValRaw;
632
-
633
- const ABI: CanonicalAbiInfo = CanonicalAbiInfo::$abi;
634
-
635
- fn typecheck(ty: &InterfaceType, _types: &ComponentTypes) -> Result<()> {
636
- match ty {
637
- InterfaceType::$ty => Ok(()),
638
- other => bail!("expected `{}` found `{}`", desc(&InterfaceType::$ty), desc(other))
639
- }
640
- }
641
- }
642
-
643
- unsafe impl Lower for $primitive {
644
- fn lower<T>(
645
- &self,
646
- _store: &mut StoreContextMut<T>,
647
- _options: &Options,
648
- dst: &mut MaybeUninit<Self::Lower>,
649
- ) -> Result<()> {
650
- dst.write(ValRaw::$field(*self as $field));
651
- Ok(())
652
- }
653
-
654
- fn store<T>(&self, memory: &mut MemoryMut<'_, T>, offset: usize) -> Result<()> {
655
- debug_assert!(offset % Self::SIZE32 == 0);
656
- *memory.get(offset) = self.to_le_bytes();
657
- Ok(())
658
- }
659
- }
660
-
661
- unsafe impl Lift for $primitive {
662
- #[inline]
663
- fn lift(_store: &StoreOpaque, _options: &Options, src: &Self::Lower) -> Result<Self> {
664
- Ok(src.$get() as $primitive)
665
- }
666
-
667
- #[inline]
668
- fn load(_mem: &Memory<'_>, bytes: &[u8]) -> Result<Self> {
669
- debug_assert!((bytes.as_ptr() as usize) % Self::SIZE32 == 0);
670
- Ok($primitive::from_le_bytes(bytes.try_into().unwrap()))
671
- }
672
- }
673
- )*)
674
- }
675
-
676
- integers! {
677
- i8 = S8 in i32/get_i32 with abi:SCALAR1,
678
- u8 = U8 in u32/get_u32 with abi:SCALAR1,
679
- i16 = S16 in i32/get_i32 with abi:SCALAR2,
680
- u16 = U16 in u32/get_u32 with abi:SCALAR2,
681
- i32 = S32 in i32/get_i32 with abi:SCALAR4,
682
- u32 = U32 in u32/get_u32 with abi:SCALAR4,
683
- i64 = S64 in i64/get_i64 with abi:SCALAR8,
684
- u64 = U64 in u64/get_u64 with abi:SCALAR8,
685
- }
686
-
687
- macro_rules! floats {
688
- ($($float:ident/$get_float:ident = $ty:ident with abi:$abi:ident)*) => ($(const _: () = {
689
- /// All floats in-and-out of the canonical abi always have their nan
690
- /// payloads canonicalized. conveniently the `NAN` constant in rust has
691
- /// the same representation as canonical nan, so we can use that for the
692
- /// nan value.
693
- #[inline]
694
- fn canonicalize(float: $float) -> $float {
695
- if float.is_nan() {
696
- $float::NAN
697
- } else {
698
- float
699
- }
700
- }
701
-
702
- unsafe impl ComponentType for $float {
703
- type Lower = ValRaw;
704
-
705
- const ABI: CanonicalAbiInfo = CanonicalAbiInfo::$abi;
706
-
707
- fn typecheck(ty: &InterfaceType, _types: &ComponentTypes) -> Result<()> {
708
- match ty {
709
- InterfaceType::$ty => Ok(()),
710
- other => bail!("expected `{}` found `{}`", desc(&InterfaceType::$ty), desc(other))
711
- }
712
- }
713
- }
714
-
715
- unsafe impl Lower for $float {
716
- fn lower<T>(
717
- &self,
718
- _store: &mut StoreContextMut<T>,
719
- _options: &Options,
720
- dst: &mut MaybeUninit<Self::Lower>,
721
- ) -> Result<()> {
722
- dst.write(ValRaw::$float(canonicalize(*self).to_bits()));
723
- Ok(())
724
- }
725
-
726
- fn store<T>(&self, memory: &mut MemoryMut<'_, T>, offset: usize) -> Result<()> {
727
- debug_assert!(offset % Self::SIZE32 == 0);
728
- let ptr = memory.get(offset);
729
- *ptr = canonicalize(*self).to_bits().to_le_bytes();
730
- Ok(())
731
- }
732
- }
733
-
734
- unsafe impl Lift for $float {
735
- #[inline]
736
- fn lift(_store: &StoreOpaque, _options: &Options, src: &Self::Lower) -> Result<Self> {
737
- Ok(canonicalize($float::from_bits(src.$get_float())))
738
- }
739
-
740
- #[inline]
741
- fn load(_mem: &Memory<'_>, bytes: &[u8]) -> Result<Self> {
742
- debug_assert!((bytes.as_ptr() as usize) % Self::SIZE32 == 0);
743
- Ok(canonicalize($float::from_le_bytes(bytes.try_into().unwrap())))
744
- }
745
- }
746
- };)*)
747
- }
748
-
749
- floats! {
750
- f32/get_f32 = Float32 with abi:SCALAR4
751
- f64/get_f64 = Float64 with abi:SCALAR8
752
- }
753
-
754
- unsafe impl ComponentType for bool {
755
- type Lower = ValRaw;
756
-
757
- const ABI: CanonicalAbiInfo = CanonicalAbiInfo::SCALAR1;
758
-
759
- fn typecheck(ty: &InterfaceType, _types: &ComponentTypes) -> Result<()> {
760
- match ty {
761
- InterfaceType::Bool => Ok(()),
762
- other => bail!("expected `bool` found `{}`", desc(other)),
763
- }
764
- }
765
- }
766
-
767
- unsafe impl Lower for bool {
768
- fn lower<T>(
769
- &self,
770
- _store: &mut StoreContextMut<T>,
771
- _options: &Options,
772
- dst: &mut MaybeUninit<Self::Lower>,
773
- ) -> Result<()> {
774
- dst.write(ValRaw::i32(*self as i32));
775
- Ok(())
776
- }
777
-
778
- fn store<T>(&self, memory: &mut MemoryMut<'_, T>, offset: usize) -> Result<()> {
779
- debug_assert!(offset % Self::SIZE32 == 0);
780
- memory.get::<1>(offset)[0] = *self as u8;
781
- Ok(())
782
- }
783
- }
784
-
785
- unsafe impl Lift for bool {
786
- #[inline]
787
- fn lift(_store: &StoreOpaque, _options: &Options, src: &Self::Lower) -> Result<Self> {
788
- match src.get_i32() {
789
- 0 => Ok(false),
790
- _ => Ok(true),
791
- }
792
- }
793
-
794
- #[inline]
795
- fn load(_mem: &Memory<'_>, bytes: &[u8]) -> Result<Self> {
796
- match bytes[0] {
797
- 0 => Ok(false),
798
- _ => Ok(true),
799
- }
800
- }
801
- }
802
-
803
- unsafe impl ComponentType for char {
804
- type Lower = ValRaw;
805
-
806
- const ABI: CanonicalAbiInfo = CanonicalAbiInfo::SCALAR4;
807
-
808
- fn typecheck(ty: &InterfaceType, _types: &ComponentTypes) -> Result<()> {
809
- match ty {
810
- InterfaceType::Char => Ok(()),
811
- other => bail!("expected `char` found `{}`", desc(other)),
812
- }
813
- }
814
- }
815
-
816
- unsafe impl Lower for char {
817
- fn lower<T>(
818
- &self,
819
- _store: &mut StoreContextMut<T>,
820
- _options: &Options,
821
- dst: &mut MaybeUninit<Self::Lower>,
822
- ) -> Result<()> {
823
- dst.write(ValRaw::u32(u32::from(*self)));
824
- Ok(())
825
- }
826
-
827
- fn store<T>(&self, memory: &mut MemoryMut<'_, T>, offset: usize) -> Result<()> {
828
- debug_assert!(offset % Self::SIZE32 == 0);
829
- *memory.get::<4>(offset) = u32::from(*self).to_le_bytes();
830
- Ok(())
831
- }
832
- }
833
-
834
- unsafe impl Lift for char {
835
- #[inline]
836
- fn lift(_store: &StoreOpaque, _options: &Options, src: &Self::Lower) -> Result<Self> {
837
- Ok(char::try_from(src.get_u32())?)
838
- }
839
-
840
- #[inline]
841
- fn load(_memory: &Memory<'_>, bytes: &[u8]) -> Result<Self> {
842
- debug_assert!((bytes.as_ptr() as usize) % Self::SIZE32 == 0);
843
- let bits = u32::from_le_bytes(bytes.try_into().unwrap());
844
- Ok(char::try_from(bits)?)
845
- }
846
- }
847
-
848
- // TODO: these probably need different constants for memory64
849
- const UTF16_TAG: usize = 1 << 31;
850
- const MAX_STRING_BYTE_LENGTH: usize = (1 << 31) - 1;
851
-
852
- // Note that this is similar to `ComponentType for WasmStr` except it can only
853
- // be used for lowering, not lifting.
854
- unsafe impl ComponentType for str {
855
- type Lower = [ValRaw; 2];
856
-
857
- const ABI: CanonicalAbiInfo = CanonicalAbiInfo::POINTER_PAIR;
858
-
859
- fn typecheck(ty: &InterfaceType, _types: &ComponentTypes) -> Result<()> {
860
- match ty {
861
- InterfaceType::String => Ok(()),
862
- other => bail!("expected `string` found `{}`", desc(other)),
863
- }
864
- }
865
- }
866
-
867
- unsafe impl Lower for str {
868
- fn lower<T>(
869
- &self,
870
- store: &mut StoreContextMut<T>,
871
- options: &Options,
872
- dst: &mut MaybeUninit<[ValRaw; 2]>,
873
- ) -> Result<()> {
874
- let (ptr, len) = lower_string(&mut MemoryMut::new(store.as_context_mut(), options), self)?;
875
- // See "WRITEPTR64" above for why this is always storing a 64-bit
876
- // integer.
877
- map_maybe_uninit!(dst[0]).write(ValRaw::i64(ptr as i64));
878
- map_maybe_uninit!(dst[1]).write(ValRaw::i64(len as i64));
879
- Ok(())
880
- }
881
-
882
- fn store<T>(&self, mem: &mut MemoryMut<'_, T>, offset: usize) -> Result<()> {
883
- debug_assert!(offset % (Self::ALIGN32 as usize) == 0);
884
- let (ptr, len) = lower_string(mem, self)?;
885
- // FIXME: needs memory64 handling
886
- *mem.get(offset + 0) = (ptr as i32).to_le_bytes();
887
- *mem.get(offset + 4) = (len as i32).to_le_bytes();
888
- Ok(())
889
- }
890
- }
891
-
892
- fn lower_string<T>(mem: &mut MemoryMut<'_, T>, string: &str) -> Result<(usize, usize)> {
893
- // Note that in general the wasm module can't assume anything about what the
894
- // host strings are encoded as. Additionally hosts are allowed to have
895
- // differently-encoded strings at runtime. Finally when copying a string
896
- // into wasm it's somewhat strict in the sense that the various patterns of
897
- // allocation and such are already dictated for us.
898
- //
899
- // In general what this means is that when copying a string from the host
900
- // into the destination we need to follow one of the cases of copying into
901
- // WebAssembly. It doesn't particularly matter which case as long as it ends
902
- // up in the right encoding. For example a destination encoding of
903
- // latin1+utf16 has a number of ways to get copied into and we do something
904
- // here that isn't the default "utf8 to latin1+utf16" since we have access
905
- // to simd-accelerated helpers in the `encoding_rs` crate. This is ok though
906
- // because we can fake that the host string was already stored in latin1
907
- // format and follow that copy pattern instead.
908
- match mem.string_encoding() {
909
- // This corresponds to `store_string_copy` in the canonical ABI where
910
- // the host's representation is utf-8 and the wasm module wants utf-8 so
911
- // a copy is all that's needed (and the `realloc` can be precise for the
912
- // initial memory allocation).
913
- StringEncoding::Utf8 => {
914
- if string.len() > MAX_STRING_BYTE_LENGTH {
915
- bail!(
916
- "string length of {} too large to copy into wasm",
917
- string.len()
918
- );
919
- }
920
- let ptr = mem.realloc(0, 0, 1, string.len())?;
921
- mem.as_slice_mut()[ptr..][..string.len()].copy_from_slice(string.as_bytes());
922
- Ok((ptr, string.len()))
923
- }
924
-
925
- // This corresponds to `store_utf8_to_utf16` in the canonical ABI. Here
926
- // an over-large allocation is performed and then shrunk afterwards if
927
- // necessary.
928
- StringEncoding::Utf16 => {
929
- let size = string.len() * 2;
930
- if size > MAX_STRING_BYTE_LENGTH {
931
- bail!(
932
- "string length of {} too large to copy into wasm",
933
- string.len()
934
- );
935
- }
936
- let mut ptr = mem.realloc(0, 0, 2, size)?;
937
- let mut copied = 0;
938
- let bytes = &mut mem.as_slice_mut()[ptr..][..size];
939
- for (u, bytes) in string.encode_utf16().zip(bytes.chunks_mut(2)) {
940
- let u_bytes = u.to_le_bytes();
941
- bytes[0] = u_bytes[0];
942
- bytes[1] = u_bytes[1];
943
- copied += 1;
944
- }
945
- if (copied * 2) < size {
946
- ptr = mem.realloc(ptr, size, 2, copied * 2)?;
947
- }
948
- Ok((ptr, copied))
949
- }
950
-
951
- StringEncoding::CompactUtf16 => {
952
- // This corresponds to `store_string_to_latin1_or_utf16`
953
- let bytes = string.as_bytes();
954
- let mut iter = string.char_indices();
955
- let mut ptr = mem.realloc(0, 0, 2, bytes.len())?;
956
- let mut dst = &mut mem.as_slice_mut()[ptr..][..bytes.len()];
957
- let mut result = 0;
958
- while let Some((i, ch)) = iter.next() {
959
- // Test if this `char` fits into the latin1 encoding.
960
- if let Ok(byte) = u8::try_from(u32::from(ch)) {
961
- dst[result] = byte;
962
- result += 1;
963
- continue;
964
- }
965
-
966
- // .. if utf16 is forced to be used then the allocation is
967
- // bumped up to the maximum size.
968
- let worst_case = bytes
969
- .len()
970
- .checked_mul(2)
971
- .ok_or_else(|| anyhow!("byte length overflow"))?;
972
- if worst_case > MAX_STRING_BYTE_LENGTH {
973
- bail!("byte length too large");
974
- }
975
- ptr = mem.realloc(ptr, bytes.len(), 2, worst_case)?;
976
- dst = &mut mem.as_slice_mut()[ptr..][..worst_case];
977
-
978
- // Previously encoded latin1 bytes are inflated to their 16-bit
979
- // size for utf16
980
- for i in (0..result).rev() {
981
- dst[2 * i] = dst[i];
982
- dst[2 * i + 1] = 0;
983
- }
984
-
985
- // and then the remainder of the string is encoded.
986
- for (u, bytes) in string[i..]
987
- .encode_utf16()
988
- .zip(dst[2 * result..].chunks_mut(2))
989
- {
990
- let u_bytes = u.to_le_bytes();
991
- bytes[0] = u_bytes[0];
992
- bytes[1] = u_bytes[1];
993
- result += 1;
994
- }
995
- if worst_case > 2 * result {
996
- ptr = mem.realloc(ptr, worst_case, 2, 2 * result)?;
997
- }
998
- return Ok((ptr, result | UTF16_TAG));
999
- }
1000
- if result < bytes.len() {
1001
- ptr = mem.realloc(ptr, bytes.len(), 2, result)?;
1002
- }
1003
- Ok((ptr, result))
1004
- }
1005
- }
1006
- }
1007
-
1008
- /// Representation of a string located in linear memory in a WebAssembly
1009
- /// instance.
1010
- ///
1011
- /// This type is used with [`TypedFunc`], for example, when WebAssembly returns
1012
- /// a string. This type cannot be used to give a string to WebAssembly, instead
1013
- /// `&str` should be used for that (since it's coming from the host).
1014
- ///
1015
- /// Note that this type represents an in-bounds string in linear memory, but it
1016
- /// does not represent a valid string (e.g. valid utf-8). Validation happens
1017
- /// when [`WasmStr::to_str`] is called.
1018
- //
1019
- // TODO: should probably expand this with examples
1020
- pub struct WasmStr {
1021
- ptr: usize,
1022
- len: usize,
1023
- options: Options,
1024
- }
1025
-
1026
- impl WasmStr {
1027
- fn new(ptr: usize, len: usize, memory: &Memory<'_>) -> Result<WasmStr> {
1028
- let byte_len = match memory.string_encoding() {
1029
- StringEncoding::Utf8 => Some(len),
1030
- StringEncoding::Utf16 => len.checked_mul(2),
1031
- StringEncoding::CompactUtf16 => {
1032
- if len & UTF16_TAG == 0 {
1033
- Some(len)
1034
- } else {
1035
- (len ^ UTF16_TAG).checked_mul(2)
1036
- }
1037
- }
1038
- };
1039
- match byte_len.and_then(|len| ptr.checked_add(len)) {
1040
- Some(n) if n <= memory.as_slice().len() => {}
1041
- _ => bail!("string pointer/length out of bounds of memory"),
1042
- }
1043
- Ok(WasmStr {
1044
- ptr,
1045
- len,
1046
- options: *memory.options(),
1047
- })
1048
- }
1049
-
1050
- /// Returns the underlying string that this cursor points to.
1051
- ///
1052
- /// Note that this will internally decode the string from the wasm's
1053
- /// encoding to utf-8 and additionally perform validation.
1054
- ///
1055
- /// The `store` provided must be the store where this string lives to
1056
- /// access the correct memory.
1057
- ///
1058
- /// # Errors
1059
- ///
1060
- /// Returns an error if the string wasn't encoded correctly (e.g. invalid
1061
- /// utf-8).
1062
- ///
1063
- /// # Panics
1064
- ///
1065
- /// Panics if this string is not owned by `store`.
1066
- //
1067
- // TODO: should add accessors for specifically utf-8 and utf-16 that perhaps
1068
- // in an opt-in basis don't do validation. Additionally there should be some
1069
- // method that returns `[u16]` after validating to avoid the utf16-to-utf8
1070
- // transcode.
1071
- pub fn to_str<'a, T: 'a>(&self, store: impl Into<StoreContext<'a, T>>) -> Result<Cow<'a, str>> {
1072
- self.to_str_from_store(store.into().0)
1073
- }
1074
-
1075
- fn to_str_from_store<'a>(&self, store: &'a StoreOpaque) -> Result<Cow<'a, str>> {
1076
- match self.options.string_encoding() {
1077
- StringEncoding::Utf8 => self.decode_utf8(store),
1078
- StringEncoding::Utf16 => self.decode_utf16(store, self.len),
1079
- StringEncoding::CompactUtf16 => {
1080
- if self.len & UTF16_TAG == 0 {
1081
- self.decode_latin1(store)
1082
- } else {
1083
- self.decode_utf16(store, self.len ^ UTF16_TAG)
1084
- }
1085
- }
1086
- }
1087
- }
1088
-
1089
- fn decode_utf8<'a>(&self, store: &'a StoreOpaque) -> Result<Cow<'a, str>> {
1090
- let memory = self.options.memory(store);
1091
- // Note that bounds-checking already happen in construction of `WasmStr`
1092
- // so this is never expected to panic. This could theoretically be
1093
- // unchecked indexing if we're feeling wild enough.
1094
- Ok(str::from_utf8(&memory[self.ptr..][..self.len])?.into())
1095
- }
1096
-
1097
- fn decode_utf16<'a>(&self, store: &'a StoreOpaque, len: usize) -> Result<Cow<'a, str>> {
1098
- let memory = self.options.memory(store);
1099
- // See notes in `decode_utf8` for why this is panicking indexing.
1100
- let memory = &memory[self.ptr..][..len * 2];
1101
- Ok(std::char::decode_utf16(
1102
- memory
1103
- .chunks(2)
1104
- .map(|chunk| u16::from_le_bytes(chunk.try_into().unwrap())),
1105
- )
1106
- .collect::<Result<String, _>>()?
1107
- .into())
1108
- }
1109
-
1110
- fn decode_latin1<'a>(&self, store: &'a StoreOpaque) -> Result<Cow<'a, str>> {
1111
- // See notes in `decode_utf8` for why this is panicking indexing.
1112
- let memory = self.options.memory(store);
1113
- Ok(encoding_rs::mem::decode_latin1(
1114
- &memory[self.ptr..][..self.len],
1115
- ))
1116
- }
1117
- }
1118
-
1119
- // Note that this is similar to `ComponentType for str` except it can only be
1120
- // used for lifting, not lowering.
1121
- unsafe impl ComponentType for WasmStr {
1122
- type Lower = <str as ComponentType>::Lower;
1123
-
1124
- const ABI: CanonicalAbiInfo = CanonicalAbiInfo::POINTER_PAIR;
1125
-
1126
- fn typecheck(ty: &InterfaceType, _types: &ComponentTypes) -> Result<()> {
1127
- match ty {
1128
- InterfaceType::String => Ok(()),
1129
- other => bail!("expected `string` found `{}`", desc(other)),
1130
- }
1131
- }
1132
- }
1133
-
1134
- unsafe impl Lift for WasmStr {
1135
- fn lift(store: &StoreOpaque, options: &Options, src: &Self::Lower) -> Result<Self> {
1136
- // FIXME: needs memory64 treatment
1137
- let ptr = src[0].get_u32();
1138
- let len = src[1].get_u32();
1139
- let (ptr, len) = (usize::try_from(ptr)?, usize::try_from(len)?);
1140
- WasmStr::new(ptr, len, &Memory::new(store, options))
1141
- }
1142
-
1143
- fn load(memory: &Memory<'_>, bytes: &[u8]) -> Result<Self> {
1144
- debug_assert!((bytes.as_ptr() as usize) % (Self::ALIGN32 as usize) == 0);
1145
- // FIXME: needs memory64 treatment
1146
- let ptr = u32::from_le_bytes(bytes[..4].try_into().unwrap());
1147
- let len = u32::from_le_bytes(bytes[4..].try_into().unwrap());
1148
- let (ptr, len) = (usize::try_from(ptr)?, usize::try_from(len)?);
1149
- WasmStr::new(ptr, len, memory)
1150
- }
1151
- }
1152
-
1153
- unsafe impl<T> ComponentType for [T]
1154
- where
1155
- T: ComponentType,
1156
- {
1157
- type Lower = [ValRaw; 2];
1158
-
1159
- const ABI: CanonicalAbiInfo = CanonicalAbiInfo::POINTER_PAIR;
1160
-
1161
- fn typecheck(ty: &InterfaceType, types: &ComponentTypes) -> Result<()> {
1162
- match ty {
1163
- InterfaceType::List(t) => T::typecheck(&types[*t].element, types),
1164
- other => bail!("expected `list` found `{}`", desc(other)),
1165
- }
1166
- }
1167
- }
1168
-
1169
- unsafe impl<T> Lower for [T]
1170
- where
1171
- T: Lower,
1172
- {
1173
- fn lower<U>(
1174
- &self,
1175
- store: &mut StoreContextMut<U>,
1176
- options: &Options,
1177
- dst: &mut MaybeUninit<[ValRaw; 2]>,
1178
- ) -> Result<()> {
1179
- let (ptr, len) = lower_list(&mut MemoryMut::new(store.as_context_mut(), options), self)?;
1180
- // See "WRITEPTR64" above for why this is always storing a 64-bit
1181
- // integer.
1182
- map_maybe_uninit!(dst[0]).write(ValRaw::i64(ptr as i64));
1183
- map_maybe_uninit!(dst[1]).write(ValRaw::i64(len as i64));
1184
- Ok(())
1185
- }
1186
-
1187
- fn store<U>(&self, mem: &mut MemoryMut<'_, U>, offset: usize) -> Result<()> {
1188
- debug_assert!(offset % (Self::ALIGN32 as usize) == 0);
1189
- let (ptr, len) = lower_list(mem, self)?;
1190
- *mem.get(offset + 0) = (ptr as i32).to_le_bytes();
1191
- *mem.get(offset + 4) = (len as i32).to_le_bytes();
1192
- Ok(())
1193
- }
1194
- }
1195
-
1196
- // FIXME: this is not a memcpy for `T` where `T` is something like `u8`.
1197
- //
1198
- // Some attempts to fix this have proved not fruitful. In isolation an attempt
1199
- // was made where:
1200
- //
1201
- // * `MemoryMut` stored a `*mut [u8]` as its "last view" of memory to avoid
1202
- // reloading the base pointer constantly. This view is reset on `realloc`.
1203
- // * The bounds-checks in `MemoryMut::get` were removed (replaced with unsafe
1204
- // indexing)
1205
- //
1206
- // Even then though this didn't correctly vectorized for `Vec<u8>`. It's not
1207
- // entirely clear why but it appeared that it's related to reloading the base
1208
- // pointer fo memory (I guess from `MemoryMut` itself?). Overall I'm not really
1209
- // clear on what's happening there, but this is surely going to be a performance
1210
- // bottleneck in the future.
1211
- fn lower_list<T, U>(mem: &mut MemoryMut<'_, U>, list: &[T]) -> Result<(usize, usize)>
1212
- where
1213
- T: Lower,
1214
- {
1215
- let elem_size = T::SIZE32;
1216
- let size = list
1217
- .len()
1218
- .checked_mul(elem_size)
1219
- .ok_or_else(|| anyhow!("size overflow copying a list"))?;
1220
- let ptr = mem.realloc(0, 0, T::ALIGN32, size)?;
1221
- let mut cur = ptr;
1222
- for item in list {
1223
- item.store(mem, cur)?;
1224
- cur += elem_size;
1225
- }
1226
- Ok((ptr, list.len()))
1227
- }
1228
-
1229
- /// Representation of a list of values that are owned by a WebAssembly instance.
1230
- ///
1231
- /// This type is used whenever a `(list T)` is returned from a [`TypedFunc`],
1232
- /// for example. This type represents a list of values that are stored in linear
1233
- /// memory which are waiting to be read.
1234
- ///
1235
- /// Note that this type represents only a valid range of bytes for the list
1236
- /// itself, it does not represent validity of the elements themselves and that's
1237
- /// performed when they're iterated.
1238
- pub struct WasmList<T> {
1239
- ptr: usize,
1240
- len: usize,
1241
- options: Options,
1242
- _marker: marker::PhantomData<T>,
1243
- }
1244
-
1245
- impl<T: Lift> WasmList<T> {
1246
- fn new(ptr: usize, len: usize, memory: &Memory<'_>) -> Result<WasmList<T>> {
1247
- match len
1248
- .checked_mul(T::SIZE32)
1249
- .and_then(|len| ptr.checked_add(len))
1250
- {
1251
- Some(n) if n <= memory.as_slice().len() => {}
1252
- _ => bail!("list pointer/length out of bounds of memory"),
1253
- }
1254
- if ptr % usize::try_from(T::ALIGN32)? != 0 {
1255
- bail!("list pointer is not aligned")
1256
- }
1257
- Ok(WasmList {
1258
- ptr,
1259
- len,
1260
- options: *memory.options(),
1261
- _marker: marker::PhantomData,
1262
- })
1263
- }
1264
-
1265
- /// Returns the item length of this vector
1266
- #[inline]
1267
- pub fn len(&self) -> usize {
1268
- self.len
1269
- }
1270
-
1271
- /// Gets the `n`th element of this list.
1272
- ///
1273
- /// Returns `None` if `index` is out of bounds. Returns `Some(Err(..))` if
1274
- /// the value couldn't be decoded (it was invalid). Returns `Some(Ok(..))`
1275
- /// if the value is valid.
1276
- //
1277
- // TODO: given that interface values are intended to be consumed in one go
1278
- // should we even expose a random access iteration API? In theory all
1279
- // consumers should be validating through the iterator.
1280
- pub fn get(&self, store: impl AsContext, index: usize) -> Option<Result<T>> {
1281
- self.get_from_store(store.as_context().0, index)
1282
- }
1283
-
1284
- fn get_from_store(&self, store: &StoreOpaque, index: usize) -> Option<Result<T>> {
1285
- if index >= self.len {
1286
- return None;
1287
- }
1288
- let memory = Memory::new(store, &self.options);
1289
- // Note that this is using panicking indexing and this is expected to
1290
- // never fail. The bounds-checking here happened during the construction
1291
- // of the `WasmList` itself which means these should always be in-bounds
1292
- // (and wasm memory can only grow). This could theoretically be
1293
- // unchecked indexing if we're confident enough and it's actually a perf
1294
- // issue one day.
1295
- let bytes = &memory.as_slice()[self.ptr + index * T::SIZE32..][..T::SIZE32];
1296
- Some(T::load(&memory, bytes))
1297
- }
1298
-
1299
- /// Returns an iterator over the elements of this list.
1300
- ///
1301
- /// Each item of the list may fail to decode and is represented through the
1302
- /// `Result` value of the iterator.
1303
- pub fn iter<'a, U: 'a>(
1304
- &'a self,
1305
- store: impl Into<StoreContext<'a, U>>,
1306
- ) -> impl ExactSizeIterator<Item = Result<T>> + 'a {
1307
- let store = store.into().0;
1308
- (0..self.len).map(move |i| self.get_from_store(store, i).unwrap())
1309
- }
1310
- }
1311
-
1312
- macro_rules! raw_wasm_list_accessors {
1313
- ($($i:ident)*) => ($(
1314
- impl WasmList<$i> {
1315
- /// Get access to the raw underlying memory for this list.
1316
- ///
1317
- /// This method will return a direct slice into the original wasm
1318
- /// module's linear memory where the data for this slice is stored.
1319
- /// This allows the embedder to have efficient access to the
1320
- /// underlying memory if needed and avoid copies and such if
1321
- /// desired.
1322
- ///
1323
- /// Note that multi-byte integers are stored in little-endian format
1324
- /// so portable processing of this slice must be aware of the host's
1325
- /// byte-endianness. The `from_le` constructors in the Rust standard
1326
- /// library should be suitable for converting from little-endian.
1327
- ///
1328
- /// # Panics
1329
- ///
1330
- /// Panics if the `store` provided is not the one from which this
1331
- /// slice originated.
1332
- pub fn as_le_slice<'a, T: 'a>(&self, store: impl Into<StoreContext<'a, T>>) -> &'a [$i] {
1333
- // See comments in `WasmList::get` for the panicking indexing
1334
- let byte_size = self.len * mem::size_of::<$i>();
1335
- let bytes = &self.options.memory(store.into().0)[self.ptr..][..byte_size];
1336
-
1337
- // The canonical ABI requires that everything is aligned to its
1338
- // own size, so this should be an aligned array. Furthermore the
1339
- // alignment of primitive integers for hosts should be smaller
1340
- // than or equal to the size of the primitive itself, meaning
1341
- // that a wasm canonical-abi-aligned list is also aligned for
1342
- // the host. That should mean that the head/tail slices here are
1343
- // empty.
1344
- //
1345
- // Also note that the `unsafe` here is needed since the type
1346
- // we're aligning to isn't guaranteed to be valid, but in our
1347
- // case it's just integers and bytes so this should be safe.
1348
- unsafe {
1349
- let (head, body, tail) = bytes.align_to::<$i>();
1350
- assert!(head.is_empty() && tail.is_empty());
1351
- body
1352
- }
1353
- }
1354
- }
1355
- )*)
1356
- }
1357
-
1358
- raw_wasm_list_accessors! {
1359
- i8 i16 i32 i64
1360
- u8 u16 u32 u64
1361
- }
1362
-
1363
- // Note that this is similar to `ComponentType for str` except it can only be
1364
- // used for lifting, not lowering.
1365
- unsafe impl<T: ComponentType> ComponentType for WasmList<T> {
1366
- type Lower = <[T] as ComponentType>::Lower;
1367
-
1368
- const ABI: CanonicalAbiInfo = CanonicalAbiInfo::POINTER_PAIR;
1369
-
1370
- fn typecheck(ty: &InterfaceType, types: &ComponentTypes) -> Result<()> {
1371
- <[T] as ComponentType>::typecheck(ty, types)
1372
- }
1373
- }
1374
-
1375
- unsafe impl<T: Lift> Lift for WasmList<T> {
1376
- fn lift(store: &StoreOpaque, options: &Options, src: &Self::Lower) -> Result<Self> {
1377
- // FIXME: needs memory64 treatment
1378
- let ptr = src[0].get_u32();
1379
- let len = src[1].get_u32();
1380
- let (ptr, len) = (usize::try_from(ptr)?, usize::try_from(len)?);
1381
- WasmList::new(ptr, len, &Memory::new(store, options))
1382
- }
1383
-
1384
- fn load(memory: &Memory<'_>, bytes: &[u8]) -> Result<Self> {
1385
- debug_assert!((bytes.as_ptr() as usize) % (Self::ALIGN32 as usize) == 0);
1386
- // FIXME: needs memory64 treatment
1387
- let ptr = u32::from_le_bytes(bytes[..4].try_into().unwrap());
1388
- let len = u32::from_le_bytes(bytes[4..].try_into().unwrap());
1389
- let (ptr, len) = (usize::try_from(ptr)?, usize::try_from(len)?);
1390
- WasmList::new(ptr, len, memory)
1391
- }
1392
- }
1393
-
1394
- /// Verify that the given wasm type is a tuple with the expected fields in the right order.
1395
- fn typecheck_tuple(
1396
- ty: &InterfaceType,
1397
- types: &ComponentTypes,
1398
- expected: &[fn(&InterfaceType, &ComponentTypes) -> Result<()>],
1399
- ) -> Result<()> {
1400
- match ty {
1401
- InterfaceType::Tuple(t) => {
1402
- let tuple = &types[*t];
1403
- if tuple.types.len() != expected.len() {
1404
- bail!(
1405
- "expected {}-tuple, found {}-tuple",
1406
- expected.len(),
1407
- tuple.types.len()
1408
- );
1409
- }
1410
- for (ty, check) in tuple.types.iter().zip(expected) {
1411
- check(ty, types)?;
1412
- }
1413
- Ok(())
1414
- }
1415
- other => bail!("expected `tuple` found `{}`", desc(other)),
1416
- }
1417
- }
1418
-
1419
- /// Verify that the given wasm type is a record with the expected fields in the right order and with the right
1420
- /// names.
1421
- pub fn typecheck_record(
1422
- ty: &InterfaceType,
1423
- types: &ComponentTypes,
1424
- expected: &[(&str, fn(&InterfaceType, &ComponentTypes) -> Result<()>)],
1425
- ) -> Result<()> {
1426
- match ty {
1427
- InterfaceType::Record(index) => {
1428
- let fields = &types[*index].fields;
1429
-
1430
- if fields.len() != expected.len() {
1431
- bail!(
1432
- "expected record of {} fields, found {} fields",
1433
- expected.len(),
1434
- fields.len()
1435
- );
1436
- }
1437
-
1438
- for (field, &(name, check)) in fields.iter().zip(expected) {
1439
- check(&field.ty, types)
1440
- .with_context(|| format!("type mismatch for field {}", name))?;
1441
-
1442
- if field.name != name {
1443
- bail!("expected record field named {}, found {}", name, field.name);
1444
- }
1445
- }
1446
-
1447
- Ok(())
1448
- }
1449
- other => bail!("expected `record` found `{}`", desc(other)),
1450
- }
1451
- }
1452
-
1453
- /// Verify that the given wasm type is a variant with the expected cases in the right order and with the right
1454
- /// names.
1455
- pub fn typecheck_variant(
1456
- ty: &InterfaceType,
1457
- types: &ComponentTypes,
1458
- expected: &[(
1459
- &str,
1460
- Option<fn(&InterfaceType, &ComponentTypes) -> Result<()>>,
1461
- )],
1462
- ) -> Result<()> {
1463
- match ty {
1464
- InterfaceType::Variant(index) => {
1465
- let cases = &types[*index].cases;
1466
-
1467
- if cases.len() != expected.len() {
1468
- bail!(
1469
- "expected variant of {} cases, found {} cases",
1470
- expected.len(),
1471
- cases.len()
1472
- );
1473
- }
1474
-
1475
- for (case, &(name, check)) in cases.iter().zip(expected) {
1476
- if case.name != name {
1477
- bail!("expected variant case named {name}, found {}", case.name);
1478
- }
1479
-
1480
- match (check, &case.ty) {
1481
- (Some(check), Some(ty)) => check(ty, types)
1482
- .with_context(|| format!("type mismatch for case {name}"))?,
1483
- (None, None) => {}
1484
- (Some(_), None) => {
1485
- bail!("case `{name}` has no type but one was expected")
1486
- }
1487
- (None, Some(_)) => {
1488
- bail!("case `{name}` has a type but none was expected")
1489
- }
1490
- }
1491
- }
1492
-
1493
- Ok(())
1494
- }
1495
- other => bail!("expected `variant` found `{}`", desc(other)),
1496
- }
1497
- }
1498
-
1499
- /// Verify that the given wasm type is a enum with the expected cases in the right order and with the right
1500
- /// names.
1501
- pub fn typecheck_enum(ty: &InterfaceType, types: &ComponentTypes, expected: &[&str]) -> Result<()> {
1502
- match ty {
1503
- InterfaceType::Enum(index) => {
1504
- let names = &types[*index].names;
1505
-
1506
- if names.len() != expected.len() {
1507
- bail!(
1508
- "expected enum of {} names, found {} names",
1509
- expected.len(),
1510
- names.len()
1511
- );
1512
- }
1513
-
1514
- for (name, expected) in names.iter().zip(expected) {
1515
- if name != expected {
1516
- bail!("expected enum case named {}, found {}", expected, name);
1517
- }
1518
- }
1519
-
1520
- Ok(())
1521
- }
1522
- other => bail!("expected `enum` found `{}`", desc(other)),
1523
- }
1524
- }
1525
-
1526
- /// Verify that the given wasm type is a union with the expected cases in the right order.
1527
- pub fn typecheck_union(
1528
- ty: &InterfaceType,
1529
- types: &ComponentTypes,
1530
- expected: &[fn(&InterfaceType, &ComponentTypes) -> Result<()>],
1531
- ) -> Result<()> {
1532
- match ty {
1533
- InterfaceType::Union(index) => {
1534
- let union_types = &types[*index].types;
1535
-
1536
- if union_types.len() != expected.len() {
1537
- bail!(
1538
- "expected union of {} types, found {} types",
1539
- expected.len(),
1540
- union_types.len()
1541
- );
1542
- }
1543
-
1544
- for (index, (ty, check)) in union_types.iter().zip(expected).enumerate() {
1545
- check(ty, types).with_context(|| format!("type mismatch for case {}", index))?;
1546
- }
1547
-
1548
- Ok(())
1549
- }
1550
- other => bail!("expected `union` found `{}`", desc(other)),
1551
- }
1552
- }
1553
-
1554
- /// Verify that the given wasm type is a flags type with the expected flags in the right order and with the right
1555
- /// names.
1556
- pub fn typecheck_flags(
1557
- ty: &InterfaceType,
1558
- types: &ComponentTypes,
1559
- expected: &[&str],
1560
- ) -> Result<()> {
1561
- match ty {
1562
- InterfaceType::Flags(index) => {
1563
- let names = &types[*index].names;
1564
-
1565
- if names.len() != expected.len() {
1566
- bail!(
1567
- "expected flags type with {} names, found {} names",
1568
- expected.len(),
1569
- names.len()
1570
- );
1571
- }
1572
-
1573
- for (name, expected) in names.iter().zip(expected) {
1574
- if name != expected {
1575
- bail!("expected flag named {}, found {}", expected, name);
1576
- }
1577
- }
1578
-
1579
- Ok(())
1580
- }
1581
- other => bail!("expected `flags` found `{}`", desc(other)),
1582
- }
1583
- }
1584
-
1585
- /// Format the specified bitflags using the specified names for debugging
1586
- pub fn format_flags(bits: &[u32], names: &[&str], f: &mut fmt::Formatter) -> fmt::Result {
1587
- f.write_str("(")?;
1588
- let mut wrote = false;
1589
- for (index, name) in names.iter().enumerate() {
1590
- if ((bits[index / 32] >> (index % 32)) & 1) != 0 {
1591
- if wrote {
1592
- f.write_str("|")?;
1593
- } else {
1594
- wrote = true;
1595
- }
1596
-
1597
- f.write_str(name)?;
1598
- }
1599
- }
1600
- f.write_str(")")
1601
- }
1602
-
1603
- unsafe impl<T> ComponentType for Option<T>
1604
- where
1605
- T: ComponentType,
1606
- {
1607
- type Lower = TupleLower2<<u32 as ComponentType>::Lower, T::Lower>;
1608
-
1609
- const ABI: CanonicalAbiInfo = CanonicalAbiInfo::variant_static(&[None, Some(T::ABI)]);
1610
-
1611
- fn typecheck(ty: &InterfaceType, types: &ComponentTypes) -> Result<()> {
1612
- match ty {
1613
- InterfaceType::Option(t) => T::typecheck(&types[*t].ty, types),
1614
- other => bail!("expected `option` found `{}`", desc(other)),
1615
- }
1616
- }
1617
- }
1618
-
1619
- unsafe impl<T> ComponentVariant for Option<T>
1620
- where
1621
- T: ComponentType,
1622
- {
1623
- const CASES: &'static [Option<CanonicalAbiInfo>] = &[None, Some(T::ABI)];
1624
- }
1625
-
1626
- unsafe impl<T> Lower for Option<T>
1627
- where
1628
- T: Lower,
1629
- {
1630
- fn lower<U>(
1631
- &self,
1632
- store: &mut StoreContextMut<U>,
1633
- options: &Options,
1634
- dst: &mut MaybeUninit<Self::Lower>,
1635
- ) -> Result<()> {
1636
- match self {
1637
- None => {
1638
- map_maybe_uninit!(dst.A1).write(ValRaw::i32(0));
1639
- // Note that this is unsafe as we're writing an arbitrary
1640
- // bit-pattern to an arbitrary type, but part of the unsafe
1641
- // contract of the `ComponentType` trait is that we can assign
1642
- // any bit-pattern. By writing all zeros here we're ensuring
1643
- // that the core wasm arguments this translates to will all be
1644
- // zeros (as the canonical ABI requires).
1645
- unsafe {
1646
- map_maybe_uninit!(dst.A2).as_mut_ptr().write_bytes(0u8, 1);
1647
- }
1648
- }
1649
- Some(val) => {
1650
- map_maybe_uninit!(dst.A1).write(ValRaw::i32(1));
1651
- val.lower(store, options, map_maybe_uninit!(dst.A2))?;
1652
- }
1653
- }
1654
- Ok(())
1655
- }
1656
-
1657
- fn store<U>(&self, mem: &mut MemoryMut<'_, U>, offset: usize) -> Result<()> {
1658
- debug_assert!(offset % (Self::ALIGN32 as usize) == 0);
1659
- match self {
1660
- None => {
1661
- mem.get::<1>(offset)[0] = 0;
1662
- }
1663
- Some(val) => {
1664
- mem.get::<1>(offset)[0] = 1;
1665
- val.store(mem, offset + (Self::INFO.payload_offset32 as usize))?;
1666
- }
1667
- }
1668
- Ok(())
1669
- }
1670
- }
1671
-
1672
- unsafe impl<T> Lift for Option<T>
1673
- where
1674
- T: Lift,
1675
- {
1676
- fn lift(store: &StoreOpaque, options: &Options, src: &Self::Lower) -> Result<Self> {
1677
- Ok(match src.A1.get_i32() {
1678
- 0 => None,
1679
- 1 => Some(T::lift(store, options, &src.A2)?),
1680
- _ => bail!("invalid option discriminant"),
1681
- })
1682
- }
1683
-
1684
- fn load(memory: &Memory<'_>, bytes: &[u8]) -> Result<Self> {
1685
- debug_assert!((bytes.as_ptr() as usize) % (Self::ALIGN32 as usize) == 0);
1686
- let discrim = bytes[0];
1687
- let payload = &bytes[Self::INFO.payload_offset32 as usize..];
1688
- match discrim {
1689
- 0 => Ok(None),
1690
- 1 => Ok(Some(T::load(memory, payload)?)),
1691
- _ => bail!("invalid option discriminant"),
1692
- }
1693
- }
1694
- }
1695
-
1696
- #[derive(Clone, Copy)]
1697
- #[repr(C)]
1698
- pub struct ResultLower<T: Copy, E: Copy> {
1699
- tag: ValRaw,
1700
- payload: ResultLowerPayload<T, E>,
1701
- }
1702
-
1703
- #[derive(Clone, Copy)]
1704
- #[repr(C)]
1705
- union ResultLowerPayload<T: Copy, E: Copy> {
1706
- ok: T,
1707
- err: E,
1708
- }
1709
-
1710
- unsafe impl<T, E> ComponentType for Result<T, E>
1711
- where
1712
- T: ComponentType,
1713
- E: ComponentType,
1714
- {
1715
- type Lower = ResultLower<T::Lower, E::Lower>;
1716
-
1717
- const ABI: CanonicalAbiInfo = CanonicalAbiInfo::variant_static(&[Some(T::ABI), Some(E::ABI)]);
1718
-
1719
- fn typecheck(ty: &InterfaceType, types: &ComponentTypes) -> Result<()> {
1720
- match ty {
1721
- InterfaceType::Result(r) => {
1722
- let result = &types[*r];
1723
- match &result.ok {
1724
- Some(ty) => T::typecheck(ty, types)?,
1725
- None if T::IS_RUST_UNIT_TYPE => {}
1726
- None => bail!("expected no `ok` type"),
1727
- }
1728
- match &result.err {
1729
- Some(ty) => E::typecheck(ty, types)?,
1730
- None if E::IS_RUST_UNIT_TYPE => {}
1731
- None => bail!("expected no `err` type"),
1732
- }
1733
- Ok(())
1734
- }
1735
- other => bail!("expected `result` found `{}`", desc(other)),
1736
- }
1737
- }
1738
- }
1739
-
1740
- /// Lowers the payload of a variant into the storage for the entire payload,
1741
- /// handling writing zeros at the end of the representation if this payload is
1742
- /// smaller than the entire flat representation.
1743
- ///
1744
- /// * `payload` - the flat storage space for the entire payload of the variant
1745
- /// * `typed_payload` - projection from the payload storage space to the
1746
- /// individaul storage space for this variant.
1747
- /// * `lower` - lowering operation used to initialize the `typed_payload` return
1748
- /// value.
1749
- ///
1750
- /// For more information on this se the comments in the `Lower for Result`
1751
- /// implementation below.
1752
- pub unsafe fn lower_payload<P, T>(
1753
- payload: &mut MaybeUninit<P>,
1754
- typed_payload: impl FnOnce(&mut MaybeUninit<P>) -> &mut MaybeUninit<T>,
1755
- lower: impl FnOnce(&mut MaybeUninit<T>) -> Result<()>,
1756
- ) -> Result<()> {
1757
- let typed = typed_payload(payload);
1758
- lower(typed)?;
1759
-
1760
- let typed_len = storage_as_slice(typed).len();
1761
- let payload = storage_as_slice_mut(payload);
1762
- for slot in payload[typed_len..].iter_mut() {
1763
- *slot = ValRaw::u64(0);
1764
- }
1765
- Ok(())
1766
- }
1767
-
1768
- unsafe impl<T, E> ComponentVariant for Result<T, E>
1769
- where
1770
- T: ComponentType,
1771
- E: ComponentType,
1772
- {
1773
- const CASES: &'static [Option<CanonicalAbiInfo>] = &[Some(T::ABI), Some(E::ABI)];
1774
- }
1775
-
1776
- unsafe impl<T, E> Lower for Result<T, E>
1777
- where
1778
- T: Lower,
1779
- E: Lower,
1780
- {
1781
- fn lower<U>(
1782
- &self,
1783
- store: &mut StoreContextMut<U>,
1784
- options: &Options,
1785
- dst: &mut MaybeUninit<Self::Lower>,
1786
- ) -> Result<()> {
1787
- // This implementation of `Lower::lower`, if you're reading these from
1788
- // the top of this file, is the first location that the "join" logic of
1789
- // the component model's canonical ABI encountered. The rough problem is
1790
- // that let's say we have a component model type of the form:
1791
- //
1792
- // (result u64 (error (tuple f32 u16)))
1793
- //
1794
- // The flat representation of this is actually pretty tricky. Currently
1795
- // it is:
1796
- //
1797
- // i32 i64 i32
1798
- //
1799
- // The first `i32` is the discriminant for the `result`, and the payload
1800
- // is represented by `i64 i32`. The "ok" variant will only use the `i64`
1801
- // and the "err" variant will use both `i64` and `i32`.
1802
- //
1803
- // In the "ok" variant the first issue is encountered. The size of one
1804
- // variant may not match the size of the other variants. All variants
1805
- // start at the "front" but when lowering a type we need to be sure to
1806
- // initialize the later variants (lest we leak random host memory into
1807
- // the guest module). Due to how the `Lower` type is represented as a
1808
- // `union` of all the variants what ends up happening here is that
1809
- // internally within the `lower_payload` after the typed payload is
1810
- // lowered the remaining bits of the payload that weren't initialized
1811
- // are all set to zero. This will guarantee that we'll write to all the
1812
- // slots for each variant.
1813
- //
1814
- // The "err" variant encounters the second issue, however, which is that
1815
- // the flat representation for each type may differ between payloads. In
1816
- // the "ok" arm an `i64` is written, but the `lower` implementation for
1817
- // the "err" arm will write an `f32` and then an `i32`. For this
1818
- // implementation of `lower` to be valid the `f32` needs to get inflated
1819
- // to an `i64` with zero-padding in the upper bits. What may be
1820
- // surprising, however, is that none of this is handled in this file.
1821
- // This implementation looks like it's blindly deferring to `E::lower`
1822
- // and hoping it does the right thing.
1823
- //
1824
- // In reality, however, the correctness of variant lowering relies on
1825
- // two subtle details of the `ValRaw` implementation in Wasmtime:
1826
- //
1827
- // 1. First the `ValRaw` value always contains little-endian values.
1828
- // This means that if a `u32` is written, a `u64` is read, and then
1829
- // the `u64` has its upper bits truncated the original value will
1830
- // always be retained. This is primarily here for big-endian
1831
- // platforms where if it weren't little endian then the opposite
1832
- // would occur and the wrong value would be read.
1833
- //
1834
- // 2. Second, and perhaps even more subtly, the `ValRaw` constructors
1835
- // for 32-bit types actually always initialize 64-bits of the
1836
- // `ValRaw`. In the component model flat ABI only 32 and 64-bit types
1837
- // are used so 64-bits is big enough to contain everything. This
1838
- // means that when a `ValRaw` is written into the destination it will
1839
- // always, whether it's needed or not, be "ready" to get extended up
1840
- // to 64-bits.
1841
- //
1842
- // Put together these two subtle guarantees means that all `Lower`
1843
- // implementations can be written "naturally" as one might naively
1844
- // expect. Variants will, on each arm, zero out remaining fields and all
1845
- // writes to the flat representation will automatically be 64-bit writes
1846
- // meaning that if the value is read as a 64-bit value, which isn't
1847
- // known at the time of the write, it'll still be correct.
1848
- match self {
1849
- Ok(e) => {
1850
- map_maybe_uninit!(dst.tag).write(ValRaw::i32(0));
1851
- unsafe {
1852
- lower_payload(
1853
- map_maybe_uninit!(dst.payload),
1854
- |payload| map_maybe_uninit!(payload.ok),
1855
- |dst| e.lower(store, options, dst),
1856
- )
1857
- }
1858
- }
1859
- Err(e) => {
1860
- map_maybe_uninit!(dst.tag).write(ValRaw::i32(1));
1861
- unsafe {
1862
- lower_payload(
1863
- map_maybe_uninit!(dst.payload),
1864
- |payload| map_maybe_uninit!(payload.err),
1865
- |dst| e.lower(store, options, dst),
1866
- )
1867
- }
1868
- }
1869
- }
1870
- }
1871
-
1872
- fn store<U>(&self, mem: &mut MemoryMut<'_, U>, offset: usize) -> Result<()> {
1873
- debug_assert!(offset % (Self::ALIGN32 as usize) == 0);
1874
- let payload_offset = Self::INFO.payload_offset32 as usize;
1875
- match self {
1876
- Ok(e) => {
1877
- mem.get::<1>(offset)[0] = 0;
1878
- e.store(mem, offset + payload_offset)?;
1879
- }
1880
- Err(e) => {
1881
- mem.get::<1>(offset)[0] = 1;
1882
- e.store(mem, offset + payload_offset)?;
1883
- }
1884
- }
1885
- Ok(())
1886
- }
1887
- }
1888
-
1889
- unsafe impl<T, E> Lift for Result<T, E>
1890
- where
1891
- T: Lift,
1892
- E: Lift,
1893
- {
1894
- fn lift(store: &StoreOpaque, options: &Options, src: &Self::Lower) -> Result<Self> {
1895
- // Note that this implementation specifically isn't trying to actually
1896
- // reinterpret or alter the bits of `lower` depending on which variant
1897
- // we're lifting. This ends up all working out because the value is
1898
- // stored in little-endian format.
1899
- //
1900
- // When stored in little-endian format the `{T,E}::Lower`, when each
1901
- // individual `ValRaw` is read, means that if an i64 value, extended
1902
- // from an i32 value, was stored then when the i32 value is read it'll
1903
- // automatically ignore the upper bits.
1904
- //
1905
- // This "trick" allows us to seamlessly pass through the `Self::Lower`
1906
- // representation into the lifting/lowering without trying to handle
1907
- // "join"ed types as per the canonical ABI. It just so happens that i64
1908
- // bits will naturally be reinterpreted as f64. Additionally if the
1909
- // joined type is i64 but only the lower bits are read that's ok and we
1910
- // don't need to validate the upper bits.
1911
- //
1912
- // This is largely enabled by WebAssembly/component-model#35 where no
1913
- // validation needs to be performed for ignored bits and bytes here.
1914
- Ok(match src.tag.get_i32() {
1915
- 0 => Ok(unsafe { T::lift(store, options, &src.payload.ok)? }),
1916
- 1 => Err(unsafe { E::lift(store, options, &src.payload.err)? }),
1917
- _ => bail!("invalid expected discriminant"),
1918
- })
1919
- }
1920
-
1921
- fn load(memory: &Memory<'_>, bytes: &[u8]) -> Result<Self> {
1922
- debug_assert!((bytes.as_ptr() as usize) % (Self::ALIGN32 as usize) == 0);
1923
- let discrim = bytes[0];
1924
- let payload = &bytes[Self::INFO.payload_offset32 as usize..];
1925
- match discrim {
1926
- 0 => Ok(Ok(T::load(memory, &payload[..T::SIZE32])?)),
1927
- 1 => Ok(Err(E::load(memory, &payload[..E::SIZE32])?)),
1928
- _ => bail!("invalid expected discriminant"),
1929
- }
1930
- }
1931
- }
1932
-
1933
- macro_rules! impl_component_ty_for_tuples {
1934
- ($n:tt $($t:ident)*) => {paste::paste!{
1935
- #[allow(non_snake_case)]
1936
- #[doc(hidden)]
1937
- #[derive(Clone, Copy)]
1938
- #[repr(C)]
1939
- pub struct [<TupleLower$n>]<$($t),*> {
1940
- $($t: $t,)*
1941
- _align_tuple_lower0_correctly: [ValRaw; 0],
1942
- }
1943
-
1944
- #[allow(non_snake_case)]
1945
- unsafe impl<$($t,)*> ComponentType for ($($t,)*)
1946
- where $($t: ComponentType),*
1947
- {
1948
- type Lower = [<TupleLower$n>]<$($t::Lower),*>;
1949
-
1950
- const ABI: CanonicalAbiInfo = CanonicalAbiInfo::record_static(&[
1951
- $($t::ABI),*
1952
- ]);
1953
-
1954
- const IS_RUST_UNIT_TYPE: bool = {
1955
- let mut _is_unit = true;
1956
- $(
1957
- let _anything_to_bind_the_macro_variable = $t::IS_RUST_UNIT_TYPE;
1958
- _is_unit = false;
1959
- )*
1960
- _is_unit
1961
- };
1962
-
1963
- fn typecheck(
1964
- ty: &InterfaceType,
1965
- types: &ComponentTypes,
1966
- ) -> Result<()> {
1967
- typecheck_tuple(ty, types, &[$($t::typecheck),*])
1968
- }
1969
- }
1970
-
1971
- #[allow(non_snake_case)]
1972
- unsafe impl<$($t,)*> Lower for ($($t,)*)
1973
- where $($t: Lower),*
1974
- {
1975
- fn lower<U>(
1976
- &self,
1977
- _store: &mut StoreContextMut<U>,
1978
- _options: &Options,
1979
- _dst: &mut MaybeUninit<Self::Lower>,
1980
- ) -> Result<()> {
1981
- let ($($t,)*) = self;
1982
- $($t.lower(_store, _options, map_maybe_uninit!(_dst.$t))?;)*
1983
- Ok(())
1984
- }
1985
-
1986
- fn store<U>(&self, _memory: &mut MemoryMut<'_, U>, mut _offset: usize) -> Result<()> {
1987
- debug_assert!(_offset % (Self::ALIGN32 as usize) == 0);
1988
- let ($($t,)*) = self;
1989
- $($t.store(_memory, $t::ABI.next_field32_size(&mut _offset))?;)*
1990
- Ok(())
1991
- }
1992
- }
1993
-
1994
- #[allow(non_snake_case)]
1995
- unsafe impl<$($t,)*> Lift for ($($t,)*)
1996
- where $($t: Lift),*
1997
- {
1998
- fn lift(_store: &StoreOpaque, _options: &Options, _src: &Self::Lower) -> Result<Self> {
1999
- Ok(($($t::lift(_store, _options, &_src.$t)?,)*))
2000
- }
2001
-
2002
- fn load(_memory: &Memory<'_>, bytes: &[u8]) -> Result<Self> {
2003
- debug_assert!((bytes.as_ptr() as usize) % (Self::ALIGN32 as usize) == 0);
2004
- let mut _offset = 0;
2005
- $(let $t = $t::load(_memory, &bytes[$t::ABI.next_field32_size(&mut _offset)..][..$t::SIZE32])?;)*
2006
- Ok(($($t,)*))
2007
- }
2008
- }
2009
-
2010
- #[allow(non_snake_case)]
2011
- unsafe impl<$($t,)*> ComponentNamedList for ($($t,)*)
2012
- where $($t: ComponentType),*
2013
- {
2014
- fn typecheck_list(
2015
- names: &[InterfaceType],
2016
- _types: &ComponentTypes,
2017
- ) -> Result<()> {
2018
- if names.len() != $n {
2019
- bail!("expected {} types, found {}", $n, names.len());
2020
- }
2021
- let mut names = names.iter();
2022
- $($t::typecheck(names.next().unwrap(), _types)?;)*
2023
- debug_assert!(names.next().is_none());
2024
- Ok(())
2025
- }
2026
- }
2027
-
2028
- }};
2029
- }
2030
-
2031
- for_each_function_signature!(impl_component_ty_for_tuples);
2032
-
2033
- fn desc(ty: &InterfaceType) -> &'static str {
2034
- match ty {
2035
- InterfaceType::U8 => "u8",
2036
- InterfaceType::S8 => "s8",
2037
- InterfaceType::U16 => "u16",
2038
- InterfaceType::S16 => "s16",
2039
- InterfaceType::U32 => "u32",
2040
- InterfaceType::S32 => "s32",
2041
- InterfaceType::U64 => "u64",
2042
- InterfaceType::S64 => "s64",
2043
- InterfaceType::Float32 => "f32",
2044
- InterfaceType::Float64 => "f64",
2045
- InterfaceType::Bool => "bool",
2046
- InterfaceType::Char => "char",
2047
- InterfaceType::String => "string",
2048
- InterfaceType::List(_) => "list",
2049
- InterfaceType::Tuple(_) => "tuple",
2050
- InterfaceType::Option(_) => "option",
2051
- InterfaceType::Result(_) => "result",
2052
-
2053
- InterfaceType::Record(_) => "record",
2054
- InterfaceType::Variant(_) => "variant",
2055
- InterfaceType::Flags(_) => "flags",
2056
- InterfaceType::Enum(_) => "enum",
2057
- InterfaceType::Union(_) => "union",
2058
- }
2059
- }