wasmtime 28.0.0 → 29.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2967) hide show
  1. checksums.yaml +4 -4
  2. data/Cargo.lock +155 -120
  3. data/ext/Cargo.toml +5 -5
  4. data/ext/cargo-vendor/bitflags-2.8.0/.cargo-checksum.json +1 -0
  5. data/ext/cargo-vendor/bitflags-2.8.0/CHANGELOG.md +581 -0
  6. data/ext/cargo-vendor/bitflags-2.8.0/Cargo.lock +384 -0
  7. data/ext/cargo-vendor/bitflags-2.8.0/Cargo.toml +130 -0
  8. data/ext/cargo-vendor/bitflags-2.8.0/README.md +77 -0
  9. data/ext/cargo-vendor/bitflags-2.8.0/examples/custom_derive.rs +23 -0
  10. data/ext/cargo-vendor/bitflags-2.8.0/src/external/arbitrary.rs +33 -0
  11. data/ext/cargo-vendor/bitflags-2.8.0/src/lib.rs +1025 -0
  12. data/ext/cargo-vendor/bitflags-2.8.0/src/tests/bitflags_match.rs +93 -0
  13. data/ext/cargo-vendor/bitflags-2.8.0/src/tests/truncate.rs +29 -0
  14. data/ext/cargo-vendor/bitflags-2.8.0/src/tests/unknown.rs +40 -0
  15. data/ext/cargo-vendor/bitflags-2.8.0/src/tests.rs +134 -0
  16. data/ext/cargo-vendor/bitflags-2.8.0/src/traits.rs +444 -0
  17. data/ext/cargo-vendor/cc-1.2.10/.cargo-checksum.json +1 -0
  18. data/ext/cargo-vendor/cc-1.2.10/CHANGELOG.md +379 -0
  19. data/ext/cargo-vendor/cc-1.2.10/Cargo.lock +191 -0
  20. data/ext/cargo-vendor/cc-1.2.10/Cargo.toml +67 -0
  21. data/ext/cargo-vendor/cc-1.2.10/src/flags.rs +492 -0
  22. data/ext/cargo-vendor/cc-1.2.10/src/lib.rs +4216 -0
  23. data/ext/cargo-vendor/cc-1.2.10/src/target/generated.rs +3403 -0
  24. data/ext/cargo-vendor/cc-1.2.10/src/tool.rs +512 -0
  25. data/ext/cargo-vendor/cc-1.2.10/src/windows/windows_sys.rs +134 -0
  26. data/ext/cargo-vendor/cpufeatures-0.2.17/.cargo-checksum.json +1 -0
  27. data/ext/cargo-vendor/cpufeatures-0.2.17/CHANGELOG.md +168 -0
  28. data/ext/cargo-vendor/cpufeatures-0.2.17/Cargo.lock +16 -0
  29. data/ext/cargo-vendor/cpufeatures-0.2.17/Cargo.toml +71 -0
  30. data/ext/cargo-vendor/cpufeatures-0.2.17/LICENSE-MIT +25 -0
  31. data/ext/cargo-vendor/cpufeatures-0.2.17/README.md +126 -0
  32. data/ext/cargo-vendor/cranelift-bforest-0.116.1/.cargo-checksum.json +1 -0
  33. data/ext/cargo-vendor/cranelift-bforest-0.116.1/Cargo.lock +25 -0
  34. data/ext/cargo-vendor/cranelift-bforest-0.116.1/Cargo.toml +73 -0
  35. data/ext/cargo-vendor/cranelift-bitset-0.116.1/.cargo-checksum.json +1 -0
  36. data/ext/cargo-vendor/cranelift-bitset-0.116.1/Cargo.lock +73 -0
  37. data/ext/cargo-vendor/cranelift-bitset-0.116.1/Cargo.toml +88 -0
  38. data/ext/cargo-vendor/cranelift-bitset-0.116.1/src/scalar.rs +629 -0
  39. data/ext/cargo-vendor/cranelift-codegen-0.116.0/.cargo-checksum.json +1 -0
  40. data/ext/cargo-vendor/cranelift-codegen-0.116.0/Cargo.lock +1078 -0
  41. data/ext/cargo-vendor/cranelift-codegen-0.116.0/Cargo.toml +242 -0
  42. data/ext/cargo-vendor/cranelift-codegen-0.116.0/build.rs +223 -0
  43. data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/binemit/mod.rs +174 -0
  44. data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/ir/immediates.rs +1961 -0
  45. data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/aarch64/abi.rs +1540 -0
  46. data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/aarch64/inst/args.rs +711 -0
  47. data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/aarch64/inst/emit.rs +3577 -0
  48. data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/aarch64/inst/emit_tests.rs +7972 -0
  49. data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/aarch64/inst/mod.rs +3056 -0
  50. data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/aarch64/inst/regs.rs +281 -0
  51. data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/aarch64/inst.isle +5102 -0
  52. data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/aarch64/lower/isle.rs +765 -0
  53. data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/aarch64/lower.isle +3161 -0
  54. data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/aarch64/mod.rs +260 -0
  55. data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/mod.rs +476 -0
  56. data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/pulley_shared/abi.rs +943 -0
  57. data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/pulley_shared/inst/args.rs +580 -0
  58. data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/pulley_shared/inst/emit.rs +710 -0
  59. data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/pulley_shared/inst/mod.rs +846 -0
  60. data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/pulley_shared/inst/regs.rs +164 -0
  61. data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/pulley_shared/inst.isle +489 -0
  62. data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/pulley_shared/lower/isle.rs +162 -0
  63. data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/pulley_shared/lower.isle +1414 -0
  64. data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/pulley_shared/mod.rs +287 -0
  65. data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/riscv64/abi.rs +995 -0
  66. data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/riscv64/inst/args.rs +1957 -0
  67. data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/riscv64/inst/emit_tests.rs +2277 -0
  68. data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/s390x/abi.rs +1399 -0
  69. data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/s390x/inst/emit.rs +3435 -0
  70. data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/x64/abi.rs +1386 -0
  71. data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/x64/inst.isle +5758 -0
  72. data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/x64/lower/isle/generated_code.rs +16 -0
  73. data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/x64/lower/isle.rs +997 -0
  74. data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isle_prelude.rs +1156 -0
  75. data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/machinst/abi.rs +2451 -0
  76. data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/machinst/buffer.rs +2496 -0
  77. data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/machinst/lower.rs +1603 -0
  78. data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/prelude.isle +836 -0
  79. data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/prelude_lower.isle +1128 -0
  80. data/ext/cargo-vendor/cranelift-codegen-meta-0.116.0/.cargo-checksum.json +1 -0
  81. data/ext/cargo-vendor/cranelift-codegen-meta-0.116.0/Cargo.lock +46 -0
  82. data/ext/cargo-vendor/cranelift-codegen-meta-0.116.0/Cargo.toml +75 -0
  83. data/ext/cargo-vendor/cranelift-codegen-meta-0.116.0/src/cdsl/instructions.rs +494 -0
  84. data/ext/cargo-vendor/cranelift-codegen-meta-0.116.0/src/isa/pulley.rs +20 -0
  85. data/ext/cargo-vendor/cranelift-codegen-meta-0.116.0/src/isle.rs +186 -0
  86. data/ext/cargo-vendor/cranelift-codegen-meta-0.116.0/src/lib.rs +111 -0
  87. data/ext/cargo-vendor/cranelift-codegen-meta-0.116.0/src/pulley.rs +401 -0
  88. data/ext/cargo-vendor/cranelift-codegen-meta-0.116.0/src/shared/instructions.rs +3786 -0
  89. data/ext/cargo-vendor/cranelift-codegen-shared-0.116.1/.cargo-checksum.json +1 -0
  90. data/ext/cargo-vendor/cranelift-codegen-shared-0.116.1/Cargo.lock +7 -0
  91. data/ext/cargo-vendor/cranelift-codegen-shared-0.116.1/Cargo.toml +33 -0
  92. data/ext/cargo-vendor/cranelift-control-0.116.1/.cargo-checksum.json +1 -0
  93. data/ext/cargo-vendor/cranelift-control-0.116.1/Cargo.lock +16 -0
  94. data/ext/cargo-vendor/cranelift-control-0.116.1/Cargo.toml +44 -0
  95. data/ext/cargo-vendor/cranelift-entity-0.116.1/.cargo-checksum.json +1 -0
  96. data/ext/cargo-vendor/cranelift-entity-0.116.1/Cargo.lock +77 -0
  97. data/ext/cargo-vendor/cranelift-entity-0.116.1/Cargo.toml +89 -0
  98. data/ext/cargo-vendor/cranelift-entity-0.116.1/src/sparse.rs +411 -0
  99. data/ext/cargo-vendor/cranelift-frontend-0.116.0/.cargo-checksum.json +1 -0
  100. data/ext/cargo-vendor/cranelift-frontend-0.116.0/Cargo.lock +544 -0
  101. data/ext/cargo-vendor/cranelift-frontend-0.116.0/Cargo.toml +111 -0
  102. data/ext/cargo-vendor/cranelift-isle-0.116.0/.cargo-checksum.json +1 -0
  103. data/ext/cargo-vendor/cranelift-isle-0.116.0/Cargo.lock +294 -0
  104. data/ext/cargo-vendor/cranelift-isle-0.116.0/Cargo.toml +83 -0
  105. data/ext/cargo-vendor/cranelift-native-0.116.0/.cargo-checksum.json +1 -0
  106. data/ext/cargo-vendor/cranelift-native-0.116.0/Cargo.lock +261 -0
  107. data/ext/cargo-vendor/cranelift-native-0.116.0/Cargo.toml +53 -0
  108. data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.29/.cargo-checksum.json +1 -0
  109. data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.29/Cargo.toml +70 -0
  110. data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.29/README.md +52 -0
  111. data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.29/tests/common/mod.rs +33 -0
  112. data/ext/cargo-vendor/indexmap-2.7.1/.cargo-checksum.json +1 -0
  113. data/ext/cargo-vendor/indexmap-2.7.1/Cargo.lock +333 -0
  114. data/ext/cargo-vendor/indexmap-2.7.1/Cargo.toml +150 -0
  115. data/ext/cargo-vendor/indexmap-2.7.1/RELEASES.md +541 -0
  116. data/ext/cargo-vendor/indexmap-2.7.1/src/lib.rs +273 -0
  117. data/ext/cargo-vendor/indexmap-2.7.1/src/map/core/entry.rs +571 -0
  118. data/ext/cargo-vendor/indexmap-2.7.1/src/map/core.rs +738 -0
  119. data/ext/cargo-vendor/indexmap-2.7.1/src/map/iter.rs +776 -0
  120. data/ext/cargo-vendor/indexmap-2.7.1/src/map.rs +1608 -0
  121. data/ext/cargo-vendor/indexmap-2.7.1/src/set/iter.rs +628 -0
  122. data/ext/cargo-vendor/indexmap-2.7.1/src/set.rs +1301 -0
  123. data/ext/cargo-vendor/indexmap-2.7.1/src/util.rs +58 -0
  124. data/ext/cargo-vendor/ipnet-2.11.0/.cargo-checksum.json +1 -0
  125. data/ext/cargo-vendor/ipnet-2.11.0/Cargo.lock +179 -0
  126. data/ext/cargo-vendor/ipnet-2.11.0/Cargo.toml +69 -0
  127. data/ext/cargo-vendor/ipnet-2.11.0/src/ipext.rs +989 -0
  128. data/ext/cargo-vendor/ipnet-2.11.0/src/ipnet.rs +2001 -0
  129. data/ext/cargo-vendor/ipnet-2.11.0/src/lib.rs +106 -0
  130. data/ext/cargo-vendor/js-sys-0.3.77/.cargo-checksum.json +1 -0
  131. data/ext/cargo-vendor/js-sys-0.3.77/Cargo.lock +127 -0
  132. data/ext/cargo-vendor/js-sys-0.3.77/Cargo.toml +69 -0
  133. data/ext/cargo-vendor/js-sys-0.3.77/src/lib.rs +6439 -0
  134. data/ext/cargo-vendor/log-0.4.25/.cargo-checksum.json +1 -0
  135. data/ext/cargo-vendor/log-0.4.25/CHANGELOG.md +368 -0
  136. data/ext/cargo-vendor/log-0.4.25/Cargo.toml +143 -0
  137. data/ext/cargo-vendor/log-0.4.25/README.md +134 -0
  138. data/ext/cargo-vendor/log-0.4.25/src/kv/key.rs +163 -0
  139. data/ext/cargo-vendor/log-0.4.25/src/kv/mod.rs +265 -0
  140. data/ext/cargo-vendor/log-0.4.25/src/kv/value.rs +1394 -0
  141. data/ext/cargo-vendor/log-0.4.25/src/lib.rs +1884 -0
  142. data/ext/cargo-vendor/log-0.4.25/src/serde.rs +397 -0
  143. data/ext/cargo-vendor/miniz_oxide-0.8.3/.cargo-checksum.json +1 -0
  144. data/ext/cargo-vendor/miniz_oxide-0.8.3/Cargo.lock +48 -0
  145. data/ext/cargo-vendor/miniz_oxide-0.8.3/Cargo.toml +90 -0
  146. data/ext/cargo-vendor/miniz_oxide-0.8.3/LICENSE +25 -0
  147. data/ext/cargo-vendor/miniz_oxide-0.8.3/LICENSE-MIT.md +24 -0
  148. data/ext/cargo-vendor/miniz_oxide-0.8.3/LICENSE-ZLIB.md +14 -0
  149. data/ext/cargo-vendor/miniz_oxide-0.8.3/src/deflate/core.rs +2459 -0
  150. data/ext/cargo-vendor/miniz_oxide-0.8.3/src/deflate/mod.rs +237 -0
  151. data/ext/cargo-vendor/miniz_oxide-0.8.3/src/deflate/stored.rs +306 -0
  152. data/ext/cargo-vendor/miniz_oxide-0.8.3/src/deflate/zlib.rs +112 -0
  153. data/ext/cargo-vendor/proc-macro2-1.0.93/.cargo-checksum.json +1 -0
  154. data/ext/cargo-vendor/proc-macro2-1.0.93/Cargo.lock +304 -0
  155. data/ext/cargo-vendor/proc-macro2-1.0.93/Cargo.toml +105 -0
  156. data/ext/cargo-vendor/proc-macro2-1.0.93/src/fallback.rs +1277 -0
  157. data/ext/cargo-vendor/proc-macro2-1.0.93/src/lib.rs +1389 -0
  158. data/ext/cargo-vendor/proc-macro2-1.0.93/src/rcvec.rs +146 -0
  159. data/ext/cargo-vendor/pulley-interpreter-29.0.0/.cargo-checksum.json +1 -0
  160. data/ext/cargo-vendor/pulley-interpreter-29.0.0/CONTRIBUTING.md +278 -0
  161. data/ext/cargo-vendor/pulley-interpreter-29.0.0/Cargo.lock +402 -0
  162. data/ext/cargo-vendor/pulley-interpreter-29.0.0/Cargo.toml +126 -0
  163. data/ext/cargo-vendor/pulley-interpreter-29.0.0/examples/objdump.rs +48 -0
  164. data/ext/cargo-vendor/pulley-interpreter-29.0.0/src/decode.rs +761 -0
  165. data/ext/cargo-vendor/pulley-interpreter-29.0.0/src/disas.rs +333 -0
  166. data/ext/cargo-vendor/pulley-interpreter-29.0.0/src/encode.rs +288 -0
  167. data/ext/cargo-vendor/pulley-interpreter-29.0.0/src/imms.rs +69 -0
  168. data/ext/cargo-vendor/pulley-interpreter-29.0.0/src/interp/debug.rs +128 -0
  169. data/ext/cargo-vendor/pulley-interpreter-29.0.0/src/interp/match_loop.rs +39 -0
  170. data/ext/cargo-vendor/pulley-interpreter-29.0.0/src/interp/tail_loop.rs +152 -0
  171. data/ext/cargo-vendor/pulley-interpreter-29.0.0/src/interp.rs +4655 -0
  172. data/ext/cargo-vendor/pulley-interpreter-29.0.0/src/lib.rs +1287 -0
  173. data/ext/cargo-vendor/pulley-interpreter-29.0.0/src/op.rs +279 -0
  174. data/ext/cargo-vendor/pulley-interpreter-29.0.0/src/opcode.rs +106 -0
  175. data/ext/cargo-vendor/pulley-interpreter-29.0.0/src/regs.rs +375 -0
  176. data/ext/cargo-vendor/pulley-interpreter-29.0.0/tests/all/disas.rs +189 -0
  177. data/ext/cargo-vendor/pulley-interpreter-29.0.0/tests/all/interp.rs +853 -0
  178. data/ext/cargo-vendor/rustix-0.38.44/.cargo-checksum.json +1 -0
  179. data/ext/cargo-vendor/rustix-0.38.44/Cargo.lock +1012 -0
  180. data/ext/cargo-vendor/rustix-0.38.44/Cargo.toml +308 -0
  181. data/ext/cargo-vendor/rustix-0.38.44/src/backend/libc/system/syscalls.rs +159 -0
  182. data/ext/cargo-vendor/rustix-0.38.44/src/backend/linux_raw/system/syscalls.rs +92 -0
  183. data/ext/cargo-vendor/rustix-0.38.44/src/lib.rs +408 -0
  184. data/ext/cargo-vendor/rustix-0.38.44/src/maybe_polyfill/std/mod.rs +41 -0
  185. data/ext/cargo-vendor/rustix-0.38.44/src/system.rs +284 -0
  186. data/ext/cargo-vendor/rustix-0.38.44/src/weak.rs +287 -0
  187. data/ext/cargo-vendor/rustversion-1.0.19/.cargo-checksum.json +1 -0
  188. data/ext/cargo-vendor/rustversion-1.0.19/Cargo.lock +294 -0
  189. data/ext/cargo-vendor/rustversion-1.0.19/Cargo.toml +62 -0
  190. data/ext/cargo-vendor/rustversion-1.0.19/README.md +167 -0
  191. data/ext/cargo-vendor/rustversion-1.0.19/build/build.rs +102 -0
  192. data/ext/cargo-vendor/rustversion-1.0.19/build/rustc.rs +126 -0
  193. data/ext/cargo-vendor/rustversion-1.0.19/src/attr.rs +35 -0
  194. data/ext/cargo-vendor/rustversion-1.0.19/src/bound.rs +63 -0
  195. data/ext/cargo-vendor/rustversion-1.0.19/src/constfn.rs +58 -0
  196. data/ext/cargo-vendor/rustversion-1.0.19/src/date.rs +50 -0
  197. data/ext/cargo-vendor/rustversion-1.0.19/src/error.rs +56 -0
  198. data/ext/cargo-vendor/rustversion-1.0.19/src/expand.rs +72 -0
  199. data/ext/cargo-vendor/rustversion-1.0.19/src/expr.rs +163 -0
  200. data/ext/cargo-vendor/rustversion-1.0.19/src/iter.rs +42 -0
  201. data/ext/cargo-vendor/rustversion-1.0.19/src/lib.rs +282 -0
  202. data/ext/cargo-vendor/rustversion-1.0.19/src/release.rs +34 -0
  203. data/ext/cargo-vendor/rustversion-1.0.19/src/time.rs +51 -0
  204. data/ext/cargo-vendor/rustversion-1.0.19/src/token.rs +78 -0
  205. data/ext/cargo-vendor/rustversion-1.0.19/src/version.rs +18 -0
  206. data/ext/cargo-vendor/rustversion-1.0.19/tests/test_const.rs +42 -0
  207. data/ext/cargo-vendor/rustversion-1.0.19/tests/test_eval.rs +20 -0
  208. data/ext/cargo-vendor/rustversion-1.0.19/tests/test_parse.rs +103 -0
  209. data/ext/cargo-vendor/rustversion-1.0.19/tests/ui/bad-bound.rs +7 -0
  210. data/ext/cargo-vendor/rustversion-1.0.19/tests/ui/bad-bound.stderr +11 -0
  211. data/ext/cargo-vendor/rustversion-1.0.19/tests/ui/bad-date.rs +7 -0
  212. data/ext/cargo-vendor/rustversion-1.0.19/tests/ui/bad-date.stderr +11 -0
  213. data/ext/cargo-vendor/rustversion-1.0.19/tests/ui/bad-not.rs +7 -0
  214. data/ext/cargo-vendor/rustversion-1.0.19/tests/ui/bad-not.stderr +11 -0
  215. data/ext/cargo-vendor/rustversion-1.0.19/tests/ui/bad-version.rs +7 -0
  216. data/ext/cargo-vendor/rustversion-1.0.19/tests/ui/bad-version.stderr +11 -0
  217. data/ext/cargo-vendor/rustversion-1.0.19/tests/ui/const-not-fn.rs +4 -0
  218. data/ext/cargo-vendor/rustversion-1.0.19/tests/ui/const-not-fn.stderr +5 -0
  219. data/ext/cargo-vendor/semver-1.0.25/.cargo-checksum.json +1 -0
  220. data/ext/cargo-vendor/semver-1.0.25/Cargo.lock +65 -0
  221. data/ext/cargo-vendor/semver-1.0.25/Cargo.toml +74 -0
  222. data/ext/cargo-vendor/semver-1.0.25/src/lib.rs +580 -0
  223. data/ext/cargo-vendor/serde_json-1.0.137/.cargo-checksum.json +1 -0
  224. data/ext/cargo-vendor/serde_json-1.0.137/Cargo.lock +417 -0
  225. data/ext/cargo-vendor/serde_json-1.0.137/Cargo.toml +153 -0
  226. data/ext/cargo-vendor/serde_json-1.0.137/src/lib.rs +435 -0
  227. data/ext/cargo-vendor/serde_json-1.0.137/src/value/ser.rs +1063 -0
  228. data/ext/cargo-vendor/serde_json-1.0.137/tests/compiletest.rs +7 -0
  229. data/ext/cargo-vendor/syn-2.0.96/.cargo-checksum.json +1 -0
  230. data/ext/cargo-vendor/syn-2.0.96/Cargo.lock +1749 -0
  231. data/ext/cargo-vendor/syn-2.0.96/Cargo.toml +268 -0
  232. data/ext/cargo-vendor/syn-2.0.96/src/expr.rs +4102 -0
  233. data/ext/cargo-vendor/syn-2.0.96/src/fixup.rs +770 -0
  234. data/ext/cargo-vendor/syn-2.0.96/src/lib.rs +1010 -0
  235. data/ext/cargo-vendor/syn-2.0.96/tests/test_expr.rs +1646 -0
  236. data/ext/cargo-vendor/target-lexicon-0.13.1/.cargo-checksum.json +1 -0
  237. data/ext/cargo-vendor/target-lexicon-0.13.1/Cargo.lock +96 -0
  238. data/ext/cargo-vendor/target-lexicon-0.13.1/Cargo.toml +66 -0
  239. data/ext/cargo-vendor/target-lexicon-0.13.1/README.md +24 -0
  240. data/ext/cargo-vendor/target-lexicon-0.13.1/src/host.rs +63 -0
  241. data/ext/cargo-vendor/target-lexicon-0.13.1/src/lib.rs +109 -0
  242. data/ext/cargo-vendor/target-lexicon-0.13.1/src/targets.rs +2120 -0
  243. data/ext/cargo-vendor/target-lexicon-0.13.1/src/triple.rs +554 -0
  244. data/ext/cargo-vendor/trait-variant-0.1.2/.cargo-checksum.json +1 -0
  245. data/ext/cargo-vendor/trait-variant-0.1.2/Cargo.lock +151 -0
  246. data/ext/cargo-vendor/trait-variant-0.1.2/Cargo.toml +47 -0
  247. data/ext/cargo-vendor/trait-variant-0.1.2/README.md +50 -0
  248. data/ext/cargo-vendor/trait-variant-0.1.2/examples/variant.rs +60 -0
  249. data/ext/cargo-vendor/trait-variant-0.1.2/src/lib.rs +60 -0
  250. data/ext/cargo-vendor/trait-variant-0.1.2/src/variant.rs +248 -0
  251. data/ext/cargo-vendor/unicode-ident-1.0.15/.cargo-checksum.json +1 -0
  252. data/ext/cargo-vendor/unicode-ident-1.0.15/Cargo.lock +557 -0
  253. data/ext/cargo-vendor/unicode-ident-1.0.15/Cargo.toml +80 -0
  254. data/ext/cargo-vendor/unicode-ident-1.0.15/LICENSE-APACHE +176 -0
  255. data/ext/cargo-vendor/unicode-ident-1.0.15/LICENSE-MIT +23 -0
  256. data/ext/cargo-vendor/unicode-ident-1.0.15/README.md +282 -0
  257. data/ext/cargo-vendor/unicode-ident-1.0.15/benches/xid.rs +125 -0
  258. data/ext/cargo-vendor/unicode-ident-1.0.15/src/lib.rs +269 -0
  259. data/ext/cargo-vendor/uuid-1.12.1/.cargo-checksum.json +1 -0
  260. data/ext/cargo-vendor/uuid-1.12.1/Cargo.toml +220 -0
  261. data/ext/cargo-vendor/uuid-1.12.1/README.md +90 -0
  262. data/ext/cargo-vendor/uuid-1.12.1/src/builder.rs +879 -0
  263. data/ext/cargo-vendor/uuid-1.12.1/src/error.rs +175 -0
  264. data/ext/cargo-vendor/uuid-1.12.1/src/external/arbitrary_support.rs +71 -0
  265. data/ext/cargo-vendor/uuid-1.12.1/src/external/serde_support.rs +767 -0
  266. data/ext/cargo-vendor/uuid-1.12.1/src/external/slog_support.rs +48 -0
  267. data/ext/cargo-vendor/uuid-1.12.1/src/lib.rs +1894 -0
  268. data/ext/cargo-vendor/uuid-1.12.1/src/non_nil.rs +142 -0
  269. data/ext/cargo-vendor/uuid-1.12.1/src/timestamp.rs +978 -0
  270. data/ext/cargo-vendor/uuid-1.12.1/src/v5.rs +188 -0
  271. data/ext/cargo-vendor/uuid-1.12.1/src/v7.rs +242 -0
  272. data/ext/cargo-vendor/wasi-common-29.0.0/.cargo-checksum.json +1 -0
  273. data/ext/cargo-vendor/wasi-common-29.0.0/Cargo.lock +1843 -0
  274. data/ext/cargo-vendor/wasi-common-29.0.0/Cargo.toml +252 -0
  275. data/ext/cargo-vendor/wasi-common-29.0.0/witx/preview0/wasi_unstable.witx +513 -0
  276. data/ext/cargo-vendor/wasi-common-29.0.0/witx/preview1/typenames.witx +750 -0
  277. data/ext/cargo-vendor/wasi-common-29.0.0/witx/preview1/wasi_snapshot_preview1.witx +521 -0
  278. data/ext/cargo-vendor/wasm-bindgen-0.2.100/.cargo-checksum.json +1 -0
  279. data/ext/cargo-vendor/wasm-bindgen-0.2.100/Cargo.lock +184 -0
  280. data/ext/cargo-vendor/wasm-bindgen-0.2.100/Cargo.toml +106 -0
  281. data/ext/cargo-vendor/wasm-bindgen-0.2.100/src/cache/intern.rs +100 -0
  282. data/ext/cargo-vendor/wasm-bindgen-0.2.100/src/closure.rs +915 -0
  283. data/ext/cargo-vendor/wasm-bindgen-0.2.100/src/convert/closures.rs +253 -0
  284. data/ext/cargo-vendor/wasm-bindgen-0.2.100/src/externref.rs +174 -0
  285. data/ext/cargo-vendor/wasm-bindgen-0.2.100/src/lib.rs +1778 -0
  286. data/ext/cargo-vendor/wasm-bindgen-0.2.100/src/rt/marker.rs +47 -0
  287. data/ext/cargo-vendor/wasm-bindgen-0.2.100/src/rt/mod.rs +711 -0
  288. data/ext/cargo-vendor/wasm-bindgen-backend-0.2.100/.cargo-checksum.json +1 -0
  289. data/ext/cargo-vendor/wasm-bindgen-backend-0.2.100/Cargo.lock +71 -0
  290. data/ext/cargo-vendor/wasm-bindgen-backend-0.2.100/Cargo.toml +68 -0
  291. data/ext/cargo-vendor/wasm-bindgen-backend-0.2.100/src/ast.rs +607 -0
  292. data/ext/cargo-vendor/wasm-bindgen-backend-0.2.100/src/codegen.rs +1976 -0
  293. data/ext/cargo-vendor/wasm-bindgen-backend-0.2.100/src/encode.rs +626 -0
  294. data/ext/cargo-vendor/wasm-bindgen-macro-0.2.100/.cargo-checksum.json +1 -0
  295. data/ext/cargo-vendor/wasm-bindgen-macro-0.2.100/Cargo.lock +337 -0
  296. data/ext/cargo-vendor/wasm-bindgen-macro-0.2.100/Cargo.toml +60 -0
  297. data/ext/cargo-vendor/wasm-bindgen-macro-0.2.100/src/lib.rs +75 -0
  298. data/ext/cargo-vendor/wasm-bindgen-macro-support-0.2.100/.cargo-checksum.json +1 -0
  299. data/ext/cargo-vendor/wasm-bindgen-macro-support-0.2.100/Cargo.lock +84 -0
  300. data/ext/cargo-vendor/wasm-bindgen-macro-support-0.2.100/Cargo.toml +70 -0
  301. data/ext/cargo-vendor/wasm-bindgen-macro-support-0.2.100/src/lib.rs +203 -0
  302. data/ext/cargo-vendor/wasm-bindgen-macro-support-0.2.100/src/parser.rs +2332 -0
  303. data/ext/cargo-vendor/wasm-bindgen-shared-0.2.100/.cargo-checksum.json +1 -0
  304. data/ext/cargo-vendor/wasm-bindgen-shared-0.2.100/Cargo.lock +16 -0
  305. data/ext/cargo-vendor/wasm-bindgen-shared-0.2.100/Cargo.toml +52 -0
  306. data/ext/cargo-vendor/wasm-bindgen-shared-0.2.100/src/identifier.rs +42 -0
  307. data/ext/cargo-vendor/wasm-bindgen-shared-0.2.100/src/lib.rs +239 -0
  308. data/ext/cargo-vendor/wasm-bindgen-shared-0.2.100/src/schema_hash_approval.rs +16 -0
  309. data/ext/cargo-vendor/wasm-encoder-0.224.0/.cargo-checksum.json +1 -0
  310. data/ext/cargo-vendor/wasm-encoder-0.224.0/Cargo.lock +248 -0
  311. data/ext/cargo-vendor/wasm-encoder-0.224.0/Cargo.toml +82 -0
  312. data/ext/cargo-vendor/wasm-encoder-0.224.0/src/component/types.rs +792 -0
  313. data/ext/cargo-vendor/wasm-encoder-0.224.0/src/reencode/component.rs +1446 -0
  314. data/ext/cargo-vendor/wasmparser-0.224.0/.cargo-checksum.json +1 -0
  315. data/ext/cargo-vendor/wasmparser-0.224.0/Cargo.lock +646 -0
  316. data/ext/cargo-vendor/wasmparser-0.224.0/Cargo.toml +139 -0
  317. data/ext/cargo-vendor/wasmparser-0.224.0/src/readers/component/types.rs +574 -0
  318. data/ext/cargo-vendor/wasmparser-0.224.0/src/validator/component.rs +4019 -0
  319. data/ext/cargo-vendor/wasmparser-0.224.0/src/validator/component_types.rs +3388 -0
  320. data/ext/cargo-vendor/wasmtime-29.0.0/.cargo-checksum.json +1 -0
  321. data/ext/cargo-vendor/wasmtime-29.0.0/Cargo.lock +1914 -0
  322. data/ext/cargo-vendor/wasmtime-29.0.0/Cargo.toml +477 -0
  323. data/ext/cargo-vendor/wasmtime-29.0.0/src/compile/code_builder.rs +317 -0
  324. data/ext/cargo-vendor/wasmtime-29.0.0/src/compile/runtime.rs +208 -0
  325. data/ext/cargo-vendor/wasmtime-29.0.0/src/compile.rs +888 -0
  326. data/ext/cargo-vendor/wasmtime-29.0.0/src/config.rs +3461 -0
  327. data/ext/cargo-vendor/wasmtime-29.0.0/src/engine/serialization.rs +947 -0
  328. data/ext/cargo-vendor/wasmtime-29.0.0/src/engine.rs +858 -0
  329. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/code_memory.rs +470 -0
  330. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/component/bindgen_examples/_7_async.rs +47 -0
  331. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/component/bindgen_examples/mod.rs +557 -0
  332. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/component/func/host.rs +455 -0
  333. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/component/func/typed.rs +2469 -0
  334. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/component/mod.rs +670 -0
  335. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/externals/global.rs +312 -0
  336. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/func/typed.rs +788 -0
  337. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/func.rs +2674 -0
  338. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/instance.rs +988 -0
  339. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/memory.rs +1092 -0
  340. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/module/registry.rs +344 -0
  341. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/profiling.rs +280 -0
  342. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/store.rs +2988 -0
  343. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/trampoline/global.rs +70 -0
  344. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/trampoline/memory.rs +261 -0
  345. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/trap.rs +620 -0
  346. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/values.rs +1092 -0
  347. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/arch/arm.rs +28 -0
  348. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/arch/mod.rs +48 -0
  349. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/arch/unsupported.rs +28 -0
  350. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/arch/x86.rs +39 -0
  351. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/component/libcalls.rs +559 -0
  352. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/component.rs +873 -0
  353. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/cow.rs +1144 -0
  354. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/gc/enabled/drc.rs +1094 -0
  355. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/helpers.c +207 -0
  356. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/instance/allocator/pooling/memory_pool.rs +1016 -0
  357. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/instance/allocator/pooling/table_pool.rs +255 -0
  358. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/instance/allocator/pooling/unix_stack_pool.rs +307 -0
  359. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/instance/allocator/pooling.rs +798 -0
  360. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/interpreter.rs +351 -0
  361. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/interpreter_disabled.rs +49 -0
  362. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/libcalls.rs +1346 -0
  363. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/memory/malloc.rs +203 -0
  364. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/memory/mmap.rs +235 -0
  365. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/memory/static_.rs +78 -0
  366. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/memory.rs +751 -0
  367. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/mmap.rs +443 -0
  368. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/mmap_vec.rs +265 -0
  369. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/sys/custom/mmap.rs +140 -0
  370. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/sys/custom/vm.rs +102 -0
  371. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/sys/miri/mmap.rs +124 -0
  372. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/sys/miri/vm.rs +55 -0
  373. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/sys/unix/mmap.rs +210 -0
  374. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/sys/unix/signals.rs +491 -0
  375. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/sys/unix/unwind.rs +135 -0
  376. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/sys/unix/vm.rs +174 -0
  377. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/sys/windows/mmap.rs +246 -0
  378. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/sys/windows/mod.rs +29 -0
  379. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/sys/windows/traphandlers.rs +141 -0
  380. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/sys/windows/unwind32.rs +23 -0
  381. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/sys/windows/vm.rs +71 -0
  382. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/traphandlers/backtrace.rs +274 -0
  383. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/traphandlers/coredump_enabled.rs +43 -0
  384. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/traphandlers/signals.rs +64 -0
  385. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/traphandlers.rs +955 -0
  386. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/unwind.rs +56 -0
  387. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/vmcontext.rs +1364 -0
  388. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm.rs +411 -0
  389. data/ext/cargo-vendor/wasmtime-asm-macros-29.0.0/.cargo-checksum.json +1 -0
  390. data/ext/cargo-vendor/wasmtime-asm-macros-29.0.0/Cargo.lock +16 -0
  391. data/ext/cargo-vendor/wasmtime-asm-macros-29.0.0/Cargo.toml +34 -0
  392. data/ext/cargo-vendor/wasmtime-cache-29.0.0/.cargo-checksum.json +1 -0
  393. data/ext/cargo-vendor/wasmtime-cache-29.0.0/Cargo.lock +767 -0
  394. data/ext/cargo-vendor/wasmtime-cache-29.0.0/Cargo.toml +122 -0
  395. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/.cargo-checksum.json +1 -0
  396. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/Cargo.lock +277 -0
  397. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/Cargo.toml +129 -0
  398. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/char.rs +387 -0
  399. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/char_async.rs +413 -0
  400. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/char_tracing_async.rs +460 -0
  401. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/conventions.rs +824 -0
  402. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/conventions_async.rs +898 -0
  403. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/conventions_tracing_async.rs +1189 -0
  404. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/dead-code.rs +279 -0
  405. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/dead-code_async.rs +298 -0
  406. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/dead-code_tracing_async.rs +311 -0
  407. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/direct-import_async.rs +218 -0
  408. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/direct-import_tracing_async.rs +231 -0
  409. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/flags.rs +859 -0
  410. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/flags_async.rs +920 -0
  411. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/flags_tracing_async.rs +1095 -0
  412. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/floats.rs +447 -0
  413. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/floats_async.rs +487 -0
  414. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/floats_tracing_async.rs +581 -0
  415. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/host-world_async.rs +218 -0
  416. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/host-world_tracing_async.rs +231 -0
  417. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/integers.rs +989 -0
  418. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/integers_async.rs +1127 -0
  419. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/integers_tracing_async.rs +1554 -0
  420. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/lists.rs +2032 -0
  421. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/lists_async.rs +2287 -0
  422. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/lists_tracing_async.rs +2979 -0
  423. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/many-arguments.rs +730 -0
  424. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/many-arguments_async.rs +757 -0
  425. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/many-arguments_tracing_async.rs +818 -0
  426. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/multi-return.rs +475 -0
  427. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/multi-return_async.rs +518 -0
  428. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/multi-return_tracing_async.rs +632 -0
  429. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/multiversion.rs +508 -0
  430. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/multiversion_async.rs +535 -0
  431. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/multiversion_tracing_async.rs +583 -0
  432. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/path1.rs +208 -0
  433. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/path1_async.rs +220 -0
  434. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/path1_tracing_async.rs +220 -0
  435. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/path2.rs +208 -0
  436. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/path2_async.rs +220 -0
  437. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/path2_tracing_async.rs +220 -0
  438. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/records.rs +1056 -0
  439. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/records_async.rs +1145 -0
  440. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/records_tracing_async.rs +1405 -0
  441. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/rename.rs +268 -0
  442. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/rename_async.rs +287 -0
  443. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/rename_tracing_async.rs +300 -0
  444. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/resources-export.rs +879 -0
  445. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/resources-export_async.rs +935 -0
  446. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/resources-export_tracing_async.rs +1009 -0
  447. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/resources-import.rs +1217 -0
  448. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/resources-import_async.rs +1350 -0
  449. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/resources-import_tracing_async.rs +1763 -0
  450. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/share-types.rs +429 -0
  451. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/share-types_async.rs +451 -0
  452. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/share-types_tracing_async.rs +475 -0
  453. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/simple-functions.rs +522 -0
  454. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/simple-functions_async.rs +573 -0
  455. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/simple-functions_tracing_async.rs +717 -0
  456. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/simple-lists.rs +545 -0
  457. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/simple-lists_async.rs +589 -0
  458. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/simple-lists_tracing_async.rs +686 -0
  459. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/simple-wasi.rs +331 -0
  460. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/simple-wasi_async.rs +352 -0
  461. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/simple-wasi_tracing_async.rs +378 -0
  462. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/small-anonymous.rs +454 -0
  463. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/small-anonymous_async.rs +473 -0
  464. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/small-anonymous_tracing_async.rs +495 -0
  465. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/smoke-export.rs +263 -0
  466. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/smoke-export_async.rs +272 -0
  467. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/smoke-export_tracing_async.rs +280 -0
  468. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/smoke.rs +218 -0
  469. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/smoke_async.rs +232 -0
  470. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/smoke_tracing_async.rs +245 -0
  471. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/strings.rs +432 -0
  472. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/strings_async.rs +465 -0
  473. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/strings_tracing_async.rs +537 -0
  474. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/unstable-features.rs +482 -0
  475. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/unstable-features_async.rs +523 -0
  476. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/unstable-features_tracing_async.rs +581 -0
  477. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/unversioned-foo.rs +250 -0
  478. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/unversioned-foo_async.rs +264 -0
  479. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/unversioned-foo_tracing_async.rs +277 -0
  480. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/use-paths.rs +402 -0
  481. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/use-paths_async.rs +438 -0
  482. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/use-paths_tracing_async.rs +490 -0
  483. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/variants.rs +2016 -0
  484. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/variants_async.rs +2182 -0
  485. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/variants_tracing_async.rs +2704 -0
  486. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/wat.rs +265 -0
  487. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/wat_async.rs +271 -0
  488. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/wat_tracing_async.rs +271 -0
  489. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/worlds-with-types.rs +263 -0
  490. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/worlds-with-types_async.rs +278 -0
  491. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/worlds-with-types_tracing_async.rs +286 -0
  492. data/ext/cargo-vendor/wasmtime-component-util-29.0.0/.cargo-checksum.json +1 -0
  493. data/ext/cargo-vendor/wasmtime-component-util-29.0.0/Cargo.lock +7 -0
  494. data/ext/cargo-vendor/wasmtime-component-util-29.0.0/Cargo.toml +37 -0
  495. data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/.cargo-checksum.json +1 -0
  496. data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/Cargo.lock +647 -0
  497. data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/Cargo.toml +170 -0
  498. data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/compiler/component.rs +996 -0
  499. data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/compiler.rs +1192 -0
  500. data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/debug/gc.rs +288 -0
  501. data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/debug/transform/attr.rs +453 -0
  502. data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/debug/transform/debug_transform_logging.rs +276 -0
  503. data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/debug/transform/mod.rs +274 -0
  504. data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/debug/transform/unit.rs +539 -0
  505. data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/debug/transform/utils.rs +62 -0
  506. data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/func_environ.rs +3435 -0
  507. data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/gc/enabled/drc.rs +747 -0
  508. data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/gc/enabled/null.rs +285 -0
  509. data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/gc/enabled.rs +1496 -0
  510. data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/lib.rs +430 -0
  511. data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/obj.rs +657 -0
  512. data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/translate/code_translator/bounds_checks.rs +798 -0
  513. data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/translate/code_translator.rs +4082 -0
  514. data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/translate/environ/mod.rs +6 -0
  515. data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/translate/environ/spec.rs +55 -0
  516. data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/translate/func_translator.rs +284 -0
  517. data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/translate/mod.rs +26 -0
  518. data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/translate/state.rs +546 -0
  519. data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/translate/table.rs +122 -0
  520. data/ext/cargo-vendor/wasmtime-environ-29.0.0/.cargo-checksum.json +1 -0
  521. data/ext/cargo-vendor/wasmtime-environ-29.0.0/Cargo.lock +713 -0
  522. data/ext/cargo-vendor/wasmtime-environ-29.0.0/Cargo.toml +217 -0
  523. data/ext/cargo-vendor/wasmtime-environ-29.0.0/src/builtin.rs +385 -0
  524. data/ext/cargo-vendor/wasmtime-environ-29.0.0/src/compile/mod.rs +390 -0
  525. data/ext/cargo-vendor/wasmtime-environ-29.0.0/src/compile/module_artifacts.rs +318 -0
  526. data/ext/cargo-vendor/wasmtime-environ-29.0.0/src/component/info.rs +693 -0
  527. data/ext/cargo-vendor/wasmtime-environ-29.0.0/src/component/vmcomponent_offsets.rs +316 -0
  528. data/ext/cargo-vendor/wasmtime-environ-29.0.0/src/component.rs +108 -0
  529. data/ext/cargo-vendor/wasmtime-environ-29.0.0/src/demangling.rs +31 -0
  530. data/ext/cargo-vendor/wasmtime-environ-29.0.0/src/ext.rs +40 -0
  531. data/ext/cargo-vendor/wasmtime-environ-29.0.0/src/hostcall.rs +59 -0
  532. data/ext/cargo-vendor/wasmtime-environ-29.0.0/src/lib.rs +74 -0
  533. data/ext/cargo-vendor/wasmtime-environ-29.0.0/src/module_artifacts.rs +142 -0
  534. data/ext/cargo-vendor/wasmtime-environ-29.0.0/src/tunables.rs +244 -0
  535. data/ext/cargo-vendor/wasmtime-environ-29.0.0/src/vmoffsets.rs +903 -0
  536. data/ext/cargo-vendor/wasmtime-fiber-29.0.0/.cargo-checksum.json +1 -0
  537. data/ext/cargo-vendor/wasmtime-fiber-29.0.0/Cargo.lock +279 -0
  538. data/ext/cargo-vendor/wasmtime-fiber-29.0.0/Cargo.toml +101 -0
  539. data/ext/cargo-vendor/wasmtime-jit-debug-29.0.0/.cargo-checksum.json +1 -0
  540. data/ext/cargo-vendor/wasmtime-jit-debug-29.0.0/Cargo.lock +187 -0
  541. data/ext/cargo-vendor/wasmtime-jit-debug-29.0.0/Cargo.toml +95 -0
  542. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-29.0.0/.cargo-checksum.json +1 -0
  543. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-29.0.0/Cargo.lock +104 -0
  544. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-29.0.0/Cargo.toml +85 -0
  545. data/ext/cargo-vendor/wasmtime-math-29.0.0/.cargo-checksum.json +1 -0
  546. data/ext/cargo-vendor/wasmtime-math-29.0.0/Cargo.lock +16 -0
  547. data/ext/cargo-vendor/wasmtime-math-29.0.0/Cargo.toml +72 -0
  548. data/ext/cargo-vendor/wasmtime-math-29.0.0/src/lib.rs +281 -0
  549. data/ext/cargo-vendor/wasmtime-slab-29.0.0/.cargo-checksum.json +1 -0
  550. data/ext/cargo-vendor/wasmtime-slab-29.0.0/Cargo.lock +7 -0
  551. data/ext/cargo-vendor/wasmtime-slab-29.0.0/Cargo.toml +64 -0
  552. data/ext/cargo-vendor/wasmtime-versioned-export-macros-29.0.0/.cargo-checksum.json +1 -0
  553. data/ext/cargo-vendor/wasmtime-versioned-export-macros-29.0.0/Cargo.lock +47 -0
  554. data/ext/cargo-vendor/wasmtime-versioned-export-macros-29.0.0/Cargo.toml +42 -0
  555. data/ext/cargo-vendor/wasmtime-wasi-29.0.0/.cargo-checksum.json +1 -0
  556. data/ext/cargo-vendor/wasmtime-wasi-29.0.0/Cargo.lock +2112 -0
  557. data/ext/cargo-vendor/wasmtime-wasi-29.0.0/Cargo.toml +238 -0
  558. data/ext/cargo-vendor/wasmtime-wasi-29.0.0/src/bindings.rs +565 -0
  559. data/ext/cargo-vendor/wasmtime-wasi-29.0.0/src/host/filesystem.rs +1088 -0
  560. data/ext/cargo-vendor/wasmtime-wasi-29.0.0/src/host/io.rs +370 -0
  561. data/ext/cargo-vendor/wasmtime-wasi-29.0.0/src/host/tcp.rs +546 -0
  562. data/ext/cargo-vendor/wasmtime-wasi-29.0.0/src/host/udp.rs +760 -0
  563. data/ext/cargo-vendor/wasmtime-wasi-29.0.0/src/ip_name_lookup.rs +130 -0
  564. data/ext/cargo-vendor/wasmtime-wasi-29.0.0/src/pipe.rs +836 -0
  565. data/ext/cargo-vendor/wasmtime-wasi-29.0.0/src/poll.rs +243 -0
  566. data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/cli/command.wit +10 -0
  567. data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/cli/imports.wit +36 -0
  568. data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/cli/stdio.wit +26 -0
  569. data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/clocks/monotonic-clock.wit +50 -0
  570. data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/clocks/timezone.wit +55 -0
  571. data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/clocks/wall-clock.wit +46 -0
  572. data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/clocks/world.wit +11 -0
  573. data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/filesystem/preopens.wit +11 -0
  574. data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/filesystem/types.wit +672 -0
  575. data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/filesystem/world.wit +9 -0
  576. data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/io/error.wit +34 -0
  577. data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/io/poll.wit +47 -0
  578. data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/io/streams.wit +290 -0
  579. data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/io/world.wit +10 -0
  580. data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/random/insecure-seed.wit +27 -0
  581. data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/random/insecure.wit +25 -0
  582. data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/random/random.wit +29 -0
  583. data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/random/world.wit +13 -0
  584. data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/sockets/ip-name-lookup.wit +56 -0
  585. data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/sockets/network.wit +169 -0
  586. data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/sockets/tcp.wit +387 -0
  587. data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/sockets/udp.wit +288 -0
  588. data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/sockets/world.wit +19 -0
  589. data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/test.wit +13 -0
  590. data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/world.wit +6 -0
  591. data/ext/cargo-vendor/wasmtime-wasi-29.0.0/witx/preview0/wasi_unstable.witx +513 -0
  592. data/ext/cargo-vendor/wasmtime-wasi-29.0.0/witx/preview1/typenames.witx +750 -0
  593. data/ext/cargo-vendor/wasmtime-wasi-29.0.0/witx/preview1/wasi_snapshot_preview1.witx +521 -0
  594. data/ext/cargo-vendor/wasmtime-winch-29.0.0/.cargo-checksum.json +1 -0
  595. data/ext/cargo-vendor/wasmtime-winch-29.0.0/Cargo.lock +587 -0
  596. data/ext/cargo-vendor/wasmtime-winch-29.0.0/Cargo.toml +120 -0
  597. data/ext/cargo-vendor/wasmtime-winch-29.0.0/src/builder.rs +100 -0
  598. data/ext/cargo-vendor/wasmtime-wit-bindgen-29.0.0/.cargo-checksum.json +1 -0
  599. data/ext/cargo-vendor/wasmtime-wit-bindgen-29.0.0/Cargo.lock +185 -0
  600. data/ext/cargo-vendor/wasmtime-wit-bindgen-29.0.0/Cargo.toml +80 -0
  601. data/ext/cargo-vendor/wasmtime-wit-bindgen-29.0.0/src/lib.rs +3356 -0
  602. data/ext/cargo-vendor/wast-224.0.0/.cargo-checksum.json +1 -0
  603. data/ext/cargo-vendor/wast-224.0.0/Cargo.lock +518 -0
  604. data/ext/cargo-vendor/wast-224.0.0/Cargo.toml +111 -0
  605. data/ext/cargo-vendor/wast-224.0.0/src/component/binary.rs +959 -0
  606. data/ext/cargo-vendor/wast-224.0.0/src/component/expand.rs +1078 -0
  607. data/ext/cargo-vendor/wast-224.0.0/src/component/resolve.rs +1178 -0
  608. data/ext/cargo-vendor/wast-224.0.0/src/component/types.rs +1041 -0
  609. data/ext/cargo-vendor/wat-1.224.0/.cargo-checksum.json +1 -0
  610. data/ext/cargo-vendor/wat-1.224.0/Cargo.lock +126 -0
  611. data/ext/cargo-vendor/wat-1.224.0/Cargo.toml +61 -0
  612. data/ext/cargo-vendor/wiggle-29.0.0/.cargo-checksum.json +1 -0
  613. data/ext/cargo-vendor/wiggle-29.0.0/Cargo.lock +1233 -0
  614. data/ext/cargo-vendor/wiggle-29.0.0/Cargo.toml +133 -0
  615. data/ext/cargo-vendor/wiggle-generate-29.0.0/.cargo-checksum.json +1 -0
  616. data/ext/cargo-vendor/wiggle-generate-29.0.0/Cargo.lock +223 -0
  617. data/ext/cargo-vendor/wiggle-generate-29.0.0/Cargo.toml +99 -0
  618. data/ext/cargo-vendor/wiggle-macro-29.0.0/.cargo-checksum.json +1 -0
  619. data/ext/cargo-vendor/wiggle-macro-29.0.0/Cargo.lock +235 -0
  620. data/ext/cargo-vendor/wiggle-macro-29.0.0/Cargo.toml +92 -0
  621. data/ext/cargo-vendor/winch-codegen-29.0.0/.cargo-checksum.json +1 -0
  622. data/ext/cargo-vendor/winch-codegen-29.0.0/Cargo.lock +559 -0
  623. data/ext/cargo-vendor/winch-codegen-29.0.0/Cargo.toml +118 -0
  624. data/ext/cargo-vendor/winch-codegen-29.0.0/src/abi/mod.rs +666 -0
  625. data/ext/cargo-vendor/winch-codegen-29.0.0/src/codegen/bounds.rs +230 -0
  626. data/ext/cargo-vendor/winch-codegen-29.0.0/src/codegen/builtin.rs +274 -0
  627. data/ext/cargo-vendor/winch-codegen-29.0.0/src/codegen/call.rs +444 -0
  628. data/ext/cargo-vendor/winch-codegen-29.0.0/src/codegen/context.rs +710 -0
  629. data/ext/cargo-vendor/winch-codegen-29.0.0/src/codegen/control.rs +1055 -0
  630. data/ext/cargo-vendor/winch-codegen-29.0.0/src/codegen/error.rs +182 -0
  631. data/ext/cargo-vendor/winch-codegen-29.0.0/src/codegen/mod.rs +1304 -0
  632. data/ext/cargo-vendor/winch-codegen-29.0.0/src/frame/mod.rs +294 -0
  633. data/ext/cargo-vendor/winch-codegen-29.0.0/src/isa/aarch64/abi.rs +299 -0
  634. data/ext/cargo-vendor/winch-codegen-29.0.0/src/isa/aarch64/asm.rs +1085 -0
  635. data/ext/cargo-vendor/winch-codegen-29.0.0/src/isa/aarch64/masm.rs +886 -0
  636. data/ext/cargo-vendor/winch-codegen-29.0.0/src/isa/aarch64/mod.rs +175 -0
  637. data/ext/cargo-vendor/winch-codegen-29.0.0/src/isa/mod.rs +338 -0
  638. data/ext/cargo-vendor/winch-codegen-29.0.0/src/isa/x64/abi.rs +494 -0
  639. data/ext/cargo-vendor/winch-codegen-29.0.0/src/isa/x64/asm.rs +1478 -0
  640. data/ext/cargo-vendor/winch-codegen-29.0.0/src/isa/x64/masm.rs +1361 -0
  641. data/ext/cargo-vendor/winch-codegen-29.0.0/src/isa/x64/mod.rs +176 -0
  642. data/ext/cargo-vendor/winch-codegen-29.0.0/src/masm.rs +1131 -0
  643. data/ext/cargo-vendor/winch-codegen-29.0.0/src/regalloc.rs +74 -0
  644. data/ext/cargo-vendor/winch-codegen-29.0.0/src/stack.rs +458 -0
  645. data/ext/cargo-vendor/winch-codegen-29.0.0/src/visitor.rs +2312 -0
  646. data/ext/cargo-vendor/winnow-0.6.24/.cargo-checksum.json +1 -0
  647. data/ext/cargo-vendor/winnow-0.6.24/Cargo.lock +1567 -0
  648. data/ext/cargo-vendor/winnow-0.6.24/Cargo.toml +359 -0
  649. data/ext/cargo-vendor/winnow-0.6.24/examples/json/parser_partial.rs +350 -0
  650. data/ext/cargo-vendor/winnow-0.6.24/src/_topic/nom.rs +104 -0
  651. data/ext/cargo-vendor/winnow-0.6.24/src/_topic/stream.rs +65 -0
  652. data/ext/cargo-vendor/winnow-0.6.24/src/_topic/why.rs +127 -0
  653. data/ext/cargo-vendor/winnow-0.6.24/src/ascii/mod.rs +1895 -0
  654. data/ext/cargo-vendor/winnow-0.6.24/src/binary/bits/mod.rs +412 -0
  655. data/ext/cargo-vendor/winnow-0.6.24/src/binary/bits/tests.rs +192 -0
  656. data/ext/cargo-vendor/winnow-0.6.24/src/combinator/core.rs +528 -0
  657. data/ext/cargo-vendor/winnow-0.6.24/src/combinator/impls.rs +728 -0
  658. data/ext/cargo-vendor/winnow-0.6.24/src/combinator/mod.rs +182 -0
  659. data/ext/cargo-vendor/winnow-0.6.24/src/combinator/multi.rs +1612 -0
  660. data/ext/cargo-vendor/winnow-0.6.24/src/combinator/tests.rs +1373 -0
  661. data/ext/cargo-vendor/winnow-0.6.24/src/error.rs +1422 -0
  662. data/ext/cargo-vendor/winnow-0.6.24/src/lib.rs +166 -0
  663. data/ext/cargo-vendor/winnow-0.6.24/src/macros/mod.rs +5 -0
  664. data/ext/cargo-vendor/winnow-0.6.24/src/parser.rs +1373 -0
  665. data/ext/cargo-vendor/winnow-0.6.24/src/stream/mod.rs +3827 -0
  666. data/ext/cargo-vendor/winnow-0.6.24/src/token/mod.rs +1105 -0
  667. data/ext/cargo-vendor/winnow-0.6.24/src/token/tests.rs +863 -0
  668. data/lib/wasmtime/version.rb +1 -1
  669. metadata +2408 -2300
  670. data/ext/cargo-vendor/bitflags-2.6.0/.cargo-checksum.json +0 -1
  671. data/ext/cargo-vendor/bitflags-2.6.0/CHANGELOG.md +0 -553
  672. data/ext/cargo-vendor/bitflags-2.6.0/Cargo.lock +0 -383
  673. data/ext/cargo-vendor/bitflags-2.6.0/Cargo.toml +0 -96
  674. data/ext/cargo-vendor/bitflags-2.6.0/README.md +0 -77
  675. data/ext/cargo-vendor/bitflags-2.6.0/examples/custom_derive.rs +0 -23
  676. data/ext/cargo-vendor/bitflags-2.6.0/src/external/arbitrary.rs +0 -33
  677. data/ext/cargo-vendor/bitflags-2.6.0/src/lib.rs +0 -927
  678. data/ext/cargo-vendor/bitflags-2.6.0/src/tests.rs +0 -131
  679. data/ext/cargo-vendor/bitflags-2.6.0/src/traits.rs +0 -431
  680. data/ext/cargo-vendor/cc-1.2.7/.cargo-checksum.json +0 -1
  681. data/ext/cargo-vendor/cc-1.2.7/CHANGELOG.md +0 -352
  682. data/ext/cargo-vendor/cc-1.2.7/Cargo.lock +0 -191
  683. data/ext/cargo-vendor/cc-1.2.7/Cargo.toml +0 -67
  684. data/ext/cargo-vendor/cc-1.2.7/src/flags.rs +0 -480
  685. data/ext/cargo-vendor/cc-1.2.7/src/lib.rs +0 -4210
  686. data/ext/cargo-vendor/cc-1.2.7/src/target/generated.rs +0 -3343
  687. data/ext/cargo-vendor/cc-1.2.7/src/tool.rs +0 -478
  688. data/ext/cargo-vendor/cc-1.2.7/src/windows/windows_sys.rs +0 -121
  689. data/ext/cargo-vendor/cpufeatures-0.2.16/.cargo-checksum.json +0 -1
  690. data/ext/cargo-vendor/cpufeatures-0.2.16/CHANGELOG.md +0 -162
  691. data/ext/cargo-vendor/cpufeatures-0.2.16/Cargo.lock +0 -16
  692. data/ext/cargo-vendor/cpufeatures-0.2.16/Cargo.toml +0 -67
  693. data/ext/cargo-vendor/cpufeatures-0.2.16/LICENSE-MIT +0 -25
  694. data/ext/cargo-vendor/cpufeatures-0.2.16/README.md +0 -126
  695. data/ext/cargo-vendor/cranelift-bforest-0.115.0/.cargo-checksum.json +0 -1
  696. data/ext/cargo-vendor/cranelift-bforest-0.115.0/Cargo.toml +0 -70
  697. data/ext/cargo-vendor/cranelift-bitset-0.115.0/.cargo-checksum.json +0 -1
  698. data/ext/cargo-vendor/cranelift-bitset-0.115.0/Cargo.toml +0 -85
  699. data/ext/cargo-vendor/cranelift-bitset-0.115.0/src/scalar.rs +0 -626
  700. data/ext/cargo-vendor/cranelift-codegen-0.115.0/.cargo-checksum.json +0 -1
  701. data/ext/cargo-vendor/cranelift-codegen-0.115.0/Cargo.toml +0 -238
  702. data/ext/cargo-vendor/cranelift-codegen-0.115.0/build.rs +0 -255
  703. data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/binemit/mod.rs +0 -173
  704. data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/ir/immediates.rs +0 -1941
  705. data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/aarch64/abi.rs +0 -1536
  706. data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/aarch64/inst/args.rs +0 -711
  707. data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/aarch64/inst/emit.rs +0 -3567
  708. data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/aarch64/inst/emit_tests.rs +0 -7972
  709. data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/aarch64/inst/mod.rs +0 -3056
  710. data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/aarch64/inst/regs.rs +0 -269
  711. data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/aarch64/inst.isle +0 -5097
  712. data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/aarch64/lower/isle.rs +0 -752
  713. data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/aarch64/lower.isle +0 -3123
  714. data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/aarch64/mod.rs +0 -260
  715. data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/mod.rs +0 -472
  716. data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/pulley_shared/abi.rs +0 -762
  717. data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/pulley_shared/inst/args.rs +0 -226
  718. data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/pulley_shared/inst/emit.rs +0 -598
  719. data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/pulley_shared/inst/mod.rs +0 -976
  720. data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/pulley_shared/inst/regs.rs +0 -164
  721. data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/pulley_shared/inst.isle +0 -589
  722. data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/pulley_shared/lower/isle.rs +0 -148
  723. data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/pulley_shared/lower.isle +0 -251
  724. data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/pulley_shared/mod.rs +0 -281
  725. data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/riscv64/abi.rs +0 -989
  726. data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/riscv64/inst/args.rs +0 -1957
  727. data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/riscv64/inst/emit_tests.rs +0 -2277
  728. data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/s390x/abi.rs +0 -1397
  729. data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/s390x/inst/emit.rs +0 -3426
  730. data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/x64/abi.rs +0 -1384
  731. data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/x64/inst.isle +0 -5758
  732. data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/x64/lower/isle/generated_code.rs +0 -15
  733. data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/x64/lower/isle.rs +0 -1001
  734. data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isle_prelude.rs +0 -1144
  735. data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/machinst/abi.rs +0 -2451
  736. data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/machinst/buffer.rs +0 -2496
  737. data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/machinst/lower.rs +0 -1602
  738. data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/prelude.isle +0 -827
  739. data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/prelude_lower.isle +0 -1116
  740. data/ext/cargo-vendor/cranelift-codegen-meta-0.115.0/.cargo-checksum.json +0 -1
  741. data/ext/cargo-vendor/cranelift-codegen-meta-0.115.0/Cargo.toml +0 -65
  742. data/ext/cargo-vendor/cranelift-codegen-meta-0.115.0/src/cdsl/instructions.rs +0 -494
  743. data/ext/cargo-vendor/cranelift-codegen-meta-0.115.0/src/isa/pulley.rs +0 -14
  744. data/ext/cargo-vendor/cranelift-codegen-meta-0.115.0/src/isle.rs +0 -182
  745. data/ext/cargo-vendor/cranelift-codegen-meta-0.115.0/src/lib.rs +0 -98
  746. data/ext/cargo-vendor/cranelift-codegen-meta-0.115.0/src/shared/instructions.rs +0 -3786
  747. data/ext/cargo-vendor/cranelift-codegen-shared-0.115.0/.cargo-checksum.json +0 -1
  748. data/ext/cargo-vendor/cranelift-codegen-shared-0.115.0/Cargo.toml +0 -33
  749. data/ext/cargo-vendor/cranelift-control-0.115.0/.cargo-checksum.json +0 -1
  750. data/ext/cargo-vendor/cranelift-control-0.115.0/Cargo.toml +0 -44
  751. data/ext/cargo-vendor/cranelift-entity-0.115.0/.cargo-checksum.json +0 -1
  752. data/ext/cargo-vendor/cranelift-entity-0.115.0/Cargo.toml +0 -86
  753. data/ext/cargo-vendor/cranelift-entity-0.115.0/src/sparse.rs +0 -367
  754. data/ext/cargo-vendor/cranelift-frontend-0.115.0/.cargo-checksum.json +0 -1
  755. data/ext/cargo-vendor/cranelift-frontend-0.115.0/Cargo.toml +0 -108
  756. data/ext/cargo-vendor/cranelift-isle-0.115.0/.cargo-checksum.json +0 -1
  757. data/ext/cargo-vendor/cranelift-isle-0.115.0/Cargo.toml +0 -80
  758. data/ext/cargo-vendor/cranelift-native-0.115.0/.cargo-checksum.json +0 -1
  759. data/ext/cargo-vendor/cranelift-native-0.115.0/Cargo.toml +0 -53
  760. data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.28/.cargo-checksum.json +0 -1
  761. data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.28/Cargo.toml +0 -70
  762. data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.28/README.md +0 -52
  763. data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.28/tests/common/mod.rs +0 -33
  764. data/ext/cargo-vendor/indexmap-2.7.0/.cargo-checksum.json +0 -1
  765. data/ext/cargo-vendor/indexmap-2.7.0/Cargo.toml +0 -153
  766. data/ext/cargo-vendor/indexmap-2.7.0/RELEASES.md +0 -536
  767. data/ext/cargo-vendor/indexmap-2.7.0/src/lib.rs +0 -274
  768. data/ext/cargo-vendor/indexmap-2.7.0/src/map/core/entry.rs +0 -569
  769. data/ext/cargo-vendor/indexmap-2.7.0/src/map/core.rs +0 -722
  770. data/ext/cargo-vendor/indexmap-2.7.0/src/map/iter.rs +0 -775
  771. data/ext/cargo-vendor/indexmap-2.7.0/src/map.rs +0 -1578
  772. data/ext/cargo-vendor/indexmap-2.7.0/src/set/iter.rs +0 -627
  773. data/ext/cargo-vendor/indexmap-2.7.0/src/set.rs +0 -1290
  774. data/ext/cargo-vendor/indexmap-2.7.0/src/util.rs +0 -53
  775. data/ext/cargo-vendor/ipnet-2.10.1/.cargo-checksum.json +0 -1
  776. data/ext/cargo-vendor/ipnet-2.10.1/Cargo.toml +0 -68
  777. data/ext/cargo-vendor/ipnet-2.10.1/src/ipext.rs +0 -995
  778. data/ext/cargo-vendor/ipnet-2.10.1/src/ipnet.rs +0 -2002
  779. data/ext/cargo-vendor/ipnet-2.10.1/src/lib.rs +0 -108
  780. data/ext/cargo-vendor/js-sys-0.3.76/.cargo-checksum.json +0 -1
  781. data/ext/cargo-vendor/js-sys-0.3.76/Cargo.toml +0 -69
  782. data/ext/cargo-vendor/js-sys-0.3.76/src/lib.rs +0 -6426
  783. data/ext/cargo-vendor/log-0.4.22/.cargo-checksum.json +0 -1
  784. data/ext/cargo-vendor/log-0.4.22/CHANGELOG.md +0 -324
  785. data/ext/cargo-vendor/log-0.4.22/Cargo.toml +0 -139
  786. data/ext/cargo-vendor/log-0.4.22/README.md +0 -130
  787. data/ext/cargo-vendor/log-0.4.22/src/kv/key.rs +0 -143
  788. data/ext/cargo-vendor/log-0.4.22/src/kv/mod.rs +0 -265
  789. data/ext/cargo-vendor/log-0.4.22/src/kv/value.rs +0 -1394
  790. data/ext/cargo-vendor/log-0.4.22/src/lib.rs +0 -1878
  791. data/ext/cargo-vendor/log-0.4.22/src/serde.rs +0 -397
  792. data/ext/cargo-vendor/miniz_oxide-0.8.2/.cargo-checksum.json +0 -1
  793. data/ext/cargo-vendor/miniz_oxide-0.8.2/Cargo.toml +0 -87
  794. data/ext/cargo-vendor/miniz_oxide-0.8.2/LICENSE +0 -21
  795. data/ext/cargo-vendor/miniz_oxide-0.8.2/LICENSE-MIT.md +0 -21
  796. data/ext/cargo-vendor/miniz_oxide-0.8.2/LICENSE-ZLIB.md +0 -11
  797. data/ext/cargo-vendor/miniz_oxide-0.8.2/src/deflate/core.rs +0 -2528
  798. data/ext/cargo-vendor/miniz_oxide-0.8.2/src/deflate/mod.rs +0 -226
  799. data/ext/cargo-vendor/proc-macro2-1.0.92/.cargo-checksum.json +0 -1
  800. data/ext/cargo-vendor/proc-macro2-1.0.92/Cargo.lock +0 -313
  801. data/ext/cargo-vendor/proc-macro2-1.0.92/Cargo.toml +0 -105
  802. data/ext/cargo-vendor/proc-macro2-1.0.92/src/fallback.rs +0 -1266
  803. data/ext/cargo-vendor/proc-macro2-1.0.92/src/lib.rs +0 -1389
  804. data/ext/cargo-vendor/proc-macro2-1.0.92/src/rcvec.rs +0 -145
  805. data/ext/cargo-vendor/pulley-interpreter-28.0.0/.cargo-checksum.json +0 -1
  806. data/ext/cargo-vendor/pulley-interpreter-28.0.0/Cargo.lock +0 -386
  807. data/ext/cargo-vendor/pulley-interpreter-28.0.0/Cargo.toml +0 -118
  808. data/ext/cargo-vendor/pulley-interpreter-28.0.0/examples/objdump.rs +0 -48
  809. data/ext/cargo-vendor/pulley-interpreter-28.0.0/src/decode.rs +0 -734
  810. data/ext/cargo-vendor/pulley-interpreter-28.0.0/src/disas.rs +0 -292
  811. data/ext/cargo-vendor/pulley-interpreter-28.0.0/src/encode.rs +0 -198
  812. data/ext/cargo-vendor/pulley-interpreter-28.0.0/src/imms.rs +0 -31
  813. data/ext/cargo-vendor/pulley-interpreter-28.0.0/src/interp/match_loop.rs +0 -38
  814. data/ext/cargo-vendor/pulley-interpreter-28.0.0/src/interp/tail_loop.rs +0 -137
  815. data/ext/cargo-vendor/pulley-interpreter-28.0.0/src/interp.rs +0 -1269
  816. data/ext/cargo-vendor/pulley-interpreter-28.0.0/src/lib.rs +0 -258
  817. data/ext/cargo-vendor/pulley-interpreter-28.0.0/src/op.rs +0 -256
  818. data/ext/cargo-vendor/pulley-interpreter-28.0.0/src/opcode.rs +0 -123
  819. data/ext/cargo-vendor/pulley-interpreter-28.0.0/src/regs.rs +0 -345
  820. data/ext/cargo-vendor/pulley-interpreter-28.0.0/tests/all/disas.rs +0 -189
  821. data/ext/cargo-vendor/pulley-interpreter-28.0.0/tests/all/interp.rs +0 -1216
  822. data/ext/cargo-vendor/rustix-0.38.43/.cargo-checksum.json +0 -1
  823. data/ext/cargo-vendor/rustix-0.38.43/Cargo.lock +0 -1012
  824. data/ext/cargo-vendor/rustix-0.38.43/Cargo.toml +0 -308
  825. data/ext/cargo-vendor/rustix-0.38.43/src/backend/libc/system/syscalls.rs +0 -121
  826. data/ext/cargo-vendor/rustix-0.38.43/src/backend/linux_raw/system/syscalls.rs +0 -86
  827. data/ext/cargo-vendor/rustix-0.38.43/src/lib.rs +0 -401
  828. data/ext/cargo-vendor/rustix-0.38.43/src/maybe_polyfill/std/mod.rs +0 -43
  829. data/ext/cargo-vendor/rustix-0.38.43/src/system.rs +0 -261
  830. data/ext/cargo-vendor/rustix-0.38.43/src/weak.rs +0 -287
  831. data/ext/cargo-vendor/semver-1.0.24/.cargo-checksum.json +0 -1
  832. data/ext/cargo-vendor/semver-1.0.24/Cargo.lock +0 -65
  833. data/ext/cargo-vendor/semver-1.0.24/Cargo.toml +0 -71
  834. data/ext/cargo-vendor/semver-1.0.24/src/lib.rs +0 -580
  835. data/ext/cargo-vendor/serde_json-1.0.135/.cargo-checksum.json +0 -1
  836. data/ext/cargo-vendor/serde_json-1.0.135/Cargo.lock +0 -417
  837. data/ext/cargo-vendor/serde_json-1.0.135/Cargo.toml +0 -149
  838. data/ext/cargo-vendor/serde_json-1.0.135/src/lib.rs +0 -435
  839. data/ext/cargo-vendor/serde_json-1.0.135/src/value/ser.rs +0 -1063
  840. data/ext/cargo-vendor/syn-2.0.95/.cargo-checksum.json +0 -1
  841. data/ext/cargo-vendor/syn-2.0.95/Cargo.lock +0 -1749
  842. data/ext/cargo-vendor/syn-2.0.95/Cargo.toml +0 -268
  843. data/ext/cargo-vendor/syn-2.0.95/src/expr.rs +0 -4099
  844. data/ext/cargo-vendor/syn-2.0.95/src/fixup.rs +0 -725
  845. data/ext/cargo-vendor/syn-2.0.95/src/lib.rs +0 -1010
  846. data/ext/cargo-vendor/syn-2.0.95/tests/test_expr.rs +0 -1631
  847. data/ext/cargo-vendor/target-lexicon-0.12.16/.cargo-checksum.json +0 -1
  848. data/ext/cargo-vendor/target-lexicon-0.12.16/Cargo.lock +0 -89
  849. data/ext/cargo-vendor/target-lexicon-0.12.16/Cargo.toml +0 -65
  850. data/ext/cargo-vendor/target-lexicon-0.12.16/README.md +0 -20
  851. data/ext/cargo-vendor/target-lexicon-0.12.16/src/host.rs +0 -63
  852. data/ext/cargo-vendor/target-lexicon-0.12.16/src/lib.rs +0 -109
  853. data/ext/cargo-vendor/target-lexicon-0.12.16/src/targets.rs +0 -1955
  854. data/ext/cargo-vendor/target-lexicon-0.12.16/src/triple.rs +0 -554
  855. data/ext/cargo-vendor/unicode-ident-1.0.14/.cargo-checksum.json +0 -1
  856. data/ext/cargo-vendor/unicode-ident-1.0.14/Cargo.lock +0 -566
  857. data/ext/cargo-vendor/unicode-ident-1.0.14/Cargo.toml +0 -80
  858. data/ext/cargo-vendor/unicode-ident-1.0.14/README.md +0 -282
  859. data/ext/cargo-vendor/unicode-ident-1.0.14/benches/xid.rs +0 -127
  860. data/ext/cargo-vendor/unicode-ident-1.0.14/src/lib.rs +0 -269
  861. data/ext/cargo-vendor/uuid-1.11.0/.cargo-checksum.json +0 -1
  862. data/ext/cargo-vendor/uuid-1.11.0/Cargo.toml +0 -219
  863. data/ext/cargo-vendor/uuid-1.11.0/README.md +0 -93
  864. data/ext/cargo-vendor/uuid-1.11.0/src/builder.rs +0 -930
  865. data/ext/cargo-vendor/uuid-1.11.0/src/error.rs +0 -172
  866. data/ext/cargo-vendor/uuid-1.11.0/src/external/arbitrary_support.rs +0 -45
  867. data/ext/cargo-vendor/uuid-1.11.0/src/external/serde_support.rs +0 -735
  868. data/ext/cargo-vendor/uuid-1.11.0/src/external/slog_support.rs +0 -37
  869. data/ext/cargo-vendor/uuid-1.11.0/src/lib.rs +0 -1895
  870. data/ext/cargo-vendor/uuid-1.11.0/src/timestamp.rs +0 -972
  871. data/ext/cargo-vendor/uuid-1.11.0/src/v5.rs +0 -188
  872. data/ext/cargo-vendor/uuid-1.11.0/src/v7.rs +0 -241
  873. data/ext/cargo-vendor/wasi-common-28.0.0/.cargo-checksum.json +0 -1
  874. data/ext/cargo-vendor/wasi-common-28.0.0/Cargo.toml +0 -249
  875. data/ext/cargo-vendor/wasi-common-28.0.0/witx/preview0/wasi_unstable.witx +0 -513
  876. data/ext/cargo-vendor/wasi-common-28.0.0/witx/preview1/typenames.witx +0 -750
  877. data/ext/cargo-vendor/wasi-common-28.0.0/witx/preview1/wasi_snapshot_preview1.witx +0 -521
  878. data/ext/cargo-vendor/wasm-bindgen-0.2.99/.cargo-checksum.json +0 -1
  879. data/ext/cargo-vendor/wasm-bindgen-0.2.99/Cargo.toml +0 -104
  880. data/ext/cargo-vendor/wasm-bindgen-0.2.99/src/cache/intern.rs +0 -103
  881. data/ext/cargo-vendor/wasm-bindgen-0.2.99/src/closure.rs +0 -913
  882. data/ext/cargo-vendor/wasm-bindgen-0.2.99/src/convert/closures.rs +0 -249
  883. data/ext/cargo-vendor/wasm-bindgen-0.2.99/src/externref.rs +0 -177
  884. data/ext/cargo-vendor/wasm-bindgen-0.2.99/src/lib.rs +0 -2525
  885. data/ext/cargo-vendor/wasm-bindgen-backend-0.2.99/.cargo-checksum.json +0 -1
  886. data/ext/cargo-vendor/wasm-bindgen-backend-0.2.99/Cargo.toml +0 -71
  887. data/ext/cargo-vendor/wasm-bindgen-backend-0.2.99/src/ast.rs +0 -581
  888. data/ext/cargo-vendor/wasm-bindgen-backend-0.2.99/src/codegen.rs +0 -1945
  889. data/ext/cargo-vendor/wasm-bindgen-backend-0.2.99/src/encode.rs +0 -616
  890. data/ext/cargo-vendor/wasm-bindgen-macro-0.2.99/.cargo-checksum.json +0 -1
  891. data/ext/cargo-vendor/wasm-bindgen-macro-0.2.99/Cargo.toml +0 -64
  892. data/ext/cargo-vendor/wasm-bindgen-macro-0.2.99/src/lib.rs +0 -61
  893. data/ext/cargo-vendor/wasm-bindgen-macro-support-0.2.99/.cargo-checksum.json +0 -1
  894. data/ext/cargo-vendor/wasm-bindgen-macro-support-0.2.99/Cargo.toml +0 -74
  895. data/ext/cargo-vendor/wasm-bindgen-macro-support-0.2.99/src/lib.rs +0 -170
  896. data/ext/cargo-vendor/wasm-bindgen-macro-support-0.2.99/src/parser.rs +0 -2067
  897. data/ext/cargo-vendor/wasm-bindgen-shared-0.2.99/.cargo-checksum.json +0 -1
  898. data/ext/cargo-vendor/wasm-bindgen-shared-0.2.99/Cargo.toml +0 -49
  899. data/ext/cargo-vendor/wasm-bindgen-shared-0.2.99/src/lib.rs +0 -230
  900. data/ext/cargo-vendor/wasm-bindgen-shared-0.2.99/src/schema_hash_approval.rs +0 -16
  901. data/ext/cargo-vendor/wasm-encoder-0.223.0/.cargo-checksum.json +0 -1
  902. data/ext/cargo-vendor/wasm-encoder-0.223.0/Cargo.toml +0 -82
  903. data/ext/cargo-vendor/wasm-encoder-0.223.0/src/component/types.rs +0 -792
  904. data/ext/cargo-vendor/wasm-encoder-0.223.0/src/reencode/component.rs +0 -1446
  905. data/ext/cargo-vendor/wasmparser-0.223.0/.cargo-checksum.json +0 -1
  906. data/ext/cargo-vendor/wasmparser-0.223.0/Cargo.lock +0 -646
  907. data/ext/cargo-vendor/wasmparser-0.223.0/Cargo.toml +0 -139
  908. data/ext/cargo-vendor/wasmparser-0.223.0/src/readers/component/types.rs +0 -574
  909. data/ext/cargo-vendor/wasmparser-0.223.0/src/validator/component.rs +0 -4006
  910. data/ext/cargo-vendor/wasmparser-0.223.0/src/validator/component_types.rs +0 -3377
  911. data/ext/cargo-vendor/wasmtime-28.0.0/.cargo-checksum.json +0 -1
  912. data/ext/cargo-vendor/wasmtime-28.0.0/Cargo.toml +0 -467
  913. data/ext/cargo-vendor/wasmtime-28.0.0/src/compile/code_builder.rs +0 -317
  914. data/ext/cargo-vendor/wasmtime-28.0.0/src/compile/runtime.rs +0 -171
  915. data/ext/cargo-vendor/wasmtime-28.0.0/src/compile.rs +0 -914
  916. data/ext/cargo-vendor/wasmtime-28.0.0/src/config.rs +0 -3439
  917. data/ext/cargo-vendor/wasmtime-28.0.0/src/engine/serialization.rs +0 -942
  918. data/ext/cargo-vendor/wasmtime-28.0.0/src/engine.rs +0 -823
  919. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/code_memory.rs +0 -395
  920. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/component/bindgen_examples/mod.rs +0 -488
  921. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/component/func/host.rs +0 -455
  922. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/component/func/typed.rs +0 -2482
  923. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/component/mod.rs +0 -677
  924. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/externals/global.rs +0 -312
  925. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/func/typed.rs +0 -788
  926. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/func.rs +0 -2672
  927. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/instance.rs +0 -986
  928. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/memory.rs +0 -1092
  929. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/module/registry.rs +0 -344
  930. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/profiling.rs +0 -280
  931. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/store.rs +0 -2962
  932. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/trampoline/global.rs +0 -70
  933. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/trampoline/memory.rs +0 -261
  934. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/trap.rs +0 -625
  935. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/values.rs +0 -1080
  936. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/arch/mod.rs +0 -45
  937. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/arch/unsupported.rs +0 -36
  938. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/arch/x86_64.rs +0 -28
  939. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/component/libcalls.rs +0 -570
  940. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/component.rs +0 -863
  941. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/cow.rs +0 -1155
  942. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/gc/enabled/drc.rs +0 -1093
  943. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/helpers.c +0 -200
  944. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/instance/allocator/pooling/memory_pool.rs +0 -1007
  945. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/instance/allocator/pooling/table_pool.rs +0 -256
  946. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/instance/allocator/pooling/unix_stack_pool.rs +0 -308
  947. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/instance/allocator/pooling.rs +0 -797
  948. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/libcalls.rs +0 -1439
  949. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/memory/malloc.rs +0 -203
  950. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/memory/mmap.rs +0 -229
  951. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/memory/static_.rs +0 -79
  952. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/memory.rs +0 -700
  953. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/mmap.rs +0 -355
  954. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/mmap_vec.rs +0 -201
  955. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/sys/custom/mmap.rs +0 -125
  956. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/sys/custom/vm.rs +0 -106
  957. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/sys/miri/mmap.rs +0 -116
  958. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/sys/miri/vm.rs +0 -59
  959. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/sys/unix/mmap.rs +0 -192
  960. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/sys/unix/signals.rs +0 -479
  961. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/sys/unix/unwind.rs +0 -118
  962. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/sys/unix/vm.rs +0 -187
  963. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/sys/windows/mmap.rs +0 -231
  964. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/sys/windows/mod.rs +0 -20
  965. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/sys/windows/traphandlers.rs +0 -136
  966. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/sys/windows/vm.rs +0 -75
  967. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/traphandlers/backtrace.rs +0 -267
  968. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/traphandlers/coredump_enabled.rs +0 -42
  969. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/traphandlers/signals.rs +0 -164
  970. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/traphandlers.rs +0 -740
  971. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/vmcontext.rs +0 -1321
  972. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm.rs +0 -401
  973. data/ext/cargo-vendor/wasmtime-asm-macros-28.0.0/.cargo-checksum.json +0 -1
  974. data/ext/cargo-vendor/wasmtime-asm-macros-28.0.0/Cargo.toml +0 -34
  975. data/ext/cargo-vendor/wasmtime-cache-28.0.0/.cargo-checksum.json +0 -1
  976. data/ext/cargo-vendor/wasmtime-cache-28.0.0/Cargo.toml +0 -119
  977. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/.cargo-checksum.json +0 -1
  978. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/Cargo.toml +0 -126
  979. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/char.rs +0 -387
  980. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/char_async.rs +0 -414
  981. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/char_tracing_async.rs +0 -461
  982. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/conventions.rs +0 -824
  983. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/conventions_async.rs +0 -899
  984. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/conventions_tracing_async.rs +0 -1190
  985. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/dead-code.rs +0 -279
  986. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/dead-code_async.rs +0 -300
  987. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/dead-code_tracing_async.rs +0 -313
  988. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/direct-import_async.rs +0 -219
  989. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/direct-import_tracing_async.rs +0 -232
  990. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/flags.rs +0 -859
  991. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/flags_async.rs +0 -921
  992. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/flags_tracing_async.rs +0 -1096
  993. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/floats.rs +0 -447
  994. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/floats_async.rs +0 -488
  995. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/floats_tracing_async.rs +0 -582
  996. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/host-world_async.rs +0 -219
  997. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/host-world_tracing_async.rs +0 -232
  998. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/integers.rs +0 -989
  999. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/integers_async.rs +0 -1128
  1000. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/integers_tracing_async.rs +0 -1555
  1001. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/lists.rs +0 -2032
  1002. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/lists_async.rs +0 -2288
  1003. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/lists_tracing_async.rs +0 -2980
  1004. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/many-arguments.rs +0 -730
  1005. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/many-arguments_async.rs +0 -758
  1006. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/many-arguments_tracing_async.rs +0 -819
  1007. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/multi-return.rs +0 -475
  1008. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/multi-return_async.rs +0 -519
  1009. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/multi-return_tracing_async.rs +0 -633
  1010. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/multiversion.rs +0 -508
  1011. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/multiversion_async.rs +0 -537
  1012. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/multiversion_tracing_async.rs +0 -585
  1013. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/path1.rs +0 -208
  1014. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/path1_async.rs +0 -221
  1015. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/path1_tracing_async.rs +0 -221
  1016. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/path2.rs +0 -208
  1017. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/path2_async.rs +0 -221
  1018. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/path2_tracing_async.rs +0 -221
  1019. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/records.rs +0 -1056
  1020. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/records_async.rs +0 -1146
  1021. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/records_tracing_async.rs +0 -1406
  1022. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/rename.rs +0 -268
  1023. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/rename_async.rs +0 -289
  1024. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/rename_tracing_async.rs +0 -302
  1025. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/resources-export.rs +0 -879
  1026. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/resources-export_async.rs +0 -937
  1027. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/resources-export_tracing_async.rs +0 -1011
  1028. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/resources-import.rs +0 -1217
  1029. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/resources-import_async.rs +0 -1361
  1030. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/resources-import_tracing_async.rs +0 -1774
  1031. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/share-types.rs +0 -429
  1032. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/share-types_async.rs +0 -453
  1033. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/share-types_tracing_async.rs +0 -477
  1034. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/simple-functions.rs +0 -522
  1035. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/simple-functions_async.rs +0 -574
  1036. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/simple-functions_tracing_async.rs +0 -718
  1037. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/simple-lists.rs +0 -545
  1038. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/simple-lists_async.rs +0 -590
  1039. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/simple-lists_tracing_async.rs +0 -687
  1040. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/simple-wasi.rs +0 -331
  1041. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/simple-wasi_async.rs +0 -354
  1042. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/simple-wasi_tracing_async.rs +0 -380
  1043. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/small-anonymous.rs +0 -454
  1044. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/small-anonymous_async.rs +0 -474
  1045. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/small-anonymous_tracing_async.rs +0 -496
  1046. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/smoke-export.rs +0 -263
  1047. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/smoke-export_async.rs +0 -272
  1048. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/smoke-export_tracing_async.rs +0 -280
  1049. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/smoke.rs +0 -218
  1050. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/smoke_async.rs +0 -233
  1051. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/smoke_tracing_async.rs +0 -246
  1052. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/strings.rs +0 -432
  1053. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/strings_async.rs +0 -466
  1054. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/strings_tracing_async.rs +0 -538
  1055. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/unstable-features.rs +0 -482
  1056. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/unstable-features_async.rs +0 -527
  1057. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/unstable-features_tracing_async.rs +0 -585
  1058. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/unversioned-foo.rs +0 -250
  1059. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/unversioned-foo_async.rs +0 -265
  1060. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/unversioned-foo_tracing_async.rs +0 -278
  1061. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/use-paths.rs +0 -402
  1062. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/use-paths_async.rs +0 -442
  1063. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/use-paths_tracing_async.rs +0 -494
  1064. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/variants.rs +0 -2016
  1065. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/variants_async.rs +0 -2183
  1066. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/variants_tracing_async.rs +0 -2705
  1067. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/wat.rs +0 -265
  1068. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/wat_async.rs +0 -271
  1069. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/wat_tracing_async.rs +0 -271
  1070. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/worlds-with-types.rs +0 -263
  1071. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/worlds-with-types_async.rs +0 -279
  1072. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/worlds-with-types_tracing_async.rs +0 -287
  1073. data/ext/cargo-vendor/wasmtime-component-util-28.0.0/.cargo-checksum.json +0 -1
  1074. data/ext/cargo-vendor/wasmtime-component-util-28.0.0/Cargo.toml +0 -37
  1075. data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/.cargo-checksum.json +0 -1
  1076. data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/Cargo.toml +0 -167
  1077. data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/compiler/component.rs +0 -982
  1078. data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/compiler.rs +0 -1175
  1079. data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/debug/gc.rs +0 -259
  1080. data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/debug/transform/attr.rs +0 -309
  1081. data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/debug/transform/debug_transform_logging.rs +0 -252
  1082. data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/debug/transform/mod.rs +0 -274
  1083. data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/debug/transform/unit.rs +0 -529
  1084. data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/debug/transform/utils.rs +0 -46
  1085. data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/func_environ.rs +0 -3403
  1086. data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/gc/enabled/drc.rs +0 -748
  1087. data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/gc/enabled/null.rs +0 -286
  1088. data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/gc/enabled.rs +0 -1497
  1089. data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/lib.rs +0 -435
  1090. data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/obj.rs +0 -638
  1091. data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/translate/code_translator/bounds_checks.rs +0 -721
  1092. data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/translate/code_translator.rs +0 -4090
  1093. data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/translate/environ/mod.rs +0 -8
  1094. data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/translate/environ/spec.rs +0 -961
  1095. data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/translate/func_translator.rs +0 -283
  1096. data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/translate/mod.rs +0 -26
  1097. data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/translate/state.rs +0 -548
  1098. data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/translate/table.rs +0 -117
  1099. data/ext/cargo-vendor/wasmtime-environ-28.0.0/.cargo-checksum.json +0 -1
  1100. data/ext/cargo-vendor/wasmtime-environ-28.0.0/Cargo.lock +0 -713
  1101. data/ext/cargo-vendor/wasmtime-environ-28.0.0/Cargo.toml +0 -214
  1102. data/ext/cargo-vendor/wasmtime-environ-28.0.0/src/builtin.rs +0 -290
  1103. data/ext/cargo-vendor/wasmtime-environ-28.0.0/src/compile/mod.rs +0 -384
  1104. data/ext/cargo-vendor/wasmtime-environ-28.0.0/src/compile/module_artifacts.rs +0 -329
  1105. data/ext/cargo-vendor/wasmtime-environ-28.0.0/src/component/info.rs +0 -682
  1106. data/ext/cargo-vendor/wasmtime-environ-28.0.0/src/component/vmcomponent_offsets.rs +0 -316
  1107. data/ext/cargo-vendor/wasmtime-environ-28.0.0/src/component.rs +0 -111
  1108. data/ext/cargo-vendor/wasmtime-environ-28.0.0/src/demangling.rs +0 -28
  1109. data/ext/cargo-vendor/wasmtime-environ-28.0.0/src/lib.rs +0 -69
  1110. data/ext/cargo-vendor/wasmtime-environ-28.0.0/src/module_artifacts.rs +0 -146
  1111. data/ext/cargo-vendor/wasmtime-environ-28.0.0/src/tunables.rs +0 -241
  1112. data/ext/cargo-vendor/wasmtime-environ-28.0.0/src/vmoffsets.rs +0 -894
  1113. data/ext/cargo-vendor/wasmtime-fiber-28.0.0/.cargo-checksum.json +0 -1
  1114. data/ext/cargo-vendor/wasmtime-fiber-28.0.0/Cargo.toml +0 -98
  1115. data/ext/cargo-vendor/wasmtime-jit-debug-28.0.0/.cargo-checksum.json +0 -1
  1116. data/ext/cargo-vendor/wasmtime-jit-debug-28.0.0/Cargo.toml +0 -92
  1117. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-28.0.0/.cargo-checksum.json +0 -1
  1118. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-28.0.0/Cargo.toml +0 -82
  1119. data/ext/cargo-vendor/wasmtime-slab-28.0.0/.cargo-checksum.json +0 -1
  1120. data/ext/cargo-vendor/wasmtime-slab-28.0.0/Cargo.toml +0 -61
  1121. data/ext/cargo-vendor/wasmtime-versioned-export-macros-28.0.0/.cargo-checksum.json +0 -1
  1122. data/ext/cargo-vendor/wasmtime-versioned-export-macros-28.0.0/Cargo.toml +0 -42
  1123. data/ext/cargo-vendor/wasmtime-wasi-28.0.0/.cargo-checksum.json +0 -1
  1124. data/ext/cargo-vendor/wasmtime-wasi-28.0.0/Cargo.toml +0 -232
  1125. data/ext/cargo-vendor/wasmtime-wasi-28.0.0/src/bindings.rs +0 -566
  1126. data/ext/cargo-vendor/wasmtime-wasi-28.0.0/src/host/filesystem.rs +0 -1091
  1127. data/ext/cargo-vendor/wasmtime-wasi-28.0.0/src/host/io.rs +0 -372
  1128. data/ext/cargo-vendor/wasmtime-wasi-28.0.0/src/host/tcp.rs +0 -547
  1129. data/ext/cargo-vendor/wasmtime-wasi-28.0.0/src/host/udp.rs +0 -762
  1130. data/ext/cargo-vendor/wasmtime-wasi-28.0.0/src/ip_name_lookup.rs +0 -132
  1131. data/ext/cargo-vendor/wasmtime-wasi-28.0.0/src/pipe.rs +0 -833
  1132. data/ext/cargo-vendor/wasmtime-wasi-28.0.0/src/poll.rs +0 -245
  1133. data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/cli/command.wit +0 -10
  1134. data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/cli/imports.wit +0 -36
  1135. data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/cli/stdio.wit +0 -26
  1136. data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/clocks/monotonic-clock.wit +0 -50
  1137. data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/clocks/timezone.wit +0 -55
  1138. data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/clocks/wall-clock.wit +0 -46
  1139. data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/clocks/world.wit +0 -11
  1140. data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/filesystem/preopens.wit +0 -11
  1141. data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/filesystem/types.wit +0 -672
  1142. data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/filesystem/world.wit +0 -9
  1143. data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/io/error.wit +0 -34
  1144. data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/io/poll.wit +0 -47
  1145. data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/io/streams.wit +0 -290
  1146. data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/io/world.wit +0 -10
  1147. data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/random/insecure-seed.wit +0 -27
  1148. data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/random/insecure.wit +0 -25
  1149. data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/random/random.wit +0 -29
  1150. data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/random/world.wit +0 -13
  1151. data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/sockets/ip-name-lookup.wit +0 -56
  1152. data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/sockets/network.wit +0 -169
  1153. data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/sockets/tcp.wit +0 -387
  1154. data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/sockets/udp.wit +0 -288
  1155. data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/sockets/world.wit +0 -19
  1156. data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/test.wit +0 -13
  1157. data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/world.wit +0 -6
  1158. data/ext/cargo-vendor/wasmtime-wasi-28.0.0/witx/preview0/wasi_unstable.witx +0 -513
  1159. data/ext/cargo-vendor/wasmtime-wasi-28.0.0/witx/preview1/typenames.witx +0 -750
  1160. data/ext/cargo-vendor/wasmtime-wasi-28.0.0/witx/preview1/wasi_snapshot_preview1.witx +0 -521
  1161. data/ext/cargo-vendor/wasmtime-winch-28.0.0/.cargo-checksum.json +0 -1
  1162. data/ext/cargo-vendor/wasmtime-winch-28.0.0/Cargo.toml +0 -117
  1163. data/ext/cargo-vendor/wasmtime-winch-28.0.0/src/builder.rs +0 -104
  1164. data/ext/cargo-vendor/wasmtime-wit-bindgen-28.0.0/.cargo-checksum.json +0 -1
  1165. data/ext/cargo-vendor/wasmtime-wit-bindgen-28.0.0/Cargo.toml +0 -77
  1166. data/ext/cargo-vendor/wasmtime-wit-bindgen-28.0.0/src/lib.rs +0 -3360
  1167. data/ext/cargo-vendor/wast-223.0.0/.cargo-checksum.json +0 -1
  1168. data/ext/cargo-vendor/wast-223.0.0/Cargo.toml +0 -111
  1169. data/ext/cargo-vendor/wast-223.0.0/src/component/binary.rs +0 -959
  1170. data/ext/cargo-vendor/wast-223.0.0/src/component/expand.rs +0 -1076
  1171. data/ext/cargo-vendor/wast-223.0.0/src/component/resolve.rs +0 -1176
  1172. data/ext/cargo-vendor/wast-223.0.0/src/component/types.rs +0 -1041
  1173. data/ext/cargo-vendor/wat-1.223.0/.cargo-checksum.json +0 -1
  1174. data/ext/cargo-vendor/wat-1.223.0/Cargo.toml +0 -61
  1175. data/ext/cargo-vendor/wiggle-28.0.0/.cargo-checksum.json +0 -1
  1176. data/ext/cargo-vendor/wiggle-28.0.0/Cargo.toml +0 -130
  1177. data/ext/cargo-vendor/wiggle-generate-28.0.0/.cargo-checksum.json +0 -1
  1178. data/ext/cargo-vendor/wiggle-generate-28.0.0/Cargo.toml +0 -96
  1179. data/ext/cargo-vendor/wiggle-macro-28.0.0/.cargo-checksum.json +0 -1
  1180. data/ext/cargo-vendor/wiggle-macro-28.0.0/Cargo.toml +0 -89
  1181. data/ext/cargo-vendor/winch-codegen-28.0.0/.cargo-checksum.json +0 -1
  1182. data/ext/cargo-vendor/winch-codegen-28.0.0/Cargo.toml +0 -112
  1183. data/ext/cargo-vendor/winch-codegen-28.0.0/src/abi/mod.rs +0 -652
  1184. data/ext/cargo-vendor/winch-codegen-28.0.0/src/codegen/bounds.rs +0 -224
  1185. data/ext/cargo-vendor/winch-codegen-28.0.0/src/codegen/builtin.rs +0 -274
  1186. data/ext/cargo-vendor/winch-codegen-28.0.0/src/codegen/call.rs +0 -414
  1187. data/ext/cargo-vendor/winch-codegen-28.0.0/src/codegen/context.rs +0 -627
  1188. data/ext/cargo-vendor/winch-codegen-28.0.0/src/codegen/control.rs +0 -995
  1189. data/ext/cargo-vendor/winch-codegen-28.0.0/src/codegen/mod.rs +0 -1152
  1190. data/ext/cargo-vendor/winch-codegen-28.0.0/src/frame/mod.rs +0 -294
  1191. data/ext/cargo-vendor/winch-codegen-28.0.0/src/isa/aarch64/abi.rs +0 -299
  1192. data/ext/cargo-vendor/winch-codegen-28.0.0/src/isa/aarch64/asm.rs +0 -904
  1193. data/ext/cargo-vendor/winch-codegen-28.0.0/src/isa/aarch64/masm.rs +0 -736
  1194. data/ext/cargo-vendor/winch-codegen-28.0.0/src/isa/aarch64/mod.rs +0 -175
  1195. data/ext/cargo-vendor/winch-codegen-28.0.0/src/isa/mod.rs +0 -327
  1196. data/ext/cargo-vendor/winch-codegen-28.0.0/src/isa/x64/abi.rs +0 -494
  1197. data/ext/cargo-vendor/winch-codegen-28.0.0/src/isa/x64/asm.rs +0 -1482
  1198. data/ext/cargo-vendor/winch-codegen-28.0.0/src/isa/x64/masm.rs +0 -1217
  1199. data/ext/cargo-vendor/winch-codegen-28.0.0/src/isa/x64/mod.rs +0 -176
  1200. data/ext/cargo-vendor/winch-codegen-28.0.0/src/masm.rs +0 -1057
  1201. data/ext/cargo-vendor/winch-codegen-28.0.0/src/regalloc.rs +0 -65
  1202. data/ext/cargo-vendor/winch-codegen-28.0.0/src/stack.rs +0 -447
  1203. data/ext/cargo-vendor/winch-codegen-28.0.0/src/visitor.rs +0 -2274
  1204. data/ext/cargo-vendor/winnow-0.6.22/.cargo-checksum.json +0 -1
  1205. data/ext/cargo-vendor/winnow-0.6.22/Cargo.lock +0 -1567
  1206. data/ext/cargo-vendor/winnow-0.6.22/Cargo.toml +0 -359
  1207. data/ext/cargo-vendor/winnow-0.6.22/examples/json/parser_partial.rs +0 -350
  1208. data/ext/cargo-vendor/winnow-0.6.22/src/_topic/nom.rs +0 -104
  1209. data/ext/cargo-vendor/winnow-0.6.22/src/_topic/stream.rs +0 -65
  1210. data/ext/cargo-vendor/winnow-0.6.22/src/_topic/why.rs +0 -126
  1211. data/ext/cargo-vendor/winnow-0.6.22/src/ascii/mod.rs +0 -1895
  1212. data/ext/cargo-vendor/winnow-0.6.22/src/binary/bits/mod.rs +0 -420
  1213. data/ext/cargo-vendor/winnow-0.6.22/src/binary/bits/tests.rs +0 -191
  1214. data/ext/cargo-vendor/winnow-0.6.22/src/combinator/core.rs +0 -580
  1215. data/ext/cargo-vendor/winnow-0.6.22/src/combinator/mod.rs +0 -180
  1216. data/ext/cargo-vendor/winnow-0.6.22/src/combinator/multi.rs +0 -1328
  1217. data/ext/cargo-vendor/winnow-0.6.22/src/combinator/parser.rs +0 -1093
  1218. data/ext/cargo-vendor/winnow-0.6.22/src/combinator/tests.rs +0 -1393
  1219. data/ext/cargo-vendor/winnow-0.6.22/src/error.rs +0 -1423
  1220. data/ext/cargo-vendor/winnow-0.6.22/src/lib.rs +0 -164
  1221. data/ext/cargo-vendor/winnow-0.6.22/src/macros/mod.rs +0 -5
  1222. data/ext/cargo-vendor/winnow-0.6.22/src/parser.rs +0 -1245
  1223. data/ext/cargo-vendor/winnow-0.6.22/src/stream/mod.rs +0 -3822
  1224. data/ext/cargo-vendor/winnow-0.6.22/src/token/mod.rs +0 -1031
  1225. data/ext/cargo-vendor/winnow-0.6.22/src/token/tests.rs +0 -836
  1226. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/CODE_OF_CONDUCT.md +0 -0
  1227. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/CONTRIBUTING.md +0 -0
  1228. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/LICENSE-APACHE +0 -0
  1229. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/LICENSE-MIT +0 -0
  1230. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/SECURITY.md +0 -0
  1231. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/benches/parse.rs +0 -0
  1232. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/examples/custom_bits_type.rs +0 -0
  1233. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/examples/fmt.rs +0 -0
  1234. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/examples/macro_free.rs +0 -0
  1235. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/examples/serde.rs +0 -0
  1236. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/spec.md +0 -0
  1237. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/example_generated.rs +0 -0
  1238. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/external/bytemuck.rs +0 -0
  1239. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/external/serde.rs +0 -0
  1240. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/external.rs +0 -0
  1241. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/internal.rs +0 -0
  1242. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/iter.rs +0 -0
  1243. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/parser.rs +0 -0
  1244. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/public.rs +0 -0
  1245. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/all.rs +0 -0
  1246. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/bits.rs +0 -0
  1247. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/complement.rs +0 -0
  1248. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/contains.rs +0 -0
  1249. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/difference.rs +0 -0
  1250. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/empty.rs +0 -0
  1251. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/eq.rs +0 -0
  1252. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/extend.rs +0 -0
  1253. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/flags.rs +0 -0
  1254. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/fmt.rs +0 -0
  1255. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/from_bits.rs +0 -0
  1256. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/from_bits_retain.rs +0 -0
  1257. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/from_bits_truncate.rs +0 -0
  1258. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/from_name.rs +0 -0
  1259. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/insert.rs +0 -0
  1260. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/intersection.rs +0 -0
  1261. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/intersects.rs +0 -0
  1262. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/is_all.rs +0 -0
  1263. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/is_empty.rs +0 -0
  1264. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/iter.rs +0 -0
  1265. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/parser.rs +0 -0
  1266. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/remove.rs +0 -0
  1267. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/symmetric_difference.rs +0 -0
  1268. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/union.rs +0 -0
  1269. /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/LICENSE-APACHE +0 -0
  1270. /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/LICENSE-MIT +0 -0
  1271. /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/README.md +0 -0
  1272. /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/clippy.toml +0 -0
  1273. /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/command_helpers.rs +0 -0
  1274. /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/detect_compiler_family.c +0 -0
  1275. /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/parallel/async_executor.rs +0 -0
  1276. /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/parallel/job_token.rs +0 -0
  1277. /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/parallel/mod.rs +0 -0
  1278. /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/parallel/stderr.rs +0 -0
  1279. /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/target/apple.rs +0 -0
  1280. /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/target/llvm.rs +0 -0
  1281. /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/target/parser.rs +0 -0
  1282. /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/target.rs +0 -0
  1283. /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/tempfile.rs +0 -0
  1284. /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/utilities.rs +0 -0
  1285. /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/windows/com.rs +0 -0
  1286. /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/windows/find_tools.rs +0 -0
  1287. /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/windows/mod.rs +0 -0
  1288. /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/windows/registry.rs +0 -0
  1289. /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/windows/setup_config.rs +0 -0
  1290. /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/windows/vs_instances.rs +0 -0
  1291. /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/windows/winapi.rs +0 -0
  1292. /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/windows/windows_targets.rs +0 -0
  1293. /data/ext/cargo-vendor/{cpufeatures-0.2.16 → cpufeatures-0.2.17}/LICENSE-APACHE +0 -0
  1294. /data/ext/cargo-vendor/{cpufeatures-0.2.16 → cpufeatures-0.2.17}/src/aarch64.rs +0 -0
  1295. /data/ext/cargo-vendor/{cpufeatures-0.2.16 → cpufeatures-0.2.17}/src/lib.rs +0 -0
  1296. /data/ext/cargo-vendor/{cpufeatures-0.2.16 → cpufeatures-0.2.17}/src/loongarch64.rs +0 -0
  1297. /data/ext/cargo-vendor/{cpufeatures-0.2.16 → cpufeatures-0.2.17}/src/miri.rs +0 -0
  1298. /data/ext/cargo-vendor/{cpufeatures-0.2.16 → cpufeatures-0.2.17}/src/x86.rs +0 -0
  1299. /data/ext/cargo-vendor/{cpufeatures-0.2.16 → cpufeatures-0.2.17}/tests/aarch64.rs +0 -0
  1300. /data/ext/cargo-vendor/{cpufeatures-0.2.16 → cpufeatures-0.2.17}/tests/loongarch64.rs +0 -0
  1301. /data/ext/cargo-vendor/{cpufeatures-0.2.16 → cpufeatures-0.2.17}/tests/x86.rs +0 -0
  1302. /data/ext/cargo-vendor/{cranelift-bforest-0.115.0 → cranelift-bforest-0.116.1}/LICENSE +0 -0
  1303. /data/ext/cargo-vendor/{cranelift-bforest-0.115.0 → cranelift-bforest-0.116.1}/README.md +0 -0
  1304. /data/ext/cargo-vendor/{cranelift-bforest-0.115.0 → cranelift-bforest-0.116.1}/src/lib.rs +0 -0
  1305. /data/ext/cargo-vendor/{cranelift-bforest-0.115.0 → cranelift-bforest-0.116.1}/src/map.rs +0 -0
  1306. /data/ext/cargo-vendor/{cranelift-bforest-0.115.0 → cranelift-bforest-0.116.1}/src/node.rs +0 -0
  1307. /data/ext/cargo-vendor/{cranelift-bforest-0.115.0 → cranelift-bforest-0.116.1}/src/path.rs +0 -0
  1308. /data/ext/cargo-vendor/{cranelift-bforest-0.115.0 → cranelift-bforest-0.116.1}/src/pool.rs +0 -0
  1309. /data/ext/cargo-vendor/{cranelift-bforest-0.115.0 → cranelift-bforest-0.116.1}/src/set.rs +0 -0
  1310. /data/ext/cargo-vendor/{cranelift-bitset-0.115.0 → cranelift-bitset-0.116.1}/src/compound.rs +0 -0
  1311. /data/ext/cargo-vendor/{cranelift-bitset-0.115.0 → cranelift-bitset-0.116.1}/src/lib.rs +0 -0
  1312. /data/ext/cargo-vendor/{cranelift-bitset-0.115.0 → cranelift-bitset-0.116.1}/tests/bitset.rs +0 -0
  1313. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/LICENSE +0 -0
  1314. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/README.md +0 -0
  1315. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/benches/x64-evex-encoding.rs +0 -0
  1316. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/alias_analysis.rs +0 -0
  1317. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/cfg_printer.rs +0 -0
  1318. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/constant_hash.rs +0 -0
  1319. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/context.rs +0 -0
  1320. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ctxhash.rs +0 -0
  1321. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/cursor.rs +0 -0
  1322. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/data_value.rs +0 -0
  1323. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/dbg.rs +0 -0
  1324. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/dominator_tree.rs +0 -0
  1325. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/egraph/cost.rs +0 -0
  1326. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/egraph/elaborate.rs +0 -0
  1327. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/egraph.rs +0 -0
  1328. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/flowgraph.rs +0 -0
  1329. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/incremental_cache.rs +0 -0
  1330. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/inst_predicates.rs +0 -0
  1331. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/inst_specs.isle +0 -0
  1332. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/atomic_rmw_op.rs +0 -0
  1333. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/builder.rs +0 -0
  1334. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/condcodes.rs +0 -0
  1335. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/constant.rs +0 -0
  1336. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/dfg.rs +0 -0
  1337. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/dynamic_type.rs +0 -0
  1338. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/entities.rs +0 -0
  1339. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/extfunc.rs +0 -0
  1340. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/extname.rs +0 -0
  1341. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/function.rs +0 -0
  1342. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/globalvalue.rs +0 -0
  1343. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/instructions.rs +0 -0
  1344. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/jumptable.rs +0 -0
  1345. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/known_symbol.rs +0 -0
  1346. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/layout.rs +0 -0
  1347. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/libcall.rs +0 -0
  1348. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/memflags.rs +0 -0
  1349. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/memtype.rs +0 -0
  1350. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/mod.rs +0 -0
  1351. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/pcc.rs +0 -0
  1352. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/progpoint.rs +0 -0
  1353. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/sourceloc.rs +0 -0
  1354. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/stackslot.rs +0 -0
  1355. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/trapcode.rs +0 -0
  1356. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/types.rs +0 -0
  1357. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/user_stack_maps.rs +0 -0
  1358. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/aarch64/inst/imms.rs +0 -0
  1359. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/aarch64/inst/unwind/systemv.rs +0 -0
  1360. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/aarch64/inst/unwind.rs +0 -0
  1361. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/aarch64/inst_neon.isle +0 -0
  1362. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/aarch64/lower/isle/generated_code.rs +0 -0
  1363. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/aarch64/lower.rs +0 -0
  1364. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/aarch64/lower_dynamic_neon.isle +0 -0
  1365. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/aarch64/pcc.rs +0 -0
  1366. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/aarch64/settings.rs +0 -0
  1367. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/call_conv.rs +0 -0
  1368. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/pulley32.rs +0 -0
  1369. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/pulley64.rs +0 -0
  1370. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/pulley_shared/lower/isle/generated_code.rs +0 -0
  1371. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/pulley_shared/lower.rs +0 -0
  1372. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/pulley_shared/settings.rs +0 -0
  1373. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/inst/emit.rs +0 -0
  1374. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/inst/encode.rs +0 -0
  1375. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/inst/imms.rs +0 -0
  1376. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/inst/mod.rs +0 -0
  1377. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/inst/regs.rs +0 -0
  1378. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/inst/unwind/systemv.rs +0 -0
  1379. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/inst/unwind.rs +0 -0
  1380. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/inst/vector.rs +0 -0
  1381. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/inst.isle +0 -0
  1382. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/inst_vector.isle +0 -0
  1383. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/lower/isle/generated_code.rs +0 -0
  1384. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/lower/isle.rs +0 -0
  1385. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/lower.isle +0 -0
  1386. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/lower.rs +0 -0
  1387. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/mod.rs +0 -0
  1388. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/settings.rs +0 -0
  1389. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/s390x/inst/args.rs +0 -0
  1390. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/s390x/inst/emit_tests.rs +0 -0
  1391. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/s390x/inst/imms.rs +0 -0
  1392. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/s390x/inst/mod.rs +0 -0
  1393. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/s390x/inst/regs.rs +0 -0
  1394. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/s390x/inst/unwind/systemv.rs +0 -0
  1395. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/s390x/inst/unwind.rs +0 -0
  1396. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/s390x/inst.isle +0 -0
  1397. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/s390x/lower/isle/generated_code.rs +0 -0
  1398. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/s390x/lower/isle.rs +0 -0
  1399. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/s390x/lower.isle +0 -0
  1400. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/s390x/lower.rs +0 -0
  1401. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/s390x/mod.rs +0 -0
  1402. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/s390x/settings.rs +0 -0
  1403. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/unwind/systemv.rs +0 -0
  1404. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/unwind/winarm64.rs +0 -0
  1405. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/unwind/winx64.rs +0 -0
  1406. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/unwind.rs +0 -0
  1407. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/winch.rs +0 -0
  1408. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/encoding/evex.rs +0 -0
  1409. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/encoding/mod.rs +0 -0
  1410. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/encoding/rex.rs +0 -0
  1411. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/encoding/vex.rs +0 -0
  1412. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/inst/args.rs +0 -0
  1413. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/inst/emit.rs +0 -0
  1414. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/inst/emit_state.rs +0 -0
  1415. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/inst/emit_tests.rs +0 -0
  1416. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/inst/mod.rs +0 -0
  1417. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/inst/regs.rs +0 -0
  1418. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/inst/stack_switch.rs +0 -0
  1419. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/inst/unwind/systemv.rs +0 -0
  1420. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/inst/unwind/winx64.rs +0 -0
  1421. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/inst/unwind.rs +0 -0
  1422. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/lower.isle +0 -0
  1423. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/lower.rs +0 -0
  1424. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/mod.rs +0 -0
  1425. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/pcc.rs +0 -0
  1426. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/settings.rs +0 -0
  1427. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/iterators.rs +0 -0
  1428. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/legalizer/globalvalue.rs +0 -0
  1429. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/legalizer/mod.rs +0 -0
  1430. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/lib.rs +0 -0
  1431. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/loop_analysis.rs +0 -0
  1432. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/machinst/blockorder.rs +0 -0
  1433. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/machinst/compile.rs +0 -0
  1434. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/machinst/helpers.rs +0 -0
  1435. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/machinst/inst_common.rs +0 -0
  1436. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/machinst/isle.rs +0 -0
  1437. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/machinst/mod.rs +0 -0
  1438. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/machinst/pcc.rs +0 -0
  1439. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/machinst/reg.rs +0 -0
  1440. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/machinst/valueregs.rs +0 -0
  1441. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/machinst/vcode.rs +0 -0
  1442. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/nan_canonicalization.rs +0 -0
  1443. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/opts/README.md +0 -0
  1444. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/opts/arithmetic.isle +0 -0
  1445. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/opts/bitops.isle +0 -0
  1446. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/opts/cprop.isle +0 -0
  1447. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/opts/extends.isle +0 -0
  1448. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/opts/generated_code.rs +0 -0
  1449. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/opts/icmp.isle +0 -0
  1450. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/opts/remat.isle +0 -0
  1451. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/opts/selects.isle +0 -0
  1452. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/opts/shifts.isle +0 -0
  1453. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/opts/spaceship.isle +0 -0
  1454. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/opts/spectre.isle +0 -0
  1455. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/opts/vector.isle +0 -0
  1456. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/opts.rs +0 -0
  1457. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/prelude_opt.isle +0 -0
  1458. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/print_errors.rs +0 -0
  1459. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ranges.rs +0 -0
  1460. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/remove_constant_phis.rs +0 -0
  1461. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/result.rs +0 -0
  1462. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/scoped_hash_map.rs +0 -0
  1463. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/settings.rs +0 -0
  1464. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/souper_harvest.rs +0 -0
  1465. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/timing.rs +0 -0
  1466. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/traversals.rs +0 -0
  1467. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/unionfind.rs +0 -0
  1468. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/unreachable_code.rs +0 -0
  1469. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/value_label.rs +0 -0
  1470. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/verifier/mod.rs +0 -0
  1471. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/write.rs +0 -0
  1472. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/LICENSE +0 -0
  1473. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/README.md +0 -0
  1474. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/cdsl/formats.rs +0 -0
  1475. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/cdsl/isa.rs +0 -0
  1476. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/cdsl/mod.rs +0 -0
  1477. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/cdsl/operands.rs +0 -0
  1478. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/cdsl/settings.rs +0 -0
  1479. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/cdsl/types.rs +0 -0
  1480. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/cdsl/typevar.rs +0 -0
  1481. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/constant_hash.rs +0 -0
  1482. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/error.rs +0 -0
  1483. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/gen_inst.rs +0 -0
  1484. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/gen_isle.rs +0 -0
  1485. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/gen_settings.rs +0 -0
  1486. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/gen_types.rs +0 -0
  1487. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/isa/arm64.rs +0 -0
  1488. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/isa/mod.rs +0 -0
  1489. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/isa/riscv64.rs +0 -0
  1490. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/isa/s390x.rs +0 -0
  1491. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/isa/x86.rs +0 -0
  1492. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/shared/entities.rs +0 -0
  1493. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/shared/formats.rs +0 -0
  1494. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/shared/immediates.rs +0 -0
  1495. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/shared/mod.rs +0 -0
  1496. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/shared/settings.rs +0 -0
  1497. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/shared/types.rs +0 -0
  1498. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/srcgen.rs +0 -0
  1499. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/unique_table.rs +0 -0
  1500. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.115.0 → cranelift-codegen-shared-0.116.1}/LICENSE +0 -0
  1501. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.115.0 → cranelift-codegen-shared-0.116.1}/README.md +0 -0
  1502. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.115.0 → cranelift-codegen-shared-0.116.1}/src/constant_hash.rs +0 -0
  1503. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.115.0 → cranelift-codegen-shared-0.116.1}/src/constants.rs +0 -0
  1504. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.115.0 → cranelift-codegen-shared-0.116.1}/src/lib.rs +0 -0
  1505. /data/ext/cargo-vendor/{cranelift-control-0.115.0 → cranelift-control-0.116.1}/LICENSE +0 -0
  1506. /data/ext/cargo-vendor/{cranelift-control-0.115.0 → cranelift-control-0.116.1}/README.md +0 -0
  1507. /data/ext/cargo-vendor/{cranelift-control-0.115.0 → cranelift-control-0.116.1}/src/chaos.rs +0 -0
  1508. /data/ext/cargo-vendor/{cranelift-control-0.115.0 → cranelift-control-0.116.1}/src/lib.rs +0 -0
  1509. /data/ext/cargo-vendor/{cranelift-control-0.115.0 → cranelift-control-0.116.1}/src/zero_sized.rs +0 -0
  1510. /data/ext/cargo-vendor/{cranelift-entity-0.115.0 → cranelift-entity-0.116.1}/LICENSE +0 -0
  1511. /data/ext/cargo-vendor/{cranelift-entity-0.115.0 → cranelift-entity-0.116.1}/README.md +0 -0
  1512. /data/ext/cargo-vendor/{cranelift-entity-0.115.0 → cranelift-entity-0.116.1}/src/boxed_slice.rs +0 -0
  1513. /data/ext/cargo-vendor/{cranelift-entity-0.115.0 → cranelift-entity-0.116.1}/src/iter.rs +0 -0
  1514. /data/ext/cargo-vendor/{cranelift-entity-0.115.0 → cranelift-entity-0.116.1}/src/keys.rs +0 -0
  1515. /data/ext/cargo-vendor/{cranelift-entity-0.115.0 → cranelift-entity-0.116.1}/src/lib.rs +0 -0
  1516. /data/ext/cargo-vendor/{cranelift-entity-0.115.0 → cranelift-entity-0.116.1}/src/list.rs +0 -0
  1517. /data/ext/cargo-vendor/{cranelift-entity-0.115.0 → cranelift-entity-0.116.1}/src/map.rs +0 -0
  1518. /data/ext/cargo-vendor/{cranelift-entity-0.115.0 → cranelift-entity-0.116.1}/src/packed_option.rs +0 -0
  1519. /data/ext/cargo-vendor/{cranelift-entity-0.115.0 → cranelift-entity-0.116.1}/src/primary.rs +0 -0
  1520. /data/ext/cargo-vendor/{cranelift-entity-0.115.0 → cranelift-entity-0.116.1}/src/set.rs +0 -0
  1521. /data/ext/cargo-vendor/{cranelift-entity-0.115.0 → cranelift-entity-0.116.1}/src/signed.rs +0 -0
  1522. /data/ext/cargo-vendor/{cranelift-entity-0.115.0 → cranelift-entity-0.116.1}/src/unsigned.rs +0 -0
  1523. /data/ext/cargo-vendor/{cranelift-frontend-0.115.0 → cranelift-frontend-0.116.0}/LICENSE +0 -0
  1524. /data/ext/cargo-vendor/{cranelift-frontend-0.115.0 → cranelift-frontend-0.116.0}/README.md +0 -0
  1525. /data/ext/cargo-vendor/{cranelift-frontend-0.115.0 → cranelift-frontend-0.116.0}/src/frontend/safepoints.rs +0 -0
  1526. /data/ext/cargo-vendor/{cranelift-frontend-0.115.0 → cranelift-frontend-0.116.0}/src/frontend.rs +0 -0
  1527. /data/ext/cargo-vendor/{cranelift-frontend-0.115.0 → cranelift-frontend-0.116.0}/src/lib.rs +0 -0
  1528. /data/ext/cargo-vendor/{cranelift-frontend-0.115.0 → cranelift-frontend-0.116.0}/src/ssa.rs +0 -0
  1529. /data/ext/cargo-vendor/{cranelift-frontend-0.115.0 → cranelift-frontend-0.116.0}/src/switch.rs +0 -0
  1530. /data/ext/cargo-vendor/{cranelift-frontend-0.115.0 → cranelift-frontend-0.116.0}/src/variable.rs +0 -0
  1531. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/README.md +0 -0
  1532. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/build.rs +0 -0
  1533. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/fail/bad_converters.isle +0 -0
  1534. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/fail/bound_var_type_mismatch.isle +0 -0
  1535. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/fail/converter_extractor_constructor.isle +0 -0
  1536. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/fail/error1.isle +0 -0
  1537. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/fail/extra_parens.isle +0 -0
  1538. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/fail/impure_expression.isle +0 -0
  1539. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/fail/impure_rhs.isle +0 -0
  1540. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/fail/multi_internal_etor.isle +0 -0
  1541. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/fail/multi_prio.isle +0 -0
  1542. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/link/borrows.isle +0 -0
  1543. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/link/borrows_main.rs +0 -0
  1544. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/link/iflets.isle +0 -0
  1545. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/link/iflets_main.rs +0 -0
  1546. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/link/multi_constructor.isle +0 -0
  1547. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/link/multi_constructor_main.rs +0 -0
  1548. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/link/multi_extractor.isle +0 -0
  1549. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/link/multi_extractor_main.rs +0 -0
  1550. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/link/test.isle +0 -0
  1551. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/link/test_main.rs +0 -0
  1552. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/pass/bound_var.isle +0 -0
  1553. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/pass/construct_and_extract.isle +0 -0
  1554. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/pass/conversions.isle +0 -0
  1555. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/pass/conversions_extern.isle +0 -0
  1556. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/pass/let.isle +0 -0
  1557. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/pass/nodebug.isle +0 -0
  1558. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/pass/prio_trie_bug.isle +0 -0
  1559. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/pass/test2.isle +0 -0
  1560. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/pass/test3.isle +0 -0
  1561. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/pass/test4.isle +0 -0
  1562. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/pass/tutorial.isle +0 -0
  1563. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/pass/veri_spec.isle +0 -0
  1564. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/run/iconst.isle +0 -0
  1565. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/run/iconst_main.rs +0 -0
  1566. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/run/let_shadowing.isle +0 -0
  1567. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/run/let_shadowing_main.rs +0 -0
  1568. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/ast.rs +0 -0
  1569. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/codegen.rs +0 -0
  1570. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/compile.rs +0 -0
  1571. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/disjointsets.rs +0 -0
  1572. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/error.rs +0 -0
  1573. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/files.rs +0 -0
  1574. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/lexer.rs +0 -0
  1575. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/lib.rs +0 -0
  1576. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/log.rs +0 -0
  1577. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/overlap.rs +0 -0
  1578. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/parser.rs +0 -0
  1579. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/sema.rs +0 -0
  1580. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/serialize.rs +0 -0
  1581. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/stablemapset.rs +0 -0
  1582. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/trie_again.rs +0 -0
  1583. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/tests/run_tests.rs +0 -0
  1584. /data/ext/cargo-vendor/{cranelift-native-0.115.0 → cranelift-native-0.116.0}/LICENSE +0 -0
  1585. /data/ext/cargo-vendor/{cranelift-native-0.115.0 → cranelift-native-0.116.0}/README.md +0 -0
  1586. /data/ext/cargo-vendor/{cranelift-native-0.115.0 → cranelift-native-0.116.0}/src/lib.rs +0 -0
  1587. /data/ext/cargo-vendor/{cranelift-native-0.115.0 → cranelift-native-0.116.0}/src/riscv.rs +0 -0
  1588. /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.28 → deterministic-wasi-ctx-0.1.29}/src/clocks.rs +0 -0
  1589. /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.28 → deterministic-wasi-ctx-0.1.29}/src/lib.rs +0 -0
  1590. /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.28 → deterministic-wasi-ctx-0.1.29}/src/noop_scheduler.rs +0 -0
  1591. /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.28 → deterministic-wasi-ctx-0.1.29}/tests/clocks.rs +0 -0
  1592. /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.28 → deterministic-wasi-ctx-0.1.29}/tests/random.rs +0 -0
  1593. /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.28 → deterministic-wasi-ctx-0.1.29}/tests/scheduler.rs +0 -0
  1594. /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/LICENSE-APACHE +0 -0
  1595. /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/LICENSE-MIT +0 -0
  1596. /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/README.md +0 -0
  1597. /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/benches/bench.rs +0 -0
  1598. /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/benches/faststring.rs +0 -0
  1599. /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/arbitrary.rs +0 -0
  1600. /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/borsh.rs +0 -0
  1601. /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/macros.rs +0 -0
  1602. /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/map/core/raw_entry_v1.rs +0 -0
  1603. /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/map/mutable.rs +0 -0
  1604. /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/map/serde_seq.rs +0 -0
  1605. /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/map/slice.rs +0 -0
  1606. /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/map/tests.rs +0 -0
  1607. /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/rayon/map.rs +0 -0
  1608. /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/rayon/mod.rs +0 -0
  1609. /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/rayon/set.rs +0 -0
  1610. /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/rustc.rs +0 -0
  1611. /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/serde.rs +0 -0
  1612. /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/set/mutable.rs +0 -0
  1613. /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/set/slice.rs +0 -0
  1614. /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/set/tests.rs +0 -0
  1615. /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/tests/equivalent_trait.rs +0 -0
  1616. /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/tests/macros_full_path.rs +0 -0
  1617. /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/tests/quick.rs +0 -0
  1618. /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/tests/tests.rs +0 -0
  1619. /data/ext/cargo-vendor/{ipnet-2.10.1 → ipnet-2.11.0}/LICENSE-APACHE +0 -0
  1620. /data/ext/cargo-vendor/{ipnet-2.10.1 → ipnet-2.11.0}/LICENSE-MIT +0 -0
  1621. /data/ext/cargo-vendor/{ipnet-2.10.1 → ipnet-2.11.0}/README.md +0 -0
  1622. /data/ext/cargo-vendor/{ipnet-2.10.1 → ipnet-2.11.0}/RELEASES.md +0 -0
  1623. /data/ext/cargo-vendor/{ipnet-2.10.1 → ipnet-2.11.0}/src/ipnet_schemars.rs +0 -0
  1624. /data/ext/cargo-vendor/{ipnet-2.10.1 → ipnet-2.11.0}/src/ipnet_serde.rs +0 -0
  1625. /data/ext/cargo-vendor/{ipnet-2.10.1 → ipnet-2.11.0}/src/mask.rs +0 -0
  1626. /data/ext/cargo-vendor/{ipnet-2.10.1 → ipnet-2.11.0}/src/parser.rs +0 -0
  1627. /data/ext/cargo-vendor/{js-sys-0.3.76 → js-sys-0.3.77}/LICENSE-APACHE +0 -0
  1628. /data/ext/cargo-vendor/{js-sys-0.3.76 → js-sys-0.3.77}/LICENSE-MIT +0 -0
  1629. /data/ext/cargo-vendor/{js-sys-0.3.76 → js-sys-0.3.77}/src/Temporal.rs +0 -0
  1630. /data/ext/cargo-vendor/{log-0.4.22 → log-0.4.25}/LICENSE-APACHE +0 -0
  1631. /data/ext/cargo-vendor/{log-0.4.22 → log-0.4.25}/LICENSE-MIT +0 -0
  1632. /data/ext/cargo-vendor/{log-0.4.22 → log-0.4.25}/benches/value.rs +0 -0
  1633. /data/ext/cargo-vendor/{log-0.4.22 → log-0.4.25}/src/__private_api.rs +0 -0
  1634. /data/ext/cargo-vendor/{log-0.4.22 → log-0.4.25}/src/kv/error.rs +0 -0
  1635. /data/ext/cargo-vendor/{log-0.4.22 → log-0.4.25}/src/kv/source.rs +0 -0
  1636. /data/ext/cargo-vendor/{log-0.4.22 → log-0.4.25}/src/macros.rs +0 -0
  1637. /data/ext/cargo-vendor/{log-0.4.22 → log-0.4.25}/triagebot.toml +0 -0
  1638. /data/ext/cargo-vendor/{miniz_oxide-0.8.2 → miniz_oxide-0.8.3}/LICENSE-APACHE.md +0 -0
  1639. /data/ext/cargo-vendor/{miniz_oxide-0.8.2 → miniz_oxide-0.8.3}/Readme.md +0 -0
  1640. /data/ext/cargo-vendor/{miniz_oxide-0.8.2 → miniz_oxide-0.8.3}/src/deflate/buffer.rs +0 -0
  1641. /data/ext/cargo-vendor/{miniz_oxide-0.8.2 → miniz_oxide-0.8.3}/src/deflate/stream.rs +0 -0
  1642. /data/ext/cargo-vendor/{miniz_oxide-0.8.2 → miniz_oxide-0.8.3}/src/inflate/core.rs +0 -0
  1643. /data/ext/cargo-vendor/{miniz_oxide-0.8.2 → miniz_oxide-0.8.3}/src/inflate/mod.rs +0 -0
  1644. /data/ext/cargo-vendor/{miniz_oxide-0.8.2 → miniz_oxide-0.8.3}/src/inflate/output_buffer.rs +0 -0
  1645. /data/ext/cargo-vendor/{miniz_oxide-0.8.2 → miniz_oxide-0.8.3}/src/inflate/stream.rs +0 -0
  1646. /data/ext/cargo-vendor/{miniz_oxide-0.8.2 → miniz_oxide-0.8.3}/src/lib.rs +0 -0
  1647. /data/ext/cargo-vendor/{miniz_oxide-0.8.2 → miniz_oxide-0.8.3}/src/shared.rs +0 -0
  1648. /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/LICENSE-APACHE +0 -0
  1649. /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/LICENSE-MIT +0 -0
  1650. /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/README.md +0 -0
  1651. /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/build/probe.rs +0 -0
  1652. /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/build.rs +0 -0
  1653. /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/rust-toolchain.toml +0 -0
  1654. /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/src/detection.rs +0 -0
  1655. /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/src/extra.rs +0 -0
  1656. /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/src/location.rs +0 -0
  1657. /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/src/marker.rs +0 -0
  1658. /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/src/parse.rs +0 -0
  1659. /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/src/wrapper.rs +0 -0
  1660. /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/tests/comments.rs +0 -0
  1661. /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/tests/features.rs +0 -0
  1662. /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/tests/marker.rs +0 -0
  1663. /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/tests/test.rs +0 -0
  1664. /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/tests/test_fmt.rs +0 -0
  1665. /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/tests/test_size.rs +0 -0
  1666. /data/ext/cargo-vendor/{pulley-interpreter-28.0.0 → pulley-interpreter-29.0.0}/README.md +0 -0
  1667. /data/ext/cargo-vendor/{pulley-interpreter-28.0.0 → pulley-interpreter-29.0.0}/tests/all/main.rs +0 -0
  1668. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/CODE_OF_CONDUCT.md +0 -0
  1669. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/CONTRIBUTING.md +0 -0
  1670. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/COPYRIGHT +0 -0
  1671. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/LICENSE-APACHE +0 -0
  1672. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/LICENSE-Apache-2.0_WITH_LLVM-exception +0 -0
  1673. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/LICENSE-MIT +0 -0
  1674. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/ORG_CODE_OF_CONDUCT.md +0 -0
  1675. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/README.md +0 -0
  1676. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/SECURITY.md +0 -0
  1677. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/benches/mod.rs +0 -0
  1678. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/build.rs +0 -0
  1679. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/c.rs +0 -0
  1680. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/conv.rs +0 -0
  1681. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/event/epoll.rs +0 -0
  1682. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/event/mod.rs +0 -0
  1683. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/event/poll_fd.rs +0 -0
  1684. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/event/syscalls.rs +0 -0
  1685. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/event/types.rs +0 -0
  1686. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/event/windows_syscalls.rs +0 -0
  1687. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/fs/dir.rs +0 -0
  1688. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/fs/inotify.rs +0 -0
  1689. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/fs/makedev.rs +0 -0
  1690. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/fs/mod.rs +0 -0
  1691. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/fs/syscalls.rs +0 -0
  1692. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/fs/types.rs +0 -0
  1693. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/io/errno.rs +0 -0
  1694. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/io/mod.rs +0 -0
  1695. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/io/syscalls.rs +0 -0
  1696. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/io/types.rs +0 -0
  1697. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/io/windows_syscalls.rs +0 -0
  1698. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/io_uring/mod.rs +0 -0
  1699. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/io_uring/syscalls.rs +0 -0
  1700. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/mm/mod.rs +0 -0
  1701. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/mm/syscalls.rs +0 -0
  1702. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/mm/types.rs +0 -0
  1703. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/mod.rs +0 -0
  1704. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/mount/mod.rs +0 -0
  1705. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/mount/syscalls.rs +0 -0
  1706. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/mount/types.rs +0 -0
  1707. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/net/addr.rs +0 -0
  1708. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/net/ext.rs +0 -0
  1709. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/net/mod.rs +0 -0
  1710. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/net/msghdr.rs +0 -0
  1711. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/net/netdevice.rs +0 -0
  1712. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/net/read_sockaddr.rs +0 -0
  1713. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/net/send_recv.rs +0 -0
  1714. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/net/sockopt.rs +0 -0
  1715. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/net/syscalls.rs +0 -0
  1716. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/net/write_sockaddr.rs +0 -0
  1717. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/param/auxv.rs +0 -0
  1718. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/param/mod.rs +0 -0
  1719. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/pid/mod.rs +0 -0
  1720. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/pid/syscalls.rs +0 -0
  1721. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/pipe/mod.rs +0 -0
  1722. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/pipe/syscalls.rs +0 -0
  1723. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/pipe/types.rs +0 -0
  1724. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/prctl/mod.rs +0 -0
  1725. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/prctl/syscalls.rs +0 -0
  1726. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/process/cpu_set.rs +0 -0
  1727. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/process/mod.rs +0 -0
  1728. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/process/syscalls.rs +0 -0
  1729. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/process/types.rs +0 -0
  1730. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/process/wait.rs +0 -0
  1731. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/pty/mod.rs +0 -0
  1732. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/pty/syscalls.rs +0 -0
  1733. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/rand/mod.rs +0 -0
  1734. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/rand/syscalls.rs +0 -0
  1735. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/rand/types.rs +0 -0
  1736. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/shm/mod.rs +0 -0
  1737. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/shm/syscalls.rs +0 -0
  1738. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/shm/types.rs +0 -0
  1739. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/system/mod.rs +0 -0
  1740. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/system/types.rs +0 -0
  1741. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/termios/mod.rs +0 -0
  1742. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/termios/syscalls.rs +0 -0
  1743. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/thread/futex.rs +0 -0
  1744. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/thread/mod.rs +0 -0
  1745. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/thread/syscalls.rs +0 -0
  1746. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/time/mod.rs +0 -0
  1747. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/time/syscalls.rs +0 -0
  1748. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/time/types.rs +0 -0
  1749. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/ugid/mod.rs +0 -0
  1750. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/ugid/syscalls.rs +0 -0
  1751. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/winsock_c.rs +0 -0
  1752. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/arch/aarch64.rs +0 -0
  1753. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/arch/arm.rs +0 -0
  1754. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/arch/mips.rs +0 -0
  1755. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/arch/mips32r6.rs +0 -0
  1756. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/arch/mips64.rs +0 -0
  1757. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/arch/mips64r6.rs +0 -0
  1758. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/arch/mod.rs +0 -0
  1759. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/arch/powerpc64.rs +0 -0
  1760. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/arch/riscv64.rs +0 -0
  1761. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/arch/s390x.rs +0 -0
  1762. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/arch/thumb.rs +0 -0
  1763. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/arch/x86.rs +0 -0
  1764. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/arch/x86_64.rs +0 -0
  1765. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/c.rs +0 -0
  1766. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/conv.rs +0 -0
  1767. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/event/epoll.rs +0 -0
  1768. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/event/mod.rs +0 -0
  1769. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/event/poll_fd.rs +0 -0
  1770. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/event/syscalls.rs +0 -0
  1771. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/event/types.rs +0 -0
  1772. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/fs/dir.rs +0 -0
  1773. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/fs/inotify.rs +0 -0
  1774. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/fs/makedev.rs +0 -0
  1775. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/fs/mod.rs +0 -0
  1776. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/fs/syscalls.rs +0 -0
  1777. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/fs/types.rs +0 -0
  1778. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/io/errno.rs +0 -0
  1779. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/io/mod.rs +0 -0
  1780. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/io/syscalls.rs +0 -0
  1781. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/io/types.rs +0 -0
  1782. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/io_uring/mod.rs +0 -0
  1783. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/io_uring/syscalls.rs +0 -0
  1784. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/mm/mod.rs +0 -0
  1785. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/mm/syscalls.rs +0 -0
  1786. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/mm/types.rs +0 -0
  1787. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/mod.rs +0 -0
  1788. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/mount/mod.rs +0 -0
  1789. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/mount/syscalls.rs +0 -0
  1790. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/mount/types.rs +0 -0
  1791. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/net/addr.rs +0 -0
  1792. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/net/mod.rs +0 -0
  1793. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/net/msghdr.rs +0 -0
  1794. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/net/netdevice.rs +0 -0
  1795. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/net/read_sockaddr.rs +0 -0
  1796. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/net/send_recv.rs +0 -0
  1797. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/net/sockopt.rs +0 -0
  1798. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/net/syscalls.rs +0 -0
  1799. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/net/write_sockaddr.rs +0 -0
  1800. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/param/auxv.rs +0 -0
  1801. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/param/init.rs +0 -0
  1802. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/param/libc_auxv.rs +0 -0
  1803. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/param/mod.rs +0 -0
  1804. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/pid/mod.rs +0 -0
  1805. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/pid/syscalls.rs +0 -0
  1806. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/pipe/mod.rs +0 -0
  1807. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/pipe/syscalls.rs +0 -0
  1808. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/pipe/types.rs +0 -0
  1809. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/prctl/mod.rs +0 -0
  1810. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/prctl/syscalls.rs +0 -0
  1811. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/process/cpu_set.rs +0 -0
  1812. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/process/mod.rs +0 -0
  1813. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/process/syscalls.rs +0 -0
  1814. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/process/types.rs +0 -0
  1815. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/process/wait.rs +0 -0
  1816. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/pty/mod.rs +0 -0
  1817. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/pty/syscalls.rs +0 -0
  1818. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/rand/mod.rs +0 -0
  1819. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/rand/syscalls.rs +0 -0
  1820. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/rand/types.rs +0 -0
  1821. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/reg.rs +0 -0
  1822. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/runtime/mod.rs +0 -0
  1823. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/runtime/syscalls.rs +0 -0
  1824. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/runtime/tls.rs +0 -0
  1825. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/shm/mod.rs +0 -0
  1826. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/shm/syscalls.rs +0 -0
  1827. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/shm/types.rs +0 -0
  1828. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/system/mod.rs +0 -0
  1829. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/system/types.rs +0 -0
  1830. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/termios/mod.rs +0 -0
  1831. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/termios/syscalls.rs +0 -0
  1832. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/thread/futex.rs +0 -0
  1833. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/thread/mod.rs +0 -0
  1834. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/thread/syscalls.rs +0 -0
  1835. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/time/mod.rs +0 -0
  1836. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/time/syscalls.rs +0 -0
  1837. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/time/types.rs +0 -0
  1838. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/ugid/mod.rs +0 -0
  1839. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/ugid/syscalls.rs +0 -0
  1840. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/vdso.rs +0 -0
  1841. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/vdso_wrappers.rs +0 -0
  1842. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/bitcast.rs +0 -0
  1843. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/buffer.rs +0 -0
  1844. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/check_types.rs +0 -0
  1845. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/clockid.rs +0 -0
  1846. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/cstr.rs +0 -0
  1847. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/event/epoll.rs +0 -0
  1848. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/event/eventfd.rs +0 -0
  1849. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/event/kqueue.rs +0 -0
  1850. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/event/mod.rs +0 -0
  1851. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/event/pause.rs +0 -0
  1852. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/event/poll.rs +0 -0
  1853. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/event/port.rs +0 -0
  1854. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/event/select.rs +0 -0
  1855. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/ffi.rs +0 -0
  1856. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/abs.rs +0 -0
  1857. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/at.rs +0 -0
  1858. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/constants.rs +0 -0
  1859. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/copy_file_range.rs +0 -0
  1860. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/cwd.rs +0 -0
  1861. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/dir.rs +0 -0
  1862. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/fadvise.rs +0 -0
  1863. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/fcntl.rs +0 -0
  1864. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/fcntl_apple.rs +0 -0
  1865. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/fcopyfile.rs +0 -0
  1866. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/fd.rs +0 -0
  1867. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/getpath.rs +0 -0
  1868. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/id.rs +0 -0
  1869. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/inotify.rs +0 -0
  1870. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/ioctl.rs +0 -0
  1871. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/makedev.rs +0 -0
  1872. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/memfd_create.rs +0 -0
  1873. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/mod.rs +0 -0
  1874. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/mount.rs +0 -0
  1875. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/openat2.rs +0 -0
  1876. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/raw_dir.rs +0 -0
  1877. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/seek_from.rs +0 -0
  1878. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/sendfile.rs +0 -0
  1879. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/special.rs +0 -0
  1880. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/statx.rs +0 -0
  1881. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/sync.rs +0 -0
  1882. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/xattr.rs +0 -0
  1883. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/io/close.rs +0 -0
  1884. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/io/dup.rs +0 -0
  1885. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/io/errno.rs +0 -0
  1886. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/io/fcntl.rs +0 -0
  1887. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/io/ioctl.rs +0 -0
  1888. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/io/is_read_write.rs +0 -0
  1889. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/io/mod.rs +0 -0
  1890. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/io/read_write.rs +0 -0
  1891. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/io_uring.rs +0 -0
  1892. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/ioctl/bsd.rs +0 -0
  1893. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/ioctl/linux.rs +0 -0
  1894. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/ioctl/mod.rs +0 -0
  1895. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/ioctl/patterns.rs +0 -0
  1896. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/maybe_polyfill/no_std/io/mod.rs +0 -0
  1897. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/maybe_polyfill/no_std/mod.rs +0 -0
  1898. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/maybe_polyfill/no_std/net/mod.rs +0 -0
  1899. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/maybe_polyfill/no_std/os/fd/mod.rs +0 -0
  1900. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/maybe_polyfill/no_std/os/fd/owned.rs +0 -0
  1901. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/maybe_polyfill/no_std/os/fd/raw.rs +0 -0
  1902. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/maybe_polyfill/no_std/os/mod.rs +0 -0
  1903. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/maybe_polyfill/no_std/os/windows/io/mod.rs +0 -0
  1904. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/maybe_polyfill/no_std/os/windows/io/raw.rs +0 -0
  1905. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/maybe_polyfill/no_std/os/windows/io/socket.rs +0 -0
  1906. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/maybe_polyfill/no_std/os/windows/mod.rs +0 -0
  1907. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/mm/madvise.rs +0 -0
  1908. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/mm/mmap.rs +0 -0
  1909. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/mm/mod.rs +0 -0
  1910. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/mm/msync.rs +0 -0
  1911. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/mm/userfaultfd.rs +0 -0
  1912. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/mount/fsopen.rs +0 -0
  1913. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/mount/mod.rs +0 -0
  1914. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/mount/mount_unmount.rs +0 -0
  1915. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/mount/types.rs +0 -0
  1916. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/net/mod.rs +0 -0
  1917. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/net/netdevice.rs +0 -0
  1918. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/net/send_recv/mod.rs +0 -0
  1919. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/net/send_recv/msg.rs +0 -0
  1920. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/net/socket.rs +0 -0
  1921. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/net/socket_addr_any.rs +0 -0
  1922. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/net/socketpair.rs +0 -0
  1923. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/net/sockopt.rs +0 -0
  1924. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/net/types.rs +0 -0
  1925. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/net/wsa.rs +0 -0
  1926. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/param/auxv.rs +0 -0
  1927. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/param/init.rs +0 -0
  1928. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/param/mod.rs +0 -0
  1929. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/path/arg.rs +0 -0
  1930. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/path/dec_int.rs +0 -0
  1931. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/path/mod.rs +0 -0
  1932. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/pid.rs +0 -0
  1933. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/pipe.rs +0 -0
  1934. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/prctl.rs +0 -0
  1935. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/chdir.rs +0 -0
  1936. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/chroot.rs +0 -0
  1937. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/exit.rs +0 -0
  1938. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/id.rs +0 -0
  1939. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/ioctl.rs +0 -0
  1940. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/kill.rs +0 -0
  1941. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/membarrier.rs +0 -0
  1942. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/mod.rs +0 -0
  1943. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/pidfd.rs +0 -0
  1944. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/pidfd_getfd.rs +0 -0
  1945. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/pivot_root.rs +0 -0
  1946. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/prctl.rs +0 -0
  1947. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/priority.rs +0 -0
  1948. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/procctl.rs +0 -0
  1949. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/rlimit.rs +0 -0
  1950. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/sched.rs +0 -0
  1951. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/sched_yield.rs +0 -0
  1952. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/umask.rs +0 -0
  1953. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/wait.rs +0 -0
  1954. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/procfs.rs +0 -0
  1955. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/pty.rs +0 -0
  1956. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/rand/getrandom.rs +0 -0
  1957. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/rand/mod.rs +0 -0
  1958. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/runtime.rs +0 -0
  1959. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/shm.rs +0 -0
  1960. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/signal.rs +0 -0
  1961. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/static_assertions.rs +0 -0
  1962. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/stdio.rs +0 -0
  1963. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/termios/ioctl.rs +0 -0
  1964. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/termios/mod.rs +0 -0
  1965. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/termios/tc.rs +0 -0
  1966. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/termios/tty.rs +0 -0
  1967. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/termios/types.rs +0 -0
  1968. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/thread/clock.rs +0 -0
  1969. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/thread/futex.rs +0 -0
  1970. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/thread/id.rs +0 -0
  1971. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/thread/libcap.rs +0 -0
  1972. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/thread/mod.rs +0 -0
  1973. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/thread/prctl.rs +0 -0
  1974. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/thread/setns.rs +0 -0
  1975. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/time/clock.rs +0 -0
  1976. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/time/mod.rs +0 -0
  1977. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/time/timerfd.rs +0 -0
  1978. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/timespec.rs +0 -0
  1979. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/ugid.rs +0 -0
  1980. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/utils.rs +0 -0
  1981. /data/ext/cargo-vendor/{semver-1.0.24 → rustversion-1.0.19}/LICENSE-APACHE +0 -0
  1982. /data/ext/cargo-vendor/{semver-1.0.24 → rustversion-1.0.19}/LICENSE-MIT +0 -0
  1983. /data/ext/cargo-vendor/{serde_json-1.0.135 → rustversion-1.0.19}/tests/compiletest.rs +0 -0
  1984. /data/ext/cargo-vendor/{serde_json-1.0.135 → semver-1.0.25}/LICENSE-APACHE +0 -0
  1985. /data/ext/cargo-vendor/{serde_json-1.0.135 → semver-1.0.25}/LICENSE-MIT +0 -0
  1986. /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/README.md +0 -0
  1987. /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/benches/parse.rs +0 -0
  1988. /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/build.rs +0 -0
  1989. /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/src/backport.rs +0 -0
  1990. /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/src/display.rs +0 -0
  1991. /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/src/error.rs +0 -0
  1992. /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/src/eval.rs +0 -0
  1993. /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/src/identifier.rs +0 -0
  1994. /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/src/impls.rs +0 -0
  1995. /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/src/parse.rs +0 -0
  1996. /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/src/serde.rs +0 -0
  1997. /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/tests/node/mod.rs +0 -0
  1998. /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/tests/test_autotrait.rs +0 -0
  1999. /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/tests/test_identifier.rs +0 -0
  2000. /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/tests/test_version.rs +0 -0
  2001. /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/tests/test_version_req.rs +0 -0
  2002. /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/tests/util/mod.rs +0 -0
  2003. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/CONTRIBUTING.md +0 -0
  2004. /data/ext/cargo-vendor/{syn-2.0.95 → serde_json-1.0.137}/LICENSE-APACHE +0 -0
  2005. /data/ext/cargo-vendor/{syn-2.0.95 → serde_json-1.0.137}/LICENSE-MIT +0 -0
  2006. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/README.md +0 -0
  2007. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/build.rs +0 -0
  2008. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/de.rs +0 -0
  2009. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/error.rs +0 -0
  2010. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/io/core.rs +0 -0
  2011. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/io/mod.rs +0 -0
  2012. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/iter.rs +0 -0
  2013. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/algorithm.rs +0 -0
  2014. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/bhcomp.rs +0 -0
  2015. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/bignum.rs +0 -0
  2016. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/cached.rs +0 -0
  2017. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/cached_float80.rs +0 -0
  2018. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/digit.rs +0 -0
  2019. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/errors.rs +0 -0
  2020. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/exponent.rs +0 -0
  2021. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/float.rs +0 -0
  2022. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/large_powers.rs +0 -0
  2023. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/large_powers32.rs +0 -0
  2024. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/large_powers64.rs +0 -0
  2025. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/math.rs +0 -0
  2026. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/mod.rs +0 -0
  2027. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/num.rs +0 -0
  2028. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/parse.rs +0 -0
  2029. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/rounding.rs +0 -0
  2030. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/shift.rs +0 -0
  2031. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/small_powers.rs +0 -0
  2032. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/macros.rs +0 -0
  2033. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/map.rs +0 -0
  2034. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/number.rs +0 -0
  2035. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/raw.rs +0 -0
  2036. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/read.rs +0 -0
  2037. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/ser.rs +0 -0
  2038. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/value/de.rs +0 -0
  2039. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/value/from.rs +0 -0
  2040. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/value/index.rs +0 -0
  2041. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/value/mod.rs +0 -0
  2042. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/value/partial_eq.rs +0 -0
  2043. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/debug.rs +0 -0
  2044. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/lexical/algorithm.rs +0 -0
  2045. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/lexical/exponent.rs +0 -0
  2046. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/lexical/float.rs +0 -0
  2047. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/lexical/math.rs +0 -0
  2048. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/lexical/num.rs +0 -0
  2049. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/lexical/parse.rs +0 -0
  2050. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/lexical/rounding.rs +0 -0
  2051. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/lexical.rs +0 -0
  2052. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/macros/mod.rs +0 -0
  2053. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/map.rs +0 -0
  2054. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/regression/issue1004.rs +0 -0
  2055. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/regression/issue520.rs +0 -0
  2056. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/regression/issue795.rs +0 -0
  2057. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/regression/issue845.rs +0 -0
  2058. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/regression/issue953.rs +0 -0
  2059. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/regression.rs +0 -0
  2060. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/stream.rs +0 -0
  2061. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/test.rs +0 -0
  2062. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/missing_colon.rs +0 -0
  2063. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/missing_colon.stderr +0 -0
  2064. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/missing_comma.rs +0 -0
  2065. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/missing_comma.stderr +0 -0
  2066. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/missing_value.rs +0 -0
  2067. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/missing_value.stderr +0 -0
  2068. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/not_found.rs +0 -0
  2069. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/not_found.stderr +0 -0
  2070. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/parse_expr.rs +0 -0
  2071. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/parse_expr.stderr +0 -0
  2072. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/parse_key.rs +0 -0
  2073. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/parse_key.stderr +0 -0
  2074. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/unexpected_after_array_element.rs +0 -0
  2075. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/unexpected_after_array_element.stderr +0 -0
  2076. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/unexpected_after_map_entry.rs +0 -0
  2077. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/unexpected_after_map_entry.stderr +0 -0
  2078. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/unexpected_colon.rs +0 -0
  2079. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/unexpected_colon.stderr +0 -0
  2080. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/unexpected_comma.rs +0 -0
  2081. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/unexpected_comma.stderr +0 -0
  2082. /data/ext/cargo-vendor/{unicode-ident-1.0.14 → syn-2.0.96}/LICENSE-APACHE +0 -0
  2083. /data/ext/cargo-vendor/{unicode-ident-1.0.14 → syn-2.0.96}/LICENSE-MIT +0 -0
  2084. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/README.md +0 -0
  2085. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/benches/file.rs +0 -0
  2086. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/benches/rust.rs +0 -0
  2087. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/attr.rs +0 -0
  2088. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/bigint.rs +0 -0
  2089. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/buffer.rs +0 -0
  2090. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/classify.rs +0 -0
  2091. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/custom_keyword.rs +0 -0
  2092. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/custom_punctuation.rs +0 -0
  2093. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/data.rs +0 -0
  2094. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/derive.rs +0 -0
  2095. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/discouraged.rs +0 -0
  2096. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/drops.rs +0 -0
  2097. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/error.rs +0 -0
  2098. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/export.rs +0 -0
  2099. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/ext.rs +0 -0
  2100. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/file.rs +0 -0
  2101. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/gen/clone.rs +0 -0
  2102. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/gen/debug.rs +0 -0
  2103. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/gen/eq.rs +0 -0
  2104. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/gen/fold.rs +0 -0
  2105. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/gen/hash.rs +0 -0
  2106. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/gen/token.css +0 -0
  2107. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/gen/visit.rs +0 -0
  2108. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/gen/visit_mut.rs +0 -0
  2109. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/generics.rs +0 -0
  2110. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/group.rs +0 -0
  2111. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/ident.rs +0 -0
  2112. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/item.rs +0 -0
  2113. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/lifetime.rs +0 -0
  2114. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/lit.rs +0 -0
  2115. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/lookahead.rs +0 -0
  2116. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/mac.rs +0 -0
  2117. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/macros.rs +0 -0
  2118. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/meta.rs +0 -0
  2119. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/op.rs +0 -0
  2120. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/parse.rs +0 -0
  2121. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/parse_macro_input.rs +0 -0
  2122. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/parse_quote.rs +0 -0
  2123. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/pat.rs +0 -0
  2124. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/path.rs +0 -0
  2125. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/precedence.rs +0 -0
  2126. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/print.rs +0 -0
  2127. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/punctuated.rs +0 -0
  2128. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/restriction.rs +0 -0
  2129. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/scan_expr.rs +0 -0
  2130. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/sealed.rs +0 -0
  2131. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/span.rs +0 -0
  2132. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/spanned.rs +0 -0
  2133. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/stmt.rs +0 -0
  2134. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/thread.rs +0 -0
  2135. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/token.rs +0 -0
  2136. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/tt.rs +0 -0
  2137. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/ty.rs +0 -0
  2138. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/verbatim.rs +0 -0
  2139. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/whitespace.rs +0 -0
  2140. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/common/eq.rs +0 -0
  2141. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/common/mod.rs +0 -0
  2142. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/common/parse.rs +0 -0
  2143. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/common/visit.rs +0 -0
  2144. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/debug/gen.rs +0 -0
  2145. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/debug/mod.rs +0 -0
  2146. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/macros/mod.rs +0 -0
  2147. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/regression/issue1108.rs +0 -0
  2148. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/regression/issue1235.rs +0 -0
  2149. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/regression.rs +0 -0
  2150. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/repo/mod.rs +0 -0
  2151. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/repo/progress.rs +0 -0
  2152. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_asyncness.rs +0 -0
  2153. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_attribute.rs +0 -0
  2154. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_derive_input.rs +0 -0
  2155. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_generics.rs +0 -0
  2156. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_grouping.rs +0 -0
  2157. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_ident.rs +0 -0
  2158. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_item.rs +0 -0
  2159. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_iterators.rs +0 -0
  2160. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_lit.rs +0 -0
  2161. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_meta.rs +0 -0
  2162. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_parse_buffer.rs +0 -0
  2163. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_parse_quote.rs +0 -0
  2164. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_parse_stream.rs +0 -0
  2165. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_pat.rs +0 -0
  2166. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_path.rs +0 -0
  2167. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_precedence.rs +0 -0
  2168. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_receiver.rs +0 -0
  2169. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_round_trip.rs +0 -0
  2170. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_shebang.rs +0 -0
  2171. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_size.rs +0 -0
  2172. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_stmt.rs +0 -0
  2173. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_token_trees.rs +0 -0
  2174. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_ty.rs +0 -0
  2175. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_unparenthesize.rs +0 -0
  2176. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_visibility.rs +0 -0
  2177. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/zzz_stable.rs +0 -0
  2178. /data/ext/cargo-vendor/{target-lexicon-0.12.16 → target-lexicon-0.13.1}/LICENSE +0 -0
  2179. /data/ext/cargo-vendor/{target-lexicon-0.12.16 → target-lexicon-0.13.1}/build.rs +0 -0
  2180. /data/ext/cargo-vendor/{target-lexicon-0.12.16 → target-lexicon-0.13.1}/examples/host.rs +0 -0
  2181. /data/ext/cargo-vendor/{target-lexicon-0.12.16 → target-lexicon-0.13.1}/examples/misc.rs +0 -0
  2182. /data/ext/cargo-vendor/{target-lexicon-0.12.16 → target-lexicon-0.13.1}/scripts/rust-targets.sh +0 -0
  2183. /data/ext/cargo-vendor/{target-lexicon-0.12.16 → target-lexicon-0.13.1}/src/data_model.rs +0 -0
  2184. /data/ext/cargo-vendor/{target-lexicon-0.12.16 → target-lexicon-0.13.1}/src/parse_error.rs +0 -0
  2185. /data/ext/cargo-vendor/{unicode-ident-1.0.14 → unicode-ident-1.0.15}/LICENSE-UNICODE +0 -0
  2186. /data/ext/cargo-vendor/{unicode-ident-1.0.14 → unicode-ident-1.0.15}/src/tables.rs +0 -0
  2187. /data/ext/cargo-vendor/{unicode-ident-1.0.14 → unicode-ident-1.0.15}/tests/compare.rs +0 -0
  2188. /data/ext/cargo-vendor/{unicode-ident-1.0.14 → unicode-ident-1.0.15}/tests/fst/mod.rs +0 -0
  2189. /data/ext/cargo-vendor/{unicode-ident-1.0.14 → unicode-ident-1.0.15}/tests/fst/xid_continue.fst +0 -0
  2190. /data/ext/cargo-vendor/{unicode-ident-1.0.14 → unicode-ident-1.0.15}/tests/fst/xid_start.fst +0 -0
  2191. /data/ext/cargo-vendor/{unicode-ident-1.0.14 → unicode-ident-1.0.15}/tests/roaring/mod.rs +0 -0
  2192. /data/ext/cargo-vendor/{unicode-ident-1.0.14 → unicode-ident-1.0.15}/tests/static_size.rs +0 -0
  2193. /data/ext/cargo-vendor/{unicode-ident-1.0.14 → unicode-ident-1.0.15}/tests/tables/mod.rs +0 -0
  2194. /data/ext/cargo-vendor/{unicode-ident-1.0.14 → unicode-ident-1.0.15}/tests/tables/tables.rs +0 -0
  2195. /data/ext/cargo-vendor/{unicode-ident-1.0.14 → unicode-ident-1.0.15}/tests/trie/mod.rs +0 -0
  2196. /data/ext/cargo-vendor/{unicode-ident-1.0.14 → unicode-ident-1.0.15}/tests/trie/trie.rs +0 -0
  2197. /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/LICENSE-APACHE +0 -0
  2198. /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/LICENSE-MIT +0 -0
  2199. /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/src/external/borsh_support.rs +0 -0
  2200. /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/src/external.rs +0 -0
  2201. /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/src/fmt.rs +0 -0
  2202. /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/src/macros.rs +0 -0
  2203. /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/src/md5.rs +0 -0
  2204. /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/src/parser.rs +0 -0
  2205. /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/src/rng.rs +0 -0
  2206. /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/src/sha1.rs +0 -0
  2207. /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/src/v1.rs +0 -0
  2208. /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/src/v3.rs +0 -0
  2209. /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/src/v4.rs +0 -0
  2210. /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/src/v6.rs +0 -0
  2211. /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/src/v8.rs +0 -0
  2212. /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/LICENSE +0 -0
  2213. /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/README.md +0 -0
  2214. /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/clocks.rs +0 -0
  2215. /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/ctx.rs +0 -0
  2216. /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/dir.rs +0 -0
  2217. /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/error.rs +0 -0
  2218. /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/file.rs +0 -0
  2219. /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/lib.rs +0 -0
  2220. /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/pipe.rs +0 -0
  2221. /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/random.rs +0 -0
  2222. /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/sched/subscription.rs +0 -0
  2223. /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/sched.rs +0 -0
  2224. /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/snapshots/mod.rs +0 -0
  2225. /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/snapshots/preview_0.rs +0 -0
  2226. /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/snapshots/preview_1/error.rs +0 -0
  2227. /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/snapshots/preview_1.rs +0 -0
  2228. /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/string_array.rs +0 -0
  2229. /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/sync/clocks.rs +0 -0
  2230. /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/sync/dir.rs +0 -0
  2231. /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/sync/file.rs +0 -0
  2232. /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/sync/mod.rs +0 -0
  2233. /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/sync/net.rs +0 -0
  2234. /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/sync/sched/unix.rs +0 -0
  2235. /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/sync/sched/windows.rs +0 -0
  2236. /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/sync/sched.rs +0 -0
  2237. /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/sync/stdio.rs +0 -0
  2238. /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/table.rs +0 -0
  2239. /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/tokio/dir.rs +0 -0
  2240. /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/tokio/file.rs +0 -0
  2241. /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/tokio/mod.rs +0 -0
  2242. /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/tokio/net.rs +0 -0
  2243. /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/tokio/sched/unix.rs +0 -0
  2244. /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/tokio/sched/windows.rs +0 -0
  2245. /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/tokio/sched.rs +0 -0
  2246. /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/tokio/stdio.rs +0 -0
  2247. /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/tests/all/async_.rs +0 -0
  2248. /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/tests/all/main.rs +0 -0
  2249. /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/tests/all/sync.rs +0 -0
  2250. /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/witx/preview0/typenames.witx +0 -0
  2251. /data/ext/cargo-vendor/{wasm-bindgen-0.2.99 → wasm-bindgen-0.2.100}/LICENSE-APACHE +0 -0
  2252. /data/ext/cargo-vendor/{wasm-bindgen-0.2.99 → wasm-bindgen-0.2.100}/LICENSE-MIT +0 -0
  2253. /data/ext/cargo-vendor/{wasm-bindgen-0.2.99 → wasm-bindgen-0.2.100}/build.rs +0 -0
  2254. /data/ext/cargo-vendor/{wasm-bindgen-0.2.99 → wasm-bindgen-0.2.100}/src/cache/mod.rs +0 -0
  2255. /data/ext/cargo-vendor/{wasm-bindgen-0.2.99 → wasm-bindgen-0.2.100}/src/cast.rs +0 -0
  2256. /data/ext/cargo-vendor/{wasm-bindgen-0.2.99 → wasm-bindgen-0.2.100}/src/convert/impls.rs +0 -0
  2257. /data/ext/cargo-vendor/{wasm-bindgen-0.2.99 → wasm-bindgen-0.2.100}/src/convert/mod.rs +0 -0
  2258. /data/ext/cargo-vendor/{wasm-bindgen-0.2.99 → wasm-bindgen-0.2.100}/src/convert/slices.rs +0 -0
  2259. /data/ext/cargo-vendor/{wasm-bindgen-0.2.99 → wasm-bindgen-0.2.100}/src/convert/traits.rs +0 -0
  2260. /data/ext/cargo-vendor/{wasm-bindgen-0.2.99 → wasm-bindgen-0.2.100}/src/describe.rs +0 -0
  2261. /data/ext/cargo-vendor/{wasm-bindgen-0.2.99 → wasm-bindgen-0.2.100}/src/link.rs +0 -0
  2262. /data/ext/cargo-vendor/{wasm-bindgen-backend-0.2.99 → wasm-bindgen-backend-0.2.100}/LICENSE-APACHE +0 -0
  2263. /data/ext/cargo-vendor/{wasm-bindgen-backend-0.2.99 → wasm-bindgen-backend-0.2.100}/LICENSE-MIT +0 -0
  2264. /data/ext/cargo-vendor/{wasm-bindgen-backend-0.2.99 → wasm-bindgen-backend-0.2.100}/src/error.rs +0 -0
  2265. /data/ext/cargo-vendor/{wasm-bindgen-backend-0.2.99 → wasm-bindgen-backend-0.2.100}/src/lib.rs +0 -0
  2266. /data/ext/cargo-vendor/{wasm-bindgen-backend-0.2.99 → wasm-bindgen-backend-0.2.100}/src/util.rs +0 -0
  2267. /data/ext/cargo-vendor/{wasm-bindgen-macro-0.2.99 → wasm-bindgen-macro-0.2.100}/LICENSE-APACHE +0 -0
  2268. /data/ext/cargo-vendor/{wasm-bindgen-macro-0.2.99 → wasm-bindgen-macro-0.2.100}/LICENSE-MIT +0 -0
  2269. /data/ext/cargo-vendor/{wasm-bindgen-macro-0.2.99 → wasm-bindgen-macro-0.2.100}/src/worker.js +0 -0
  2270. /data/ext/cargo-vendor/{wasm-bindgen-macro-support-0.2.99 → wasm-bindgen-macro-support-0.2.100}/LICENSE-APACHE +0 -0
  2271. /data/ext/cargo-vendor/{wasm-bindgen-macro-support-0.2.99 → wasm-bindgen-macro-support-0.2.100}/LICENSE-MIT +0 -0
  2272. /data/ext/cargo-vendor/{wasm-bindgen-shared-0.2.99 → wasm-bindgen-shared-0.2.100}/LICENSE-APACHE +0 -0
  2273. /data/ext/cargo-vendor/{wasm-bindgen-shared-0.2.99 → wasm-bindgen-shared-0.2.100}/LICENSE-MIT +0 -0
  2274. /data/ext/cargo-vendor/{wasm-bindgen-shared-0.2.99 → wasm-bindgen-shared-0.2.100}/build.rs +0 -0
  2275. /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/README.md +0 -0
  2276. /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/build.rs +0 -0
  2277. /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/component/aliases.rs +0 -0
  2278. /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/component/builder.rs +0 -0
  2279. /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/component/canonicals.rs +0 -0
  2280. /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/component/components.rs +0 -0
  2281. /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/component/exports.rs +0 -0
  2282. /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/component/imports.rs +0 -0
  2283. /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/component/instances.rs +0 -0
  2284. /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/component/modules.rs +0 -0
  2285. /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/component/names.rs +0 -0
  2286. /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/component/start.rs +0 -0
  2287. /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/component.rs +0 -0
  2288. /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/branch_hints.rs +0 -0
  2289. /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/code.rs +0 -0
  2290. /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/custom.rs +0 -0
  2291. /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/data.rs +0 -0
  2292. /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/dump.rs +0 -0
  2293. /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/elements.rs +0 -0
  2294. /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/exports.rs +0 -0
  2295. /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/functions.rs +0 -0
  2296. /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/globals.rs +0 -0
  2297. /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/imports.rs +0 -0
  2298. /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/linking.rs +0 -0
  2299. /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/memories.rs +0 -0
  2300. /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/names.rs +0 -0
  2301. /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/producers.rs +0 -0
  2302. /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/start.rs +0 -0
  2303. /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/tables.rs +0 -0
  2304. /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/tags.rs +0 -0
  2305. /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/types.rs +0 -0
  2306. /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core.rs +0 -0
  2307. /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/lib.rs +0 -0
  2308. /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/raw.rs +0 -0
  2309. /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/reencode.rs +0 -0
  2310. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/README.md +0 -0
  2311. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/benches/benchmark.rs +0 -0
  2312. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/build.rs +0 -0
  2313. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/examples/simple.rs +0 -0
  2314. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/arity.rs +0 -0
  2315. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/binary_reader/simd.rs +0 -0
  2316. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/binary_reader.rs +0 -0
  2317. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/collections/hash.rs +0 -0
  2318. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/collections/index_map/detail.rs +0 -0
  2319. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/collections/index_map/tests.rs +0 -0
  2320. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/collections/index_map.rs +0 -0
  2321. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/collections/index_set.rs +0 -0
  2322. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/collections/map.rs +0 -0
  2323. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/collections/mod.rs +0 -0
  2324. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/collections/set.rs +0 -0
  2325. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/features.rs +0 -0
  2326. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/lib.rs +0 -0
  2327. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/limits.rs +0 -0
  2328. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/parser.rs +0 -0
  2329. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/component/aliases.rs +0 -0
  2330. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/component/canonicals.rs +0 -0
  2331. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/component/exports.rs +0 -0
  2332. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/component/imports.rs +0 -0
  2333. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/component/instances.rs +0 -0
  2334. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/component/names.rs +0 -0
  2335. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/component/start.rs +0 -0
  2336. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/component.rs +0 -0
  2337. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/branch_hinting.rs +0 -0
  2338. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/code.rs +0 -0
  2339. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/coredumps.rs +0 -0
  2340. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/custom.rs +0 -0
  2341. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/data.rs +0 -0
  2342. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/dylink0.rs +0 -0
  2343. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/elements.rs +0 -0
  2344. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/exports.rs +0 -0
  2345. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/functions.rs +0 -0
  2346. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/globals.rs +0 -0
  2347. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/imports.rs +0 -0
  2348. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/init.rs +0 -0
  2349. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/linking.rs +0 -0
  2350. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/memories.rs +0 -0
  2351. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/names.rs +0 -0
  2352. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/operators.rs +0 -0
  2353. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/producers.rs +0 -0
  2354. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/reloc.rs +0 -0
  2355. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/tables.rs +0 -0
  2356. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/tags.rs +0 -0
  2357. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/types/matches.rs +0 -0
  2358. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/types.rs +0 -0
  2359. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core.rs +0 -0
  2360. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers.rs +0 -0
  2361. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/resources.rs +0 -0
  2362. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/validator/core/canonical.rs +0 -0
  2363. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/validator/core.rs +0 -0
  2364. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/validator/func.rs +0 -0
  2365. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/validator/names.rs +0 -0
  2366. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/validator/operators/simd.rs +0 -0
  2367. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/validator/operators.rs +0 -0
  2368. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/validator/types.rs +0 -0
  2369. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/validator.rs +0 -0
  2370. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/tests/big-module.rs +0 -0
  2371. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/LICENSE +0 -0
  2372. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/README.md +0 -0
  2373. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/build.rs +0 -0
  2374. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/proptest-regressions/runtime/vm/instance/allocator/pooling/memory_pool.txt +0 -0
  2375. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/lib.rs +0 -0
  2376. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/profiling_agent/jitdump.rs +0 -0
  2377. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/profiling_agent/perfmap.rs +0 -0
  2378. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/profiling_agent/vtune.rs +0 -0
  2379. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/profiling_agent.rs +0 -0
  2380. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/code.rs +0 -0
  2381. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/bindgen_examples/_0_hello_world.rs +0 -0
  2382. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/bindgen_examples/_1_world_imports.rs +0 -0
  2383. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/bindgen_examples/_2_world_exports.rs +0 -0
  2384. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/bindgen_examples/_3_interface_imports.rs +0 -0
  2385. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/bindgen_examples/_4_imported_resources.rs +0 -0
  2386. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/bindgen_examples/_5_all_world_export_kinds.rs +0 -0
  2387. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/bindgen_examples/_6_exported_resources.rs +0 -0
  2388. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/component.rs +0 -0
  2389. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/func/options.rs +0 -0
  2390. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/func.rs +0 -0
  2391. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/instance.rs +0 -0
  2392. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/linker.rs +0 -0
  2393. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/matching.rs +0 -0
  2394. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/resource_table.rs +0 -0
  2395. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/resources.rs +0 -0
  2396. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/storage.rs +0 -0
  2397. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/store.rs +0 -0
  2398. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/types.rs +0 -0
  2399. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/values.rs +0 -0
  2400. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/coredump.rs +0 -0
  2401. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/debug.rs +0 -0
  2402. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/externals/table.rs +0 -0
  2403. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/externals.rs +0 -0
  2404. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/disabled/anyref.rs +0 -0
  2405. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/disabled/arrayref.rs +0 -0
  2406. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/disabled/eqref.rs +0 -0
  2407. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/disabled/externref.rs +0 -0
  2408. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/disabled/i31.rs +0 -0
  2409. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/disabled/rooting.rs +0 -0
  2410. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/disabled/structref.rs +0 -0
  2411. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/disabled.rs +0 -0
  2412. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/enabled/anyref.rs +0 -0
  2413. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/enabled/arrayref.rs +0 -0
  2414. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/enabled/eqref.rs +0 -0
  2415. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/enabled/externref.rs +0 -0
  2416. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/enabled/i31.rs +0 -0
  2417. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/enabled/rooting.rs +0 -0
  2418. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/enabled/structref.rs +0 -0
  2419. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/enabled.rs +0 -0
  2420. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/noextern.rs +0 -0
  2421. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/none_ref.rs +0 -0
  2422. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc.rs +0 -0
  2423. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/instantiate.rs +0 -0
  2424. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/limits.rs +0 -0
  2425. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/linker.rs +0 -0
  2426. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/module.rs +0 -0
  2427. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/resources.rs +0 -0
  2428. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/stack.rs +0 -0
  2429. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/store/context.rs +0 -0
  2430. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/store/data.rs +0 -0
  2431. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/store/func_refs.rs +0 -0
  2432. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/trampoline/func.rs +0 -0
  2433. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/trampoline/table.rs +0 -0
  2434. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/trampoline.rs +0 -0
  2435. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/type_registry.rs +0 -0
  2436. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/types/matching.rs +0 -0
  2437. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/types.rs +0 -0
  2438. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/uninhabited.rs +0 -0
  2439. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/unix.rs +0 -0
  2440. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/v128.rs +0 -0
  2441. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/arch/aarch64.rs +0 -0
  2442. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/arch/riscv64.rs +0 -0
  2443. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/arch/s390x.S +0 -0
  2444. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/arch/s390x.rs +0 -0
  2445. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/async_yield.rs +0 -0
  2446. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/byte_count.rs +0 -0
  2447. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/component/resources.rs +0 -0
  2448. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/const_expr.rs +0 -0
  2449. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/cow_disabled.rs +0 -0
  2450. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/debug_builtins.rs +0 -0
  2451. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/export.rs +0 -0
  2452. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/gc/disabled.rs +0 -0
  2453. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/gc/enabled/arrayref.rs +0 -0
  2454. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/gc/enabled/data.rs +0 -0
  2455. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/gc/enabled/externref.rs +0 -0
  2456. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/gc/enabled/free_list.rs +0 -0
  2457. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/gc/enabled/null.rs +0 -0
  2458. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/gc/enabled/structref.rs +0 -0
  2459. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/gc/enabled.rs +0 -0
  2460. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/gc/func_ref.rs +0 -0
  2461. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/gc/gc_ref.rs +0 -0
  2462. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/gc/gc_runtime.rs +0 -0
  2463. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/gc/host_data.rs +0 -0
  2464. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/gc/i31.rs +0 -0
  2465. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/gc.rs +0 -0
  2466. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/imports.rs +0 -0
  2467. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/instance/allocator/on_demand.rs +0 -0
  2468. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/instance/allocator/pooling/decommit_queue.rs +0 -0
  2469. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/instance/allocator/pooling/gc_heap_pool.rs +0 -0
  2470. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/instance/allocator/pooling/generic_stack_pool.rs +0 -0
  2471. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/instance/allocator/pooling/index_allocator.rs +0 -0
  2472. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/instance/allocator.rs +0 -0
  2473. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/instance.rs +0 -0
  2474. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/memory/shared_memory.rs +0 -0
  2475. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/memory/shared_memory_disabled.rs +0 -0
  2476. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/module_id.rs +0 -0
  2477. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/mpk/disabled.rs +0 -0
  2478. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/mpk/enabled.rs +0 -0
  2479. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/mpk/mod.rs +0 -0
  2480. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/mpk/pkru.rs +0 -0
  2481. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/mpk/sys.rs +0 -0
  2482. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/parking_spot.rs +0 -0
  2483. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/send_sync_ptr.rs +0 -0
  2484. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/send_sync_unsafe_cell.rs +0 -0
  2485. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/store_box.rs +0 -0
  2486. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/sys/custom/capi.rs +0 -0
  2487. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/sys/custom/mod.rs +0 -0
  2488. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/sys/custom/traphandlers.rs +0 -0
  2489. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/sys/custom/unwind.rs +0 -0
  2490. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/sys/miri/mod.rs +0 -0
  2491. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/sys/miri/traphandlers.rs +0 -0
  2492. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/sys/miri/unwind.rs +0 -0
  2493. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/sys/mod.rs +0 -0
  2494. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/sys/unix/machports.rs +0 -0
  2495. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/sys/unix/mod.rs +0 -0
  2496. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/sys/unix/traphandlers.rs +0 -0
  2497. /data/ext/cargo-vendor/{wasmtime-28.0.0/src/runtime/vm/sys/windows/unwind.rs → wasmtime-29.0.0/src/runtime/vm/sys/windows/unwind64.rs} +0 -0
  2498. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/table.rs +0 -0
  2499. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/traphandlers/coredump_disabled.rs +0 -0
  2500. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/vmcontext/vm_host_func_context.rs +0 -0
  2501. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/wave/component.rs +0 -0
  2502. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/wave/core.rs +0 -0
  2503. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/wave.rs +0 -0
  2504. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/windows.rs +0 -0
  2505. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime.rs +0 -0
  2506. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/sync_nostd.rs +0 -0
  2507. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/sync_std.rs +0 -0
  2508. /data/ext/cargo-vendor/{wasmtime-asm-macros-28.0.0 → wasmtime-asm-macros-29.0.0}/src/lib.rs +0 -0
  2509. /data/ext/cargo-vendor/{wasmtime-cache-28.0.0 → wasmtime-cache-29.0.0}/LICENSE +0 -0
  2510. /data/ext/cargo-vendor/{wasmtime-cache-28.0.0 → wasmtime-cache-29.0.0}/build.rs +0 -0
  2511. /data/ext/cargo-vendor/{wasmtime-cache-28.0.0 → wasmtime-cache-29.0.0}/src/config/tests.rs +0 -0
  2512. /data/ext/cargo-vendor/{wasmtime-cache-28.0.0 → wasmtime-cache-29.0.0}/src/config.rs +0 -0
  2513. /data/ext/cargo-vendor/{wasmtime-cache-28.0.0 → wasmtime-cache-29.0.0}/src/lib.rs +0 -0
  2514. /data/ext/cargo-vendor/{wasmtime-cache-28.0.0 → wasmtime-cache-29.0.0}/src/tests.rs +0 -0
  2515. /data/ext/cargo-vendor/{wasmtime-cache-28.0.0 → wasmtime-cache-29.0.0}/src/worker/tests/system_time_stub.rs +0 -0
  2516. /data/ext/cargo-vendor/{wasmtime-cache-28.0.0 → wasmtime-cache-29.0.0}/src/worker/tests.rs +0 -0
  2517. /data/ext/cargo-vendor/{wasmtime-cache-28.0.0 → wasmtime-cache-29.0.0}/src/worker.rs +0 -0
  2518. /data/ext/cargo-vendor/{wasmtime-cache-28.0.0 → wasmtime-cache-29.0.0}/tests/cache_write_default_config.rs +0 -0
  2519. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/build.rs +0 -0
  2520. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/src/bindgen.rs +0 -0
  2521. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/src/component.rs +0 -0
  2522. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/src/lib.rs +0 -0
  2523. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/char.wit +0 -0
  2524. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/conventions.wit +0 -0
  2525. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/dead-code.wit +0 -0
  2526. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/direct-import.wit +0 -0
  2527. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/empty.wit +0 -0
  2528. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/flags.wit +0 -0
  2529. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/floats.wit +0 -0
  2530. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/function-new.wit +0 -0
  2531. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/host-world.wit +0 -0
  2532. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/integers.wit +0 -0
  2533. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/lists.wit +0 -0
  2534. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/many-arguments.wit +0 -0
  2535. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/multi-return.wit +0 -0
  2536. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/multiversion/deps/v1/root.wit +0 -0
  2537. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/multiversion/deps/v2/root.wit +0 -0
  2538. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/multiversion/root.wit +0 -0
  2539. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/path1/world.wit +0 -0
  2540. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/path2/world.wit +0 -0
  2541. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/records.wit +0 -0
  2542. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/rename.wit +0 -0
  2543. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/resources-export.wit +0 -0
  2544. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/resources-import.wit +0 -0
  2545. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/share-types.wit +0 -0
  2546. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/simple-functions.wit +0 -0
  2547. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/simple-lists.wit +0 -0
  2548. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/simple-wasi.wit +0 -0
  2549. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/small-anonymous.wit +0 -0
  2550. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/smoke-default.wit +0 -0
  2551. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/smoke-export.wit +0 -0
  2552. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/smoke.wit +0 -0
  2553. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/strings.wit +0 -0
  2554. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/unstable-features.wit +0 -0
  2555. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/unversioned-foo.wit +0 -0
  2556. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/use-paths.wit +0 -0
  2557. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/variants.wit +0 -0
  2558. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/wat.wit +0 -0
  2559. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/worlds-with-types.wit +0 -0
  2560. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen.rs +0 -0
  2561. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen_no_std.rs +0 -0
  2562. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/expanded/direct-import.rs +0 -0
  2563. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/expanded/empty.rs +0 -0
  2564. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/expanded/empty_async.rs +0 -0
  2565. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/expanded/empty_tracing_async.rs +0 -0
  2566. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/expanded/function-new.rs +0 -0
  2567. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/expanded/function-new_async.rs +0 -0
  2568. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/expanded/function-new_tracing_async.rs +0 -0
  2569. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/expanded/host-world.rs +0 -0
  2570. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/expanded/smoke-default.rs +0 -0
  2571. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/expanded/smoke-default_async.rs +0 -0
  2572. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/expanded/smoke-default_tracing_async.rs +0 -0
  2573. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/expanded.rs +0 -0
  2574. /data/ext/cargo-vendor/{wasmtime-component-util-28.0.0 → wasmtime-component-util-29.0.0}/src/lib.rs +0 -0
  2575. /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/LICENSE +0 -0
  2576. /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/SECURITY.md +0 -0
  2577. /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/builder.rs +0 -0
  2578. /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/compiled_function.rs +0 -0
  2579. /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/debug/transform/address_transform.rs +0 -0
  2580. /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/debug/transform/expression.rs +0 -0
  2581. /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/debug/transform/line_program.rs +0 -0
  2582. /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/debug/transform/range_info_builder.rs +0 -0
  2583. /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/debug/transform/refs.rs +0 -0
  2584. /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/debug/transform/simulate.rs +0 -0
  2585. /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/debug/transform/synthetic.rs +0 -0
  2586. /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/debug/write_debuginfo.rs +0 -0
  2587. /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/debug.rs +0 -0
  2588. /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/gc/disabled.rs +0 -0
  2589. /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/gc.rs +0 -0
  2590. /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/isa_builder.rs +0 -0
  2591. /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/translate/heap.rs +0 -0
  2592. /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/translate/translation_utils.rs +0 -0
  2593. /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/LICENSE +0 -0
  2594. /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/examples/factc.rs +0 -0
  2595. /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/address_map.rs +0 -0
  2596. /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/compile/address_map.rs +0 -0
  2597. /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/compile/module_environ.rs +0 -0
  2598. /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/compile/module_types.rs +0 -0
  2599. /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/compile/trap_encoding.rs +0 -0
  2600. /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/component/artifacts.rs +0 -0
  2601. /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/component/compiler.rs +0 -0
  2602. /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/component/dfg.rs +0 -0
  2603. /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/component/names.rs +0 -0
  2604. /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/component/translate/adapt.rs +0 -0
  2605. /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/component/translate/inline.rs +0 -0
  2606. /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/component/translate.rs +0 -0
  2607. /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/component/types.rs +0 -0
  2608. /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/component/types_builder/resources.rs +0 -0
  2609. /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/component/types_builder.rs +0 -0
  2610. /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/error.rs +0 -0
  2611. /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/fact/core_types.rs +0 -0
  2612. /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/fact/signature.rs +0 -0
  2613. /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/fact/trampoline.rs +0 -0
  2614. /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/fact/transcode.rs +0 -0
  2615. /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/fact/traps.rs +0 -0
  2616. /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/fact.rs +0 -0
  2617. /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/gc/drc.rs +0 -0
  2618. /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/gc/null.rs +0 -0
  2619. /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/gc.rs +0 -0
  2620. /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/module.rs +0 -0
  2621. /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/module_types.rs +0 -0
  2622. /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/obj.rs +0 -0
  2623. /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/prelude.rs +0 -0
  2624. /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/ref_bits.rs +0 -0
  2625. /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/scopevec.rs +0 -0
  2626. /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/stack_map.rs +0 -0
  2627. /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/trap_encoding.rs +0 -0
  2628. /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/types.rs +0 -0
  2629. /data/ext/cargo-vendor/{wasmtime-fiber-28.0.0 → wasmtime-fiber-29.0.0}/LICENSE +0 -0
  2630. /data/ext/cargo-vendor/{wasmtime-fiber-28.0.0 → wasmtime-fiber-29.0.0}/build.rs +0 -0
  2631. /data/ext/cargo-vendor/{wasmtime-fiber-28.0.0 → wasmtime-fiber-29.0.0}/src/lib.rs +0 -0
  2632. /data/ext/cargo-vendor/{wasmtime-fiber-28.0.0 → wasmtime-fiber-29.0.0}/src/nostd.rs +0 -0
  2633. /data/ext/cargo-vendor/{wasmtime-fiber-28.0.0 → wasmtime-fiber-29.0.0}/src/stackswitch/aarch64.rs +0 -0
  2634. /data/ext/cargo-vendor/{wasmtime-fiber-28.0.0 → wasmtime-fiber-29.0.0}/src/stackswitch/arm.rs +0 -0
  2635. /data/ext/cargo-vendor/{wasmtime-fiber-28.0.0 → wasmtime-fiber-29.0.0}/src/stackswitch/riscv64.rs +0 -0
  2636. /data/ext/cargo-vendor/{wasmtime-fiber-28.0.0 → wasmtime-fiber-29.0.0}/src/stackswitch/s390x.S +0 -0
  2637. /data/ext/cargo-vendor/{wasmtime-fiber-28.0.0 → wasmtime-fiber-29.0.0}/src/stackswitch/x86.rs +0 -0
  2638. /data/ext/cargo-vendor/{wasmtime-fiber-28.0.0 → wasmtime-fiber-29.0.0}/src/stackswitch/x86_64.rs +0 -0
  2639. /data/ext/cargo-vendor/{wasmtime-fiber-28.0.0 → wasmtime-fiber-29.0.0}/src/stackswitch.rs +0 -0
  2640. /data/ext/cargo-vendor/{wasmtime-fiber-28.0.0 → wasmtime-fiber-29.0.0}/src/unix.rs +0 -0
  2641. /data/ext/cargo-vendor/{wasmtime-fiber-28.0.0 → wasmtime-fiber-29.0.0}/src/windows.c +0 -0
  2642. /data/ext/cargo-vendor/{wasmtime-fiber-28.0.0 → wasmtime-fiber-29.0.0}/src/windows.rs +0 -0
  2643. /data/ext/cargo-vendor/{wasmtime-jit-debug-28.0.0 → wasmtime-jit-debug-29.0.0}/README.md +0 -0
  2644. /data/ext/cargo-vendor/{wasmtime-jit-debug-28.0.0 → wasmtime-jit-debug-29.0.0}/src/gdb_jit_int.rs +0 -0
  2645. /data/ext/cargo-vendor/{wasmtime-jit-debug-28.0.0 → wasmtime-jit-debug-29.0.0}/src/lib.rs +0 -0
  2646. /data/ext/cargo-vendor/{wasmtime-jit-debug-28.0.0 → wasmtime-jit-debug-29.0.0}/src/perf_jitdump.rs +0 -0
  2647. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-28.0.0 → wasmtime-jit-icache-coherence-29.0.0}/src/lib.rs +0 -0
  2648. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-28.0.0 → wasmtime-jit-icache-coherence-29.0.0}/src/libc.rs +0 -0
  2649. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-28.0.0 → wasmtime-jit-icache-coherence-29.0.0}/src/miri.rs +0 -0
  2650. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-28.0.0 → wasmtime-jit-icache-coherence-29.0.0}/src/win.rs +0 -0
  2651. /data/ext/cargo-vendor/{wasmtime-slab-28.0.0 → wasmtime-slab-29.0.0}/src/lib.rs +0 -0
  2652. /data/ext/cargo-vendor/{wasmtime-versioned-export-macros-28.0.0 → wasmtime-versioned-export-macros-29.0.0}/src/lib.rs +0 -0
  2653. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/LICENSE +0 -0
  2654. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/README.md +0 -0
  2655. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/clocks/host.rs +0 -0
  2656. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/clocks.rs +0 -0
  2657. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/ctx.rs +0 -0
  2658. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/error.rs +0 -0
  2659. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/filesystem.rs +0 -0
  2660. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/host/clocks.rs +0 -0
  2661. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/host/env.rs +0 -0
  2662. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/host/exit.rs +0 -0
  2663. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/host/filesystem/sync.rs +0 -0
  2664. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/host/instance_network.rs +0 -0
  2665. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/host/mod.rs +0 -0
  2666. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/host/network.rs +0 -0
  2667. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/host/random.rs +0 -0
  2668. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/host/tcp_create_socket.rs +0 -0
  2669. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/host/udp_create_socket.rs +0 -0
  2670. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/lib.rs +0 -0
  2671. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/network.rs +0 -0
  2672. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/preview0.rs +0 -0
  2673. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/preview1.rs +0 -0
  2674. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/random.rs +0 -0
  2675. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/runtime.rs +0 -0
  2676. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/stdio/worker_thread_stdin.rs +0 -0
  2677. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/stdio.rs +0 -0
  2678. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/stream.rs +0 -0
  2679. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/tcp.rs +0 -0
  2680. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/udp.rs +0 -0
  2681. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/write_stream.rs +0 -0
  2682. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/tests/all/api.rs +0 -0
  2683. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/tests/all/async_.rs +0 -0
  2684. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/tests/all/main.rs +0 -0
  2685. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/tests/all/preview1.rs +0 -0
  2686. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/tests/all/sync.rs +0 -0
  2687. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/tests/process_stdin.rs +0 -0
  2688. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/wit/deps/cli/environment.wit +0 -0
  2689. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/wit/deps/cli/exit.wit +0 -0
  2690. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/wit/deps/cli/run.wit +0 -0
  2691. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/wit/deps/cli/terminal.wit +0 -0
  2692. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/wit/deps/sockets/instance-network.wit +0 -0
  2693. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/wit/deps/sockets/tcp-create-socket.wit +0 -0
  2694. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/wit/deps/sockets/udp-create-socket.wit +0 -0
  2695. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/witx/preview0/typenames.witx +0 -0
  2696. /data/ext/cargo-vendor/{wasmtime-winch-28.0.0 → wasmtime-winch-29.0.0}/LICENSE +0 -0
  2697. /data/ext/cargo-vendor/{wasmtime-winch-28.0.0 → wasmtime-winch-29.0.0}/src/compiler.rs +0 -0
  2698. /data/ext/cargo-vendor/{wasmtime-winch-28.0.0 → wasmtime-winch-29.0.0}/src/lib.rs +0 -0
  2699. /data/ext/cargo-vendor/{wasmtime-wit-bindgen-28.0.0 → wasmtime-wit-bindgen-29.0.0}/src/rust.rs +0 -0
  2700. /data/ext/cargo-vendor/{wasmtime-wit-bindgen-28.0.0 → wasmtime-wit-bindgen-29.0.0}/src/source.rs +0 -0
  2701. /data/ext/cargo-vendor/{wasmtime-wit-bindgen-28.0.0 → wasmtime-wit-bindgen-29.0.0}/src/types.rs +0 -0
  2702. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/README.md +0 -0
  2703. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/component/alias.rs +0 -0
  2704. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/component/component.rs +0 -0
  2705. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/component/custom.rs +0 -0
  2706. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/component/export.rs +0 -0
  2707. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/component/func.rs +0 -0
  2708. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/component/import.rs +0 -0
  2709. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/component/instance.rs +0 -0
  2710. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/component/item_ref.rs +0 -0
  2711. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/component/module.rs +0 -0
  2712. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/component/wast.rs +0 -0
  2713. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/component.rs +0 -0
  2714. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/component_disabled.rs +0 -0
  2715. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/binary/dwarf.rs +0 -0
  2716. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/binary/dwarf_disabled.rs +0 -0
  2717. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/binary.rs +0 -0
  2718. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/custom.rs +0 -0
  2719. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/export.rs +0 -0
  2720. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/expr.rs +0 -0
  2721. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/func.rs +0 -0
  2722. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/global.rs +0 -0
  2723. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/import.rs +0 -0
  2724. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/memory.rs +0 -0
  2725. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/module.rs +0 -0
  2726. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/resolve/deinline_import_export.rs +0 -0
  2727. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/resolve/mod.rs +0 -0
  2728. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/resolve/names.rs +0 -0
  2729. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/resolve/types.rs +0 -0
  2730. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/table.rs +0 -0
  2731. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/tag.rs +0 -0
  2732. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/types.rs +0 -0
  2733. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/wast.rs +0 -0
  2734. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core.rs +0 -0
  2735. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/encode.rs +0 -0
  2736. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/error.rs +0 -0
  2737. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/gensym.rs +0 -0
  2738. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/lexer.rs +0 -0
  2739. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/lib.rs +0 -0
  2740. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/names.rs +0 -0
  2741. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/parser.rs +0 -0
  2742. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/token.rs +0 -0
  2743. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/wast.rs +0 -0
  2744. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/wat.rs +0 -0
  2745. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/annotations.rs +0 -0
  2746. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/comments.rs +0 -0
  2747. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/bad-core-func-alias.wat +0 -0
  2748. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/bad-core-func-alias.wat.err +0 -0
  2749. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/bad-func-alias.wat +0 -0
  2750. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/bad-func-alias.wat.err +0 -0
  2751. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/bad-index.wat +0 -0
  2752. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/bad-index.wat.err +0 -0
  2753. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/bad-name.wat +0 -0
  2754. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/bad-name.wat.err +0 -0
  2755. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/bad-name2.wat +0 -0
  2756. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/bad-name2.wat.err +0 -0
  2757. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/bad-name3.wat +0 -0
  2758. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/bad-name3.wat.err +0 -0
  2759. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/block1.wat +0 -0
  2760. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/block1.wat.err +0 -0
  2761. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/block2.wat +0 -0
  2762. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/block2.wat.err +0 -0
  2763. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/block3.wat +0 -0
  2764. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/block3.wat.err +0 -0
  2765. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment0.wat +0 -0
  2766. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment0.wat.err +0 -0
  2767. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment1.wat +0 -0
  2768. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment1.wat.err +0 -0
  2769. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment2.wat +0 -0
  2770. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment2.wat.err +0 -0
  2771. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment3.wat +0 -0
  2772. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment3.wat.err +0 -0
  2773. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment4.wat +0 -0
  2774. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment4.wat.err +0 -0
  2775. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment5.wat +0 -0
  2776. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment5.wat.err +0 -0
  2777. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment6.wat +0 -0
  2778. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment6.wat.err +0 -0
  2779. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment7.wat +0 -0
  2780. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment7.wat.err +0 -0
  2781. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment8.wat +0 -0
  2782. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment8.wat.err +0 -0
  2783. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment0.wat +0 -0
  2784. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment0.wat.err +0 -0
  2785. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment1.wat +0 -0
  2786. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment1.wat.err +0 -0
  2787. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment2.wat +0 -0
  2788. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment2.wat.err +0 -0
  2789. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment3.wat +0 -0
  2790. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment3.wat.err +0 -0
  2791. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment4.wat +0 -0
  2792. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment4.wat.err +0 -0
  2793. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment5.wat +0 -0
  2794. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment5.wat.err +0 -0
  2795. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment6.wat +0 -0
  2796. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment6.wat.err +0 -0
  2797. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment7.wat +0 -0
  2798. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment7.wat.err +0 -0
  2799. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment8.wat +0 -0
  2800. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment8.wat.err +0 -0
  2801. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string0.wat +0 -0
  2802. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string0.wat.err +0 -0
  2803. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string1.wat +0 -0
  2804. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string1.wat.err +0 -0
  2805. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string2.wat +0 -0
  2806. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string2.wat.err +0 -0
  2807. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string3.wat +0 -0
  2808. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string3.wat.err +0 -0
  2809. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string4.wat +0 -0
  2810. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string4.wat.err +0 -0
  2811. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string5.wat +0 -0
  2812. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string5.wat.err +0 -0
  2813. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string6.wat +0 -0
  2814. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string6.wat.err +0 -0
  2815. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string7.wat +0 -0
  2816. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string7.wat.err +0 -0
  2817. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string8.wat +0 -0
  2818. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string8.wat.err +0 -0
  2819. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/inline1.wat +0 -0
  2820. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/inline1.wat.err +0 -0
  2821. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/newline-in-string.wat +0 -0
  2822. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/newline-in-string.wat.err +0 -0
  2823. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string1.wat +0 -0
  2824. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string1.wat.err +0 -0
  2825. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string10.wat +0 -0
  2826. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string10.wat.err +0 -0
  2827. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string11.wat +0 -0
  2828. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string11.wat.err +0 -0
  2829. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string12.wat +0 -0
  2830. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string12.wat.err +0 -0
  2831. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string13.wat +0 -0
  2832. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string13.wat.err +0 -0
  2833. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string14.wat +0 -0
  2834. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string14.wat.err +0 -0
  2835. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string15.wat +0 -0
  2836. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string15.wat.err +0 -0
  2837. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string16.wat +0 -0
  2838. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string16.wat.err +0 -0
  2839. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string2.wat +0 -0
  2840. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string2.wat.err +0 -0
  2841. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string3.wat +0 -0
  2842. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string3.wat.err +0 -0
  2843. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string4.wat +0 -0
  2844. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string4.wat.err +0 -0
  2845. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string5.wat +0 -0
  2846. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string5.wat.err +0 -0
  2847. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string6.wat +0 -0
  2848. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string6.wat.err +0 -0
  2849. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string7.wat +0 -0
  2850. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string7.wat.err +0 -0
  2851. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string8.wat +0 -0
  2852. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string8.wat.err +0 -0
  2853. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string9.wat +0 -0
  2854. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string9.wat.err +0 -0
  2855. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/unbalanced.wat +0 -0
  2856. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/unbalanced.wat.err +0 -0
  2857. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail.rs +0 -0
  2858. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/recursive.rs +0 -0
  2859. /data/ext/cargo-vendor/{wat-1.223.0 → wat-1.224.0}/README.md +0 -0
  2860. /data/ext/cargo-vendor/{wat-1.223.0 → wat-1.224.0}/src/lib.rs +0 -0
  2861. /data/ext/cargo-vendor/{wiggle-28.0.0 → wiggle-29.0.0}/LICENSE +0 -0
  2862. /data/ext/cargo-vendor/{wiggle-28.0.0 → wiggle-29.0.0}/README.md +0 -0
  2863. /data/ext/cargo-vendor/{wiggle-28.0.0 → wiggle-29.0.0}/src/error.rs +0 -0
  2864. /data/ext/cargo-vendor/{wiggle-28.0.0 → wiggle-29.0.0}/src/guest_type.rs +0 -0
  2865. /data/ext/cargo-vendor/{wiggle-28.0.0 → wiggle-29.0.0}/src/lib.rs +0 -0
  2866. /data/ext/cargo-vendor/{wiggle-28.0.0 → wiggle-29.0.0}/src/region.rs +0 -0
  2867. /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/LICENSE +0 -0
  2868. /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/README.md +0 -0
  2869. /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/src/codegen_settings.rs +0 -0
  2870. /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/src/config.rs +0 -0
  2871. /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/src/funcs.rs +0 -0
  2872. /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/src/lib.rs +0 -0
  2873. /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/src/lifetimes.rs +0 -0
  2874. /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/src/module_trait.rs +0 -0
  2875. /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/src/names.rs +0 -0
  2876. /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/src/types/error.rs +0 -0
  2877. /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/src/types/flags.rs +0 -0
  2878. /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/src/types/handle.rs +0 -0
  2879. /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/src/types/mod.rs +0 -0
  2880. /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/src/types/record.rs +0 -0
  2881. /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/src/types/variant.rs +0 -0
  2882. /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/src/wasmtime.rs +0 -0
  2883. /data/ext/cargo-vendor/{wiggle-macro-28.0.0 → wiggle-macro-29.0.0}/LICENSE +0 -0
  2884. /data/ext/cargo-vendor/{wiggle-macro-28.0.0 → wiggle-macro-29.0.0}/build.rs +0 -0
  2885. /data/ext/cargo-vendor/{wiggle-macro-28.0.0 → wiggle-macro-29.0.0}/src/lib.rs +0 -0
  2886. /data/ext/cargo-vendor/{winch-codegen-28.0.0 → winch-codegen-29.0.0}/LICENSE +0 -0
  2887. /data/ext/cargo-vendor/{winch-codegen-28.0.0 → winch-codegen-29.0.0}/build.rs +0 -0
  2888. /data/ext/cargo-vendor/{winch-codegen-28.0.0 → winch-codegen-29.0.0}/src/abi/local.rs +0 -0
  2889. /data/ext/cargo-vendor/{winch-codegen-28.0.0 → winch-codegen-29.0.0}/src/codegen/env.rs +0 -0
  2890. /data/ext/cargo-vendor/{winch-codegen-28.0.0 → winch-codegen-29.0.0}/src/codegen/phase.rs +0 -0
  2891. /data/ext/cargo-vendor/{winch-codegen-28.0.0 → winch-codegen-29.0.0}/src/isa/aarch64/address.rs +0 -0
  2892. /data/ext/cargo-vendor/{winch-codegen-28.0.0 → winch-codegen-29.0.0}/src/isa/aarch64/regs.rs +0 -0
  2893. /data/ext/cargo-vendor/{winch-codegen-28.0.0 → winch-codegen-29.0.0}/src/isa/reg.rs +0 -0
  2894. /data/ext/cargo-vendor/{winch-codegen-28.0.0 → winch-codegen-29.0.0}/src/isa/x64/address.rs +0 -0
  2895. /data/ext/cargo-vendor/{winch-codegen-28.0.0 → winch-codegen-29.0.0}/src/isa/x64/regs.rs +0 -0
  2896. /data/ext/cargo-vendor/{winch-codegen-28.0.0 → winch-codegen-29.0.0}/src/lib.rs +0 -0
  2897. /data/ext/cargo-vendor/{winch-codegen-28.0.0 → winch-codegen-29.0.0}/src/regset.rs +0 -0
  2898. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/LICENSE-MIT +0 -0
  2899. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/README.md +0 -0
  2900. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/benches/contains_token.rs +0 -0
  2901. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/benches/find_slice.rs +0 -0
  2902. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/benches/iter.rs +0 -0
  2903. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/benches/next_slice.rs +0 -0
  2904. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/benches/number.rs +0 -0
  2905. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/arithmetic/bench.rs +0 -0
  2906. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/arithmetic/main.rs +0 -0
  2907. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/arithmetic/parser.rs +0 -0
  2908. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/arithmetic/parser_ast.rs +0 -0
  2909. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/arithmetic/parser_lexer.rs +0 -0
  2910. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/css/main.rs +0 -0
  2911. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/css/parser.rs +0 -0
  2912. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/custom_error.rs +0 -0
  2913. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/http/bench.rs +0 -0
  2914. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/http/main.rs +0 -0
  2915. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/http/parser.rs +0 -0
  2916. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/http/parser_streaming.rs +0 -0
  2917. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/ini/bench.rs +0 -0
  2918. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/ini/main.rs +0 -0
  2919. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/ini/parser.rs +0 -0
  2920. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/ini/parser_str.rs +0 -0
  2921. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/iterator.rs +0 -0
  2922. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/json/bench.rs +0 -0
  2923. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/json/json.rs +0 -0
  2924. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/json/main.rs +0 -0
  2925. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/json/parser.rs +0 -0
  2926. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/json/parser_dispatch.rs +0 -0
  2927. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/json_iterator.rs +0 -0
  2928. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/ndjson/example.ndjson +0 -0
  2929. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/ndjson/main.rs +0 -0
  2930. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/ndjson/parser.rs +0 -0
  2931. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/s_expression/main.rs +0 -0
  2932. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/s_expression/parser.rs +0 -0
  2933. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/string/main.rs +0 -0
  2934. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/string/parser.rs +0 -0
  2935. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_topic/arithmetic.rs +0 -0
  2936. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_topic/error.rs +0 -0
  2937. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_topic/fromstr.rs +0 -0
  2938. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_topic/http.rs +0 -0
  2939. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_topic/ini.rs +0 -0
  2940. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_topic/json.rs +0 -0
  2941. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_topic/language.rs +0 -0
  2942. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_topic/mod.rs +0 -0
  2943. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_topic/partial.rs +0 -0
  2944. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_topic/performance.rs +0 -0
  2945. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_topic/s_expression.rs +0 -0
  2946. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_tutorial/chapter_0.rs +0 -0
  2947. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_tutorial/chapter_1.rs +0 -0
  2948. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_tutorial/chapter_2.rs +0 -0
  2949. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_tutorial/chapter_3.rs +0 -0
  2950. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_tutorial/chapter_4.rs +0 -0
  2951. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_tutorial/chapter_5.rs +0 -0
  2952. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_tutorial/chapter_6.rs +0 -0
  2953. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_tutorial/chapter_7.rs +0 -0
  2954. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_tutorial/chapter_8.rs +0 -0
  2955. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_tutorial/mod.rs +0 -0
  2956. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/ascii/tests.rs +0 -0
  2957. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/binary/mod.rs +0 -0
  2958. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/binary/tests.rs +0 -0
  2959. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/combinator/branch.rs +0 -0
  2960. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/combinator/debug/internals.rs +0 -0
  2961. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/combinator/debug/mod.rs +0 -0
  2962. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/combinator/sequence.rs +0 -0
  2963. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/macros/dispatch.rs +0 -0
  2964. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/macros/seq.rs +0 -0
  2965. /data/ext/cargo-vendor/{winnow-0.6.22/src/macros/test.rs → winnow-0.6.24/src/macros/tests.rs} +0 -0
  2966. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/stream/impls.rs +0 -0
  2967. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/stream/tests.rs +0 -0
@@ -1,3822 +0,0 @@
1
- //! Stream capability for combinators to parse
2
- //!
3
- //! Stream types include:
4
- //! - `&[u8]` and [`Bytes`] for binary data
5
- //! - `&str` (aliased as [`Str`]) and [`BStr`] for UTF-8 data
6
- //! - [`Located`] can track the location within the original buffer to report
7
- //! [spans][crate::Parser::with_span]
8
- //! - [`Stateful`] to thread global state through your parsers
9
- //! - [`Partial`] can mark an input as partial buffer that is being streamed into
10
- //! - [Custom stream types][crate::_topic::stream]
11
-
12
- use core::hash::BuildHasher;
13
- use core::num::NonZeroUsize;
14
-
15
- use crate::ascii::Caseless as AsciiCaseless;
16
- #[cfg(feature = "unstable-recover")]
17
- #[cfg(feature = "std")]
18
- use crate::error::FromRecoverableError;
19
- use crate::error::Needed;
20
- use crate::lib::std::iter::{Cloned, Enumerate};
21
- use crate::lib::std::slice::Iter;
22
- use crate::lib::std::str::from_utf8;
23
- use crate::lib::std::str::CharIndices;
24
- use crate::lib::std::str::FromStr;
25
-
26
- #[allow(unused_imports)]
27
- #[cfg(any(feature = "unstable-doc", feature = "unstable-recover"))]
28
- use crate::error::ErrMode;
29
-
30
- #[cfg(feature = "alloc")]
31
- use crate::lib::std::collections::BTreeMap;
32
- #[cfg(feature = "alloc")]
33
- use crate::lib::std::collections::BTreeSet;
34
- #[cfg(feature = "std")]
35
- use crate::lib::std::collections::HashMap;
36
- #[cfg(feature = "std")]
37
- use crate::lib::std::collections::HashSet;
38
- #[cfg(feature = "alloc")]
39
- use crate::lib::std::string::String;
40
- #[cfg(feature = "alloc")]
41
- use crate::lib::std::vec::Vec;
42
-
43
- mod impls;
44
- #[cfg(test)]
45
- mod tests;
46
-
47
- /// UTF-8 Stream
48
- pub type Str<'i> = &'i str;
49
-
50
- /// Improved `Debug` experience for `&[u8]` byte streams
51
- #[allow(clippy::derived_hash_with_manual_eq)]
52
- #[derive(Hash)]
53
- #[repr(transparent)]
54
- pub struct Bytes([u8]);
55
-
56
- impl Bytes {
57
- /// Make a stream out of a byte slice-like.
58
- #[inline]
59
- pub fn new<B: ?Sized + AsRef<[u8]>>(bytes: &B) -> &Self {
60
- Self::from_bytes(bytes.as_ref())
61
- }
62
-
63
- #[inline]
64
- fn from_bytes(slice: &[u8]) -> &Self {
65
- unsafe { crate::lib::std::mem::transmute(slice) }
66
- }
67
-
68
- #[inline]
69
- fn as_bytes(&self) -> &[u8] {
70
- &self.0
71
- }
72
- }
73
-
74
- /// Improved `Debug` experience for `&[u8]` UTF-8-ish streams
75
- #[allow(clippy::derived_hash_with_manual_eq)]
76
- #[derive(Hash)]
77
- #[repr(transparent)]
78
- pub struct BStr([u8]);
79
-
80
- impl BStr {
81
- /// Make a stream out of a byte slice-like.
82
- #[inline]
83
- pub fn new<B: ?Sized + AsRef<[u8]>>(bytes: &B) -> &Self {
84
- Self::from_bytes(bytes.as_ref())
85
- }
86
-
87
- #[inline]
88
- fn from_bytes(slice: &[u8]) -> &Self {
89
- unsafe { crate::lib::std::mem::transmute(slice) }
90
- }
91
-
92
- #[inline]
93
- fn as_bytes(&self) -> &[u8] {
94
- &self.0
95
- }
96
- }
97
-
98
- /// Allow collecting the span of a parsed token
99
- ///
100
- /// Spans are tracked as a [`Range<usize>`] of byte offsets.
101
- ///
102
- /// Converting byte offsets to line or column numbers is left up to the user, as computing column
103
- /// numbers requires domain knowledge (are columns byte-based, codepoint-based, or grapheme-based?)
104
- /// and O(n) iteration over the input to determine codepoint and line boundaries.
105
- ///
106
- /// [The `line-span` crate](https://docs.rs/line-span/latest/line_span/) can help with converting
107
- /// byte offsets to line numbers.
108
- ///
109
- /// See [`Parser::span`][crate::Parser::span] and [`Parser::with_span`][crate::Parser::with_span] for more details
110
- #[derive(Copy, Clone, Default, PartialEq, Eq, PartialOrd, Ord)]
111
- #[doc(alias = "LocatedSpan")]
112
- pub struct Located<I> {
113
- initial: I,
114
- input: I,
115
- }
116
-
117
- impl<I> Located<I>
118
- where
119
- I: Clone + Offset,
120
- {
121
- /// Wrap another Stream with span tracking
122
- pub fn new(input: I) -> Self {
123
- let initial = input.clone();
124
- Self { initial, input }
125
- }
126
-
127
- #[inline]
128
- fn location(&self) -> usize {
129
- self.input.offset_from(&self.initial)
130
- }
131
- }
132
-
133
- impl<I> Located<I>
134
- where
135
- I: Clone + Stream + Offset,
136
- {
137
- /// Reset the stream to the start
138
- ///
139
- /// This is useful for formats that encode a graph with addresses relative to the start of the
140
- /// input.
141
- #[doc(alias = "fseek")]
142
- #[inline]
143
- pub fn reset_to_start(&mut self) {
144
- let start = self.initial.checkpoint();
145
- self.input.reset(&start);
146
- }
147
- }
148
-
149
- impl<I> AsRef<I> for Located<I> {
150
- #[inline(always)]
151
- fn as_ref(&self) -> &I {
152
- &self.input
153
- }
154
- }
155
-
156
- impl<I> crate::lib::std::ops::Deref for Located<I> {
157
- type Target = I;
158
-
159
- #[inline(always)]
160
- fn deref(&self) -> &Self::Target {
161
- &self.input
162
- }
163
- }
164
-
165
- impl<I: crate::lib::std::fmt::Display> crate::lib::std::fmt::Display for Located<I> {
166
- fn fmt(&self, f: &mut crate::lib::std::fmt::Formatter<'_>) -> crate::lib::std::fmt::Result {
167
- self.input.fmt(f)
168
- }
169
- }
170
-
171
- impl<I: crate::lib::std::fmt::Debug> crate::lib::std::fmt::Debug for Located<I> {
172
- #[inline]
173
- fn fmt(&self, f: &mut crate::lib::std::fmt::Formatter<'_>) -> crate::lib::std::fmt::Result {
174
- self.input.fmt(f)
175
- }
176
- }
177
-
178
- /// Allow recovering from parse errors, capturing them as the parser continues
179
- ///
180
- /// Generally, this will be used indirectly via
181
- /// [`RecoverableParser::recoverable_parse`][crate::RecoverableParser::recoverable_parse].
182
- #[cfg(feature = "unstable-recover")]
183
- #[derive(Clone)]
184
- #[cfg(feature = "std")]
185
- pub struct Recoverable<I, E>
186
- where
187
- I: Stream,
188
- {
189
- input: I,
190
- errors: Vec<E>,
191
- is_recoverable: bool,
192
- }
193
-
194
- #[cfg(feature = "unstable-recover")]
195
- #[cfg(feature = "std")]
196
- impl<I, E> Default for Recoverable<I, E>
197
- where
198
- I: Default + Stream,
199
- {
200
- #[inline]
201
- fn default() -> Self {
202
- Self::new(I::default())
203
- }
204
- }
205
-
206
- #[cfg(feature = "unstable-recover")]
207
- #[cfg(feature = "std")]
208
- impl<I, E> Recoverable<I, E>
209
- where
210
- I: Stream,
211
- {
212
- /// Track recoverable errors with the stream
213
- #[inline]
214
- pub fn new(input: I) -> Self {
215
- Self {
216
- input,
217
- errors: Default::default(),
218
- is_recoverable: true,
219
- }
220
- }
221
-
222
- /// Act as a normal stream
223
- #[inline]
224
- pub fn unrecoverable(input: I) -> Self {
225
- Self {
226
- input,
227
- errors: Default::default(),
228
- is_recoverable: false,
229
- }
230
- }
231
-
232
- /// Access the current input and errors
233
- #[inline]
234
- pub fn into_parts(self) -> (I, Vec<E>) {
235
- (self.input, self.errors)
236
- }
237
- }
238
-
239
- #[cfg(feature = "unstable-recover")]
240
- #[cfg(feature = "std")]
241
- impl<I, E> AsRef<I> for Recoverable<I, E>
242
- where
243
- I: Stream,
244
- {
245
- #[inline(always)]
246
- fn as_ref(&self) -> &I {
247
- &self.input
248
- }
249
- }
250
-
251
- #[cfg(feature = "unstable-recover")]
252
- #[cfg(feature = "std")]
253
- impl<I, E> crate::lib::std::ops::Deref for Recoverable<I, E>
254
- where
255
- I: Stream,
256
- {
257
- type Target = I;
258
-
259
- #[inline(always)]
260
- fn deref(&self) -> &Self::Target {
261
- &self.input
262
- }
263
- }
264
-
265
- #[cfg(feature = "unstable-recover")]
266
- #[cfg(feature = "std")]
267
- impl<I: crate::lib::std::fmt::Display, E> crate::lib::std::fmt::Display for Recoverable<I, E>
268
- where
269
- I: Stream,
270
- {
271
- fn fmt(&self, f: &mut crate::lib::std::fmt::Formatter<'_>) -> crate::lib::std::fmt::Result {
272
- crate::lib::std::fmt::Display::fmt(&self.input, f)
273
- }
274
- }
275
-
276
- #[cfg(feature = "unstable-recover")]
277
- #[cfg(feature = "std")]
278
- impl<I: Stream + crate::lib::std::fmt::Debug, E: crate::lib::std::fmt::Debug>
279
- crate::lib::std::fmt::Debug for Recoverable<I, E>
280
- {
281
- #[inline]
282
- fn fmt(&self, f: &mut crate::lib::std::fmt::Formatter<'_>) -> crate::lib::std::fmt::Result {
283
- if f.alternate() {
284
- self.input.fmt(f)
285
- } else {
286
- f.debug_struct("Recoverable")
287
- .field("input", &self.input)
288
- .field("errors", &self.errors)
289
- .field("is_recoverable", &self.is_recoverable)
290
- .finish()
291
- }
292
- }
293
- }
294
-
295
- /// Thread global state through your parsers
296
- ///
297
- /// Use cases
298
- /// - Recursion checks
299
- /// - Error recovery
300
- /// - Debugging
301
- ///
302
- /// # Example
303
- ///
304
- /// ```
305
- /// # use std::cell::Cell;
306
- /// # use winnow::prelude::*;
307
- /// # use winnow::stream::Stateful;
308
- /// # use winnow::ascii::alpha1;
309
- /// # type Error = ();
310
- ///
311
- /// #[derive(Debug)]
312
- /// struct State<'s>(&'s mut u32);
313
- ///
314
- /// impl<'s> State<'s> {
315
- /// fn count(&mut self) {
316
- /// *self.0 += 1;
317
- /// }
318
- /// }
319
- ///
320
- /// type Stream<'is> = Stateful<&'is str, State<'is>>;
321
- ///
322
- /// fn word<'s>(i: &mut Stream<'s>) -> PResult<&'s str> {
323
- /// i.state.count();
324
- /// alpha1.parse_next(i)
325
- /// }
326
- ///
327
- /// let data = "Hello";
328
- /// let mut state = 0;
329
- /// let input = Stream { input: data, state: State(&mut state) };
330
- /// let output = word.parse(input).unwrap();
331
- /// assert_eq!(state, 1);
332
- /// ```
333
- #[derive(Clone, Copy, Default, Eq, PartialEq)]
334
- #[doc(alias = "LocatedSpan")]
335
- pub struct Stateful<I, S> {
336
- /// Inner input being wrapped in state
337
- pub input: I,
338
- /// User-provided state
339
- pub state: S,
340
- }
341
-
342
- impl<I, S> AsRef<I> for Stateful<I, S> {
343
- #[inline(always)]
344
- fn as_ref(&self) -> &I {
345
- &self.input
346
- }
347
- }
348
-
349
- impl<I, S> crate::lib::std::ops::Deref for Stateful<I, S> {
350
- type Target = I;
351
-
352
- #[inline(always)]
353
- fn deref(&self) -> &Self::Target {
354
- self.as_ref()
355
- }
356
- }
357
-
358
- impl<I: crate::lib::std::fmt::Display, S> crate::lib::std::fmt::Display for Stateful<I, S> {
359
- fn fmt(&self, f: &mut crate::lib::std::fmt::Formatter<'_>) -> crate::lib::std::fmt::Result {
360
- self.input.fmt(f)
361
- }
362
- }
363
-
364
- impl<I: crate::lib::std::fmt::Debug, S: crate::lib::std::fmt::Debug> crate::lib::std::fmt::Debug
365
- for Stateful<I, S>
366
- {
367
- #[inline]
368
- fn fmt(&self, f: &mut crate::lib::std::fmt::Formatter<'_>) -> crate::lib::std::fmt::Result {
369
- if f.alternate() {
370
- self.input.fmt(f)
371
- } else {
372
- f.debug_struct("Stateful")
373
- .field("input", &self.input)
374
- .field("state", &self.state)
375
- .finish()
376
- }
377
- }
378
- }
379
-
380
- /// Mark the input as a partial buffer for streaming input.
381
- ///
382
- /// Complete input means that we already have all of the data. This will be the common case with
383
- /// small files that can be read entirely to memory.
384
- ///
385
- /// In contrast, streaming input assumes that we might not have all of the data.
386
- /// This can happen with some network protocol or large file parsers, where the
387
- /// input buffer can be full and need to be resized or refilled.
388
- /// - [`ErrMode::Incomplete`] will report how much more data is needed.
389
- /// - [`Parser::complete_err`][crate::Parser::complete_err] transform [`ErrMode::Incomplete`] to
390
- /// [`ErrMode::Backtrack`]
391
- ///
392
- /// See also [`StreamIsPartial`] to tell whether the input supports complete or partial parsing.
393
- ///
394
- /// See also [Special Topics: Parsing Partial Input][crate::_topic::partial].
395
- ///
396
- /// # Example
397
- ///
398
- /// Here is how it works in practice:
399
- ///
400
- /// ```rust
401
- /// # use winnow::{PResult, error::ErrMode, error::Needed, error::{InputError, ErrorKind}, token, ascii, stream::Partial};
402
- /// # use winnow::prelude::*;
403
- ///
404
- /// fn take_partial<'s>(i: &mut Partial<&'s [u8]>) -> PResult<&'s [u8], InputError<Partial<&'s [u8]>>> {
405
- /// token::take(4u8).parse_next(i)
406
- /// }
407
- ///
408
- /// fn take_complete<'s>(i: &mut &'s [u8]) -> PResult<&'s [u8], InputError<&'s [u8]>> {
409
- /// token::take(4u8).parse_next(i)
410
- /// }
411
- ///
412
- /// // both parsers will take 4 bytes as expected
413
- /// assert_eq!(take_partial.parse_peek(Partial::new(&b"abcde"[..])), Ok((Partial::new(&b"e"[..]), &b"abcd"[..])));
414
- /// assert_eq!(take_complete.parse_peek(&b"abcde"[..]), Ok((&b"e"[..], &b"abcd"[..])));
415
- ///
416
- /// // if the input is smaller than 4 bytes, the partial parser
417
- /// // will return `Incomplete` to indicate that we need more data
418
- /// assert_eq!(take_partial.parse_peek(Partial::new(&b"abc"[..])), Err(ErrMode::Incomplete(Needed::new(1))));
419
- ///
420
- /// // but the complete parser will return an error
421
- /// assert_eq!(take_complete.parse_peek(&b"abc"[..]), Err(ErrMode::Backtrack(InputError::new(&b"abc"[..], ErrorKind::Slice))));
422
- ///
423
- /// // the alpha0 function takes 0 or more alphabetic characters
424
- /// fn alpha0_partial<'s>(i: &mut Partial<&'s str>) -> PResult<&'s str, InputError<Partial<&'s str>>> {
425
- /// ascii::alpha0.parse_next(i)
426
- /// }
427
- ///
428
- /// fn alpha0_complete<'s>(i: &mut &'s str) -> PResult<&'s str, InputError<&'s str>> {
429
- /// ascii::alpha0.parse_next(i)
430
- /// }
431
- ///
432
- /// // if there's a clear limit to the taken characters, both parsers work the same way
433
- /// assert_eq!(alpha0_partial.parse_peek(Partial::new("abcd;")), Ok((Partial::new(";"), "abcd")));
434
- /// assert_eq!(alpha0_complete.parse_peek("abcd;"), Ok((";", "abcd")));
435
- ///
436
- /// // but when there's no limit, the partial version returns `Incomplete`, because it cannot
437
- /// // know if more input data should be taken. The whole input could be "abcd;", or
438
- /// // "abcde;"
439
- /// assert_eq!(alpha0_partial.parse_peek(Partial::new("abcd")), Err(ErrMode::Incomplete(Needed::new(1))));
440
- ///
441
- /// // while the complete version knows that all of the data is there
442
- /// assert_eq!(alpha0_complete.parse_peek("abcd"), Ok(("", "abcd")));
443
- /// ```
444
- #[derive(Copy, Clone, PartialEq, Eq, PartialOrd, Ord)]
445
- pub struct Partial<I> {
446
- input: I,
447
- partial: bool,
448
- }
449
-
450
- impl<I> Partial<I>
451
- where
452
- I: StreamIsPartial,
453
- {
454
- /// Create a partial input
455
- #[inline]
456
- pub fn new(input: I) -> Self {
457
- debug_assert!(
458
- !I::is_partial_supported(),
459
- "`Partial` can only wrap complete sources"
460
- );
461
- let partial = true;
462
- Self { input, partial }
463
- }
464
-
465
- /// Extract the original [`Stream`]
466
- #[inline(always)]
467
- pub fn into_inner(self) -> I {
468
- self.input
469
- }
470
- }
471
-
472
- impl<I> Default for Partial<I>
473
- where
474
- I: Default + StreamIsPartial,
475
- {
476
- #[inline]
477
- fn default() -> Self {
478
- Self::new(I::default())
479
- }
480
- }
481
-
482
- impl<I> crate::lib::std::ops::Deref for Partial<I> {
483
- type Target = I;
484
-
485
- #[inline(always)]
486
- fn deref(&self) -> &Self::Target {
487
- &self.input
488
- }
489
- }
490
-
491
- impl<I: crate::lib::std::fmt::Display> crate::lib::std::fmt::Display for Partial<I> {
492
- fn fmt(&self, f: &mut crate::lib::std::fmt::Formatter<'_>) -> crate::lib::std::fmt::Result {
493
- self.input.fmt(f)
494
- }
495
- }
496
-
497
- impl<I: crate::lib::std::fmt::Debug> crate::lib::std::fmt::Debug for Partial<I> {
498
- #[inline]
499
- fn fmt(&self, f: &mut crate::lib::std::fmt::Formatter<'_>) -> crate::lib::std::fmt::Result {
500
- if f.alternate() {
501
- self.input.fmt(f)
502
- } else {
503
- f.debug_struct("Partial")
504
- .field("input", &self.input)
505
- .field("partial", &self.partial)
506
- .finish()
507
- }
508
- }
509
- }
510
-
511
- /// Abstract method to calculate the input length
512
- pub trait SliceLen {
513
- /// Calculates the input length, as indicated by its name,
514
- /// and the name of the trait itself
515
- fn slice_len(&self) -> usize;
516
- }
517
-
518
- impl<S: SliceLen> SliceLen for AsciiCaseless<S> {
519
- #[inline(always)]
520
- fn slice_len(&self) -> usize {
521
- self.0.slice_len()
522
- }
523
- }
524
-
525
- impl<T> SliceLen for &[T] {
526
- #[inline(always)]
527
- fn slice_len(&self) -> usize {
528
- self.len()
529
- }
530
- }
531
-
532
- impl<T, const LEN: usize> SliceLen for [T; LEN] {
533
- #[inline(always)]
534
- fn slice_len(&self) -> usize {
535
- self.len()
536
- }
537
- }
538
-
539
- impl<T, const LEN: usize> SliceLen for &[T; LEN] {
540
- #[inline(always)]
541
- fn slice_len(&self) -> usize {
542
- self.len()
543
- }
544
- }
545
-
546
- impl SliceLen for &str {
547
- #[inline(always)]
548
- fn slice_len(&self) -> usize {
549
- self.len()
550
- }
551
- }
552
-
553
- impl SliceLen for u8 {
554
- #[inline(always)]
555
- fn slice_len(&self) -> usize {
556
- 1
557
- }
558
- }
559
-
560
- impl SliceLen for char {
561
- #[inline(always)]
562
- fn slice_len(&self) -> usize {
563
- self.len_utf8()
564
- }
565
- }
566
-
567
- impl SliceLen for &Bytes {
568
- #[inline(always)]
569
- fn slice_len(&self) -> usize {
570
- self.len()
571
- }
572
- }
573
-
574
- impl SliceLen for &BStr {
575
- #[inline(always)]
576
- fn slice_len(&self) -> usize {
577
- self.len()
578
- }
579
- }
580
-
581
- impl<I> SliceLen for (I, usize, usize)
582
- where
583
- I: SliceLen,
584
- {
585
- #[inline(always)]
586
- fn slice_len(&self) -> usize {
587
- self.0.slice_len() * 8 + self.2 - self.1
588
- }
589
- }
590
-
591
- impl<I> SliceLen for Located<I>
592
- where
593
- I: SliceLen,
594
- {
595
- #[inline(always)]
596
- fn slice_len(&self) -> usize {
597
- self.input.slice_len()
598
- }
599
- }
600
-
601
- #[cfg(feature = "unstable-recover")]
602
- #[cfg(feature = "std")]
603
- impl<I, E> SliceLen for Recoverable<I, E>
604
- where
605
- I: SliceLen,
606
- I: Stream,
607
- {
608
- #[inline(always)]
609
- fn slice_len(&self) -> usize {
610
- self.input.slice_len()
611
- }
612
- }
613
-
614
- impl<I, S> SliceLen for Stateful<I, S>
615
- where
616
- I: SliceLen,
617
- {
618
- #[inline(always)]
619
- fn slice_len(&self) -> usize {
620
- self.input.slice_len()
621
- }
622
- }
623
-
624
- impl<I> SliceLen for Partial<I>
625
- where
626
- I: SliceLen,
627
- {
628
- #[inline(always)]
629
- fn slice_len(&self) -> usize {
630
- self.input.slice_len()
631
- }
632
- }
633
-
634
- /// Core definition for parser input state
635
- pub trait Stream: Offset<<Self as Stream>::Checkpoint> + crate::lib::std::fmt::Debug {
636
- /// The smallest unit being parsed
637
- ///
638
- /// Example: `u8` for `&[u8]` or `char` for `&str`
639
- type Token: crate::lib::std::fmt::Debug;
640
- /// Sequence of `Token`s
641
- ///
642
- /// Example: `&[u8]` for `Located<&[u8]>` or `&str` for `Located<&str>`
643
- type Slice: crate::lib::std::fmt::Debug;
644
-
645
- /// Iterate with the offset from the current location
646
- type IterOffsets: Iterator<Item = (usize, Self::Token)>;
647
-
648
- /// A parse location within the stream
649
- type Checkpoint: Offset + Clone + crate::lib::std::fmt::Debug;
650
-
651
- /// Iterate with the offset from the current location
652
- fn iter_offsets(&self) -> Self::IterOffsets;
653
-
654
- /// Returns the offset to the end of the input
655
- fn eof_offset(&self) -> usize;
656
-
657
- /// Split off the next token from the input
658
- fn next_token(&mut self) -> Option<Self::Token>;
659
- /// Split off the next token from the input
660
- #[inline(always)]
661
- fn peek_token(&self) -> Option<(Self, Self::Token)>
662
- where
663
- Self: Clone,
664
- {
665
- let mut peek = self.clone();
666
- let token = peek.next_token()?;
667
- Some((peek, token))
668
- }
669
-
670
- /// Finds the offset of the next matching token
671
- fn offset_for<P>(&self, predicate: P) -> Option<usize>
672
- where
673
- P: Fn(Self::Token) -> bool;
674
- /// Get the offset for the number of `tokens` into the stream
675
- ///
676
- /// This means "0 tokens" will return `0` offset
677
- fn offset_at(&self, tokens: usize) -> Result<usize, Needed>;
678
- /// Split off a slice of tokens from the input
679
- ///
680
- /// <div class="warning">
681
- ///
682
- /// **Note:** For inputs with variable width tokens, like `&str`'s `char`, `offset` might not correspond
683
- /// with the number of tokens. To get a valid offset, use:
684
- /// - [`Stream::eof_offset`]
685
- /// - [`Stream::iter_offsets`]
686
- /// - [`Stream::offset_for`]
687
- /// - [`Stream::offset_at`]
688
- ///
689
- /// </div>
690
- ///
691
- /// # Panic
692
- ///
693
- /// This will panic if
694
- ///
695
- /// * Indexes must be within bounds of the original input;
696
- /// * Indexes must uphold invariants of the stream, like for `str` they must lie on UTF-8
697
- /// sequence boundaries.
698
- ///
699
- fn next_slice(&mut self, offset: usize) -> Self::Slice;
700
- /// Split off a slice of tokens from the input
701
- #[inline(always)]
702
- fn peek_slice(&self, offset: usize) -> (Self, Self::Slice)
703
- where
704
- Self: Clone,
705
- {
706
- let mut peek = self.clone();
707
- let slice = peek.next_slice(offset);
708
- (peek, slice)
709
- }
710
-
711
- /// Advance to the end of the stream
712
- #[inline(always)]
713
- fn finish(&mut self) -> Self::Slice {
714
- self.next_slice(self.eof_offset())
715
- }
716
- /// Advance to the end of the stream
717
- #[inline(always)]
718
- fn peek_finish(&self) -> (Self, Self::Slice)
719
- where
720
- Self: Clone,
721
- {
722
- let mut peek = self.clone();
723
- let slice = peek.finish();
724
- (peek, slice)
725
- }
726
-
727
- /// Save the current parse location within the stream
728
- fn checkpoint(&self) -> Self::Checkpoint;
729
- /// Revert the stream to a prior [`Self::Checkpoint`]
730
- ///
731
- /// # Panic
732
- ///
733
- /// May panic if an invalid [`Self::Checkpoint`] is provided
734
- fn reset(&mut self, checkpoint: &Self::Checkpoint);
735
-
736
- /// Return the inner-most stream
737
- fn raw(&self) -> &dyn crate::lib::std::fmt::Debug;
738
- }
739
-
740
- impl<'i, T> Stream for &'i [T]
741
- where
742
- T: Clone + crate::lib::std::fmt::Debug,
743
- {
744
- type Token = T;
745
- type Slice = &'i [T];
746
-
747
- type IterOffsets = Enumerate<Cloned<Iter<'i, T>>>;
748
-
749
- type Checkpoint = Checkpoint<Self, Self>;
750
-
751
- #[inline(always)]
752
- fn iter_offsets(&self) -> Self::IterOffsets {
753
- self.iter().cloned().enumerate()
754
- }
755
- #[inline(always)]
756
- fn eof_offset(&self) -> usize {
757
- self.len()
758
- }
759
-
760
- #[inline(always)]
761
- fn next_token(&mut self) -> Option<Self::Token> {
762
- let (token, next) = self.split_first()?;
763
- *self = next;
764
- Some(token.clone())
765
- }
766
-
767
- #[inline(always)]
768
- fn offset_for<P>(&self, predicate: P) -> Option<usize>
769
- where
770
- P: Fn(Self::Token) -> bool,
771
- {
772
- self.iter().position(|b| predicate(b.clone()))
773
- }
774
- #[inline(always)]
775
- fn offset_at(&self, tokens: usize) -> Result<usize, Needed> {
776
- if let Some(needed) = tokens.checked_sub(self.len()).and_then(NonZeroUsize::new) {
777
- Err(Needed::Size(needed))
778
- } else {
779
- Ok(tokens)
780
- }
781
- }
782
- #[inline(always)]
783
- fn next_slice(&mut self, offset: usize) -> Self::Slice {
784
- let (slice, next) = self.split_at(offset);
785
- *self = next;
786
- slice
787
- }
788
-
789
- #[inline(always)]
790
- fn checkpoint(&self) -> Self::Checkpoint {
791
- Checkpoint::<_, Self>::new(*self)
792
- }
793
- #[inline(always)]
794
- fn reset(&mut self, checkpoint: &Self::Checkpoint) {
795
- *self = checkpoint.inner;
796
- }
797
-
798
- #[inline(always)]
799
- fn raw(&self) -> &dyn crate::lib::std::fmt::Debug {
800
- self
801
- }
802
- }
803
-
804
- impl<'i> Stream for &'i str {
805
- type Token = char;
806
- type Slice = &'i str;
807
-
808
- type IterOffsets = CharIndices<'i>;
809
-
810
- type Checkpoint = Checkpoint<Self, Self>;
811
-
812
- #[inline(always)]
813
- fn iter_offsets(&self) -> Self::IterOffsets {
814
- self.char_indices()
815
- }
816
- #[inline(always)]
817
- fn eof_offset(&self) -> usize {
818
- self.len()
819
- }
820
-
821
- #[inline(always)]
822
- fn next_token(&mut self) -> Option<Self::Token> {
823
- let c = self.chars().next()?;
824
- let offset = c.len();
825
- *self = &self[offset..];
826
- Some(c)
827
- }
828
-
829
- #[inline(always)]
830
- fn offset_for<P>(&self, predicate: P) -> Option<usize>
831
- where
832
- P: Fn(Self::Token) -> bool,
833
- {
834
- for (o, c) in self.iter_offsets() {
835
- if predicate(c) {
836
- return Some(o);
837
- }
838
- }
839
- None
840
- }
841
- #[inline]
842
- fn offset_at(&self, tokens: usize) -> Result<usize, Needed> {
843
- let mut cnt = 0;
844
- for (offset, _) in self.iter_offsets() {
845
- if cnt == tokens {
846
- return Ok(offset);
847
- }
848
- cnt += 1;
849
- }
850
-
851
- if cnt == tokens {
852
- Ok(self.eof_offset())
853
- } else {
854
- Err(Needed::Unknown)
855
- }
856
- }
857
- #[inline(always)]
858
- fn next_slice(&mut self, offset: usize) -> Self::Slice {
859
- let (slice, next) = self.split_at(offset);
860
- *self = next;
861
- slice
862
- }
863
-
864
- #[inline(always)]
865
- fn checkpoint(&self) -> Self::Checkpoint {
866
- Checkpoint::<_, Self>::new(*self)
867
- }
868
- #[inline(always)]
869
- fn reset(&mut self, checkpoint: &Self::Checkpoint) {
870
- *self = checkpoint.inner;
871
- }
872
-
873
- #[inline(always)]
874
- fn raw(&self) -> &dyn crate::lib::std::fmt::Debug {
875
- self
876
- }
877
- }
878
-
879
- impl<'i> Stream for &'i Bytes {
880
- type Token = u8;
881
- type Slice = &'i [u8];
882
-
883
- type IterOffsets = Enumerate<Cloned<Iter<'i, u8>>>;
884
-
885
- type Checkpoint = Checkpoint<Self, Self>;
886
-
887
- #[inline(always)]
888
- fn iter_offsets(&self) -> Self::IterOffsets {
889
- self.iter().cloned().enumerate()
890
- }
891
- #[inline(always)]
892
- fn eof_offset(&self) -> usize {
893
- self.len()
894
- }
895
-
896
- #[inline(always)]
897
- fn next_token(&mut self) -> Option<Self::Token> {
898
- if self.is_empty() {
899
- None
900
- } else {
901
- let token = self[0];
902
- *self = &self[1..];
903
- Some(token)
904
- }
905
- }
906
-
907
- #[inline(always)]
908
- fn offset_for<P>(&self, predicate: P) -> Option<usize>
909
- where
910
- P: Fn(Self::Token) -> bool,
911
- {
912
- self.iter().position(|b| predicate(*b))
913
- }
914
- #[inline(always)]
915
- fn offset_at(&self, tokens: usize) -> Result<usize, Needed> {
916
- if let Some(needed) = tokens.checked_sub(self.len()).and_then(NonZeroUsize::new) {
917
- Err(Needed::Size(needed))
918
- } else {
919
- Ok(tokens)
920
- }
921
- }
922
- #[inline(always)]
923
- fn next_slice(&mut self, offset: usize) -> Self::Slice {
924
- let (slice, next) = self.0.split_at(offset);
925
- *self = Bytes::from_bytes(next);
926
- slice
927
- }
928
-
929
- #[inline(always)]
930
- fn checkpoint(&self) -> Self::Checkpoint {
931
- Checkpoint::<_, Self>::new(*self)
932
- }
933
- #[inline(always)]
934
- fn reset(&mut self, checkpoint: &Self::Checkpoint) {
935
- *self = checkpoint.inner;
936
- }
937
-
938
- #[inline(always)]
939
- fn raw(&self) -> &dyn crate::lib::std::fmt::Debug {
940
- self
941
- }
942
- }
943
-
944
- impl<'i> Stream for &'i BStr {
945
- type Token = u8;
946
- type Slice = &'i [u8];
947
-
948
- type IterOffsets = Enumerate<Cloned<Iter<'i, u8>>>;
949
-
950
- type Checkpoint = Checkpoint<Self, Self>;
951
-
952
- #[inline(always)]
953
- fn iter_offsets(&self) -> Self::IterOffsets {
954
- self.iter().cloned().enumerate()
955
- }
956
- #[inline(always)]
957
- fn eof_offset(&self) -> usize {
958
- self.len()
959
- }
960
-
961
- #[inline(always)]
962
- fn next_token(&mut self) -> Option<Self::Token> {
963
- if self.is_empty() {
964
- None
965
- } else {
966
- let token = self[0];
967
- *self = &self[1..];
968
- Some(token)
969
- }
970
- }
971
-
972
- #[inline(always)]
973
- fn offset_for<P>(&self, predicate: P) -> Option<usize>
974
- where
975
- P: Fn(Self::Token) -> bool,
976
- {
977
- self.iter().position(|b| predicate(*b))
978
- }
979
- #[inline(always)]
980
- fn offset_at(&self, tokens: usize) -> Result<usize, Needed> {
981
- if let Some(needed) = tokens.checked_sub(self.len()).and_then(NonZeroUsize::new) {
982
- Err(Needed::Size(needed))
983
- } else {
984
- Ok(tokens)
985
- }
986
- }
987
- #[inline(always)]
988
- fn next_slice(&mut self, offset: usize) -> Self::Slice {
989
- let (slice, next) = self.0.split_at(offset);
990
- *self = BStr::from_bytes(next);
991
- slice
992
- }
993
-
994
- #[inline(always)]
995
- fn checkpoint(&self) -> Self::Checkpoint {
996
- Checkpoint::<_, Self>::new(*self)
997
- }
998
- #[inline(always)]
999
- fn reset(&mut self, checkpoint: &Self::Checkpoint) {
1000
- *self = checkpoint.inner;
1001
- }
1002
-
1003
- #[inline(always)]
1004
- fn raw(&self) -> &dyn crate::lib::std::fmt::Debug {
1005
- self
1006
- }
1007
- }
1008
-
1009
- impl<I> Stream for (I, usize)
1010
- where
1011
- I: Stream<Token = u8> + Clone,
1012
- {
1013
- type Token = bool;
1014
- type Slice = (I::Slice, usize, usize);
1015
-
1016
- type IterOffsets = BitOffsets<I>;
1017
-
1018
- type Checkpoint = Checkpoint<(I::Checkpoint, usize), Self>;
1019
-
1020
- #[inline(always)]
1021
- fn iter_offsets(&self) -> Self::IterOffsets {
1022
- BitOffsets {
1023
- i: self.clone(),
1024
- o: 0,
1025
- }
1026
- }
1027
- #[inline(always)]
1028
- fn eof_offset(&self) -> usize {
1029
- let offset = self.0.eof_offset() * 8;
1030
- if offset == 0 {
1031
- 0
1032
- } else {
1033
- offset - self.1
1034
- }
1035
- }
1036
-
1037
- #[inline(always)]
1038
- fn next_token(&mut self) -> Option<Self::Token> {
1039
- next_bit(self)
1040
- }
1041
-
1042
- #[inline(always)]
1043
- fn offset_for<P>(&self, predicate: P) -> Option<usize>
1044
- where
1045
- P: Fn(Self::Token) -> bool,
1046
- {
1047
- self.iter_offsets()
1048
- .find_map(|(o, b)| predicate(b).then_some(o))
1049
- }
1050
- #[inline(always)]
1051
- fn offset_at(&self, tokens: usize) -> Result<usize, Needed> {
1052
- if let Some(needed) = tokens
1053
- .checked_sub(self.eof_offset())
1054
- .and_then(NonZeroUsize::new)
1055
- {
1056
- Err(Needed::Size(needed))
1057
- } else {
1058
- Ok(tokens)
1059
- }
1060
- }
1061
- #[inline(always)]
1062
- fn next_slice(&mut self, offset: usize) -> Self::Slice {
1063
- let byte_offset = (offset + self.1) / 8;
1064
- let end_offset = (offset + self.1) % 8;
1065
- let s = self.0.next_slice(byte_offset);
1066
- let start_offset = self.1;
1067
- self.1 = end_offset;
1068
- (s, start_offset, end_offset)
1069
- }
1070
-
1071
- #[inline(always)]
1072
- fn checkpoint(&self) -> Self::Checkpoint {
1073
- Checkpoint::<_, Self>::new((self.0.checkpoint(), self.1))
1074
- }
1075
- #[inline(always)]
1076
- fn reset(&mut self, checkpoint: &Self::Checkpoint) {
1077
- self.0.reset(&checkpoint.inner.0);
1078
- self.1 = checkpoint.inner.1;
1079
- }
1080
-
1081
- #[inline(always)]
1082
- fn raw(&self) -> &dyn crate::lib::std::fmt::Debug {
1083
- &self.0
1084
- }
1085
- }
1086
-
1087
- /// Iterator for [bit][crate::binary::bits] stream (`(I, usize)`)
1088
- pub struct BitOffsets<I> {
1089
- i: (I, usize),
1090
- o: usize,
1091
- }
1092
-
1093
- impl<I> Iterator for BitOffsets<I>
1094
- where
1095
- I: Stream<Token = u8> + Clone,
1096
- {
1097
- type Item = (usize, bool);
1098
- fn next(&mut self) -> Option<Self::Item> {
1099
- let b = next_bit(&mut self.i)?;
1100
- let o = self.o;
1101
-
1102
- self.o += 1;
1103
-
1104
- Some((o, b))
1105
- }
1106
- }
1107
-
1108
- fn next_bit<I>(i: &mut (I, usize)) -> Option<bool>
1109
- where
1110
- I: Stream<Token = u8> + Clone,
1111
- {
1112
- if i.eof_offset() == 0 {
1113
- return None;
1114
- }
1115
- let offset = i.1;
1116
-
1117
- let mut next_i = i.0.clone();
1118
- let byte = next_i.next_token()?;
1119
- let bit = (byte >> offset) & 0x1 == 0x1;
1120
-
1121
- let next_offset = offset + 1;
1122
- if next_offset == 8 {
1123
- i.0 = next_i;
1124
- i.1 = 0;
1125
- Some(bit)
1126
- } else {
1127
- i.1 = next_offset;
1128
- Some(bit)
1129
- }
1130
- }
1131
-
1132
- impl<I: Stream> Stream for Located<I> {
1133
- type Token = <I as Stream>::Token;
1134
- type Slice = <I as Stream>::Slice;
1135
-
1136
- type IterOffsets = <I as Stream>::IterOffsets;
1137
-
1138
- type Checkpoint = Checkpoint<I::Checkpoint, Self>;
1139
-
1140
- #[inline(always)]
1141
- fn iter_offsets(&self) -> Self::IterOffsets {
1142
- self.input.iter_offsets()
1143
- }
1144
- #[inline(always)]
1145
- fn eof_offset(&self) -> usize {
1146
- self.input.eof_offset()
1147
- }
1148
-
1149
- #[inline(always)]
1150
- fn next_token(&mut self) -> Option<Self::Token> {
1151
- self.input.next_token()
1152
- }
1153
-
1154
- #[inline(always)]
1155
- fn offset_for<P>(&self, predicate: P) -> Option<usize>
1156
- where
1157
- P: Fn(Self::Token) -> bool,
1158
- {
1159
- self.input.offset_for(predicate)
1160
- }
1161
- #[inline(always)]
1162
- fn offset_at(&self, tokens: usize) -> Result<usize, Needed> {
1163
- self.input.offset_at(tokens)
1164
- }
1165
- #[inline(always)]
1166
- fn next_slice(&mut self, offset: usize) -> Self::Slice {
1167
- self.input.next_slice(offset)
1168
- }
1169
-
1170
- #[inline(always)]
1171
- fn checkpoint(&self) -> Self::Checkpoint {
1172
- Checkpoint::<_, Self>::new(self.input.checkpoint())
1173
- }
1174
- #[inline(always)]
1175
- fn reset(&mut self, checkpoint: &Self::Checkpoint) {
1176
- self.input.reset(&checkpoint.inner);
1177
- }
1178
-
1179
- #[inline(always)]
1180
- fn raw(&self) -> &dyn crate::lib::std::fmt::Debug {
1181
- &self.input
1182
- }
1183
- }
1184
-
1185
- #[cfg(feature = "unstable-recover")]
1186
- #[cfg(feature = "std")]
1187
- impl<I, E: crate::lib::std::fmt::Debug> Stream for Recoverable<I, E>
1188
- where
1189
- I: Stream,
1190
- {
1191
- type Token = <I as Stream>::Token;
1192
- type Slice = <I as Stream>::Slice;
1193
-
1194
- type IterOffsets = <I as Stream>::IterOffsets;
1195
-
1196
- type Checkpoint = Checkpoint<I::Checkpoint, Self>;
1197
-
1198
- #[inline(always)]
1199
- fn iter_offsets(&self) -> Self::IterOffsets {
1200
- self.input.iter_offsets()
1201
- }
1202
- #[inline(always)]
1203
- fn eof_offset(&self) -> usize {
1204
- self.input.eof_offset()
1205
- }
1206
-
1207
- #[inline(always)]
1208
- fn next_token(&mut self) -> Option<Self::Token> {
1209
- self.input.next_token()
1210
- }
1211
-
1212
- #[inline(always)]
1213
- fn offset_for<P>(&self, predicate: P) -> Option<usize>
1214
- where
1215
- P: Fn(Self::Token) -> bool,
1216
- {
1217
- self.input.offset_for(predicate)
1218
- }
1219
- #[inline(always)]
1220
- fn offset_at(&self, tokens: usize) -> Result<usize, Needed> {
1221
- self.input.offset_at(tokens)
1222
- }
1223
- #[inline(always)]
1224
- fn next_slice(&mut self, offset: usize) -> Self::Slice {
1225
- self.input.next_slice(offset)
1226
- }
1227
-
1228
- #[inline(always)]
1229
- fn checkpoint(&self) -> Self::Checkpoint {
1230
- Checkpoint::<_, Self>::new(self.input.checkpoint())
1231
- }
1232
- #[inline(always)]
1233
- fn reset(&mut self, checkpoint: &Self::Checkpoint) {
1234
- self.input.reset(&checkpoint.inner);
1235
- }
1236
-
1237
- #[inline(always)]
1238
- fn raw(&self) -> &dyn crate::lib::std::fmt::Debug {
1239
- &self.input
1240
- }
1241
- }
1242
-
1243
- impl<I: Stream, S: crate::lib::std::fmt::Debug> Stream for Stateful<I, S> {
1244
- type Token = <I as Stream>::Token;
1245
- type Slice = <I as Stream>::Slice;
1246
-
1247
- type IterOffsets = <I as Stream>::IterOffsets;
1248
-
1249
- type Checkpoint = Checkpoint<I::Checkpoint, Self>;
1250
-
1251
- #[inline(always)]
1252
- fn iter_offsets(&self) -> Self::IterOffsets {
1253
- self.input.iter_offsets()
1254
- }
1255
- #[inline(always)]
1256
- fn eof_offset(&self) -> usize {
1257
- self.input.eof_offset()
1258
- }
1259
-
1260
- #[inline(always)]
1261
- fn next_token(&mut self) -> Option<Self::Token> {
1262
- self.input.next_token()
1263
- }
1264
-
1265
- #[inline(always)]
1266
- fn offset_for<P>(&self, predicate: P) -> Option<usize>
1267
- where
1268
- P: Fn(Self::Token) -> bool,
1269
- {
1270
- self.input.offset_for(predicate)
1271
- }
1272
- #[inline(always)]
1273
- fn offset_at(&self, tokens: usize) -> Result<usize, Needed> {
1274
- self.input.offset_at(tokens)
1275
- }
1276
- #[inline(always)]
1277
- fn next_slice(&mut self, offset: usize) -> Self::Slice {
1278
- self.input.next_slice(offset)
1279
- }
1280
-
1281
- #[inline(always)]
1282
- fn checkpoint(&self) -> Self::Checkpoint {
1283
- Checkpoint::<_, Self>::new(self.input.checkpoint())
1284
- }
1285
- #[inline(always)]
1286
- fn reset(&mut self, checkpoint: &Self::Checkpoint) {
1287
- self.input.reset(&checkpoint.inner);
1288
- }
1289
-
1290
- #[inline(always)]
1291
- fn raw(&self) -> &dyn crate::lib::std::fmt::Debug {
1292
- &self.input
1293
- }
1294
- }
1295
-
1296
- impl<I: Stream> Stream for Partial<I> {
1297
- type Token = <I as Stream>::Token;
1298
- type Slice = <I as Stream>::Slice;
1299
-
1300
- type IterOffsets = <I as Stream>::IterOffsets;
1301
-
1302
- type Checkpoint = Checkpoint<I::Checkpoint, Self>;
1303
-
1304
- #[inline(always)]
1305
- fn iter_offsets(&self) -> Self::IterOffsets {
1306
- self.input.iter_offsets()
1307
- }
1308
- #[inline(always)]
1309
- fn eof_offset(&self) -> usize {
1310
- self.input.eof_offset()
1311
- }
1312
-
1313
- #[inline(always)]
1314
- fn next_token(&mut self) -> Option<Self::Token> {
1315
- self.input.next_token()
1316
- }
1317
-
1318
- #[inline(always)]
1319
- fn offset_for<P>(&self, predicate: P) -> Option<usize>
1320
- where
1321
- P: Fn(Self::Token) -> bool,
1322
- {
1323
- self.input.offset_for(predicate)
1324
- }
1325
- #[inline(always)]
1326
- fn offset_at(&self, tokens: usize) -> Result<usize, Needed> {
1327
- self.input.offset_at(tokens)
1328
- }
1329
- #[inline(always)]
1330
- fn next_slice(&mut self, offset: usize) -> Self::Slice {
1331
- self.input.next_slice(offset)
1332
- }
1333
-
1334
- #[inline(always)]
1335
- fn checkpoint(&self) -> Self::Checkpoint {
1336
- Checkpoint::<_, Self>::new(self.input.checkpoint())
1337
- }
1338
- #[inline(always)]
1339
- fn reset(&mut self, checkpoint: &Self::Checkpoint) {
1340
- self.input.reset(&checkpoint.inner);
1341
- }
1342
-
1343
- #[inline(always)]
1344
- fn raw(&self) -> &dyn crate::lib::std::fmt::Debug {
1345
- &self.input
1346
- }
1347
- }
1348
-
1349
- /// Number of indices input has advanced since start of parsing
1350
- ///
1351
- /// See [`Located`] for adding location tracking to your [`Stream`]
1352
- pub trait Location {
1353
- /// Number of indices input has advanced since start of parsing
1354
- fn location(&self) -> usize;
1355
- }
1356
-
1357
- impl<I> Location for Located<I>
1358
- where
1359
- I: Clone + Offset,
1360
- {
1361
- #[inline(always)]
1362
- fn location(&self) -> usize {
1363
- self.location()
1364
- }
1365
- }
1366
-
1367
- #[cfg(feature = "unstable-recover")]
1368
- #[cfg(feature = "std")]
1369
- impl<I, E> Location for Recoverable<I, E>
1370
- where
1371
- I: Location,
1372
- I: Stream,
1373
- {
1374
- #[inline(always)]
1375
- fn location(&self) -> usize {
1376
- self.input.location()
1377
- }
1378
- }
1379
-
1380
- impl<I, S> Location for Stateful<I, S>
1381
- where
1382
- I: Location,
1383
- {
1384
- #[inline(always)]
1385
- fn location(&self) -> usize {
1386
- self.input.location()
1387
- }
1388
- }
1389
-
1390
- impl<I> Location for Partial<I>
1391
- where
1392
- I: Location,
1393
- {
1394
- #[inline(always)]
1395
- fn location(&self) -> usize {
1396
- self.input.location()
1397
- }
1398
- }
1399
-
1400
- /// Capture top-level errors in the middle of parsing so parsing can resume
1401
- ///
1402
- /// See [`Recoverable`] for adding error recovery tracking to your [`Stream`]
1403
- #[cfg(feature = "unstable-recover")]
1404
- #[cfg(feature = "std")]
1405
- pub trait Recover<E>: Stream {
1406
- /// Capture a top-level error
1407
- ///
1408
- /// May return `Err(err)` if recovery is not possible (e.g. if [`Recover::is_recovery_supported`]
1409
- /// returns `false`).
1410
- fn record_err(
1411
- &mut self,
1412
- token_start: &Self::Checkpoint,
1413
- err_start: &Self::Checkpoint,
1414
- err: ErrMode<E>,
1415
- ) -> Result<(), ErrMode<E>>;
1416
-
1417
- /// Report whether the [`Stream`] can save off errors for recovery
1418
- fn is_recovery_supported() -> bool;
1419
- }
1420
-
1421
- #[cfg(feature = "unstable-recover")]
1422
- #[cfg(feature = "std")]
1423
- impl<'a, T, E> Recover<E> for &'a [T]
1424
- where
1425
- &'a [T]: Stream,
1426
- {
1427
- #[inline(always)]
1428
- fn record_err(
1429
- &mut self,
1430
- _token_start: &Self::Checkpoint,
1431
- _err_start: &Self::Checkpoint,
1432
- err: ErrMode<E>,
1433
- ) -> Result<(), ErrMode<E>> {
1434
- Err(err)
1435
- }
1436
-
1437
- /// Report whether the [`Stream`] can save off errors for recovery
1438
- #[inline(always)]
1439
- fn is_recovery_supported() -> bool {
1440
- false
1441
- }
1442
- }
1443
-
1444
- #[cfg(feature = "unstable-recover")]
1445
- #[cfg(feature = "std")]
1446
- impl<E> Recover<E> for &str {
1447
- #[inline(always)]
1448
- fn record_err(
1449
- &mut self,
1450
- _token_start: &Self::Checkpoint,
1451
- _err_start: &Self::Checkpoint,
1452
- err: ErrMode<E>,
1453
- ) -> Result<(), ErrMode<E>> {
1454
- Err(err)
1455
- }
1456
-
1457
- /// Report whether the [`Stream`] can save off errors for recovery
1458
- #[inline(always)]
1459
- fn is_recovery_supported() -> bool {
1460
- false
1461
- }
1462
- }
1463
-
1464
- #[cfg(feature = "unstable-recover")]
1465
- #[cfg(feature = "std")]
1466
- impl<E> Recover<E> for &Bytes {
1467
- #[inline(always)]
1468
- fn record_err(
1469
- &mut self,
1470
- _token_start: &Self::Checkpoint,
1471
- _err_start: &Self::Checkpoint,
1472
- err: ErrMode<E>,
1473
- ) -> Result<(), ErrMode<E>> {
1474
- Err(err)
1475
- }
1476
-
1477
- /// Report whether the [`Stream`] can save off errors for recovery
1478
- #[inline(always)]
1479
- fn is_recovery_supported() -> bool {
1480
- false
1481
- }
1482
- }
1483
-
1484
- #[cfg(feature = "unstable-recover")]
1485
- #[cfg(feature = "std")]
1486
- impl<E> Recover<E> for &BStr {
1487
- #[inline(always)]
1488
- fn record_err(
1489
- &mut self,
1490
- _token_start: &Self::Checkpoint,
1491
- _err_start: &Self::Checkpoint,
1492
- err: ErrMode<E>,
1493
- ) -> Result<(), ErrMode<E>> {
1494
- Err(err)
1495
- }
1496
-
1497
- /// Report whether the [`Stream`] can save off errors for recovery
1498
- #[inline(always)]
1499
- fn is_recovery_supported() -> bool {
1500
- false
1501
- }
1502
- }
1503
-
1504
- #[cfg(feature = "unstable-recover")]
1505
- #[cfg(feature = "std")]
1506
- impl<I, E> Recover<E> for (I, usize)
1507
- where
1508
- I: Recover<E>,
1509
- I: Stream<Token = u8> + Clone,
1510
- {
1511
- #[inline(always)]
1512
- fn record_err(
1513
- &mut self,
1514
- _token_start: &Self::Checkpoint,
1515
- _err_start: &Self::Checkpoint,
1516
- err: ErrMode<E>,
1517
- ) -> Result<(), ErrMode<E>> {
1518
- Err(err)
1519
- }
1520
-
1521
- /// Report whether the [`Stream`] can save off errors for recovery
1522
- #[inline(always)]
1523
- fn is_recovery_supported() -> bool {
1524
- false
1525
- }
1526
- }
1527
-
1528
- #[cfg(feature = "unstable-recover")]
1529
- #[cfg(feature = "std")]
1530
- impl<I, E> Recover<E> for Located<I>
1531
- where
1532
- I: Recover<E>,
1533
- I: Stream,
1534
- {
1535
- #[inline(always)]
1536
- fn record_err(
1537
- &mut self,
1538
- _token_start: &Self::Checkpoint,
1539
- _err_start: &Self::Checkpoint,
1540
- err: ErrMode<E>,
1541
- ) -> Result<(), ErrMode<E>> {
1542
- Err(err)
1543
- }
1544
-
1545
- /// Report whether the [`Stream`] can save off errors for recovery
1546
- #[inline(always)]
1547
- fn is_recovery_supported() -> bool {
1548
- false
1549
- }
1550
- }
1551
-
1552
- #[cfg(feature = "unstable-recover")]
1553
- #[cfg(feature = "std")]
1554
- impl<I, E, R> Recover<E> for Recoverable<I, R>
1555
- where
1556
- I: Stream,
1557
- R: FromRecoverableError<Self, E>,
1558
- R: crate::lib::std::fmt::Debug,
1559
- {
1560
- fn record_err(
1561
- &mut self,
1562
- token_start: &Self::Checkpoint,
1563
- err_start: &Self::Checkpoint,
1564
- err: ErrMode<E>,
1565
- ) -> Result<(), ErrMode<E>> {
1566
- if self.is_recoverable {
1567
- match err {
1568
- ErrMode::Incomplete(need) => Err(ErrMode::Incomplete(need)),
1569
- ErrMode::Backtrack(err) | ErrMode::Cut(err) => {
1570
- self.errors
1571
- .push(R::from_recoverable_error(token_start, err_start, self, err));
1572
- Ok(())
1573
- }
1574
- }
1575
- } else {
1576
- Err(err)
1577
- }
1578
- }
1579
-
1580
- /// Report whether the [`Stream`] can save off errors for recovery
1581
- #[inline(always)]
1582
- fn is_recovery_supported() -> bool {
1583
- true
1584
- }
1585
- }
1586
-
1587
- #[cfg(feature = "unstable-recover")]
1588
- #[cfg(feature = "std")]
1589
- impl<I, E, S> Recover<E> for Stateful<I, S>
1590
- where
1591
- I: Recover<E>,
1592
- I: Stream,
1593
- S: Clone + crate::lib::std::fmt::Debug,
1594
- {
1595
- #[inline(always)]
1596
- fn record_err(
1597
- &mut self,
1598
- _token_start: &Self::Checkpoint,
1599
- _err_start: &Self::Checkpoint,
1600
- err: ErrMode<E>,
1601
- ) -> Result<(), ErrMode<E>> {
1602
- Err(err)
1603
- }
1604
-
1605
- /// Report whether the [`Stream`] can save off errors for recovery
1606
- #[inline(always)]
1607
- fn is_recovery_supported() -> bool {
1608
- false
1609
- }
1610
- }
1611
-
1612
- #[cfg(feature = "unstable-recover")]
1613
- #[cfg(feature = "std")]
1614
- impl<I, E> Recover<E> for Partial<I>
1615
- where
1616
- I: Recover<E>,
1617
- I: Stream,
1618
- {
1619
- #[inline(always)]
1620
- fn record_err(
1621
- &mut self,
1622
- _token_start: &Self::Checkpoint,
1623
- _err_start: &Self::Checkpoint,
1624
- err: ErrMode<E>,
1625
- ) -> Result<(), ErrMode<E>> {
1626
- Err(err)
1627
- }
1628
-
1629
- /// Report whether the [`Stream`] can save off errors for recovery
1630
- #[inline(always)]
1631
- fn is_recovery_supported() -> bool {
1632
- false
1633
- }
1634
- }
1635
-
1636
- /// Marks the input as being the complete buffer or a partial buffer for streaming input
1637
- ///
1638
- /// See [`Partial`] for marking a presumed complete buffer type as a streaming buffer.
1639
- pub trait StreamIsPartial: Sized {
1640
- /// Whether the stream is currently partial or complete
1641
- type PartialState;
1642
-
1643
- /// Mark the stream is complete
1644
- #[must_use]
1645
- fn complete(&mut self) -> Self::PartialState;
1646
-
1647
- /// Restore the stream back to its previous state
1648
- fn restore_partial(&mut self, state: Self::PartialState);
1649
-
1650
- /// Report whether the [`Stream`] is can ever be incomplete
1651
- fn is_partial_supported() -> bool;
1652
-
1653
- /// Report whether the [`Stream`] is currently incomplete
1654
- #[inline(always)]
1655
- fn is_partial(&self) -> bool {
1656
- Self::is_partial_supported()
1657
- }
1658
- }
1659
-
1660
- impl<T> StreamIsPartial for &[T] {
1661
- type PartialState = ();
1662
-
1663
- #[inline]
1664
- fn complete(&mut self) -> Self::PartialState {}
1665
-
1666
- #[inline]
1667
- fn restore_partial(&mut self, _state: Self::PartialState) {}
1668
-
1669
- #[inline(always)]
1670
- fn is_partial_supported() -> bool {
1671
- false
1672
- }
1673
- }
1674
-
1675
- impl StreamIsPartial for &str {
1676
- type PartialState = ();
1677
-
1678
- #[inline]
1679
- fn complete(&mut self) -> Self::PartialState {
1680
- // Already complete
1681
- }
1682
-
1683
- #[inline]
1684
- fn restore_partial(&mut self, _state: Self::PartialState) {}
1685
-
1686
- #[inline(always)]
1687
- fn is_partial_supported() -> bool {
1688
- false
1689
- }
1690
- }
1691
-
1692
- impl StreamIsPartial for &Bytes {
1693
- type PartialState = ();
1694
-
1695
- #[inline]
1696
- fn complete(&mut self) -> Self::PartialState {
1697
- // Already complete
1698
- }
1699
-
1700
- #[inline]
1701
- fn restore_partial(&mut self, _state: Self::PartialState) {}
1702
-
1703
- #[inline(always)]
1704
- fn is_partial_supported() -> bool {
1705
- false
1706
- }
1707
- }
1708
-
1709
- impl StreamIsPartial for &BStr {
1710
- type PartialState = ();
1711
-
1712
- #[inline]
1713
- fn complete(&mut self) -> Self::PartialState {
1714
- // Already complete
1715
- }
1716
-
1717
- #[inline]
1718
- fn restore_partial(&mut self, _state: Self::PartialState) {}
1719
-
1720
- #[inline(always)]
1721
- fn is_partial_supported() -> bool {
1722
- false
1723
- }
1724
- }
1725
-
1726
- impl<I> StreamIsPartial for (I, usize)
1727
- where
1728
- I: StreamIsPartial,
1729
- {
1730
- type PartialState = I::PartialState;
1731
-
1732
- #[inline]
1733
- fn complete(&mut self) -> Self::PartialState {
1734
- self.0.complete()
1735
- }
1736
-
1737
- #[inline]
1738
- fn restore_partial(&mut self, state: Self::PartialState) {
1739
- self.0.restore_partial(state);
1740
- }
1741
-
1742
- #[inline(always)]
1743
- fn is_partial_supported() -> bool {
1744
- I::is_partial_supported()
1745
- }
1746
-
1747
- #[inline(always)]
1748
- fn is_partial(&self) -> bool {
1749
- self.0.is_partial()
1750
- }
1751
- }
1752
-
1753
- impl<I> StreamIsPartial for Located<I>
1754
- where
1755
- I: StreamIsPartial,
1756
- {
1757
- type PartialState = I::PartialState;
1758
-
1759
- #[inline]
1760
- fn complete(&mut self) -> Self::PartialState {
1761
- self.input.complete()
1762
- }
1763
-
1764
- #[inline]
1765
- fn restore_partial(&mut self, state: Self::PartialState) {
1766
- self.input.restore_partial(state);
1767
- }
1768
-
1769
- #[inline(always)]
1770
- fn is_partial_supported() -> bool {
1771
- I::is_partial_supported()
1772
- }
1773
-
1774
- #[inline(always)]
1775
- fn is_partial(&self) -> bool {
1776
- self.input.is_partial()
1777
- }
1778
- }
1779
-
1780
- #[cfg(feature = "unstable-recover")]
1781
- #[cfg(feature = "std")]
1782
- impl<I, E> StreamIsPartial for Recoverable<I, E>
1783
- where
1784
- I: StreamIsPartial,
1785
- I: Stream,
1786
- {
1787
- type PartialState = I::PartialState;
1788
-
1789
- #[inline]
1790
- fn complete(&mut self) -> Self::PartialState {
1791
- self.input.complete()
1792
- }
1793
-
1794
- #[inline]
1795
- fn restore_partial(&mut self, state: Self::PartialState) {
1796
- self.input.restore_partial(state);
1797
- }
1798
-
1799
- #[inline(always)]
1800
- fn is_partial_supported() -> bool {
1801
- I::is_partial_supported()
1802
- }
1803
-
1804
- #[inline(always)]
1805
- fn is_partial(&self) -> bool {
1806
- self.input.is_partial()
1807
- }
1808
- }
1809
-
1810
- impl<I, S> StreamIsPartial for Stateful<I, S>
1811
- where
1812
- I: StreamIsPartial,
1813
- {
1814
- type PartialState = I::PartialState;
1815
-
1816
- #[inline]
1817
- fn complete(&mut self) -> Self::PartialState {
1818
- self.input.complete()
1819
- }
1820
-
1821
- #[inline]
1822
- fn restore_partial(&mut self, state: Self::PartialState) {
1823
- self.input.restore_partial(state);
1824
- }
1825
-
1826
- #[inline(always)]
1827
- fn is_partial_supported() -> bool {
1828
- I::is_partial_supported()
1829
- }
1830
-
1831
- #[inline(always)]
1832
- fn is_partial(&self) -> bool {
1833
- self.input.is_partial()
1834
- }
1835
- }
1836
-
1837
- impl<I> StreamIsPartial for Partial<I>
1838
- where
1839
- I: StreamIsPartial,
1840
- {
1841
- type PartialState = bool;
1842
-
1843
- #[inline]
1844
- fn complete(&mut self) -> Self::PartialState {
1845
- core::mem::replace(&mut self.partial, false)
1846
- }
1847
-
1848
- #[inline]
1849
- fn restore_partial(&mut self, state: Self::PartialState) {
1850
- self.partial = state;
1851
- }
1852
-
1853
- #[inline(always)]
1854
- fn is_partial_supported() -> bool {
1855
- true
1856
- }
1857
-
1858
- #[inline(always)]
1859
- fn is_partial(&self) -> bool {
1860
- self.partial
1861
- }
1862
- }
1863
-
1864
- /// Useful functions to calculate the offset between slices and show a hexdump of a slice
1865
- pub trait Offset<Start = Self> {
1866
- /// Offset between the first byte of `start` and the first byte of `self`a
1867
- ///
1868
- /// <div class="warning">
1869
- ///
1870
- /// **Note:** This is an offset, not an index, and may point to the end of input
1871
- /// (`start.len()`) when `self` is exhausted.
1872
- ///
1873
- /// </div>
1874
- fn offset_from(&self, start: &Start) -> usize;
1875
- }
1876
-
1877
- impl<T> Offset for &[T] {
1878
- #[inline]
1879
- fn offset_from(&self, start: &Self) -> usize {
1880
- let fst = (*start).as_ptr();
1881
- let snd = (*self).as_ptr();
1882
-
1883
- debug_assert!(
1884
- fst <= snd,
1885
- "`Offset::offset_from({snd:?}, {fst:?})` only accepts slices of `self`"
1886
- );
1887
- (snd as usize - fst as usize) / crate::lib::std::mem::size_of::<T>()
1888
- }
1889
- }
1890
-
1891
- impl<'a, T> Offset<<&'a [T] as Stream>::Checkpoint> for &'a [T]
1892
- where
1893
- T: Clone + crate::lib::std::fmt::Debug,
1894
- {
1895
- #[inline(always)]
1896
- fn offset_from(&self, other: &<&'a [T] as Stream>::Checkpoint) -> usize {
1897
- self.checkpoint().offset_from(other)
1898
- }
1899
- }
1900
-
1901
- impl Offset for &str {
1902
- #[inline(always)]
1903
- fn offset_from(&self, start: &Self) -> usize {
1904
- self.as_bytes().offset_from(&start.as_bytes())
1905
- }
1906
- }
1907
-
1908
- impl<'a> Offset<<&'a str as Stream>::Checkpoint> for &'a str {
1909
- #[inline(always)]
1910
- fn offset_from(&self, other: &<&'a str as Stream>::Checkpoint) -> usize {
1911
- self.checkpoint().offset_from(other)
1912
- }
1913
- }
1914
-
1915
- impl Offset for &Bytes {
1916
- #[inline(always)]
1917
- fn offset_from(&self, start: &Self) -> usize {
1918
- self.as_bytes().offset_from(&start.as_bytes())
1919
- }
1920
- }
1921
-
1922
- impl<'a> Offset<<&'a Bytes as Stream>::Checkpoint> for &'a Bytes {
1923
- #[inline(always)]
1924
- fn offset_from(&self, other: &<&'a Bytes as Stream>::Checkpoint) -> usize {
1925
- self.checkpoint().offset_from(other)
1926
- }
1927
- }
1928
-
1929
- impl Offset for &BStr {
1930
- #[inline(always)]
1931
- fn offset_from(&self, start: &Self) -> usize {
1932
- self.as_bytes().offset_from(&start.as_bytes())
1933
- }
1934
- }
1935
-
1936
- impl<'a> Offset<<&'a BStr as Stream>::Checkpoint> for &'a BStr {
1937
- #[inline(always)]
1938
- fn offset_from(&self, other: &<&'a BStr as Stream>::Checkpoint) -> usize {
1939
- self.checkpoint().offset_from(other)
1940
- }
1941
- }
1942
-
1943
- impl<I> Offset for (I, usize)
1944
- where
1945
- I: Offset,
1946
- {
1947
- #[inline(always)]
1948
- fn offset_from(&self, start: &Self) -> usize {
1949
- self.0.offset_from(&start.0) * 8 + self.1 - start.1
1950
- }
1951
- }
1952
-
1953
- impl<I> Offset<<(I, usize) as Stream>::Checkpoint> for (I, usize)
1954
- where
1955
- I: Stream<Token = u8> + Clone,
1956
- {
1957
- #[inline(always)]
1958
- fn offset_from(&self, other: &<(I, usize) as Stream>::Checkpoint) -> usize {
1959
- self.checkpoint().offset_from(other)
1960
- }
1961
- }
1962
-
1963
- impl<I> Offset for Located<I>
1964
- where
1965
- I: Stream,
1966
- {
1967
- #[inline(always)]
1968
- fn offset_from(&self, other: &Self) -> usize {
1969
- self.offset_from(&other.checkpoint())
1970
- }
1971
- }
1972
-
1973
- impl<I> Offset<<Located<I> as Stream>::Checkpoint> for Located<I>
1974
- where
1975
- I: Stream,
1976
- {
1977
- #[inline(always)]
1978
- fn offset_from(&self, other: &<Located<I> as Stream>::Checkpoint) -> usize {
1979
- self.checkpoint().offset_from(other)
1980
- }
1981
- }
1982
-
1983
- #[cfg(feature = "unstable-recover")]
1984
- #[cfg(feature = "std")]
1985
- impl<I, E> Offset for Recoverable<I, E>
1986
- where
1987
- I: Stream,
1988
- E: crate::lib::std::fmt::Debug,
1989
- {
1990
- #[inline(always)]
1991
- fn offset_from(&self, other: &Self) -> usize {
1992
- self.offset_from(&other.checkpoint())
1993
- }
1994
- }
1995
-
1996
- #[cfg(feature = "unstable-recover")]
1997
- #[cfg(feature = "std")]
1998
- impl<I, E> Offset<<Recoverable<I, E> as Stream>::Checkpoint> for Recoverable<I, E>
1999
- where
2000
- I: Stream,
2001
- E: crate::lib::std::fmt::Debug,
2002
- {
2003
- #[inline(always)]
2004
- fn offset_from(&self, other: &<Recoverable<I, E> as Stream>::Checkpoint) -> usize {
2005
- self.checkpoint().offset_from(other)
2006
- }
2007
- }
2008
-
2009
- impl<I, S> Offset for Stateful<I, S>
2010
- where
2011
- I: Stream,
2012
- S: Clone + crate::lib::std::fmt::Debug,
2013
- {
2014
- #[inline(always)]
2015
- fn offset_from(&self, start: &Self) -> usize {
2016
- self.offset_from(&start.checkpoint())
2017
- }
2018
- }
2019
-
2020
- impl<I, S> Offset<<Stateful<I, S> as Stream>::Checkpoint> for Stateful<I, S>
2021
- where
2022
- I: Stream,
2023
- S: crate::lib::std::fmt::Debug,
2024
- {
2025
- #[inline(always)]
2026
- fn offset_from(&self, other: &<Stateful<I, S> as Stream>::Checkpoint) -> usize {
2027
- self.checkpoint().offset_from(other)
2028
- }
2029
- }
2030
-
2031
- impl<I> Offset for Partial<I>
2032
- where
2033
- I: Stream,
2034
- {
2035
- #[inline(always)]
2036
- fn offset_from(&self, start: &Self) -> usize {
2037
- self.offset_from(&start.checkpoint())
2038
- }
2039
- }
2040
-
2041
- impl<I> Offset<<Partial<I> as Stream>::Checkpoint> for Partial<I>
2042
- where
2043
- I: Stream,
2044
- {
2045
- #[inline(always)]
2046
- fn offset_from(&self, other: &<Partial<I> as Stream>::Checkpoint) -> usize {
2047
- self.checkpoint().offset_from(other)
2048
- }
2049
- }
2050
-
2051
- impl<I, S> Offset for Checkpoint<I, S>
2052
- where
2053
- I: Offset,
2054
- {
2055
- #[inline(always)]
2056
- fn offset_from(&self, start: &Self) -> usize {
2057
- self.inner.offset_from(&start.inner)
2058
- }
2059
- }
2060
-
2061
- /// Helper trait for types that can be viewed as a byte slice
2062
- pub trait AsBytes {
2063
- /// Casts the input type to a byte slice
2064
- fn as_bytes(&self) -> &[u8];
2065
- }
2066
-
2067
- impl AsBytes for &[u8] {
2068
- #[inline(always)]
2069
- fn as_bytes(&self) -> &[u8] {
2070
- self
2071
- }
2072
- }
2073
-
2074
- impl AsBytes for &Bytes {
2075
- #[inline(always)]
2076
- fn as_bytes(&self) -> &[u8] {
2077
- (*self).as_bytes()
2078
- }
2079
- }
2080
-
2081
- impl<I> AsBytes for Located<I>
2082
- where
2083
- I: AsBytes,
2084
- {
2085
- #[inline(always)]
2086
- fn as_bytes(&self) -> &[u8] {
2087
- self.input.as_bytes()
2088
- }
2089
- }
2090
-
2091
- #[cfg(feature = "unstable-recover")]
2092
- #[cfg(feature = "std")]
2093
- impl<I, E> AsBytes for Recoverable<I, E>
2094
- where
2095
- I: Stream,
2096
- I: AsBytes,
2097
- {
2098
- #[inline(always)]
2099
- fn as_bytes(&self) -> &[u8] {
2100
- self.input.as_bytes()
2101
- }
2102
- }
2103
-
2104
- impl<I, S> AsBytes for Stateful<I, S>
2105
- where
2106
- I: AsBytes,
2107
- {
2108
- #[inline(always)]
2109
- fn as_bytes(&self) -> &[u8] {
2110
- self.input.as_bytes()
2111
- }
2112
- }
2113
-
2114
- impl<I> AsBytes for Partial<I>
2115
- where
2116
- I: AsBytes,
2117
- {
2118
- #[inline(always)]
2119
- fn as_bytes(&self) -> &[u8] {
2120
- self.input.as_bytes()
2121
- }
2122
- }
2123
-
2124
- /// Helper trait for types that can be viewed as a byte slice
2125
- pub trait AsBStr {
2126
- /// Casts the input type to a byte slice
2127
- fn as_bstr(&self) -> &[u8];
2128
- }
2129
-
2130
- impl AsBStr for &[u8] {
2131
- #[inline(always)]
2132
- fn as_bstr(&self) -> &[u8] {
2133
- self
2134
- }
2135
- }
2136
-
2137
- impl AsBStr for &BStr {
2138
- #[inline(always)]
2139
- fn as_bstr(&self) -> &[u8] {
2140
- (*self).as_bytes()
2141
- }
2142
- }
2143
-
2144
- impl AsBStr for &str {
2145
- #[inline(always)]
2146
- fn as_bstr(&self) -> &[u8] {
2147
- (*self).as_bytes()
2148
- }
2149
- }
2150
-
2151
- impl<I> AsBStr for Located<I>
2152
- where
2153
- I: AsBStr,
2154
- {
2155
- #[inline(always)]
2156
- fn as_bstr(&self) -> &[u8] {
2157
- self.input.as_bstr()
2158
- }
2159
- }
2160
-
2161
- #[cfg(feature = "unstable-recover")]
2162
- #[cfg(feature = "std")]
2163
- impl<I, E> AsBStr for Recoverable<I, E>
2164
- where
2165
- I: Stream,
2166
- I: AsBStr,
2167
- {
2168
- #[inline(always)]
2169
- fn as_bstr(&self) -> &[u8] {
2170
- self.input.as_bstr()
2171
- }
2172
- }
2173
-
2174
- impl<I, S> AsBStr for Stateful<I, S>
2175
- where
2176
- I: AsBStr,
2177
- {
2178
- #[inline(always)]
2179
- fn as_bstr(&self) -> &[u8] {
2180
- self.input.as_bstr()
2181
- }
2182
- }
2183
-
2184
- impl<I> AsBStr for Partial<I>
2185
- where
2186
- I: AsBStr,
2187
- {
2188
- #[inline(always)]
2189
- fn as_bstr(&self) -> &[u8] {
2190
- self.input.as_bstr()
2191
- }
2192
- }
2193
-
2194
- /// Result of [`Compare::compare`]
2195
- #[derive(Debug, Eq, PartialEq)]
2196
- pub enum CompareResult {
2197
- /// Comparison was successful
2198
- ///
2199
- /// `usize` is the end of the successful match within the buffer.
2200
- /// This is most relevant for caseless UTF-8 where `Compare::compare`'s parameter might be a different
2201
- /// length than the match within the buffer.
2202
- Ok(usize),
2203
- /// We need more data to be sure
2204
- Incomplete,
2205
- /// Comparison failed
2206
- Error,
2207
- }
2208
-
2209
- /// Abstracts comparison operations
2210
- pub trait Compare<T> {
2211
- /// Compares self to another value for equality
2212
- fn compare(&self, t: T) -> CompareResult;
2213
- }
2214
-
2215
- impl<'b> Compare<&'b [u8]> for &[u8] {
2216
- #[inline]
2217
- fn compare(&self, t: &'b [u8]) -> CompareResult {
2218
- if t.iter().zip(*self).any(|(a, b)| a != b) {
2219
- CompareResult::Error
2220
- } else if self.len() < t.slice_len() {
2221
- CompareResult::Incomplete
2222
- } else {
2223
- CompareResult::Ok(t.slice_len())
2224
- }
2225
- }
2226
- }
2227
-
2228
- impl<'b> Compare<AsciiCaseless<&'b [u8]>> for &[u8] {
2229
- #[inline]
2230
- fn compare(&self, t: AsciiCaseless<&'b [u8]>) -> CompareResult {
2231
- if t.0
2232
- .iter()
2233
- .zip(*self)
2234
- .any(|(a, b)| !a.eq_ignore_ascii_case(b))
2235
- {
2236
- CompareResult::Error
2237
- } else if self.len() < t.slice_len() {
2238
- CompareResult::Incomplete
2239
- } else {
2240
- CompareResult::Ok(t.slice_len())
2241
- }
2242
- }
2243
- }
2244
-
2245
- impl<const LEN: usize> Compare<[u8; LEN]> for &[u8] {
2246
- #[inline(always)]
2247
- fn compare(&self, t: [u8; LEN]) -> CompareResult {
2248
- self.compare(&t[..])
2249
- }
2250
- }
2251
-
2252
- impl<const LEN: usize> Compare<AsciiCaseless<[u8; LEN]>> for &[u8] {
2253
- #[inline(always)]
2254
- fn compare(&self, t: AsciiCaseless<[u8; LEN]>) -> CompareResult {
2255
- self.compare(AsciiCaseless(&t.0[..]))
2256
- }
2257
- }
2258
-
2259
- impl<'b, const LEN: usize> Compare<&'b [u8; LEN]> for &[u8] {
2260
- #[inline(always)]
2261
- fn compare(&self, t: &'b [u8; LEN]) -> CompareResult {
2262
- self.compare(&t[..])
2263
- }
2264
- }
2265
-
2266
- impl<'b, const LEN: usize> Compare<AsciiCaseless<&'b [u8; LEN]>> for &[u8] {
2267
- #[inline(always)]
2268
- fn compare(&self, t: AsciiCaseless<&'b [u8; LEN]>) -> CompareResult {
2269
- self.compare(AsciiCaseless(&t.0[..]))
2270
- }
2271
- }
2272
-
2273
- impl<'b> Compare<&'b str> for &[u8] {
2274
- #[inline(always)]
2275
- fn compare(&self, t: &'b str) -> CompareResult {
2276
- self.compare(t.as_bytes())
2277
- }
2278
- }
2279
-
2280
- impl<'b> Compare<AsciiCaseless<&'b str>> for &[u8] {
2281
- #[inline(always)]
2282
- fn compare(&self, t: AsciiCaseless<&'b str>) -> CompareResult {
2283
- self.compare(AsciiCaseless(t.0.as_bytes()))
2284
- }
2285
- }
2286
-
2287
- impl Compare<u8> for &[u8] {
2288
- #[inline]
2289
- fn compare(&self, t: u8) -> CompareResult {
2290
- match self.first().copied() {
2291
- Some(c) if t == c => CompareResult::Ok(t.slice_len()),
2292
- Some(_) => CompareResult::Error,
2293
- None => CompareResult::Incomplete,
2294
- }
2295
- }
2296
- }
2297
-
2298
- impl Compare<AsciiCaseless<u8>> for &[u8] {
2299
- #[inline]
2300
- fn compare(&self, t: AsciiCaseless<u8>) -> CompareResult {
2301
- match self.first() {
2302
- Some(c) if t.0.eq_ignore_ascii_case(c) => CompareResult::Ok(t.slice_len()),
2303
- Some(_) => CompareResult::Error,
2304
- None => CompareResult::Incomplete,
2305
- }
2306
- }
2307
- }
2308
-
2309
- impl Compare<char> for &[u8] {
2310
- #[inline(always)]
2311
- fn compare(&self, t: char) -> CompareResult {
2312
- self.compare(t.encode_utf8(&mut [0; 4]).as_bytes())
2313
- }
2314
- }
2315
-
2316
- impl Compare<AsciiCaseless<char>> for &[u8] {
2317
- #[inline(always)]
2318
- fn compare(&self, t: AsciiCaseless<char>) -> CompareResult {
2319
- self.compare(AsciiCaseless(t.0.encode_utf8(&mut [0; 4]).as_bytes()))
2320
- }
2321
- }
2322
-
2323
- impl<'b> Compare<&'b str> for &str {
2324
- #[inline(always)]
2325
- fn compare(&self, t: &'b str) -> CompareResult {
2326
- self.as_bytes().compare(t.as_bytes())
2327
- }
2328
- }
2329
-
2330
- impl<'b> Compare<AsciiCaseless<&'b str>> for &str {
2331
- #[inline(always)]
2332
- fn compare(&self, t: AsciiCaseless<&'b str>) -> CompareResult {
2333
- self.as_bytes().compare(t.as_bytes())
2334
- }
2335
- }
2336
-
2337
- impl Compare<char> for &str {
2338
- #[inline(always)]
2339
- fn compare(&self, t: char) -> CompareResult {
2340
- self.as_bytes().compare(t)
2341
- }
2342
- }
2343
-
2344
- impl Compare<AsciiCaseless<char>> for &str {
2345
- #[inline(always)]
2346
- fn compare(&self, t: AsciiCaseless<char>) -> CompareResult {
2347
- self.as_bytes().compare(t)
2348
- }
2349
- }
2350
-
2351
- impl<'a, T> Compare<T> for &'a Bytes
2352
- where
2353
- &'a [u8]: Compare<T>,
2354
- {
2355
- #[inline(always)]
2356
- fn compare(&self, t: T) -> CompareResult {
2357
- let bytes = (*self).as_bytes();
2358
- bytes.compare(t)
2359
- }
2360
- }
2361
-
2362
- impl<'a, T> Compare<T> for &'a BStr
2363
- where
2364
- &'a [u8]: Compare<T>,
2365
- {
2366
- #[inline(always)]
2367
- fn compare(&self, t: T) -> CompareResult {
2368
- let bytes = (*self).as_bytes();
2369
- bytes.compare(t)
2370
- }
2371
- }
2372
-
2373
- impl<I, U> Compare<U> for Located<I>
2374
- where
2375
- I: Compare<U>,
2376
- {
2377
- #[inline(always)]
2378
- fn compare(&self, other: U) -> CompareResult {
2379
- self.input.compare(other)
2380
- }
2381
- }
2382
-
2383
- #[cfg(feature = "unstable-recover")]
2384
- #[cfg(feature = "std")]
2385
- impl<I, E, U> Compare<U> for Recoverable<I, E>
2386
- where
2387
- I: Stream,
2388
- I: Compare<U>,
2389
- {
2390
- #[inline(always)]
2391
- fn compare(&self, other: U) -> CompareResult {
2392
- self.input.compare(other)
2393
- }
2394
- }
2395
-
2396
- impl<I, S, U> Compare<U> for Stateful<I, S>
2397
- where
2398
- I: Compare<U>,
2399
- {
2400
- #[inline(always)]
2401
- fn compare(&self, other: U) -> CompareResult {
2402
- self.input.compare(other)
2403
- }
2404
- }
2405
-
2406
- impl<I, T> Compare<T> for Partial<I>
2407
- where
2408
- I: Compare<T>,
2409
- {
2410
- #[inline(always)]
2411
- fn compare(&self, t: T) -> CompareResult {
2412
- self.input.compare(t)
2413
- }
2414
- }
2415
-
2416
- /// Look for a slice in self
2417
- pub trait FindSlice<T> {
2418
- /// Returns the offset of the slice if it is found
2419
- fn find_slice(&self, substr: T) -> Option<crate::lib::std::ops::Range<usize>>;
2420
- }
2421
-
2422
- impl<'s> FindSlice<&'s [u8]> for &[u8] {
2423
- #[inline(always)]
2424
- fn find_slice(&self, substr: &'s [u8]) -> Option<crate::lib::std::ops::Range<usize>> {
2425
- memmem(self, substr)
2426
- }
2427
- }
2428
-
2429
- impl<'s> FindSlice<(&'s [u8],)> for &[u8] {
2430
- #[inline(always)]
2431
- fn find_slice(&self, substr: (&'s [u8],)) -> Option<crate::lib::std::ops::Range<usize>> {
2432
- memmem(self, substr.0)
2433
- }
2434
- }
2435
-
2436
- impl<'s> FindSlice<(&'s [u8], &'s [u8])> for &[u8] {
2437
- #[inline(always)]
2438
- fn find_slice(
2439
- &self,
2440
- substr: (&'s [u8], &'s [u8]),
2441
- ) -> Option<crate::lib::std::ops::Range<usize>> {
2442
- memmem2(self, substr)
2443
- }
2444
- }
2445
-
2446
- impl<'s> FindSlice<(&'s [u8], &'s [u8], &'s [u8])> for &[u8] {
2447
- #[inline(always)]
2448
- fn find_slice(
2449
- &self,
2450
- substr: (&'s [u8], &'s [u8], &'s [u8]),
2451
- ) -> Option<crate::lib::std::ops::Range<usize>> {
2452
- memmem3(self, substr)
2453
- }
2454
- }
2455
-
2456
- impl FindSlice<char> for &[u8] {
2457
- #[inline(always)]
2458
- fn find_slice(&self, substr: char) -> Option<crate::lib::std::ops::Range<usize>> {
2459
- let mut b = [0; 4];
2460
- let substr = substr.encode_utf8(&mut b);
2461
- self.find_slice(&*substr)
2462
- }
2463
- }
2464
-
2465
- impl FindSlice<(char,)> for &[u8] {
2466
- #[inline(always)]
2467
- fn find_slice(&self, substr: (char,)) -> Option<crate::lib::std::ops::Range<usize>> {
2468
- let mut b = [0; 4];
2469
- let substr0 = substr.0.encode_utf8(&mut b);
2470
- self.find_slice((&*substr0,))
2471
- }
2472
- }
2473
-
2474
- impl FindSlice<(char, char)> for &[u8] {
2475
- #[inline(always)]
2476
- fn find_slice(&self, substr: (char, char)) -> Option<crate::lib::std::ops::Range<usize>> {
2477
- let mut b = [0; 4];
2478
- let substr0 = substr.0.encode_utf8(&mut b);
2479
- let mut b = [0; 4];
2480
- let substr1 = substr.1.encode_utf8(&mut b);
2481
- self.find_slice((&*substr0, &*substr1))
2482
- }
2483
- }
2484
-
2485
- impl FindSlice<(char, char, char)> for &[u8] {
2486
- #[inline(always)]
2487
- fn find_slice(&self, substr: (char, char, char)) -> Option<crate::lib::std::ops::Range<usize>> {
2488
- let mut b = [0; 4];
2489
- let substr0 = substr.0.encode_utf8(&mut b);
2490
- let mut b = [0; 4];
2491
- let substr1 = substr.1.encode_utf8(&mut b);
2492
- let mut b = [0; 4];
2493
- let substr2 = substr.2.encode_utf8(&mut b);
2494
- self.find_slice((&*substr0, &*substr1, &*substr2))
2495
- }
2496
- }
2497
-
2498
- impl FindSlice<u8> for &[u8] {
2499
- #[inline(always)]
2500
- fn find_slice(&self, substr: u8) -> Option<crate::lib::std::ops::Range<usize>> {
2501
- memchr(substr, self).map(|i| i..i + 1)
2502
- }
2503
- }
2504
-
2505
- impl FindSlice<(u8,)> for &[u8] {
2506
- #[inline(always)]
2507
- fn find_slice(&self, substr: (u8,)) -> Option<crate::lib::std::ops::Range<usize>> {
2508
- memchr(substr.0, self).map(|i| i..i + 1)
2509
- }
2510
- }
2511
-
2512
- impl FindSlice<(u8, u8)> for &[u8] {
2513
- #[inline(always)]
2514
- fn find_slice(&self, substr: (u8, u8)) -> Option<crate::lib::std::ops::Range<usize>> {
2515
- memchr2(substr, self).map(|i| i..i + 1)
2516
- }
2517
- }
2518
-
2519
- impl FindSlice<(u8, u8, u8)> for &[u8] {
2520
- #[inline(always)]
2521
- fn find_slice(&self, substr: (u8, u8, u8)) -> Option<crate::lib::std::ops::Range<usize>> {
2522
- memchr3(substr, self).map(|i| i..i + 1)
2523
- }
2524
- }
2525
-
2526
- impl<'s> FindSlice<&'s str> for &[u8] {
2527
- #[inline(always)]
2528
- fn find_slice(&self, substr: &'s str) -> Option<crate::lib::std::ops::Range<usize>> {
2529
- self.find_slice(substr.as_bytes())
2530
- }
2531
- }
2532
-
2533
- impl<'s> FindSlice<(&'s str,)> for &[u8] {
2534
- #[inline(always)]
2535
- fn find_slice(&self, substr: (&'s str,)) -> Option<crate::lib::std::ops::Range<usize>> {
2536
- memmem(self, substr.0.as_bytes())
2537
- }
2538
- }
2539
-
2540
- impl<'s> FindSlice<(&'s str, &'s str)> for &[u8] {
2541
- #[inline(always)]
2542
- fn find_slice(&self, substr: (&'s str, &'s str)) -> Option<crate::lib::std::ops::Range<usize>> {
2543
- memmem2(self, (substr.0.as_bytes(), substr.1.as_bytes()))
2544
- }
2545
- }
2546
-
2547
- impl<'s> FindSlice<(&'s str, &'s str, &'s str)> for &[u8] {
2548
- #[inline(always)]
2549
- fn find_slice(
2550
- &self,
2551
- substr: (&'s str, &'s str, &'s str),
2552
- ) -> Option<crate::lib::std::ops::Range<usize>> {
2553
- memmem3(
2554
- self,
2555
- (
2556
- substr.0.as_bytes(),
2557
- substr.1.as_bytes(),
2558
- substr.2.as_bytes(),
2559
- ),
2560
- )
2561
- }
2562
- }
2563
-
2564
- impl<'s> FindSlice<&'s str> for &str {
2565
- #[inline(always)]
2566
- fn find_slice(&self, substr: &'s str) -> Option<crate::lib::std::ops::Range<usize>> {
2567
- self.as_bytes().find_slice(substr)
2568
- }
2569
- }
2570
-
2571
- impl<'s> FindSlice<(&'s str,)> for &str {
2572
- #[inline(always)]
2573
- fn find_slice(&self, substr: (&'s str,)) -> Option<crate::lib::std::ops::Range<usize>> {
2574
- self.as_bytes().find_slice(substr)
2575
- }
2576
- }
2577
-
2578
- impl<'s> FindSlice<(&'s str, &'s str)> for &str {
2579
- #[inline(always)]
2580
- fn find_slice(&self, substr: (&'s str, &'s str)) -> Option<crate::lib::std::ops::Range<usize>> {
2581
- self.as_bytes().find_slice(substr)
2582
- }
2583
- }
2584
-
2585
- impl<'s> FindSlice<(&'s str, &'s str, &'s str)> for &str {
2586
- #[inline(always)]
2587
- fn find_slice(
2588
- &self,
2589
- substr: (&'s str, &'s str, &'s str),
2590
- ) -> Option<crate::lib::std::ops::Range<usize>> {
2591
- self.as_bytes().find_slice(substr)
2592
- }
2593
- }
2594
-
2595
- impl FindSlice<char> for &str {
2596
- #[inline(always)]
2597
- fn find_slice(&self, substr: char) -> Option<crate::lib::std::ops::Range<usize>> {
2598
- self.as_bytes().find_slice(substr)
2599
- }
2600
- }
2601
-
2602
- impl FindSlice<(char,)> for &str {
2603
- #[inline(always)]
2604
- fn find_slice(&self, substr: (char,)) -> Option<crate::lib::std::ops::Range<usize>> {
2605
- self.as_bytes().find_slice(substr)
2606
- }
2607
- }
2608
-
2609
- impl FindSlice<(char, char)> for &str {
2610
- #[inline(always)]
2611
- fn find_slice(&self, substr: (char, char)) -> Option<crate::lib::std::ops::Range<usize>> {
2612
- self.as_bytes().find_slice(substr)
2613
- }
2614
- }
2615
-
2616
- impl FindSlice<(char, char, char)> for &str {
2617
- #[inline(always)]
2618
- fn find_slice(&self, substr: (char, char, char)) -> Option<crate::lib::std::ops::Range<usize>> {
2619
- self.as_bytes().find_slice(substr)
2620
- }
2621
- }
2622
-
2623
- impl<'i, S> FindSlice<S> for &'i Bytes
2624
- where
2625
- &'i [u8]: FindSlice<S>,
2626
- {
2627
- #[inline(always)]
2628
- fn find_slice(&self, substr: S) -> Option<crate::lib::std::ops::Range<usize>> {
2629
- let bytes = (*self).as_bytes();
2630
- let offset = bytes.find_slice(substr);
2631
- offset
2632
- }
2633
- }
2634
-
2635
- impl<'i, S> FindSlice<S> for &'i BStr
2636
- where
2637
- &'i [u8]: FindSlice<S>,
2638
- {
2639
- #[inline(always)]
2640
- fn find_slice(&self, substr: S) -> Option<crate::lib::std::ops::Range<usize>> {
2641
- let bytes = (*self).as_bytes();
2642
- let offset = bytes.find_slice(substr);
2643
- offset
2644
- }
2645
- }
2646
-
2647
- impl<I, T> FindSlice<T> for Located<I>
2648
- where
2649
- I: FindSlice<T>,
2650
- {
2651
- #[inline(always)]
2652
- fn find_slice(&self, substr: T) -> Option<crate::lib::std::ops::Range<usize>> {
2653
- self.input.find_slice(substr)
2654
- }
2655
- }
2656
-
2657
- #[cfg(feature = "unstable-recover")]
2658
- #[cfg(feature = "std")]
2659
- impl<I, E, T> FindSlice<T> for Recoverable<I, E>
2660
- where
2661
- I: Stream,
2662
- I: FindSlice<T>,
2663
- {
2664
- #[inline(always)]
2665
- fn find_slice(&self, substr: T) -> Option<crate::lib::std::ops::Range<usize>> {
2666
- self.input.find_slice(substr)
2667
- }
2668
- }
2669
-
2670
- impl<I, S, T> FindSlice<T> for Stateful<I, S>
2671
- where
2672
- I: FindSlice<T>,
2673
- {
2674
- #[inline(always)]
2675
- fn find_slice(&self, substr: T) -> Option<crate::lib::std::ops::Range<usize>> {
2676
- self.input.find_slice(substr)
2677
- }
2678
- }
2679
-
2680
- impl<I, T> FindSlice<T> for Partial<I>
2681
- where
2682
- I: FindSlice<T>,
2683
- {
2684
- #[inline(always)]
2685
- fn find_slice(&self, substr: T) -> Option<crate::lib::std::ops::Range<usize>> {
2686
- self.input.find_slice(substr)
2687
- }
2688
- }
2689
-
2690
- /// Used to integrate `str`'s `parse()` method
2691
- pub trait ParseSlice<R> {
2692
- /// Succeeds if `parse()` succeeded
2693
- ///
2694
- /// The byte slice implementation will first convert it to a `&str`, then apply the `parse()`
2695
- /// function
2696
- fn parse_slice(&self) -> Option<R>;
2697
- }
2698
-
2699
- impl<R: FromStr> ParseSlice<R> for &[u8] {
2700
- #[inline(always)]
2701
- fn parse_slice(&self) -> Option<R> {
2702
- from_utf8(self).ok().and_then(|s| s.parse().ok())
2703
- }
2704
- }
2705
-
2706
- impl<R: FromStr> ParseSlice<R> for &str {
2707
- #[inline(always)]
2708
- fn parse_slice(&self) -> Option<R> {
2709
- self.parse().ok()
2710
- }
2711
- }
2712
-
2713
- /// Convert a `Stream` into an appropriate `Output` type
2714
- pub trait UpdateSlice: Stream {
2715
- /// Convert an `Output` type to be used as `Stream`
2716
- fn update_slice(self, inner: Self::Slice) -> Self;
2717
- }
2718
-
2719
- impl<T> UpdateSlice for &[T]
2720
- where
2721
- T: Clone + crate::lib::std::fmt::Debug,
2722
- {
2723
- #[inline(always)]
2724
- fn update_slice(self, inner: Self::Slice) -> Self {
2725
- inner
2726
- }
2727
- }
2728
-
2729
- impl UpdateSlice for &str {
2730
- #[inline(always)]
2731
- fn update_slice(self, inner: Self::Slice) -> Self {
2732
- inner
2733
- }
2734
- }
2735
-
2736
- impl UpdateSlice for &Bytes {
2737
- #[inline(always)]
2738
- fn update_slice(self, inner: Self::Slice) -> Self {
2739
- Bytes::new(inner)
2740
- }
2741
- }
2742
-
2743
- impl UpdateSlice for &BStr {
2744
- #[inline(always)]
2745
- fn update_slice(self, inner: Self::Slice) -> Self {
2746
- BStr::new(inner)
2747
- }
2748
- }
2749
-
2750
- impl<I> UpdateSlice for Located<I>
2751
- where
2752
- I: UpdateSlice,
2753
- {
2754
- #[inline(always)]
2755
- fn update_slice(mut self, inner: Self::Slice) -> Self {
2756
- self.input = I::update_slice(self.input, inner);
2757
- self
2758
- }
2759
- }
2760
-
2761
- #[cfg(feature = "unstable-recover")]
2762
- #[cfg(feature = "std")]
2763
- impl<I, E> UpdateSlice for Recoverable<I, E>
2764
- where
2765
- I: Stream,
2766
- I: UpdateSlice,
2767
- E: crate::lib::std::fmt::Debug,
2768
- {
2769
- #[inline(always)]
2770
- fn update_slice(mut self, inner: Self::Slice) -> Self {
2771
- self.input = I::update_slice(self.input, inner);
2772
- self
2773
- }
2774
- }
2775
-
2776
- impl<I, S> UpdateSlice for Stateful<I, S>
2777
- where
2778
- I: UpdateSlice,
2779
- S: Clone + crate::lib::std::fmt::Debug,
2780
- {
2781
- #[inline(always)]
2782
- fn update_slice(mut self, inner: Self::Slice) -> Self {
2783
- self.input = I::update_slice(self.input, inner);
2784
- self
2785
- }
2786
- }
2787
-
2788
- impl<I> UpdateSlice for Partial<I>
2789
- where
2790
- I: UpdateSlice,
2791
- {
2792
- #[inline(always)]
2793
- fn update_slice(self, inner: Self::Slice) -> Self {
2794
- Partial {
2795
- input: I::update_slice(self.input, inner),
2796
- partial: self.partial,
2797
- }
2798
- }
2799
- }
2800
-
2801
- /// Ensure checkpoint details are kept private
2802
- pub struct Checkpoint<T, S> {
2803
- inner: T,
2804
- stream: core::marker::PhantomData<S>,
2805
- }
2806
-
2807
- impl<T, S> Checkpoint<T, S> {
2808
- fn new(inner: T) -> Self {
2809
- Self {
2810
- inner,
2811
- stream: Default::default(),
2812
- }
2813
- }
2814
- }
2815
-
2816
- impl<T: Copy, S> Copy for Checkpoint<T, S> {}
2817
-
2818
- impl<T: Clone, S> Clone for Checkpoint<T, S> {
2819
- #[inline(always)]
2820
- fn clone(&self) -> Self {
2821
- Self {
2822
- inner: self.inner.clone(),
2823
- stream: Default::default(),
2824
- }
2825
- }
2826
- }
2827
-
2828
- impl<T: PartialOrd, S> PartialOrd for Checkpoint<T, S> {
2829
- #[inline(always)]
2830
- fn partial_cmp(&self, other: &Self) -> Option<core::cmp::Ordering> {
2831
- self.inner.partial_cmp(&other.inner)
2832
- }
2833
- }
2834
-
2835
- impl<T: Ord, S> Ord for Checkpoint<T, S> {
2836
- #[inline(always)]
2837
- fn cmp(&self, other: &Self) -> core::cmp::Ordering {
2838
- self.inner.cmp(&other.inner)
2839
- }
2840
- }
2841
-
2842
- impl<T: PartialEq, S> PartialEq for Checkpoint<T, S> {
2843
- #[inline(always)]
2844
- fn eq(&self, other: &Self) -> bool {
2845
- self.inner.eq(&other.inner)
2846
- }
2847
- }
2848
-
2849
- impl<T: Eq, S> Eq for Checkpoint<T, S> {}
2850
-
2851
- impl<T: crate::lib::std::fmt::Debug, S> crate::lib::std::fmt::Debug for Checkpoint<T, S> {
2852
- fn fmt(&self, f: &mut crate::lib::std::fmt::Formatter<'_>) -> crate::lib::std::fmt::Result {
2853
- self.inner.fmt(f)
2854
- }
2855
- }
2856
-
2857
- /// A range bounded inclusively for counting parses performed
2858
- ///
2859
- /// This is flexible in what can be converted to a [Range]:
2860
- /// ```rust
2861
- /// # #[cfg(feature = "std")] {
2862
- /// # use winnow::prelude::*;
2863
- /// # use winnow::token::any;
2864
- /// # use winnow::combinator::repeat;
2865
- /// # fn inner(input: &mut &str) -> PResult<char> {
2866
- /// # any.parse_next(input)
2867
- /// # }
2868
- /// # let mut input = "0123456789012345678901234567890123456789";
2869
- /// # let input = &mut input;
2870
- /// let parser: Vec<_> = repeat(5, inner).parse_next(input).unwrap();
2871
- /// # let mut input = "0123456789012345678901234567890123456789";
2872
- /// # let input = &mut input;
2873
- /// let parser: Vec<_> = repeat(.., inner).parse_next(input).unwrap();
2874
- /// # let mut input = "0123456789012345678901234567890123456789";
2875
- /// # let input = &mut input;
2876
- /// let parser: Vec<_> = repeat(1.., inner).parse_next(input).unwrap();
2877
- /// # let mut input = "0123456789012345678901234567890123456789";
2878
- /// # let input = &mut input;
2879
- /// let parser: Vec<_> = repeat(5..8, inner).parse_next(input).unwrap();
2880
- /// # let mut input = "0123456789012345678901234567890123456789";
2881
- /// # let input = &mut input;
2882
- /// let parser: Vec<_> = repeat(5..=8, inner).parse_next(input).unwrap();
2883
- /// # }
2884
- /// ```
2885
- #[derive(PartialEq, Eq)]
2886
- pub struct Range {
2887
- pub(crate) start_inclusive: usize,
2888
- pub(crate) end_inclusive: Option<usize>,
2889
- }
2890
-
2891
- impl Range {
2892
- #[inline(always)]
2893
- fn raw(start_inclusive: usize, end_inclusive: Option<usize>) -> Self {
2894
- Self {
2895
- start_inclusive,
2896
- end_inclusive,
2897
- }
2898
- }
2899
- }
2900
-
2901
- impl crate::lib::std::ops::RangeBounds<usize> for Range {
2902
- #[inline(always)]
2903
- fn start_bound(&self) -> crate::lib::std::ops::Bound<&usize> {
2904
- crate::lib::std::ops::Bound::Included(&self.start_inclusive)
2905
- }
2906
-
2907
- #[inline(always)]
2908
- fn end_bound(&self) -> crate::lib::std::ops::Bound<&usize> {
2909
- if let Some(end_inclusive) = &self.end_inclusive {
2910
- crate::lib::std::ops::Bound::Included(end_inclusive)
2911
- } else {
2912
- crate::lib::std::ops::Bound::Unbounded
2913
- }
2914
- }
2915
- }
2916
-
2917
- impl From<usize> for Range {
2918
- #[inline(always)]
2919
- fn from(fixed: usize) -> Self {
2920
- (fixed..=fixed).into()
2921
- }
2922
- }
2923
-
2924
- impl From<crate::lib::std::ops::Range<usize>> for Range {
2925
- #[inline(always)]
2926
- fn from(range: crate::lib::std::ops::Range<usize>) -> Self {
2927
- let start_inclusive = range.start;
2928
- let end_inclusive = Some(range.end.saturating_sub(1));
2929
- Self::raw(start_inclusive, end_inclusive)
2930
- }
2931
- }
2932
-
2933
- impl From<crate::lib::std::ops::RangeFull> for Range {
2934
- #[inline(always)]
2935
- fn from(_: crate::lib::std::ops::RangeFull) -> Self {
2936
- let start_inclusive = 0;
2937
- let end_inclusive = None;
2938
- Self::raw(start_inclusive, end_inclusive)
2939
- }
2940
- }
2941
-
2942
- impl From<crate::lib::std::ops::RangeFrom<usize>> for Range {
2943
- #[inline(always)]
2944
- fn from(range: crate::lib::std::ops::RangeFrom<usize>) -> Self {
2945
- let start_inclusive = range.start;
2946
- let end_inclusive = None;
2947
- Self::raw(start_inclusive, end_inclusive)
2948
- }
2949
- }
2950
-
2951
- impl From<crate::lib::std::ops::RangeTo<usize>> for Range {
2952
- #[inline(always)]
2953
- fn from(range: crate::lib::std::ops::RangeTo<usize>) -> Self {
2954
- let start_inclusive = 0;
2955
- let end_inclusive = Some(range.end.saturating_sub(1));
2956
- Self::raw(start_inclusive, end_inclusive)
2957
- }
2958
- }
2959
-
2960
- impl From<crate::lib::std::ops::RangeInclusive<usize>> for Range {
2961
- #[inline(always)]
2962
- fn from(range: crate::lib::std::ops::RangeInclusive<usize>) -> Self {
2963
- let start_inclusive = *range.start();
2964
- let end_inclusive = Some(*range.end());
2965
- Self::raw(start_inclusive, end_inclusive)
2966
- }
2967
- }
2968
-
2969
- impl From<crate::lib::std::ops::RangeToInclusive<usize>> for Range {
2970
- #[inline(always)]
2971
- fn from(range: crate::lib::std::ops::RangeToInclusive<usize>) -> Self {
2972
- let start_inclusive = 0;
2973
- let end_inclusive = Some(range.end);
2974
- Self::raw(start_inclusive, end_inclusive)
2975
- }
2976
- }
2977
-
2978
- impl crate::lib::std::fmt::Display for Range {
2979
- fn fmt(&self, f: &mut crate::lib::std::fmt::Formatter<'_>) -> crate::lib::std::fmt::Result {
2980
- self.start_inclusive.fmt(f)?;
2981
- match self.end_inclusive {
2982
- Some(e) if e == self.start_inclusive => {}
2983
- Some(e) => {
2984
- "..=".fmt(f)?;
2985
- e.fmt(f)?;
2986
- }
2987
- None => {
2988
- "..".fmt(f)?;
2989
- }
2990
- }
2991
- Ok(())
2992
- }
2993
- }
2994
-
2995
- impl crate::lib::std::fmt::Debug for Range {
2996
- fn fmt(&self, f: &mut crate::lib::std::fmt::Formatter<'_>) -> crate::lib::std::fmt::Result {
2997
- write!(f, "{self}")
2998
- }
2999
- }
3000
-
3001
- /// Abstracts something which can extend an `Extend`.
3002
- /// Used to build modified input slices in `escaped_transform`
3003
- pub trait Accumulate<T>: Sized {
3004
- /// Create a new `Extend` of the correct type
3005
- fn initial(capacity: Option<usize>) -> Self;
3006
- /// Accumulate the input into an accumulator
3007
- fn accumulate(&mut self, acc: T);
3008
- }
3009
-
3010
- impl<T> Accumulate<T> for () {
3011
- #[inline(always)]
3012
- fn initial(_capacity: Option<usize>) -> Self {}
3013
- #[inline(always)]
3014
- fn accumulate(&mut self, _acc: T) {}
3015
- }
3016
-
3017
- impl<T> Accumulate<T> for usize {
3018
- #[inline(always)]
3019
- fn initial(_capacity: Option<usize>) -> Self {
3020
- 0
3021
- }
3022
- #[inline(always)]
3023
- fn accumulate(&mut self, _acc: T) {
3024
- *self += 1;
3025
- }
3026
- }
3027
-
3028
- #[cfg(feature = "alloc")]
3029
- impl<T> Accumulate<T> for Vec<T> {
3030
- #[inline(always)]
3031
- fn initial(capacity: Option<usize>) -> Self {
3032
- match capacity {
3033
- Some(capacity) => Vec::with_capacity(clamp_capacity::<T>(capacity)),
3034
- None => Vec::new(),
3035
- }
3036
- }
3037
- #[inline(always)]
3038
- fn accumulate(&mut self, acc: T) {
3039
- self.push(acc);
3040
- }
3041
- }
3042
-
3043
- #[cfg(feature = "alloc")]
3044
- impl<'i, T: Clone> Accumulate<&'i [T]> for Vec<T> {
3045
- #[inline(always)]
3046
- fn initial(capacity: Option<usize>) -> Self {
3047
- match capacity {
3048
- Some(capacity) => Vec::with_capacity(clamp_capacity::<T>(capacity)),
3049
- None => Vec::new(),
3050
- }
3051
- }
3052
- #[inline(always)]
3053
- fn accumulate(&mut self, acc: &'i [T]) {
3054
- self.extend(acc.iter().cloned());
3055
- }
3056
- }
3057
-
3058
- #[cfg(feature = "alloc")]
3059
- impl Accumulate<char> for String {
3060
- #[inline(always)]
3061
- fn initial(capacity: Option<usize>) -> Self {
3062
- match capacity {
3063
- Some(capacity) => String::with_capacity(clamp_capacity::<char>(capacity)),
3064
- None => String::new(),
3065
- }
3066
- }
3067
- #[inline(always)]
3068
- fn accumulate(&mut self, acc: char) {
3069
- self.push(acc);
3070
- }
3071
- }
3072
-
3073
- #[cfg(feature = "alloc")]
3074
- impl<'i> Accumulate<&'i str> for String {
3075
- #[inline(always)]
3076
- fn initial(capacity: Option<usize>) -> Self {
3077
- match capacity {
3078
- Some(capacity) => String::with_capacity(clamp_capacity::<char>(capacity)),
3079
- None => String::new(),
3080
- }
3081
- }
3082
- #[inline(always)]
3083
- fn accumulate(&mut self, acc: &'i str) {
3084
- self.push_str(acc);
3085
- }
3086
- }
3087
-
3088
- #[cfg(feature = "alloc")]
3089
- impl<K, V> Accumulate<(K, V)> for BTreeMap<K, V>
3090
- where
3091
- K: crate::lib::std::cmp::Ord,
3092
- {
3093
- #[inline(always)]
3094
- fn initial(_capacity: Option<usize>) -> Self {
3095
- BTreeMap::new()
3096
- }
3097
- #[inline(always)]
3098
- fn accumulate(&mut self, (key, value): (K, V)) {
3099
- self.insert(key, value);
3100
- }
3101
- }
3102
-
3103
- #[cfg(feature = "std")]
3104
- impl<K, V, S> Accumulate<(K, V)> for HashMap<K, V, S>
3105
- where
3106
- K: crate::lib::std::cmp::Eq + crate::lib::std::hash::Hash,
3107
- S: BuildHasher + Default,
3108
- {
3109
- #[inline(always)]
3110
- fn initial(capacity: Option<usize>) -> Self {
3111
- let h = S::default();
3112
- match capacity {
3113
- Some(capacity) => {
3114
- HashMap::with_capacity_and_hasher(clamp_capacity::<(K, V)>(capacity), h)
3115
- }
3116
- None => HashMap::with_hasher(h),
3117
- }
3118
- }
3119
- #[inline(always)]
3120
- fn accumulate(&mut self, (key, value): (K, V)) {
3121
- self.insert(key, value);
3122
- }
3123
- }
3124
-
3125
- #[cfg(feature = "alloc")]
3126
- impl<K> Accumulate<K> for BTreeSet<K>
3127
- where
3128
- K: crate::lib::std::cmp::Ord,
3129
- {
3130
- #[inline(always)]
3131
- fn initial(_capacity: Option<usize>) -> Self {
3132
- BTreeSet::new()
3133
- }
3134
- #[inline(always)]
3135
- fn accumulate(&mut self, key: K) {
3136
- self.insert(key);
3137
- }
3138
- }
3139
-
3140
- #[cfg(feature = "std")]
3141
- impl<K, S> Accumulate<K> for HashSet<K, S>
3142
- where
3143
- K: crate::lib::std::cmp::Eq + crate::lib::std::hash::Hash,
3144
- S: BuildHasher + Default,
3145
- {
3146
- #[inline(always)]
3147
- fn initial(capacity: Option<usize>) -> Self {
3148
- let h = S::default();
3149
- match capacity {
3150
- Some(capacity) => HashSet::with_capacity_and_hasher(clamp_capacity::<K>(capacity), h),
3151
- None => HashSet::with_hasher(h),
3152
- }
3153
- }
3154
- #[inline(always)]
3155
- fn accumulate(&mut self, key: K) {
3156
- self.insert(key);
3157
- }
3158
- }
3159
-
3160
- #[cfg(feature = "alloc")]
3161
- #[inline]
3162
- pub(crate) fn clamp_capacity<T>(capacity: usize) -> usize {
3163
- /// Don't pre-allocate more than 64KiB when calling `Vec::with_capacity`.
3164
- ///
3165
- /// Pre-allocating memory is a nice optimization but count fields can't
3166
- /// always be trusted. We should clamp initial capacities to some reasonable
3167
- /// amount. This reduces the risk of a bogus count value triggering a panic
3168
- /// due to an OOM error.
3169
- ///
3170
- /// This does not affect correctness. `winnow` will always read the full number
3171
- /// of elements regardless of the capacity cap.
3172
- const MAX_INITIAL_CAPACITY_BYTES: usize = 65536;
3173
-
3174
- let max_initial_capacity =
3175
- MAX_INITIAL_CAPACITY_BYTES / crate::lib::std::mem::size_of::<T>().max(1);
3176
- capacity.min(max_initial_capacity)
3177
- }
3178
-
3179
- /// Helper trait to convert numbers to usize.
3180
- ///
3181
- /// By default, usize implements `From<u8>` and `From<u16>` but not
3182
- /// `From<u32>` and `From<u64>` because that would be invalid on some
3183
- /// platforms. This trait implements the conversion for platforms
3184
- /// with 32 and 64 bits pointer platforms
3185
- pub trait ToUsize {
3186
- /// converts self to usize
3187
- fn to_usize(&self) -> usize;
3188
- }
3189
-
3190
- impl ToUsize for u8 {
3191
- #[inline(always)]
3192
- fn to_usize(&self) -> usize {
3193
- *self as usize
3194
- }
3195
- }
3196
-
3197
- impl ToUsize for u16 {
3198
- #[inline(always)]
3199
- fn to_usize(&self) -> usize {
3200
- *self as usize
3201
- }
3202
- }
3203
-
3204
- impl ToUsize for usize {
3205
- #[inline(always)]
3206
- fn to_usize(&self) -> usize {
3207
- *self
3208
- }
3209
- }
3210
-
3211
- #[cfg(any(target_pointer_width = "32", target_pointer_width = "64"))]
3212
- impl ToUsize for u32 {
3213
- #[inline(always)]
3214
- fn to_usize(&self) -> usize {
3215
- *self as usize
3216
- }
3217
- }
3218
-
3219
- #[cfg(target_pointer_width = "64")]
3220
- impl ToUsize for u64 {
3221
- #[inline(always)]
3222
- fn to_usize(&self) -> usize {
3223
- *self as usize
3224
- }
3225
- }
3226
-
3227
- /// Transforms a token into a char for basic string parsing
3228
- #[allow(clippy::len_without_is_empty)]
3229
- #[allow(clippy::wrong_self_convention)]
3230
- pub trait AsChar {
3231
- /// Makes a char from self
3232
- ///
3233
- /// # Example
3234
- ///
3235
- /// ```
3236
- /// use winnow::stream::AsChar as _;
3237
- ///
3238
- /// assert_eq!('a'.as_char(), 'a');
3239
- /// assert_eq!(u8::MAX.as_char(), std::char::from_u32(u8::MAX as u32).unwrap());
3240
- /// ```
3241
- fn as_char(self) -> char;
3242
-
3243
- /// Tests that self is an alphabetic character
3244
- ///
3245
- /// <div class="warning">
3246
- ///
3247
- /// **Warning:** for `&str` it matches alphabetic
3248
- /// characters outside of the 52 ASCII letters
3249
- ///
3250
- /// </div>
3251
- fn is_alpha(self) -> bool;
3252
-
3253
- /// Tests that self is an alphabetic character
3254
- /// or a decimal digit
3255
- fn is_alphanum(self) -> bool;
3256
- /// Tests that self is a decimal digit
3257
- fn is_dec_digit(self) -> bool;
3258
- /// Tests that self is an hex digit
3259
- fn is_hex_digit(self) -> bool;
3260
- /// Tests that self is an octal digit
3261
- fn is_oct_digit(self) -> bool;
3262
- /// Gets the len in bytes for self
3263
- fn len(self) -> usize;
3264
- /// Tests that self is ASCII space or tab
3265
- fn is_space(self) -> bool;
3266
- /// Tests if byte is ASCII newline: \n
3267
- fn is_newline(self) -> bool;
3268
- }
3269
-
3270
- impl AsChar for u8 {
3271
- #[inline(always)]
3272
- fn as_char(self) -> char {
3273
- self as char
3274
- }
3275
- #[inline]
3276
- fn is_alpha(self) -> bool {
3277
- matches!(self, 0x41..=0x5A | 0x61..=0x7A)
3278
- }
3279
- #[inline]
3280
- fn is_alphanum(self) -> bool {
3281
- self.is_alpha() || self.is_dec_digit()
3282
- }
3283
- #[inline]
3284
- fn is_dec_digit(self) -> bool {
3285
- matches!(self, 0x30..=0x39)
3286
- }
3287
- #[inline]
3288
- fn is_hex_digit(self) -> bool {
3289
- matches!(self, 0x30..=0x39 | 0x41..=0x46 | 0x61..=0x66)
3290
- }
3291
- #[inline]
3292
- fn is_oct_digit(self) -> bool {
3293
- matches!(self, 0x30..=0x37)
3294
- }
3295
- #[inline]
3296
- fn len(self) -> usize {
3297
- 1
3298
- }
3299
- #[inline]
3300
- fn is_space(self) -> bool {
3301
- self == b' ' || self == b'\t'
3302
- }
3303
- #[inline]
3304
- fn is_newline(self) -> bool {
3305
- self == b'\n'
3306
- }
3307
- }
3308
-
3309
- impl AsChar for &u8 {
3310
- #[inline(always)]
3311
- fn as_char(self) -> char {
3312
- (*self).as_char()
3313
- }
3314
- #[inline(always)]
3315
- fn is_alpha(self) -> bool {
3316
- (*self).is_alpha()
3317
- }
3318
- #[inline(always)]
3319
- fn is_alphanum(self) -> bool {
3320
- (*self).is_alphanum()
3321
- }
3322
- #[inline(always)]
3323
- fn is_dec_digit(self) -> bool {
3324
- (*self).is_dec_digit()
3325
- }
3326
- #[inline(always)]
3327
- fn is_hex_digit(self) -> bool {
3328
- (*self).is_hex_digit()
3329
- }
3330
- #[inline(always)]
3331
- fn is_oct_digit(self) -> bool {
3332
- (*self).is_oct_digit()
3333
- }
3334
- #[inline(always)]
3335
- fn len(self) -> usize {
3336
- (*self).len()
3337
- }
3338
- #[inline(always)]
3339
- fn is_space(self) -> bool {
3340
- (*self).is_space()
3341
- }
3342
- #[inline(always)]
3343
- fn is_newline(self) -> bool {
3344
- (*self).is_newline()
3345
- }
3346
- }
3347
-
3348
- impl AsChar for char {
3349
- #[inline(always)]
3350
- fn as_char(self) -> char {
3351
- self
3352
- }
3353
- #[inline]
3354
- fn is_alpha(self) -> bool {
3355
- self.is_ascii_alphabetic()
3356
- }
3357
- #[inline]
3358
- fn is_alphanum(self) -> bool {
3359
- self.is_alpha() || self.is_dec_digit()
3360
- }
3361
- #[inline]
3362
- fn is_dec_digit(self) -> bool {
3363
- self.is_ascii_digit()
3364
- }
3365
- #[inline]
3366
- fn is_hex_digit(self) -> bool {
3367
- self.is_ascii_hexdigit()
3368
- }
3369
- #[inline]
3370
- fn is_oct_digit(self) -> bool {
3371
- self.is_digit(8)
3372
- }
3373
- #[inline]
3374
- fn len(self) -> usize {
3375
- self.len_utf8()
3376
- }
3377
- #[inline]
3378
- fn is_space(self) -> bool {
3379
- self == ' ' || self == '\t'
3380
- }
3381
- #[inline]
3382
- fn is_newline(self) -> bool {
3383
- self == '\n'
3384
- }
3385
- }
3386
-
3387
- impl AsChar for &char {
3388
- #[inline(always)]
3389
- fn as_char(self) -> char {
3390
- (*self).as_char()
3391
- }
3392
- #[inline(always)]
3393
- fn is_alpha(self) -> bool {
3394
- (*self).is_alpha()
3395
- }
3396
- #[inline(always)]
3397
- fn is_alphanum(self) -> bool {
3398
- (*self).is_alphanum()
3399
- }
3400
- #[inline(always)]
3401
- fn is_dec_digit(self) -> bool {
3402
- (*self).is_dec_digit()
3403
- }
3404
- #[inline(always)]
3405
- fn is_hex_digit(self) -> bool {
3406
- (*self).is_hex_digit()
3407
- }
3408
- #[inline(always)]
3409
- fn is_oct_digit(self) -> bool {
3410
- (*self).is_oct_digit()
3411
- }
3412
- #[inline(always)]
3413
- fn len(self) -> usize {
3414
- (*self).len()
3415
- }
3416
- #[inline(always)]
3417
- fn is_space(self) -> bool {
3418
- (*self).is_space()
3419
- }
3420
- #[inline(always)]
3421
- fn is_newline(self) -> bool {
3422
- (*self).is_newline()
3423
- }
3424
- }
3425
-
3426
- /// Check if a token is in a set of possible tokens
3427
- ///
3428
- /// While this can be implemented manually, you can also build up sets using:
3429
- /// - `b'c'` and `'c'`
3430
- /// - `b""`
3431
- /// - `|c| true`
3432
- /// - `b'a'..=b'z'`, `'a'..='z'` (etc for each [range type][std::ops])
3433
- /// - `(set1, set2, ...)`
3434
- ///
3435
- /// # Example
3436
- ///
3437
- /// For example, you could implement `hex_digit0` as:
3438
- /// ```
3439
- /// # use winnow::prelude::*;
3440
- /// # use winnow::{error::ErrMode, error::ErrorKind, error::InputError};
3441
- /// # use winnow::token::take_while;
3442
- /// fn hex_digit1<'s>(input: &mut &'s str) -> PResult<&'s str, InputError<&'s str>> {
3443
- /// take_while(1.., ('a'..='f', 'A'..='F', '0'..='9')).parse_next(input)
3444
- /// }
3445
- ///
3446
- /// assert_eq!(hex_digit1.parse_peek("21cZ"), Ok(("Z", "21c")));
3447
- /// assert_eq!(hex_digit1.parse_peek("H2"), Err(ErrMode::Backtrack(InputError::new("H2", ErrorKind::Slice))));
3448
- /// assert_eq!(hex_digit1.parse_peek(""), Err(ErrMode::Backtrack(InputError::new("", ErrorKind::Slice))));
3449
- /// ```
3450
- pub trait ContainsToken<T> {
3451
- /// Returns true if self contains the token
3452
- fn contains_token(&self, token: T) -> bool;
3453
- }
3454
-
3455
- impl ContainsToken<u8> for u8 {
3456
- #[inline(always)]
3457
- fn contains_token(&self, token: u8) -> bool {
3458
- *self == token
3459
- }
3460
- }
3461
-
3462
- impl ContainsToken<&u8> for u8 {
3463
- #[inline(always)]
3464
- fn contains_token(&self, token: &u8) -> bool {
3465
- self.contains_token(*token)
3466
- }
3467
- }
3468
-
3469
- impl ContainsToken<char> for u8 {
3470
- #[inline(always)]
3471
- fn contains_token(&self, token: char) -> bool {
3472
- self.as_char() == token
3473
- }
3474
- }
3475
-
3476
- impl ContainsToken<&char> for u8 {
3477
- #[inline(always)]
3478
- fn contains_token(&self, token: &char) -> bool {
3479
- self.contains_token(*token)
3480
- }
3481
- }
3482
-
3483
- impl<C: AsChar> ContainsToken<C> for char {
3484
- #[inline(always)]
3485
- fn contains_token(&self, token: C) -> bool {
3486
- *self == token.as_char()
3487
- }
3488
- }
3489
-
3490
- impl<C, F: Fn(C) -> bool> ContainsToken<C> for F {
3491
- #[inline(always)]
3492
- fn contains_token(&self, token: C) -> bool {
3493
- self(token)
3494
- }
3495
- }
3496
-
3497
- impl<C1: AsChar, C2: AsChar + Clone> ContainsToken<C1> for crate::lib::std::ops::Range<C2> {
3498
- #[inline(always)]
3499
- fn contains_token(&self, token: C1) -> bool {
3500
- let start = self.start.clone().as_char();
3501
- let end = self.end.clone().as_char();
3502
- (start..end).contains(&token.as_char())
3503
- }
3504
- }
3505
-
3506
- impl<C1: AsChar, C2: AsChar + Clone> ContainsToken<C1>
3507
- for crate::lib::std::ops::RangeInclusive<C2>
3508
- {
3509
- #[inline(always)]
3510
- fn contains_token(&self, token: C1) -> bool {
3511
- let start = self.start().clone().as_char();
3512
- let end = self.end().clone().as_char();
3513
- (start..=end).contains(&token.as_char())
3514
- }
3515
- }
3516
-
3517
- impl<C1: AsChar, C2: AsChar + Clone> ContainsToken<C1> for crate::lib::std::ops::RangeFrom<C2> {
3518
- #[inline(always)]
3519
- fn contains_token(&self, token: C1) -> bool {
3520
- let start = self.start.clone().as_char();
3521
- (start..).contains(&token.as_char())
3522
- }
3523
- }
3524
-
3525
- impl<C1: AsChar, C2: AsChar + Clone> ContainsToken<C1> for crate::lib::std::ops::RangeTo<C2> {
3526
- #[inline(always)]
3527
- fn contains_token(&self, token: C1) -> bool {
3528
- let end = self.end.clone().as_char();
3529
- (..end).contains(&token.as_char())
3530
- }
3531
- }
3532
-
3533
- impl<C1: AsChar, C2: AsChar + Clone> ContainsToken<C1>
3534
- for crate::lib::std::ops::RangeToInclusive<C2>
3535
- {
3536
- #[inline(always)]
3537
- fn contains_token(&self, token: C1) -> bool {
3538
- let end = self.end.clone().as_char();
3539
- (..=end).contains(&token.as_char())
3540
- }
3541
- }
3542
-
3543
- impl<C1: AsChar> ContainsToken<C1> for crate::lib::std::ops::RangeFull {
3544
- #[inline(always)]
3545
- fn contains_token(&self, _token: C1) -> bool {
3546
- true
3547
- }
3548
- }
3549
-
3550
- impl<C: AsChar> ContainsToken<C> for &'_ [u8] {
3551
- #[inline]
3552
- fn contains_token(&self, token: C) -> bool {
3553
- let token = token.as_char();
3554
- self.iter().any(|t| t.as_char() == token)
3555
- }
3556
- }
3557
-
3558
- impl<C: AsChar> ContainsToken<C> for &'_ [char] {
3559
- #[inline]
3560
- fn contains_token(&self, token: C) -> bool {
3561
- let token = token.as_char();
3562
- self.iter().any(|t| *t == token)
3563
- }
3564
- }
3565
-
3566
- impl<const LEN: usize, C: AsChar> ContainsToken<C> for &'_ [u8; LEN] {
3567
- #[inline]
3568
- fn contains_token(&self, token: C) -> bool {
3569
- let token = token.as_char();
3570
- self.iter().any(|t| t.as_char() == token)
3571
- }
3572
- }
3573
-
3574
- impl<const LEN: usize, C: AsChar> ContainsToken<C> for &'_ [char; LEN] {
3575
- #[inline]
3576
- fn contains_token(&self, token: C) -> bool {
3577
- let token = token.as_char();
3578
- self.iter().any(|t| *t == token)
3579
- }
3580
- }
3581
-
3582
- impl<const LEN: usize, C: AsChar> ContainsToken<C> for [u8; LEN] {
3583
- #[inline]
3584
- fn contains_token(&self, token: C) -> bool {
3585
- let token = token.as_char();
3586
- self.iter().any(|t| t.as_char() == token)
3587
- }
3588
- }
3589
-
3590
- impl<const LEN: usize, C: AsChar> ContainsToken<C> for [char; LEN] {
3591
- #[inline]
3592
- fn contains_token(&self, token: C) -> bool {
3593
- let token = token.as_char();
3594
- self.iter().any(|t| *t == token)
3595
- }
3596
- }
3597
-
3598
- impl<T> ContainsToken<T> for () {
3599
- #[inline(always)]
3600
- fn contains_token(&self, _token: T) -> bool {
3601
- false
3602
- }
3603
- }
3604
-
3605
- macro_rules! impl_contains_token_for_tuple {
3606
- ($($haystack:ident),+) => (
3607
- #[allow(non_snake_case)]
3608
- impl<T, $($haystack),+> ContainsToken<T> for ($($haystack),+,)
3609
- where
3610
- T: Clone,
3611
- $($haystack: ContainsToken<T>),+
3612
- {
3613
- #[inline]
3614
- fn contains_token(&self, token: T) -> bool {
3615
- let ($(ref $haystack),+,) = *self;
3616
- $($haystack.contains_token(token.clone()) || )+ false
3617
- }
3618
- }
3619
- )
3620
- }
3621
-
3622
- macro_rules! impl_contains_token_for_tuples {
3623
- ($haystack1:ident, $($haystack:ident),+) => {
3624
- impl_contains_token_for_tuples!(__impl $haystack1; $($haystack),+);
3625
- };
3626
- (__impl $($haystack:ident),+; $haystack1:ident $(,$haystack2:ident)*) => {
3627
- impl_contains_token_for_tuple!($($haystack),+);
3628
- impl_contains_token_for_tuples!(__impl $($haystack),+, $haystack1; $($haystack2),*);
3629
- };
3630
- (__impl $($haystack:ident),+;) => {
3631
- impl_contains_token_for_tuple!($($haystack),+);
3632
- }
3633
- }
3634
-
3635
- impl_contains_token_for_tuples!(
3636
- F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13, F14, F15, F16, F17, F18, F19, F20, F21
3637
- );
3638
-
3639
- #[cfg(feature = "simd")]
3640
- #[inline(always)]
3641
- fn memchr(token: u8, slice: &[u8]) -> Option<usize> {
3642
- memchr::memchr(token, slice)
3643
- }
3644
-
3645
- #[cfg(feature = "simd")]
3646
- #[inline(always)]
3647
- fn memchr2(token: (u8, u8), slice: &[u8]) -> Option<usize> {
3648
- memchr::memchr2(token.0, token.1, slice)
3649
- }
3650
-
3651
- #[cfg(feature = "simd")]
3652
- #[inline(always)]
3653
- fn memchr3(token: (u8, u8, u8), slice: &[u8]) -> Option<usize> {
3654
- memchr::memchr3(token.0, token.1, token.2, slice)
3655
- }
3656
-
3657
- #[cfg(not(feature = "simd"))]
3658
- #[inline(always)]
3659
- fn memchr(token: u8, slice: &[u8]) -> Option<usize> {
3660
- slice.iter().position(|t| *t == token)
3661
- }
3662
-
3663
- #[cfg(not(feature = "simd"))]
3664
- #[inline(always)]
3665
- fn memchr2(token: (u8, u8), slice: &[u8]) -> Option<usize> {
3666
- slice.iter().position(|t| *t == token.0 || *t == token.1)
3667
- }
3668
-
3669
- #[cfg(not(feature = "simd"))]
3670
- #[inline(always)]
3671
- fn memchr3(token: (u8, u8, u8), slice: &[u8]) -> Option<usize> {
3672
- slice
3673
- .iter()
3674
- .position(|t| *t == token.0 || *t == token.1 || *t == token.2)
3675
- }
3676
-
3677
- #[inline(always)]
3678
- fn memmem(slice: &[u8], literal: &[u8]) -> Option<crate::lib::std::ops::Range<usize>> {
3679
- match literal.len() {
3680
- 0 => Some(0..0),
3681
- 1 => memchr(literal[0], slice).map(|i| i..i + 1),
3682
- _ => memmem_(slice, literal),
3683
- }
3684
- }
3685
-
3686
- #[inline(always)]
3687
- fn memmem2(slice: &[u8], literal: (&[u8], &[u8])) -> Option<crate::lib::std::ops::Range<usize>> {
3688
- match (literal.0.len(), literal.1.len()) {
3689
- (0, _) | (_, 0) => Some(0..0),
3690
- (1, 1) => memchr2((literal.0[0], literal.1[0]), slice).map(|i| i..i + 1),
3691
- _ => memmem2_(slice, literal),
3692
- }
3693
- }
3694
-
3695
- #[inline(always)]
3696
- fn memmem3(
3697
- slice: &[u8],
3698
- literal: (&[u8], &[u8], &[u8]),
3699
- ) -> Option<crate::lib::std::ops::Range<usize>> {
3700
- match (literal.0.len(), literal.1.len(), literal.2.len()) {
3701
- (0, _, _) | (_, 0, _) | (_, _, 0) => Some(0..0),
3702
- (1, 1, 1) => memchr3((literal.0[0], literal.1[0], literal.2[0]), slice).map(|i| i..i + 1),
3703
- _ => memmem3_(slice, literal),
3704
- }
3705
- }
3706
-
3707
- #[cfg(feature = "simd")]
3708
- #[inline(always)]
3709
- fn memmem_(slice: &[u8], literal: &[u8]) -> Option<crate::lib::std::ops::Range<usize>> {
3710
- let &prefix = match literal.first() {
3711
- Some(x) => x,
3712
- None => return Some(0..0),
3713
- };
3714
- #[allow(clippy::manual_find)] // faster this way
3715
- for i in memchr::memchr_iter(prefix, slice) {
3716
- if slice[i..].starts_with(literal) {
3717
- let i_end = i + literal.len();
3718
- return Some(i..i_end);
3719
- }
3720
- }
3721
- None
3722
- }
3723
-
3724
- #[cfg(feature = "simd")]
3725
- fn memmem2_(slice: &[u8], literal: (&[u8], &[u8])) -> Option<crate::lib::std::ops::Range<usize>> {
3726
- let prefix = match (literal.0.first(), literal.1.first()) {
3727
- (Some(&a), Some(&b)) => (a, b),
3728
- _ => return Some(0..0),
3729
- };
3730
- #[allow(clippy::manual_find)] // faster this way
3731
- for i in memchr::memchr2_iter(prefix.0, prefix.1, slice) {
3732
- let subslice = &slice[i..];
3733
- if subslice.starts_with(literal.0) {
3734
- let i_end = i + literal.0.len();
3735
- return Some(i..i_end);
3736
- }
3737
- if subslice.starts_with(literal.1) {
3738
- let i_end = i + literal.1.len();
3739
- return Some(i..i_end);
3740
- }
3741
- }
3742
- None
3743
- }
3744
-
3745
- #[cfg(feature = "simd")]
3746
- fn memmem3_(
3747
- slice: &[u8],
3748
- literal: (&[u8], &[u8], &[u8]),
3749
- ) -> Option<crate::lib::std::ops::Range<usize>> {
3750
- let prefix = match (literal.0.first(), literal.1.first(), literal.2.first()) {
3751
- (Some(&a), Some(&b), Some(&c)) => (a, b, c),
3752
- _ => return Some(0..0),
3753
- };
3754
- #[allow(clippy::manual_find)] // faster this way
3755
- for i in memchr::memchr3_iter(prefix.0, prefix.1, prefix.2, slice) {
3756
- let subslice = &slice[i..];
3757
- if subslice.starts_with(literal.0) {
3758
- let i_end = i + literal.0.len();
3759
- return Some(i..i_end);
3760
- }
3761
- if subslice.starts_with(literal.1) {
3762
- let i_end = i + literal.1.len();
3763
- return Some(i..i_end);
3764
- }
3765
- if subslice.starts_with(literal.2) {
3766
- let i_end = i + literal.2.len();
3767
- return Some(i..i_end);
3768
- }
3769
- }
3770
- None
3771
- }
3772
-
3773
- #[cfg(not(feature = "simd"))]
3774
- fn memmem_(slice: &[u8], literal: &[u8]) -> Option<crate::lib::std::ops::Range<usize>> {
3775
- for i in 0..slice.len() {
3776
- let subslice = &slice[i..];
3777
- if subslice.starts_with(literal) {
3778
- let i_end = i + literal.len();
3779
- return Some(i..i_end);
3780
- }
3781
- }
3782
- None
3783
- }
3784
-
3785
- #[cfg(not(feature = "simd"))]
3786
- fn memmem2_(slice: &[u8], literal: (&[u8], &[u8])) -> Option<crate::lib::std::ops::Range<usize>> {
3787
- for i in 0..slice.len() {
3788
- let subslice = &slice[i..];
3789
- if subslice.starts_with(literal.0) {
3790
- let i_end = i + literal.0.len();
3791
- return Some(i..i_end);
3792
- }
3793
- if subslice.starts_with(literal.1) {
3794
- let i_end = i + literal.1.len();
3795
- return Some(i..i_end);
3796
- }
3797
- }
3798
- None
3799
- }
3800
-
3801
- #[cfg(not(feature = "simd"))]
3802
- fn memmem3_(
3803
- slice: &[u8],
3804
- literal: (&[u8], &[u8], &[u8]),
3805
- ) -> Option<crate::lib::std::ops::Range<usize>> {
3806
- for i in 0..slice.len() {
3807
- let subslice = &slice[i..];
3808
- if subslice.starts_with(literal.0) {
3809
- let i_end = i + literal.0.len();
3810
- return Some(i..i_end);
3811
- }
3812
- if subslice.starts_with(literal.1) {
3813
- let i_end = i + literal.1.len();
3814
- return Some(i..i_end);
3815
- }
3816
- if subslice.starts_with(literal.2) {
3817
- let i_end = i + literal.2.len();
3818
- return Some(i..i_end);
3819
- }
3820
- }
3821
- None
3822
- }