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