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,3983 +0,0 @@
1
- //! A library for build scripts to compile custom C code
2
- //!
3
- //! This library is intended to be used as a `build-dependencies` entry in
4
- //! `Cargo.toml`:
5
- //!
6
- //! ```toml
7
- //! [build-dependencies]
8
- //! cc = "1.0"
9
- //! ```
10
- //!
11
- //! The purpose of this crate is to provide the utility functions necessary to
12
- //! compile C code into a static archive which is then linked into a Rust crate.
13
- //! Configuration is available through the `Build` struct.
14
- //!
15
- //! This crate will automatically detect situations such as cross compilation or
16
- //! other environment variables set by Cargo and will build code appropriately.
17
- //!
18
- //! The crate is not limited to C code, it can accept any source code that can
19
- //! be passed to a C or C++ compiler. As such, assembly files with extensions
20
- //! `.s` (gcc/clang) and `.asm` (MSVC) can also be compiled.
21
- //!
22
- //! [`Build`]: struct.Build.html
23
- //!
24
- //! # Parallelism
25
- //!
26
- //! To parallelize computation, enable the `parallel` feature for the crate.
27
- //!
28
- //! ```toml
29
- //! [build-dependencies]
30
- //! cc = { version = "1.0", features = ["parallel"] }
31
- //! ```
32
- //! To specify the max number of concurrent compilation jobs, set the `NUM_JOBS`
33
- //! environment variable to the desired amount.
34
- //!
35
- //! Cargo will also set this environment variable when executed with the `-jN` flag.
36
- //!
37
- //! # Examples
38
- //!
39
- //! Use the `Build` struct to compile `src/foo.c`:
40
- //!
41
- //! ```no_run
42
- //! fn main() {
43
- //! cc::Build::new()
44
- //! .file("src/foo.c")
45
- //! .define("FOO", Some("bar"))
46
- //! .include("src")
47
- //! .compile("foo");
48
- //! }
49
- //! ```
50
-
51
- #![doc(html_root_url = "https://docs.rs/cc/1.0")]
52
- #![cfg_attr(test, deny(warnings))]
53
- #![allow(deprecated)]
54
- #![deny(missing_docs)]
55
-
56
- use std::borrow::Cow;
57
- use std::collections::{hash_map, HashMap};
58
- use std::env;
59
- use std::ffi::{OsStr, OsString};
60
- use std::fmt::{self, Display, Formatter};
61
- use std::fs::{self, File};
62
- use std::hash::Hasher;
63
- use std::io::{self, BufRead, BufReader, Read, Write};
64
- use std::path::{Component, Path, PathBuf};
65
- use std::process::{Child, Command, Stdio};
66
- use std::sync::{Arc, Mutex};
67
- use std::thread::{self, JoinHandle};
68
-
69
- mod os_pipe;
70
-
71
- // These modules are all glue to support reading the MSVC version from
72
- // the registry and from COM interfaces
73
- #[cfg(windows)]
74
- mod registry;
75
- #[cfg(windows)]
76
- #[macro_use]
77
- mod winapi;
78
- #[cfg(windows)]
79
- mod com;
80
- #[cfg(windows)]
81
- mod setup_config;
82
- #[cfg(windows)]
83
- mod vs_instances;
84
- #[cfg(windows)]
85
- mod windows_sys;
86
-
87
- pub mod windows_registry;
88
-
89
- /// A builder for compilation of a native library.
90
- ///
91
- /// A `Build` is the main type of the `cc` crate and is used to control all the
92
- /// various configuration options and such of a compile. You'll find more
93
- /// documentation on each method itself.
94
- #[derive(Clone, Debug)]
95
- pub struct Build {
96
- include_directories: Vec<Arc<Path>>,
97
- definitions: Vec<(Arc<str>, Option<Arc<str>>)>,
98
- objects: Vec<Arc<Path>>,
99
- flags: Vec<Arc<str>>,
100
- flags_supported: Vec<Arc<str>>,
101
- known_flag_support_status: Arc<Mutex<HashMap<String, bool>>>,
102
- ar_flags: Vec<Arc<str>>,
103
- asm_flags: Vec<Arc<str>>,
104
- no_default_flags: bool,
105
- files: Vec<Arc<Path>>,
106
- cpp: bool,
107
- cpp_link_stdlib: Option<Option<Arc<str>>>,
108
- cpp_set_stdlib: Option<Arc<str>>,
109
- cuda: bool,
110
- cudart: Option<Arc<str>>,
111
- target: Option<Arc<str>>,
112
- host: Option<Arc<str>>,
113
- out_dir: Option<Arc<Path>>,
114
- opt_level: Option<Arc<str>>,
115
- debug: Option<bool>,
116
- force_frame_pointer: Option<bool>,
117
- env: Vec<(Arc<OsStr>, Arc<OsStr>)>,
118
- compiler: Option<Arc<Path>>,
119
- archiver: Option<Arc<Path>>,
120
- ranlib: Option<Arc<Path>>,
121
- cargo_metadata: bool,
122
- link_lib_modifiers: Vec<Arc<str>>,
123
- pic: Option<bool>,
124
- use_plt: Option<bool>,
125
- static_crt: Option<bool>,
126
- shared_flag: Option<bool>,
127
- static_flag: Option<bool>,
128
- warnings_into_errors: bool,
129
- warnings: Option<bool>,
130
- extra_warnings: Option<bool>,
131
- env_cache: Arc<Mutex<HashMap<String, Option<Arc<str>>>>>,
132
- apple_sdk_root_cache: Arc<Mutex<HashMap<String, OsString>>>,
133
- emit_rerun_if_env_changed: bool,
134
- }
135
-
136
- /// Represents the types of errors that may occur while using cc-rs.
137
- #[derive(Clone, Debug)]
138
- enum ErrorKind {
139
- /// Error occurred while performing I/O.
140
- IOError,
141
- /// Invalid architecture supplied.
142
- ArchitectureInvalid,
143
- /// Environment variable not found, with the var in question as extra info.
144
- EnvVarNotFound,
145
- /// Error occurred while using external tools (ie: invocation of compiler).
146
- ToolExecError,
147
- /// Error occurred due to missing external tools.
148
- ToolNotFound,
149
- /// One of the function arguments failed validation.
150
- InvalidArgument,
151
- }
152
-
153
- /// Represents an internal error that occurred, with an explanation.
154
- #[derive(Clone, Debug)]
155
- pub struct Error {
156
- /// Describes the kind of error that occurred.
157
- kind: ErrorKind,
158
- /// More explanation of error that occurred.
159
- message: Cow<'static, str>,
160
- }
161
-
162
- impl Error {
163
- fn new(kind: ErrorKind, message: impl Into<Cow<'static, str>>) -> Error {
164
- Error {
165
- kind,
166
- message: message.into(),
167
- }
168
- }
169
- }
170
-
171
- impl From<io::Error> for Error {
172
- fn from(e: io::Error) -> Error {
173
- Error::new(ErrorKind::IOError, format!("{}", e))
174
- }
175
- }
176
-
177
- impl Display for Error {
178
- fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
179
- write!(f, "{:?}: {}", self.kind, self.message)
180
- }
181
- }
182
-
183
- impl std::error::Error for Error {}
184
-
185
- /// Configuration used to represent an invocation of a C compiler.
186
- ///
187
- /// This can be used to figure out what compiler is in use, what the arguments
188
- /// to it are, and what the environment variables look like for the compiler.
189
- /// This can be used to further configure other build systems (e.g. forward
190
- /// along CC and/or CFLAGS) or the `to_command` method can be used to run the
191
- /// compiler itself.
192
- #[derive(Clone, Debug)]
193
- pub struct Tool {
194
- path: PathBuf,
195
- cc_wrapper_path: Option<PathBuf>,
196
- cc_wrapper_args: Vec<OsString>,
197
- args: Vec<OsString>,
198
- env: Vec<(OsString, OsString)>,
199
- family: ToolFamily,
200
- cuda: bool,
201
- removed_args: Vec<OsString>,
202
- }
203
-
204
- /// Represents the family of tools this tool belongs to.
205
- ///
206
- /// Each family of tools differs in how and what arguments they accept.
207
- ///
208
- /// Detection of a family is done on best-effort basis and may not accurately reflect the tool.
209
- #[derive(Copy, Clone, Debug, PartialEq)]
210
- enum ToolFamily {
211
- /// Tool is GNU Compiler Collection-like.
212
- Gnu,
213
- /// Tool is Clang-like. It differs from the GCC in a sense that it accepts superset of flags
214
- /// and its cross-compilation approach is different.
215
- Clang,
216
- /// Tool is the MSVC cl.exe.
217
- Msvc { clang_cl: bool },
218
- }
219
-
220
- impl ToolFamily {
221
- /// What the flag to request debug info for this family of tools look like
222
- fn add_debug_flags(&self, cmd: &mut Tool, dwarf_version: Option<u32>) {
223
- match *self {
224
- ToolFamily::Msvc { .. } => {
225
- cmd.push_cc_arg("-Z7".into());
226
- }
227
- ToolFamily::Gnu | ToolFamily::Clang => {
228
- cmd.push_cc_arg(
229
- dwarf_version
230
- .map_or_else(|| "-g".into(), |v| format!("-gdwarf-{}", v))
231
- .into(),
232
- );
233
- }
234
- }
235
- }
236
-
237
- /// What the flag to force frame pointers.
238
- fn add_force_frame_pointer(&self, cmd: &mut Tool) {
239
- match *self {
240
- ToolFamily::Gnu | ToolFamily::Clang => {
241
- cmd.push_cc_arg("-fno-omit-frame-pointer".into());
242
- }
243
- _ => (),
244
- }
245
- }
246
-
247
- /// What the flags to enable all warnings
248
- fn warnings_flags(&self) -> &'static str {
249
- match *self {
250
- ToolFamily::Msvc { .. } => "-W4",
251
- ToolFamily::Gnu | ToolFamily::Clang => "-Wall",
252
- }
253
- }
254
-
255
- /// What the flags to enable extra warnings
256
- fn extra_warnings_flags(&self) -> Option<&'static str> {
257
- match *self {
258
- ToolFamily::Msvc { .. } => None,
259
- ToolFamily::Gnu | ToolFamily::Clang => Some("-Wextra"),
260
- }
261
- }
262
-
263
- /// What the flag to turn warning into errors
264
- fn warnings_to_errors_flag(&self) -> &'static str {
265
- match *self {
266
- ToolFamily::Msvc { .. } => "-WX",
267
- ToolFamily::Gnu | ToolFamily::Clang => "-Werror",
268
- }
269
- }
270
-
271
- fn verbose_stderr(&self) -> bool {
272
- *self == ToolFamily::Clang
273
- }
274
- }
275
-
276
- /// Represents an object.
277
- ///
278
- /// This is a source file -> object file pair.
279
- #[derive(Clone, Debug)]
280
- struct Object {
281
- src: PathBuf,
282
- dst: PathBuf,
283
- }
284
-
285
- impl Object {
286
- /// Create a new source file -> object file pair.
287
- fn new(src: PathBuf, dst: PathBuf) -> Object {
288
- Object { src: src, dst: dst }
289
- }
290
- }
291
-
292
- impl Build {
293
- /// Construct a new instance of a blank set of configuration.
294
- ///
295
- /// This builder is finished with the [`compile`] function.
296
- ///
297
- /// [`compile`]: struct.Build.html#method.compile
298
- pub fn new() -> Build {
299
- Build {
300
- include_directories: Vec::new(),
301
- definitions: Vec::new(),
302
- objects: Vec::new(),
303
- flags: Vec::new(),
304
- flags_supported: Vec::new(),
305
- known_flag_support_status: Arc::new(Mutex::new(HashMap::new())),
306
- ar_flags: Vec::new(),
307
- asm_flags: Vec::new(),
308
- no_default_flags: false,
309
- files: Vec::new(),
310
- shared_flag: None,
311
- static_flag: None,
312
- cpp: false,
313
- cpp_link_stdlib: None,
314
- cpp_set_stdlib: None,
315
- cuda: false,
316
- cudart: None,
317
- target: None,
318
- host: None,
319
- out_dir: None,
320
- opt_level: None,
321
- debug: None,
322
- force_frame_pointer: None,
323
- env: Vec::new(),
324
- compiler: None,
325
- archiver: None,
326
- ranlib: None,
327
- cargo_metadata: true,
328
- link_lib_modifiers: Vec::new(),
329
- pic: None,
330
- use_plt: None,
331
- static_crt: None,
332
- warnings: None,
333
- extra_warnings: None,
334
- warnings_into_errors: false,
335
- env_cache: Arc::new(Mutex::new(HashMap::new())),
336
- apple_sdk_root_cache: Arc::new(Mutex::new(HashMap::new())),
337
- emit_rerun_if_env_changed: true,
338
- }
339
- }
340
-
341
- /// Add a directory to the `-I` or include path for headers
342
- ///
343
- /// # Example
344
- ///
345
- /// ```no_run
346
- /// use std::path::Path;
347
- ///
348
- /// let library_path = Path::new("/path/to/library");
349
- ///
350
- /// cc::Build::new()
351
- /// .file("src/foo.c")
352
- /// .include(library_path)
353
- /// .include("src")
354
- /// .compile("foo");
355
- /// ```
356
- pub fn include<P: AsRef<Path>>(&mut self, dir: P) -> &mut Build {
357
- self.include_directories.push(dir.as_ref().into());
358
- self
359
- }
360
-
361
- /// Add multiple directories to the `-I` include path.
362
- ///
363
- /// # Example
364
- ///
365
- /// ```no_run
366
- /// # use std::path::Path;
367
- /// # let condition = true;
368
- /// #
369
- /// let mut extra_dir = None;
370
- /// if condition {
371
- /// extra_dir = Some(Path::new("/path/to"));
372
- /// }
373
- ///
374
- /// cc::Build::new()
375
- /// .file("src/foo.c")
376
- /// .includes(extra_dir)
377
- /// .compile("foo");
378
- /// ```
379
- pub fn includes<P>(&mut self, dirs: P) -> &mut Build
380
- where
381
- P: IntoIterator,
382
- P::Item: AsRef<Path>,
383
- {
384
- for dir in dirs {
385
- self.include(dir);
386
- }
387
- self
388
- }
389
-
390
- /// Specify a `-D` variable with an optional value.
391
- ///
392
- /// # Example
393
- ///
394
- /// ```no_run
395
- /// cc::Build::new()
396
- /// .file("src/foo.c")
397
- /// .define("FOO", "BAR")
398
- /// .define("BAZ", None)
399
- /// .compile("foo");
400
- /// ```
401
- pub fn define<'a, V: Into<Option<&'a str>>>(&mut self, var: &str, val: V) -> &mut Build {
402
- self.definitions
403
- .push((var.into(), val.into().map(Into::into)));
404
- self
405
- }
406
-
407
- /// Add an arbitrary object file to link in
408
- pub fn object<P: AsRef<Path>>(&mut self, obj: P) -> &mut Build {
409
- self.objects.push(obj.as_ref().into());
410
- self
411
- }
412
-
413
- /// Add an arbitrary flag to the invocation of the compiler
414
- ///
415
- /// # Example
416
- ///
417
- /// ```no_run
418
- /// cc::Build::new()
419
- /// .file("src/foo.c")
420
- /// .flag("-ffunction-sections")
421
- /// .compile("foo");
422
- /// ```
423
- pub fn flag(&mut self, flag: &str) -> &mut Build {
424
- self.flags.push(flag.into());
425
- self
426
- }
427
-
428
- /// Add a flag to the invocation of the ar
429
- ///
430
- /// # Example
431
- ///
432
- /// ```no_run
433
- /// cc::Build::new()
434
- /// .file("src/foo.c")
435
- /// .file("src/bar.c")
436
- /// .ar_flag("/NODEFAULTLIB:libc.dll")
437
- /// .compile("foo");
438
- /// ```
439
- pub fn ar_flag(&mut self, flag: &str) -> &mut Build {
440
- self.ar_flags.push(flag.into());
441
- self
442
- }
443
-
444
- /// Add a flag that will only be used with assembly files.
445
- ///
446
- /// The flag will be applied to input files with either a `.s` or
447
- /// `.asm` extension (case insensitive).
448
- ///
449
- /// # Example
450
- ///
451
- /// ```no_run
452
- /// cc::Build::new()
453
- /// .asm_flag("-Wa,-defsym,abc=1")
454
- /// .file("src/foo.S") // The asm flag will be applied here
455
- /// .file("src/bar.c") // The asm flag will not be applied here
456
- /// .compile("foo");
457
- /// ```
458
- pub fn asm_flag(&mut self, flag: &str) -> &mut Build {
459
- self.asm_flags.push(flag.into());
460
- self
461
- }
462
-
463
- fn ensure_check_file(&self) -> Result<PathBuf, Error> {
464
- let out_dir = self.get_out_dir()?;
465
- let src = if self.cuda {
466
- assert!(self.cpp);
467
- out_dir.join("flag_check.cu")
468
- } else if self.cpp {
469
- out_dir.join("flag_check.cpp")
470
- } else {
471
- out_dir.join("flag_check.c")
472
- };
473
-
474
- if !src.exists() {
475
- let mut f = fs::File::create(&src)?;
476
- write!(f, "int main(void) {{ return 0; }}")?;
477
- }
478
-
479
- Ok(src)
480
- }
481
-
482
- /// Run the compiler to test if it accepts the given flag.
483
- ///
484
- /// For a convenience method for setting flags conditionally,
485
- /// see `flag_if_supported()`.
486
- ///
487
- /// It may return error if it's unable to run the compiler with a test file
488
- /// (e.g. the compiler is missing or a write to the `out_dir` failed).
489
- ///
490
- /// Note: Once computed, the result of this call is stored in the
491
- /// `known_flag_support` field. If `is_flag_supported(flag)`
492
- /// is called again, the result will be read from the hash table.
493
- pub fn is_flag_supported(&self, flag: &str) -> Result<bool, Error> {
494
- let mut known_status = self.known_flag_support_status.lock().unwrap();
495
- if let Some(is_supported) = known_status.get(flag).cloned() {
496
- return Ok(is_supported);
497
- }
498
-
499
- let out_dir = self.get_out_dir()?;
500
- let src = self.ensure_check_file()?;
501
- let obj = out_dir.join("flag_check");
502
- let target = self.get_target()?;
503
- let host = self.get_host()?;
504
- let mut cfg = Build::new();
505
- cfg.flag(flag)
506
- .target(&target)
507
- .opt_level(0)
508
- .host(&host)
509
- .debug(false)
510
- .cpp(self.cpp)
511
- .cuda(self.cuda);
512
- if let Some(ref c) = self.compiler {
513
- cfg.compiler(c.clone());
514
- }
515
- let mut compiler = cfg.try_get_compiler()?;
516
-
517
- // Clang uses stderr for verbose output, which yields a false positive
518
- // result if the CFLAGS/CXXFLAGS include -v to aid in debugging.
519
- if compiler.family.verbose_stderr() {
520
- compiler.remove_arg("-v".into());
521
- }
522
-
523
- let mut cmd = compiler.to_command();
524
- let is_arm = target.contains("aarch64") || target.contains("arm");
525
- let clang = compiler.family == ToolFamily::Clang;
526
- let gnu = compiler.family == ToolFamily::Gnu;
527
- command_add_output_file(
528
- &mut cmd,
529
- &obj,
530
- self.cuda,
531
- target.contains("msvc"),
532
- clang,
533
- gnu,
534
- false,
535
- is_arm,
536
- );
537
-
538
- // We need to explicitly tell msvc not to link and create an exe
539
- // in the root directory of the crate
540
- if target.contains("msvc") && !self.cuda {
541
- cmd.arg("-c");
542
- }
543
-
544
- cmd.arg(&src);
545
-
546
- let output = cmd.output()?;
547
- let is_supported = output.status.success() && output.stderr.is_empty();
548
-
549
- known_status.insert(flag.to_owned(), is_supported);
550
- Ok(is_supported)
551
- }
552
-
553
- /// Add an arbitrary flag to the invocation of the compiler if it supports it
554
- ///
555
- /// # Example
556
- ///
557
- /// ```no_run
558
- /// cc::Build::new()
559
- /// .file("src/foo.c")
560
- /// .flag_if_supported("-Wlogical-op") // only supported by GCC
561
- /// .flag_if_supported("-Wunreachable-code") // only supported by clang
562
- /// .compile("foo");
563
- /// ```
564
- pub fn flag_if_supported(&mut self, flag: &str) -> &mut Build {
565
- self.flags_supported.push(flag.into());
566
- self
567
- }
568
-
569
- /// Add flags from the specified environment variable.
570
- ///
571
- /// Normally the `cc` crate will consult with the standard set of environment
572
- /// variables (such as `CFLAGS` and `CXXFLAGS`) to construct the compiler invocation. Use of
573
- /// this method provides additional levers for the end user to use when configuring the build
574
- /// process.
575
- ///
576
- /// Just like the standard variables, this method will search for an environment variable with
577
- /// appropriate target prefixes, when appropriate.
578
- ///
579
- /// # Examples
580
- ///
581
- /// This method is particularly beneficial in introducing the ability to specify crate-specific
582
- /// flags.
583
- ///
584
- /// ```no_run
585
- /// cc::Build::new()
586
- /// .file("src/foo.c")
587
- /// .try_flags_from_environment(concat!(env!("CARGO_PKG_NAME"), "_CFLAGS"))
588
- /// .expect("the environment variable must be specified and UTF-8")
589
- /// .compile("foo");
590
- /// ```
591
- ///
592
- pub fn try_flags_from_environment(&mut self, environ_key: &str) -> Result<&mut Build, Error> {
593
- let flags = self.envflags(environ_key)?;
594
- self.flags.extend(flags.into_iter().map(Into::into));
595
- Ok(self)
596
- }
597
-
598
- /// Set the `-shared` flag.
599
- ///
600
- /// When enabled, the compiler will produce a shared object which can
601
- /// then be linked with other objects to form an executable.
602
- ///
603
- /// # Example
604
- ///
605
- /// ```no_run
606
- /// cc::Build::new()
607
- /// .file("src/foo.c")
608
- /// .shared_flag(true)
609
- /// .compile("libfoo.so");
610
- /// ```
611
- pub fn shared_flag(&mut self, shared_flag: bool) -> &mut Build {
612
- self.shared_flag = Some(shared_flag);
613
- self
614
- }
615
-
616
- /// Set the `-static` flag.
617
- ///
618
- /// When enabled on systems that support dynamic linking, this prevents
619
- /// linking with the shared libraries.
620
- ///
621
- /// # Example
622
- ///
623
- /// ```no_run
624
- /// cc::Build::new()
625
- /// .file("src/foo.c")
626
- /// .shared_flag(true)
627
- /// .static_flag(true)
628
- /// .compile("foo");
629
- /// ```
630
- pub fn static_flag(&mut self, static_flag: bool) -> &mut Build {
631
- self.static_flag = Some(static_flag);
632
- self
633
- }
634
-
635
- /// Disables the generation of default compiler flags. The default compiler
636
- /// flags may cause conflicts in some cross compiling scenarios.
637
- ///
638
- /// Setting the `CRATE_CC_NO_DEFAULTS` environment variable has the same
639
- /// effect as setting this to `true`. The presence of the environment
640
- /// variable and the value of `no_default_flags` will be OR'd together.
641
- pub fn no_default_flags(&mut self, no_default_flags: bool) -> &mut Build {
642
- self.no_default_flags = no_default_flags;
643
- self
644
- }
645
-
646
- /// Add a file which will be compiled
647
- pub fn file<P: AsRef<Path>>(&mut self, p: P) -> &mut Build {
648
- self.files.push(p.as_ref().into());
649
- self
650
- }
651
-
652
- /// Add files which will be compiled
653
- pub fn files<P>(&mut self, p: P) -> &mut Build
654
- where
655
- P: IntoIterator,
656
- P::Item: AsRef<Path>,
657
- {
658
- for file in p.into_iter() {
659
- self.file(file);
660
- }
661
- self
662
- }
663
-
664
- /// Set C++ support.
665
- ///
666
- /// The other `cpp_*` options will only become active if this is set to
667
- /// `true`.
668
- ///
669
- /// The name of the C++ standard library to link is decided by:
670
- /// 1. If [cpp_link_stdlib](Build::cpp_link_stdlib) is set, use its value.
671
- /// 2. Else if the `CXXSTDLIB` environment variable is set, use its value.
672
- /// 3. Else the default is `libc++` for OS X and BSDs, `libc++_shared` for Android,
673
- /// `None` for MSVC and `libstdc++` for anything else.
674
- pub fn cpp(&mut self, cpp: bool) -> &mut Build {
675
- self.cpp = cpp;
676
- self
677
- }
678
-
679
- /// Set CUDA C++ support.
680
- ///
681
- /// Enabling CUDA will invoke the CUDA compiler, NVCC. While NVCC accepts
682
- /// the most common compiler flags, e.g. `-std=c++17`, some project-specific
683
- /// flags might have to be prefixed with "-Xcompiler" flag, for example as
684
- /// `.flag("-Xcompiler").flag("-fpermissive")`. See the documentation for
685
- /// `nvcc`, the CUDA compiler driver, at https://docs.nvidia.com/cuda/cuda-compiler-driver-nvcc/
686
- /// for more information.
687
- ///
688
- /// If enabled, this also implicitly enables C++ support.
689
- pub fn cuda(&mut self, cuda: bool) -> &mut Build {
690
- self.cuda = cuda;
691
- if cuda {
692
- self.cpp = true;
693
- self.cudart = Some("static".into());
694
- }
695
- self
696
- }
697
-
698
- /// Link CUDA run-time.
699
- ///
700
- /// This option mimics the `--cudart` NVCC command-line option. Just like
701
- /// the original it accepts `{none|shared|static}`, with default being
702
- /// `static`. The method has to be invoked after `.cuda(true)`, or not
703
- /// at all, if the default is right for the project.
704
- pub fn cudart(&mut self, cudart: &str) -> &mut Build {
705
- if self.cuda {
706
- self.cudart = Some(cudart.into());
707
- }
708
- self
709
- }
710
-
711
- /// Set warnings into errors flag.
712
- ///
713
- /// Disabled by default.
714
- ///
715
- /// Warning: turning warnings into errors only make sense
716
- /// if you are a developer of the crate using cc-rs.
717
- /// Some warnings only appear on some architecture or
718
- /// specific version of the compiler. Any user of this crate,
719
- /// or any other crate depending on it, could fail during
720
- /// compile time.
721
- ///
722
- /// # Example
723
- ///
724
- /// ```no_run
725
- /// cc::Build::new()
726
- /// .file("src/foo.c")
727
- /// .warnings_into_errors(true)
728
- /// .compile("libfoo.a");
729
- /// ```
730
- pub fn warnings_into_errors(&mut self, warnings_into_errors: bool) -> &mut Build {
731
- self.warnings_into_errors = warnings_into_errors;
732
- self
733
- }
734
-
735
- /// Set warnings flags.
736
- ///
737
- /// Adds some flags:
738
- /// - "-Wall" for MSVC.
739
- /// - "-Wall", "-Wextra" for GNU and Clang.
740
- ///
741
- /// Enabled by default.
742
- ///
743
- /// # Example
744
- ///
745
- /// ```no_run
746
- /// cc::Build::new()
747
- /// .file("src/foo.c")
748
- /// .warnings(false)
749
- /// .compile("libfoo.a");
750
- /// ```
751
- pub fn warnings(&mut self, warnings: bool) -> &mut Build {
752
- self.warnings = Some(warnings);
753
- self.extra_warnings = Some(warnings);
754
- self
755
- }
756
-
757
- /// Set extra warnings flags.
758
- ///
759
- /// Adds some flags:
760
- /// - nothing for MSVC.
761
- /// - "-Wextra" for GNU and Clang.
762
- ///
763
- /// Enabled by default.
764
- ///
765
- /// # Example
766
- ///
767
- /// ```no_run
768
- /// // Disables -Wextra, -Wall remains enabled:
769
- /// cc::Build::new()
770
- /// .file("src/foo.c")
771
- /// .extra_warnings(false)
772
- /// .compile("libfoo.a");
773
- /// ```
774
- pub fn extra_warnings(&mut self, warnings: bool) -> &mut Build {
775
- self.extra_warnings = Some(warnings);
776
- self
777
- }
778
-
779
- /// Set the standard library to link against when compiling with C++
780
- /// support.
781
- ///
782
- /// If the `CXXSTDLIB` environment variable is set, its value will
783
- /// override the default value, but not the value explicitly set by calling
784
- /// this function.
785
- ///
786
- /// A value of `None` indicates that no automatic linking should happen,
787
- /// otherwise cargo will link against the specified library.
788
- ///
789
- /// The given library name must not contain the `lib` prefix.
790
- ///
791
- /// Common values:
792
- /// - `stdc++` for GNU
793
- /// - `c++` for Clang
794
- /// - `c++_shared` or `c++_static` for Android
795
- ///
796
- /// # Example
797
- ///
798
- /// ```no_run
799
- /// cc::Build::new()
800
- /// .file("src/foo.c")
801
- /// .shared_flag(true)
802
- /// .cpp_link_stdlib("stdc++")
803
- /// .compile("libfoo.so");
804
- /// ```
805
- pub fn cpp_link_stdlib<'a, V: Into<Option<&'a str>>>(
806
- &mut self,
807
- cpp_link_stdlib: V,
808
- ) -> &mut Build {
809
- self.cpp_link_stdlib = Some(cpp_link_stdlib.into().map(|s| s.into()));
810
- self
811
- }
812
-
813
- /// Force the C++ compiler to use the specified standard library.
814
- ///
815
- /// Setting this option will automatically set `cpp_link_stdlib` to the same
816
- /// value.
817
- ///
818
- /// The default value of this option is always `None`.
819
- ///
820
- /// This option has no effect when compiling for a Visual Studio based
821
- /// target.
822
- ///
823
- /// This option sets the `-stdlib` flag, which is only supported by some
824
- /// compilers (clang, icc) but not by others (gcc). The library will not
825
- /// detect which compiler is used, as such it is the responsibility of the
826
- /// caller to ensure that this option is only used in conjunction with a
827
- /// compiler which supports the `-stdlib` flag.
828
- ///
829
- /// A value of `None` indicates that no specific C++ standard library should
830
- /// be used, otherwise `-stdlib` is added to the compile invocation.
831
- ///
832
- /// The given library name must not contain the `lib` prefix.
833
- ///
834
- /// Common values:
835
- /// - `stdc++` for GNU
836
- /// - `c++` for Clang
837
- ///
838
- /// # Example
839
- ///
840
- /// ```no_run
841
- /// cc::Build::new()
842
- /// .file("src/foo.c")
843
- /// .cpp_set_stdlib("c++")
844
- /// .compile("libfoo.a");
845
- /// ```
846
- pub fn cpp_set_stdlib<'a, V: Into<Option<&'a str>>>(
847
- &mut self,
848
- cpp_set_stdlib: V,
849
- ) -> &mut Build {
850
- let cpp_set_stdlib = cpp_set_stdlib.into();
851
- self.cpp_set_stdlib = cpp_set_stdlib.map(|s| s.into());
852
- self.cpp_link_stdlib(cpp_set_stdlib);
853
- self
854
- }
855
-
856
- /// Configures the target this configuration will be compiling for.
857
- ///
858
- /// This option is automatically scraped from the `TARGET` environment
859
- /// variable by build scripts, so it's not required to call this function.
860
- ///
861
- /// # Example
862
- ///
863
- /// ```no_run
864
- /// cc::Build::new()
865
- /// .file("src/foo.c")
866
- /// .target("aarch64-linux-android")
867
- /// .compile("foo");
868
- /// ```
869
- pub fn target(&mut self, target: &str) -> &mut Build {
870
- self.target = Some(target.into());
871
- self
872
- }
873
-
874
- /// Configures the host assumed by this configuration.
875
- ///
876
- /// This option is automatically scraped from the `HOST` environment
877
- /// variable by build scripts, so it's not required to call this function.
878
- ///
879
- /// # Example
880
- ///
881
- /// ```no_run
882
- /// cc::Build::new()
883
- /// .file("src/foo.c")
884
- /// .host("arm-linux-gnueabihf")
885
- /// .compile("foo");
886
- /// ```
887
- pub fn host(&mut self, host: &str) -> &mut Build {
888
- self.host = Some(host.into());
889
- self
890
- }
891
-
892
- /// Configures the optimization level of the generated object files.
893
- ///
894
- /// This option is automatically scraped from the `OPT_LEVEL` environment
895
- /// variable by build scripts, so it's not required to call this function.
896
- pub fn opt_level(&mut self, opt_level: u32) -> &mut Build {
897
- self.opt_level = Some(opt_level.to_string().into());
898
- self
899
- }
900
-
901
- /// Configures the optimization level of the generated object files.
902
- ///
903
- /// This option is automatically scraped from the `OPT_LEVEL` environment
904
- /// variable by build scripts, so it's not required to call this function.
905
- pub fn opt_level_str(&mut self, opt_level: &str) -> &mut Build {
906
- self.opt_level = Some(opt_level.into());
907
- self
908
- }
909
-
910
- /// Configures whether the compiler will emit debug information when
911
- /// generating object files.
912
- ///
913
- /// This option is automatically scraped from the `DEBUG` environment
914
- /// variable by build scripts, so it's not required to call this function.
915
- pub fn debug(&mut self, debug: bool) -> &mut Build {
916
- self.debug = Some(debug);
917
- self
918
- }
919
-
920
- /// Configures whether the compiler will emit instructions to store
921
- /// frame pointers during codegen.
922
- ///
923
- /// This option is automatically enabled when debug information is emitted.
924
- /// Otherwise the target platform compiler's default will be used.
925
- /// You can use this option to force a specific setting.
926
- pub fn force_frame_pointer(&mut self, force: bool) -> &mut Build {
927
- self.force_frame_pointer = Some(force);
928
- self
929
- }
930
-
931
- /// Configures the output directory where all object files and static
932
- /// libraries will be located.
933
- ///
934
- /// This option is automatically scraped from the `OUT_DIR` environment
935
- /// variable by build scripts, so it's not required to call this function.
936
- pub fn out_dir<P: AsRef<Path>>(&mut self, out_dir: P) -> &mut Build {
937
- self.out_dir = Some(out_dir.as_ref().into());
938
- self
939
- }
940
-
941
- /// Configures the compiler to be used to produce output.
942
- ///
943
- /// This option is automatically determined from the target platform or a
944
- /// number of environment variables, so it's not required to call this
945
- /// function.
946
- pub fn compiler<P: AsRef<Path>>(&mut self, compiler: P) -> &mut Build {
947
- self.compiler = Some(compiler.as_ref().into());
948
- self
949
- }
950
-
951
- /// Configures the tool used to assemble archives.
952
- ///
953
- /// This option is automatically determined from the target platform or a
954
- /// number of environment variables, so it's not required to call this
955
- /// function.
956
- pub fn archiver<P: AsRef<Path>>(&mut self, archiver: P) -> &mut Build {
957
- self.archiver = Some(archiver.as_ref().into());
958
- self
959
- }
960
-
961
- /// Configures the tool used to index archives.
962
- ///
963
- /// This option is automatically determined from the target platform or a
964
- /// number of environment variables, so it's not required to call this
965
- /// function.
966
- pub fn ranlib<P: AsRef<Path>>(&mut self, ranlib: P) -> &mut Build {
967
- self.ranlib = Some(ranlib.as_ref().into());
968
- self
969
- }
970
-
971
- /// Define whether metadata should be emitted for cargo allowing it to
972
- /// automatically link the binary. Defaults to `true`.
973
- ///
974
- /// The emitted metadata is:
975
- ///
976
- /// - `rustc-link-lib=static=`*compiled lib*
977
- /// - `rustc-link-search=native=`*target folder*
978
- /// - When target is MSVC, the ATL-MFC libs are added via `rustc-link-search=native=`
979
- /// - When C++ is enabled, the C++ stdlib is added via `rustc-link-lib`
980
- /// - If `emit_rerun_if_env_changed` is not `false`, `rerun-if-env-changed=`*env*
981
- ///
982
- pub fn cargo_metadata(&mut self, cargo_metadata: bool) -> &mut Build {
983
- self.cargo_metadata = cargo_metadata;
984
- self
985
- }
986
-
987
- /// Adds a native library modifier that will be added to the
988
- /// `rustc-link-lib=static:MODIFIERS=LIBRARY_NAME` metadata line
989
- /// emitted for cargo if `cargo_metadata` is enabled.
990
- /// See https://doc.rust-lang.org/rustc/command-line-arguments.html#-l-link-the-generated-crate-to-a-native-library
991
- /// for the list of modifiers accepted by rustc.
992
- pub fn link_lib_modifier(&mut self, link_lib_modifier: &str) -> &mut Build {
993
- self.link_lib_modifiers.push(link_lib_modifier.into());
994
- self
995
- }
996
-
997
- /// Configures whether the compiler will emit position independent code.
998
- ///
999
- /// This option defaults to `false` for `windows-gnu` and bare metal targets and
1000
- /// to `true` for all other targets.
1001
- pub fn pic(&mut self, pic: bool) -> &mut Build {
1002
- self.pic = Some(pic);
1003
- self
1004
- }
1005
-
1006
- /// Configures whether the Procedure Linkage Table is used for indirect
1007
- /// calls into shared libraries.
1008
- ///
1009
- /// The PLT is used to provide features like lazy binding, but introduces
1010
- /// a small performance loss due to extra pointer indirection. Setting
1011
- /// `use_plt` to `false` can provide a small performance increase.
1012
- ///
1013
- /// Note that skipping the PLT requires a recent version of GCC/Clang.
1014
- ///
1015
- /// This only applies to ELF targets. It has no effect on other platforms.
1016
- pub fn use_plt(&mut self, use_plt: bool) -> &mut Build {
1017
- self.use_plt = Some(use_plt);
1018
- self
1019
- }
1020
-
1021
- /// Define whether metadata should be emitted for cargo to detect environment
1022
- /// changes that should trigger a rebuild.
1023
- ///
1024
- /// This has no effect if the `cargo_metadata` option is `false`.
1025
- ///
1026
- /// This option defaults to `true`.
1027
- pub fn emit_rerun_if_env_changed(&mut self, emit_rerun_if_env_changed: bool) -> &mut Build {
1028
- self.emit_rerun_if_env_changed = emit_rerun_if_env_changed;
1029
- self
1030
- }
1031
-
1032
- /// Configures whether the /MT flag or the /MD flag will be passed to msvc build tools.
1033
- ///
1034
- /// This option defaults to `false`, and affect only msvc targets.
1035
- pub fn static_crt(&mut self, static_crt: bool) -> &mut Build {
1036
- self.static_crt = Some(static_crt);
1037
- self
1038
- }
1039
-
1040
- #[doc(hidden)]
1041
- pub fn __set_env<A, B>(&mut self, a: A, b: B) -> &mut Build
1042
- where
1043
- A: AsRef<OsStr>,
1044
- B: AsRef<OsStr>,
1045
- {
1046
- self.env.push((a.as_ref().into(), b.as_ref().into()));
1047
- self
1048
- }
1049
-
1050
- /// Run the compiler, generating the file `output`
1051
- ///
1052
- /// This will return a result instead of panicing; see compile() for the complete description.
1053
- pub fn try_compile(&self, output: &str) -> Result<(), Error> {
1054
- let mut output_components = Path::new(output).components();
1055
- match (output_components.next(), output_components.next()) {
1056
- (Some(Component::Normal(_)), None) => {}
1057
- _ => {
1058
- return Err(Error::new(
1059
- ErrorKind::InvalidArgument,
1060
- "argument of `compile` must be a single normal path component",
1061
- ));
1062
- }
1063
- }
1064
-
1065
- let (lib_name, gnu_lib_name) = if output.starts_with("lib") && output.ends_with(".a") {
1066
- (&output[3..output.len() - 2], output.to_owned())
1067
- } else {
1068
- let mut gnu = String::with_capacity(5 + output.len());
1069
- gnu.push_str("lib");
1070
- gnu.push_str(&output);
1071
- gnu.push_str(".a");
1072
- (output, gnu)
1073
- };
1074
- let dst = self.get_out_dir()?;
1075
-
1076
- let mut objects = Vec::new();
1077
- for file in self.files.iter() {
1078
- let obj = if file.has_root() || file.components().any(|x| x == Component::ParentDir) {
1079
- // If `file` is an absolute path or might not be usable directly as a suffix due to
1080
- // using "..", use the `basename` prefixed with the `dirname`'s hash to ensure name
1081
- // uniqueness.
1082
- let basename = file
1083
- .file_name()
1084
- .ok_or_else(|| Error::new(ErrorKind::InvalidArgument, "file_name() failure"))?
1085
- .to_string_lossy();
1086
- let dirname = file
1087
- .parent()
1088
- .ok_or_else(|| Error::new(ErrorKind::InvalidArgument, "parent() failure"))?
1089
- .to_string_lossy();
1090
- let mut hasher = hash_map::DefaultHasher::new();
1091
- hasher.write(dirname.to_string().as_bytes());
1092
- dst.join(format!("{:016x}-{}", hasher.finish(), basename))
1093
- .with_extension("o")
1094
- } else {
1095
- dst.join(file).with_extension("o")
1096
- };
1097
- let obj = if !obj.starts_with(&dst) {
1098
- dst.join(obj.file_name().ok_or_else(|| {
1099
- Error::new(ErrorKind::IOError, "Getting object file details failed.")
1100
- })?)
1101
- } else {
1102
- obj
1103
- };
1104
-
1105
- match obj.parent() {
1106
- Some(s) => fs::create_dir_all(s)?,
1107
- None => {
1108
- return Err(Error::new(
1109
- ErrorKind::IOError,
1110
- "Getting object file details failed.",
1111
- ));
1112
- }
1113
- };
1114
-
1115
- objects.push(Object::new(file.to_path_buf(), obj));
1116
- }
1117
-
1118
- let print = PrintThread::new()?;
1119
-
1120
- self.compile_objects(&objects, &print)?;
1121
- self.assemble(lib_name, &dst.join(gnu_lib_name), &objects, &print)?;
1122
-
1123
- if self.get_target()?.contains("msvc") {
1124
- let compiler = self.get_base_compiler()?;
1125
- let atlmfc_lib = compiler
1126
- .env()
1127
- .iter()
1128
- .find(|&&(ref var, _)| var.as_os_str() == OsStr::new("LIB"))
1129
- .and_then(|&(_, ref lib_paths)| {
1130
- env::split_paths(lib_paths).find(|path| {
1131
- let sub = Path::new("atlmfc/lib");
1132
- path.ends_with(sub) || path.parent().map_or(false, |p| p.ends_with(sub))
1133
- })
1134
- });
1135
-
1136
- if let Some(atlmfc_lib) = atlmfc_lib {
1137
- self.print(&format_args!(
1138
- "cargo:rustc-link-search=native={}",
1139
- atlmfc_lib.display()
1140
- ));
1141
- }
1142
- }
1143
-
1144
- if self.link_lib_modifiers.is_empty() {
1145
- self.print(&format_args!("cargo:rustc-link-lib=static={}", lib_name));
1146
- } else {
1147
- let m = self.link_lib_modifiers.join(",");
1148
- self.print(&format_args!(
1149
- "cargo:rustc-link-lib=static:{}={}",
1150
- m, lib_name
1151
- ));
1152
- }
1153
- self.print(&format_args!(
1154
- "cargo:rustc-link-search=native={}",
1155
- dst.display()
1156
- ));
1157
-
1158
- // Add specific C++ libraries, if enabled.
1159
- if self.cpp {
1160
- if let Some(stdlib) = self.get_cpp_link_stdlib()? {
1161
- self.print(&format_args!("cargo:rustc-link-lib={}", stdlib));
1162
- }
1163
- }
1164
-
1165
- let cudart = match &self.cudart {
1166
- Some(opt) => &*opt, // {none|shared|static}
1167
- None => "none",
1168
- };
1169
- if cudart != "none" {
1170
- if let Some(nvcc) = which(&self.get_compiler().path, None) {
1171
- // Try to figure out the -L search path. If it fails,
1172
- // it's on user to specify one by passing it through
1173
- // RUSTFLAGS environment variable.
1174
- let mut libtst = false;
1175
- let mut libdir = nvcc;
1176
- libdir.pop(); // remove 'nvcc'
1177
- libdir.push("..");
1178
- let target_arch = env::var("CARGO_CFG_TARGET_ARCH").unwrap();
1179
- if cfg!(target_os = "linux") {
1180
- libdir.push("targets");
1181
- libdir.push(target_arch.to_owned() + "-linux");
1182
- libdir.push("lib");
1183
- libtst = true;
1184
- } else if cfg!(target_env = "msvc") {
1185
- libdir.push("lib");
1186
- match target_arch.as_str() {
1187
- "x86_64" => {
1188
- libdir.push("x64");
1189
- libtst = true;
1190
- }
1191
- "x86" => {
1192
- libdir.push("Win32");
1193
- libtst = true;
1194
- }
1195
- _ => libtst = false,
1196
- }
1197
- }
1198
- if libtst && libdir.is_dir() {
1199
- println!(
1200
- "cargo:rustc-link-search=native={}",
1201
- libdir.to_str().unwrap()
1202
- );
1203
- }
1204
-
1205
- // And now the -l flag.
1206
- let lib = match cudart {
1207
- "shared" => "cudart",
1208
- "static" => "cudart_static",
1209
- bad => panic!("unsupported cudart option: {}", bad),
1210
- };
1211
- println!("cargo:rustc-link-lib={}", lib);
1212
- }
1213
- }
1214
-
1215
- Ok(())
1216
- }
1217
-
1218
- /// Run the compiler, generating the file `output`
1219
- ///
1220
- /// # Library name
1221
- ///
1222
- /// The `output` string argument determines the file name for the compiled
1223
- /// library. The Rust compiler will create an assembly named "lib"+output+".a".
1224
- /// MSVC will create a file named output+".lib".
1225
- ///
1226
- /// The choice of `output` is close to arbitrary, but:
1227
- ///
1228
- /// - must be nonempty,
1229
- /// - must not contain a path separator (`/`),
1230
- /// - must be unique across all `compile` invocations made by the same build
1231
- /// script.
1232
- ///
1233
- /// If your build script compiles a single source file, the base name of
1234
- /// that source file would usually be reasonable:
1235
- ///
1236
- /// ```no_run
1237
- /// cc::Build::new().file("blobstore.c").compile("blobstore");
1238
- /// ```
1239
- ///
1240
- /// Compiling multiple source files, some people use their crate's name, or
1241
- /// their crate's name + "-cc".
1242
- ///
1243
- /// Otherwise, please use your imagination.
1244
- ///
1245
- /// For backwards compatibility, if `output` starts with "lib" *and* ends
1246
- /// with ".a", a second "lib" prefix and ".a" suffix do not get added on,
1247
- /// but this usage is deprecated; please omit `lib` and `.a` in the argument
1248
- /// that you pass.
1249
- ///
1250
- /// # Panics
1251
- ///
1252
- /// Panics if `output` is not formatted correctly or if one of the underlying
1253
- /// compiler commands fails. It can also panic if it fails reading file names
1254
- /// or creating directories.
1255
- pub fn compile(&self, output: &str) {
1256
- if let Err(e) = self.try_compile(output) {
1257
- fail(&e.message);
1258
- }
1259
- }
1260
-
1261
- #[cfg(feature = "parallel")]
1262
- fn compile_objects(&self, objs: &[Object], print: &PrintThread) -> Result<(), Error> {
1263
- use std::sync::{mpsc, Once};
1264
-
1265
- if objs.len() <= 1 {
1266
- for obj in objs {
1267
- let (mut cmd, name) = self.create_compile_object_cmd(obj)?;
1268
- run(&mut cmd, &name, print)?;
1269
- }
1270
-
1271
- return Ok(());
1272
- }
1273
-
1274
- // Limit our parallelism globally with a jobserver. Start off by
1275
- // releasing our own token for this process so we can have a bit of an
1276
- // easier to write loop below. If this fails, though, then we're likely
1277
- // on Windows with the main implicit token, so we just have a bit extra
1278
- // parallelism for a bit and don't reacquire later.
1279
- let server = jobserver();
1280
- // Reacquire our process's token on drop
1281
- let _reacquire = server.release_raw().ok().map(|_| JobserverToken(server));
1282
-
1283
- // When compiling objects in parallel we do a few dirty tricks to speed
1284
- // things up:
1285
- //
1286
- // * First is that we use the `jobserver` crate to limit the parallelism
1287
- // of this build script. The `jobserver` crate will use a jobserver
1288
- // configured by Cargo for build scripts to ensure that parallelism is
1289
- // coordinated across C compilations and Rust compilations. Before we
1290
- // compile anything we make sure to wait until we acquire a token.
1291
- //
1292
- // Note that this jobserver is cached globally so we only used one per
1293
- // process and only worry about creating it once.
1294
- //
1295
- // * Next we use spawn the process to actually compile objects in
1296
- // parallel after we've acquired a token to perform some work
1297
- //
1298
- // With all that in mind we compile all objects in a loop here, after we
1299
- // acquire the appropriate tokens, Once all objects have been compiled
1300
- // we wait on all the processes and propagate the results of compilation.
1301
-
1302
- let (tx, rx) = mpsc::channel::<(_, String, KillOnDrop, _)>();
1303
-
1304
- // Since jobserver::Client::acquire can block, waiting
1305
- // must be done in parallel so that acquire won't block forever.
1306
- let wait_thread = thread::Builder::new().spawn(move || {
1307
- let mut error = None;
1308
- let mut pendings = Vec::new();
1309
- // Buffer the stdout
1310
- let mut stdout = io::BufWriter::with_capacity(128, io::stdout());
1311
- let mut backoff_cnt = 0;
1312
-
1313
- loop {
1314
- let mut has_made_progress = false;
1315
-
1316
- // Reading new pending tasks
1317
- loop {
1318
- match rx.try_recv() {
1319
- Ok(pending) => {
1320
- has_made_progress = true;
1321
- pendings.push(pending)
1322
- }
1323
- Err(mpsc::TryRecvError::Disconnected) if pendings.is_empty() => {
1324
- let _ = stdout.flush();
1325
- return if let Some(err) = error {
1326
- Err(err)
1327
- } else {
1328
- Ok(())
1329
- };
1330
- }
1331
- _ => break,
1332
- }
1333
- }
1334
-
1335
- // Try waiting on them.
1336
- pendings.retain_mut(|(cmd, program, child, _)| {
1337
- match try_wait_on_child(cmd, program, &mut child.0, &mut stdout) {
1338
- Ok(Some(())) => {
1339
- // Task done, remove the entry
1340
- has_made_progress = true;
1341
- false
1342
- }
1343
- Ok(None) => true, // Task still not finished, keep the entry
1344
- Err(err) => {
1345
- // Task fail, remove the entry.
1346
- has_made_progress = true;
1347
-
1348
- // Since we can only return one error, log the error to make
1349
- // sure users always see all the compilation failures.
1350
- let _ = writeln!(stdout, "cargo:warning={}", err);
1351
- error = Some(err);
1352
-
1353
- false
1354
- }
1355
- }
1356
- });
1357
-
1358
- if !has_made_progress {
1359
- if backoff_cnt > 3 {
1360
- // We have yielded at least three times without making'
1361
- // any progress, so we will sleep for a while.
1362
- let duration =
1363
- std::time::Duration::from_millis(100 * (backoff_cnt - 3).min(10));
1364
- thread::sleep(duration);
1365
- } else {
1366
- // Given that we spawned a lot of compilation tasks, it is unlikely
1367
- // that OS cannot find other ready task to execute.
1368
- //
1369
- // If all of them are done, then we will yield them and spawn more,
1370
- // or simply returns.
1371
- //
1372
- // Thus this will not be turned into a busy-wait loop and it will not
1373
- // waste CPU resource.
1374
- thread::yield_now();
1375
- }
1376
- }
1377
-
1378
- backoff_cnt = if has_made_progress {
1379
- 0
1380
- } else {
1381
- backoff_cnt + 1
1382
- };
1383
- }
1384
- })?;
1385
-
1386
- for obj in objs {
1387
- let (mut cmd, program) = self.create_compile_object_cmd(obj)?;
1388
- let token = server.acquire()?;
1389
-
1390
- let child = spawn(&mut cmd, &program, print.pipe_writer_cloned()?.unwrap())?;
1391
-
1392
- tx.send((cmd, program, KillOnDrop(child), token))
1393
- .expect("Wait thread must be alive until all compilation jobs are done, otherwise we risk deadlock");
1394
- }
1395
- // Drop tx so that the wait_thread could return
1396
- drop(tx);
1397
-
1398
- return wait_thread.join().expect("wait_thread panics");
1399
-
1400
- /// Returns a suitable `jobserver::Client` used to coordinate
1401
- /// parallelism between build scripts.
1402
- fn jobserver() -> &'static jobserver::Client {
1403
- static INIT: Once = Once::new();
1404
- static mut JOBSERVER: Option<jobserver::Client> = None;
1405
-
1406
- fn _assert_sync<T: Sync>() {}
1407
- _assert_sync::<jobserver::Client>();
1408
-
1409
- unsafe {
1410
- INIT.call_once(|| {
1411
- let server = default_jobserver();
1412
- JOBSERVER = Some(server);
1413
- });
1414
- JOBSERVER.as_ref().unwrap()
1415
- }
1416
- }
1417
-
1418
- unsafe fn default_jobserver() -> jobserver::Client {
1419
- // Try to use the environmental jobserver which Cargo typically
1420
- // initializes for us...
1421
- if let Some(client) = jobserver::Client::from_env() {
1422
- return client;
1423
- }
1424
-
1425
- // ... but if that fails for whatever reason select something
1426
- // reasonable and crate a new jobserver. Use `NUM_JOBS` if set (it's
1427
- // configured by Cargo) and otherwise just fall back to a
1428
- // semi-reasonable number. Note that we could use `num_cpus` here
1429
- // but it's an extra dependency that will almost never be used, so
1430
- // it's generally not too worth it.
1431
- let mut parallelism = 4;
1432
- if let Ok(amt) = env::var("NUM_JOBS") {
1433
- if let Ok(amt) = amt.parse() {
1434
- parallelism = amt;
1435
- }
1436
- }
1437
-
1438
- // If we create our own jobserver then be sure to reserve one token
1439
- // for ourselves.
1440
- let client = jobserver::Client::new(parallelism).expect("failed to create jobserver");
1441
- client.acquire_raw().expect("failed to acquire initial");
1442
- return client;
1443
- }
1444
-
1445
- struct KillOnDrop(Child);
1446
-
1447
- impl Drop for KillOnDrop {
1448
- fn drop(&mut self) {
1449
- let child = &mut self.0;
1450
-
1451
- child.kill().ok();
1452
- }
1453
- }
1454
-
1455
- struct JobserverToken(&'static jobserver::Client);
1456
- impl Drop for JobserverToken {
1457
- fn drop(&mut self) {
1458
- let _ = self.0.acquire_raw();
1459
- }
1460
- }
1461
- }
1462
-
1463
- #[cfg(not(feature = "parallel"))]
1464
- fn compile_objects(&self, objs: &[Object], print: &PrintThread) -> Result<(), Error> {
1465
- for obj in objs {
1466
- let (mut cmd, name) = self.create_compile_object_cmd(obj)?;
1467
- run(&mut cmd, &name, print)?;
1468
- }
1469
-
1470
- Ok(())
1471
- }
1472
-
1473
- fn create_compile_object_cmd(&self, obj: &Object) -> Result<(Command, String), Error> {
1474
- let asm_ext = AsmFileExt::from_path(&obj.src);
1475
- let is_asm = asm_ext.is_some();
1476
- let target = self.get_target()?;
1477
- let msvc = target.contains("msvc");
1478
- let compiler = self.try_get_compiler()?;
1479
- let clang = compiler.family == ToolFamily::Clang;
1480
- let gnu = compiler.family == ToolFamily::Gnu;
1481
-
1482
- let (mut cmd, name) = if msvc && asm_ext == Some(AsmFileExt::DotAsm) {
1483
- self.msvc_macro_assembler()?
1484
- } else {
1485
- let mut cmd = compiler.to_command();
1486
- for &(ref a, ref b) in self.env.iter() {
1487
- cmd.env(a, b);
1488
- }
1489
- (
1490
- cmd,
1491
- compiler
1492
- .path
1493
- .file_name()
1494
- .ok_or_else(|| Error::new(ErrorKind::IOError, "Failed to get compiler path."))?
1495
- .to_string_lossy()
1496
- .into_owned(),
1497
- )
1498
- };
1499
- let is_arm = target.contains("aarch64") || target.contains("arm");
1500
- command_add_output_file(
1501
- &mut cmd, &obj.dst, self.cuda, msvc, clang, gnu, is_asm, is_arm,
1502
- );
1503
- // armasm and armasm64 don't requrie -c option
1504
- if !msvc || !is_asm || !is_arm {
1505
- cmd.arg("-c");
1506
- }
1507
- if self.cuda && self.cuda_file_count() > 1 {
1508
- cmd.arg("--device-c");
1509
- }
1510
- if is_asm {
1511
- cmd.args(self.asm_flags.iter().map(std::ops::Deref::deref));
1512
- }
1513
- if compiler.family == (ToolFamily::Msvc { clang_cl: true }) && !is_asm {
1514
- // #513: For `clang-cl`, separate flags/options from the input file.
1515
- // When cross-compiling macOS -> Windows, this avoids interpreting
1516
- // common `/Users/...` paths as the `/U` flag and triggering
1517
- // `-Wslash-u-filename` warning.
1518
- cmd.arg("--");
1519
- }
1520
- cmd.arg(&obj.src);
1521
- if cfg!(target_os = "macos") {
1522
- self.fix_env_for_apple_os(&mut cmd)?;
1523
- }
1524
-
1525
- Ok((cmd, name))
1526
- }
1527
-
1528
- /// This will return a result instead of panicing; see expand() for the complete description.
1529
- pub fn try_expand(&self) -> Result<Vec<u8>, Error> {
1530
- let compiler = self.try_get_compiler()?;
1531
- let mut cmd = compiler.to_command();
1532
- for &(ref a, ref b) in self.env.iter() {
1533
- cmd.env(a, b);
1534
- }
1535
- cmd.arg("-E");
1536
-
1537
- assert!(
1538
- self.files.len() <= 1,
1539
- "Expand may only be called for a single file"
1540
- );
1541
-
1542
- cmd.args(self.files.iter().map(std::ops::Deref::deref));
1543
-
1544
- let name = compiler
1545
- .path
1546
- .file_name()
1547
- .ok_or_else(|| Error::new(ErrorKind::IOError, "Failed to get compiler path."))?
1548
- .to_string_lossy()
1549
- .into_owned();
1550
-
1551
- Ok(run_output(&mut cmd, &name)?)
1552
- }
1553
-
1554
- /// Run the compiler, returning the macro-expanded version of the input files.
1555
- ///
1556
- /// This is only relevant for C and C++ files.
1557
- ///
1558
- /// # Panics
1559
- /// Panics if more than one file is present in the config, or if compiler
1560
- /// path has an invalid file name.
1561
- ///
1562
- /// # Example
1563
- /// ```no_run
1564
- /// let out = cc::Build::new().file("src/foo.c").expand();
1565
- /// ```
1566
- pub fn expand(&self) -> Vec<u8> {
1567
- match self.try_expand() {
1568
- Err(e) => fail(&e.message),
1569
- Ok(v) => v,
1570
- }
1571
- }
1572
-
1573
- /// Get the compiler that's in use for this configuration.
1574
- ///
1575
- /// This function will return a `Tool` which represents the culmination
1576
- /// of this configuration at a snapshot in time. The returned compiler can
1577
- /// be inspected (e.g. the path, arguments, environment) to forward along to
1578
- /// other tools, or the `to_command` method can be used to invoke the
1579
- /// compiler itself.
1580
- ///
1581
- /// This method will take into account all configuration such as debug
1582
- /// information, optimization level, include directories, defines, etc.
1583
- /// Additionally, the compiler binary in use follows the standard
1584
- /// conventions for this path, e.g. looking at the explicitly set compiler,
1585
- /// environment variables (a number of which are inspected here), and then
1586
- /// falling back to the default configuration.
1587
- ///
1588
- /// # Panics
1589
- ///
1590
- /// Panics if an error occurred while determining the architecture.
1591
- pub fn get_compiler(&self) -> Tool {
1592
- match self.try_get_compiler() {
1593
- Ok(tool) => tool,
1594
- Err(e) => fail(&e.message),
1595
- }
1596
- }
1597
-
1598
- /// Get the compiler that's in use for this configuration.
1599
- ///
1600
- /// This will return a result instead of panicing; see get_compiler() for the complete description.
1601
- pub fn try_get_compiler(&self) -> Result<Tool, Error> {
1602
- let opt_level = self.get_opt_level()?;
1603
- let target = self.get_target()?;
1604
-
1605
- let mut cmd = self.get_base_compiler()?;
1606
-
1607
- // Disable default flag generation via `no_default_flags` or environment variable
1608
- let no_defaults = self.no_default_flags || self.getenv("CRATE_CC_NO_DEFAULTS").is_some();
1609
-
1610
- if !no_defaults {
1611
- self.add_default_flags(&mut cmd, &target, &opt_level)?;
1612
- } else {
1613
- println!("Info: default compiler flags are disabled");
1614
- }
1615
-
1616
- if let Ok(flags) = self.envflags(if self.cpp { "CXXFLAGS" } else { "CFLAGS" }) {
1617
- for arg in flags {
1618
- cmd.push_cc_arg(arg.into());
1619
- }
1620
- }
1621
-
1622
- for directory in self.include_directories.iter() {
1623
- cmd.args.push("-I".into());
1624
- cmd.args.push((**directory).into());
1625
- }
1626
-
1627
- // If warnings and/or extra_warnings haven't been explicitly set,
1628
- // then we set them only if the environment doesn't already have
1629
- // CFLAGS/CXXFLAGS, since those variables presumably already contain
1630
- // the desired set of warnings flags.
1631
-
1632
- if self
1633
- .warnings
1634
- .unwrap_or(if self.has_flags() { false } else { true })
1635
- {
1636
- let wflags = cmd.family.warnings_flags().into();
1637
- cmd.push_cc_arg(wflags);
1638
- }
1639
-
1640
- if self
1641
- .extra_warnings
1642
- .unwrap_or(if self.has_flags() { false } else { true })
1643
- {
1644
- if let Some(wflags) = cmd.family.extra_warnings_flags() {
1645
- cmd.push_cc_arg(wflags.into());
1646
- }
1647
- }
1648
-
1649
- for flag in self.flags.iter() {
1650
- cmd.args.push((**flag).into());
1651
- }
1652
-
1653
- for flag in self.flags_supported.iter() {
1654
- if self.is_flag_supported(flag).unwrap_or(false) {
1655
- cmd.push_cc_arg((**flag).into());
1656
- }
1657
- }
1658
-
1659
- for &(ref key, ref value) in self.definitions.iter() {
1660
- if let Some(ref value) = *value {
1661
- cmd.args.push(format!("-D{}={}", key, value).into());
1662
- } else {
1663
- cmd.args.push(format!("-D{}", key).into());
1664
- }
1665
- }
1666
-
1667
- if self.warnings_into_errors {
1668
- let warnings_to_errors_flag = cmd.family.warnings_to_errors_flag().into();
1669
- cmd.push_cc_arg(warnings_to_errors_flag);
1670
- }
1671
-
1672
- Ok(cmd)
1673
- }
1674
-
1675
- fn add_default_flags(
1676
- &self,
1677
- cmd: &mut Tool,
1678
- target: &str,
1679
- opt_level: &str,
1680
- ) -> Result<(), Error> {
1681
- // Non-target flags
1682
- // If the flag is not conditioned on target variable, it belongs here :)
1683
- match cmd.family {
1684
- ToolFamily::Msvc { .. } => {
1685
- cmd.push_cc_arg("-nologo".into());
1686
-
1687
- let crt_flag = match self.static_crt {
1688
- Some(true) => "-MT",
1689
- Some(false) => "-MD",
1690
- None => {
1691
- let features = self.getenv("CARGO_CFG_TARGET_FEATURE");
1692
- let features = features.as_deref().unwrap_or_default();
1693
- if features.contains("crt-static") {
1694
- "-MT"
1695
- } else {
1696
- "-MD"
1697
- }
1698
- }
1699
- };
1700
- cmd.push_cc_arg(crt_flag.into());
1701
-
1702
- match &opt_level[..] {
1703
- // Msvc uses /O1 to enable all optimizations that minimize code size.
1704
- "z" | "s" | "1" => cmd.push_opt_unless_duplicate("-O1".into()),
1705
- // -O3 is a valid value for gcc and clang compilers, but not msvc. Cap to /O2.
1706
- "2" | "3" => cmd.push_opt_unless_duplicate("-O2".into()),
1707
- _ => {}
1708
- }
1709
- }
1710
- ToolFamily::Gnu | ToolFamily::Clang => {
1711
- // arm-linux-androideabi-gcc 4.8 shipped with Android NDK does
1712
- // not support '-Oz'
1713
- if opt_level == "z" && cmd.family != ToolFamily::Clang {
1714
- cmd.push_opt_unless_duplicate("-Os".into());
1715
- } else {
1716
- cmd.push_opt_unless_duplicate(format!("-O{}", opt_level).into());
1717
- }
1718
-
1719
- if cmd.family == ToolFamily::Clang && target.contains("windows") {
1720
- // Disambiguate mingw and msvc on Windows. Problem is that
1721
- // depending on the origin clang can default to a mismatchig
1722
- // run-time.
1723
- cmd.push_cc_arg(format!("--target={}", target).into());
1724
- }
1725
-
1726
- if cmd.family == ToolFamily::Clang && target.contains("android") {
1727
- // For compatibility with code that doesn't use pre-defined `__ANDROID__` macro.
1728
- // If compiler used via ndk-build or cmake (officially supported build methods)
1729
- // this macros is defined.
1730
- // See https://android.googlesource.com/platform/ndk/+/refs/heads/ndk-release-r21/build/cmake/android.toolchain.cmake#456
1731
- // https://android.googlesource.com/platform/ndk/+/refs/heads/ndk-release-r21/build/core/build-binary.mk#141
1732
- cmd.push_opt_unless_duplicate("-DANDROID".into());
1733
- }
1734
-
1735
- if !target.contains("apple-ios") && !target.contains("apple-watchos") {
1736
- cmd.push_cc_arg("-ffunction-sections".into());
1737
- cmd.push_cc_arg("-fdata-sections".into());
1738
- }
1739
- // Disable generation of PIC on bare-metal for now: rust-lld doesn't support this yet
1740
- if self.pic.unwrap_or(
1741
- !target.contains("windows")
1742
- && !target.contains("-none-")
1743
- && !target.contains("uefi"),
1744
- ) {
1745
- cmd.push_cc_arg("-fPIC".into());
1746
- // PLT only applies if code is compiled with PIC support,
1747
- // and only for ELF targets.
1748
- if target.contains("linux") && !self.use_plt.unwrap_or(true) {
1749
- cmd.push_cc_arg("-fno-plt".into());
1750
- }
1751
- }
1752
- }
1753
- }
1754
-
1755
- if self.get_debug() {
1756
- if self.cuda {
1757
- // NVCC debug flag
1758
- cmd.args.push("-G".into());
1759
- }
1760
- let family = cmd.family;
1761
- family.add_debug_flags(cmd, self.get_dwarf_version());
1762
- }
1763
-
1764
- if self.get_force_frame_pointer() {
1765
- let family = cmd.family;
1766
- family.add_force_frame_pointer(cmd);
1767
- }
1768
-
1769
- // Target flags
1770
- match cmd.family {
1771
- ToolFamily::Clang => {
1772
- if !(target.contains("android")
1773
- && android_clang_compiler_uses_target_arg_internally(&cmd.path))
1774
- {
1775
- if target.contains("darwin") {
1776
- if let Some(arch) =
1777
- map_darwin_target_from_rust_to_compiler_architecture(target)
1778
- {
1779
- cmd.args
1780
- .push(format!("--target={}-apple-darwin", arch).into());
1781
- }
1782
- } else if target.contains("macabi") {
1783
- if let Some(arch) =
1784
- map_darwin_target_from_rust_to_compiler_architecture(target)
1785
- {
1786
- cmd.args
1787
- .push(format!("--target={}-apple-ios-macabi", arch).into());
1788
- }
1789
- } else if target.contains("ios-sim") {
1790
- if let Some(arch) =
1791
- map_darwin_target_from_rust_to_compiler_architecture(target)
1792
- {
1793
- let deployment_target = env::var("IPHONEOS_DEPLOYMENT_TARGET")
1794
- .unwrap_or_else(|_| "7.0".into());
1795
- cmd.args.push(
1796
- format!(
1797
- "--target={}-apple-ios{}-simulator",
1798
- arch, deployment_target
1799
- )
1800
- .into(),
1801
- );
1802
- }
1803
- } else if target.contains("watchos-sim") {
1804
- if let Some(arch) =
1805
- map_darwin_target_from_rust_to_compiler_architecture(target)
1806
- {
1807
- let deployment_target = env::var("WATCHOS_DEPLOYMENT_TARGET")
1808
- .unwrap_or_else(|_| "5.0".into());
1809
- cmd.args.push(
1810
- format!(
1811
- "--target={}-apple-watchos{}-simulator",
1812
- arch, deployment_target
1813
- )
1814
- .into(),
1815
- );
1816
- }
1817
- } else if target.starts_with("riscv64gc-") {
1818
- cmd.args.push(
1819
- format!("--target={}", target.replace("riscv64gc", "riscv64")).into(),
1820
- );
1821
- } else if target.starts_with("riscv32gc-") {
1822
- cmd.args.push(
1823
- format!("--target={}", target.replace("riscv32gc", "riscv32")).into(),
1824
- );
1825
- } else if target.contains("uefi") {
1826
- if target.contains("x86_64") {
1827
- cmd.args.push("--target=x86_64-unknown-windows-gnu".into());
1828
- } else if target.contains("i686") {
1829
- cmd.args.push("--target=i686-unknown-windows-gnu".into())
1830
- } else if target.contains("aarch64") {
1831
- cmd.args.push("--target=aarch64-unknown-windows-gnu".into())
1832
- }
1833
- } else if target.ends_with("-freebsd") {
1834
- // FreeBSD only supports C++11 and above when compiling against libc++
1835
- // (available from FreeBSD 10 onwards). Under FreeBSD, clang uses libc++ by
1836
- // default on FreeBSD 10 and newer unless `--target` is manually passed to
1837
- // the compiler, in which case its default behavior differs:
1838
- // * If --target=xxx-unknown-freebsdX(.Y) is specified and X is greater than
1839
- // or equal to 10, clang++ uses libc++
1840
- // * If --target=xxx-unknown-freebsd is specified (without a version),
1841
- // clang++ cannot assume libc++ is available and reverts to a default of
1842
- // libstdc++ (this behavior was changed in llvm 14).
1843
- //
1844
- // This breaks C++11 (or greater) builds if targeting FreeBSD with the
1845
- // generic xxx-unknown-freebsd triple on clang 13 or below *without*
1846
- // explicitly specifying that libc++ should be used.
1847
- // When cross-compiling, we can't infer from the rust/cargo target triple
1848
- // which major version of FreeBSD we are targeting, so we need to make sure
1849
- // that libc++ is used (unless the user has explicitly specified otherwise).
1850
- // There's no compelling reason to use a different approach when compiling
1851
- // natively.
1852
- if self.cpp && self.cpp_set_stdlib.is_none() {
1853
- cmd.push_cc_arg("-stdlib=libc++".into());
1854
- }
1855
-
1856
- cmd.push_cc_arg(format!("--target={}", target).into());
1857
- } else {
1858
- cmd.push_cc_arg(format!("--target={}", target).into());
1859
- }
1860
- }
1861
- }
1862
- ToolFamily::Msvc { clang_cl } => {
1863
- // This is an undocumented flag from MSVC but helps with making
1864
- // builds more reproducible by avoiding putting timestamps into
1865
- // files.
1866
- cmd.push_cc_arg("-Brepro".into());
1867
-
1868
- if clang_cl {
1869
- if target.contains("x86_64") {
1870
- cmd.push_cc_arg("-m64".into());
1871
- } else if target.contains("86") {
1872
- cmd.push_cc_arg("-m32".into());
1873
- cmd.push_cc_arg("-arch:IA32".into());
1874
- } else {
1875
- cmd.push_cc_arg(format!("--target={}", target).into());
1876
- }
1877
- } else {
1878
- if target.contains("i586") {
1879
- cmd.push_cc_arg("-arch:IA32".into());
1880
- }
1881
- }
1882
-
1883
- // There is a check in corecrt.h that will generate a
1884
- // compilation error if
1885
- // _ARM_WINAPI_PARTITION_DESKTOP_SDK_AVAILABLE is
1886
- // not defined to 1. The check was added in Windows
1887
- // 8 days because only store apps were allowed on ARM.
1888
- // This changed with the release of Windows 10 IoT Core.
1889
- // The check will be going away in future versions of
1890
- // the SDK, but for all released versions of the
1891
- // Windows SDK it is required.
1892
- if target.contains("arm") || target.contains("thumb") {
1893
- cmd.args
1894
- .push("-D_ARM_WINAPI_PARTITION_DESKTOP_SDK_AVAILABLE=1".into());
1895
- }
1896
- }
1897
- ToolFamily::Gnu => {
1898
- if target.contains("i686") || target.contains("i586") {
1899
- cmd.args.push("-m32".into());
1900
- } else if target == "x86_64-unknown-linux-gnux32" {
1901
- cmd.args.push("-mx32".into());
1902
- } else if target.contains("x86_64") || target.contains("powerpc64") {
1903
- cmd.args.push("-m64".into());
1904
- }
1905
-
1906
- if target.contains("darwin") {
1907
- if let Some(arch) = map_darwin_target_from_rust_to_compiler_architecture(target)
1908
- {
1909
- cmd.args.push("-arch".into());
1910
- cmd.args.push(arch.into());
1911
- }
1912
- }
1913
-
1914
- if target.contains("-kmc-solid_") {
1915
- cmd.args.push("-finput-charset=utf-8".into());
1916
- }
1917
-
1918
- if self.static_flag.is_none() {
1919
- let features = self.getenv("CARGO_CFG_TARGET_FEATURE");
1920
- let features = features.as_deref().unwrap_or_default();
1921
- if features.contains("crt-static") {
1922
- cmd.args.push("-static".into());
1923
- }
1924
- }
1925
-
1926
- // armv7 targets get to use armv7 instructions
1927
- if (target.starts_with("armv7") || target.starts_with("thumbv7"))
1928
- && (target.contains("-linux-") || target.contains("-kmc-solid_"))
1929
- {
1930
- cmd.args.push("-march=armv7-a".into());
1931
-
1932
- if target.ends_with("eabihf") {
1933
- // lowest common denominator FPU
1934
- cmd.args.push("-mfpu=vfpv3-d16".into());
1935
- }
1936
- }
1937
-
1938
- // (x86 Android doesn't say "eabi")
1939
- if target.contains("-androideabi") && target.contains("v7") {
1940
- // -march=armv7-a handled above
1941
- cmd.args.push("-mthumb".into());
1942
- if !target.contains("neon") {
1943
- // On android we can guarantee some extra float instructions
1944
- // (specified in the android spec online)
1945
- // NEON guarantees even more; see below.
1946
- cmd.args.push("-mfpu=vfpv3-d16".into());
1947
- }
1948
- cmd.args.push("-mfloat-abi=softfp".into());
1949
- }
1950
-
1951
- if target.contains("neon") {
1952
- cmd.args.push("-mfpu=neon-vfpv4".into());
1953
- }
1954
-
1955
- if target.starts_with("armv4t-unknown-linux-") {
1956
- cmd.args.push("-march=armv4t".into());
1957
- cmd.args.push("-marm".into());
1958
- cmd.args.push("-mfloat-abi=soft".into());
1959
- }
1960
-
1961
- if target.starts_with("armv5te-unknown-linux-") {
1962
- cmd.args.push("-march=armv5te".into());
1963
- cmd.args.push("-marm".into());
1964
- cmd.args.push("-mfloat-abi=soft".into());
1965
- }
1966
-
1967
- // For us arm == armv6 by default
1968
- if target.starts_with("arm-unknown-linux-") {
1969
- cmd.args.push("-march=armv6".into());
1970
- cmd.args.push("-marm".into());
1971
- if target.ends_with("hf") {
1972
- cmd.args.push("-mfpu=vfp".into());
1973
- } else {
1974
- cmd.args.push("-mfloat-abi=soft".into());
1975
- }
1976
- }
1977
-
1978
- // We can guarantee some settings for FRC
1979
- if target.starts_with("arm-frc-") {
1980
- cmd.args.push("-march=armv7-a".into());
1981
- cmd.args.push("-mcpu=cortex-a9".into());
1982
- cmd.args.push("-mfpu=vfpv3".into());
1983
- cmd.args.push("-mfloat-abi=softfp".into());
1984
- cmd.args.push("-marm".into());
1985
- }
1986
-
1987
- // Turn codegen down on i586 to avoid some instructions.
1988
- if target.starts_with("i586-unknown-linux-") {
1989
- cmd.args.push("-march=pentium".into());
1990
- }
1991
-
1992
- // Set codegen level for i686 correctly
1993
- if target.starts_with("i686-unknown-linux-") {
1994
- cmd.args.push("-march=i686".into());
1995
- }
1996
-
1997
- // Looks like `musl-gcc` makes it hard for `-m32` to make its way
1998
- // all the way to the linker, so we need to actually instruct the
1999
- // linker that we're generating 32-bit executables as well. This'll
2000
- // typically only be used for build scripts which transitively use
2001
- // these flags that try to compile executables.
2002
- if target == "i686-unknown-linux-musl" || target == "i586-unknown-linux-musl" {
2003
- cmd.args.push("-Wl,-melf_i386".into());
2004
- }
2005
-
2006
- if target.starts_with("thumb") {
2007
- cmd.args.push("-mthumb".into());
2008
-
2009
- if target.ends_with("eabihf") {
2010
- cmd.args.push("-mfloat-abi=hard".into())
2011
- }
2012
- }
2013
- if target.starts_with("thumbv6m") {
2014
- cmd.args.push("-march=armv6s-m".into());
2015
- }
2016
- if target.starts_with("thumbv7em") {
2017
- cmd.args.push("-march=armv7e-m".into());
2018
-
2019
- if target.ends_with("eabihf") {
2020
- cmd.args.push("-mfpu=fpv4-sp-d16".into())
2021
- }
2022
- }
2023
- if target.starts_with("thumbv7m") {
2024
- cmd.args.push("-march=armv7-m".into());
2025
- }
2026
- if target.starts_with("thumbv8m.base") {
2027
- cmd.args.push("-march=armv8-m.base".into());
2028
- }
2029
- if target.starts_with("thumbv8m.main") {
2030
- cmd.args.push("-march=armv8-m.main".into());
2031
-
2032
- if target.ends_with("eabihf") {
2033
- cmd.args.push("-mfpu=fpv5-sp-d16".into())
2034
- }
2035
- }
2036
- if target.starts_with("armebv7r") | target.starts_with("armv7r") {
2037
- if target.starts_with("armeb") {
2038
- cmd.args.push("-mbig-endian".into());
2039
- } else {
2040
- cmd.args.push("-mlittle-endian".into());
2041
- }
2042
-
2043
- // ARM mode
2044
- cmd.args.push("-marm".into());
2045
-
2046
- // R Profile
2047
- cmd.args.push("-march=armv7-r".into());
2048
-
2049
- if target.ends_with("eabihf") {
2050
- // Calling convention
2051
- cmd.args.push("-mfloat-abi=hard".into());
2052
-
2053
- // lowest common denominator FPU
2054
- // (see Cortex-R4 technical reference manual)
2055
- cmd.args.push("-mfpu=vfpv3-d16".into())
2056
- } else {
2057
- // Calling convention
2058
- cmd.args.push("-mfloat-abi=soft".into());
2059
- }
2060
- }
2061
- if target.starts_with("armv7a") {
2062
- cmd.args.push("-march=armv7-a".into());
2063
-
2064
- if target.ends_with("eabihf") {
2065
- // lowest common denominator FPU
2066
- cmd.args.push("-mfpu=vfpv3-d16".into());
2067
- }
2068
- }
2069
- if target.starts_with("riscv32") || target.starts_with("riscv64") {
2070
- // get the 32i/32imac/32imc/64gc/64imac/... part
2071
- let mut parts = target.split('-');
2072
- if let Some(arch) = parts.next() {
2073
- let arch = &arch[5..];
2074
- if target.contains("linux") && arch.starts_with("64") {
2075
- cmd.args.push(("-march=rv64gc").into());
2076
- cmd.args.push("-mabi=lp64d".into());
2077
- } else if target.contains("freebsd") && arch.starts_with("64") {
2078
- cmd.args.push(("-march=rv64gc").into());
2079
- cmd.args.push("-mabi=lp64d".into());
2080
- } else if target.contains("netbsd") && arch.starts_with("64") {
2081
- cmd.args.push(("-march=rv64gc").into());
2082
- cmd.args.push("-mabi=lp64d".into());
2083
- } else if target.contains("openbsd") && arch.starts_with("64") {
2084
- cmd.args.push(("-march=rv64gc").into());
2085
- cmd.args.push("-mabi=lp64d".into());
2086
- } else if target.contains("linux") && arch.starts_with("32") {
2087
- cmd.args.push(("-march=rv32gc").into());
2088
- cmd.args.push("-mabi=ilp32d".into());
2089
- } else if arch.starts_with("64") {
2090
- cmd.args.push(("-march=rv".to_owned() + arch).into());
2091
- cmd.args.push("-mabi=lp64".into());
2092
- } else {
2093
- cmd.args.push(("-march=rv".to_owned() + arch).into());
2094
- cmd.args.push("-mabi=ilp32".into());
2095
- }
2096
- cmd.args.push("-mcmodel=medany".into());
2097
- }
2098
- }
2099
- }
2100
- }
2101
-
2102
- if target.contains("apple-ios") || target.contains("apple-watchos") {
2103
- self.ios_watchos_flags(cmd)?;
2104
- }
2105
-
2106
- if self.static_flag.unwrap_or(false) {
2107
- cmd.args.push("-static".into());
2108
- }
2109
- if self.shared_flag.unwrap_or(false) {
2110
- cmd.args.push("-shared".into());
2111
- }
2112
-
2113
- if self.cpp {
2114
- match (self.cpp_set_stdlib.as_ref(), cmd.family) {
2115
- (None, _) => {}
2116
- (Some(stdlib), ToolFamily::Gnu) | (Some(stdlib), ToolFamily::Clang) => {
2117
- cmd.push_cc_arg(format!("-stdlib=lib{}", stdlib).into());
2118
- }
2119
- _ => {
2120
- println!(
2121
- "cargo:warning=cpp_set_stdlib is specified, but the {:?} compiler \
2122
- does not support this option, ignored",
2123
- cmd.family
2124
- );
2125
- }
2126
- }
2127
- }
2128
-
2129
- Ok(())
2130
- }
2131
-
2132
- fn has_flags(&self) -> bool {
2133
- let flags_env_var_name = if self.cpp { "CXXFLAGS" } else { "CFLAGS" };
2134
- let flags_env_var_value = self.getenv_with_target_prefixes(flags_env_var_name);
2135
- if let Ok(_) = flags_env_var_value {
2136
- true
2137
- } else {
2138
- false
2139
- }
2140
- }
2141
-
2142
- fn msvc_macro_assembler(&self) -> Result<(Command, String), Error> {
2143
- let target = self.get_target()?;
2144
- let tool = if target.contains("x86_64") {
2145
- "ml64.exe"
2146
- } else if target.contains("arm") {
2147
- "armasm.exe"
2148
- } else if target.contains("aarch64") {
2149
- "armasm64.exe"
2150
- } else {
2151
- "ml.exe"
2152
- };
2153
- let mut cmd = windows_registry::find(&target, tool).unwrap_or_else(|| self.cmd(tool));
2154
- cmd.arg("-nologo"); // undocumented, yet working with armasm[64]
2155
- for directory in self.include_directories.iter() {
2156
- cmd.arg("-I").arg(&**directory);
2157
- }
2158
- if target.contains("aarch64") || target.contains("arm") {
2159
- if self.get_debug() {
2160
- cmd.arg("-g");
2161
- }
2162
-
2163
- println!("cargo:warning=The MSVC ARM assemblers do not support -D flags");
2164
- } else {
2165
- if self.get_debug() {
2166
- cmd.arg("-Zi");
2167
- }
2168
-
2169
- for &(ref key, ref value) in self.definitions.iter() {
2170
- if let Some(ref value) = *value {
2171
- cmd.arg(&format!("-D{}={}", key, value));
2172
- } else {
2173
- cmd.arg(&format!("-D{}", key));
2174
- }
2175
- }
2176
- }
2177
-
2178
- if target.contains("i686") || target.contains("i586") {
2179
- cmd.arg("-safeseh");
2180
- }
2181
- for flag in self.flags.iter() {
2182
- cmd.arg(&**flag);
2183
- }
2184
-
2185
- Ok((cmd, tool.to_string()))
2186
- }
2187
-
2188
- fn assemble(
2189
- &self,
2190
- lib_name: &str,
2191
- dst: &Path,
2192
- objs: &[Object],
2193
- print: &PrintThread,
2194
- ) -> Result<(), Error> {
2195
- // Delete the destination if it exists as we want to
2196
- // create on the first iteration instead of appending.
2197
- let _ = fs::remove_file(dst);
2198
-
2199
- // Add objects to the archive in limited-length batches. This helps keep
2200
- // the length of the command line within a reasonable length to avoid
2201
- // blowing system limits on limiting platforms like Windows.
2202
- let objs: Vec<_> = objs
2203
- .iter()
2204
- .map(|o| o.dst.as_path())
2205
- .chain(self.objects.iter().map(std::ops::Deref::deref))
2206
- .collect();
2207
- for chunk in objs.chunks(100) {
2208
- self.assemble_progressive(dst, chunk, print)?;
2209
- }
2210
-
2211
- if self.cuda && self.cuda_file_count() > 0 {
2212
- // Link the device-side code and add it to the target library,
2213
- // so that non-CUDA linker can link the final binary.
2214
-
2215
- let out_dir = self.get_out_dir()?;
2216
- let dlink = out_dir.join(lib_name.to_owned() + "_dlink.o");
2217
- let mut nvcc = self.get_compiler().to_command();
2218
- nvcc.arg("--device-link").arg("-o").arg(&dlink).arg(dst);
2219
- run(&mut nvcc, "nvcc", print)?;
2220
- self.assemble_progressive(dst, &[dlink.as_path()], print)?;
2221
- }
2222
-
2223
- let target = self.get_target()?;
2224
- if target.contains("msvc") {
2225
- // The Rust compiler will look for libfoo.a and foo.lib, but the
2226
- // MSVC linker will also be passed foo.lib, so be sure that both
2227
- // exist for now.
2228
-
2229
- let lib_dst = dst.with_file_name(format!("{}.lib", lib_name));
2230
- let _ = fs::remove_file(&lib_dst);
2231
- match fs::hard_link(&dst, &lib_dst).or_else(|_| {
2232
- // if hard-link fails, just copy (ignoring the number of bytes written)
2233
- fs::copy(&dst, &lib_dst).map(|_| ())
2234
- }) {
2235
- Ok(_) => (),
2236
- Err(_) => {
2237
- return Err(Error::new(
2238
- ErrorKind::IOError,
2239
- "Could not copy or create a hard-link to the generated lib file.",
2240
- ));
2241
- }
2242
- };
2243
- } else {
2244
- // Non-msvc targets (those using `ar`) need a separate step to add
2245
- // the symbol table to archives since our construction command of
2246
- // `cq` doesn't add it for us.
2247
- let (mut ar, cmd, _any_flags) = self.get_ar()?;
2248
-
2249
- // NOTE: We add `s` even if flags were passed using $ARFLAGS/ar_flag, because `s`
2250
- // here represents a _mode_, not an arbitrary flag. Further discussion of this choice
2251
- // can be seen in https://github.com/rust-lang/cc-rs/pull/763.
2252
- run(ar.arg("s").arg(dst), &cmd, print)?;
2253
- }
2254
-
2255
- Ok(())
2256
- }
2257
-
2258
- fn assemble_progressive(
2259
- &self,
2260
- dst: &Path,
2261
- objs: &[&Path],
2262
- print: &PrintThread,
2263
- ) -> Result<(), Error> {
2264
- let target = self.get_target()?;
2265
-
2266
- if target.contains("msvc") {
2267
- let (mut cmd, program, any_flags) = self.get_ar()?;
2268
- // NOTE: -out: here is an I/O flag, and so must be included even if $ARFLAGS/ar_flag is
2269
- // in use. -nologo on the other hand is just a regular flag, and one that we'll skip if
2270
- // the caller has explicitly dictated the flags they want. See
2271
- // https://github.com/rust-lang/cc-rs/pull/763 for further discussion.
2272
- let mut out = OsString::from("-out:");
2273
- out.push(dst);
2274
- cmd.arg(out);
2275
- if !any_flags {
2276
- cmd.arg("-nologo");
2277
- }
2278
- // If the library file already exists, add the library name
2279
- // as an argument to let lib.exe know we are appending the objs.
2280
- if dst.exists() {
2281
- cmd.arg(dst);
2282
- }
2283
- cmd.args(objs);
2284
- run(&mut cmd, &program, print)?;
2285
- } else {
2286
- let (mut ar, cmd, _any_flags) = self.get_ar()?;
2287
-
2288
- // Set an environment variable to tell the OSX archiver to ensure
2289
- // that all dates listed in the archive are zero, improving
2290
- // determinism of builds. AFAIK there's not really official
2291
- // documentation of this but there's a lot of references to it if
2292
- // you search google.
2293
- //
2294
- // You can reproduce this locally on a mac with:
2295
- //
2296
- // $ touch foo.c
2297
- // $ cc -c foo.c -o foo.o
2298
- //
2299
- // # Notice that these two checksums are different
2300
- // $ ar crus libfoo1.a foo.o && sleep 2 && ar crus libfoo2.a foo.o
2301
- // $ md5sum libfoo*.a
2302
- //
2303
- // # Notice that these two checksums are the same
2304
- // $ export ZERO_AR_DATE=1
2305
- // $ ar crus libfoo1.a foo.o && sleep 2 && touch foo.o && ar crus libfoo2.a foo.o
2306
- // $ md5sum libfoo*.a
2307
- //
2308
- // In any case if this doesn't end up getting read, it shouldn't
2309
- // cause that many issues!
2310
- ar.env("ZERO_AR_DATE", "1");
2311
-
2312
- // NOTE: We add cq here regardless of whether $ARFLAGS/ar_flag have been used because
2313
- // it dictates the _mode_ ar runs in, which the setter of $ARFLAGS/ar_flag can't
2314
- // dictate. See https://github.com/rust-lang/cc-rs/pull/763 for further discussion.
2315
- run(ar.arg("cq").arg(dst).args(objs), &cmd, print)?;
2316
- }
2317
-
2318
- Ok(())
2319
- }
2320
-
2321
- fn ios_watchos_flags(&self, cmd: &mut Tool) -> Result<(), Error> {
2322
- enum ArchSpec {
2323
- Device(&'static str),
2324
- Simulator(&'static str),
2325
- Catalyst(&'static str),
2326
- }
2327
-
2328
- enum Os {
2329
- Ios,
2330
- WatchOs,
2331
- }
2332
- impl Display for Os {
2333
- fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
2334
- match self {
2335
- Os::Ios => f.write_str("iOS"),
2336
- Os::WatchOs => f.write_str("WatchOS"),
2337
- }
2338
- }
2339
- }
2340
-
2341
- let target = self.get_target()?;
2342
- let os = if target.contains("-watchos") {
2343
- Os::WatchOs
2344
- } else {
2345
- Os::Ios
2346
- };
2347
-
2348
- let arch = target.split('-').nth(0).ok_or_else(|| {
2349
- Error::new(
2350
- ErrorKind::ArchitectureInvalid,
2351
- format!("Unknown architecture for {} target.", os),
2352
- )
2353
- })?;
2354
-
2355
- let is_catalyst = match target.split('-').nth(3) {
2356
- Some(v) => v == "macabi",
2357
- None => false,
2358
- };
2359
-
2360
- let is_sim = match target.split('-').nth(3) {
2361
- Some(v) => v == "sim",
2362
- None => false,
2363
- };
2364
-
2365
- let arch = if is_catalyst {
2366
- match arch {
2367
- "arm64e" => ArchSpec::Catalyst("arm64e"),
2368
- "arm64" | "aarch64" => ArchSpec::Catalyst("arm64"),
2369
- "x86_64" => ArchSpec::Catalyst("-m64"),
2370
- _ => {
2371
- return Err(Error::new(
2372
- ErrorKind::ArchitectureInvalid,
2373
- "Unknown architecture for iOS target.",
2374
- ));
2375
- }
2376
- }
2377
- } else if is_sim {
2378
- match arch {
2379
- "arm64" | "aarch64" => ArchSpec::Simulator("arm64"),
2380
- "x86_64" => ArchSpec::Simulator("-m64"),
2381
- _ => {
2382
- return Err(Error::new(
2383
- ErrorKind::ArchitectureInvalid,
2384
- "Unknown architecture for iOS simulator target.",
2385
- ));
2386
- }
2387
- }
2388
- } else {
2389
- match arch {
2390
- "arm" | "armv7" | "thumbv7" => ArchSpec::Device("armv7"),
2391
- "armv7k" => ArchSpec::Device("armv7k"),
2392
- "armv7s" | "thumbv7s" => ArchSpec::Device("armv7s"),
2393
- "arm64e" => ArchSpec::Device("arm64e"),
2394
- "arm64" | "aarch64" => ArchSpec::Device("arm64"),
2395
- "arm64_32" => ArchSpec::Device("arm64_32"),
2396
- "i386" | "i686" => ArchSpec::Simulator("-m32"),
2397
- "x86_64" => ArchSpec::Simulator("-m64"),
2398
- _ => {
2399
- return Err(Error::new(
2400
- ErrorKind::ArchitectureInvalid,
2401
- format!("Unknown architecture for {} target.", os),
2402
- ));
2403
- }
2404
- }
2405
- };
2406
-
2407
- let (sdk_prefix, sim_prefix, min_version) = match os {
2408
- Os::Ios => (
2409
- "iphone",
2410
- "ios-",
2411
- std::env::var("IPHONEOS_DEPLOYMENT_TARGET").unwrap_or_else(|_| "7.0".into()),
2412
- ),
2413
- Os::WatchOs => (
2414
- "watch",
2415
- "watch",
2416
- std::env::var("WATCHOS_DEPLOYMENT_TARGET").unwrap_or_else(|_| "2.0".into()),
2417
- ),
2418
- };
2419
-
2420
- let sdk = match arch {
2421
- ArchSpec::Device(arch) => {
2422
- cmd.args.push("-arch".into());
2423
- cmd.args.push(arch.into());
2424
- cmd.args
2425
- .push(format!("-m{}os-version-min={}", sdk_prefix, min_version).into());
2426
- format!("{}os", sdk_prefix)
2427
- }
2428
- ArchSpec::Simulator(arch) => {
2429
- if arch.starts_with('-') {
2430
- // -m32 or -m64
2431
- cmd.args.push(arch.into());
2432
- } else {
2433
- cmd.args.push("-arch".into());
2434
- cmd.args.push(arch.into());
2435
- }
2436
- cmd.args
2437
- .push(format!("-m{}simulator-version-min={}", sim_prefix, min_version).into());
2438
- format!("{}simulator", sdk_prefix)
2439
- }
2440
- ArchSpec::Catalyst(_) => "macosx".to_owned(),
2441
- };
2442
-
2443
- self.print(&format_args!("Detecting {} SDK path for {}", os, sdk));
2444
- let sdk_path = if let Some(sdkroot) = env::var_os("SDKROOT") {
2445
- sdkroot
2446
- } else {
2447
- self.apple_sdk_root(sdk.as_str())?
2448
- };
2449
-
2450
- cmd.args.push("-isysroot".into());
2451
- cmd.args.push(sdk_path);
2452
- // TODO: Remove this once Apple stops accepting apps built with Xcode 13
2453
- cmd.args.push("-fembed-bitcode".into());
2454
-
2455
- Ok(())
2456
- }
2457
-
2458
- fn cmd<P: AsRef<OsStr>>(&self, prog: P) -> Command {
2459
- let mut cmd = Command::new(prog);
2460
- for &(ref a, ref b) in self.env.iter() {
2461
- cmd.env(a, b);
2462
- }
2463
- cmd
2464
- }
2465
-
2466
- fn get_base_compiler(&self) -> Result<Tool, Error> {
2467
- if let Some(c) = &self.compiler {
2468
- return Ok(Tool::new((**c).to_owned()));
2469
- }
2470
- let host = self.get_host()?;
2471
- let target = self.get_target()?;
2472
- let target = &*target;
2473
- let (env, msvc, gnu, traditional, clang) = if self.cpp {
2474
- ("CXX", "cl.exe", "g++", "c++", "clang++")
2475
- } else {
2476
- ("CC", "cl.exe", "gcc", "cc", "clang")
2477
- };
2478
-
2479
- // On historical Solaris systems, "cc" may have been Sun Studio, which
2480
- // is not flag-compatible with "gcc". This history casts a long shadow,
2481
- // and many modern illumos distributions today ship GCC as "gcc" without
2482
- // also making it available as "cc".
2483
- let default = if host.contains("solaris") || host.contains("illumos") {
2484
- gnu
2485
- } else {
2486
- traditional
2487
- };
2488
-
2489
- let cl_exe = windows_registry::find_tool(&target, "cl.exe");
2490
-
2491
- let tool_opt: Option<Tool> = self
2492
- .env_tool(env)
2493
- .map(|(tool, wrapper, args)| {
2494
- // find the driver mode, if any
2495
- const DRIVER_MODE: &str = "--driver-mode=";
2496
- let driver_mode = args
2497
- .iter()
2498
- .find(|a| a.starts_with(DRIVER_MODE))
2499
- .map(|a| &a[DRIVER_MODE.len()..]);
2500
- // Chop off leading/trailing whitespace to work around
2501
- // semi-buggy build scripts which are shared in
2502
- // makefiles/configure scripts (where spaces are far more
2503
- // lenient)
2504
- let mut t = Tool::with_clang_driver(tool, driver_mode);
2505
- if let Some(cc_wrapper) = wrapper {
2506
- t.cc_wrapper_path = Some(PathBuf::from(cc_wrapper));
2507
- }
2508
- for arg in args {
2509
- t.cc_wrapper_args.push(arg.into());
2510
- }
2511
- t
2512
- })
2513
- .or_else(|| {
2514
- if target.contains("emscripten") {
2515
- let tool = if self.cpp { "em++" } else { "emcc" };
2516
- // Windows uses bat file so we have to be a bit more specific
2517
- if cfg!(windows) {
2518
- let mut t = Tool::new(PathBuf::from("cmd"));
2519
- t.args.push("/c".into());
2520
- t.args.push(format!("{}.bat", tool).into());
2521
- Some(t)
2522
- } else {
2523
- Some(Tool::new(PathBuf::from(tool)))
2524
- }
2525
- } else {
2526
- None
2527
- }
2528
- })
2529
- .or_else(|| cl_exe.clone());
2530
-
2531
- let tool = match tool_opt {
2532
- Some(t) => t,
2533
- None => {
2534
- let compiler = if host.contains("windows") && target.contains("windows") {
2535
- if target.contains("msvc") {
2536
- msvc.to_string()
2537
- } else {
2538
- let cc = if target.contains("llvm") { clang } else { gnu };
2539
- format!("{}.exe", cc)
2540
- }
2541
- } else if target.contains("apple-ios") {
2542
- clang.to_string()
2543
- } else if target.contains("apple-watchos") {
2544
- clang.to_string()
2545
- } else if target.contains("android") {
2546
- autodetect_android_compiler(&target, &host, gnu, clang)
2547
- } else if target.contains("cloudabi") {
2548
- format!("{}-{}", target, traditional)
2549
- } else if target == "wasm32-wasi"
2550
- || target == "wasm32-unknown-wasi"
2551
- || target == "wasm32-unknown-unknown"
2552
- {
2553
- "clang".to_string()
2554
- } else if target.contains("vxworks") {
2555
- if self.cpp {
2556
- "wr-c++".to_string()
2557
- } else {
2558
- "wr-cc".to_string()
2559
- }
2560
- } else if target.starts_with("armv7a-kmc-solid_") {
2561
- format!("arm-kmc-eabi-{}", gnu)
2562
- } else if target.starts_with("aarch64-kmc-solid_") {
2563
- format!("aarch64-kmc-elf-{}", gnu)
2564
- } else if &*self.get_host()? != target {
2565
- let prefix = self.prefix_for_target(&target);
2566
- match prefix {
2567
- Some(prefix) => {
2568
- let cc = if target.contains("llvm") { clang } else { gnu };
2569
- format!("{}-{}", prefix, cc)
2570
- }
2571
- None => default.to_string(),
2572
- }
2573
- } else {
2574
- default.to_string()
2575
- };
2576
-
2577
- let mut t = Tool::new(PathBuf::from(compiler));
2578
- if let Some(cc_wrapper) = Self::rustc_wrapper_fallback() {
2579
- t.cc_wrapper_path = Some(PathBuf::from(cc_wrapper));
2580
- }
2581
- t
2582
- }
2583
- };
2584
-
2585
- let mut tool = if self.cuda {
2586
- assert!(
2587
- tool.args.is_empty(),
2588
- "CUDA compilation currently assumes empty pre-existing args"
2589
- );
2590
- let nvcc = match self.getenv_with_target_prefixes("NVCC") {
2591
- Err(_) => PathBuf::from("nvcc"),
2592
- Ok(nvcc) => PathBuf::from(&*nvcc),
2593
- };
2594
- let mut nvcc_tool = Tool::with_features(nvcc, None, self.cuda);
2595
- nvcc_tool
2596
- .args
2597
- .push(format!("-ccbin={}", tool.path.display()).into());
2598
- nvcc_tool.family = tool.family;
2599
- nvcc_tool
2600
- } else {
2601
- tool
2602
- };
2603
-
2604
- // New "standalone" C/C++ cross-compiler executables from recent Android NDK
2605
- // are just shell scripts that call main clang binary (from Android NDK) with
2606
- // proper `--target` argument.
2607
- //
2608
- // For example, armv7a-linux-androideabi16-clang passes
2609
- // `--target=armv7a-linux-androideabi16` to clang.
2610
- //
2611
- // As the shell script calls the main clang binary, the command line limit length
2612
- // on Windows is restricted to around 8k characters instead of around 32k characters.
2613
- // To remove this limit, we call the main clang binary directly and construct the
2614
- // `--target=` ourselves.
2615
- if host.contains("windows") && android_clang_compiler_uses_target_arg_internally(&tool.path)
2616
- {
2617
- if let Some(path) = tool.path.file_name() {
2618
- let file_name = path.to_str().unwrap().to_owned();
2619
- let (target, clang) = file_name.split_at(file_name.rfind("-").unwrap());
2620
-
2621
- tool.path.set_file_name(clang.trim_start_matches("-"));
2622
- tool.path.set_extension("exe");
2623
- tool.args.push(format!("--target={}", target).into());
2624
-
2625
- // Additionally, shell scripts for target i686-linux-android versions 16 to 24
2626
- // pass the `mstackrealign` option so we do that here as well.
2627
- if target.contains("i686-linux-android") {
2628
- let (_, version) = target.split_at(target.rfind("d").unwrap() + 1);
2629
- if let Ok(version) = version.parse::<u32>() {
2630
- if version > 15 && version < 25 {
2631
- tool.args.push("-mstackrealign".into());
2632
- }
2633
- }
2634
- }
2635
- };
2636
- }
2637
-
2638
- // If we found `cl.exe` in our environment, the tool we're returning is
2639
- // an MSVC-like tool, *and* no env vars were set then set env vars for
2640
- // the tool that we're returning.
2641
- //
2642
- // Env vars are needed for things like `link.exe` being put into PATH as
2643
- // well as header include paths sometimes. These paths are automatically
2644
- // included by default but if the `CC` or `CXX` env vars are set these
2645
- // won't be used. This'll ensure that when the env vars are used to
2646
- // configure for invocations like `clang-cl` we still get a "works out
2647
- // of the box" experience.
2648
- if let Some(cl_exe) = cl_exe {
2649
- if tool.family == (ToolFamily::Msvc { clang_cl: true })
2650
- && tool.env.len() == 0
2651
- && target.contains("msvc")
2652
- {
2653
- for &(ref k, ref v) in cl_exe.env.iter() {
2654
- tool.env.push((k.to_owned(), v.to_owned()));
2655
- }
2656
- }
2657
- }
2658
-
2659
- if target.contains("msvc") && tool.family == ToolFamily::Gnu {
2660
- println!("cargo:warning=GNU compiler is not supported for this target");
2661
- }
2662
-
2663
- Ok(tool)
2664
- }
2665
-
2666
- /// Returns a fallback `cc_compiler_wrapper` by introspecting `RUSTC_WRAPPER`
2667
- fn rustc_wrapper_fallback() -> Option<String> {
2668
- // No explicit CC wrapper was detected, but check if RUSTC_WRAPPER
2669
- // is defined and is a build accelerator that is compatible with
2670
- // C/C++ compilers (e.g. sccache)
2671
- const VALID_WRAPPERS: &[&'static str] = &["sccache", "cachepot"];
2672
-
2673
- let rustc_wrapper = std::env::var_os("RUSTC_WRAPPER")?;
2674
- let wrapper_path = Path::new(&rustc_wrapper);
2675
- let wrapper_stem = wrapper_path.file_stem()?;
2676
-
2677
- if VALID_WRAPPERS.contains(&wrapper_stem.to_str()?) {
2678
- Some(rustc_wrapper.to_str()?.to_owned())
2679
- } else {
2680
- None
2681
- }
2682
- }
2683
-
2684
- /// Returns compiler path, optional modifier name from whitelist, and arguments vec
2685
- fn env_tool(&self, name: &str) -> Option<(PathBuf, Option<String>, Vec<String>)> {
2686
- let tool = match self.getenv_with_target_prefixes(name) {
2687
- Ok(tool) => tool,
2688
- Err(_) => return None,
2689
- };
2690
-
2691
- // If this is an exact path on the filesystem we don't want to do any
2692
- // interpretation at all, just pass it on through. This'll hopefully get
2693
- // us to support spaces-in-paths.
2694
- if Path::new(&*tool).exists() {
2695
- return Some((PathBuf::from(&*tool), None, Vec::new()));
2696
- }
2697
-
2698
- // Ok now we want to handle a couple of scenarios. We'll assume from
2699
- // here on out that spaces are splitting separate arguments. Two major
2700
- // features we want to support are:
2701
- //
2702
- // CC='sccache cc'
2703
- //
2704
- // aka using `sccache` or any other wrapper/caching-like-thing for
2705
- // compilations. We want to know what the actual compiler is still,
2706
- // though, because our `Tool` API support introspection of it to see
2707
- // what compiler is in use.
2708
- //
2709
- // additionally we want to support
2710
- //
2711
- // CC='cc -flag'
2712
- //
2713
- // where the CC env var is used to also pass default flags to the C
2714
- // compiler.
2715
- //
2716
- // It's true that everything here is a bit of a pain, but apparently if
2717
- // you're not literally make or bash then you get a lot of bug reports.
2718
- let known_wrappers = ["ccache", "distcc", "sccache", "icecc", "cachepot"];
2719
-
2720
- let mut parts = tool.split_whitespace();
2721
- let maybe_wrapper = match parts.next() {
2722
- Some(s) => s,
2723
- None => return None,
2724
- };
2725
-
2726
- let file_stem = Path::new(maybe_wrapper)
2727
- .file_stem()
2728
- .unwrap()
2729
- .to_str()
2730
- .unwrap();
2731
- if known_wrappers.contains(&file_stem) {
2732
- if let Some(compiler) = parts.next() {
2733
- return Some((
2734
- compiler.into(),
2735
- Some(maybe_wrapper.to_string()),
2736
- parts.map(|s| s.to_string()).collect(),
2737
- ));
2738
- }
2739
- }
2740
-
2741
- Some((
2742
- maybe_wrapper.into(),
2743
- Self::rustc_wrapper_fallback(),
2744
- parts.map(|s| s.to_string()).collect(),
2745
- ))
2746
- }
2747
-
2748
- /// Returns the C++ standard library:
2749
- /// 1. If [cpp_link_stdlib](cc::Build::cpp_link_stdlib) is set, uses its value.
2750
- /// 2. Else if the `CXXSTDLIB` environment variable is set, uses its value.
2751
- /// 3. Else the default is `libc++` for OS X and BSDs, `libc++_shared` for Android,
2752
- /// `None` for MSVC and `libstdc++` for anything else.
2753
- fn get_cpp_link_stdlib(&self) -> Result<Option<String>, Error> {
2754
- match &self.cpp_link_stdlib {
2755
- Some(s) => Ok(s.as_ref().map(|s| (*s).to_string())),
2756
- None => {
2757
- if let Ok(stdlib) = self.getenv_with_target_prefixes("CXXSTDLIB") {
2758
- if stdlib.is_empty() {
2759
- Ok(None)
2760
- } else {
2761
- Ok(Some(stdlib.to_string()))
2762
- }
2763
- } else {
2764
- let target = self.get_target()?;
2765
- if target.contains("msvc") {
2766
- Ok(None)
2767
- } else if target.contains("apple") {
2768
- Ok(Some("c++".to_string()))
2769
- } else if target.contains("freebsd") {
2770
- Ok(Some("c++".to_string()))
2771
- } else if target.contains("openbsd") {
2772
- Ok(Some("c++".to_string()))
2773
- } else if target.contains("aix") {
2774
- Ok(Some("c++".to_string()))
2775
- } else if target.contains("android") {
2776
- Ok(Some("c++_shared".to_string()))
2777
- } else {
2778
- Ok(Some("stdc++".to_string()))
2779
- }
2780
- }
2781
- }
2782
- }
2783
- }
2784
-
2785
- fn get_ar(&self) -> Result<(Command, String, bool), Error> {
2786
- self.try_get_archiver_and_flags()
2787
- }
2788
-
2789
- /// Get the archiver (ar) that's in use for this configuration.
2790
- ///
2791
- /// You can use [`Command::get_program`] to get just the path to the command.
2792
- ///
2793
- /// This method will take into account all configuration such as debug
2794
- /// information, optimization level, include directories, defines, etc.
2795
- /// Additionally, the compiler binary in use follows the standard
2796
- /// conventions for this path, e.g. looking at the explicitly set compiler,
2797
- /// environment variables (a number of which are inspected here), and then
2798
- /// falling back to the default configuration.
2799
- ///
2800
- /// # Panics
2801
- ///
2802
- /// Panics if an error occurred while determining the architecture.
2803
- pub fn get_archiver(&self) -> Command {
2804
- match self.try_get_archiver() {
2805
- Ok(tool) => tool,
2806
- Err(e) => fail(&e.message),
2807
- }
2808
- }
2809
-
2810
- /// Get the archiver that's in use for this configuration.
2811
- ///
2812
- /// This will return a result instead of panicing;
2813
- /// see [`get_archiver()`] for the complete description.
2814
- pub fn try_get_archiver(&self) -> Result<Command, Error> {
2815
- Ok(self.try_get_archiver_and_flags()?.0)
2816
- }
2817
-
2818
- fn try_get_archiver_and_flags(&self) -> Result<(Command, String, bool), Error> {
2819
- let (mut cmd, name) = self.get_base_archiver()?;
2820
- let mut any_flags = false;
2821
- if let Ok(flags) = self.envflags("ARFLAGS") {
2822
- any_flags = any_flags | !flags.is_empty();
2823
- cmd.args(flags);
2824
- }
2825
- for flag in &self.ar_flags {
2826
- any_flags = true;
2827
- cmd.arg(&**flag);
2828
- }
2829
- Ok((cmd, name, any_flags))
2830
- }
2831
-
2832
- fn get_base_archiver(&self) -> Result<(Command, String), Error> {
2833
- if let Some(ref a) = self.archiver {
2834
- return Ok((self.cmd(&**a), a.to_string_lossy().into_owned()));
2835
- }
2836
-
2837
- self.get_base_archiver_variant("AR", "ar")
2838
- }
2839
-
2840
- /// Get the ranlib that's in use for this configuration.
2841
- ///
2842
- /// You can use [`Command::get_program`] to get just the path to the command.
2843
- ///
2844
- /// This method will take into account all configuration such as debug
2845
- /// information, optimization level, include directories, defines, etc.
2846
- /// Additionally, the compiler binary in use follows the standard
2847
- /// conventions for this path, e.g. looking at the explicitly set compiler,
2848
- /// environment variables (a number of which are inspected here), and then
2849
- /// falling back to the default configuration.
2850
- ///
2851
- /// # Panics
2852
- ///
2853
- /// Panics if an error occurred while determining the architecture.
2854
- pub fn get_ranlib(&self) -> Command {
2855
- match self.try_get_ranlib() {
2856
- Ok(tool) => tool,
2857
- Err(e) => fail(&e.message),
2858
- }
2859
- }
2860
-
2861
- /// Get the ranlib that's in use for this configuration.
2862
- ///
2863
- /// This will return a result instead of panicing;
2864
- /// see [`get_ranlib()`] for the complete description.
2865
- pub fn try_get_ranlib(&self) -> Result<Command, Error> {
2866
- let mut cmd = self.get_base_ranlib()?;
2867
- if let Ok(flags) = self.envflags("RANLIBFLAGS") {
2868
- cmd.args(flags);
2869
- }
2870
- Ok(cmd)
2871
- }
2872
-
2873
- fn get_base_ranlib(&self) -> Result<Command, Error> {
2874
- if let Some(ref r) = self.ranlib {
2875
- return Ok(self.cmd(&**r));
2876
- }
2877
-
2878
- Ok(self.get_base_archiver_variant("RANLIB", "ranlib")?.0)
2879
- }
2880
-
2881
- fn get_base_archiver_variant(&self, env: &str, tool: &str) -> Result<(Command, String), Error> {
2882
- let target = self.get_target()?;
2883
- let mut name = String::new();
2884
- let tool_opt: Option<Command> = self
2885
- .env_tool(env)
2886
- .map(|(tool, _wrapper, args)| {
2887
- let mut cmd = self.cmd(tool);
2888
- cmd.args(args);
2889
- cmd
2890
- })
2891
- .or_else(|| {
2892
- if target.contains("emscripten") {
2893
- // Windows use bat files so we have to be a bit more specific
2894
- if cfg!(windows) {
2895
- let mut cmd = self.cmd("cmd");
2896
- name = format!("em{}.bat", tool);
2897
- cmd.arg("/c").arg(&name);
2898
- Some(cmd)
2899
- } else {
2900
- name = format!("em{}", tool);
2901
- Some(self.cmd(&name))
2902
- }
2903
- } else if target.starts_with("wasm32") {
2904
- // Formally speaking one should be able to use this approach,
2905
- // parsing -print-search-dirs output, to cover all clang targets,
2906
- // including Android SDKs and other cross-compilation scenarios...
2907
- // And even extend it to gcc targets by seaching for "ar" instead
2908
- // of "llvm-ar"...
2909
- let compiler = self.get_base_compiler().ok()?;
2910
- if compiler.family == ToolFamily::Clang {
2911
- name = format!("llvm-{}", tool);
2912
- search_programs(&mut self.cmd(&compiler.path), &name)
2913
- .map(|name| self.cmd(&name))
2914
- } else {
2915
- None
2916
- }
2917
- } else {
2918
- None
2919
- }
2920
- });
2921
-
2922
- let default = tool.to_string();
2923
- let tool = match tool_opt {
2924
- Some(t) => t,
2925
- None => {
2926
- if target.contains("android") {
2927
- name = format!("{}-{}", target.replace("armv7", "arm"), tool);
2928
- self.cmd(&name)
2929
- } else if target.contains("msvc") {
2930
- // NOTE: There isn't really a ranlib on msvc, so arguably we should return
2931
- // `None` somehow here. But in general, callers will already have to be aware
2932
- // of not running ranlib on Windows anyway, so it feels okay to return lib.exe
2933
- // here.
2934
-
2935
- let compiler = self.get_base_compiler()?;
2936
- let mut lib = String::new();
2937
- if compiler.family == (ToolFamily::Msvc { clang_cl: true }) {
2938
- // See if there is 'llvm-lib' next to 'clang-cl'
2939
- // Another possibility could be to see if there is 'clang'
2940
- // next to 'clang-cl' and use 'search_programs()' to locate
2941
- // 'llvm-lib'. This is because 'clang-cl' doesn't support
2942
- // the -print-search-dirs option.
2943
- if let Some(mut cmd) = which(&compiler.path, None) {
2944
- cmd.pop();
2945
- cmd.push("llvm-lib.exe");
2946
- if let Some(llvm_lib) = which(&cmd, None) {
2947
- lib = llvm_lib.to_str().unwrap().to_owned();
2948
- }
2949
- }
2950
- }
2951
-
2952
- if lib.is_empty() {
2953
- name = String::from("lib.exe");
2954
- match windows_registry::find(&target, "lib.exe") {
2955
- Some(t) => t,
2956
- None => self.cmd("lib.exe"),
2957
- }
2958
- } else {
2959
- name = lib;
2960
- self.cmd(&name)
2961
- }
2962
- } else if target.contains("illumos") {
2963
- // The default 'ar' on illumos uses a non-standard flags,
2964
- // but the OS comes bundled with a GNU-compatible variant.
2965
- //
2966
- // Use the GNU-variant to match other Unix systems.
2967
- name = format!("g{}", tool);
2968
- self.cmd(&name)
2969
- } else if self.get_host()? != target {
2970
- match self.prefix_for_target(&target) {
2971
- Some(p) => {
2972
- // GCC uses $target-gcc-ar, whereas binutils uses $target-ar -- try both.
2973
- // Prefer -ar if it exists, as builds of `-gcc-ar` have been observed to be
2974
- // outright broken (such as when targetting freebsd with `--disable-lto`
2975
- // toolchain where the archiver attempts to load the LTO plugin anyway but
2976
- // fails to find one).
2977
- //
2978
- // The same applies to ranlib.
2979
- let mut chosen = default;
2980
- for &infix in &["", "-gcc"] {
2981
- let target_p = format!("{}{}-{}", p, infix, tool);
2982
- if Command::new(&target_p).output().is_ok() {
2983
- chosen = target_p;
2984
- break;
2985
- }
2986
- }
2987
- name = chosen;
2988
- self.cmd(&name)
2989
- }
2990
- None => {
2991
- name = default;
2992
- self.cmd(&name)
2993
- }
2994
- }
2995
- } else {
2996
- name = default;
2997
- self.cmd(&name)
2998
- }
2999
- }
3000
- };
3001
-
3002
- Ok((tool, name))
3003
- }
3004
-
3005
- fn prefix_for_target(&self, target: &str) -> Option<String> {
3006
- // Put aside RUSTC_LINKER's prefix to be used as second choice, after CROSS_COMPILE
3007
- let linker_prefix = self
3008
- .getenv("RUSTC_LINKER")
3009
- .and_then(|var| var.strip_suffix("-gcc").map(str::to_string));
3010
- // CROSS_COMPILE is of the form: "arm-linux-gnueabi-"
3011
- let cc_env = self.getenv("CROSS_COMPILE");
3012
- let cross_compile = cc_env.as_ref().map(|s| s.trim_end_matches('-').to_owned());
3013
- cross_compile.or(linker_prefix).or(match &target[..] {
3014
- // Note: there is no `aarch64-pc-windows-gnu` target, only `-gnullvm`
3015
- "aarch64-pc-windows-gnullvm" => Some("aarch64-w64-mingw32"),
3016
- "aarch64-uwp-windows-gnu" => Some("aarch64-w64-mingw32"),
3017
- "aarch64-unknown-linux-gnu" => Some("aarch64-linux-gnu"),
3018
- "aarch64-unknown-linux-musl" => Some("aarch64-linux-musl"),
3019
- "aarch64-unknown-netbsd" => Some("aarch64--netbsd"),
3020
- "arm-unknown-linux-gnueabi" => Some("arm-linux-gnueabi"),
3021
- "armv4t-unknown-linux-gnueabi" => Some("arm-linux-gnueabi"),
3022
- "armv5te-unknown-linux-gnueabi" => Some("arm-linux-gnueabi"),
3023
- "armv5te-unknown-linux-musleabi" => Some("arm-linux-gnueabi"),
3024
- "arm-frc-linux-gnueabi" => Some("arm-frc-linux-gnueabi"),
3025
- "arm-unknown-linux-gnueabihf" => Some("arm-linux-gnueabihf"),
3026
- "arm-unknown-linux-musleabi" => Some("arm-linux-musleabi"),
3027
- "arm-unknown-linux-musleabihf" => Some("arm-linux-musleabihf"),
3028
- "arm-unknown-netbsd-eabi" => Some("arm--netbsdelf-eabi"),
3029
- "armv6-unknown-netbsd-eabihf" => Some("armv6--netbsdelf-eabihf"),
3030
- "armv7-unknown-linux-gnueabi" => Some("arm-linux-gnueabi"),
3031
- "armv7-unknown-linux-gnueabihf" => Some("arm-linux-gnueabihf"),
3032
- "armv7-unknown-linux-musleabihf" => Some("arm-linux-musleabihf"),
3033
- "armv7neon-unknown-linux-gnueabihf" => Some("arm-linux-gnueabihf"),
3034
- "armv7neon-unknown-linux-musleabihf" => Some("arm-linux-musleabihf"),
3035
- "thumbv7-unknown-linux-gnueabihf" => Some("arm-linux-gnueabihf"),
3036
- "thumbv7-unknown-linux-musleabihf" => Some("arm-linux-musleabihf"),
3037
- "thumbv7neon-unknown-linux-gnueabihf" => Some("arm-linux-gnueabihf"),
3038
- "thumbv7neon-unknown-linux-musleabihf" => Some("arm-linux-musleabihf"),
3039
- "armv7-unknown-netbsd-eabihf" => Some("armv7--netbsdelf-eabihf"),
3040
- "hexagon-unknown-linux-musl" => Some("hexagon-linux-musl"),
3041
- "i586-unknown-linux-musl" => Some("musl"),
3042
- "i686-pc-windows-gnu" => Some("i686-w64-mingw32"),
3043
- "i686-uwp-windows-gnu" => Some("i686-w64-mingw32"),
3044
- "i686-unknown-linux-gnu" => self.find_working_gnu_prefix(&[
3045
- "i686-linux-gnu",
3046
- "x86_64-linux-gnu", // transparently support gcc-multilib
3047
- ]), // explicit None if not found, so caller knows to fall back
3048
- "i686-unknown-linux-musl" => Some("musl"),
3049
- "i686-unknown-netbsd" => Some("i486--netbsdelf"),
3050
- "loongarch64-unknown-linux-gnu" => Some("loongarch64-linux-gnu"),
3051
- "mips-unknown-linux-gnu" => Some("mips-linux-gnu"),
3052
- "mips-unknown-linux-musl" => Some("mips-linux-musl"),
3053
- "mipsel-unknown-linux-gnu" => Some("mipsel-linux-gnu"),
3054
- "mipsel-unknown-linux-musl" => Some("mipsel-linux-musl"),
3055
- "mips64-unknown-linux-gnuabi64" => Some("mips64-linux-gnuabi64"),
3056
- "mips64el-unknown-linux-gnuabi64" => Some("mips64el-linux-gnuabi64"),
3057
- "mipsisa32r6-unknown-linux-gnu" => Some("mipsisa32r6-linux-gnu"),
3058
- "mipsisa32r6el-unknown-linux-gnu" => Some("mipsisa32r6el-linux-gnu"),
3059
- "mipsisa64r6-unknown-linux-gnuabi64" => Some("mipsisa64r6-linux-gnuabi64"),
3060
- "mipsisa64r6el-unknown-linux-gnuabi64" => Some("mipsisa64r6el-linux-gnuabi64"),
3061
- "powerpc-unknown-linux-gnu" => Some("powerpc-linux-gnu"),
3062
- "powerpc-unknown-linux-gnuspe" => Some("powerpc-linux-gnuspe"),
3063
- "powerpc-unknown-netbsd" => Some("powerpc--netbsd"),
3064
- "powerpc64-unknown-linux-gnu" => Some("powerpc-linux-gnu"),
3065
- "powerpc64le-unknown-linux-gnu" => Some("powerpc64le-linux-gnu"),
3066
- "riscv32i-unknown-none-elf" => self.find_working_gnu_prefix(&[
3067
- "riscv32-unknown-elf",
3068
- "riscv64-unknown-elf",
3069
- "riscv-none-embed",
3070
- ]),
3071
- "riscv32imac-unknown-none-elf" => self.find_working_gnu_prefix(&[
3072
- "riscv32-unknown-elf",
3073
- "riscv64-unknown-elf",
3074
- "riscv-none-embed",
3075
- ]),
3076
- "riscv32imac-unknown-xous-elf" => self.find_working_gnu_prefix(&[
3077
- "riscv32-unknown-elf",
3078
- "riscv64-unknown-elf",
3079
- "riscv-none-embed",
3080
- ]),
3081
- "riscv32imc-esp-espidf" => Some("riscv32-esp-elf"),
3082
- "riscv32imc-unknown-none-elf" => self.find_working_gnu_prefix(&[
3083
- "riscv32-unknown-elf",
3084
- "riscv64-unknown-elf",
3085
- "riscv-none-embed",
3086
- ]),
3087
- "riscv64gc-unknown-none-elf" => self.find_working_gnu_prefix(&[
3088
- "riscv64-unknown-elf",
3089
- "riscv32-unknown-elf",
3090
- "riscv-none-embed",
3091
- ]),
3092
- "riscv64imac-unknown-none-elf" => self.find_working_gnu_prefix(&[
3093
- "riscv64-unknown-elf",
3094
- "riscv32-unknown-elf",
3095
- "riscv-none-embed",
3096
- ]),
3097
- "riscv64gc-unknown-linux-gnu" => Some("riscv64-linux-gnu"),
3098
- "riscv32gc-unknown-linux-gnu" => Some("riscv32-linux-gnu"),
3099
- "riscv64gc-unknown-linux-musl" => Some("riscv64-linux-musl"),
3100
- "riscv32gc-unknown-linux-musl" => Some("riscv32-linux-musl"),
3101
- "riscv64gc-unknown-netbsd" => Some("riscv64--netbsd"),
3102
- "s390x-unknown-linux-gnu" => Some("s390x-linux-gnu"),
3103
- "sparc-unknown-linux-gnu" => Some("sparc-linux-gnu"),
3104
- "sparc64-unknown-linux-gnu" => Some("sparc64-linux-gnu"),
3105
- "sparc64-unknown-netbsd" => Some("sparc64--netbsd"),
3106
- "sparcv9-sun-solaris" => Some("sparcv9-sun-solaris"),
3107
- "armv7a-none-eabi" => Some("arm-none-eabi"),
3108
- "armv7a-none-eabihf" => Some("arm-none-eabi"),
3109
- "armebv7r-none-eabi" => Some("arm-none-eabi"),
3110
- "armebv7r-none-eabihf" => Some("arm-none-eabi"),
3111
- "armv7r-none-eabi" => Some("arm-none-eabi"),
3112
- "armv7r-none-eabihf" => Some("arm-none-eabi"),
3113
- "thumbv6m-none-eabi" => Some("arm-none-eabi"),
3114
- "thumbv7em-none-eabi" => Some("arm-none-eabi"),
3115
- "thumbv7em-none-eabihf" => Some("arm-none-eabi"),
3116
- "thumbv7m-none-eabi" => Some("arm-none-eabi"),
3117
- "thumbv8m.base-none-eabi" => Some("arm-none-eabi"),
3118
- "thumbv8m.main-none-eabi" => Some("arm-none-eabi"),
3119
- "thumbv8m.main-none-eabihf" => Some("arm-none-eabi"),
3120
- "x86_64-pc-windows-gnu" => Some("x86_64-w64-mingw32"),
3121
- "x86_64-pc-windows-gnullvm" => Some("x86_64-w64-mingw32"),
3122
- "x86_64-uwp-windows-gnu" => Some("x86_64-w64-mingw32"),
3123
- "x86_64-rumprun-netbsd" => Some("x86_64-rumprun-netbsd"),
3124
- "x86_64-unknown-linux-gnu" => self.find_working_gnu_prefix(&[
3125
- "x86_64-linux-gnu", // rustfmt wrap
3126
- ]), // explicit None if not found, so caller knows to fall back
3127
- "x86_64-unknown-linux-musl" => Some("musl"),
3128
- "x86_64-unknown-netbsd" => Some("x86_64--netbsd"),
3129
- _ => None,
3130
- }
3131
- .map(|x| x.to_owned()))
3132
- }
3133
-
3134
- /// Some platforms have multiple, compatible, canonical prefixes. Look through
3135
- /// each possible prefix for a compiler that exists and return it. The prefixes
3136
- /// should be ordered from most-likely to least-likely.
3137
- fn find_working_gnu_prefix(&self, prefixes: &[&'static str]) -> Option<&'static str> {
3138
- let suffix = if self.cpp { "-g++" } else { "-gcc" };
3139
- let extension = std::env::consts::EXE_SUFFIX;
3140
-
3141
- // Loop through PATH entries searching for each toolchain. This ensures that we
3142
- // are more likely to discover the toolchain early on, because chances are good
3143
- // that the desired toolchain is in one of the higher-priority paths.
3144
- env::var_os("PATH")
3145
- .as_ref()
3146
- .and_then(|path_entries| {
3147
- env::split_paths(path_entries).find_map(|path_entry| {
3148
- for prefix in prefixes {
3149
- let target_compiler = format!("{}{}{}", prefix, suffix, extension);
3150
- if path_entry.join(&target_compiler).exists() {
3151
- return Some(prefix);
3152
- }
3153
- }
3154
- None
3155
- })
3156
- })
3157
- .map(|prefix| *prefix)
3158
- .or_else(||
3159
- // If no toolchain was found, provide the first toolchain that was passed in.
3160
- // This toolchain has been shown not to exist, however it will appear in the
3161
- // error that is shown to the user which should make it easier to search for
3162
- // where it should be obtained.
3163
- prefixes.first().map(|prefix| *prefix))
3164
- }
3165
-
3166
- fn get_target(&self) -> Result<Arc<str>, Error> {
3167
- match &self.target {
3168
- Some(t) => Ok(t.clone()),
3169
- None => self.getenv_unwrap("TARGET"),
3170
- }
3171
- }
3172
-
3173
- fn get_host(&self) -> Result<Arc<str>, Error> {
3174
- match &self.host {
3175
- Some(h) => Ok(h.clone()),
3176
- None => self.getenv_unwrap("HOST"),
3177
- }
3178
- }
3179
-
3180
- fn get_opt_level(&self) -> Result<Arc<str>, Error> {
3181
- match &self.opt_level {
3182
- Some(ol) => Ok(ol.clone()),
3183
- None => self.getenv_unwrap("OPT_LEVEL"),
3184
- }
3185
- }
3186
-
3187
- fn get_debug(&self) -> bool {
3188
- self.debug.unwrap_or_else(|| match self.getenv("DEBUG") {
3189
- Some(s) => &*s != "false",
3190
- None => false,
3191
- })
3192
- }
3193
-
3194
- fn get_dwarf_version(&self) -> Option<u32> {
3195
- // Tentatively matches the DWARF version defaults as of rustc 1.62.
3196
- let target = self.get_target().ok()?;
3197
- if target.contains("android")
3198
- || target.contains("apple")
3199
- || target.contains("dragonfly")
3200
- || target.contains("freebsd")
3201
- || target.contains("netbsd")
3202
- || target.contains("openbsd")
3203
- || target.contains("windows-gnu")
3204
- {
3205
- Some(2)
3206
- } else if target.contains("linux") {
3207
- Some(4)
3208
- } else {
3209
- None
3210
- }
3211
- }
3212
-
3213
- fn get_force_frame_pointer(&self) -> bool {
3214
- self.force_frame_pointer.unwrap_or_else(|| self.get_debug())
3215
- }
3216
-
3217
- fn get_out_dir(&self) -> Result<Cow<'_, Path>, Error> {
3218
- match &self.out_dir {
3219
- Some(p) => Ok(Cow::Borrowed(&**p)),
3220
- None => env::var_os("OUT_DIR")
3221
- .map(PathBuf::from)
3222
- .map(Cow::Owned)
3223
- .ok_or_else(|| {
3224
- Error::new(
3225
- ErrorKind::EnvVarNotFound,
3226
- "Environment variable OUT_DIR not defined.",
3227
- )
3228
- }),
3229
- }
3230
- }
3231
-
3232
- fn getenv(&self, v: &str) -> Option<Arc<str>> {
3233
- // Returns true for environment variables cargo sets for build scripts:
3234
- // https://doc.rust-lang.org/cargo/reference/environment-variables.html#environment-variables-cargo-sets-for-build-scripts
3235
- //
3236
- // This handles more of the vars than we actually use (it tries to check
3237
- // complete-ish set), just to avoid needing maintenance if/when new
3238
- // calls to `getenv`/`getenv_unwrap` are added.
3239
- fn provided_by_cargo(envvar: &str) -> bool {
3240
- match envvar {
3241
- v if v.starts_with("CARGO") || v.starts_with("RUSTC") => true,
3242
- "HOST" | "TARGET" | "RUSTDOC" | "OUT_DIR" | "OPT_LEVEL" | "DEBUG" | "PROFILE"
3243
- | "NUM_JOBS" | "RUSTFLAGS" => true,
3244
- _ => false,
3245
- }
3246
- }
3247
- let mut cache = self.env_cache.lock().unwrap();
3248
- if let Some(val) = cache.get(v) {
3249
- return val.clone();
3250
- }
3251
- if self.emit_rerun_if_env_changed && !provided_by_cargo(v) {
3252
- self.print(&format_args!("cargo:rerun-if-env-changed={}", v));
3253
- }
3254
- let r = env::var(v).ok().map(Arc::from);
3255
- self.print(&format_args!("{} = {:?}", v, r));
3256
- cache.insert(v.to_string(), r.clone());
3257
- r
3258
- }
3259
-
3260
- fn getenv_unwrap(&self, v: &str) -> Result<Arc<str>, Error> {
3261
- match self.getenv(v) {
3262
- Some(s) => Ok(s),
3263
- None => Err(Error::new(
3264
- ErrorKind::EnvVarNotFound,
3265
- format!("Environment variable {} not defined.", v),
3266
- )),
3267
- }
3268
- }
3269
-
3270
- fn getenv_with_target_prefixes(&self, var_base: &str) -> Result<Arc<str>, Error> {
3271
- let target = self.get_target()?;
3272
- let host = self.get_host()?;
3273
- let kind = if host == target { "HOST" } else { "TARGET" };
3274
- let target_u = target.replace("-", "_");
3275
- let res = self
3276
- .getenv(&format!("{}_{}", var_base, target))
3277
- .or_else(|| self.getenv(&format!("{}_{}", var_base, target_u)))
3278
- .or_else(|| self.getenv(&format!("{}_{}", kind, var_base)))
3279
- .or_else(|| self.getenv(var_base));
3280
-
3281
- match res {
3282
- Some(res) => Ok(res),
3283
- None => Err(Error::new(
3284
- ErrorKind::EnvVarNotFound,
3285
- format!("Could not find environment variable {}.", var_base),
3286
- )),
3287
- }
3288
- }
3289
-
3290
- fn envflags(&self, name: &str) -> Result<Vec<String>, Error> {
3291
- Ok(self
3292
- .getenv_with_target_prefixes(name)?
3293
- .split_ascii_whitespace()
3294
- .map(|slice| slice.to_string())
3295
- .collect())
3296
- }
3297
-
3298
- fn print(&self, s: &dyn Display) {
3299
- if self.cargo_metadata {
3300
- println!("{}", s);
3301
- }
3302
- }
3303
-
3304
- fn fix_env_for_apple_os(&self, cmd: &mut Command) -> Result<(), Error> {
3305
- let target = self.get_target()?;
3306
- let host = self.get_host()?;
3307
- if host.contains("apple-darwin") && target.contains("apple-darwin") {
3308
- // If, for example, `cargo` runs during the build of an XCode project, then `SDKROOT` environment variable
3309
- // would represent the current target, and this is the problem for us, if we want to compile something
3310
- // for the host, when host != target.
3311
- // We can not just remove `SDKROOT`, because, again, for example, XCode add to PATH
3312
- // /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
3313
- // and `cc` from this path can not find system include files, like `pthread.h`, if `SDKROOT`
3314
- // is not set
3315
- if let Ok(sdkroot) = env::var("SDKROOT") {
3316
- if !sdkroot.contains("MacOSX") {
3317
- let macos_sdk = self.apple_sdk_root("macosx")?;
3318
- cmd.env("SDKROOT", macos_sdk);
3319
- }
3320
- }
3321
- // Additionally, `IPHONEOS_DEPLOYMENT_TARGET` must not be set when using the Xcode linker at
3322
- // "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld",
3323
- // although this is apparently ignored when using the linker at "/usr/bin/ld".
3324
- cmd.env_remove("IPHONEOS_DEPLOYMENT_TARGET");
3325
- }
3326
- Ok(())
3327
- }
3328
-
3329
- fn apple_sdk_root(&self, sdk: &str) -> Result<OsString, Error> {
3330
- let mut cache = self
3331
- .apple_sdk_root_cache
3332
- .lock()
3333
- .expect("apple_sdk_root_cache lock failed");
3334
- if let Some(ret) = cache.get(sdk) {
3335
- return Ok(ret.clone());
3336
- }
3337
-
3338
- let sdk_path = run_output(
3339
- self.cmd("xcrun")
3340
- .arg("--show-sdk-path")
3341
- .arg("--sdk")
3342
- .arg(sdk),
3343
- "xcrun",
3344
- )?;
3345
-
3346
- let sdk_path = match String::from_utf8(sdk_path) {
3347
- Ok(p) => p,
3348
- Err(_) => {
3349
- return Err(Error::new(
3350
- ErrorKind::IOError,
3351
- "Unable to determine Apple SDK path.",
3352
- ));
3353
- }
3354
- };
3355
- let ret: OsString = sdk_path.trim().into();
3356
- cache.insert(sdk.into(), ret.clone());
3357
- Ok(ret)
3358
- }
3359
-
3360
- fn cuda_file_count(&self) -> usize {
3361
- self.files
3362
- .iter()
3363
- .filter(|file| file.extension() == Some(OsStr::new("cu")))
3364
- .count()
3365
- }
3366
- }
3367
-
3368
- impl Default for Build {
3369
- fn default() -> Build {
3370
- Build::new()
3371
- }
3372
- }
3373
-
3374
- impl Tool {
3375
- fn new(path: PathBuf) -> Self {
3376
- Tool::with_features(path, None, false)
3377
- }
3378
-
3379
- fn with_clang_driver(path: PathBuf, clang_driver: Option<&str>) -> Self {
3380
- Self::with_features(path, clang_driver, false)
3381
- }
3382
-
3383
- #[cfg(windows)]
3384
- /// Explicitly set the `ToolFamily`, skipping name-based detection.
3385
- fn with_family(path: PathBuf, family: ToolFamily) -> Self {
3386
- Self {
3387
- path: path,
3388
- cc_wrapper_path: None,
3389
- cc_wrapper_args: Vec::new(),
3390
- args: Vec::new(),
3391
- env: Vec::new(),
3392
- family: family,
3393
- cuda: false,
3394
- removed_args: Vec::new(),
3395
- }
3396
- }
3397
-
3398
- fn with_features(path: PathBuf, clang_driver: Option<&str>, cuda: bool) -> Self {
3399
- // Try to detect family of the tool from its name, falling back to Gnu.
3400
- let family = if let Some(fname) = path.file_name().and_then(|p| p.to_str()) {
3401
- if fname.contains("clang-cl") {
3402
- ToolFamily::Msvc { clang_cl: true }
3403
- } else if fname.ends_with("cl") || fname == "cl.exe" {
3404
- ToolFamily::Msvc { clang_cl: false }
3405
- } else if fname.contains("clang") {
3406
- match clang_driver {
3407
- Some("cl") => ToolFamily::Msvc { clang_cl: true },
3408
- _ => ToolFamily::Clang,
3409
- }
3410
- } else {
3411
- ToolFamily::Gnu
3412
- }
3413
- } else {
3414
- ToolFamily::Gnu
3415
- };
3416
-
3417
- Tool {
3418
- path: path,
3419
- cc_wrapper_path: None,
3420
- cc_wrapper_args: Vec::new(),
3421
- args: Vec::new(),
3422
- env: Vec::new(),
3423
- family: family,
3424
- cuda: cuda,
3425
- removed_args: Vec::new(),
3426
- }
3427
- }
3428
-
3429
- /// Add an argument to be stripped from the final command arguments.
3430
- fn remove_arg(&mut self, flag: OsString) {
3431
- self.removed_args.push(flag);
3432
- }
3433
-
3434
- /// Push an "exotic" flag to the end of the compiler's arguments list.
3435
- ///
3436
- /// Nvidia compiler accepts only the most common compiler flags like `-D`,
3437
- /// `-I`, `-c`, etc. Options meant specifically for the underlying
3438
- /// host C++ compiler have to be prefixed with '-Xcompiler`.
3439
- /// [Another possible future application for this function is passing
3440
- /// clang-specific flags to clang-cl, which otherwise accepts only
3441
- /// MSVC-specific options.]
3442
- fn push_cc_arg(&mut self, flag: OsString) {
3443
- if self.cuda {
3444
- self.args.push("-Xcompiler".into());
3445
- }
3446
- self.args.push(flag);
3447
- }
3448
-
3449
- /// Checks if an argument or flag has already been specified or conflicts.
3450
- ///
3451
- /// Currently only checks optimization flags.
3452
- fn is_duplicate_opt_arg(&self, flag: &OsString) -> bool {
3453
- let flag = flag.to_str().unwrap();
3454
- let mut chars = flag.chars();
3455
-
3456
- // Only duplicate check compiler flags
3457
- if self.is_like_msvc() {
3458
- if chars.next() != Some('/') {
3459
- return false;
3460
- }
3461
- } else if self.is_like_gnu() || self.is_like_clang() {
3462
- if chars.next() != Some('-') {
3463
- return false;
3464
- }
3465
- }
3466
-
3467
- // Check for existing optimization flags (-O, /O)
3468
- if chars.next() == Some('O') {
3469
- return self
3470
- .args()
3471
- .iter()
3472
- .any(|ref a| a.to_str().unwrap_or("").chars().nth(1) == Some('O'));
3473
- }
3474
-
3475
- // TODO Check for existing -m..., -m...=..., /arch:... flags
3476
- return false;
3477
- }
3478
-
3479
- /// Don't push optimization arg if it conflicts with existing args.
3480
- fn push_opt_unless_duplicate(&mut self, flag: OsString) {
3481
- if self.is_duplicate_opt_arg(&flag) {
3482
- println!("Info: Ignoring duplicate arg {:?}", &flag);
3483
- } else {
3484
- self.push_cc_arg(flag);
3485
- }
3486
- }
3487
-
3488
- /// Converts this compiler into a `Command` that's ready to be run.
3489
- ///
3490
- /// This is useful for when the compiler needs to be executed and the
3491
- /// command returned will already have the initial arguments and environment
3492
- /// variables configured.
3493
- pub fn to_command(&self) -> Command {
3494
- let mut cmd = match self.cc_wrapper_path {
3495
- Some(ref cc_wrapper_path) => {
3496
- let mut cmd = Command::new(&cc_wrapper_path);
3497
- cmd.arg(&self.path);
3498
- cmd
3499
- }
3500
- None => Command::new(&self.path),
3501
- };
3502
- cmd.args(&self.cc_wrapper_args);
3503
-
3504
- let value = self
3505
- .args
3506
- .iter()
3507
- .filter(|a| !self.removed_args.contains(a))
3508
- .collect::<Vec<_>>();
3509
- cmd.args(&value);
3510
-
3511
- for &(ref k, ref v) in self.env.iter() {
3512
- cmd.env(k, v);
3513
- }
3514
- cmd
3515
- }
3516
-
3517
- /// Returns the path for this compiler.
3518
- ///
3519
- /// Note that this may not be a path to a file on the filesystem, e.g. "cc",
3520
- /// but rather something which will be resolved when a process is spawned.
3521
- pub fn path(&self) -> &Path {
3522
- &self.path
3523
- }
3524
-
3525
- /// Returns the default set of arguments to the compiler needed to produce
3526
- /// executables for the target this compiler generates.
3527
- pub fn args(&self) -> &[OsString] {
3528
- &self.args
3529
- }
3530
-
3531
- /// Returns the set of environment variables needed for this compiler to
3532
- /// operate.
3533
- ///
3534
- /// This is typically only used for MSVC compilers currently.
3535
- pub fn env(&self) -> &[(OsString, OsString)] {
3536
- &self.env
3537
- }
3538
-
3539
- /// Returns the compiler command in format of CC environment variable.
3540
- /// Or empty string if CC env was not present
3541
- ///
3542
- /// This is typically used by configure script
3543
- pub fn cc_env(&self) -> OsString {
3544
- match self.cc_wrapper_path {
3545
- Some(ref cc_wrapper_path) => {
3546
- let mut cc_env = cc_wrapper_path.as_os_str().to_owned();
3547
- cc_env.push(" ");
3548
- cc_env.push(self.path.to_path_buf().into_os_string());
3549
- for arg in self.cc_wrapper_args.iter() {
3550
- cc_env.push(" ");
3551
- cc_env.push(arg);
3552
- }
3553
- cc_env
3554
- }
3555
- None => OsString::from(""),
3556
- }
3557
- }
3558
-
3559
- /// Returns the compiler flags in format of CFLAGS environment variable.
3560
- /// Important here - this will not be CFLAGS from env, its internal gcc's flags to use as CFLAGS
3561
- /// This is typically used by configure script
3562
- pub fn cflags_env(&self) -> OsString {
3563
- let mut flags = OsString::new();
3564
- for (i, arg) in self.args.iter().enumerate() {
3565
- if i > 0 {
3566
- flags.push(" ");
3567
- }
3568
- flags.push(arg);
3569
- }
3570
- flags
3571
- }
3572
-
3573
- /// Whether the tool is GNU Compiler Collection-like.
3574
- pub fn is_like_gnu(&self) -> bool {
3575
- self.family == ToolFamily::Gnu
3576
- }
3577
-
3578
- /// Whether the tool is Clang-like.
3579
- pub fn is_like_clang(&self) -> bool {
3580
- self.family == ToolFamily::Clang
3581
- }
3582
-
3583
- /// Whether the tool is MSVC-like.
3584
- pub fn is_like_msvc(&self) -> bool {
3585
- match self.family {
3586
- ToolFamily::Msvc { .. } => true,
3587
- _ => false,
3588
- }
3589
- }
3590
- }
3591
-
3592
- fn wait_on_child(cmd: &Command, program: &str, child: &mut Child) -> Result<(), Error> {
3593
- let status = match child.wait() {
3594
- Ok(s) => s,
3595
- Err(e) => {
3596
- return Err(Error::new(
3597
- ErrorKind::ToolExecError,
3598
- format!(
3599
- "Failed to wait on spawned child process, command {:?} with args {:?}: {}.",
3600
- cmd, program, e
3601
- ),
3602
- ));
3603
- }
3604
- };
3605
- println!("{}", status);
3606
-
3607
- if status.success() {
3608
- Ok(())
3609
- } else {
3610
- Err(Error::new(
3611
- ErrorKind::ToolExecError,
3612
- format!(
3613
- "Command {:?} with args {:?} did not execute successfully (status code {}).",
3614
- cmd, program, status
3615
- ),
3616
- ))
3617
- }
3618
- }
3619
-
3620
- #[cfg(feature = "parallel")]
3621
- fn try_wait_on_child(
3622
- cmd: &Command,
3623
- program: &str,
3624
- child: &mut Child,
3625
- stdout: &mut dyn io::Write,
3626
- ) -> Result<Option<()>, Error> {
3627
- match child.try_wait() {
3628
- Ok(Some(status)) => {
3629
- let _ = writeln!(stdout, "{}", status);
3630
-
3631
- if status.success() {
3632
- Ok(Some(()))
3633
- } else {
3634
- Err(Error::new(
3635
- ErrorKind::ToolExecError,
3636
- format!(
3637
- "Command {:?} with args {:?} did not execute successfully (status code {}).",
3638
- cmd, program, status
3639
- ),
3640
- ))
3641
- }
3642
- }
3643
- Ok(None) => Ok(None),
3644
- Err(e) => Err(Error::new(
3645
- ErrorKind::ToolExecError,
3646
- format!(
3647
- "Failed to wait on spawned child process, command {:?} with args {:?}: {}.",
3648
- cmd, program, e
3649
- ),
3650
- )),
3651
- }
3652
- }
3653
-
3654
- fn run_inner(cmd: &mut Command, program: &str, pipe_writer: File) -> Result<(), Error> {
3655
- let mut child = spawn(cmd, program, pipe_writer)?;
3656
- wait_on_child(cmd, program, &mut child)
3657
- }
3658
-
3659
- fn run(cmd: &mut Command, program: &str, print: &PrintThread) -> Result<(), Error> {
3660
- run_inner(cmd, program, print.pipe_writer_cloned()?.unwrap())?;
3661
-
3662
- Ok(())
3663
- }
3664
-
3665
- fn run_output(cmd: &mut Command, program: &str) -> Result<Vec<u8>, Error> {
3666
- cmd.stdout(Stdio::piped());
3667
-
3668
- let mut print = PrintThread::new()?;
3669
- let mut child = spawn(cmd, program, print.pipe_writer().take().unwrap())?;
3670
-
3671
- let mut stdout = vec![];
3672
- child
3673
- .stdout
3674
- .take()
3675
- .unwrap()
3676
- .read_to_end(&mut stdout)
3677
- .unwrap();
3678
-
3679
- wait_on_child(cmd, program, &mut child)?;
3680
-
3681
- Ok(stdout)
3682
- }
3683
-
3684
- fn spawn(cmd: &mut Command, program: &str, pipe_writer: File) -> Result<Child, Error> {
3685
- struct ResetStderr<'cmd>(&'cmd mut Command);
3686
-
3687
- impl Drop for ResetStderr<'_> {
3688
- fn drop(&mut self) {
3689
- // Reset stderr to default to release pipe_writer so that print thread will
3690
- // not block forever.
3691
- self.0.stderr(Stdio::inherit());
3692
- }
3693
- }
3694
-
3695
- println!("running: {:?}", cmd);
3696
-
3697
- let cmd = ResetStderr(cmd);
3698
-
3699
- match cmd.0.stderr(pipe_writer).spawn() {
3700
- Ok(child) => Ok(child),
3701
- Err(ref e) if e.kind() == io::ErrorKind::NotFound => {
3702
- let extra = if cfg!(windows) {
3703
- " (see https://github.com/rust-lang/cc-rs#compile-time-requirements \
3704
- for help)"
3705
- } else {
3706
- ""
3707
- };
3708
- Err(Error::new(
3709
- ErrorKind::ToolNotFound,
3710
- format!("Failed to find tool. Is `{}` installed?{}", program, extra),
3711
- ))
3712
- }
3713
- Err(e) => Err(Error::new(
3714
- ErrorKind::ToolExecError,
3715
- format!(
3716
- "Command {:?} with args {:?} failed to start: {:?}",
3717
- cmd.0, program, e
3718
- ),
3719
- )),
3720
- }
3721
- }
3722
-
3723
- fn fail(s: &str) -> ! {
3724
- eprintln!("\n\nerror occurred: {}\n\n", s);
3725
- std::process::exit(1);
3726
- }
3727
-
3728
- fn command_add_output_file(
3729
- cmd: &mut Command,
3730
- dst: &Path,
3731
- cuda: bool,
3732
- msvc: bool,
3733
- clang: bool,
3734
- gnu: bool,
3735
- is_asm: bool,
3736
- is_arm: bool,
3737
- ) {
3738
- if msvc && !clang && !gnu && !cuda && !(is_asm && is_arm) {
3739
- let mut s = OsString::from("-Fo");
3740
- s.push(&dst);
3741
- cmd.arg(s);
3742
- } else {
3743
- cmd.arg("-o").arg(&dst);
3744
- }
3745
- }
3746
-
3747
- // Use by default minimum available API level
3748
- // See note about naming here
3749
- // https://android.googlesource.com/platform/ndk/+/refs/heads/ndk-release-r21/docs/BuildSystemMaintainers.md#Clang
3750
- static NEW_STANDALONE_ANDROID_COMPILERS: [&str; 4] = [
3751
- "aarch64-linux-android21-clang",
3752
- "armv7a-linux-androideabi16-clang",
3753
- "i686-linux-android16-clang",
3754
- "x86_64-linux-android21-clang",
3755
- ];
3756
-
3757
- // New "standalone" C/C++ cross-compiler executables from recent Android NDK
3758
- // are just shell scripts that call main clang binary (from Android NDK) with
3759
- // proper `--target` argument.
3760
- //
3761
- // For example, armv7a-linux-androideabi16-clang passes
3762
- // `--target=armv7a-linux-androideabi16` to clang.
3763
- // So to construct proper command line check if
3764
- // `--target` argument would be passed or not to clang
3765
- fn android_clang_compiler_uses_target_arg_internally(clang_path: &Path) -> bool {
3766
- if let Some(filename) = clang_path.file_name() {
3767
- if let Some(filename_str) = filename.to_str() {
3768
- if let Some(idx) = filename_str.rfind("-") {
3769
- return filename_str.split_at(idx).0.contains("android");
3770
- }
3771
- }
3772
- }
3773
- false
3774
- }
3775
-
3776
- #[test]
3777
- fn test_android_clang_compiler_uses_target_arg_internally() {
3778
- for version in 16..21 {
3779
- assert!(android_clang_compiler_uses_target_arg_internally(
3780
- &PathBuf::from(format!("armv7a-linux-androideabi{}-clang", version))
3781
- ));
3782
- assert!(android_clang_compiler_uses_target_arg_internally(
3783
- &PathBuf::from(format!("armv7a-linux-androideabi{}-clang++", version))
3784
- ));
3785
- }
3786
- assert!(!android_clang_compiler_uses_target_arg_internally(
3787
- &PathBuf::from("clang-i686-linux-android")
3788
- ));
3789
- assert!(!android_clang_compiler_uses_target_arg_internally(
3790
- &PathBuf::from("clang")
3791
- ));
3792
- assert!(!android_clang_compiler_uses_target_arg_internally(
3793
- &PathBuf::from("clang++")
3794
- ));
3795
- }
3796
-
3797
- fn autodetect_android_compiler(target: &str, host: &str, gnu: &str, clang: &str) -> String {
3798
- let new_clang_key = match target {
3799
- "aarch64-linux-android" => Some("aarch64"),
3800
- "armv7-linux-androideabi" => Some("armv7a"),
3801
- "i686-linux-android" => Some("i686"),
3802
- "x86_64-linux-android" => Some("x86_64"),
3803
- _ => None,
3804
- };
3805
-
3806
- let new_clang = new_clang_key
3807
- .map(|key| {
3808
- NEW_STANDALONE_ANDROID_COMPILERS
3809
- .iter()
3810
- .find(|x| x.starts_with(key))
3811
- })
3812
- .unwrap_or(None);
3813
-
3814
- if let Some(new_clang) = new_clang {
3815
- if Command::new(new_clang).output().is_ok() {
3816
- return (*new_clang).into();
3817
- }
3818
- }
3819
-
3820
- let target = target
3821
- .replace("armv7neon", "arm")
3822
- .replace("armv7", "arm")
3823
- .replace("thumbv7neon", "arm")
3824
- .replace("thumbv7", "arm");
3825
- let gnu_compiler = format!("{}-{}", target, gnu);
3826
- let clang_compiler = format!("{}-{}", target, clang);
3827
-
3828
- // On Windows, the Android clang compiler is provided as a `.cmd` file instead
3829
- // of a `.exe` file. `std::process::Command` won't run `.cmd` files unless the
3830
- // `.cmd` is explicitly appended to the command name, so we do that here.
3831
- let clang_compiler_cmd = format!("{}-{}.cmd", target, clang);
3832
-
3833
- // Check if gnu compiler is present
3834
- // if not, use clang
3835
- if Command::new(&gnu_compiler).output().is_ok() {
3836
- gnu_compiler
3837
- } else if host.contains("windows") && Command::new(&clang_compiler_cmd).output().is_ok() {
3838
- clang_compiler_cmd
3839
- } else {
3840
- clang_compiler
3841
- }
3842
- }
3843
-
3844
- // Rust and clang/cc don't agree on how to name the target.
3845
- fn map_darwin_target_from_rust_to_compiler_architecture(target: &str) -> Option<&'static str> {
3846
- if target.contains("x86_64h") {
3847
- Some("x86_64h")
3848
- } else if target.contains("x86_64") {
3849
- Some("x86_64")
3850
- } else if target.contains("arm64e") {
3851
- Some("arm64e")
3852
- } else if target.contains("aarch64") {
3853
- Some("arm64")
3854
- } else if target.contains("i686") {
3855
- Some("i386")
3856
- } else if target.contains("powerpc") {
3857
- Some("ppc")
3858
- } else if target.contains("powerpc64") {
3859
- Some("ppc64")
3860
- } else {
3861
- None
3862
- }
3863
- }
3864
-
3865
- fn which(tool: &Path, path_entries: Option<OsString>) -> Option<PathBuf> {
3866
- fn check_exe(exe: &mut PathBuf) -> bool {
3867
- let exe_ext = std::env::consts::EXE_EXTENSION;
3868
- exe.exists() || (!exe_ext.is_empty() && exe.set_extension(exe_ext) && exe.exists())
3869
- }
3870
-
3871
- // If |tool| is not just one "word," assume it's an actual path...
3872
- if tool.components().count() > 1 {
3873
- let mut exe = PathBuf::from(tool);
3874
- return if check_exe(&mut exe) { Some(exe) } else { None };
3875
- }
3876
-
3877
- // Loop through PATH entries searching for the |tool|.
3878
- let path_entries = path_entries.or(env::var_os("PATH"))?;
3879
- env::split_paths(&path_entries).find_map(|path_entry| {
3880
- let mut exe = path_entry.join(tool);
3881
- return if check_exe(&mut exe) { Some(exe) } else { None };
3882
- })
3883
- }
3884
-
3885
- // search for |prog| on 'programs' path in '|cc| -print-search-dirs' output
3886
- fn search_programs(cc: &mut Command, prog: &str) -> Option<PathBuf> {
3887
- let search_dirs = run_output(cc.arg("-print-search-dirs"), "cc").ok()?;
3888
- // clang driver appears to be forcing UTF-8 output even on Windows,
3889
- // hence from_utf8 is assumed to be usable in all cases.
3890
- let search_dirs = std::str::from_utf8(&search_dirs).ok()?;
3891
- for dirs in search_dirs.split(|c| c == '\r' || c == '\n') {
3892
- if let Some(path) = dirs.strip_prefix("programs: =") {
3893
- return which(Path::new(prog), Some(OsString::from(path)));
3894
- }
3895
- }
3896
- None
3897
- }
3898
-
3899
- #[derive(Clone, Copy, PartialEq)]
3900
- enum AsmFileExt {
3901
- /// `.asm` files. On MSVC targets, we assume these should be passed to MASM
3902
- /// (`ml{,64}.exe`).
3903
- DotAsm,
3904
- /// `.s` or `.S` files, which do not have the special handling on MSVC targets.
3905
- DotS,
3906
- }
3907
-
3908
- impl AsmFileExt {
3909
- fn from_path(file: &Path) -> Option<Self> {
3910
- if let Some(ext) = file.extension() {
3911
- if let Some(ext) = ext.to_str() {
3912
- let ext = ext.to_lowercase();
3913
- match &*ext {
3914
- "asm" => return Some(AsmFileExt::DotAsm),
3915
- "s" => return Some(AsmFileExt::DotS),
3916
- _ => return None,
3917
- }
3918
- }
3919
- }
3920
- None
3921
- }
3922
- }
3923
-
3924
- struct PrintThread {
3925
- handle: Option<JoinHandle<()>>,
3926
- pipe_writer: Option<File>,
3927
- }
3928
-
3929
- impl PrintThread {
3930
- fn new() -> Result<Self, Error> {
3931
- let (pipe_reader, pipe_writer) = os_pipe::pipe()?;
3932
-
3933
- // Capture the standard error coming from compilation, and write it out
3934
- // with cargo:warning= prefixes. Note that this is a bit wonky to avoid
3935
- // requiring the output to be UTF-8, we instead just ship bytes from one
3936
- // location to another.
3937
- let print = thread::spawn(move || {
3938
- let mut stderr = BufReader::with_capacity(4096, pipe_reader);
3939
- let mut line = Vec::with_capacity(20);
3940
- let stdout = io::stdout();
3941
-
3942
- // read_until returns 0 on Eof
3943
- while stderr.read_until(b'\n', &mut line).unwrap() != 0 {
3944
- {
3945
- let mut stdout = stdout.lock();
3946
-
3947
- stdout.write_all(b"cargo:warning=").unwrap();
3948
- stdout.write_all(&line).unwrap();
3949
- stdout.write_all(b"\n").unwrap();
3950
- }
3951
-
3952
- // read_until does not clear the buffer
3953
- line.clear();
3954
- }
3955
- });
3956
-
3957
- Ok(Self {
3958
- handle: Some(print),
3959
- pipe_writer: Some(pipe_writer),
3960
- })
3961
- }
3962
-
3963
- fn pipe_writer(&mut self) -> &mut Option<File> {
3964
- &mut self.pipe_writer
3965
- }
3966
-
3967
- fn pipe_writer_cloned(&self) -> Result<Option<File>, Error> {
3968
- self.pipe_writer
3969
- .as_ref()
3970
- .map(File::try_clone)
3971
- .transpose()
3972
- .map_err(From::from)
3973
- }
3974
- }
3975
-
3976
- impl Drop for PrintThread {
3977
- fn drop(&mut self) {
3978
- // Drop pipe_writer first to avoid deadlock
3979
- self.pipe_writer.take();
3980
-
3981
- self.handle.take().unwrap().join().unwrap();
3982
- }
3983
- }