fast_code_owners 0.0.7 → 0.0.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2285) hide show
  1. checksums.yaml +4 -4
  2. data/.cargo/config +2 -2
  3. data/Cargo.lock +160 -75
  4. data/ext/cargo-vendor/ahash-0.7.8/.cargo-checksum.json +1 -1
  5. data/ext/cargo-vendor/ahash-0.7.8/.cargo_vcs_info.json +6 -0
  6. data/ext/cargo-vendor/ahash-0.7.8/.github/workflows/rust.yml +151 -0
  7. data/ext/cargo-vendor/ahash-0.7.8/Cargo.toml.orig +96 -0
  8. data/ext/cargo-vendor/aho-corasick-1.1.3/.cargo-checksum.json +1 -1
  9. data/ext/cargo-vendor/aho-corasick-1.1.3/.cargo_vcs_info.json +6 -0
  10. data/ext/cargo-vendor/aho-corasick-1.1.3/.github/workflows/ci.yml +148 -0
  11. data/ext/cargo-vendor/aho-corasick-1.1.3/.vim/coc-settings.json +12 -0
  12. data/ext/cargo-vendor/aho-corasick-1.1.3/Cargo.toml.orig +74 -0
  13. data/ext/cargo-vendor/anstream-0.6.20/.cargo-checksum.json +1 -0
  14. data/ext/cargo-vendor/anstream-0.6.20/.cargo_vcs_info.json +6 -0
  15. data/ext/cargo-vendor/anstream-0.6.20/Cargo.lock +705 -0
  16. data/ext/cargo-vendor/anstream-0.6.20/Cargo.toml +220 -0
  17. data/ext/cargo-vendor/anstream-0.6.20/Cargo.toml.orig +72 -0
  18. data/ext/cargo-vendor/anstream-0.6.20/README.md +34 -0
  19. data/ext/cargo-vendor/anstream-0.6.20/src/_macros.rs +364 -0
  20. data/ext/cargo-vendor/anstream-0.6.20/src/adapter/strip.rs +511 -0
  21. data/ext/cargo-vendor/anstream-0.6.20/src/adapter/wincon.rs +378 -0
  22. data/ext/cargo-vendor/anstream-0.6.20/src/lib.rs +90 -0
  23. data/ext/cargo-vendor/anstream-0.6.20/src/stream.rs +316 -0
  24. data/ext/cargo-vendor/anstream-0.6.20/src/wincon.rs +226 -0
  25. data/ext/cargo-vendor/anstyle-1.0.11/.cargo-checksum.json +1 -0
  26. data/ext/cargo-vendor/anstyle-1.0.11/.cargo_vcs_info.json +6 -0
  27. data/ext/cargo-vendor/anstyle-1.0.11/Cargo.lock +16 -0
  28. data/ext/cargo-vendor/anstyle-1.0.11/Cargo.toml +178 -0
  29. data/ext/cargo-vendor/anstyle-1.0.11/Cargo.toml.orig +37 -0
  30. data/ext/cargo-vendor/anstyle-1.0.11/README.md +42 -0
  31. data/ext/cargo-vendor/anstyle-1.0.11/src/color.rs +685 -0
  32. data/ext/cargo-vendor/anstyle-1.0.11/src/effect.rs +404 -0
  33. data/ext/cargo-vendor/anstyle-1.0.11/src/lib.rs +70 -0
  34. data/ext/cargo-vendor/anstyle-1.0.11/src/reset.rs +47 -0
  35. data/ext/cargo-vendor/anstyle-1.0.11/src/style.rs +437 -0
  36. data/ext/cargo-vendor/anstyle-parse-0.2.7/.cargo-checksum.json +1 -0
  37. data/ext/cargo-vendor/anstyle-parse-0.2.7/.cargo_vcs_info.json +6 -0
  38. data/ext/cargo-vendor/anstyle-parse-0.2.7/Cargo.lock +740 -0
  39. data/ext/cargo-vendor/anstyle-parse-0.2.7/Cargo.toml +196 -0
  40. data/ext/cargo-vendor/anstyle-parse-0.2.7/Cargo.toml.orig +48 -0
  41. data/ext/cargo-vendor/anstyle-parse-0.2.7/README.md +33 -0
  42. data/ext/cargo-vendor/anstyle-parse-0.2.7/src/lib.rs +442 -0
  43. data/ext/cargo-vendor/anstyle-parse-0.2.7/src/state/definitions.rs +171 -0
  44. data/ext/cargo-vendor/anstyle-query-1.1.4/.cargo-checksum.json +1 -0
  45. data/ext/cargo-vendor/anstyle-query-1.1.4/.cargo_vcs_info.json +6 -0
  46. data/ext/cargo-vendor/anstyle-query-1.1.4/Cargo.lock +83 -0
  47. data/ext/cargo-vendor/anstyle-query-1.1.4/Cargo.toml +174 -0
  48. data/ext/cargo-vendor/anstyle-query-1.1.4/Cargo.toml.orig +30 -0
  49. data/ext/cargo-vendor/anstyle-query-1.1.4/README.md +25 -0
  50. data/ext/cargo-vendor/anstyle-query-1.1.4/src/lib.rs +163 -0
  51. data/ext/cargo-vendor/anstyle-query-1.1.4/src/windows.rs +79 -0
  52. data/ext/cargo-vendor/anstyle-wincon-3.0.10/.cargo-checksum.json +1 -0
  53. data/ext/cargo-vendor/anstyle-wincon-3.0.10/.cargo_vcs_info.json +6 -0
  54. data/ext/cargo-vendor/anstyle-wincon-3.0.10/Cargo.lock +113 -0
  55. data/ext/cargo-vendor/anstyle-wincon-3.0.10/Cargo.toml +187 -0
  56. data/ext/cargo-vendor/anstyle-wincon-3.0.10/Cargo.toml.orig +38 -0
  57. data/ext/cargo-vendor/anstyle-wincon-3.0.10/LICENSE-MIT +19 -0
  58. data/ext/cargo-vendor/anstyle-wincon-3.0.10/README.md +30 -0
  59. data/ext/cargo-vendor/anstyle-wincon-3.0.10/src/lib.rs +25 -0
  60. data/ext/cargo-vendor/anstyle-wincon-3.0.10/src/windows.rs +260 -0
  61. data/ext/cargo-vendor/anyhow-1.0.98/.cargo-checksum.json +1 -1
  62. data/ext/cargo-vendor/anyhow-1.0.98/.cargo_vcs_info.json +6 -0
  63. data/ext/cargo-vendor/anyhow-1.0.98/.github/FUNDING.yml +1 -0
  64. data/ext/cargo-vendor/anyhow-1.0.98/.github/workflows/ci.yml +148 -0
  65. data/ext/cargo-vendor/anyhow-1.0.98/Cargo.toml.orig +39 -0
  66. data/ext/cargo-vendor/arrayvec-0.7.6/.cargo-checksum.json +1 -1
  67. data/ext/cargo-vendor/arrayvec-0.7.6/.cargo_vcs_info.json +6 -0
  68. data/ext/cargo-vendor/arrayvec-0.7.6/.github/workflows/ci.yml +92 -0
  69. data/ext/cargo-vendor/arrayvec-0.7.6/Cargo.toml.orig +62 -0
  70. data/ext/cargo-vendor/bindgen-0.69.5/.cargo-checksum.json +1 -1
  71. data/ext/cargo-vendor/bindgen-0.69.5/.cargo_vcs_info.json +6 -0
  72. data/ext/cargo-vendor/bindgen-0.69.5/Cargo.toml.orig +74 -0
  73. data/ext/cargo-vendor/bitflags-2.9.0/.cargo-checksum.json +1 -1
  74. data/ext/cargo-vendor/bitflags-2.9.0/.cargo_vcs_info.json +6 -0
  75. data/ext/cargo-vendor/bitflags-2.9.0/Cargo.toml.orig +43 -0
  76. data/ext/cargo-vendor/bstr-1.12.0/.cargo-checksum.json +1 -1
  77. data/ext/cargo-vendor/bstr-1.12.0/.cargo_vcs_info.json +6 -0
  78. data/ext/cargo-vendor/bstr-1.12.0/Cargo.toml.orig +76 -0
  79. data/ext/cargo-vendor/cexpr-0.6.0/.cargo-checksum.json +1 -1
  80. data/ext/cargo-vendor/cexpr-0.6.0/.cargo_vcs_info.json +5 -0
  81. data/ext/cargo-vendor/cexpr-0.6.0/.github/workflows/ci.yml +31 -0
  82. data/ext/cargo-vendor/cexpr-0.6.0/Cargo.toml.orig +19 -0
  83. data/ext/cargo-vendor/cfg-if-1.0.0/.cargo-checksum.json +1 -1
  84. data/ext/cargo-vendor/cfg-if-1.0.0/.cargo_vcs_info.json +5 -0
  85. data/ext/cargo-vendor/cfg-if-1.0.0/.github/workflows/main.yml +56 -0
  86. data/ext/cargo-vendor/cfg-if-1.0.0/Cargo.toml.orig +25 -0
  87. data/ext/cargo-vendor/clang-sys-1.8.1/.cargo-checksum.json +1 -1
  88. data/ext/cargo-vendor/clang-sys-1.8.1/.cargo_vcs_info.json +6 -0
  89. data/ext/cargo-vendor/clang-sys-1.8.1/.github/workflows/ci.yml +56 -0
  90. data/ext/cargo-vendor/clang-sys-1.8.1/.github/workflows/ssh.yml +40 -0
  91. data/ext/cargo-vendor/clang-sys-1.8.1/Cargo.toml.orig +67 -0
  92. data/ext/cargo-vendor/clap-4.5.43/.cargo-checksum.json +1 -0
  93. data/ext/cargo-vendor/clap-4.5.43/.cargo_vcs_info.json +6 -0
  94. data/ext/cargo-vendor/clap-4.5.43/Cargo.lock +910 -0
  95. data/ext/cargo-vendor/clap-4.5.43/Cargo.toml +636 -0
  96. data/ext/cargo-vendor/clap-4.5.43/Cargo.toml.orig +538 -0
  97. data/ext/cargo-vendor/clap-4.5.43/LICENSE-MIT +19 -0
  98. data/ext/cargo-vendor/clap-4.5.43/README.md +49 -0
  99. data/ext/cargo-vendor/clap-4.5.43/examples/tutorial_builder/03_04_subcommands.md +62 -0
  100. data/ext/cargo-vendor/clap-4.5.43/examples/tutorial_derive/03_04_subcommands.md +61 -0
  101. data/ext/cargo-vendor/clap-4.5.43/src/_derive/mod.rs +542 -0
  102. data/ext/cargo-vendor/clap-4.5.43/src/_faq.rs +95 -0
  103. data/ext/cargo-vendor/clap-4.5.43/src/bin/stdio-fixture.rs +106 -0
  104. data/ext/cargo-vendor/clap-4.5.43/src/lib.rs +106 -0
  105. data/ext/cargo-vendor/clap_builder-4.5.43/.cargo-checksum.json +1 -0
  106. data/ext/cargo-vendor/clap_builder-4.5.43/.cargo_vcs_info.json +6 -0
  107. data/ext/cargo-vendor/clap_builder-4.5.43/Cargo.lock +450 -0
  108. data/ext/cargo-vendor/clap_builder-4.5.43/Cargo.toml +220 -0
  109. data/ext/cargo-vendor/clap_builder-4.5.43/Cargo.toml.orig +77 -0
  110. data/ext/cargo-vendor/clap_builder-4.5.43/LICENSE-APACHE +202 -0
  111. data/ext/cargo-vendor/clap_builder-4.5.43/LICENSE-MIT +19 -0
  112. data/ext/cargo-vendor/clap_builder-4.5.43/README.md +25 -0
  113. data/ext/cargo-vendor/clap_builder-4.5.43/src/builder/action.rs +461 -0
  114. data/ext/cargo-vendor/clap_builder-4.5.43/src/builder/command.rs +5207 -0
  115. data/ext/cargo-vendor/clap_builder-4.5.43/src/builder/styling.rs +220 -0
  116. data/ext/cargo-vendor/clap_builder-4.5.43/src/error/kind.rs +365 -0
  117. data/ext/cargo-vendor/clap_builder-4.5.43/src/lib.rs +53 -0
  118. data/ext/cargo-vendor/clap_builder-4.5.43/src/macros.rs +605 -0
  119. data/ext/cargo-vendor/clap_builder-4.5.43/src/output/help_template.rs +1188 -0
  120. data/ext/cargo-vendor/clap_builder-4.5.43/src/parser/matches/arg_matches.rs +2097 -0
  121. data/ext/cargo-vendor/clap_derive-4.5.41/.cargo-checksum.json +1 -0
  122. data/ext/cargo-vendor/clap_derive-4.5.41/.cargo_vcs_info.json +6 -0
  123. data/ext/cargo-vendor/clap_derive-4.5.41/Cargo.lock +100 -0
  124. data/ext/cargo-vendor/clap_derive-4.5.41/Cargo.toml +165 -0
  125. data/ext/cargo-vendor/clap_derive-4.5.41/Cargo.toml.orig +49 -0
  126. data/ext/cargo-vendor/clap_derive-4.5.41/LICENSE-APACHE +202 -0
  127. data/ext/cargo-vendor/clap_derive-4.5.41/LICENSE-MIT +19 -0
  128. data/ext/cargo-vendor/clap_derive-4.5.41/README.md +25 -0
  129. data/ext/cargo-vendor/clap_lex-0.7.5/.cargo-checksum.json +1 -0
  130. data/ext/cargo-vendor/clap_lex-0.7.5/.cargo_vcs_info.json +6 -0
  131. data/ext/cargo-vendor/clap_lex-0.7.5/Cargo.lock +56 -0
  132. data/ext/cargo-vendor/clap_lex-0.7.5/Cargo.toml +164 -0
  133. data/ext/cargo-vendor/clap_lex-0.7.5/Cargo.toml.orig +36 -0
  134. data/ext/cargo-vendor/clap_lex-0.7.5/LICENSE-APACHE +202 -0
  135. data/ext/cargo-vendor/clap_lex-0.7.5/LICENSE-MIT +19 -0
  136. data/ext/cargo-vendor/clap_lex-0.7.5/README.md +19 -0
  137. data/ext/cargo-vendor/clap_lex-0.7.5/src/lib.rs +526 -0
  138. data/ext/cargo-vendor/codeowners-0.2.5/.cargo-checksum.json +1 -0
  139. data/ext/cargo-vendor/codeowners-0.2.5/Cargo.lock +1223 -0
  140. data/ext/cargo-vendor/codeowners-0.2.5/Cargo.toml +94 -0
  141. data/ext/cargo-vendor/codeowners-0.2.5/README.md +204 -0
  142. data/ext/cargo-vendor/codeowners-0.2.5/ai-prompts/for-file-optimization.md +21 -0
  143. data/ext/cargo-vendor/codeowners-0.2.5/src/bin/compare_for_file.rs +179 -0
  144. data/ext/cargo-vendor/codeowners-0.2.5/src/cache/file.rs +181 -0
  145. data/ext/cargo-vendor/codeowners-0.2.5/src/ownership/for_file_fast.rs +313 -0
  146. data/ext/cargo-vendor/codeowners-0.2.5/src/ownership/mapper/directory_mapper.rs +175 -0
  147. data/ext/cargo-vendor/codeowners-0.2.5/src/ownership/mapper/package_mapper.rs +220 -0
  148. data/ext/cargo-vendor/codeowners-0.2.5/src/ownership.rs +220 -0
  149. data/ext/cargo-vendor/codeowners-0.2.5/src/project.rs +199 -0
  150. data/ext/cargo-vendor/codeowners-0.2.5/src/project_builder.rs +257 -0
  151. data/ext/cargo-vendor/codeowners-0.2.5/src/runner.rs +349 -0
  152. data/ext/cargo-vendor/codeowners-0.2.5/tests/fixtures/valid_project/.github/CODEOWNERS +37 -0
  153. data/ext/cargo-vendor/codeowners-0.2.5/tests/fixtures/valid_project/config/code_ownership.yml +10 -0
  154. data/ext/cargo-vendor/codeowners-0.2.5/tests/fixtures/valid_project/config/teams/ux.yml +6 -0
  155. data/ext/cargo-vendor/codeowners-0.2.5/tests/fixtures/valid_project/gems/pets/dog.rb +5 -0
  156. data/ext/cargo-vendor/codeowners-0.2.5/tests/fixtures/valid_project/should_be_ignored/an_ignored_file.rb +7 -0
  157. data/ext/cargo-vendor/codeowners-0.2.5/tests/valid_project_test.rs +277 -0
  158. data/ext/cargo-vendor/colorchoice-1.0.4/.cargo-checksum.json +1 -0
  159. data/ext/cargo-vendor/colorchoice-1.0.4/.cargo_vcs_info.json +6 -0
  160. data/ext/cargo-vendor/colorchoice-1.0.4/Cargo.lock +7 -0
  161. data/ext/cargo-vendor/colorchoice-1.0.4/Cargo.toml +163 -0
  162. data/ext/cargo-vendor/colorchoice-1.0.4/Cargo.toml.orig +27 -0
  163. data/ext/cargo-vendor/colorchoice-1.0.4/LICENSE-APACHE +202 -0
  164. data/ext/cargo-vendor/colorchoice-1.0.4/LICENSE-MIT +19 -0
  165. data/ext/cargo-vendor/colorchoice-1.0.4/README.md +34 -0
  166. data/ext/cargo-vendor/colorchoice-1.0.4/src/lib.rs +120 -0
  167. data/ext/cargo-vendor/crossbeam-deque-0.8.6/.cargo-checksum.json +1 -1
  168. data/ext/cargo-vendor/crossbeam-deque-0.8.6/.cargo_vcs_info.json +6 -0
  169. data/ext/cargo-vendor/crossbeam-deque-0.8.6/Cargo.toml.orig +34 -0
  170. data/ext/cargo-vendor/crossbeam-epoch-0.9.18/.cargo-checksum.json +1 -1
  171. data/ext/cargo-vendor/crossbeam-epoch-0.9.18/.cargo_vcs_info.json +6 -0
  172. data/ext/cargo-vendor/crossbeam-epoch-0.9.18/Cargo.toml.orig +56 -0
  173. data/ext/cargo-vendor/crossbeam-utils-0.8.21/.cargo-checksum.json +1 -1
  174. data/ext/cargo-vendor/crossbeam-utils-0.8.21/.cargo_vcs_info.json +6 -0
  175. data/ext/cargo-vendor/crossbeam-utils-0.8.21/Cargo.toml.orig +46 -0
  176. data/ext/cargo-vendor/either-1.15.0/.cargo-checksum.json +1 -1
  177. data/ext/cargo-vendor/either-1.15.0/.cargo_vcs_info.json +6 -0
  178. data/ext/cargo-vendor/either-1.15.0/.github/workflows/ci.yml +83 -0
  179. data/ext/cargo-vendor/either-1.15.0/Cargo.toml.orig +40 -0
  180. data/ext/cargo-vendor/enum_dispatch-0.3.13/.cargo-checksum.json +1 -1
  181. data/ext/cargo-vendor/enum_dispatch-0.3.13/.cargo_vcs_info.json +6 -0
  182. data/ext/cargo-vendor/enum_dispatch-0.3.13/Cargo.toml.orig +29 -0
  183. data/ext/cargo-vendor/equivalent-1.0.2/.cargo-checksum.json +1 -1
  184. data/ext/cargo-vendor/equivalent-1.0.2/.cargo_vcs_info.json +6 -0
  185. data/ext/cargo-vendor/equivalent-1.0.2/.github/workflows/ci.yml +48 -0
  186. data/ext/cargo-vendor/equivalent-1.0.2/Cargo.toml.orig +9 -0
  187. data/ext/cargo-vendor/errno-0.3.13/.cargo-checksum.json +1 -0
  188. data/ext/cargo-vendor/errno-0.3.13/.cargo_vcs_info.json +6 -0
  189. data/ext/cargo-vendor/errno-0.3.13/.github/dependabot.yml +10 -0
  190. data/ext/cargo-vendor/errno-0.3.13/.github/workflows/main.yml +89 -0
  191. data/ext/cargo-vendor/errno-0.3.13/CHANGELOG.md +132 -0
  192. data/ext/cargo-vendor/errno-0.3.13/Cargo.lock +90 -0
  193. data/ext/cargo-vendor/errno-0.3.13/Cargo.toml +67 -0
  194. data/ext/cargo-vendor/errno-0.3.13/Cargo.toml.orig +39 -0
  195. data/ext/cargo-vendor/errno-0.3.13/src/sys.rs +35 -0
  196. data/ext/cargo-vendor/error-stack-0.5.0/.cargo-checksum.json +1 -1
  197. data/ext/cargo-vendor/error-stack-0.5.0/.cargo_vcs_info.json +6 -0
  198. data/ext/cargo-vendor/error-stack-0.5.0/.justfile +58 -0
  199. data/ext/cargo-vendor/error-stack-0.5.0/Cargo.toml.orig +87 -0
  200. data/ext/cargo-vendor/fast-glob-1.0.0/.cargo-checksum.json +1 -0
  201. data/ext/cargo-vendor/fast-glob-1.0.0/.cargo_vcs_info.json +6 -0
  202. data/ext/cargo-vendor/fast-glob-1.0.0/Cargo.lock +640 -0
  203. data/ext/cargo-vendor/fast-glob-1.0.0/Cargo.toml +64 -0
  204. data/ext/cargo-vendor/fast-glob-1.0.0/Cargo.toml.orig +35 -0
  205. data/ext/cargo-vendor/fast-glob-1.0.0/README.md +85 -0
  206. data/ext/cargo-vendor/fastrand-2.3.0/.cargo-checksum.json +1 -1
  207. data/ext/cargo-vendor/fastrand-2.3.0/.cargo_vcs_info.json +6 -0
  208. data/ext/cargo-vendor/fastrand-2.3.0/Cargo.toml.orig +37 -0
  209. data/ext/cargo-vendor/getrandom-0.2.16/.cargo-checksum.json +1 -1
  210. data/ext/cargo-vendor/getrandom-0.2.16/.cargo_vcs_info.json +6 -0
  211. data/ext/cargo-vendor/getrandom-0.2.16/Cargo.toml.orig +67 -0
  212. data/ext/cargo-vendor/getrandom-0.3.3/.cargo-checksum.json +1 -0
  213. data/ext/cargo-vendor/getrandom-0.3.3/.cargo_vcs_info.json +6 -0
  214. data/ext/cargo-vendor/getrandom-0.3.3/CHANGELOG.md +628 -0
  215. data/ext/cargo-vendor/getrandom-0.3.3/Cargo.lock +365 -0
  216. data/ext/cargo-vendor/getrandom-0.3.3/Cargo.toml +147 -0
  217. data/ext/cargo-vendor/getrandom-0.3.3/Cargo.toml.orig +107 -0
  218. data/ext/cargo-vendor/getrandom-0.3.3/README.md +390 -0
  219. data/ext/cargo-vendor/getrandom-0.3.3/src/backends/wasi_p1.rs +32 -0
  220. data/ext/cargo-vendor/getrandom-0.3.3/src/backends.rs +181 -0
  221. data/ext/cargo-vendor/glob-0.3.2/.cargo-checksum.json +1 -1
  222. data/ext/cargo-vendor/glob-0.3.2/.cargo_vcs_info.json +6 -0
  223. data/ext/cargo-vendor/glob-0.3.2/.github/dependabot.yml +13 -0
  224. data/ext/cargo-vendor/glob-0.3.2/.github/workflows/publish.yml +27 -0
  225. data/ext/cargo-vendor/glob-0.3.2/.github/workflows/rust.yml +65 -0
  226. data/ext/cargo-vendor/glob-0.3.2/Cargo.toml.orig +19 -0
  227. data/ext/cargo-vendor/globset-0.4.16/.cargo-checksum.json +1 -1
  228. data/ext/cargo-vendor/globset-0.4.16/.cargo_vcs_info.json +6 -0
  229. data/ext/cargo-vendor/globset-0.4.16/Cargo.toml.orig +47 -0
  230. data/ext/cargo-vendor/hashbrown-0.12.3/.cargo-checksum.json +1 -1
  231. data/ext/cargo-vendor/hashbrown-0.12.3/.cargo_vcs_info.json +6 -0
  232. data/ext/cargo-vendor/hashbrown-0.12.3/Cargo.toml.orig +60 -0
  233. data/ext/cargo-vendor/hashbrown-0.15.5/.cargo-checksum.json +1 -0
  234. data/ext/cargo-vendor/hashbrown-0.15.5/.cargo_vcs_info.json +6 -0
  235. data/ext/cargo-vendor/hashbrown-0.15.5/CHANGELOG.md +619 -0
  236. data/ext/cargo-vendor/hashbrown-0.15.5/Cargo.lock +306 -0
  237. data/ext/cargo-vendor/hashbrown-0.15.5/Cargo.toml +164 -0
  238. data/ext/cargo-vendor/hashbrown-0.15.5/Cargo.toml.orig +77 -0
  239. data/ext/cargo-vendor/hashbrown-0.15.5/Cross.toml +3 -0
  240. data/ext/cargo-vendor/hashbrown-0.15.5/README.md +80 -0
  241. data/ext/cargo-vendor/hashbrown-0.15.5/benches/bench.rs +329 -0
  242. data/ext/cargo-vendor/hashbrown-0.15.5/src/control/group/lsx.rs +137 -0
  243. data/ext/cargo-vendor/hashbrown-0.15.5/src/control/group/mod.rs +43 -0
  244. data/ext/cargo-vendor/hashbrown-0.15.5/src/external_trait_impls/serde.rs +220 -0
  245. data/ext/cargo-vendor/hashbrown-0.15.5/src/lib.rs +188 -0
  246. data/ext/cargo-vendor/hashbrown-0.15.5/src/map.rs +6583 -0
  247. data/ext/cargo-vendor/hashbrown-0.15.5/src/raw/alloc.rs +92 -0
  248. data/ext/cargo-vendor/hashbrown-0.15.5/src/raw/mod.rs +4436 -0
  249. data/ext/cargo-vendor/hashbrown-0.15.5/src/rustc_entry.rs +567 -0
  250. data/ext/cargo-vendor/hashbrown-0.15.5/src/set.rs +3121 -0
  251. data/ext/cargo-vendor/hashbrown-0.15.5/src/table.rs +2380 -0
  252. data/ext/cargo-vendor/hashbrown-0.15.5/src/util.rs +38 -0
  253. data/ext/cargo-vendor/hashbrown-0.15.5/tests/set.rs +34 -0
  254. data/ext/cargo-vendor/heck-0.5.0/.cargo-checksum.json +1 -1
  255. data/ext/cargo-vendor/heck-0.5.0/.cargo_vcs_info.json +6 -0
  256. data/ext/cargo-vendor/heck-0.5.0/Cargo.toml.orig +11 -0
  257. data/ext/cargo-vendor/ignore-0.4.23/.cargo-checksum.json +1 -1
  258. data/ext/cargo-vendor/ignore-0.4.23/.cargo_vcs_info.json +6 -0
  259. data/ext/cargo-vendor/ignore-0.4.23/Cargo.toml.orig +44 -0
  260. data/ext/cargo-vendor/indexmap-2.10.0/.cargo-checksum.json +1 -0
  261. data/ext/cargo-vendor/indexmap-2.10.0/.cargo_vcs_info.json +6 -0
  262. data/ext/cargo-vendor/indexmap-2.10.0/.github/workflows/ci.yml +159 -0
  263. data/ext/cargo-vendor/indexmap-2.10.0/.rustfmt.toml +1 -0
  264. data/ext/cargo-vendor/indexmap-2.10.0/Cargo.lock +236 -0
  265. data/ext/cargo-vendor/indexmap-2.10.0/Cargo.toml +142 -0
  266. data/ext/cargo-vendor/indexmap-2.10.0/Cargo.toml.orig +61 -0
  267. data/ext/cargo-vendor/indexmap-2.10.0/RELEASES.md +563 -0
  268. data/ext/cargo-vendor/indexmap-2.10.0/benches/bench.rs +750 -0
  269. data/ext/cargo-vendor/indexmap-2.10.0/benches/faststring.rs +181 -0
  270. data/ext/cargo-vendor/indexmap-2.10.0/src/lib.rs +288 -0
  271. data/ext/cargo-vendor/indexmap-2.10.0/src/map/core/entry.rs +574 -0
  272. data/ext/cargo-vendor/indexmap-2.10.0/src/map/core/extract.rs +108 -0
  273. data/ext/cargo-vendor/indexmap-2.10.0/src/map/core/raw_entry_v1.rs +669 -0
  274. data/ext/cargo-vendor/indexmap-2.10.0/src/map/core.rs +735 -0
  275. data/ext/cargo-vendor/indexmap-2.10.0/src/map/iter.rs +830 -0
  276. data/ext/cargo-vendor/indexmap-2.10.0/src/map/mutable.rs +165 -0
  277. data/ext/cargo-vendor/indexmap-2.10.0/src/map/slice.rs +751 -0
  278. data/ext/cargo-vendor/indexmap-2.10.0/src/map/tests.rs +1228 -0
  279. data/ext/cargo-vendor/indexmap-2.10.0/src/map.rs +1697 -0
  280. data/ext/cargo-vendor/indexmap-2.10.0/src/rayon/map.rs +662 -0
  281. data/ext/cargo-vendor/indexmap-2.10.0/src/rayon/mod.rs +15 -0
  282. data/ext/cargo-vendor/indexmap-2.10.0/src/rayon/set.rs +755 -0
  283. data/ext/cargo-vendor/indexmap-2.10.0/src/set/iter.rs +681 -0
  284. data/ext/cargo-vendor/indexmap-2.10.0/src/set/slice.rs +380 -0
  285. data/ext/cargo-vendor/indexmap-2.10.0/src/set/tests.rs +999 -0
  286. data/ext/cargo-vendor/indexmap-2.10.0/src/set.rs +1340 -0
  287. data/ext/cargo-vendor/indexmap-2.10.0/tests/quick.rs +800 -0
  288. data/ext/cargo-vendor/is_terminal_polyfill-1.70.1/.cargo-checksum.json +1 -1
  289. data/ext/cargo-vendor/is_terminal_polyfill-1.70.1/.cargo_vcs_info.json +6 -0
  290. data/ext/cargo-vendor/is_terminal_polyfill-1.70.1/Cargo.toml.orig +107 -0
  291. data/ext/cargo-vendor/itertools-0.12.1/.cargo-checksum.json +1 -1
  292. data/ext/cargo-vendor/itertools-0.12.1/.cargo_vcs_info.json +6 -0
  293. data/ext/cargo-vendor/itertools-0.12.1/.codecov.yml +7 -0
  294. data/ext/cargo-vendor/itertools-0.12.1/.github/dependabot.yml +6 -0
  295. data/ext/cargo-vendor/itertools-0.12.1/.github/workflows/ci.yml +85 -0
  296. data/ext/cargo-vendor/itertools-0.12.1/.github/workflows/coverage.yml +34 -0
  297. data/ext/cargo-vendor/itertools-0.12.1/Cargo.toml.orig +77 -0
  298. data/ext/cargo-vendor/itertools-0.14.0/.cargo-checksum.json +1 -1
  299. data/ext/cargo-vendor/itertools-0.14.0/.cargo_vcs_info.json +6 -0
  300. data/ext/cargo-vendor/itertools-0.14.0/.codecov.yml +7 -0
  301. data/ext/cargo-vendor/itertools-0.14.0/.github/dependabot.yml +6 -0
  302. data/ext/cargo-vendor/itertools-0.14.0/.github/workflows/ci.yml +101 -0
  303. data/ext/cargo-vendor/itertools-0.14.0/.github/workflows/coverage.yml +34 -0
  304. data/ext/cargo-vendor/itertools-0.14.0/Cargo.toml.orig +81 -0
  305. data/ext/cargo-vendor/itoa-1.0.15/.cargo-checksum.json +1 -1
  306. data/ext/cargo-vendor/itoa-1.0.15/.cargo_vcs_info.json +6 -0
  307. data/ext/cargo-vendor/itoa-1.0.15/.github/FUNDING.yml +1 -0
  308. data/ext/cargo-vendor/itoa-1.0.15/.github/workflows/ci.yml +114 -0
  309. data/ext/cargo-vendor/itoa-1.0.15/Cargo.toml.orig +25 -0
  310. data/ext/cargo-vendor/lazy_static-1.5.0/.cargo-checksum.json +1 -1
  311. data/ext/cargo-vendor/lazy_static-1.5.0/.cargo_vcs_info.json +6 -0
  312. data/ext/cargo-vendor/lazy_static-1.5.0/Cargo.toml.orig +28 -0
  313. data/ext/cargo-vendor/lazycell-1.3.0/.cargo-checksum.json +1 -1
  314. data/ext/cargo-vendor/lazycell-1.3.0/.cargo_vcs_info.json +5 -0
  315. data/ext/cargo-vendor/lazycell-1.3.0/Cargo.toml.orig +27 -0
  316. data/ext/cargo-vendor/libc-0.2.172/.cargo-checksum.json +1 -1
  317. data/ext/cargo-vendor/libc-0.2.172/.cargo_vcs_info.json +6 -0
  318. data/ext/cargo-vendor/libc-0.2.172/.git-blame-ignore-revs +6 -0
  319. data/ext/cargo-vendor/libc-0.2.172/.release-plz.toml +49 -0
  320. data/ext/cargo-vendor/libc-0.2.172/Cargo.toml.orig +157 -0
  321. data/ext/cargo-vendor/libloading-0.8.6/.cargo-checksum.json +1 -1
  322. data/ext/cargo-vendor/libloading-0.8.6/.cargo_vcs_info.json +6 -0
  323. data/ext/cargo-vendor/libloading-0.8.6/.github/workflows/libloading.yml +107 -0
  324. data/ext/cargo-vendor/libloading-0.8.6/Cargo.toml.orig +37 -0
  325. data/ext/cargo-vendor/linux-raw-sys-0.9.4/.cargo-checksum.json +1 -1
  326. data/ext/cargo-vendor/linux-raw-sys-0.9.4/.cargo_vcs_info.json +6 -0
  327. data/ext/cargo-vendor/linux-raw-sys-0.9.4/Cargo.toml.orig +59 -0
  328. data/ext/cargo-vendor/log-0.4.27/.cargo-checksum.json +1 -1
  329. data/ext/cargo-vendor/log-0.4.27/.cargo_vcs_info.json +6 -0
  330. data/ext/cargo-vendor/log-0.4.27/.github/workflows/main.yml +146 -0
  331. data/ext/cargo-vendor/log-0.4.27/Cargo.toml.orig +81 -0
  332. data/ext/cargo-vendor/lru-0.7.8/.cargo-checksum.json +1 -1
  333. data/ext/cargo-vendor/lru-0.7.8/.cargo_vcs_info.json +6 -0
  334. data/ext/cargo-vendor/lru-0.7.8/.github/workflows/main.yml +54 -0
  335. data/ext/cargo-vendor/lru-0.7.8/Cargo.toml.orig +22 -0
  336. data/ext/cargo-vendor/magnus-0.7.1/.cargo/config.toml +7 -0
  337. data/ext/cargo-vendor/magnus-0.7.1/.cargo-checksum.json +1 -1
  338. data/ext/cargo-vendor/magnus-0.7.1/.cargo_vcs_info.json +6 -0
  339. data/ext/cargo-vendor/magnus-0.7.1/Cargo.toml.orig +74 -0
  340. data/ext/cargo-vendor/magnus-macros-0.6.0/.cargo-checksum.json +1 -1
  341. data/ext/cargo-vendor/magnus-macros-0.6.0/.cargo_vcs_info.json +6 -0
  342. data/ext/cargo-vendor/magnus-macros-0.6.0/Cargo.toml.orig +19 -0
  343. data/ext/cargo-vendor/matchers-0.1.0/.cargo-checksum.json +1 -1
  344. data/ext/cargo-vendor/matchers-0.1.0/.cargo_vcs_info.json +5 -0
  345. data/ext/cargo-vendor/matchers-0.1.0/.clog.toml +24 -0
  346. data/ext/cargo-vendor/matchers-0.1.0/.github/workflows/ci.yml +85 -0
  347. data/ext/cargo-vendor/matchers-0.1.0/Cargo.toml.orig +21 -0
  348. data/ext/cargo-vendor/memchr-2.7.4/.cargo-checksum.json +1 -1
  349. data/ext/cargo-vendor/memchr-2.7.4/.cargo_vcs_info.json +6 -0
  350. data/ext/cargo-vendor/memchr-2.7.4/.ignore +1 -0
  351. data/ext/cargo-vendor/memchr-2.7.4/.vim/coc-settings.json +16 -0
  352. data/ext/cargo-vendor/memchr-2.7.4/Cargo.toml.orig +79 -0
  353. data/ext/cargo-vendor/memoize-0.5.1/.cargo-checksum.json +1 -1
  354. data/ext/cargo-vendor/memoize-0.5.1/.cargo_vcs_info.json +6 -0
  355. data/ext/cargo-vendor/memoize-0.5.1/.github/workflows/test.yml +20 -0
  356. data/ext/cargo-vendor/memoize-0.5.1/.hgignore +2 -0
  357. data/ext/cargo-vendor/memoize-0.5.1/.hgtags +12 -0
  358. data/ext/cargo-vendor/memoize-0.5.1/Cargo.toml.orig +29 -0
  359. data/ext/cargo-vendor/memoize-inner-0.5.1/.cargo-checksum.json +1 -1
  360. data/ext/cargo-vendor/memoize-inner-0.5.1/.cargo_vcs_info.json +6 -0
  361. data/ext/cargo-vendor/memoize-inner-0.5.1/Cargo.toml.orig +24 -0
  362. data/ext/cargo-vendor/minimal-lexical-0.2.1/.cargo-checksum.json +1 -1
  363. data/ext/cargo-vendor/minimal-lexical-0.2.1/.cargo_vcs_info.json +5 -0
  364. data/ext/cargo-vendor/minimal-lexical-0.2.1/.github/ISSUE_TEMPLATE/bug_report.md +41 -0
  365. data/ext/cargo-vendor/minimal-lexical-0.2.1/.github/ISSUE_TEMPLATE/custom.md +21 -0
  366. data/ext/cargo-vendor/minimal-lexical-0.2.1/.github/ISSUE_TEMPLATE/documentation.md +16 -0
  367. data/ext/cargo-vendor/minimal-lexical-0.2.1/.github/ISSUE_TEMPLATE/feature_request.md +27 -0
  368. data/ext/cargo-vendor/minimal-lexical-0.2.1/.github/ISSUE_TEMPLATE/question.md +11 -0
  369. data/ext/cargo-vendor/minimal-lexical-0.2.1/.github/PULL_REQUEST_TEMPLATE/bug_fix.md +27 -0
  370. data/ext/cargo-vendor/minimal-lexical-0.2.1/.github/PULL_REQUEST_TEMPLATE/custom.md +22 -0
  371. data/ext/cargo-vendor/minimal-lexical-0.2.1/.github/PULL_REQUEST_TEMPLATE/documentation.md +21 -0
  372. data/ext/cargo-vendor/minimal-lexical-0.2.1/.github/workflows/Cross.yml +90 -0
  373. data/ext/cargo-vendor/minimal-lexical-0.2.1/.github/workflows/Features.yml +23 -0
  374. data/ext/cargo-vendor/minimal-lexical-0.2.1/.github/workflows/OSX.yml +40 -0
  375. data/ext/cargo-vendor/minimal-lexical-0.2.1/.github/workflows/Simple.yml +41 -0
  376. data/ext/cargo-vendor/minimal-lexical-0.2.1/.github/workflows/Valgrind.yml +24 -0
  377. data/ext/cargo-vendor/minimal-lexical-0.2.1/.gitmodules +4 -0
  378. data/ext/cargo-vendor/minimal-lexical-0.2.1/Cargo.toml.orig +37 -0
  379. data/ext/cargo-vendor/nom-7.1.3/.cargo-checksum.json +1 -1
  380. data/ext/cargo-vendor/nom-7.1.3/.cargo_vcs_info.json +6 -0
  381. data/ext/cargo-vendor/nom-7.1.3/Cargo.toml.orig +142 -0
  382. data/ext/cargo-vendor/nu-ansi-term-0.46.0/.cargo-checksum.json +1 -1
  383. data/ext/cargo-vendor/nu-ansi-term-0.46.0/.cargo_vcs_info.json +6 -0
  384. data/ext/cargo-vendor/nu-ansi-term-0.46.0/.github/workflows/ci.yml +39 -0
  385. data/ext/cargo-vendor/nu-ansi-term-0.46.0/Cargo.toml.orig +34 -0
  386. data/ext/cargo-vendor/once_cell-1.21.3/.cargo-checksum.json +1 -1
  387. data/ext/cargo-vendor/once_cell-1.21.3/.cargo_vcs_info.json +6 -0
  388. data/ext/cargo-vendor/once_cell-1.21.3/.github/workflows/ci.yaml +28 -0
  389. data/ext/cargo-vendor/once_cell-1.21.3/Cargo.toml.orig +92 -0
  390. data/ext/cargo-vendor/once_cell_polyfill-1.70.1/.cargo-checksum.json +1 -0
  391. data/ext/cargo-vendor/once_cell_polyfill-1.70.1/.cargo_vcs_info.json +6 -0
  392. data/ext/cargo-vendor/once_cell_polyfill-1.70.1/Cargo.lock +7 -0
  393. data/ext/cargo-vendor/once_cell_polyfill-1.70.1/Cargo.toml +163 -0
  394. data/ext/cargo-vendor/once_cell_polyfill-1.70.1/Cargo.toml.orig +121 -0
  395. data/ext/cargo-vendor/once_cell_polyfill-1.70.1/LICENSE-APACHE +202 -0
  396. data/ext/cargo-vendor/once_cell_polyfill-1.70.1/LICENSE-MIT +19 -0
  397. data/ext/cargo-vendor/once_cell_polyfill-1.70.1/README.md +26 -0
  398. data/ext/cargo-vendor/once_cell_polyfill-1.70.1/src/lib.rs +11 -0
  399. data/ext/cargo-vendor/once_cell_polyfill-1.70.1/src/sync/mod.rs +41 -0
  400. data/ext/cargo-vendor/overload-0.1.1/.cargo-checksum.json +1 -1
  401. data/ext/cargo-vendor/overload-0.1.1/.cargo_vcs_info.json +5 -0
  402. data/ext/cargo-vendor/overload-0.1.1/Cargo.toml.orig +10 -0
  403. data/ext/cargo-vendor/path-clean-1.0.1/.cargo-checksum.json +1 -1
  404. data/ext/cargo-vendor/path-clean-1.0.1/.cargo_vcs_info.json +6 -0
  405. data/ext/cargo-vendor/path-clean-1.0.1/.github/workflows/ci.yml +65 -0
  406. data/ext/cargo-vendor/path-clean-1.0.1/Cargo.toml.orig +20 -0
  407. data/ext/cargo-vendor/pin-project-lite-0.2.16/.cargo-checksum.json +1 -1
  408. data/ext/cargo-vendor/pin-project-lite-0.2.16/.cargo_vcs_info.json +6 -0
  409. data/ext/cargo-vendor/pin-project-lite-0.2.16/Cargo.toml.orig +89 -0
  410. data/ext/cargo-vendor/pin-project-lite-0.2.16/tests/expand/.rustfmt.toml +1 -0
  411. data/ext/cargo-vendor/proc-macro2-1.0.95/.cargo-checksum.json +1 -1
  412. data/ext/cargo-vendor/proc-macro2-1.0.95/.cargo_vcs_info.json +6 -0
  413. data/ext/cargo-vendor/proc-macro2-1.0.95/.github/FUNDING.yml +1 -0
  414. data/ext/cargo-vendor/proc-macro2-1.0.95/.github/workflows/ci.yml +228 -0
  415. data/ext/cargo-vendor/proc-macro2-1.0.95/Cargo.toml.orig +66 -0
  416. data/ext/cargo-vendor/quote-1.0.40/.cargo-checksum.json +1 -1
  417. data/ext/cargo-vendor/quote-1.0.40/.cargo_vcs_info.json +6 -0
  418. data/ext/cargo-vendor/quote-1.0.40/.github/FUNDING.yml +1 -0
  419. data/ext/cargo-vendor/quote-1.0.40/.github/workflows/ci.yml +110 -0
  420. data/ext/cargo-vendor/quote-1.0.40/Cargo.toml.orig +38 -0
  421. data/ext/cargo-vendor/r-efi-5.3.0/.cargo-checksum.json +1 -0
  422. data/ext/cargo-vendor/r-efi-5.3.0/.cargo_vcs_info.json +6 -0
  423. data/ext/cargo-vendor/r-efi-5.3.0/.github/workflows/publish.yml +39 -0
  424. data/ext/cargo-vendor/r-efi-5.3.0/.github/workflows/rust-tests.yml +125 -0
  425. data/ext/cargo-vendor/r-efi-5.3.0/AUTHORS +74 -0
  426. data/ext/cargo-vendor/r-efi-5.3.0/Cargo.lock +16 -0
  427. data/ext/cargo-vendor/r-efi-5.3.0/Cargo.toml +70 -0
  428. data/ext/cargo-vendor/r-efi-5.3.0/Cargo.toml.orig +51 -0
  429. data/ext/cargo-vendor/r-efi-5.3.0/NEWS.md +301 -0
  430. data/ext/cargo-vendor/rayon-1.10.0/.cargo-checksum.json +1 -1
  431. data/ext/cargo-vendor/rayon-1.10.0/.cargo_vcs_info.json +6 -0
  432. data/ext/cargo-vendor/rayon-1.10.0/Cargo.toml.orig +39 -0
  433. data/ext/cargo-vendor/rayon-core-1.12.1/.cargo-checksum.json +1 -1
  434. data/ext/cargo-vendor/rayon-core-1.12.1/.cargo_vcs_info.json +6 -0
  435. data/ext/cargo-vendor/rayon-core-1.12.1/Cargo.toml.orig +68 -0
  436. data/ext/cargo-vendor/rb-sys-0.9.117/.cargo-checksum.json +1 -0
  437. data/ext/cargo-vendor/rb-sys-0.9.117/.cargo_vcs_info.json +6 -0
  438. data/ext/cargo-vendor/rb-sys-0.9.117/Cargo.lock +393 -0
  439. data/ext/cargo-vendor/rb-sys-0.9.117/Cargo.toml +70 -0
  440. data/ext/cargo-vendor/rb-sys-0.9.117/Cargo.toml.orig +57 -0
  441. data/ext/cargo-vendor/rb-sys-0.9.117/readme.md +36 -0
  442. data/ext/cargo-vendor/rb-sys-0.9.117/src/macros.rs +371 -0
  443. data/ext/cargo-vendor/rb-sys-0.9.117/src/stable_api/compiled.c +179 -0
  444. data/ext/cargo-vendor/rb-sys-0.9.117/src/stable_api/compiled.rs +257 -0
  445. data/ext/cargo-vendor/rb-sys-0.9.117/src/stable_api/ruby_2_6.rs +324 -0
  446. data/ext/cargo-vendor/rb-sys-0.9.117/src/stable_api/ruby_2_7.rs +324 -0
  447. data/ext/cargo-vendor/rb-sys-0.9.117/src/stable_api/ruby_3_0.rs +332 -0
  448. data/ext/cargo-vendor/rb-sys-0.9.117/src/stable_api/ruby_3_1.rs +325 -0
  449. data/ext/cargo-vendor/rb-sys-0.9.117/src/stable_api/ruby_3_2.rs +323 -0
  450. data/ext/cargo-vendor/rb-sys-0.9.117/src/stable_api/ruby_3_3.rs +339 -0
  451. data/ext/cargo-vendor/rb-sys-0.9.117/src/stable_api/ruby_3_4.rs +339 -0
  452. data/ext/cargo-vendor/rb-sys-0.9.117/src/stable_api.rs +261 -0
  453. data/ext/cargo-vendor/rb-sys-0.9.117/src/utils.rs +89 -0
  454. data/ext/cargo-vendor/rb-sys-build-0.9.117/.cargo-checksum.json +1 -0
  455. data/ext/cargo-vendor/rb-sys-build-0.9.117/.cargo_vcs_info.json +6 -0
  456. data/ext/cargo-vendor/rb-sys-build-0.9.117/Cargo.lock +294 -0
  457. data/ext/cargo-vendor/rb-sys-build-0.9.117/Cargo.toml +71 -0
  458. data/ext/cargo-vendor/rb-sys-build-0.9.117/Cargo.toml.orig +32 -0
  459. data/ext/cargo-vendor/rb-sys-build-0.9.117/src/bindings/stable_api.rs +206 -0
  460. data/ext/cargo-vendor/rb-sys-build-0.9.117/src/bindings.rs +286 -0
  461. data/ext/cargo-vendor/rb-sys-build-0.9.117/src/cc.rs +421 -0
  462. data/ext/cargo-vendor/rb-sys-env-0.1.2/.cargo-checksum.json +1 -1
  463. data/ext/cargo-vendor/rb-sys-env-0.1.2/.cargo_vcs_info.json +6 -0
  464. data/ext/cargo-vendor/rb-sys-env-0.1.2/Cargo.toml.orig +14 -0
  465. data/ext/cargo-vendor/rb-sys-env-0.2.2/.cargo-checksum.json +1 -1
  466. data/ext/cargo-vendor/rb-sys-env-0.2.2/.cargo_vcs_info.json +6 -0
  467. data/ext/cargo-vendor/rb-sys-env-0.2.2/Cargo.toml.orig +14 -0
  468. data/ext/cargo-vendor/regex-1.11.1/.cargo-checksum.json +1 -1
  469. data/ext/cargo-vendor/regex-1.11.1/.cargo_vcs_info.json +6 -0
  470. data/ext/cargo-vendor/regex-1.11.1/.vim/coc-settings.json +6 -0
  471. data/ext/cargo-vendor/regex-1.11.1/Cargo.toml.orig +261 -0
  472. data/ext/cargo-vendor/regex-1.11.1/record/old-bench-log/.gitignore +1 -0
  473. data/ext/cargo-vendor/regex-automata-0.1.10/.cargo-checksum.json +1 -1
  474. data/ext/cargo-vendor/regex-automata-0.1.10/.cargo_vcs_info.json +5 -0
  475. data/ext/cargo-vendor/regex-automata-0.1.10/.github/workflows/ci.yml +158 -0
  476. data/ext/cargo-vendor/regex-automata-0.1.10/Cargo.toml.orig +75 -0
  477. data/ext/cargo-vendor/regex-automata-0.4.9/.cargo-checksum.json +1 -1
  478. data/ext/cargo-vendor/regex-automata-0.4.9/.cargo_vcs_info.json +6 -0
  479. data/ext/cargo-vendor/regex-automata-0.4.9/Cargo.toml.orig +110 -0
  480. data/ext/cargo-vendor/regex-syntax-0.6.29/.cargo-checksum.json +1 -1
  481. data/ext/cargo-vendor/regex-syntax-0.6.29/.cargo_vcs_info.json +6 -0
  482. data/ext/cargo-vendor/regex-syntax-0.6.29/Cargo.toml.orig +33 -0
  483. data/ext/cargo-vendor/regex-syntax-0.8.5/.cargo-checksum.json +1 -1
  484. data/ext/cargo-vendor/regex-syntax-0.8.5/.cargo_vcs_info.json +6 -0
  485. data/ext/cargo-vendor/regex-syntax-0.8.5/Cargo.toml.orig +51 -0
  486. data/ext/cargo-vendor/rustc-hash-1.1.0/.cargo-checksum.json +1 -1
  487. data/ext/cargo-vendor/rustc-hash-1.1.0/.cargo_vcs_info.json +5 -0
  488. data/ext/cargo-vendor/rustc-hash-1.1.0/Cargo.toml.orig +13 -0
  489. data/ext/cargo-vendor/rustc_version-0.4.1/.cargo-checksum.json +1 -1
  490. data/ext/cargo-vendor/rustc_version-0.4.1/.cargo_vcs_info.json +6 -0
  491. data/ext/cargo-vendor/rustc_version-0.4.1/.github/FUNDING.yml +2 -0
  492. data/ext/cargo-vendor/rustc_version-0.4.1/.github/dependabot.yml +12 -0
  493. data/ext/cargo-vendor/rustc_version-0.4.1/.github/workflows/rust.yml +70 -0
  494. data/ext/cargo-vendor/rustc_version-0.4.1/Cargo.toml.orig +17 -0
  495. data/ext/cargo-vendor/rustix-1.0.8/.cargo-checksum.json +1 -0
  496. data/ext/cargo-vendor/rustix-1.0.8/.cargo_vcs_info.json +6 -0
  497. data/ext/cargo-vendor/rustix-1.0.8/Cargo.lock +1105 -0
  498. data/ext/cargo-vendor/rustix-1.0.8/Cargo.toml +284 -0
  499. data/ext/cargo-vendor/rustix-1.0.8/Cargo.toml.orig +274 -0
  500. data/ext/cargo-vendor/rustix-1.0.8/src/backend/libc/fs/syscalls.rs +2721 -0
  501. data/ext/cargo-vendor/rustix-1.0.8/src/backend/libc/io/syscalls.rs +303 -0
  502. data/ext/cargo-vendor/rustix-1.0.8/src/backend/libc/net/sockopt.rs +1338 -0
  503. data/ext/cargo-vendor/rustix-1.0.8/src/backend/libc/thread/syscalls.rs +780 -0
  504. data/ext/cargo-vendor/rustix-1.0.8/src/backend/linux_raw/arch/aarch64.rs +269 -0
  505. data/ext/cargo-vendor/rustix-1.0.8/src/backend/linux_raw/arch/arm.rs +266 -0
  506. data/ext/cargo-vendor/rustix-1.0.8/src/backend/linux_raw/arch/mips.rs +544 -0
  507. data/ext/cargo-vendor/rustix-1.0.8/src/backend/linux_raw/arch/mips32r6.rs +544 -0
  508. data/ext/cargo-vendor/rustix-1.0.8/src/backend/linux_raw/arch/mips64.rs +467 -0
  509. data/ext/cargo-vendor/rustix-1.0.8/src/backend/linux_raw/arch/mips64r6.rs +471 -0
  510. data/ext/cargo-vendor/rustix-1.0.8/src/backend/linux_raw/arch/powerpc.rs +414 -0
  511. data/ext/cargo-vendor/rustix-1.0.8/src/backend/linux_raw/arch/powerpc64.rs +414 -0
  512. data/ext/cargo-vendor/rustix-1.0.8/src/backend/linux_raw/arch/riscv64.rs +266 -0
  513. data/ext/cargo-vendor/rustix-1.0.8/src/backend/linux_raw/arch/s390x.rs +288 -0
  514. data/ext/cargo-vendor/rustix-1.0.8/src/backend/linux_raw/arch/thumb.rs +323 -0
  515. data/ext/cargo-vendor/rustix-1.0.8/src/backend/linux_raw/arch/x86.rs +492 -0
  516. data/ext/cargo-vendor/rustix-1.0.8/src/backend/linux_raw/arch/x86_64.rs +294 -0
  517. data/ext/cargo-vendor/rustix-1.0.8/src/backend/linux_raw/param/auxv.rs +580 -0
  518. data/ext/cargo-vendor/rustix-1.0.8/src/backend/linux_raw/thread/syscalls.rs +549 -0
  519. data/ext/cargo-vendor/rustix-1.0.8/src/lib.rs +426 -0
  520. data/ext/cargo-vendor/rustix-1.0.8/src/not_implemented.rs +348 -0
  521. data/ext/cargo-vendor/rustix-1.0.8/src/pid.rs +135 -0
  522. data/ext/cargo-vendor/rustix-1.0.8/src/thread/futex.rs +600 -0
  523. data/ext/cargo-vendor/rustix-1.0.8/src/thread/setns.rs +162 -0
  524. data/ext/cargo-vendor/ryu-1.0.20/.cargo-checksum.json +1 -1
  525. data/ext/cargo-vendor/ryu-1.0.20/.cargo_vcs_info.json +6 -0
  526. data/ext/cargo-vendor/ryu-1.0.20/.github/FUNDING.yml +1 -0
  527. data/ext/cargo-vendor/ryu-1.0.20/.github/workflows/ci.yml +120 -0
  528. data/ext/cargo-vendor/ryu-1.0.20/Cargo.toml.orig +37 -0
  529. data/ext/cargo-vendor/same-file-1.0.6/.cargo-checksum.json +1 -1
  530. data/ext/cargo-vendor/same-file-1.0.6/.cargo_vcs_info.json +5 -0
  531. data/ext/cargo-vendor/same-file-1.0.6/Cargo.toml.orig +21 -0
  532. data/ext/cargo-vendor/semver-1.0.26/.cargo-checksum.json +1 -1
  533. data/ext/cargo-vendor/semver-1.0.26/.cargo_vcs_info.json +6 -0
  534. data/ext/cargo-vendor/semver-1.0.26/.github/FUNDING.yml +1 -0
  535. data/ext/cargo-vendor/semver-1.0.26/.github/workflows/ci.yml +140 -0
  536. data/ext/cargo-vendor/semver-1.0.26/Cargo.toml.orig +31 -0
  537. data/ext/cargo-vendor/seq-macro-0.3.6/.cargo-checksum.json +1 -1
  538. data/ext/cargo-vendor/seq-macro-0.3.6/.cargo_vcs_info.json +6 -0
  539. data/ext/cargo-vendor/seq-macro-0.3.6/.github/FUNDING.yml +1 -0
  540. data/ext/cargo-vendor/seq-macro-0.3.6/.github/workflows/ci.yml +103 -0
  541. data/ext/cargo-vendor/seq-macro-0.3.6/Cargo.toml.orig +28 -0
  542. data/ext/cargo-vendor/serde-1.0.219/.cargo-checksum.json +1 -1
  543. data/ext/cargo-vendor/serde-1.0.219/.cargo_vcs_info.json +6 -0
  544. data/ext/cargo-vendor/serde-1.0.219/Cargo.toml.orig +71 -0
  545. data/ext/cargo-vendor/serde_derive-1.0.219/.cargo-checksum.json +1 -1
  546. data/ext/cargo-vendor/serde_derive-1.0.219/.cargo_vcs_info.json +6 -0
  547. data/ext/cargo-vendor/serde_derive-1.0.219/Cargo.toml.orig +41 -0
  548. data/ext/cargo-vendor/serde_json-1.0.142/.cargo-checksum.json +1 -0
  549. data/ext/cargo-vendor/serde_json-1.0.142/.cargo_vcs_info.json +6 -0
  550. data/ext/cargo-vendor/serde_json-1.0.142/.github/workflows/ci.yml +158 -0
  551. data/ext/cargo-vendor/serde_json-1.0.142/Cargo.lock +419 -0
  552. data/ext/cargo-vendor/serde_json-1.0.142/Cargo.toml +157 -0
  553. data/ext/cargo-vendor/serde_json-1.0.142/Cargo.toml.orig +91 -0
  554. data/ext/cargo-vendor/serde_json-1.0.142/src/lib.rs +438 -0
  555. data/ext/cargo-vendor/serde_json-1.0.142/src/read.rs +1089 -0
  556. data/ext/cargo-vendor/serde_json-1.0.142/src/ser.rs +2285 -0
  557. data/ext/cargo-vendor/serde_json-1.0.142/src/value/mod.rs +1042 -0
  558. data/ext/cargo-vendor/serde_magnus-0.9.0/.cargo-checksum.json +1 -1
  559. data/ext/cargo-vendor/serde_magnus-0.9.0/.cargo_vcs_info.json +6 -0
  560. data/ext/cargo-vendor/serde_magnus-0.9.0/Cargo.toml.orig +25 -0
  561. data/ext/cargo-vendor/serde_yaml-0.9.34+deprecated/.cargo-checksum.json +1 -1
  562. data/ext/cargo-vendor/serde_yaml-0.9.34+deprecated/.cargo_vcs_info.json +6 -0
  563. data/ext/cargo-vendor/serde_yaml-0.9.34+deprecated/.github/FUNDING.yml +1 -0
  564. data/ext/cargo-vendor/serde_yaml-0.9.34+deprecated/.github/workflows/ci.yml +111 -0
  565. data/ext/cargo-vendor/serde_yaml-0.9.34+deprecated/Cargo.toml.orig +31 -0
  566. data/ext/cargo-vendor/sharded-slab-0.1.7/.cargo-checksum.json +1 -1
  567. data/ext/cargo-vendor/sharded-slab-0.1.7/.cargo_vcs_info.json +6 -0
  568. data/ext/cargo-vendor/sharded-slab-0.1.7/.clog.toml +26 -0
  569. data/ext/cargo-vendor/sharded-slab-0.1.7/.envrc +1 -0
  570. data/ext/cargo-vendor/sharded-slab-0.1.7/.github/FUNDING.yml +12 -0
  571. data/ext/cargo-vendor/sharded-slab-0.1.7/.github/workflows/ci.yml +154 -0
  572. data/ext/cargo-vendor/sharded-slab-0.1.7/.github/workflows/release.yml +22 -0
  573. data/ext/cargo-vendor/sharded-slab-0.1.7/Cargo.toml.orig +53 -0
  574. data/ext/cargo-vendor/shell-words-1.1.0/.cargo-checksum.json +1 -1
  575. data/ext/cargo-vendor/shell-words-1.1.0/.cargo_vcs_info.json +6 -0
  576. data/ext/cargo-vendor/shell-words-1.1.0/Cargo.toml.orig +19 -0
  577. data/ext/cargo-vendor/shlex-1.3.0/.cargo-checksum.json +1 -1
  578. data/ext/cargo-vendor/shlex-1.3.0/.cargo_vcs_info.json +6 -0
  579. data/ext/cargo-vendor/shlex-1.3.0/.github/workflows/test.yml +36 -0
  580. data/ext/cargo-vendor/shlex-1.3.0/Cargo.toml.orig +23 -0
  581. data/ext/cargo-vendor/smallvec-1.15.1/.cargo-checksum.json +1 -0
  582. data/ext/cargo-vendor/smallvec-1.15.1/.cargo_vcs_info.json +6 -0
  583. data/ext/cargo-vendor/smallvec-1.15.1/.github/workflows/main.yml +114 -0
  584. data/ext/cargo-vendor/smallvec-1.15.1/Cargo.lock +198 -0
  585. data/ext/cargo-vendor/smallvec-1.15.1/Cargo.toml +110 -0
  586. data/ext/cargo-vendor/smallvec-1.15.1/Cargo.toml.orig +54 -0
  587. data/ext/cargo-vendor/smallvec-1.15.1/src/lib.rs +2605 -0
  588. data/ext/cargo-vendor/strsim-0.11.1/.cargo-checksum.json +1 -1
  589. data/ext/cargo-vendor/strsim-0.11.1/.cargo_vcs_info.json +6 -0
  590. data/ext/cargo-vendor/strsim-0.11.1/.editorconfig +13 -0
  591. data/ext/cargo-vendor/strsim-0.11.1/Cargo.toml.orig +17 -0
  592. data/ext/cargo-vendor/syn-1.0.109/.cargo-checksum.json +1 -1
  593. data/ext/cargo-vendor/syn-1.0.109/.cargo_vcs_info.json +6 -0
  594. data/ext/cargo-vendor/syn-1.0.109/Cargo.toml.orig +91 -0
  595. data/ext/cargo-vendor/syn-2.0.101/.cargo-checksum.json +1 -1
  596. data/ext/cargo-vendor/syn-2.0.101/.cargo_vcs_info.json +6 -0
  597. data/ext/cargo-vendor/syn-2.0.101/Cargo.toml.orig +94 -0
  598. data/ext/cargo-vendor/tap-1.0.1/.cargo-checksum.json +1 -1
  599. data/ext/cargo-vendor/tap-1.0.1/.cargo_vcs_info.json +5 -0
  600. data/ext/cargo-vendor/tap-1.0.1/Cargo.toml.orig +30 -0
  601. data/ext/cargo-vendor/tempfile-3.20.0/.cargo-checksum.json +1 -0
  602. data/ext/cargo-vendor/tempfile-3.20.0/.cargo_vcs_info.json +6 -0
  603. data/ext/cargo-vendor/tempfile-3.20.0/.github/dependabot.yml +10 -0
  604. data/ext/cargo-vendor/tempfile-3.20.0/.github/workflows/ci.yml +107 -0
  605. data/ext/cargo-vendor/tempfile-3.20.0/CHANGELOG.md +360 -0
  606. data/ext/cargo-vendor/tempfile-3.20.0/Cargo.lock +183 -0
  607. data/ext/cargo-vendor/tempfile-3.20.0/Cargo.toml +98 -0
  608. data/ext/cargo-vendor/tempfile-3.20.0/Cargo.toml.orig +47 -0
  609. data/ext/cargo-vendor/tempfile-3.20.0/src/dir/imp/any.rs +24 -0
  610. data/ext/cargo-vendor/tempfile-3.20.0/src/dir/imp/unix.rs +26 -0
  611. data/ext/cargo-vendor/tempfile-3.20.0/src/dir/mod.rs +516 -0
  612. data/ext/cargo-vendor/tempfile-3.20.0/src/file/mod.rs +1078 -0
  613. data/ext/cargo-vendor/tempfile-3.20.0/src/lib.rs +760 -0
  614. data/ext/cargo-vendor/tempfile-3.20.0/src/spooled.rs +249 -0
  615. data/ext/cargo-vendor/tempfile-3.20.0/src/util.rs +82 -0
  616. data/ext/cargo-vendor/tempfile-3.20.0/tests/env.rs +16 -0
  617. data/ext/cargo-vendor/tempfile-3.20.0/tests/namedtempfile.rs +607 -0
  618. data/ext/cargo-vendor/tempfile-3.20.0/tests/spooled.rs +377 -0
  619. data/ext/cargo-vendor/tempfile-3.20.0/tests/tempdir.rs +212 -0
  620. data/ext/cargo-vendor/tempfile-3.20.0/tests/tempfile.rs +78 -0
  621. data/ext/cargo-vendor/thread_local-1.1.9/.cargo-checksum.json +1 -0
  622. data/ext/cargo-vendor/thread_local-1.1.9/.cargo_vcs_info.json +6 -0
  623. data/ext/cargo-vendor/thread_local-1.1.9/.github/workflows/ci.yml +27 -0
  624. data/ext/cargo-vendor/thread_local-1.1.9/.github/workflows/release-plz.yml +53 -0
  625. data/ext/cargo-vendor/thread_local-1.1.9/CHANGELOG.md +16 -0
  626. data/ext/cargo-vendor/thread_local-1.1.9/Cargo.lock +610 -0
  627. data/ext/cargo-vendor/thread_local-1.1.9/Cargo.toml +51 -0
  628. data/ext/cargo-vendor/thread_local-1.1.9/Cargo.toml.orig +27 -0
  629. data/ext/cargo-vendor/thread_local-1.1.9/README.md +39 -0
  630. data/ext/cargo-vendor/thread_local-1.1.9/src/thread_id.rs +210 -0
  631. data/ext/cargo-vendor/tracing-0.1.41/.cargo-checksum.json +1 -1
  632. data/ext/cargo-vendor/tracing-0.1.41/.cargo_vcs_info.json +6 -0
  633. data/ext/cargo-vendor/tracing-0.1.41/Cargo.toml.orig +118 -0
  634. data/ext/cargo-vendor/tracing-attributes-0.1.30/.cargo-checksum.json +1 -0
  635. data/ext/cargo-vendor/tracing-attributes-0.1.30/.cargo_vcs_info.json +6 -0
  636. data/ext/cargo-vendor/tracing-attributes-0.1.30/CHANGELOG.md +469 -0
  637. data/ext/cargo-vendor/tracing-attributes-0.1.30/Cargo.lock +601 -0
  638. data/ext/cargo-vendor/tracing-attributes-0.1.30/Cargo.toml +157 -0
  639. data/ext/cargo-vendor/tracing-attributes-0.1.30/Cargo.toml.orig +67 -0
  640. data/ext/cargo-vendor/tracing-attributes-0.1.30/README.md +91 -0
  641. data/ext/cargo-vendor/tracing-attributes-0.1.30/src/attr.rs +478 -0
  642. data/ext/cargo-vendor/tracing-attributes-0.1.30/src/expand.rs +854 -0
  643. data/ext/cargo-vendor/tracing-attributes-0.1.30/src/lib.rs +707 -0
  644. data/ext/cargo-vendor/tracing-attributes-0.1.30/tests/async_fn.rs +496 -0
  645. data/ext/cargo-vendor/tracing-attributes-0.1.30/tests/dead_code.rs +10 -0
  646. data/ext/cargo-vendor/tracing-attributes-0.1.30/tests/err.rs +329 -0
  647. data/ext/cargo-vendor/tracing-attributes-0.1.30/tests/instrument.rs +346 -0
  648. data/ext/cargo-vendor/tracing-attributes-0.1.30/tests/ui/fail/async_instrument.rs +45 -0
  649. data/ext/cargo-vendor/tracing-attributes-0.1.30/tests/ui/fail/async_instrument.stderr +104 -0
  650. data/ext/cargo-vendor/tracing-attributes-0.1.30/tests/ui/fail/const_instrument.stderr +15 -0
  651. data/ext/cargo-vendor/tracing-attributes-0.1.30/tests/ui/fail/unused_instrumented_fn.rs +6 -0
  652. data/ext/cargo-vendor/tracing-attributes-0.1.30/tests/ui/fail/unused_instrumented_fn.stderr +11 -0
  653. data/ext/cargo-vendor/tracing-attributes-0.1.30/tests/ui/pass/type_shadowing.rs +17 -0
  654. data/ext/cargo-vendor/tracing-attributes-0.1.30/tests/ui.rs +15 -0
  655. data/ext/cargo-vendor/tracing-core-0.1.34/.cargo-checksum.json +1 -0
  656. data/ext/cargo-vendor/tracing-core-0.1.34/.cargo_vcs_info.json +6 -0
  657. data/ext/cargo-vendor/tracing-core-0.1.34/CHANGELOG.md +587 -0
  658. data/ext/cargo-vendor/tracing-core-0.1.34/Cargo.lock +23 -0
  659. data/ext/cargo-vendor/tracing-core-0.1.34/Cargo.toml +106 -0
  660. data/ext/cargo-vendor/tracing-core-0.1.34/Cargo.toml.orig +49 -0
  661. data/ext/cargo-vendor/tracing-core-0.1.34/README.md +121 -0
  662. data/ext/cargo-vendor/tracing-core-0.1.34/src/callsite.rs +618 -0
  663. data/ext/cargo-vendor/tracing-core-0.1.34/src/dispatcher.rs +1068 -0
  664. data/ext/cargo-vendor/tracing-core-0.1.34/src/field.rs +1320 -0
  665. data/ext/cargo-vendor/tracing-core-0.1.34/src/lib.rs +302 -0
  666. data/ext/cargo-vendor/tracing-core-0.1.34/src/metadata.rs +1114 -0
  667. data/ext/cargo-vendor/tracing-log-0.2.0/.cargo-checksum.json +1 -1
  668. data/ext/cargo-vendor/tracing-log-0.2.0/.cargo_vcs_info.json +6 -0
  669. data/ext/cargo-vendor/tracing-log-0.2.0/Cargo.toml.orig +47 -0
  670. data/ext/cargo-vendor/tracing-subscriber-0.3.19/.cargo-checksum.json +1 -1
  671. data/ext/cargo-vendor/tracing-subscriber-0.3.19/.cargo_vcs_info.json +6 -0
  672. data/ext/cargo-vendor/tracing-subscriber-0.3.19/Cargo.toml.orig +109 -0
  673. data/ext/cargo-vendor/unicode-ident-1.0.18/.cargo-checksum.json +1 -1
  674. data/ext/cargo-vendor/unicode-ident-1.0.18/.cargo_vcs_info.json +6 -0
  675. data/ext/cargo-vendor/unicode-ident-1.0.18/.github/FUNDING.yml +1 -0
  676. data/ext/cargo-vendor/unicode-ident-1.0.18/.github/workflows/ci.yml +110 -0
  677. data/ext/cargo-vendor/unicode-ident-1.0.18/Cargo.toml.orig +36 -0
  678. data/ext/cargo-vendor/unicode-ident-1.0.18/tests/fst/.gitignore +1 -0
  679. data/ext/cargo-vendor/unsafe-libyaml-0.2.11/.cargo-checksum.json +1 -1
  680. data/ext/cargo-vendor/unsafe-libyaml-0.2.11/.cargo_vcs_info.json +6 -0
  681. data/ext/cargo-vendor/unsafe-libyaml-0.2.11/.github/FUNDING.yml +1 -0
  682. data/ext/cargo-vendor/unsafe-libyaml-0.2.11/.github/workflows/ci.yml +109 -0
  683. data/ext/cargo-vendor/unsafe-libyaml-0.2.11/Cargo.toml.orig +24 -0
  684. data/ext/cargo-vendor/utf8parse-0.2.2/.cargo-checksum.json +1 -1
  685. data/ext/cargo-vendor/utf8parse-0.2.2/.cargo_vcs_info.json +6 -0
  686. data/ext/cargo-vendor/utf8parse-0.2.2/Cargo.toml.orig +15 -0
  687. data/ext/cargo-vendor/valuable-0.1.1/.cargo-checksum.json +1 -1
  688. data/ext/cargo-vendor/valuable-0.1.1/.cargo_vcs_info.json +6 -0
  689. data/ext/cargo-vendor/valuable-0.1.1/Cargo.toml.orig +47 -0
  690. data/ext/cargo-vendor/version_check-0.9.5/.cargo-checksum.json +1 -1
  691. data/ext/cargo-vendor/version_check-0.9.5/.cargo_vcs_info.json +6 -0
  692. data/ext/cargo-vendor/version_check-0.9.5/.github/workflows/ci.yml +42 -0
  693. data/ext/cargo-vendor/version_check-0.9.5/.travis.yml +6 -0
  694. data/ext/cargo-vendor/version_check-0.9.5/Cargo.toml.orig +13 -0
  695. data/ext/cargo-vendor/walkdir-2.5.0/.cargo-checksum.json +1 -1
  696. data/ext/cargo-vendor/walkdir-2.5.0/.cargo_vcs_info.json +6 -0
  697. data/ext/cargo-vendor/walkdir-2.5.0/.github/workflows/ci.yml +94 -0
  698. data/ext/cargo-vendor/walkdir-2.5.0/Cargo.toml.orig +30 -0
  699. data/ext/cargo-vendor/wasi-0.11.1+wasi-snapshot-preview1/.cargo-checksum.json +1 -0
  700. data/ext/cargo-vendor/wasi-0.11.1+wasi-snapshot-preview1/.cargo_vcs_info.json +6 -0
  701. data/ext/cargo-vendor/wasi-0.11.1+wasi-snapshot-preview1/.github/workflows/main.yml +44 -0
  702. data/ext/cargo-vendor/wasi-0.11.1+wasi-snapshot-preview1/.gitmodules +3 -0
  703. data/ext/cargo-vendor/wasi-0.11.1+wasi-snapshot-preview1/Cargo.lock +23 -0
  704. data/ext/cargo-vendor/wasi-0.11.1+wasi-snapshot-preview1/Cargo.toml +59 -0
  705. data/ext/cargo-vendor/wasi-0.11.1+wasi-snapshot-preview1/Cargo.toml.orig +29 -0
  706. data/ext/cargo-vendor/wasi-0.14.2+wasi-0.2.4/.cargo-checksum.json +1 -1
  707. data/ext/cargo-vendor/wasi-0.14.2+wasi-0.2.4/.cargo_vcs_info.json +6 -0
  708. data/ext/cargo-vendor/wasi-0.14.2+wasi-0.2.4/.github/workflows/main.yml +77 -0
  709. data/ext/cargo-vendor/wasi-0.14.2+wasi-0.2.4/.gitmodules +0 -0
  710. data/ext/cargo-vendor/wasi-0.14.2+wasi-0.2.4/Cargo.toml.orig +60 -0
  711. data/ext/cargo-vendor/winapi-0.3.9/.cargo-checksum.json +1 -1
  712. data/ext/cargo-vendor/winapi-0.3.9/.cargo_vcs_info.json +5 -0
  713. data/ext/cargo-vendor/winapi-0.3.9/Cargo.toml.orig +431 -0
  714. data/ext/cargo-vendor/winapi-i686-pc-windows-gnu-0.4.0/.cargo-checksum.json +1 -1
  715. data/ext/cargo-vendor/winapi-i686-pc-windows-gnu-0.4.0/Cargo.toml.orig +10 -0
  716. data/ext/cargo-vendor/winapi-util-0.1.9/.cargo-checksum.json +1 -1
  717. data/ext/cargo-vendor/winapi-util-0.1.9/.cargo_vcs_info.json +6 -0
  718. data/ext/cargo-vendor/winapi-util-0.1.9/.github/workflows/ci.yml +87 -0
  719. data/ext/cargo-vendor/winapi-util-0.1.9/Cargo.toml.orig +25 -0
  720. data/ext/cargo-vendor/winapi-x86_64-pc-windows-gnu-0.4.0/.cargo-checksum.json +1 -1
  721. data/ext/cargo-vendor/winapi-x86_64-pc-windows-gnu-0.4.0/Cargo.toml.orig +10 -0
  722. data/ext/cargo-vendor/windows-link-0.1.3/.cargo-checksum.json +1 -0
  723. data/ext/cargo-vendor/windows-link-0.1.3/.cargo_vcs_info.json +6 -0
  724. data/ext/cargo-vendor/windows-link-0.1.3/Cargo.lock +7 -0
  725. data/ext/cargo-vendor/windows-link-0.1.3/Cargo.toml +44 -0
  726. data/ext/cargo-vendor/windows-link-0.1.3/Cargo.toml.orig +14 -0
  727. data/ext/cargo-vendor/windows-link-0.1.3/license-apache-2.0 +201 -0
  728. data/ext/cargo-vendor/windows-link-0.1.3/license-mit +21 -0
  729. data/ext/cargo-vendor/windows-link-0.1.3/readme.md +26 -0
  730. data/ext/cargo-vendor/windows-link-0.1.3/src/lib.rs +39 -0
  731. data/ext/cargo-vendor/windows-sys-0.59.0/.cargo-checksum.json +1 -1
  732. data/ext/cargo-vendor/windows-sys-0.59.0/.cargo_vcs_info.json +6 -0
  733. data/ext/cargo-vendor/windows-sys-0.59.0/Cargo.toml.orig +274 -0
  734. data/ext/cargo-vendor/windows-sys-0.60.2/.cargo-checksum.json +1 -0
  735. data/ext/cargo-vendor/windows-sys-0.60.2/.cargo_vcs_info.json +6 -0
  736. data/ext/cargo-vendor/windows-sys-0.60.2/Cargo.lock +74 -0
  737. data/ext/cargo-vendor/windows-sys-0.60.2/Cargo.toml +305 -0
  738. data/ext/cargo-vendor/windows-sys-0.60.2/Cargo.toml.orig +276 -0
  739. data/ext/cargo-vendor/windows-sys-0.60.2/license-apache-2.0 +201 -0
  740. data/ext/cargo-vendor/windows-sys-0.60.2/license-mit +21 -0
  741. data/ext/cargo-vendor/windows-sys-0.60.2/readme.md +40 -0
  742. data/ext/cargo-vendor/windows-sys-0.60.2/rustfmt.toml +2 -0
  743. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Wdk/Devices/Bluetooth/mod.rs +18 -0
  744. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Wdk/Devices/HumanInterfaceDevice/mod.rs +49 -0
  745. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Wdk/Devices/mod.rs +4 -0
  746. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Wdk/Foundation/mod.rs +1842 -0
  747. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Wdk/Graphics/Direct3D/mod.rs +11534 -0
  748. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Wdk/Graphics/mod.rs +2 -0
  749. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Wdk/NetworkManagement/Ndis/mod.rs +4258 -0
  750. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Wdk/NetworkManagement/WindowsFilteringPlatform/mod.rs +269 -0
  751. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Wdk/NetworkManagement/mod.rs +4 -0
  752. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Wdk/Storage/FileSystem/Minifilters/mod.rs +1785 -0
  753. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Wdk/Storage/FileSystem/mod.rs +5284 -0
  754. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Wdk/Storage/mod.rs +2 -0
  755. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Wdk/System/IO/mod.rs +2 -0
  756. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Wdk/System/Memory/mod.rs +11 -0
  757. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Wdk/System/OfflineRegistry/mod.rs +28 -0
  758. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Wdk/System/Registry/mod.rs +215 -0
  759. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Wdk/System/SystemInformation/mod.rs +18 -0
  760. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Wdk/System/SystemServices/mod.rs +16976 -0
  761. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Wdk/System/Threading/mod.rs +155 -0
  762. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Wdk/System/mod.rs +14 -0
  763. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Wdk/mod.rs +12 -0
  764. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Data/HtmlHelp/mod.rs +510 -0
  765. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Data/RightsManagement/mod.rs +262 -0
  766. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Data/mod.rs +4 -0
  767. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Devices/AllJoyn/mod.rs +1303 -0
  768. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Devices/Beep/mod.rs +11 -0
  769. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Devices/BiometricFramework/mod.rs +1712 -0
  770. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Devices/Bluetooth/mod.rs +1629 -0
  771. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Devices/Cdrom/mod.rs +539 -0
  772. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Devices/Communication/mod.rs +332 -0
  773. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Devices/DeviceAndDriverInstallation/mod.rs +4702 -0
  774. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Devices/DeviceQuery/mod.rs +165 -0
  775. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Devices/Display/mod.rs +3822 -0
  776. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Devices/Dvd/mod.rs +717 -0
  777. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Devices/Enumeration/Pnp/mod.rs +102 -0
  778. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Devices/Enumeration/mod.rs +2 -0
  779. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Devices/Fax/mod.rs +1358 -0
  780. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Devices/HumanInterfaceDevice/mod.rs +3996 -0
  781. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Devices/Nfc/mod.rs +633 -0
  782. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Devices/Nfp/mod.rs +20 -0
  783. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Devices/PortableDevices/mod.rs +1422 -0
  784. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Devices/Properties/mod.rs +265 -0
  785. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Devices/Pwm/mod.rs +73 -0
  786. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Devices/Sensors/mod.rs +554 -0
  787. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Devices/SerialCommunication/mod.rs +247 -0
  788. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Devices/Tapi/mod.rs +3405 -0
  789. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Devices/Usb/mod.rs +3334 -0
  790. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Devices/WebServicesOnDevices/mod.rs +1003 -0
  791. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Devices/mod.rs +100 -0
  792. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Foundation/mod.rs +10365 -0
  793. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Gaming/mod.rs +99 -0
  794. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Globalization/mod.rs +5285 -0
  795. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Graphics/Dwm/mod.rs +238 -0
  796. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Graphics/Gdi/mod.rs +4203 -0
  797. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Graphics/GdiPlus/mod.rs +2381 -0
  798. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Graphics/Hlsl/mod.rs +2 -0
  799. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Graphics/OpenGL/mod.rs +1276 -0
  800. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Graphics/Printing/PrintTicket/mod.rs +32 -0
  801. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Graphics/Printing/mod.rs +5024 -0
  802. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Graphics/mod.rs +12 -0
  803. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Management/MobileDeviceManagementRegistration/mod.rs +111 -0
  804. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Management/mod.rs +2 -0
  805. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Media/Audio/mod.rs +2447 -0
  806. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Media/DxMediaObjects/mod.rs +104 -0
  807. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Media/KernelStreaming/mod.rs +6409 -0
  808. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Media/Multimedia/mod.rs +6882 -0
  809. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Media/Streaming/mod.rs +104 -0
  810. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Media/WindowsMediaFormat/mod.rs +996 -0
  811. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Media/mod.rs +212 -0
  812. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/NetworkManagement/Dhcp/mod.rs +2511 -0
  813. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/NetworkManagement/Dns/mod.rs +2076 -0
  814. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/NetworkManagement/InternetConnectionWizard/mod.rs +22 -0
  815. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/NetworkManagement/IpHelper/mod.rs +3771 -0
  816. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/NetworkManagement/Multicast/mod.rs +89 -0
  817. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/NetworkManagement/Ndis/mod.rs +3567 -0
  818. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/NetworkManagement/NetBios/mod.rs +248 -0
  819. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/NetworkManagement/NetManagement/mod.rs +5358 -0
  820. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/NetworkManagement/NetShell/mod.rs +200 -0
  821. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/NetworkManagement/NetworkDiagnosticsFramework/mod.rs +282 -0
  822. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/NetworkManagement/P2P/mod.rs +1502 -0
  823. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/NetworkManagement/QoS/mod.rs +1810 -0
  824. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/NetworkManagement/Rras/mod.rs +3870 -0
  825. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/NetworkManagement/Snmp/mod.rs +457 -0
  826. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/NetworkManagement/WNet/mod.rs +428 -0
  827. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/NetworkManagement/WebDav/mod.rs +57 -0
  828. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/NetworkManagement/WiFi/mod.rs +5206 -0
  829. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/NetworkManagement/WindowsConnectionManager/mod.rs +139 -0
  830. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/NetworkManagement/WindowsFilteringPlatform/mod.rs +4971 -0
  831. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/NetworkManagement/WindowsFirewall/mod.rs +326 -0
  832. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/NetworkManagement/WindowsNetworkVirtualization/mod.rs +157 -0
  833. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/NetworkManagement/mod.rs +42 -0
  834. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Networking/ActiveDirectory/mod.rs +2859 -0
  835. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Networking/Clustering/mod.rs +4340 -0
  836. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Networking/HttpServer/mod.rs +1525 -0
  837. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Networking/Ldap/mod.rs +907 -0
  838. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Networking/WebSocket/mod.rs +113 -0
  839. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Networking/WinHttp/mod.rs +1247 -0
  840. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Networking/WinInet/mod.rs +2499 -0
  841. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Networking/WinSock/mod.rs +5891 -0
  842. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Networking/WindowsWebServices/mod.rs +4218 -0
  843. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Networking/mod.rs +18 -0
  844. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Security/AppLocker/mod.rs +201 -0
  845. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Security/Authentication/Identity/mod.rs +6792 -0
  846. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Security/Authentication/mod.rs +2 -0
  847. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Security/Authorization/mod.rs +1204 -0
  848. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Security/Credentials/mod.rs +931 -0
  849. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Security/Cryptography/Catalog/mod.rs +188 -0
  850. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Security/Cryptography/Certificates/mod.rs +2330 -0
  851. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Security/Cryptography/Sip/mod.rs +198 -0
  852. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Security/Cryptography/UI/mod.rs +701 -0
  853. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Security/Cryptography/mod.rs +10296 -0
  854. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Security/DiagnosticDataQuery/mod.rs +201 -0
  855. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Security/DirectoryServices/mod.rs +15 -0
  856. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Security/EnterpriseData/mod.rs +41 -0
  857. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Security/ExtensibleAuthenticationProtocol/mod.rs +1173 -0
  858. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Security/Isolation/mod.rs +20 -0
  859. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Security/LicenseProtection/mod.rs +8 -0
  860. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Security/NetworkAccessProtection/mod.rs +194 -0
  861. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Security/WinTrust/mod.rs +1123 -0
  862. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Security/WinWlx/mod.rs +387 -0
  863. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Security/mod.rs +1346 -0
  864. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Storage/Cabinets/mod.rs +256 -0
  865. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Storage/CloudFilters/mod.rs +791 -0
  866. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Storage/Compression/mod.rs +41 -0
  867. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Storage/DistributedFileSystem/mod.rs +441 -0
  868. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Storage/FileHistory/mod.rs +97 -0
  869. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Storage/FileSystem/mod.rs +4367 -0
  870. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Storage/Imapi/mod.rs +709 -0
  871. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Storage/IndexServer/mod.rs +329 -0
  872. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Storage/InstallableFileSystems/mod.rs +376 -0
  873. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Storage/IscsiDisc/mod.rs +1599 -0
  874. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Storage/Jet/mod.rs +3006 -0
  875. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Storage/Nvme/mod.rs +4443 -0
  876. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Storage/OfflineFiles/mod.rs +276 -0
  877. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Storage/OperationRecorder/mod.rs +20 -0
  878. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Storage/Packaging/Appx/mod.rs +454 -0
  879. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Storage/Packaging/mod.rs +2 -0
  880. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Storage/ProjectedFileSystem/mod.rs +306 -0
  881. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Storage/StructuredStorage/mod.rs +3 -0
  882. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Storage/Vhd/mod.rs +965 -0
  883. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Storage/Xps/mod.rs +440 -0
  884. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Storage/mod.rs +38 -0
  885. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/System/AddressBook/mod.rs +1255 -0
  886. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/System/Antimalware/mod.rs +147 -0
  887. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/System/ApplicationInstallationAndServicing/mod.rs +2321 -0
  888. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/System/ApplicationVerifier/mod.rs +68 -0
  889. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/System/ClrHosting/mod.rs +364 -0
  890. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/System/Com/Marshal/mod.rs +172 -0
  891. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/System/Com/StructuredStorage/mod.rs +847 -0
  892. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/System/Com/Urlmon/mod.rs +955 -0
  893. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/System/Com/mod.rs +1549 -0
  894. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/System/ComponentServices/mod.rs +604 -0
  895. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/System/Console/mod.rs +433 -0
  896. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/System/CorrelationVector/mod.rs +20 -0
  897. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/System/DataExchange/mod.rs +506 -0
  898. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/System/DeploymentServices/mod.rs +636 -0
  899. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/System/DeveloperLicensing/mod.rs +3 -0
  900. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/System/Diagnostics/Ceip/mod.rs +1 -0
  901. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/System/Diagnostics/Debug/Extensions/mod.rs +4085 -0
  902. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/System/Diagnostics/Debug/mod.rs +6558 -0
  903. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/System/Diagnostics/Etw/mod.rs +2504 -0
  904. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/System/Diagnostics/ProcessSnapshotting/mod.rs +355 -0
  905. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/System/Diagnostics/ToolHelp/mod.rs +144 -0
  906. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/System/Diagnostics/TraceLogging/mod.rs +105 -0
  907. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/System/Diagnostics/mod.rs +12 -0
  908. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/System/DistributedTransactionCoordinator/mod.rs +328 -0
  909. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/System/Environment/mod.rs +237 -0
  910. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/System/ErrorReporting/mod.rs +460 -0
  911. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/System/EventCollector/mod.rs +127 -0
  912. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/System/EventLog/mod.rs +401 -0
  913. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/System/EventNotificationService/mod.rs +35 -0
  914. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/System/GroupPolicy/mod.rs +477 -0
  915. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/System/HostCompute/mod.rs +1 -0
  916. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/System/HostComputeNetwork/mod.rs +86 -0
  917. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/System/HostComputeSystem/mod.rs +187 -0
  918. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/System/Hypervisor/mod.rs +2388 -0
  919. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/System/IO/mod.rs +78 -0
  920. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/System/Iis/mod.rs +1581 -0
  921. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/System/Ioctl/mod.rs +7422 -0
  922. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/System/JobObjects/mod.rs +525 -0
  923. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/System/Js/mod.rs +145 -0
  924. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/System/Kernel/mod.rs +392 -0
  925. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/System/LibraryLoader/mod.rs +122 -0
  926. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/System/Mailslots/mod.rs +6 -0
  927. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/System/Mapi/mod.rs +185 -0
  928. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/System/Memory/NonVolatile/mod.rs +25 -0
  929. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/System/Memory/mod.rs +536 -0
  930. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/System/MessageQueuing/mod.rs +766 -0
  931. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/System/MixedReality/mod.rs +14 -0
  932. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/System/Ole/mod.rs +2992 -0
  933. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/System/PasswordManagement/mod.rs +42 -0
  934. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/System/Performance/HardwareCounterProfiling/mod.rs +32 -0
  935. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/System/Performance/mod.rs +1266 -0
  936. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/System/Pipes/mod.rs +42 -0
  937. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/System/Power/mod.rs +1572 -0
  938. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/System/ProcessStatus/mod.rs +235 -0
  939. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/System/Recovery/mod.rs +15 -0
  940. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/System/Registry/mod.rs +1144 -0
  941. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/System/RemoteDesktop/mod.rs +2145 -0
  942. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/System/RemoteManagement/mod.rs +1095 -0
  943. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/System/RestartManager/mod.rs +101 -0
  944. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/System/Restore/mod.rs +81 -0
  945. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/System/Rpc/mod.rs +3429 -0
  946. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/System/Search/Common/mod.rs +21 -0
  947. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/System/Search/mod.rs +6535 -0
  948. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/System/SecurityCenter/mod.rs +41 -0
  949. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/System/Services/mod.rs +727 -0
  950. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/System/SetupAndMigration/mod.rs +4 -0
  951. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/System/Shutdown/mod.rs +111 -0
  952. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/System/StationsAndDesktops/mod.rs +104 -0
  953. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/System/SubsystemForLinux/mod.rs +12 -0
  954. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/System/SystemInformation/mod.rs +866 -0
  955. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/System/SystemServices/mod.rs +5338 -0
  956. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/System/Threading/mod.rs +1285 -0
  957. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/System/Time/mod.rs +60 -0
  958. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/System/TpmBaseServices/mod.rs +104 -0
  959. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/System/UserAccessLogging/mod.rs +23 -0
  960. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/System/Variant/mod.rs +351 -0
  961. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/System/VirtualDosMachines/mod.rs +341 -0
  962. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/System/WindowsProgramming/mod.rs +1886 -0
  963. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/System/Wmi/mod.rs +2845 -0
  964. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/System/mod.rs +132 -0
  965. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/UI/Accessibility/mod.rs +1916 -0
  966. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/UI/ColorSystem/mod.rs +788 -0
  967. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/UI/Controls/Dialogs/mod.rs +1380 -0
  968. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/UI/Controls/mod.rs +8163 -0
  969. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/UI/HiDpi/mod.rs +66 -0
  970. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/UI/Input/Ime/mod.rs +1619 -0
  971. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/UI/Input/KeyboardAndMouse/mod.rs +895 -0
  972. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/UI/Input/Pointer/mod.rs +184 -0
  973. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/UI/Input/Touch/mod.rs +104 -0
  974. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/UI/Input/XboxController/mod.rs +151 -0
  975. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/UI/Input/mod.rs +232 -0
  976. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/UI/InteractionContext/mod.rs +254 -0
  977. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/UI/Magnification/mod.rs +62 -0
  978. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/UI/Shell/Common/mod.rs +129 -0
  979. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/UI/Shell/PropertiesSystem/mod.rs +356 -0
  980. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/UI/Shell/mod.rs +7533 -0
  981. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/UI/TabletPC/mod.rs +1595 -0
  982. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/UI/TextServices/mod.rs +862 -0
  983. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/UI/WindowsAndMessaging/mod.rs +4075 -0
  984. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/UI/mod.rs +22 -0
  985. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Web/InternetExplorer/mod.rs +634 -0
  986. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/Web/mod.rs +2 -0
  987. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/Win32/mod.rs +30 -0
  988. data/ext/cargo-vendor/windows-sys-0.60.2/src/Windows/mod.rs +4 -0
  989. data/ext/cargo-vendor/windows-sys-0.60.2/src/core/literals.rs +114 -0
  990. data/ext/cargo-vendor/windows-sys-0.60.2/src/core/mod.rs +47 -0
  991. data/ext/cargo-vendor/windows-sys-0.60.2/src/lib.rs +17 -0
  992. data/ext/cargo-vendor/windows-targets-0.52.6/.cargo-checksum.json +1 -1
  993. data/ext/cargo-vendor/windows-targets-0.52.6/.cargo_vcs_info.json +6 -0
  994. data/ext/cargo-vendor/windows-targets-0.52.6/Cargo.toml.orig +38 -0
  995. data/ext/cargo-vendor/windows-targets-0.53.3/.cargo-checksum.json +1 -0
  996. data/ext/cargo-vendor/windows-targets-0.53.3/.cargo_vcs_info.json +6 -0
  997. data/ext/cargo-vendor/windows-targets-0.53.3/Cargo.lock +72 -0
  998. data/ext/cargo-vendor/windows-targets-0.53.3/Cargo.toml +72 -0
  999. data/ext/cargo-vendor/windows-targets-0.53.3/Cargo.toml.orig +41 -0
  1000. data/ext/cargo-vendor/windows-targets-0.53.3/license-apache-2.0 +201 -0
  1001. data/ext/cargo-vendor/windows-targets-0.53.3/license-mit +21 -0
  1002. data/ext/cargo-vendor/windows-targets-0.53.3/readme.md +27 -0
  1003. data/ext/cargo-vendor/windows-targets-0.53.3/src/lib.rs +29 -0
  1004. data/ext/cargo-vendor/windows_aarch64_gnullvm-0.52.6/.cargo-checksum.json +1 -1
  1005. data/ext/cargo-vendor/windows_aarch64_gnullvm-0.52.6/.cargo_vcs_info.json +6 -0
  1006. data/ext/cargo-vendor/windows_aarch64_gnullvm-0.52.6/Cargo.toml.orig +13 -0
  1007. data/ext/cargo-vendor/windows_aarch64_gnullvm-0.53.0/.cargo-checksum.json +1 -0
  1008. data/ext/cargo-vendor/windows_aarch64_gnullvm-0.53.0/.cargo_vcs_info.json +6 -0
  1009. data/ext/cargo-vendor/windows_aarch64_gnullvm-0.53.0/Cargo.lock +7 -0
  1010. data/ext/cargo-vendor/windows_aarch64_gnullvm-0.53.0/Cargo.toml +35 -0
  1011. data/ext/cargo-vendor/windows_aarch64_gnullvm-0.53.0/Cargo.toml.orig +13 -0
  1012. data/ext/cargo-vendor/windows_aarch64_gnullvm-0.53.0/build.rs +8 -0
  1013. data/ext/cargo-vendor/windows_aarch64_gnullvm-0.53.0/lib/libwindows.0.53.0.a +0 -0
  1014. data/ext/cargo-vendor/windows_aarch64_gnullvm-0.53.0/license-apache-2.0 +201 -0
  1015. data/ext/cargo-vendor/windows_aarch64_gnullvm-0.53.0/license-mit +21 -0
  1016. data/ext/cargo-vendor/windows_aarch64_gnullvm-0.53.0/src/lib.rs +1 -0
  1017. data/ext/cargo-vendor/windows_aarch64_msvc-0.52.6/.cargo-checksum.json +1 -1
  1018. data/ext/cargo-vendor/windows_aarch64_msvc-0.52.6/.cargo_vcs_info.json +6 -0
  1019. data/ext/cargo-vendor/windows_aarch64_msvc-0.52.6/Cargo.toml.orig +13 -0
  1020. data/ext/cargo-vendor/windows_aarch64_msvc-0.53.0/.cargo-checksum.json +1 -0
  1021. data/ext/cargo-vendor/windows_aarch64_msvc-0.53.0/.cargo_vcs_info.json +6 -0
  1022. data/ext/cargo-vendor/windows_aarch64_msvc-0.53.0/Cargo.lock +7 -0
  1023. data/ext/cargo-vendor/windows_aarch64_msvc-0.53.0/Cargo.toml +35 -0
  1024. data/ext/cargo-vendor/windows_aarch64_msvc-0.53.0/Cargo.toml.orig +13 -0
  1025. data/ext/cargo-vendor/windows_aarch64_msvc-0.53.0/build.rs +8 -0
  1026. data/ext/cargo-vendor/windows_aarch64_msvc-0.53.0/lib/windows.0.53.0.lib +0 -0
  1027. data/ext/cargo-vendor/windows_aarch64_msvc-0.53.0/license-apache-2.0 +201 -0
  1028. data/ext/cargo-vendor/windows_aarch64_msvc-0.53.0/license-mit +21 -0
  1029. data/ext/cargo-vendor/windows_aarch64_msvc-0.53.0/src/lib.rs +1 -0
  1030. data/ext/cargo-vendor/windows_i686_gnu-0.52.6/.cargo-checksum.json +1 -1
  1031. data/ext/cargo-vendor/windows_i686_gnu-0.52.6/.cargo_vcs_info.json +6 -0
  1032. data/ext/cargo-vendor/windows_i686_gnu-0.52.6/Cargo.toml.orig +13 -0
  1033. data/ext/cargo-vendor/windows_i686_gnu-0.53.0/.cargo-checksum.json +1 -0
  1034. data/ext/cargo-vendor/windows_i686_gnu-0.53.0/.cargo_vcs_info.json +6 -0
  1035. data/ext/cargo-vendor/windows_i686_gnu-0.53.0/Cargo.lock +7 -0
  1036. data/ext/cargo-vendor/windows_i686_gnu-0.53.0/Cargo.toml +35 -0
  1037. data/ext/cargo-vendor/windows_i686_gnu-0.53.0/Cargo.toml.orig +13 -0
  1038. data/ext/cargo-vendor/windows_i686_gnu-0.53.0/build.rs +8 -0
  1039. data/ext/cargo-vendor/windows_i686_gnu-0.53.0/lib/libwindows.0.53.0.a +0 -0
  1040. data/ext/cargo-vendor/windows_i686_gnu-0.53.0/license-apache-2.0 +201 -0
  1041. data/ext/cargo-vendor/windows_i686_gnu-0.53.0/license-mit +21 -0
  1042. data/ext/cargo-vendor/windows_i686_gnu-0.53.0/src/lib.rs +1 -0
  1043. data/ext/cargo-vendor/windows_i686_gnullvm-0.52.6/.cargo-checksum.json +1 -1
  1044. data/ext/cargo-vendor/windows_i686_gnullvm-0.52.6/.cargo_vcs_info.json +6 -0
  1045. data/ext/cargo-vendor/windows_i686_gnullvm-0.52.6/Cargo.toml.orig +13 -0
  1046. data/ext/cargo-vendor/windows_i686_gnullvm-0.53.0/.cargo-checksum.json +1 -0
  1047. data/ext/cargo-vendor/windows_i686_gnullvm-0.53.0/.cargo_vcs_info.json +6 -0
  1048. data/ext/cargo-vendor/windows_i686_gnullvm-0.53.0/Cargo.lock +7 -0
  1049. data/ext/cargo-vendor/windows_i686_gnullvm-0.53.0/Cargo.toml +35 -0
  1050. data/ext/cargo-vendor/windows_i686_gnullvm-0.53.0/Cargo.toml.orig +13 -0
  1051. data/ext/cargo-vendor/windows_i686_gnullvm-0.53.0/build.rs +8 -0
  1052. data/ext/cargo-vendor/windows_i686_gnullvm-0.53.0/lib/libwindows.0.53.0.a +0 -0
  1053. data/ext/cargo-vendor/windows_i686_gnullvm-0.53.0/license-apache-2.0 +201 -0
  1054. data/ext/cargo-vendor/windows_i686_gnullvm-0.53.0/license-mit +21 -0
  1055. data/ext/cargo-vendor/windows_i686_gnullvm-0.53.0/src/lib.rs +1 -0
  1056. data/ext/cargo-vendor/windows_i686_msvc-0.52.6/.cargo-checksum.json +1 -1
  1057. data/ext/cargo-vendor/windows_i686_msvc-0.52.6/.cargo_vcs_info.json +6 -0
  1058. data/ext/cargo-vendor/windows_i686_msvc-0.52.6/Cargo.toml.orig +13 -0
  1059. data/ext/cargo-vendor/windows_i686_msvc-0.53.0/.cargo-checksum.json +1 -0
  1060. data/ext/cargo-vendor/windows_i686_msvc-0.53.0/.cargo_vcs_info.json +6 -0
  1061. data/ext/cargo-vendor/windows_i686_msvc-0.53.0/Cargo.lock +7 -0
  1062. data/ext/cargo-vendor/windows_i686_msvc-0.53.0/Cargo.toml +35 -0
  1063. data/ext/cargo-vendor/windows_i686_msvc-0.53.0/Cargo.toml.orig +13 -0
  1064. data/ext/cargo-vendor/windows_i686_msvc-0.53.0/build.rs +8 -0
  1065. data/ext/cargo-vendor/windows_i686_msvc-0.53.0/lib/windows.0.53.0.lib +0 -0
  1066. data/ext/cargo-vendor/windows_i686_msvc-0.53.0/license-apache-2.0 +201 -0
  1067. data/ext/cargo-vendor/windows_i686_msvc-0.53.0/license-mit +21 -0
  1068. data/ext/cargo-vendor/windows_i686_msvc-0.53.0/src/lib.rs +1 -0
  1069. data/ext/cargo-vendor/windows_x86_64_gnu-0.52.6/.cargo-checksum.json +1 -1
  1070. data/ext/cargo-vendor/windows_x86_64_gnu-0.52.6/.cargo_vcs_info.json +6 -0
  1071. data/ext/cargo-vendor/windows_x86_64_gnu-0.52.6/Cargo.toml.orig +13 -0
  1072. data/ext/cargo-vendor/windows_x86_64_gnu-0.53.0/.cargo-checksum.json +1 -0
  1073. data/ext/cargo-vendor/windows_x86_64_gnu-0.53.0/.cargo_vcs_info.json +6 -0
  1074. data/ext/cargo-vendor/windows_x86_64_gnu-0.53.0/Cargo.lock +7 -0
  1075. data/ext/cargo-vendor/windows_x86_64_gnu-0.53.0/Cargo.toml +35 -0
  1076. data/ext/cargo-vendor/windows_x86_64_gnu-0.53.0/Cargo.toml.orig +13 -0
  1077. data/ext/cargo-vendor/windows_x86_64_gnu-0.53.0/build.rs +8 -0
  1078. data/ext/cargo-vendor/windows_x86_64_gnu-0.53.0/lib/libwindows.0.53.0.a +0 -0
  1079. data/ext/cargo-vendor/windows_x86_64_gnu-0.53.0/license-apache-2.0 +201 -0
  1080. data/ext/cargo-vendor/windows_x86_64_gnu-0.53.0/license-mit +21 -0
  1081. data/ext/cargo-vendor/windows_x86_64_gnu-0.53.0/src/lib.rs +1 -0
  1082. data/ext/cargo-vendor/windows_x86_64_gnullvm-0.52.6/.cargo-checksum.json +1 -1
  1083. data/ext/cargo-vendor/windows_x86_64_gnullvm-0.52.6/.cargo_vcs_info.json +6 -0
  1084. data/ext/cargo-vendor/windows_x86_64_gnullvm-0.52.6/Cargo.toml.orig +13 -0
  1085. data/ext/cargo-vendor/windows_x86_64_gnullvm-0.53.0/.cargo-checksum.json +1 -0
  1086. data/ext/cargo-vendor/windows_x86_64_gnullvm-0.53.0/.cargo_vcs_info.json +6 -0
  1087. data/ext/cargo-vendor/windows_x86_64_gnullvm-0.53.0/Cargo.lock +7 -0
  1088. data/ext/cargo-vendor/windows_x86_64_gnullvm-0.53.0/Cargo.toml +35 -0
  1089. data/ext/cargo-vendor/windows_x86_64_gnullvm-0.53.0/Cargo.toml.orig +13 -0
  1090. data/ext/cargo-vendor/windows_x86_64_gnullvm-0.53.0/build.rs +8 -0
  1091. data/ext/cargo-vendor/windows_x86_64_gnullvm-0.53.0/lib/libwindows.0.53.0.a +0 -0
  1092. data/ext/cargo-vendor/windows_x86_64_gnullvm-0.53.0/license-apache-2.0 +201 -0
  1093. data/ext/cargo-vendor/windows_x86_64_gnullvm-0.53.0/license-mit +21 -0
  1094. data/ext/cargo-vendor/windows_x86_64_gnullvm-0.53.0/src/lib.rs +1 -0
  1095. data/ext/cargo-vendor/windows_x86_64_msvc-0.52.6/.cargo-checksum.json +1 -1
  1096. data/ext/cargo-vendor/windows_x86_64_msvc-0.52.6/.cargo_vcs_info.json +6 -0
  1097. data/ext/cargo-vendor/windows_x86_64_msvc-0.52.6/Cargo.toml.orig +13 -0
  1098. data/ext/cargo-vendor/windows_x86_64_msvc-0.53.0/.cargo-checksum.json +1 -0
  1099. data/ext/cargo-vendor/windows_x86_64_msvc-0.53.0/.cargo_vcs_info.json +6 -0
  1100. data/ext/cargo-vendor/windows_x86_64_msvc-0.53.0/Cargo.lock +7 -0
  1101. data/ext/cargo-vendor/windows_x86_64_msvc-0.53.0/Cargo.toml +35 -0
  1102. data/ext/cargo-vendor/windows_x86_64_msvc-0.53.0/Cargo.toml.orig +13 -0
  1103. data/ext/cargo-vendor/windows_x86_64_msvc-0.53.0/build.rs +8 -0
  1104. data/ext/cargo-vendor/windows_x86_64_msvc-0.53.0/lib/windows.0.53.0.lib +0 -0
  1105. data/ext/cargo-vendor/windows_x86_64_msvc-0.53.0/license-apache-2.0 +201 -0
  1106. data/ext/cargo-vendor/windows_x86_64_msvc-0.53.0/license-mit +21 -0
  1107. data/ext/cargo-vendor/windows_x86_64_msvc-0.53.0/src/lib.rs +1 -0
  1108. data/ext/cargo-vendor/wit-bindgen-rt-0.39.0/.cargo-checksum.json +1 -1
  1109. data/ext/cargo-vendor/wit-bindgen-rt-0.39.0/.cargo_vcs_info.json +6 -0
  1110. data/ext/cargo-vendor/wit-bindgen-rt-0.39.0/Cargo.toml.orig +19 -0
  1111. data/ext/fast_code_owners/Cargo.toml +4 -3
  1112. data/ext/fast_code_owners/src/lib.rs +1 -1
  1113. data/lib/fast_code_owners/cli.rb +144 -0
  1114. data/lib/fast_code_owners/team_finder.rb +2 -1
  1115. data/lib/fast_code_owners/version.rb +1 -1
  1116. data/lib/fast_code_owners.rb +16 -0
  1117. metadata +1916 -1170
  1118. data/ext/cargo-vendor/anstream-0.6.18/.cargo-checksum.json +0 -1
  1119. data/ext/cargo-vendor/anstream-0.6.18/Cargo.lock +0 -705
  1120. data/ext/cargo-vendor/anstream-0.6.18/Cargo.toml +0 -233
  1121. data/ext/cargo-vendor/anstream-0.6.18/README.md +0 -34
  1122. data/ext/cargo-vendor/anstream-0.6.18/benches/stream.rs +0 -103
  1123. data/ext/cargo-vendor/anstream-0.6.18/benches/strip.rs +0 -134
  1124. data/ext/cargo-vendor/anstream-0.6.18/benches/wincon.rs +0 -46
  1125. data/ext/cargo-vendor/anstream-0.6.18/src/_macros.rs +0 -365
  1126. data/ext/cargo-vendor/anstream-0.6.18/src/adapter/strip.rs +0 -511
  1127. data/ext/cargo-vendor/anstream-0.6.18/src/adapter/wincon.rs +0 -387
  1128. data/ext/cargo-vendor/anstream-0.6.18/src/lib.rs +0 -86
  1129. data/ext/cargo-vendor/anstream-0.6.18/src/stream.rs +0 -315
  1130. data/ext/cargo-vendor/anstream-0.6.18/src/wincon.rs +0 -225
  1131. data/ext/cargo-vendor/anstyle-1.0.10/.cargo-checksum.json +0 -1
  1132. data/ext/cargo-vendor/anstyle-1.0.10/Cargo.lock +0 -16
  1133. data/ext/cargo-vendor/anstyle-1.0.10/Cargo.toml +0 -176
  1134. data/ext/cargo-vendor/anstyle-1.0.10/LICENSE-MIT +0 -19
  1135. data/ext/cargo-vendor/anstyle-1.0.10/README.md +0 -42
  1136. data/ext/cargo-vendor/anstyle-1.0.10/src/color.rs +0 -685
  1137. data/ext/cargo-vendor/anstyle-1.0.10/src/effect.rs +0 -404
  1138. data/ext/cargo-vendor/anstyle-1.0.10/src/lib.rs +0 -64
  1139. data/ext/cargo-vendor/anstyle-1.0.10/src/reset.rs +0 -47
  1140. data/ext/cargo-vendor/anstyle-1.0.10/src/style.rs +0 -437
  1141. data/ext/cargo-vendor/anstyle-parse-0.2.6/.cargo-checksum.json +0 -1
  1142. data/ext/cargo-vendor/anstyle-parse-0.2.6/Cargo.lock +0 -667
  1143. data/ext/cargo-vendor/anstyle-parse-0.2.6/Cargo.toml +0 -200
  1144. data/ext/cargo-vendor/anstyle-parse-0.2.6/LICENSE-APACHE +0 -201
  1145. data/ext/cargo-vendor/anstyle-parse-0.2.6/LICENSE-MIT +0 -25
  1146. data/ext/cargo-vendor/anstyle-parse-0.2.6/README.md +0 -33
  1147. data/ext/cargo-vendor/anstyle-parse-0.2.6/benches/parse.rs +0 -207
  1148. data/ext/cargo-vendor/anstyle-parse-0.2.6/src/lib.rs +0 -438
  1149. data/ext/cargo-vendor/anstyle-parse-0.2.6/src/state/definitions.rs +0 -171
  1150. data/ext/cargo-vendor/anstyle-query-1.1.2/.cargo-checksum.json +0 -1
  1151. data/ext/cargo-vendor/anstyle-query-1.1.2/Cargo.lock +0 -83
  1152. data/ext/cargo-vendor/anstyle-query-1.1.2/Cargo.toml +0 -171
  1153. data/ext/cargo-vendor/anstyle-query-1.1.2/README.md +0 -15
  1154. data/ext/cargo-vendor/anstyle-query-1.1.2/src/lib.rs +0 -159
  1155. data/ext/cargo-vendor/anstyle-query-1.1.2/src/windows.rs +0 -79
  1156. data/ext/cargo-vendor/anstyle-wincon-3.0.7/.cargo-checksum.json +0 -1
  1157. data/ext/cargo-vendor/anstyle-wincon-3.0.7/Cargo.lock +0 -104
  1158. data/ext/cargo-vendor/anstyle-wincon-3.0.7/Cargo.toml +0 -188
  1159. data/ext/cargo-vendor/anstyle-wincon-3.0.7/LICENSE-MIT +0 -19
  1160. data/ext/cargo-vendor/anstyle-wincon-3.0.7/README.md +0 -30
  1161. data/ext/cargo-vendor/anstyle-wincon-3.0.7/src/lib.rs +0 -21
  1162. data/ext/cargo-vendor/anstyle-wincon-3.0.7/src/windows.rs +0 -260
  1163. data/ext/cargo-vendor/clap-4.5.37/.cargo-checksum.json +0 -1
  1164. data/ext/cargo-vendor/clap-4.5.37/Cargo.lock +0 -868
  1165. data/ext/cargo-vendor/clap-4.5.37/Cargo.toml +0 -627
  1166. data/ext/cargo-vendor/clap-4.5.37/README.md +0 -43
  1167. data/ext/cargo-vendor/clap-4.5.37/examples/tutorial_builder/03_04_subcommands.md +0 -59
  1168. data/ext/cargo-vendor/clap-4.5.37/examples/tutorial_derive/03_04_subcommands.md +0 -60
  1169. data/ext/cargo-vendor/clap-4.5.37/src/_derive/mod.rs +0 -533
  1170. data/ext/cargo-vendor/clap-4.5.37/src/_faq.rs +0 -95
  1171. data/ext/cargo-vendor/clap-4.5.37/src/bin/stdio-fixture.rs +0 -26
  1172. data/ext/cargo-vendor/clap-4.5.37/src/lib.rs +0 -102
  1173. data/ext/cargo-vendor/clap_builder-4.5.37/.cargo-checksum.json +0 -1
  1174. data/ext/cargo-vendor/clap_builder-4.5.37/Cargo.lock +0 -450
  1175. data/ext/cargo-vendor/clap_builder-4.5.37/Cargo.toml +0 -219
  1176. data/ext/cargo-vendor/clap_builder-4.5.37/LICENSE-APACHE +0 -201
  1177. data/ext/cargo-vendor/clap_builder-4.5.37/LICENSE-MIT +0 -21
  1178. data/ext/cargo-vendor/clap_builder-4.5.37/README.md +0 -24
  1179. data/ext/cargo-vendor/clap_builder-4.5.37/src/builder/action.rs +0 -461
  1180. data/ext/cargo-vendor/clap_builder-4.5.37/src/builder/command.rs +0 -5202
  1181. data/ext/cargo-vendor/clap_builder-4.5.37/src/builder/styling.rs +0 -177
  1182. data/ext/cargo-vendor/clap_builder-4.5.37/src/error/kind.rs +0 -366
  1183. data/ext/cargo-vendor/clap_builder-4.5.37/src/lib.rs +0 -49
  1184. data/ext/cargo-vendor/clap_builder-4.5.37/src/macros.rs +0 -590
  1185. data/ext/cargo-vendor/clap_builder-4.5.37/src/output/help_template.rs +0 -1151
  1186. data/ext/cargo-vendor/clap_builder-4.5.37/src/parser/matches/arg_matches.rs +0 -2100
  1187. data/ext/cargo-vendor/clap_derive-4.5.32/.cargo-checksum.json +0 -1
  1188. data/ext/cargo-vendor/clap_derive-4.5.32/Cargo.lock +0 -100
  1189. data/ext/cargo-vendor/clap_derive-4.5.32/Cargo.toml +0 -163
  1190. data/ext/cargo-vendor/clap_derive-4.5.32/LICENSE-APACHE +0 -201
  1191. data/ext/cargo-vendor/clap_derive-4.5.32/LICENSE-MIT +0 -21
  1192. data/ext/cargo-vendor/clap_derive-4.5.32/README.md +0 -24
  1193. data/ext/cargo-vendor/clap_lex-0.7.4/.cargo-checksum.json +0 -1
  1194. data/ext/cargo-vendor/clap_lex-0.7.4/Cargo.toml +0 -163
  1195. data/ext/cargo-vendor/clap_lex-0.7.4/LICENSE-APACHE +0 -201
  1196. data/ext/cargo-vendor/clap_lex-0.7.4/LICENSE-MIT +0 -21
  1197. data/ext/cargo-vendor/clap_lex-0.7.4/README.md +0 -19
  1198. data/ext/cargo-vendor/clap_lex-0.7.4/src/lib.rs +0 -522
  1199. data/ext/cargo-vendor/codeowners-0.2.4/.cargo-checksum.json +0 -1
  1200. data/ext/cargo-vendor/codeowners-0.2.4/CONFIGURATION.md +0 -135
  1201. data/ext/cargo-vendor/codeowners-0.2.4/Cargo.lock +0 -1214
  1202. data/ext/cargo-vendor/codeowners-0.2.4/Cargo.toml +0 -90
  1203. data/ext/cargo-vendor/codeowners-0.2.4/README.md +0 -128
  1204. data/ext/cargo-vendor/codeowners-0.2.4/src/cache/file.rs +0 -173
  1205. data/ext/cargo-vendor/codeowners-0.2.4/src/ownership/mapper/directory_mapper.rs +0 -169
  1206. data/ext/cargo-vendor/codeowners-0.2.4/src/ownership/mapper/package_mapper.rs +0 -215
  1207. data/ext/cargo-vendor/codeowners-0.2.4/src/ownership.rs +0 -219
  1208. data/ext/cargo-vendor/codeowners-0.2.4/src/project.rs +0 -199
  1209. data/ext/cargo-vendor/codeowners-0.2.4/src/project_builder.rs +0 -230
  1210. data/ext/cargo-vendor/codeowners-0.2.4/src/runner.rs +0 -293
  1211. data/ext/cargo-vendor/codeowners-0.2.4/tests/fixtures/valid_project/.github/CODEOWNERS +0 -35
  1212. data/ext/cargo-vendor/codeowners-0.2.4/tests/fixtures/valid_project/config/code_ownership.yml +0 -10
  1213. data/ext/cargo-vendor/codeowners-0.2.4/tests/valid_project_test.rs +0 -237
  1214. data/ext/cargo-vendor/colorchoice-1.0.3/.cargo-checksum.json +0 -1
  1215. data/ext/cargo-vendor/colorchoice-1.0.3/Cargo.toml +0 -160
  1216. data/ext/cargo-vendor/colorchoice-1.0.3/README.md +0 -24
  1217. data/ext/cargo-vendor/colorchoice-1.0.3/src/lib.rs +0 -116
  1218. data/ext/cargo-vendor/errno-0.3.11/.cargo-checksum.json +0 -1
  1219. data/ext/cargo-vendor/errno-0.3.11/CHANGELOG.md +0 -122
  1220. data/ext/cargo-vendor/errno-0.3.11/Cargo.lock +0 -90
  1221. data/ext/cargo-vendor/errno-0.3.11/Cargo.toml +0 -67
  1222. data/ext/cargo-vendor/fast-glob-0.4.5/.cargo-checksum.json +0 -1
  1223. data/ext/cargo-vendor/fast-glob-0.4.5/Cargo.lock +0 -460
  1224. data/ext/cargo-vendor/fast-glob-0.4.5/Cargo.toml +0 -61
  1225. data/ext/cargo-vendor/getrandom-0.3.2/.cargo-checksum.json +0 -1
  1226. data/ext/cargo-vendor/getrandom-0.3.2/CHANGELOG.md +0 -605
  1227. data/ext/cargo-vendor/getrandom-0.3.2/Cargo.lock +0 -365
  1228. data/ext/cargo-vendor/getrandom-0.3.2/Cargo.toml +0 -147
  1229. data/ext/cargo-vendor/getrandom-0.3.2/README.md +0 -385
  1230. data/ext/cargo-vendor/getrandom-0.3.2/src/backends/wasi_p1.rs +0 -26
  1231. data/ext/cargo-vendor/getrandom-0.3.2/src/backends.rs +0 -180
  1232. data/ext/cargo-vendor/hashbrown-0.15.2/.cargo-checksum.json +0 -1
  1233. data/ext/cargo-vendor/hashbrown-0.15.2/CHANGELOG.md +0 -588
  1234. data/ext/cargo-vendor/hashbrown-0.15.2/Cargo.lock +0 -266
  1235. data/ext/cargo-vendor/hashbrown-0.15.2/Cargo.toml +0 -173
  1236. data/ext/cargo-vendor/hashbrown-0.15.2/README.md +0 -80
  1237. data/ext/cargo-vendor/hashbrown-0.15.2/benches/bench.rs +0 -331
  1238. data/ext/cargo-vendor/hashbrown-0.15.2/src/control/group/mod.rs +0 -35
  1239. data/ext/cargo-vendor/hashbrown-0.15.2/src/external_trait_impls/serde.rs +0 -220
  1240. data/ext/cargo-vendor/hashbrown-0.15.2/src/lib.rs +0 -181
  1241. data/ext/cargo-vendor/hashbrown-0.15.2/src/map.rs +0 -6512
  1242. data/ext/cargo-vendor/hashbrown-0.15.2/src/raw/alloc.rs +0 -86
  1243. data/ext/cargo-vendor/hashbrown-0.15.2/src/raw/mod.rs +0 -4383
  1244. data/ext/cargo-vendor/hashbrown-0.15.2/src/rustc_entry.rs +0 -567
  1245. data/ext/cargo-vendor/hashbrown-0.15.2/src/set.rs +0 -3108
  1246. data/ext/cargo-vendor/hashbrown-0.15.2/src/table.rs +0 -2383
  1247. data/ext/cargo-vendor/hashbrown-0.15.2/src/util.rs +0 -14
  1248. data/ext/cargo-vendor/hashbrown-0.15.2/tests/set.rs +0 -34
  1249. data/ext/cargo-vendor/indexmap-2.9.0/.cargo-checksum.json +0 -1
  1250. data/ext/cargo-vendor/indexmap-2.9.0/Cargo.lock +0 -338
  1251. data/ext/cargo-vendor/indexmap-2.9.0/Cargo.toml +0 -145
  1252. data/ext/cargo-vendor/indexmap-2.9.0/RELEASES.md +0 -557
  1253. data/ext/cargo-vendor/indexmap-2.9.0/benches/bench.rs +0 -763
  1254. data/ext/cargo-vendor/indexmap-2.9.0/benches/faststring.rs +0 -185
  1255. data/ext/cargo-vendor/indexmap-2.9.0/src/lib.rs +0 -300
  1256. data/ext/cargo-vendor/indexmap-2.9.0/src/map/core/entry.rs +0 -571
  1257. data/ext/cargo-vendor/indexmap-2.9.0/src/map/core/raw_entry_v1.rs +0 -665
  1258. data/ext/cargo-vendor/indexmap-2.9.0/src/map/core.rs +0 -738
  1259. data/ext/cargo-vendor/indexmap-2.9.0/src/map/iter.rs +0 -776
  1260. data/ext/cargo-vendor/indexmap-2.9.0/src/map/mutable.rs +0 -166
  1261. data/ext/cargo-vendor/indexmap-2.9.0/src/map/slice.rs +0 -631
  1262. data/ext/cargo-vendor/indexmap-2.9.0/src/map/tests.rs +0 -1008
  1263. data/ext/cargo-vendor/indexmap-2.9.0/src/map.rs +0 -1651
  1264. data/ext/cargo-vendor/indexmap-2.9.0/src/rayon/map.rs +0 -663
  1265. data/ext/cargo-vendor/indexmap-2.9.0/src/rayon/mod.rs +0 -16
  1266. data/ext/cargo-vendor/indexmap-2.9.0/src/rayon/set.rs +0 -756
  1267. data/ext/cargo-vendor/indexmap-2.9.0/src/set/iter.rs +0 -628
  1268. data/ext/cargo-vendor/indexmap-2.9.0/src/set/slice.rs +0 -379
  1269. data/ext/cargo-vendor/indexmap-2.9.0/src/set/tests.rs +0 -723
  1270. data/ext/cargo-vendor/indexmap-2.9.0/src/set.rs +0 -1301
  1271. data/ext/cargo-vendor/indexmap-2.9.0/tests/quick.rs +0 -759
  1272. data/ext/cargo-vendor/r-efi-5.2.0/.cargo-checksum.json +0 -1
  1273. data/ext/cargo-vendor/r-efi-5.2.0/AUTHORS +0 -73
  1274. data/ext/cargo-vendor/r-efi-5.2.0/Cargo.lock +0 -26
  1275. data/ext/cargo-vendor/r-efi-5.2.0/Cargo.toml +0 -77
  1276. data/ext/cargo-vendor/r-efi-5.2.0/NEWS.md +0 -292
  1277. data/ext/cargo-vendor/rb-sys-0.9.111/.cargo-checksum.json +0 -1
  1278. data/ext/cargo-vendor/rb-sys-0.9.111/Cargo.toml +0 -70
  1279. data/ext/cargo-vendor/rb-sys-0.9.111/readme.md +0 -72
  1280. data/ext/cargo-vendor/rb-sys-0.9.111/src/macros.rs +0 -286
  1281. data/ext/cargo-vendor/rb-sys-0.9.111/src/stable_api/compiled.c +0 -123
  1282. data/ext/cargo-vendor/rb-sys-0.9.111/src/stable_api/compiled.rs +0 -216
  1283. data/ext/cargo-vendor/rb-sys-0.9.111/src/stable_api/ruby_2_6.rs +0 -279
  1284. data/ext/cargo-vendor/rb-sys-0.9.111/src/stable_api/ruby_2_7.rs +0 -279
  1285. data/ext/cargo-vendor/rb-sys-0.9.111/src/stable_api/ruby_3_0.rs +0 -287
  1286. data/ext/cargo-vendor/rb-sys-0.9.111/src/stable_api/ruby_3_1.rs +0 -280
  1287. data/ext/cargo-vendor/rb-sys-0.9.111/src/stable_api/ruby_3_2.rs +0 -278
  1288. data/ext/cargo-vendor/rb-sys-0.9.111/src/stable_api/ruby_3_3.rs +0 -271
  1289. data/ext/cargo-vendor/rb-sys-0.9.111/src/stable_api/ruby_3_4.rs +0 -271
  1290. data/ext/cargo-vendor/rb-sys-0.9.111/src/stable_api.rs +0 -229
  1291. data/ext/cargo-vendor/rb-sys-0.9.111/src/utils.rs +0 -67
  1292. data/ext/cargo-vendor/rb-sys-build-0.9.111/.cargo-checksum.json +0 -1
  1293. data/ext/cargo-vendor/rb-sys-build-0.9.111/Cargo.toml +0 -71
  1294. data/ext/cargo-vendor/rb-sys-build-0.9.111/src/bindings/stable_api.rs +0 -206
  1295. data/ext/cargo-vendor/rb-sys-build-0.9.111/src/bindings.rs +0 -254
  1296. data/ext/cargo-vendor/rb-sys-build-0.9.111/src/cc.rs +0 -403
  1297. data/ext/cargo-vendor/rustix-1.0.5/.cargo-checksum.json +0 -1
  1298. data/ext/cargo-vendor/rustix-1.0.5/Cargo.lock +0 -1033
  1299. data/ext/cargo-vendor/rustix-1.0.5/Cargo.toml +0 -290
  1300. data/ext/cargo-vendor/rustix-1.0.5/src/backend/libc/fs/syscalls.rs +0 -2718
  1301. data/ext/cargo-vendor/rustix-1.0.5/src/backend/libc/io/syscalls.rs +0 -297
  1302. data/ext/cargo-vendor/rustix-1.0.5/src/backend/libc/net/sockopt.rs +0 -1339
  1303. data/ext/cargo-vendor/rustix-1.0.5/src/backend/libc/thread/syscalls.rs +0 -780
  1304. data/ext/cargo-vendor/rustix-1.0.5/src/backend/linux_raw/arch/aarch64.rs +0 -268
  1305. data/ext/cargo-vendor/rustix-1.0.5/src/backend/linux_raw/arch/arm.rs +0 -265
  1306. data/ext/cargo-vendor/rustix-1.0.5/src/backend/linux_raw/arch/mips.rs +0 -543
  1307. data/ext/cargo-vendor/rustix-1.0.5/src/backend/linux_raw/arch/mips32r6.rs +0 -543
  1308. data/ext/cargo-vendor/rustix-1.0.5/src/backend/linux_raw/arch/mips64.rs +0 -466
  1309. data/ext/cargo-vendor/rustix-1.0.5/src/backend/linux_raw/arch/mips64r6.rs +0 -470
  1310. data/ext/cargo-vendor/rustix-1.0.5/src/backend/linux_raw/arch/powerpc.rs +0 -413
  1311. data/ext/cargo-vendor/rustix-1.0.5/src/backend/linux_raw/arch/powerpc64.rs +0 -413
  1312. data/ext/cargo-vendor/rustix-1.0.5/src/backend/linux_raw/arch/riscv64.rs +0 -265
  1313. data/ext/cargo-vendor/rustix-1.0.5/src/backend/linux_raw/arch/s390x.rs +0 -287
  1314. data/ext/cargo-vendor/rustix-1.0.5/src/backend/linux_raw/arch/thumb.rs +0 -322
  1315. data/ext/cargo-vendor/rustix-1.0.5/src/backend/linux_raw/arch/x86.rs +0 -490
  1316. data/ext/cargo-vendor/rustix-1.0.5/src/backend/linux_raw/arch/x86_64.rs +0 -293
  1317. data/ext/cargo-vendor/rustix-1.0.5/src/backend/linux_raw/param/auxv.rs +0 -583
  1318. data/ext/cargo-vendor/rustix-1.0.5/src/backend/linux_raw/thread/syscalls.rs +0 -549
  1319. data/ext/cargo-vendor/rustix-1.0.5/src/lib.rs +0 -420
  1320. data/ext/cargo-vendor/rustix-1.0.5/src/not_implemented.rs +0 -349
  1321. data/ext/cargo-vendor/rustix-1.0.5/src/pid.rs +0 -111
  1322. data/ext/cargo-vendor/rustix-1.0.5/src/thread/futex.rs +0 -600
  1323. data/ext/cargo-vendor/rustix-1.0.5/src/thread/setns.rs +0 -139
  1324. data/ext/cargo-vendor/serde_json-1.0.140/.cargo-checksum.json +0 -1
  1325. data/ext/cargo-vendor/serde_json-1.0.140/Cargo.lock +0 -417
  1326. data/ext/cargo-vendor/serde_json-1.0.140/Cargo.toml +0 -157
  1327. data/ext/cargo-vendor/serde_json-1.0.140/src/lib.rs +0 -437
  1328. data/ext/cargo-vendor/serde_json-1.0.140/src/read.rs +0 -1089
  1329. data/ext/cargo-vendor/serde_json-1.0.140/src/ser.rs +0 -2277
  1330. data/ext/cargo-vendor/serde_json-1.0.140/src/value/mod.rs +0 -1035
  1331. data/ext/cargo-vendor/smallvec-1.15.0/.cargo-checksum.json +0 -1
  1332. data/ext/cargo-vendor/smallvec-1.15.0/Cargo.lock +0 -198
  1333. data/ext/cargo-vendor/smallvec-1.15.0/Cargo.toml +0 -110
  1334. data/ext/cargo-vendor/smallvec-1.15.0/src/lib.rs +0 -2603
  1335. data/ext/cargo-vendor/tempfile-3.19.1/.cargo-checksum.json +0 -1
  1336. data/ext/cargo-vendor/tempfile-3.19.1/CHANGELOG.md +0 -338
  1337. data/ext/cargo-vendor/tempfile-3.19.1/Cargo.lock +0 -183
  1338. data/ext/cargo-vendor/tempfile-3.19.1/Cargo.toml +0 -95
  1339. data/ext/cargo-vendor/tempfile-3.19.1/src/dir/imp/any.rs +0 -24
  1340. data/ext/cargo-vendor/tempfile-3.19.1/src/dir/imp/unix.rs +0 -26
  1341. data/ext/cargo-vendor/tempfile-3.19.1/src/dir/mod.rs +0 -500
  1342. data/ext/cargo-vendor/tempfile-3.19.1/src/file/mod.rs +0 -1055
  1343. data/ext/cargo-vendor/tempfile-3.19.1/src/lib.rs +0 -745
  1344. data/ext/cargo-vendor/tempfile-3.19.1/src/spooled.rs +0 -197
  1345. data/ext/cargo-vendor/tempfile-3.19.1/src/util.rs +0 -80
  1346. data/ext/cargo-vendor/tempfile-3.19.1/tests/env.rs +0 -15
  1347. data/ext/cargo-vendor/tempfile-3.19.1/tests/namedtempfile.rs +0 -531
  1348. data/ext/cargo-vendor/tempfile-3.19.1/tests/spooled.rs +0 -322
  1349. data/ext/cargo-vendor/tempfile-3.19.1/tests/tempdir.rs +0 -191
  1350. data/ext/cargo-vendor/tempfile-3.19.1/tests/tempfile.rs +0 -68
  1351. data/ext/cargo-vendor/thread_local-1.1.8/.cargo-checksum.json +0 -1
  1352. data/ext/cargo-vendor/thread_local-1.1.8/Cargo.toml +0 -43
  1353. data/ext/cargo-vendor/thread_local-1.1.8/README.md +0 -39
  1354. data/ext/cargo-vendor/thread_local-1.1.8/src/thread_id.rs +0 -206
  1355. data/ext/cargo-vendor/tracing-attributes-0.1.28/.cargo-checksum.json +0 -1
  1356. data/ext/cargo-vendor/tracing-attributes-0.1.28/CHANGELOG.md +0 -446
  1357. data/ext/cargo-vendor/tracing-attributes-0.1.28/Cargo.toml +0 -151
  1358. data/ext/cargo-vendor/tracing-attributes-0.1.28/README.md +0 -91
  1359. data/ext/cargo-vendor/tracing-attributes-0.1.28/src/attr.rs +0 -478
  1360. data/ext/cargo-vendor/tracing-attributes-0.1.28/src/expand.rs +0 -833
  1361. data/ext/cargo-vendor/tracing-attributes-0.1.28/src/lib.rs +0 -696
  1362. data/ext/cargo-vendor/tracing-attributes-0.1.28/tests/async_fn.rs +0 -491
  1363. data/ext/cargo-vendor/tracing-attributes-0.1.28/tests/err.rs +0 -328
  1364. data/ext/cargo-vendor/tracing-attributes-0.1.28/tests/instrument.rs +0 -326
  1365. data/ext/cargo-vendor/tracing-attributes-0.1.28/tests/ui/async_instrument.rs +0 -46
  1366. data/ext/cargo-vendor/tracing-attributes-0.1.28/tests/ui/async_instrument.stderr +0 -98
  1367. data/ext/cargo-vendor/tracing-attributes-0.1.28/tests/ui/const_instrument.stderr +0 -15
  1368. data/ext/cargo-vendor/tracing-attributes-0.1.28/tests/ui.rs +0 -14
  1369. data/ext/cargo-vendor/tracing-core-0.1.33/.cargo-checksum.json +0 -1
  1370. data/ext/cargo-vendor/tracing-core-0.1.33/CHANGELOG.md +0 -574
  1371. data/ext/cargo-vendor/tracing-core-0.1.33/Cargo.toml +0 -104
  1372. data/ext/cargo-vendor/tracing-core-0.1.33/README.md +0 -121
  1373. data/ext/cargo-vendor/tracing-core-0.1.33/src/callsite.rs +0 -618
  1374. data/ext/cargo-vendor/tracing-core-0.1.33/src/dispatcher.rs +0 -1069
  1375. data/ext/cargo-vendor/tracing-core-0.1.33/src/field.rs +0 -1320
  1376. data/ext/cargo-vendor/tracing-core-0.1.33/src/lib.rs +0 -302
  1377. data/ext/cargo-vendor/tracing-core-0.1.33/src/metadata.rs +0 -1114
  1378. data/ext/cargo-vendor/wasi-0.11.0+wasi-snapshot-preview1/.cargo-checksum.json +0 -1
  1379. data/ext/cargo-vendor/wasi-0.11.0+wasi-snapshot-preview1/Cargo.toml +0 -42
  1380. /data/ext/cargo-vendor/{anstream-0.6.18 → anstream-0.6.20}/LICENSE-APACHE +0 -0
  1381. /data/ext/cargo-vendor/{anstream-0.6.18 → anstream-0.6.20}/LICENSE-MIT +0 -0
  1382. /data/ext/cargo-vendor/{anstream-0.6.18 → anstream-0.6.20}/examples/dump-stream.rs +0 -0
  1383. /data/ext/cargo-vendor/{anstream-0.6.18 → anstream-0.6.20}/examples/query-stream.rs +0 -0
  1384. /data/ext/cargo-vendor/{anstream-0.6.18 → anstream-0.6.20}/src/adapter/mod.rs +0 -0
  1385. /data/ext/cargo-vendor/{anstream-0.6.18 → anstream-0.6.20}/src/auto.rs +0 -0
  1386. /data/ext/cargo-vendor/{anstream-0.6.18 → anstream-0.6.20}/src/buffer.rs +0 -0
  1387. /data/ext/cargo-vendor/{anstream-0.6.18 → anstream-0.6.20}/src/fmt.rs +0 -0
  1388. /data/ext/cargo-vendor/{anstream-0.6.18 → anstream-0.6.20}/src/strip.rs +0 -0
  1389. /data/ext/cargo-vendor/{anstyle-1.0.10 → anstyle-1.0.11}/LICENSE-APACHE +0 -0
  1390. /data/ext/cargo-vendor/{anstyle-query-1.1.2 → anstyle-1.0.11}/LICENSE-MIT +0 -0
  1391. /data/ext/cargo-vendor/{anstyle-1.0.10 → anstyle-1.0.11}/examples/dump-style.rs +0 -0
  1392. /data/ext/cargo-vendor/{anstyle-1.0.10 → anstyle-1.0.11}/src/macros.rs +0 -0
  1393. /data/ext/cargo-vendor/{anstyle-query-1.1.2 → anstyle-parse-0.2.7}/LICENSE-APACHE +0 -0
  1394. /data/ext/cargo-vendor/{clap-4.5.37 → anstyle-parse-0.2.7}/LICENSE-MIT +0 -0
  1395. /data/ext/cargo-vendor/{anstyle-parse-0.2.6 → anstyle-parse-0.2.7}/examples/parselog.rs +0 -0
  1396. /data/ext/cargo-vendor/{anstyle-parse-0.2.6 → anstyle-parse-0.2.7}/src/params.rs +0 -0
  1397. /data/ext/cargo-vendor/{anstyle-parse-0.2.6 → anstyle-parse-0.2.7}/src/state/codegen.rs +0 -0
  1398. /data/ext/cargo-vendor/{anstyle-parse-0.2.6 → anstyle-parse-0.2.7}/src/state/mod.rs +0 -0
  1399. /data/ext/cargo-vendor/{anstyle-parse-0.2.6 → anstyle-parse-0.2.7}/src/state/table.rs +0 -0
  1400. /data/ext/cargo-vendor/{anstyle-wincon-3.0.7 → anstyle-query-1.1.4}/LICENSE-APACHE +0 -0
  1401. /data/ext/cargo-vendor/{colorchoice-1.0.3 → anstyle-query-1.1.4}/LICENSE-MIT +0 -0
  1402. /data/ext/cargo-vendor/{anstyle-query-1.1.2 → anstyle-query-1.1.4}/examples/query.rs +0 -0
  1403. /data/ext/cargo-vendor/{clap-4.5.37 → anstyle-wincon-3.0.10}/LICENSE-APACHE +0 -0
  1404. /data/ext/cargo-vendor/{anstyle-wincon-3.0.7 → anstyle-wincon-3.0.10}/examples/dump-wincon.rs +0 -0
  1405. /data/ext/cargo-vendor/{anstyle-wincon-3.0.7 → anstyle-wincon-3.0.10}/examples/set-wincon.rs +0 -0
  1406. /data/ext/cargo-vendor/{anstyle-wincon-3.0.7 → anstyle-wincon-3.0.10}/src/ansi.rs +0 -0
  1407. /data/ext/cargo-vendor/{anstyle-wincon-3.0.7 → anstyle-wincon-3.0.10}/src/stream.rs +0 -0
  1408. /data/ext/cargo-vendor/{colorchoice-1.0.3 → clap-4.5.43}/LICENSE-APACHE +0 -0
  1409. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/README.md +0 -0
  1410. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/cargo-example-derive.md +0 -0
  1411. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/cargo-example-derive.rs +0 -0
  1412. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/cargo-example.md +0 -0
  1413. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/cargo-example.rs +0 -0
  1414. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/demo.md +0 -0
  1415. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/demo.rs +0 -0
  1416. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/derive_ref/augment_args.rs +0 -0
  1417. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/derive_ref/augment_subcommands.rs +0 -0
  1418. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/derive_ref/flatten_hand_args.rs +0 -0
  1419. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/derive_ref/hand_subcommand.rs +0 -0
  1420. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/derive_ref/interop_tests.md +0 -0
  1421. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/escaped-positional-derive.md +0 -0
  1422. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/escaped-positional-derive.rs +0 -0
  1423. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/escaped-positional.md +0 -0
  1424. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/escaped-positional.rs +0 -0
  1425. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/find.md +0 -0
  1426. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/find.rs +0 -0
  1427. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/git-derive.md +0 -0
  1428. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/git-derive.rs +0 -0
  1429. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/git.md +0 -0
  1430. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/git.rs +0 -0
  1431. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/multicall-busybox.md +0 -0
  1432. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/multicall-busybox.rs +0 -0
  1433. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/multicall-hostname.md +0 -0
  1434. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/multicall-hostname.rs +0 -0
  1435. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/pacman.md +0 -0
  1436. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/pacman.rs +0 -0
  1437. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/repl-derive.rs +0 -0
  1438. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/repl.rs +0 -0
  1439. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/tutorial_builder/01_quick.md +0 -0
  1440. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/tutorial_builder/01_quick.rs +0 -0
  1441. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/tutorial_builder/02_app_settings.md +0 -0
  1442. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/tutorial_builder/02_app_settings.rs +0 -0
  1443. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/tutorial_builder/02_apps.md +0 -0
  1444. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/tutorial_builder/02_apps.rs +0 -0
  1445. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/tutorial_builder/02_crate.md +0 -0
  1446. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/tutorial_builder/02_crate.rs +0 -0
  1447. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/tutorial_builder/03_01_flag_bool.md +0 -0
  1448. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/tutorial_builder/03_01_flag_bool.rs +0 -0
  1449. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/tutorial_builder/03_01_flag_count.md +0 -0
  1450. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/tutorial_builder/03_01_flag_count.rs +0 -0
  1451. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/tutorial_builder/03_02_option.md +0 -0
  1452. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/tutorial_builder/03_02_option.rs +0 -0
  1453. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/tutorial_builder/03_02_option_mult.md +0 -0
  1454. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/tutorial_builder/03_02_option_mult.rs +0 -0
  1455. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/tutorial_builder/03_03_positional.md +0 -0
  1456. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/tutorial_builder/03_03_positional.rs +0 -0
  1457. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/tutorial_builder/03_03_positional_mult.md +0 -0
  1458. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/tutorial_builder/03_03_positional_mult.rs +0 -0
  1459. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/tutorial_builder/03_04_subcommands.rs +0 -0
  1460. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/tutorial_builder/03_05_default_values.md +0 -0
  1461. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/tutorial_builder/03_05_default_values.rs +0 -0
  1462. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/tutorial_builder/03_06_required.md +0 -0
  1463. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/tutorial_builder/03_06_required.rs +0 -0
  1464. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/tutorial_builder/04_01_enum.md +0 -0
  1465. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/tutorial_builder/04_01_enum.rs +0 -0
  1466. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/tutorial_builder/04_01_possible.md +0 -0
  1467. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/tutorial_builder/04_01_possible.rs +0 -0
  1468. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/tutorial_builder/04_02_parse.md +0 -0
  1469. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/tutorial_builder/04_02_parse.rs +0 -0
  1470. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/tutorial_builder/04_02_validate.md +0 -0
  1471. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/tutorial_builder/04_02_validate.rs +0 -0
  1472. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/tutorial_builder/04_03_relations.md +0 -0
  1473. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/tutorial_builder/04_03_relations.rs +0 -0
  1474. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/tutorial_builder/04_04_custom.md +0 -0
  1475. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/tutorial_builder/04_04_custom.rs +0 -0
  1476. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/tutorial_builder/05_01_assert.rs +0 -0
  1477. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/tutorial_derive/01_quick.md +0 -0
  1478. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/tutorial_derive/01_quick.rs +0 -0
  1479. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/tutorial_derive/02_app_settings.md +0 -0
  1480. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/tutorial_derive/02_app_settings.rs +0 -0
  1481. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/tutorial_derive/02_apps.md +0 -0
  1482. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/tutorial_derive/02_apps.rs +0 -0
  1483. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/tutorial_derive/02_crate.md +0 -0
  1484. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/tutorial_derive/02_crate.rs +0 -0
  1485. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/tutorial_derive/03_01_flag_bool.md +0 -0
  1486. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/tutorial_derive/03_01_flag_bool.rs +0 -0
  1487. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/tutorial_derive/03_01_flag_count.md +0 -0
  1488. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/tutorial_derive/03_01_flag_count.rs +0 -0
  1489. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/tutorial_derive/03_02_option.md +0 -0
  1490. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/tutorial_derive/03_02_option.rs +0 -0
  1491. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/tutorial_derive/03_02_option_mult.md +0 -0
  1492. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/tutorial_derive/03_02_option_mult.rs +0 -0
  1493. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/tutorial_derive/03_03_positional.md +0 -0
  1494. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/tutorial_derive/03_03_positional.rs +0 -0
  1495. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/tutorial_derive/03_03_positional_mult.md +0 -0
  1496. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/tutorial_derive/03_03_positional_mult.rs +0 -0
  1497. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/tutorial_derive/03_04_subcommands.rs +0 -0
  1498. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/tutorial_derive/03_04_subcommands_alt.rs +0 -0
  1499. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/tutorial_derive/03_05_default_values.md +0 -0
  1500. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/tutorial_derive/03_05_default_values.rs +0 -0
  1501. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/tutorial_derive/03_06_optional.md +0 -0
  1502. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/tutorial_derive/03_06_optional.rs +0 -0
  1503. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/tutorial_derive/04_01_enum.md +0 -0
  1504. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/tutorial_derive/04_01_enum.rs +0 -0
  1505. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/tutorial_derive/04_02_parse.md +0 -0
  1506. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/tutorial_derive/04_02_parse.rs +0 -0
  1507. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/tutorial_derive/04_02_validate.md +0 -0
  1508. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/tutorial_derive/04_02_validate.rs +0 -0
  1509. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/tutorial_derive/04_03_relations.md +0 -0
  1510. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/tutorial_derive/04_03_relations.rs +0 -0
  1511. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/tutorial_derive/04_04_custom.md +0 -0
  1512. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/tutorial_derive/04_04_custom.rs +0 -0
  1513. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/tutorial_derive/05_01_assert.rs +0 -0
  1514. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/typed-derive.md +0 -0
  1515. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/examples/typed-derive.rs +0 -0
  1516. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/src/_cookbook/cargo_example.rs +0 -0
  1517. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/src/_cookbook/cargo_example_derive.rs +0 -0
  1518. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/src/_cookbook/escaped_positional.rs +0 -0
  1519. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/src/_cookbook/escaped_positional_derive.rs +0 -0
  1520. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/src/_cookbook/find.rs +0 -0
  1521. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/src/_cookbook/git.rs +0 -0
  1522. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/src/_cookbook/git_derive.rs +0 -0
  1523. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/src/_cookbook/mod.rs +0 -0
  1524. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/src/_cookbook/multicall_busybox.rs +0 -0
  1525. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/src/_cookbook/multicall_hostname.rs +0 -0
  1526. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/src/_cookbook/pacman.rs +0 -0
  1527. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/src/_cookbook/repl.rs +0 -0
  1528. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/src/_cookbook/repl_derive.rs +0 -0
  1529. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/src/_cookbook/typed_derive.rs +0 -0
  1530. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/src/_derive/_tutorial.rs +0 -0
  1531. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/src/_features.rs +0 -0
  1532. /data/ext/cargo-vendor/{clap-4.5.37 → clap-4.5.43}/src/_tutorial.rs +0 -0
  1533. /data/ext/cargo-vendor/{clap_builder-4.5.37 → clap_builder-4.5.43}/src/builder/app_settings.rs +0 -0
  1534. /data/ext/cargo-vendor/{clap_builder-4.5.37 → clap_builder-4.5.43}/src/builder/arg.rs +0 -0
  1535. /data/ext/cargo-vendor/{clap_builder-4.5.37 → clap_builder-4.5.43}/src/builder/arg_group.rs +0 -0
  1536. /data/ext/cargo-vendor/{clap_builder-4.5.37 → clap_builder-4.5.43}/src/builder/arg_predicate.rs +0 -0
  1537. /data/ext/cargo-vendor/{clap_builder-4.5.37 → clap_builder-4.5.43}/src/builder/arg_settings.rs +0 -0
  1538. /data/ext/cargo-vendor/{clap_builder-4.5.37 → clap_builder-4.5.43}/src/builder/debug_asserts.rs +0 -0
  1539. /data/ext/cargo-vendor/{clap_builder-4.5.37 → clap_builder-4.5.43}/src/builder/ext.rs +0 -0
  1540. /data/ext/cargo-vendor/{clap_builder-4.5.37 → clap_builder-4.5.43}/src/builder/mod.rs +0 -0
  1541. /data/ext/cargo-vendor/{clap_builder-4.5.37 → clap_builder-4.5.43}/src/builder/os_str.rs +0 -0
  1542. /data/ext/cargo-vendor/{clap_builder-4.5.37 → clap_builder-4.5.43}/src/builder/possible_value.rs +0 -0
  1543. /data/ext/cargo-vendor/{clap_builder-4.5.37 → clap_builder-4.5.43}/src/builder/range.rs +0 -0
  1544. /data/ext/cargo-vendor/{clap_builder-4.5.37 → clap_builder-4.5.43}/src/builder/resettable.rs +0 -0
  1545. /data/ext/cargo-vendor/{clap_builder-4.5.37 → clap_builder-4.5.43}/src/builder/str.rs +0 -0
  1546. /data/ext/cargo-vendor/{clap_builder-4.5.37 → clap_builder-4.5.43}/src/builder/styled_str.rs +0 -0
  1547. /data/ext/cargo-vendor/{clap_builder-4.5.37 → clap_builder-4.5.43}/src/builder/tests.rs +0 -0
  1548. /data/ext/cargo-vendor/{clap_builder-4.5.37 → clap_builder-4.5.43}/src/builder/value_hint.rs +0 -0
  1549. /data/ext/cargo-vendor/{clap_builder-4.5.37 → clap_builder-4.5.43}/src/builder/value_parser.rs +0 -0
  1550. /data/ext/cargo-vendor/{clap_builder-4.5.37 → clap_builder-4.5.43}/src/derive.rs +0 -0
  1551. /data/ext/cargo-vendor/{clap_builder-4.5.37 → clap_builder-4.5.43}/src/error/context.rs +0 -0
  1552. /data/ext/cargo-vendor/{clap_builder-4.5.37 → clap_builder-4.5.43}/src/error/format.rs +0 -0
  1553. /data/ext/cargo-vendor/{clap_builder-4.5.37 → clap_builder-4.5.43}/src/error/mod.rs +0 -0
  1554. /data/ext/cargo-vendor/{clap_builder-4.5.37 → clap_builder-4.5.43}/src/mkeymap.rs +0 -0
  1555. /data/ext/cargo-vendor/{clap_builder-4.5.37 → clap_builder-4.5.43}/src/output/fmt.rs +0 -0
  1556. /data/ext/cargo-vendor/{clap_builder-4.5.37 → clap_builder-4.5.43}/src/output/help.rs +0 -0
  1557. /data/ext/cargo-vendor/{clap_builder-4.5.37 → clap_builder-4.5.43}/src/output/mod.rs +0 -0
  1558. /data/ext/cargo-vendor/{clap_builder-4.5.37 → clap_builder-4.5.43}/src/output/textwrap/core.rs +0 -0
  1559. /data/ext/cargo-vendor/{clap_builder-4.5.37 → clap_builder-4.5.43}/src/output/textwrap/mod.rs +0 -0
  1560. /data/ext/cargo-vendor/{clap_builder-4.5.37 → clap_builder-4.5.43}/src/output/textwrap/word_separators.rs +0 -0
  1561. /data/ext/cargo-vendor/{clap_builder-4.5.37 → clap_builder-4.5.43}/src/output/textwrap/wrap_algorithms.rs +0 -0
  1562. /data/ext/cargo-vendor/{clap_builder-4.5.37 → clap_builder-4.5.43}/src/output/usage.rs +0 -0
  1563. /data/ext/cargo-vendor/{clap_builder-4.5.37 → clap_builder-4.5.43}/src/parser/arg_matcher.rs +0 -0
  1564. /data/ext/cargo-vendor/{clap_builder-4.5.37 → clap_builder-4.5.43}/src/parser/error.rs +0 -0
  1565. /data/ext/cargo-vendor/{clap_builder-4.5.37 → clap_builder-4.5.43}/src/parser/features/mod.rs +0 -0
  1566. /data/ext/cargo-vendor/{clap_builder-4.5.37 → clap_builder-4.5.43}/src/parser/features/suggestions.rs +0 -0
  1567. /data/ext/cargo-vendor/{clap_builder-4.5.37 → clap_builder-4.5.43}/src/parser/matches/matched_arg.rs +0 -0
  1568. /data/ext/cargo-vendor/{clap_builder-4.5.37 → clap_builder-4.5.43}/src/parser/matches/mod.rs +0 -0
  1569. /data/ext/cargo-vendor/{clap_builder-4.5.37 → clap_builder-4.5.43}/src/parser/matches/value_source.rs +0 -0
  1570. /data/ext/cargo-vendor/{clap_builder-4.5.37 → clap_builder-4.5.43}/src/parser/mod.rs +0 -0
  1571. /data/ext/cargo-vendor/{clap_builder-4.5.37 → clap_builder-4.5.43}/src/parser/parser.rs +0 -0
  1572. /data/ext/cargo-vendor/{clap_builder-4.5.37 → clap_builder-4.5.43}/src/parser/validator.rs +0 -0
  1573. /data/ext/cargo-vendor/{clap_builder-4.5.37 → clap_builder-4.5.43}/src/util/any_value.rs +0 -0
  1574. /data/ext/cargo-vendor/{clap_builder-4.5.37 → clap_builder-4.5.43}/src/util/color.rs +0 -0
  1575. /data/ext/cargo-vendor/{clap_builder-4.5.37 → clap_builder-4.5.43}/src/util/flat_map.rs +0 -0
  1576. /data/ext/cargo-vendor/{clap_builder-4.5.37 → clap_builder-4.5.43}/src/util/flat_set.rs +0 -0
  1577. /data/ext/cargo-vendor/{clap_builder-4.5.37 → clap_builder-4.5.43}/src/util/graph.rs +0 -0
  1578. /data/ext/cargo-vendor/{clap_builder-4.5.37 → clap_builder-4.5.43}/src/util/id.rs +0 -0
  1579. /data/ext/cargo-vendor/{clap_builder-4.5.37 → clap_builder-4.5.43}/src/util/mod.rs +0 -0
  1580. /data/ext/cargo-vendor/{clap_builder-4.5.37 → clap_builder-4.5.43}/src/util/str_to_bool.rs +0 -0
  1581. /data/ext/cargo-vendor/{clap_derive-4.5.32 → clap_derive-4.5.41}/src/attr.rs +0 -0
  1582. /data/ext/cargo-vendor/{clap_derive-4.5.32 → clap_derive-4.5.41}/src/derives/args.rs +0 -0
  1583. /data/ext/cargo-vendor/{clap_derive-4.5.32 → clap_derive-4.5.41}/src/derives/into_app.rs +0 -0
  1584. /data/ext/cargo-vendor/{clap_derive-4.5.32 → clap_derive-4.5.41}/src/derives/mod.rs +0 -0
  1585. /data/ext/cargo-vendor/{clap_derive-4.5.32 → clap_derive-4.5.41}/src/derives/parser.rs +0 -0
  1586. /data/ext/cargo-vendor/{clap_derive-4.5.32 → clap_derive-4.5.41}/src/derives/subcommand.rs +0 -0
  1587. /data/ext/cargo-vendor/{clap_derive-4.5.32 → clap_derive-4.5.41}/src/derives/value_enum.rs +0 -0
  1588. /data/ext/cargo-vendor/{clap_derive-4.5.32 → clap_derive-4.5.41}/src/dummies.rs +0 -0
  1589. /data/ext/cargo-vendor/{clap_derive-4.5.32 → clap_derive-4.5.41}/src/item.rs +0 -0
  1590. /data/ext/cargo-vendor/{clap_derive-4.5.32 → clap_derive-4.5.41}/src/lib.rs +0 -0
  1591. /data/ext/cargo-vendor/{clap_derive-4.5.32 → clap_derive-4.5.41}/src/macros.rs +0 -0
  1592. /data/ext/cargo-vendor/{clap_derive-4.5.32 → clap_derive-4.5.41}/src/utils/doc_comments.rs +0 -0
  1593. /data/ext/cargo-vendor/{clap_derive-4.5.32 → clap_derive-4.5.41}/src/utils/error.rs +0 -0
  1594. /data/ext/cargo-vendor/{clap_derive-4.5.32 → clap_derive-4.5.41}/src/utils/mod.rs +0 -0
  1595. /data/ext/cargo-vendor/{clap_derive-4.5.32 → clap_derive-4.5.41}/src/utils/spanned.rs +0 -0
  1596. /data/ext/cargo-vendor/{clap_derive-4.5.32 → clap_derive-4.5.41}/src/utils/ty.rs +0 -0
  1597. /data/ext/cargo-vendor/{clap_lex-0.7.4 → clap_lex-0.7.5}/src/ext.rs +0 -0
  1598. /data/ext/cargo-vendor/{codeowners-0.2.4 → codeowners-0.2.5}/.github/workflows/audit.yml +0 -0
  1599. /data/ext/cargo-vendor/{codeowners-0.2.4 → codeowners-0.2.5}/.github/workflows/ci.yml +0 -0
  1600. /data/ext/cargo-vendor/{codeowners-0.2.4 → codeowners-0.2.5}/.github/workflows/dotslash-config.json +0 -0
  1601. /data/ext/cargo-vendor/{codeowners-0.2.4 → codeowners-0.2.5}/.rustfmt.toml +0 -0
  1602. /data/ext/cargo-vendor/{codeowners-0.2.4 → codeowners-0.2.5}/.rusty-hook.toml +0 -0
  1603. /data/ext/cargo-vendor/{codeowners-0.2.4 → codeowners-0.2.5}/dev/run_benchmarks.sh +0 -0
  1604. /data/ext/cargo-vendor/{codeowners-0.2.4 → codeowners-0.2.5}/rust-toolchain.toml +0 -0
  1605. /data/ext/cargo-vendor/{codeowners-0.2.4 → codeowners-0.2.5}/src/cache/mod.rs +0 -0
  1606. /data/ext/cargo-vendor/{codeowners-0.2.4 → codeowners-0.2.5}/src/cache/noop.rs +0 -0
  1607. /data/ext/cargo-vendor/{codeowners-0.2.4 → codeowners-0.2.5}/src/cli.rs +0 -0
  1608. /data/ext/cargo-vendor/{codeowners-0.2.4 → codeowners-0.2.5}/src/common_test.rs +0 -0
  1609. /data/ext/cargo-vendor/{codeowners-0.2.4 → codeowners-0.2.5}/src/config.rs +0 -0
  1610. /data/ext/cargo-vendor/{codeowners-0.2.4 → codeowners-0.2.5}/src/lib.rs +0 -0
  1611. /data/ext/cargo-vendor/{codeowners-0.2.4 → codeowners-0.2.5}/src/main.rs +0 -0
  1612. /data/ext/cargo-vendor/{codeowners-0.2.4 → codeowners-0.2.5}/src/ownership/file_generator.rs +0 -0
  1613. /data/ext/cargo-vendor/{codeowners-0.2.4 → codeowners-0.2.5}/src/ownership/file_owner_finder.rs +0 -0
  1614. /data/ext/cargo-vendor/{codeowners-0.2.4 → codeowners-0.2.5}/src/ownership/mapper/escaper.rs +0 -0
  1615. /data/ext/cargo-vendor/{codeowners-0.2.4 → codeowners-0.2.5}/src/ownership/mapper/team_file_mapper.rs +0 -0
  1616. /data/ext/cargo-vendor/{codeowners-0.2.4 → codeowners-0.2.5}/src/ownership/mapper/team_gem_mapper.rs +0 -0
  1617. /data/ext/cargo-vendor/{codeowners-0.2.4 → codeowners-0.2.5}/src/ownership/mapper/team_glob_mapper.rs +0 -0
  1618. /data/ext/cargo-vendor/{codeowners-0.2.4 → codeowners-0.2.5}/src/ownership/mapper/team_yml_mapper.rs +0 -0
  1619. /data/ext/cargo-vendor/{codeowners-0.2.4 → codeowners-0.2.5}/src/ownership/mapper.rs +0 -0
  1620. /data/ext/cargo-vendor/{codeowners-0.2.4 → codeowners-0.2.5}/src/ownership/parser.rs +0 -0
  1621. /data/ext/cargo-vendor/{codeowners-0.2.4 → codeowners-0.2.5}/src/ownership/tests.rs +0 -0
  1622. /data/ext/cargo-vendor/{codeowners-0.2.4 → codeowners-0.2.5}/src/ownership/validator.rs +0 -0
  1623. /data/ext/cargo-vendor/{codeowners-0.2.4 → codeowners-0.2.5}/src/project_file_builder.rs +0 -0
  1624. /data/ext/cargo-vendor/{codeowners-0.2.4 → codeowners-0.2.5}/tests/cache_test.rs +0 -0
  1625. /data/ext/cargo-vendor/{codeowners-0.2.4 → codeowners-0.2.5}/tests/common/mod.rs +0 -0
  1626. /data/ext/cargo-vendor/{codeowners-0.2.4 → codeowners-0.2.5}/tests/fixtures/invalid_project/.github/CODEOWNERS +0 -0
  1627. /data/ext/cargo-vendor/{codeowners-0.2.4 → codeowners-0.2.5}/tests/fixtures/invalid_project/config/code_ownership.yml +0 -0
  1628. /data/ext/cargo-vendor/{codeowners-0.2.4 → codeowners-0.2.5}/tests/fixtures/invalid_project/config/teams/payments.yml +0 -0
  1629. /data/ext/cargo-vendor/{codeowners-0.2.4 → codeowners-0.2.5}/tests/fixtures/invalid_project/config/teams/payroll.yml +0 -0
  1630. /data/ext/cargo-vendor/{codeowners-0.2.4 → codeowners-0.2.5}/tests/fixtures/invalid_project/gems/payroll_calculator/calculator.rb +0 -0
  1631. /data/ext/cargo-vendor/{codeowners-0.2.4 → codeowners-0.2.5}/tests/fixtures/invalid_project/ruby/app/models/bank_account.rb +0 -0
  1632. /data/ext/cargo-vendor/{codeowners-0.2.4 → codeowners-0.2.5}/tests/fixtures/invalid_project/ruby/app/models/blockchain.rb +0 -0
  1633. /data/ext/cargo-vendor/{codeowners-0.2.4 → codeowners-0.2.5}/tests/fixtures/invalid_project/ruby/app/models/payroll.rb +0 -0
  1634. /data/ext/cargo-vendor/{codeowners-0.2.4 → codeowners-0.2.5}/tests/fixtures/invalid_project/ruby/app/payments/nacha.rb +0 -0
  1635. /data/ext/cargo-vendor/{codeowners-0.2.4 → codeowners-0.2.5}/tests/fixtures/invalid_project/ruby/app/services/.codeowner +0 -0
  1636. /data/ext/cargo-vendor/{codeowners-0.2.4 → codeowners-0.2.5}/tests/fixtures/invalid_project/ruby/app/services/multi_owned.rb +0 -0
  1637. /data/ext/cargo-vendor/{codeowners-0.2.4 → codeowners-0.2.5}/tests/fixtures/invalid_project/ruby/app/unowned.rb +0 -0
  1638. /data/ext/cargo-vendor/{codeowners-0.2.4 → codeowners-0.2.5}/tests/fixtures/invalid_project/ruby/packages/payroll_flow/package.yml +0 -0
  1639. /data/ext/cargo-vendor/{codeowners-0.2.4 → codeowners-0.2.5}/tests/fixtures/multiple-directory-owners/.github/CODEOWNERS +0 -0
  1640. /data/ext/cargo-vendor/{codeowners-0.2.4 → codeowners-0.2.5}/tests/fixtures/multiple-directory-owners/app/consumers/.codeowner +0 -0
  1641. /data/ext/cargo-vendor/{codeowners-0.2.4 → codeowners-0.2.5}/tests/fixtures/multiple-directory-owners/app/consumers/deep/nesting/nestdir/deep_file.rb +0 -0
  1642. /data/ext/cargo-vendor/{codeowners-0.2.4 → codeowners-0.2.5}/tests/fixtures/multiple-directory-owners/app/consumers/one_owner.rb +0 -0
  1643. /data/ext/cargo-vendor/{codeowners-0.2.4 → codeowners-0.2.5}/tests/fixtures/multiple-directory-owners/app/services/.codeowner +0 -0
  1644. /data/ext/cargo-vendor/{codeowners-0.2.4 → codeowners-0.2.5}/tests/fixtures/multiple-directory-owners/app/services/exciting/.codeowner +0 -0
  1645. /data/ext/cargo-vendor/{codeowners-0.2.4 → codeowners-0.2.5}/tests/fixtures/multiple-directory-owners/app/services/exciting/some_other_file.rb +0 -0
  1646. /data/ext/cargo-vendor/{codeowners-0.2.4 → codeowners-0.2.5}/tests/fixtures/multiple-directory-owners/config/code_ownership.yml +0 -0
  1647. /data/ext/cargo-vendor/{codeowners-0.2.4 → codeowners-0.2.5}/tests/fixtures/multiple-directory-owners/config/teams/bar.yml +0 -0
  1648. /data/ext/cargo-vendor/{codeowners-0.2.4 → codeowners-0.2.5}/tests/fixtures/multiple-directory-owners/config/teams/foo.yml +0 -0
  1649. /data/ext/cargo-vendor/{codeowners-0.2.4 → codeowners-0.2.5}/tests/fixtures/valid_project/.ignore +0 -0
  1650. /data/ext/cargo-vendor/{codeowners-0.2.4 → codeowners-0.2.5}/tests/fixtures/valid_project/config/teams/payments.yml +0 -0
  1651. /data/ext/cargo-vendor/{codeowners-0.2.4 → codeowners-0.2.5}/tests/fixtures/valid_project/config/teams/payroll.yml +0 -0
  1652. /data/ext/cargo-vendor/{codeowners-0.2.4 → codeowners-0.2.5}/tests/fixtures/valid_project/gems/payroll_calculator/calculator.rb +0 -0
  1653. /data/ext/cargo-vendor/{codeowners-0.2.4 → codeowners-0.2.5}/tests/fixtures/valid_project/javascript/packages/PayrollFlow/index.tsx +0 -0
  1654. /data/ext/cargo-vendor/{codeowners-0.2.4 → codeowners-0.2.5}/tests/fixtures/valid_project/javascript/packages/PayrollFlow/package.json +0 -0
  1655. /data/ext/cargo-vendor/{codeowners-0.2.4 → codeowners-0.2.5}/tests/fixtures/valid_project/javascript/packages/items/(special)/.codeowner +0 -0
  1656. /data/ext/cargo-vendor/{codeowners-0.2.4 → codeowners-0.2.5}/tests/fixtures/valid_project/javascript/packages/items/(special)/pay.ts +0 -0
  1657. /data/ext/cargo-vendor/{codeowners-0.2.4 → codeowners-0.2.5}/tests/fixtures/valid_project/javascript/packages/items/.codeowner +0 -0
  1658. /data/ext/cargo-vendor/{codeowners-0.2.4 → codeowners-0.2.5}/tests/fixtures/valid_project/javascript/packages/items/item.ts +0 -0
  1659. /data/ext/cargo-vendor/{codeowners-0.2.4 → codeowners-0.2.5}/tests/fixtures/valid_project/ruby/app/models/bank_account.rb +0 -0
  1660. /data/ext/cargo-vendor/{codeowners-0.2.4 → codeowners-0.2.5}/tests/fixtures/valid_project/ruby/app/models/payroll.rb +0 -0
  1661. /data/ext/cargo-vendor/{codeowners-0.2.4 → codeowners-0.2.5}/tests/fixtures/valid_project/ruby/app/payments/foo/.codeowner +0 -0
  1662. /data/ext/cargo-vendor/{codeowners-0.2.4 → codeowners-0.2.5}/tests/fixtures/valid_project/ruby/app/payments/foo/ownedby_payroll.rb +0 -0
  1663. /data/ext/cargo-vendor/{codeowners-0.2.4 → codeowners-0.2.5}/tests/fixtures/valid_project/ruby/app/payments/nacha.rb +0 -0
  1664. /data/ext/cargo-vendor/{codeowners-0.2.4 → codeowners-0.2.5}/tests/fixtures/valid_project/ruby/app/payroll/.codeowner +0 -0
  1665. /data/ext/cargo-vendor/{codeowners-0.2.4 → codeowners-0.2.5}/tests/fixtures/valid_project/ruby/app/payroll/payroll.rb +0 -0
  1666. /data/ext/cargo-vendor/{codeowners-0.2.4 → codeowners-0.2.5}/tests/fixtures/valid_project/ruby/ignored_files/git_ignored.rb +0 -0
  1667. /data/ext/cargo-vendor/{codeowners-0.2.4 → codeowners-0.2.5}/tests/fixtures/valid_project/ruby/packages/payroll_flow/package.yml +0 -0
  1668. /data/ext/cargo-vendor/{codeowners-0.2.4 → codeowners-0.2.5}/tests/invalid_project_structure_test.rs +0 -0
  1669. /data/ext/cargo-vendor/{codeowners-0.2.4 → codeowners-0.2.5}/tests/invalid_project_test.rs +0 -0
  1670. /data/ext/cargo-vendor/{codeowners-0.2.4 → codeowners-0.2.5}/tests/multiple_directory_owners_test.rs +0 -0
  1671. /data/ext/cargo-vendor/{codeowners-0.2.4 → codeowners-0.2.5}/tmp/.gitkeep +0 -0
  1672. /data/ext/cargo-vendor/{errno-0.3.11 → errno-0.3.13}/LICENSE-APACHE +0 -0
  1673. /data/ext/cargo-vendor/{errno-0.3.11 → errno-0.3.13}/LICENSE-MIT +0 -0
  1674. /data/ext/cargo-vendor/{errno-0.3.11 → errno-0.3.13}/README.md +0 -0
  1675. /data/ext/cargo-vendor/{errno-0.3.11 → errno-0.3.13}/clippy.toml +0 -0
  1676. /data/ext/cargo-vendor/{errno-0.3.11 → errno-0.3.13}/src/hermit.rs +0 -0
  1677. /data/ext/cargo-vendor/{errno-0.3.11 → errno-0.3.13}/src/lib.rs +0 -0
  1678. /data/ext/cargo-vendor/{errno-0.3.11 → errno-0.3.13}/src/unix.rs +0 -0
  1679. /data/ext/cargo-vendor/{errno-0.3.11 → errno-0.3.13}/src/wasi.rs +0 -0
  1680. /data/ext/cargo-vendor/{errno-0.3.11 → errno-0.3.13}/src/windows.rs +0 -0
  1681. /data/ext/cargo-vendor/{fast-glob-0.4.5 → fast-glob-1.0.0}/src/lib.rs +0 -0
  1682. /data/ext/cargo-vendor/{getrandom-0.3.2 → getrandom-0.3.3}/LICENSE-APACHE +0 -0
  1683. /data/ext/cargo-vendor/{getrandom-0.3.2 → getrandom-0.3.3}/LICENSE-MIT +0 -0
  1684. /data/ext/cargo-vendor/{getrandom-0.3.2 → getrandom-0.3.3}/SECURITY.md +0 -0
  1685. /data/ext/cargo-vendor/{getrandom-0.3.2 → getrandom-0.3.3}/benches/buffer.rs +0 -0
  1686. /data/ext/cargo-vendor/{getrandom-0.3.2 → getrandom-0.3.3}/build.rs +0 -0
  1687. /data/ext/cargo-vendor/{getrandom-0.3.2 → getrandom-0.3.3}/src/backends/apple_other.rs +0 -0
  1688. /data/ext/cargo-vendor/{getrandom-0.3.2 → getrandom-0.3.3}/src/backends/custom.rs +0 -0
  1689. /data/ext/cargo-vendor/{getrandom-0.3.2 → getrandom-0.3.3}/src/backends/efi_rng.rs +0 -0
  1690. /data/ext/cargo-vendor/{getrandom-0.3.2 → getrandom-0.3.3}/src/backends/esp_idf.rs +0 -0
  1691. /data/ext/cargo-vendor/{getrandom-0.3.2 → getrandom-0.3.3}/src/backends/fuchsia.rs +0 -0
  1692. /data/ext/cargo-vendor/{getrandom-0.3.2 → getrandom-0.3.3}/src/backends/getentropy.rs +0 -0
  1693. /data/ext/cargo-vendor/{getrandom-0.3.2 → getrandom-0.3.3}/src/backends/getrandom.rs +0 -0
  1694. /data/ext/cargo-vendor/{getrandom-0.3.2 → getrandom-0.3.3}/src/backends/hermit.rs +0 -0
  1695. /data/ext/cargo-vendor/{getrandom-0.3.2 → getrandom-0.3.3}/src/backends/linux_android_with_fallback.rs +0 -0
  1696. /data/ext/cargo-vendor/{getrandom-0.3.2 → getrandom-0.3.3}/src/backends/linux_raw.rs +0 -0
  1697. /data/ext/cargo-vendor/{getrandom-0.3.2 → getrandom-0.3.3}/src/backends/netbsd.rs +0 -0
  1698. /data/ext/cargo-vendor/{getrandom-0.3.2 → getrandom-0.3.3}/src/backends/rdrand.rs +0 -0
  1699. /data/ext/cargo-vendor/{getrandom-0.3.2 → getrandom-0.3.3}/src/backends/rndr.rs +0 -0
  1700. /data/ext/cargo-vendor/{getrandom-0.3.2 → getrandom-0.3.3}/src/backends/solaris.rs +0 -0
  1701. /data/ext/cargo-vendor/{getrandom-0.3.2 → getrandom-0.3.3}/src/backends/solid.rs +0 -0
  1702. /data/ext/cargo-vendor/{getrandom-0.3.2 → getrandom-0.3.3}/src/backends/use_file.rs +0 -0
  1703. /data/ext/cargo-vendor/{getrandom-0.3.2 → getrandom-0.3.3}/src/backends/vxworks.rs +0 -0
  1704. /data/ext/cargo-vendor/{getrandom-0.3.2 → getrandom-0.3.3}/src/backends/wasi_p2.rs +0 -0
  1705. /data/ext/cargo-vendor/{getrandom-0.3.2 → getrandom-0.3.3}/src/backends/wasm_js.rs +0 -0
  1706. /data/ext/cargo-vendor/{getrandom-0.3.2 → getrandom-0.3.3}/src/backends/windows.rs +0 -0
  1707. /data/ext/cargo-vendor/{getrandom-0.3.2 → getrandom-0.3.3}/src/backends/windows7.rs +0 -0
  1708. /data/ext/cargo-vendor/{getrandom-0.3.2 → getrandom-0.3.3}/src/error.rs +0 -0
  1709. /data/ext/cargo-vendor/{getrandom-0.3.2 → getrandom-0.3.3}/src/error_std_impls.rs +0 -0
  1710. /data/ext/cargo-vendor/{getrandom-0.3.2 → getrandom-0.3.3}/src/lazy.rs +0 -0
  1711. /data/ext/cargo-vendor/{getrandom-0.3.2 → getrandom-0.3.3}/src/lib.rs +0 -0
  1712. /data/ext/cargo-vendor/{getrandom-0.3.2 → getrandom-0.3.3}/src/util.rs +0 -0
  1713. /data/ext/cargo-vendor/{getrandom-0.3.2 → getrandom-0.3.3}/src/util_libc.rs +0 -0
  1714. /data/ext/cargo-vendor/{getrandom-0.3.2 → getrandom-0.3.3}/tests/mod.rs +0 -0
  1715. /data/ext/cargo-vendor/{hashbrown-0.15.2 → hashbrown-0.15.5}/LICENSE-APACHE +0 -0
  1716. /data/ext/cargo-vendor/{hashbrown-0.15.2 → hashbrown-0.15.5}/LICENSE-MIT +0 -0
  1717. /data/ext/cargo-vendor/{hashbrown-0.15.2 → hashbrown-0.15.5}/benches/insert_unique_unchecked.rs +0 -0
  1718. /data/ext/cargo-vendor/{hashbrown-0.15.2 → hashbrown-0.15.5}/benches/set_ops.rs +0 -0
  1719. /data/ext/cargo-vendor/{hashbrown-0.15.2 → hashbrown-0.15.5}/clippy.toml +0 -0
  1720. /data/ext/cargo-vendor/{hashbrown-0.15.2 → hashbrown-0.15.5}/src/control/bitmask.rs +0 -0
  1721. /data/ext/cargo-vendor/{hashbrown-0.15.2 → hashbrown-0.15.5}/src/control/group/generic.rs +0 -0
  1722. /data/ext/cargo-vendor/{hashbrown-0.15.2 → hashbrown-0.15.5}/src/control/group/neon.rs +0 -0
  1723. /data/ext/cargo-vendor/{hashbrown-0.15.2 → hashbrown-0.15.5}/src/control/group/sse2.rs +0 -0
  1724. /data/ext/cargo-vendor/{hashbrown-0.15.2 → hashbrown-0.15.5}/src/control/mod.rs +0 -0
  1725. /data/ext/cargo-vendor/{hashbrown-0.15.2 → hashbrown-0.15.5}/src/control/tag.rs +0 -0
  1726. /data/ext/cargo-vendor/{hashbrown-0.15.2 → hashbrown-0.15.5}/src/external_trait_impls/mod.rs +0 -0
  1727. /data/ext/cargo-vendor/{hashbrown-0.15.2 → hashbrown-0.15.5}/src/external_trait_impls/rayon/helpers.rs +0 -0
  1728. /data/ext/cargo-vendor/{hashbrown-0.15.2 → hashbrown-0.15.5}/src/external_trait_impls/rayon/map.rs +0 -0
  1729. /data/ext/cargo-vendor/{hashbrown-0.15.2 → hashbrown-0.15.5}/src/external_trait_impls/rayon/mod.rs +0 -0
  1730. /data/ext/cargo-vendor/{hashbrown-0.15.2 → hashbrown-0.15.5}/src/external_trait_impls/rayon/raw.rs +0 -0
  1731. /data/ext/cargo-vendor/{hashbrown-0.15.2 → hashbrown-0.15.5}/src/external_trait_impls/rayon/set.rs +0 -0
  1732. /data/ext/cargo-vendor/{hashbrown-0.15.2 → hashbrown-0.15.5}/src/external_trait_impls/rayon/table.rs +0 -0
  1733. /data/ext/cargo-vendor/{hashbrown-0.15.2 → hashbrown-0.15.5}/src/macros.rs +0 -0
  1734. /data/ext/cargo-vendor/{hashbrown-0.15.2 → hashbrown-0.15.5}/src/raw_entry.rs +0 -0
  1735. /data/ext/cargo-vendor/{hashbrown-0.15.2 → hashbrown-0.15.5}/src/scopeguard.rs +0 -0
  1736. /data/ext/cargo-vendor/{hashbrown-0.15.2 → hashbrown-0.15.5}/tests/equivalent_trait.rs +0 -0
  1737. /data/ext/cargo-vendor/{hashbrown-0.15.2 → hashbrown-0.15.5}/tests/hasher.rs +0 -0
  1738. /data/ext/cargo-vendor/{hashbrown-0.15.2 → hashbrown-0.15.5}/tests/rayon.rs +0 -0
  1739. /data/ext/cargo-vendor/{hashbrown-0.15.2 → hashbrown-0.15.5}/tests/serde.rs +0 -0
  1740. /data/ext/cargo-vendor/{indexmap-2.9.0 → indexmap-2.10.0}/LICENSE-APACHE +0 -0
  1741. /data/ext/cargo-vendor/{indexmap-2.9.0 → indexmap-2.10.0}/LICENSE-MIT +0 -0
  1742. /data/ext/cargo-vendor/{indexmap-2.9.0 → indexmap-2.10.0}/README.md +0 -0
  1743. /data/ext/cargo-vendor/{indexmap-2.9.0 → indexmap-2.10.0}/src/arbitrary.rs +0 -0
  1744. /data/ext/cargo-vendor/{indexmap-2.9.0 → indexmap-2.10.0}/src/borsh.rs +0 -0
  1745. /data/ext/cargo-vendor/{indexmap-2.9.0 → indexmap-2.10.0}/src/macros.rs +0 -0
  1746. /data/ext/cargo-vendor/{indexmap-2.9.0 → indexmap-2.10.0}/src/map/serde_seq.rs +0 -0
  1747. /data/ext/cargo-vendor/{indexmap-2.9.0 → indexmap-2.10.0}/src/serde.rs +0 -0
  1748. /data/ext/cargo-vendor/{indexmap-2.9.0 → indexmap-2.10.0}/src/set/mutable.rs +0 -0
  1749. /data/ext/cargo-vendor/{indexmap-2.9.0 → indexmap-2.10.0}/src/util.rs +0 -0
  1750. /data/ext/cargo-vendor/{indexmap-2.9.0 → indexmap-2.10.0}/tests/equivalent_trait.rs +0 -0
  1751. /data/ext/cargo-vendor/{indexmap-2.9.0 → indexmap-2.10.0}/tests/macros_full_path.rs +0 -0
  1752. /data/ext/cargo-vendor/{indexmap-2.9.0 → indexmap-2.10.0}/tests/tests.rs +0 -0
  1753. /data/ext/cargo-vendor/{r-efi-5.2.0 → r-efi-5.3.0}/Makefile +0 -0
  1754. /data/ext/cargo-vendor/{r-efi-5.2.0 → r-efi-5.3.0}/README.md +0 -0
  1755. /data/ext/cargo-vendor/{r-efi-5.2.0 → r-efi-5.3.0}/examples/freestanding.rs +0 -0
  1756. /data/ext/cargo-vendor/{r-efi-5.2.0 → r-efi-5.3.0}/examples/gop-query.rs +0 -0
  1757. /data/ext/cargo-vendor/{r-efi-5.2.0 → r-efi-5.3.0}/examples/hello-world.rs +0 -0
  1758. /data/ext/cargo-vendor/{r-efi-5.2.0 → r-efi-5.3.0}/src/base.rs +0 -0
  1759. /data/ext/cargo-vendor/{r-efi-5.2.0 → r-efi-5.3.0}/src/hii.rs +0 -0
  1760. /data/ext/cargo-vendor/{r-efi-5.2.0 → r-efi-5.3.0}/src/lib.rs +0 -0
  1761. /data/ext/cargo-vendor/{r-efi-5.2.0 → r-efi-5.3.0}/src/protocols/absolute_pointer.rs +0 -0
  1762. /data/ext/cargo-vendor/{r-efi-5.2.0 → r-efi-5.3.0}/src/protocols/block_io.rs +0 -0
  1763. /data/ext/cargo-vendor/{r-efi-5.2.0 → r-efi-5.3.0}/src/protocols/bus_specific_driver_override.rs +0 -0
  1764. /data/ext/cargo-vendor/{r-efi-5.2.0 → r-efi-5.3.0}/src/protocols/debug_support.rs +0 -0
  1765. /data/ext/cargo-vendor/{r-efi-5.2.0 → r-efi-5.3.0}/src/protocols/debugport.rs +0 -0
  1766. /data/ext/cargo-vendor/{r-efi-5.2.0 → r-efi-5.3.0}/src/protocols/decompress.rs +0 -0
  1767. /data/ext/cargo-vendor/{r-efi-5.2.0 → r-efi-5.3.0}/src/protocols/device_path.rs +0 -0
  1768. /data/ext/cargo-vendor/{r-efi-5.2.0 → r-efi-5.3.0}/src/protocols/device_path_from_text.rs +0 -0
  1769. /data/ext/cargo-vendor/{r-efi-5.2.0 → r-efi-5.3.0}/src/protocols/device_path_to_text.rs +0 -0
  1770. /data/ext/cargo-vendor/{r-efi-5.2.0 → r-efi-5.3.0}/src/protocols/device_path_utilities.rs +0 -0
  1771. /data/ext/cargo-vendor/{r-efi-5.2.0 → r-efi-5.3.0}/src/protocols/disk_io.rs +0 -0
  1772. /data/ext/cargo-vendor/{r-efi-5.2.0 → r-efi-5.3.0}/src/protocols/disk_io2.rs +0 -0
  1773. /data/ext/cargo-vendor/{r-efi-5.2.0 → r-efi-5.3.0}/src/protocols/driver_binding.rs +0 -0
  1774. /data/ext/cargo-vendor/{r-efi-5.2.0 → r-efi-5.3.0}/src/protocols/driver_diagnostics2.rs +0 -0
  1775. /data/ext/cargo-vendor/{r-efi-5.2.0 → r-efi-5.3.0}/src/protocols/driver_family_override.rs +0 -0
  1776. /data/ext/cargo-vendor/{r-efi-5.2.0 → r-efi-5.3.0}/src/protocols/file.rs +0 -0
  1777. /data/ext/cargo-vendor/{r-efi-5.2.0 → r-efi-5.3.0}/src/protocols/graphics_output.rs +0 -0
  1778. /data/ext/cargo-vendor/{r-efi-5.2.0 → r-efi-5.3.0}/src/protocols/hii_database.rs +0 -0
  1779. /data/ext/cargo-vendor/{r-efi-5.2.0 → r-efi-5.3.0}/src/protocols/hii_font.rs +0 -0
  1780. /data/ext/cargo-vendor/{r-efi-5.2.0 → r-efi-5.3.0}/src/protocols/hii_font_ex.rs +0 -0
  1781. /data/ext/cargo-vendor/{r-efi-5.2.0 → r-efi-5.3.0}/src/protocols/hii_package_list.rs +0 -0
  1782. /data/ext/cargo-vendor/{r-efi-5.2.0 → r-efi-5.3.0}/src/protocols/hii_string.rs +0 -0
  1783. /data/ext/cargo-vendor/{r-efi-5.2.0 → r-efi-5.3.0}/src/protocols/ip4.rs +0 -0
  1784. /data/ext/cargo-vendor/{r-efi-5.2.0 → r-efi-5.3.0}/src/protocols/ip6.rs +0 -0
  1785. /data/ext/cargo-vendor/{r-efi-5.2.0 → r-efi-5.3.0}/src/protocols/load_file.rs +0 -0
  1786. /data/ext/cargo-vendor/{r-efi-5.2.0 → r-efi-5.3.0}/src/protocols/load_file2.rs +0 -0
  1787. /data/ext/cargo-vendor/{r-efi-5.2.0 → r-efi-5.3.0}/src/protocols/loaded_image.rs +0 -0
  1788. /data/ext/cargo-vendor/{r-efi-5.2.0 → r-efi-5.3.0}/src/protocols/loaded_image_device_path.rs +0 -0
  1789. /data/ext/cargo-vendor/{r-efi-5.2.0 → r-efi-5.3.0}/src/protocols/managed_network.rs +0 -0
  1790. /data/ext/cargo-vendor/{r-efi-5.2.0 → r-efi-5.3.0}/src/protocols/memory_attribute.rs +0 -0
  1791. /data/ext/cargo-vendor/{r-efi-5.2.0 → r-efi-5.3.0}/src/protocols/mp_services.rs +0 -0
  1792. /data/ext/cargo-vendor/{r-efi-5.2.0 → r-efi-5.3.0}/src/protocols/pci_io.rs +0 -0
  1793. /data/ext/cargo-vendor/{r-efi-5.2.0 → r-efi-5.3.0}/src/protocols/platform_driver_override.rs +0 -0
  1794. /data/ext/cargo-vendor/{r-efi-5.2.0 → r-efi-5.3.0}/src/protocols/rng.rs +0 -0
  1795. /data/ext/cargo-vendor/{r-efi-5.2.0 → r-efi-5.3.0}/src/protocols/service_binding.rs +0 -0
  1796. /data/ext/cargo-vendor/{r-efi-5.2.0 → r-efi-5.3.0}/src/protocols/shell.rs +0 -0
  1797. /data/ext/cargo-vendor/{r-efi-5.2.0 → r-efi-5.3.0}/src/protocols/shell_dynamic_command.rs +0 -0
  1798. /data/ext/cargo-vendor/{r-efi-5.2.0 → r-efi-5.3.0}/src/protocols/shell_parameters.rs +0 -0
  1799. /data/ext/cargo-vendor/{r-efi-5.2.0 → r-efi-5.3.0}/src/protocols/simple_file_system.rs +0 -0
  1800. /data/ext/cargo-vendor/{r-efi-5.2.0 → r-efi-5.3.0}/src/protocols/simple_network.rs +0 -0
  1801. /data/ext/cargo-vendor/{r-efi-5.2.0 → r-efi-5.3.0}/src/protocols/simple_text_input.rs +0 -0
  1802. /data/ext/cargo-vendor/{r-efi-5.2.0 → r-efi-5.3.0}/src/protocols/simple_text_input_ex.rs +0 -0
  1803. /data/ext/cargo-vendor/{r-efi-5.2.0 → r-efi-5.3.0}/src/protocols/simple_text_output.rs +0 -0
  1804. /data/ext/cargo-vendor/{r-efi-5.2.0 → r-efi-5.3.0}/src/protocols/tcp4.rs +0 -0
  1805. /data/ext/cargo-vendor/{r-efi-5.2.0 → r-efi-5.3.0}/src/protocols/tcp6.rs +0 -0
  1806. /data/ext/cargo-vendor/{r-efi-5.2.0 → r-efi-5.3.0}/src/protocols/timestamp.rs +0 -0
  1807. /data/ext/cargo-vendor/{r-efi-5.2.0 → r-efi-5.3.0}/src/protocols/udp4.rs +0 -0
  1808. /data/ext/cargo-vendor/{r-efi-5.2.0 → r-efi-5.3.0}/src/protocols/udp6.rs +0 -0
  1809. /data/ext/cargo-vendor/{r-efi-5.2.0 → r-efi-5.3.0}/src/protocols.rs +0 -0
  1810. /data/ext/cargo-vendor/{r-efi-5.2.0 → r-efi-5.3.0}/src/system.rs +0 -0
  1811. /data/ext/cargo-vendor/{r-efi-5.2.0 → r-efi-5.3.0}/src/vendor/intel/console_control.rs +0 -0
  1812. /data/ext/cargo-vendor/{r-efi-5.2.0 → r-efi-5.3.0}/src/vendor.rs +0 -0
  1813. /data/ext/cargo-vendor/{rb-sys-0.9.111 → rb-sys-0.9.117}/LICENSE-APACHE +0 -0
  1814. /data/ext/cargo-vendor/{rb-sys-0.9.111 → rb-sys-0.9.117}/LICENSE-MIT +0 -0
  1815. /data/ext/cargo-vendor/{rb-sys-0.9.111 → rb-sys-0.9.117}/bin/release.sh +0 -0
  1816. /data/ext/cargo-vendor/{rb-sys-0.9.111 → rb-sys-0.9.117}/build/features.rs +0 -0
  1817. /data/ext/cargo-vendor/{rb-sys-0.9.111 → rb-sys-0.9.117}/build/main.rs +0 -0
  1818. /data/ext/cargo-vendor/{rb-sys-0.9.111 → rb-sys-0.9.117}/build/stable_api_config.rs +0 -0
  1819. /data/ext/cargo-vendor/{rb-sys-0.9.111 → rb-sys-0.9.117}/build/version.rs +0 -0
  1820. /data/ext/cargo-vendor/{rb-sys-0.9.111 → rb-sys-0.9.117}/src/bindings.rs +0 -0
  1821. /data/ext/cargo-vendor/{rb-sys-0.9.111 → rb-sys-0.9.117}/src/hidden.rs +0 -0
  1822. /data/ext/cargo-vendor/{rb-sys-0.9.111 → rb-sys-0.9.117}/src/lib.rs +0 -0
  1823. /data/ext/cargo-vendor/{rb-sys-0.9.111 → rb-sys-0.9.117}/src/memory.rs +0 -0
  1824. /data/ext/cargo-vendor/{rb-sys-0.9.111 → rb-sys-0.9.117}/src/ruby_abi_version.rs +0 -0
  1825. /data/ext/cargo-vendor/{rb-sys-0.9.111 → rb-sys-0.9.117}/src/special_consts.rs +0 -0
  1826. /data/ext/cargo-vendor/{rb-sys-0.9.111 → rb-sys-0.9.117}/src/symbol.rs +0 -0
  1827. /data/ext/cargo-vendor/{rb-sys-0.9.111 → rb-sys-0.9.117}/src/tracking_allocator.rs +0 -0
  1828. /data/ext/cargo-vendor/{rb-sys-0.9.111 → rb-sys-0.9.117}/src/value_type.rs +0 -0
  1829. /data/ext/cargo-vendor/{rb-sys-build-0.9.111 → rb-sys-build-0.9.117}/LICENSE-APACHE +0 -0
  1830. /data/ext/cargo-vendor/{rb-sys-build-0.9.111 → rb-sys-build-0.9.117}/LICENSE-MIT +0 -0
  1831. /data/ext/cargo-vendor/{rb-sys-build-0.9.111 → rb-sys-build-0.9.117}/src/bindings/sanitizer.rs +0 -0
  1832. /data/ext/cargo-vendor/{rb-sys-build-0.9.111 → rb-sys-build-0.9.117}/src/bindings/wrapper.h +0 -0
  1833. /data/ext/cargo-vendor/{rb-sys-build-0.9.111 → rb-sys-build-0.9.117}/src/lib.rs +0 -0
  1834. /data/ext/cargo-vendor/{rb-sys-build-0.9.111 → rb-sys-build-0.9.117}/src/rb_config/flags.rs +0 -0
  1835. /data/ext/cargo-vendor/{rb-sys-build-0.9.111 → rb-sys-build-0.9.117}/src/rb_config/library.rs +0 -0
  1836. /data/ext/cargo-vendor/{rb-sys-build-0.9.111 → rb-sys-build-0.9.117}/src/rb_config/search_path.rs +0 -0
  1837. /data/ext/cargo-vendor/{rb-sys-build-0.9.111 → rb-sys-build-0.9.117}/src/rb_config.rs +0 -0
  1838. /data/ext/cargo-vendor/{rb-sys-build-0.9.111 → rb-sys-build-0.9.117}/src/utils.rs +0 -0
  1839. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/CHANGES.md +0 -0
  1840. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/CODE_OF_CONDUCT.md +0 -0
  1841. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/CONTRIBUTING.md +0 -0
  1842. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/COPYRIGHT +0 -0
  1843. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/LICENSE-APACHE +0 -0
  1844. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/LICENSE-Apache-2.0_WITH_LLVM-exception +0 -0
  1845. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/LICENSE-MIT +0 -0
  1846. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/ORG_CODE_OF_CONDUCT.md +0 -0
  1847. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/README.md +0 -0
  1848. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/SECURITY.md +0 -0
  1849. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/benches/mod.rs +0 -0
  1850. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/build.rs +0 -0
  1851. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/libc/c.rs +0 -0
  1852. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/libc/conv.rs +0 -0
  1853. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/libc/event/epoll.rs +0 -0
  1854. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/libc/event/mod.rs +0 -0
  1855. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/libc/event/poll_fd.rs +0 -0
  1856. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/libc/event/syscalls.rs +0 -0
  1857. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/libc/event/types.rs +0 -0
  1858. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/libc/event/windows_syscalls.rs +0 -0
  1859. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/libc/fs/dir.rs +0 -0
  1860. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/libc/fs/inotify.rs +0 -0
  1861. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/libc/fs/makedev.rs +0 -0
  1862. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/libc/fs/mod.rs +0 -0
  1863. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/libc/fs/types.rs +0 -0
  1864. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/libc/io/errno.rs +0 -0
  1865. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/libc/io/mod.rs +0 -0
  1866. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/libc/io/types.rs +0 -0
  1867. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/libc/io/windows_syscalls.rs +0 -0
  1868. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/libc/io_uring/mod.rs +0 -0
  1869. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/libc/io_uring/syscalls.rs +0 -0
  1870. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/libc/mm/mod.rs +0 -0
  1871. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/libc/mm/syscalls.rs +0 -0
  1872. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/libc/mm/types.rs +0 -0
  1873. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/libc/mod.rs +0 -0
  1874. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/libc/mount/mod.rs +0 -0
  1875. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/libc/mount/syscalls.rs +0 -0
  1876. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/libc/mount/types.rs +0 -0
  1877. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/libc/net/addr.rs +0 -0
  1878. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/libc/net/ext.rs +0 -0
  1879. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/libc/net/mod.rs +0 -0
  1880. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/libc/net/msghdr.rs +0 -0
  1881. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/libc/net/netdevice.rs +0 -0
  1882. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/libc/net/read_sockaddr.rs +0 -0
  1883. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/libc/net/send_recv.rs +0 -0
  1884. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/libc/net/syscalls.rs +0 -0
  1885. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/libc/net/write_sockaddr.rs +0 -0
  1886. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/libc/param/auxv.rs +0 -0
  1887. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/libc/param/mod.rs +0 -0
  1888. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/libc/pid/mod.rs +0 -0
  1889. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/libc/pid/syscalls.rs +0 -0
  1890. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/libc/pipe/mod.rs +0 -0
  1891. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/libc/pipe/syscalls.rs +0 -0
  1892. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/libc/pipe/types.rs +0 -0
  1893. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/libc/prctl/mod.rs +0 -0
  1894. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/libc/prctl/syscalls.rs +0 -0
  1895. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/libc/process/mod.rs +0 -0
  1896. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/libc/process/syscalls.rs +0 -0
  1897. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/libc/process/types.rs +0 -0
  1898. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/libc/process/wait.rs +0 -0
  1899. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/libc/pty/mod.rs +0 -0
  1900. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/libc/pty/syscalls.rs +0 -0
  1901. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/libc/rand/mod.rs +0 -0
  1902. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/libc/rand/syscalls.rs +0 -0
  1903. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/libc/rand/types.rs +0 -0
  1904. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/libc/shm/mod.rs +0 -0
  1905. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/libc/shm/syscalls.rs +0 -0
  1906. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/libc/shm/types.rs +0 -0
  1907. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/libc/system/mod.rs +0 -0
  1908. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/libc/system/syscalls.rs +0 -0
  1909. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/libc/system/types.rs +0 -0
  1910. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/libc/termios/mod.rs +0 -0
  1911. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/libc/termios/syscalls.rs +0 -0
  1912. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/libc/termios/types.rs +0 -0
  1913. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/libc/thread/cpu_set.rs +0 -0
  1914. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/libc/thread/futex.rs +0 -0
  1915. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/libc/thread/mod.rs +0 -0
  1916. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/libc/thread/types.rs +0 -0
  1917. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/libc/time/mod.rs +0 -0
  1918. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/libc/time/syscalls.rs +0 -0
  1919. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/libc/time/types.rs +0 -0
  1920. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/libc/ugid/mod.rs +0 -0
  1921. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/libc/ugid/syscalls.rs +0 -0
  1922. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/libc/winsock_c.rs +0 -0
  1923. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/linux_raw/arch/mod.rs +0 -0
  1924. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/linux_raw/c.rs +0 -0
  1925. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/linux_raw/conv.rs +0 -0
  1926. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/linux_raw/event/epoll.rs +0 -0
  1927. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/linux_raw/event/mod.rs +0 -0
  1928. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/linux_raw/event/poll_fd.rs +0 -0
  1929. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/linux_raw/event/syscalls.rs +0 -0
  1930. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/linux_raw/event/types.rs +0 -0
  1931. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/linux_raw/fs/dir.rs +0 -0
  1932. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/linux_raw/fs/inotify.rs +0 -0
  1933. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/linux_raw/fs/makedev.rs +0 -0
  1934. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/linux_raw/fs/mod.rs +0 -0
  1935. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/linux_raw/fs/syscalls.rs +0 -0
  1936. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/linux_raw/fs/types.rs +0 -0
  1937. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/linux_raw/io/errno.rs +0 -0
  1938. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/linux_raw/io/mod.rs +0 -0
  1939. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/linux_raw/io/syscalls.rs +0 -0
  1940. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/linux_raw/io/types.rs +0 -0
  1941. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/linux_raw/io_uring/mod.rs +0 -0
  1942. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/linux_raw/io_uring/syscalls.rs +0 -0
  1943. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/linux_raw/mm/mod.rs +0 -0
  1944. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/linux_raw/mm/syscalls.rs +0 -0
  1945. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/linux_raw/mm/types.rs +0 -0
  1946. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/linux_raw/mod.rs +0 -0
  1947. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/linux_raw/mount/mod.rs +0 -0
  1948. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/linux_raw/mount/syscalls.rs +0 -0
  1949. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/linux_raw/mount/types.rs +0 -0
  1950. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/linux_raw/net/addr.rs +0 -0
  1951. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/linux_raw/net/mod.rs +0 -0
  1952. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/linux_raw/net/msghdr.rs +0 -0
  1953. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/linux_raw/net/netdevice.rs +0 -0
  1954. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/linux_raw/net/read_sockaddr.rs +0 -0
  1955. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/linux_raw/net/send_recv.rs +0 -0
  1956. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/linux_raw/net/sockopt.rs +0 -0
  1957. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/linux_raw/net/syscalls.rs +0 -0
  1958. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/linux_raw/net/write_sockaddr.rs +0 -0
  1959. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/linux_raw/param/init.rs +0 -0
  1960. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/linux_raw/param/libc_auxv.rs +0 -0
  1961. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/linux_raw/param/mod.rs +0 -0
  1962. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/linux_raw/pid/mod.rs +0 -0
  1963. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/linux_raw/pid/syscalls.rs +0 -0
  1964. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/linux_raw/pipe/mod.rs +0 -0
  1965. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/linux_raw/pipe/syscalls.rs +0 -0
  1966. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/linux_raw/pipe/types.rs +0 -0
  1967. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/linux_raw/prctl/mod.rs +0 -0
  1968. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/linux_raw/prctl/syscalls.rs +0 -0
  1969. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/linux_raw/process/mod.rs +0 -0
  1970. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/linux_raw/process/syscalls.rs +0 -0
  1971. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/linux_raw/process/types.rs +0 -0
  1972. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/linux_raw/process/wait.rs +0 -0
  1973. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/linux_raw/pty/mod.rs +0 -0
  1974. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/linux_raw/pty/syscalls.rs +0 -0
  1975. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/linux_raw/rand/mod.rs +0 -0
  1976. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/linux_raw/rand/syscalls.rs +0 -0
  1977. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/linux_raw/rand/types.rs +0 -0
  1978. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/linux_raw/reg.rs +0 -0
  1979. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/linux_raw/runtime/mod.rs +0 -0
  1980. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/linux_raw/runtime/syscalls.rs +0 -0
  1981. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/linux_raw/runtime/tls.rs +0 -0
  1982. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/linux_raw/shm/mod.rs +0 -0
  1983. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/linux_raw/shm/syscalls.rs +0 -0
  1984. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/linux_raw/shm/types.rs +0 -0
  1985. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/linux_raw/system/mod.rs +0 -0
  1986. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/linux_raw/system/syscalls.rs +0 -0
  1987. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/linux_raw/system/types.rs +0 -0
  1988. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/linux_raw/termios/mod.rs +0 -0
  1989. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/linux_raw/termios/syscalls.rs +0 -0
  1990. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/linux_raw/termios/types.rs +0 -0
  1991. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/linux_raw/thread/cpu_set.rs +0 -0
  1992. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/linux_raw/thread/futex.rs +0 -0
  1993. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/linux_raw/thread/mod.rs +0 -0
  1994. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/linux_raw/thread/types.rs +0 -0
  1995. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/linux_raw/time/mod.rs +0 -0
  1996. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/linux_raw/time/syscalls.rs +0 -0
  1997. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/linux_raw/time/types.rs +0 -0
  1998. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/linux_raw/ugid/mod.rs +0 -0
  1999. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/linux_raw/ugid/syscalls.rs +0 -0
  2000. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/linux_raw/vdso.rs +0 -0
  2001. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/backend/linux_raw/vdso_wrappers.rs +0 -0
  2002. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/bitcast.rs +0 -0
  2003. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/buffer.rs +0 -0
  2004. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/check_types.rs +0 -0
  2005. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/clockid.rs +0 -0
  2006. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/cstr.rs +0 -0
  2007. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/event/epoll.rs +0 -0
  2008. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/event/eventfd.rs +0 -0
  2009. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/event/kqueue.rs +0 -0
  2010. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/event/mod.rs +0 -0
  2011. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/event/pause.rs +0 -0
  2012. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/event/poll.rs +0 -0
  2013. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/event/port.rs +0 -0
  2014. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/event/select.rs +0 -0
  2015. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/ffi.rs +0 -0
  2016. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/fs/abs.rs +0 -0
  2017. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/fs/at.rs +0 -0
  2018. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/fs/constants.rs +0 -0
  2019. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/fs/copy_file_range.rs +0 -0
  2020. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/fs/dir.rs +0 -0
  2021. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/fs/fadvise.rs +0 -0
  2022. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/fs/fcntl.rs +0 -0
  2023. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/fs/fcntl_apple.rs +0 -0
  2024. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/fs/fcopyfile.rs +0 -0
  2025. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/fs/fd.rs +0 -0
  2026. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/fs/getpath.rs +0 -0
  2027. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/fs/id.rs +0 -0
  2028. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/fs/inotify.rs +0 -0
  2029. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/fs/ioctl.rs +0 -0
  2030. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/fs/makedev.rs +0 -0
  2031. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/fs/memfd_create.rs +0 -0
  2032. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/fs/mod.rs +0 -0
  2033. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/fs/openat2.rs +0 -0
  2034. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/fs/raw_dir.rs +0 -0
  2035. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/fs/seek_from.rs +0 -0
  2036. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/fs/sendfile.rs +0 -0
  2037. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/fs/special.rs +0 -0
  2038. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/fs/statx.rs +0 -0
  2039. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/fs/sync.rs +0 -0
  2040. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/fs/xattr.rs +0 -0
  2041. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/io/close.rs +0 -0
  2042. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/io/dup.rs +0 -0
  2043. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/io/errno.rs +0 -0
  2044. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/io/fcntl.rs +0 -0
  2045. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/io/ioctl.rs +0 -0
  2046. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/io/mod.rs +0 -0
  2047. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/io/read_write.rs +0 -0
  2048. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/io_uring/bindgen_types.rs +0 -0
  2049. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/io_uring/mod.rs +0 -0
  2050. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/ioctl/bsd.rs +0 -0
  2051. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/ioctl/linux.rs +0 -0
  2052. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/ioctl/mod.rs +0 -0
  2053. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/ioctl/patterns.rs +0 -0
  2054. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/kernel_sigset.rs +0 -0
  2055. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/maybe_polyfill/no_std/io/mod.rs +0 -0
  2056. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/maybe_polyfill/no_std/mod.rs +0 -0
  2057. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/maybe_polyfill/no_std/net/mod.rs +0 -0
  2058. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/maybe_polyfill/no_std/os/fd/mod.rs +0 -0
  2059. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/maybe_polyfill/no_std/os/fd/owned.rs +0 -0
  2060. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/maybe_polyfill/no_std/os/fd/raw.rs +0 -0
  2061. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/maybe_polyfill/no_std/os/mod.rs +0 -0
  2062. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/maybe_polyfill/no_std/os/windows/io/mod.rs +0 -0
  2063. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/maybe_polyfill/no_std/os/windows/io/raw.rs +0 -0
  2064. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/maybe_polyfill/no_std/os/windows/io/socket.rs +0 -0
  2065. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/maybe_polyfill/no_std/os/windows/mod.rs +0 -0
  2066. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/maybe_polyfill/std/mod.rs +0 -0
  2067. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/mm/madvise.rs +0 -0
  2068. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/mm/mmap.rs +0 -0
  2069. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/mm/mod.rs +0 -0
  2070. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/mm/msync.rs +0 -0
  2071. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/mm/userfaultfd.rs +0 -0
  2072. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/mount/fsopen.rs +0 -0
  2073. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/mount/mod.rs +0 -0
  2074. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/mount/mount_unmount.rs +0 -0
  2075. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/mount/types.rs +0 -0
  2076. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/net/addr.rs +0 -0
  2077. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/net/mod.rs +0 -0
  2078. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/net/netdevice.rs +0 -0
  2079. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/net/send_recv/mod.rs +0 -0
  2080. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/net/send_recv/msg.rs +0 -0
  2081. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/net/socket.rs +0 -0
  2082. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/net/socket_addr_any.rs +0 -0
  2083. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/net/socketpair.rs +0 -0
  2084. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/net/sockopt.rs +0 -0
  2085. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/net/types.rs +0 -0
  2086. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/net/wsa.rs +0 -0
  2087. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/param/auxv.rs +0 -0
  2088. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/param/init.rs +0 -0
  2089. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/param/mod.rs +0 -0
  2090. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/path/arg.rs +0 -0
  2091. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/path/dec_int.rs +0 -0
  2092. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/path/mod.rs +0 -0
  2093. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/pipe.rs +0 -0
  2094. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/prctl.rs +0 -0
  2095. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/process/chdir.rs +0 -0
  2096. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/process/chroot.rs +0 -0
  2097. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/process/exit.rs +0 -0
  2098. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/process/fcntl_getlk.rs +0 -0
  2099. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/process/id.rs +0 -0
  2100. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/process/ioctl.rs +0 -0
  2101. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/process/kill.rs +0 -0
  2102. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/process/mod.rs +0 -0
  2103. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/process/pidfd.rs +0 -0
  2104. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/process/pidfd_getfd.rs +0 -0
  2105. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/process/pivot_root.rs +0 -0
  2106. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/process/prctl.rs +0 -0
  2107. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/process/priority.rs +0 -0
  2108. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/process/procctl.rs +0 -0
  2109. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/process/rlimit.rs +0 -0
  2110. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/process/types.rs +0 -0
  2111. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/process/umask.rs +0 -0
  2112. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/process/wait.rs +0 -0
  2113. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/pty.rs +0 -0
  2114. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/rand/getrandom.rs +0 -0
  2115. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/rand/mod.rs +0 -0
  2116. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/runtime.rs +0 -0
  2117. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/shm.rs +0 -0
  2118. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/signal.rs +0 -0
  2119. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/static_assertions.rs +0 -0
  2120. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/stdio.rs +0 -0
  2121. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/system.rs +0 -0
  2122. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/termios/ioctl.rs +0 -0
  2123. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/termios/mod.rs +0 -0
  2124. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/termios/tc.rs +0 -0
  2125. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/termios/tty.rs +0 -0
  2126. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/termios/types.rs +0 -0
  2127. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/thread/clock.rs +0 -0
  2128. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/thread/id.rs +0 -0
  2129. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/thread/libcap.rs +0 -0
  2130. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/thread/membarrier.rs +0 -0
  2131. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/thread/mod.rs +0 -0
  2132. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/thread/prctl.rs +0 -0
  2133. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/thread/sched.rs +0 -0
  2134. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/thread/sched_yield.rs +0 -0
  2135. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/time/clock.rs +0 -0
  2136. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/time/mod.rs +0 -0
  2137. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/time/timerfd.rs +0 -0
  2138. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/timespec.rs +0 -0
  2139. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/ugid.rs +0 -0
  2140. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/utils.rs +0 -0
  2141. /data/ext/cargo-vendor/{rustix-1.0.5 → rustix-1.0.8}/src/weak.rs +0 -0
  2142. /data/ext/cargo-vendor/{serde_json-1.0.140 → serde_json-1.0.142}/CONTRIBUTING.md +0 -0
  2143. /data/ext/cargo-vendor/{serde_json-1.0.140 → serde_json-1.0.142}/LICENSE-APACHE +0 -0
  2144. /data/ext/cargo-vendor/{serde_json-1.0.140 → serde_json-1.0.142}/LICENSE-MIT +0 -0
  2145. /data/ext/cargo-vendor/{serde_json-1.0.140 → serde_json-1.0.142}/README.md +0 -0
  2146. /data/ext/cargo-vendor/{serde_json-1.0.140 → serde_json-1.0.142}/build.rs +0 -0
  2147. /data/ext/cargo-vendor/{serde_json-1.0.140 → serde_json-1.0.142}/src/de.rs +0 -0
  2148. /data/ext/cargo-vendor/{serde_json-1.0.140 → serde_json-1.0.142}/src/error.rs +0 -0
  2149. /data/ext/cargo-vendor/{serde_json-1.0.140 → serde_json-1.0.142}/src/io/core.rs +0 -0
  2150. /data/ext/cargo-vendor/{serde_json-1.0.140 → serde_json-1.0.142}/src/io/mod.rs +0 -0
  2151. /data/ext/cargo-vendor/{serde_json-1.0.140 → serde_json-1.0.142}/src/iter.rs +0 -0
  2152. /data/ext/cargo-vendor/{serde_json-1.0.140 → serde_json-1.0.142}/src/lexical/algorithm.rs +0 -0
  2153. /data/ext/cargo-vendor/{serde_json-1.0.140 → serde_json-1.0.142}/src/lexical/bhcomp.rs +0 -0
  2154. /data/ext/cargo-vendor/{serde_json-1.0.140 → serde_json-1.0.142}/src/lexical/bignum.rs +0 -0
  2155. /data/ext/cargo-vendor/{serde_json-1.0.140 → serde_json-1.0.142}/src/lexical/cached.rs +0 -0
  2156. /data/ext/cargo-vendor/{serde_json-1.0.140 → serde_json-1.0.142}/src/lexical/cached_float80.rs +0 -0
  2157. /data/ext/cargo-vendor/{serde_json-1.0.140 → serde_json-1.0.142}/src/lexical/digit.rs +0 -0
  2158. /data/ext/cargo-vendor/{serde_json-1.0.140 → serde_json-1.0.142}/src/lexical/errors.rs +0 -0
  2159. /data/ext/cargo-vendor/{serde_json-1.0.140 → serde_json-1.0.142}/src/lexical/exponent.rs +0 -0
  2160. /data/ext/cargo-vendor/{serde_json-1.0.140 → serde_json-1.0.142}/src/lexical/float.rs +0 -0
  2161. /data/ext/cargo-vendor/{serde_json-1.0.140 → serde_json-1.0.142}/src/lexical/large_powers.rs +0 -0
  2162. /data/ext/cargo-vendor/{serde_json-1.0.140 → serde_json-1.0.142}/src/lexical/large_powers32.rs +0 -0
  2163. /data/ext/cargo-vendor/{serde_json-1.0.140 → serde_json-1.0.142}/src/lexical/large_powers64.rs +0 -0
  2164. /data/ext/cargo-vendor/{serde_json-1.0.140 → serde_json-1.0.142}/src/lexical/math.rs +0 -0
  2165. /data/ext/cargo-vendor/{serde_json-1.0.140 → serde_json-1.0.142}/src/lexical/mod.rs +0 -0
  2166. /data/ext/cargo-vendor/{serde_json-1.0.140 → serde_json-1.0.142}/src/lexical/num.rs +0 -0
  2167. /data/ext/cargo-vendor/{serde_json-1.0.140 → serde_json-1.0.142}/src/lexical/parse.rs +0 -0
  2168. /data/ext/cargo-vendor/{serde_json-1.0.140 → serde_json-1.0.142}/src/lexical/rounding.rs +0 -0
  2169. /data/ext/cargo-vendor/{serde_json-1.0.140 → serde_json-1.0.142}/src/lexical/shift.rs +0 -0
  2170. /data/ext/cargo-vendor/{serde_json-1.0.140 → serde_json-1.0.142}/src/lexical/small_powers.rs +0 -0
  2171. /data/ext/cargo-vendor/{serde_json-1.0.140 → serde_json-1.0.142}/src/macros.rs +0 -0
  2172. /data/ext/cargo-vendor/{serde_json-1.0.140 → serde_json-1.0.142}/src/map.rs +0 -0
  2173. /data/ext/cargo-vendor/{serde_json-1.0.140 → serde_json-1.0.142}/src/number.rs +0 -0
  2174. /data/ext/cargo-vendor/{serde_json-1.0.140 → serde_json-1.0.142}/src/raw.rs +0 -0
  2175. /data/ext/cargo-vendor/{serde_json-1.0.140 → serde_json-1.0.142}/src/value/de.rs +0 -0
  2176. /data/ext/cargo-vendor/{serde_json-1.0.140 → serde_json-1.0.142}/src/value/from.rs +0 -0
  2177. /data/ext/cargo-vendor/{serde_json-1.0.140 → serde_json-1.0.142}/src/value/index.rs +0 -0
  2178. /data/ext/cargo-vendor/{serde_json-1.0.140 → serde_json-1.0.142}/src/value/partial_eq.rs +0 -0
  2179. /data/ext/cargo-vendor/{serde_json-1.0.140 → serde_json-1.0.142}/src/value/ser.rs +0 -0
  2180. /data/ext/cargo-vendor/{serde_json-1.0.140 → serde_json-1.0.142}/tests/compiletest.rs +0 -0
  2181. /data/ext/cargo-vendor/{serde_json-1.0.140 → serde_json-1.0.142}/tests/debug.rs +0 -0
  2182. /data/ext/cargo-vendor/{serde_json-1.0.140 → serde_json-1.0.142}/tests/lexical/algorithm.rs +0 -0
  2183. /data/ext/cargo-vendor/{serde_json-1.0.140 → serde_json-1.0.142}/tests/lexical/exponent.rs +0 -0
  2184. /data/ext/cargo-vendor/{serde_json-1.0.140 → serde_json-1.0.142}/tests/lexical/float.rs +0 -0
  2185. /data/ext/cargo-vendor/{serde_json-1.0.140 → serde_json-1.0.142}/tests/lexical/math.rs +0 -0
  2186. /data/ext/cargo-vendor/{serde_json-1.0.140 → serde_json-1.0.142}/tests/lexical/num.rs +0 -0
  2187. /data/ext/cargo-vendor/{serde_json-1.0.140 → serde_json-1.0.142}/tests/lexical/parse.rs +0 -0
  2188. /data/ext/cargo-vendor/{serde_json-1.0.140 → serde_json-1.0.142}/tests/lexical/rounding.rs +0 -0
  2189. /data/ext/cargo-vendor/{serde_json-1.0.140 → serde_json-1.0.142}/tests/lexical.rs +0 -0
  2190. /data/ext/cargo-vendor/{serde_json-1.0.140 → serde_json-1.0.142}/tests/macros/mod.rs +0 -0
  2191. /data/ext/cargo-vendor/{serde_json-1.0.140 → serde_json-1.0.142}/tests/map.rs +0 -0
  2192. /data/ext/cargo-vendor/{serde_json-1.0.140 → serde_json-1.0.142}/tests/regression/issue1004.rs +0 -0
  2193. /data/ext/cargo-vendor/{serde_json-1.0.140 → serde_json-1.0.142}/tests/regression/issue520.rs +0 -0
  2194. /data/ext/cargo-vendor/{serde_json-1.0.140 → serde_json-1.0.142}/tests/regression/issue795.rs +0 -0
  2195. /data/ext/cargo-vendor/{serde_json-1.0.140 → serde_json-1.0.142}/tests/regression/issue845.rs +0 -0
  2196. /data/ext/cargo-vendor/{serde_json-1.0.140 → serde_json-1.0.142}/tests/regression/issue953.rs +0 -0
  2197. /data/ext/cargo-vendor/{serde_json-1.0.140 → serde_json-1.0.142}/tests/regression.rs +0 -0
  2198. /data/ext/cargo-vendor/{serde_json-1.0.140 → serde_json-1.0.142}/tests/stream.rs +0 -0
  2199. /data/ext/cargo-vendor/{serde_json-1.0.140 → serde_json-1.0.142}/tests/test.rs +0 -0
  2200. /data/ext/cargo-vendor/{serde_json-1.0.140 → serde_json-1.0.142}/tests/ui/missing_colon.rs +0 -0
  2201. /data/ext/cargo-vendor/{serde_json-1.0.140 → serde_json-1.0.142}/tests/ui/missing_colon.stderr +0 -0
  2202. /data/ext/cargo-vendor/{serde_json-1.0.140 → serde_json-1.0.142}/tests/ui/missing_comma.rs +0 -0
  2203. /data/ext/cargo-vendor/{serde_json-1.0.140 → serde_json-1.0.142}/tests/ui/missing_comma.stderr +0 -0
  2204. /data/ext/cargo-vendor/{serde_json-1.0.140 → serde_json-1.0.142}/tests/ui/missing_value.rs +0 -0
  2205. /data/ext/cargo-vendor/{serde_json-1.0.140 → serde_json-1.0.142}/tests/ui/missing_value.stderr +0 -0
  2206. /data/ext/cargo-vendor/{serde_json-1.0.140 → serde_json-1.0.142}/tests/ui/not_found.rs +0 -0
  2207. /data/ext/cargo-vendor/{serde_json-1.0.140 → serde_json-1.0.142}/tests/ui/not_found.stderr +0 -0
  2208. /data/ext/cargo-vendor/{serde_json-1.0.140 → serde_json-1.0.142}/tests/ui/parse_expr.rs +0 -0
  2209. /data/ext/cargo-vendor/{serde_json-1.0.140 → serde_json-1.0.142}/tests/ui/parse_expr.stderr +0 -0
  2210. /data/ext/cargo-vendor/{serde_json-1.0.140 → serde_json-1.0.142}/tests/ui/parse_key.rs +0 -0
  2211. /data/ext/cargo-vendor/{serde_json-1.0.140 → serde_json-1.0.142}/tests/ui/parse_key.stderr +0 -0
  2212. /data/ext/cargo-vendor/{serde_json-1.0.140 → serde_json-1.0.142}/tests/ui/unexpected_after_array_element.rs +0 -0
  2213. /data/ext/cargo-vendor/{serde_json-1.0.140 → serde_json-1.0.142}/tests/ui/unexpected_after_array_element.stderr +0 -0
  2214. /data/ext/cargo-vendor/{serde_json-1.0.140 → serde_json-1.0.142}/tests/ui/unexpected_after_map_entry.rs +0 -0
  2215. /data/ext/cargo-vendor/{serde_json-1.0.140 → serde_json-1.0.142}/tests/ui/unexpected_after_map_entry.stderr +0 -0
  2216. /data/ext/cargo-vendor/{serde_json-1.0.140 → serde_json-1.0.142}/tests/ui/unexpected_colon.rs +0 -0
  2217. /data/ext/cargo-vendor/{serde_json-1.0.140 → serde_json-1.0.142}/tests/ui/unexpected_colon.stderr +0 -0
  2218. /data/ext/cargo-vendor/{serde_json-1.0.140 → serde_json-1.0.142}/tests/ui/unexpected_comma.rs +0 -0
  2219. /data/ext/cargo-vendor/{serde_json-1.0.140 → serde_json-1.0.142}/tests/ui/unexpected_comma.stderr +0 -0
  2220. /data/ext/cargo-vendor/{smallvec-1.15.0 → smallvec-1.15.1}/LICENSE-APACHE +0 -0
  2221. /data/ext/cargo-vendor/{smallvec-1.15.0 → smallvec-1.15.1}/LICENSE-MIT +0 -0
  2222. /data/ext/cargo-vendor/{smallvec-1.15.0 → smallvec-1.15.1}/README.md +0 -0
  2223. /data/ext/cargo-vendor/{smallvec-1.15.0 → smallvec-1.15.1}/benches/bench.rs +0 -0
  2224. /data/ext/cargo-vendor/{smallvec-1.15.0 → smallvec-1.15.1}/debug_metadata/README.md +0 -0
  2225. /data/ext/cargo-vendor/{smallvec-1.15.0 → smallvec-1.15.1}/debug_metadata/smallvec.natvis +0 -0
  2226. /data/ext/cargo-vendor/{smallvec-1.15.0 → smallvec-1.15.1}/scripts/run_miri.sh +0 -0
  2227. /data/ext/cargo-vendor/{smallvec-1.15.0 → smallvec-1.15.1}/src/arbitrary.rs +0 -0
  2228. /data/ext/cargo-vendor/{smallvec-1.15.0 → smallvec-1.15.1}/src/specialization.rs +0 -0
  2229. /data/ext/cargo-vendor/{smallvec-1.15.0 → smallvec-1.15.1}/src/tests.rs +0 -0
  2230. /data/ext/cargo-vendor/{smallvec-1.15.0 → smallvec-1.15.1}/tests/debugger_visualizer.rs +0 -0
  2231. /data/ext/cargo-vendor/{smallvec-1.15.0 → smallvec-1.15.1}/tests/macro.rs +0 -0
  2232. /data/ext/cargo-vendor/{tempfile-3.19.1 → tempfile-3.20.0}/LICENSE-APACHE +0 -0
  2233. /data/ext/cargo-vendor/{tempfile-3.19.1 → tempfile-3.20.0}/LICENSE-MIT +0 -0
  2234. /data/ext/cargo-vendor/{tempfile-3.19.1 → tempfile-3.20.0}/README.md +0 -0
  2235. /data/ext/cargo-vendor/{tempfile-3.19.1 → tempfile-3.20.0}/deny.toml +0 -0
  2236. /data/ext/cargo-vendor/{tempfile-3.19.1 → tempfile-3.20.0}/src/dir/imp/mod.rs +0 -0
  2237. /data/ext/cargo-vendor/{tempfile-3.19.1 → tempfile-3.20.0}/src/env.rs +0 -0
  2238. /data/ext/cargo-vendor/{tempfile-3.19.1 → tempfile-3.20.0}/src/error.rs +0 -0
  2239. /data/ext/cargo-vendor/{tempfile-3.19.1 → tempfile-3.20.0}/src/file/imp/mod.rs +0 -0
  2240. /data/ext/cargo-vendor/{tempfile-3.19.1 → tempfile-3.20.0}/src/file/imp/other.rs +0 -0
  2241. /data/ext/cargo-vendor/{tempfile-3.19.1 → tempfile-3.20.0}/src/file/imp/unix.rs +0 -0
  2242. /data/ext/cargo-vendor/{tempfile-3.19.1 → tempfile-3.20.0}/src/file/imp/windows.rs +0 -0
  2243. /data/ext/cargo-vendor/{thread_local-1.1.8 → thread_local-1.1.9}/LICENSE-APACHE +0 -0
  2244. /data/ext/cargo-vendor/{thread_local-1.1.8 → thread_local-1.1.9}/LICENSE-MIT +0 -0
  2245. /data/ext/cargo-vendor/{thread_local-1.1.8 → thread_local-1.1.9}/benches/thread_local.rs +0 -0
  2246. /data/ext/cargo-vendor/{thread_local-1.1.8 → thread_local-1.1.9}/src/cached.rs +0 -0
  2247. /data/ext/cargo-vendor/{thread_local-1.1.8 → thread_local-1.1.9}/src/lib.rs +0 -0
  2248. /data/ext/cargo-vendor/{thread_local-1.1.8 → thread_local-1.1.9}/src/unreachable.rs +0 -0
  2249. /data/ext/cargo-vendor/{tracing-attributes-0.1.28 → tracing-attributes-0.1.30}/LICENSE +0 -0
  2250. /data/ext/cargo-vendor/{tracing-attributes-0.1.28 → tracing-attributes-0.1.30}/tests/destructuring.rs +0 -0
  2251. /data/ext/cargo-vendor/{tracing-attributes-0.1.28 → tracing-attributes-0.1.30}/tests/fields.rs +0 -0
  2252. /data/ext/cargo-vendor/{tracing-attributes-0.1.28 → tracing-attributes-0.1.30}/tests/follows_from.rs +0 -0
  2253. /data/ext/cargo-vendor/{tracing-attributes-0.1.28 → tracing-attributes-0.1.30}/tests/levels.rs +0 -0
  2254. /data/ext/cargo-vendor/{tracing-attributes-0.1.28 → tracing-attributes-0.1.30}/tests/names.rs +0 -0
  2255. /data/ext/cargo-vendor/{tracing-attributes-0.1.28 → tracing-attributes-0.1.30}/tests/parents.rs +0 -0
  2256. /data/ext/cargo-vendor/{tracing-attributes-0.1.28 → tracing-attributes-0.1.30}/tests/ret.rs +0 -0
  2257. /data/ext/cargo-vendor/{tracing-attributes-0.1.28 → tracing-attributes-0.1.30}/tests/targets.rs +0 -0
  2258. /data/ext/cargo-vendor/{tracing-attributes-0.1.28/tests/ui → tracing-attributes-0.1.30/tests/ui/fail}/const_instrument.rs +0 -0
  2259. /data/ext/cargo-vendor/{tracing-core-0.1.33 → tracing-core-0.1.34}/LICENSE +0 -0
  2260. /data/ext/cargo-vendor/{tracing-core-0.1.33 → tracing-core-0.1.34}/src/event.rs +0 -0
  2261. /data/ext/cargo-vendor/{tracing-core-0.1.33 → tracing-core-0.1.34}/src/lazy.rs +0 -0
  2262. /data/ext/cargo-vendor/{tracing-core-0.1.33 → tracing-core-0.1.34}/src/parent.rs +0 -0
  2263. /data/ext/cargo-vendor/{tracing-core-0.1.33 → tracing-core-0.1.34}/src/span.rs +0 -0
  2264. /data/ext/cargo-vendor/{tracing-core-0.1.33 → tracing-core-0.1.34}/src/spin/LICENSE +0 -0
  2265. /data/ext/cargo-vendor/{tracing-core-0.1.33 → tracing-core-0.1.34}/src/spin/mod.rs +0 -0
  2266. /data/ext/cargo-vendor/{tracing-core-0.1.33 → tracing-core-0.1.34}/src/spin/mutex.rs +0 -0
  2267. /data/ext/cargo-vendor/{tracing-core-0.1.33 → tracing-core-0.1.34}/src/spin/once.rs +0 -0
  2268. /data/ext/cargo-vendor/{tracing-core-0.1.33 → tracing-core-0.1.34}/src/stdlib.rs +0 -0
  2269. /data/ext/cargo-vendor/{tracing-core-0.1.33 → tracing-core-0.1.34}/src/subscriber.rs +0 -0
  2270. /data/ext/cargo-vendor/{tracing-core-0.1.33 → tracing-core-0.1.34}/tests/common/mod.rs +0 -0
  2271. /data/ext/cargo-vendor/{tracing-core-0.1.33 → tracing-core-0.1.34}/tests/dispatch.rs +0 -0
  2272. /data/ext/cargo-vendor/{tracing-core-0.1.33 → tracing-core-0.1.34}/tests/global_dispatch.rs +0 -0
  2273. /data/ext/cargo-vendor/{tracing-core-0.1.33 → tracing-core-0.1.34}/tests/local_dispatch_before_init.rs +0 -0
  2274. /data/ext/cargo-vendor/{tracing-core-0.1.33 → tracing-core-0.1.34}/tests/macros.rs +0 -0
  2275. /data/ext/cargo-vendor/{tracing-core-0.1.33 → tracing-core-0.1.34}/tests/missed_register_callsite.rs +0 -0
  2276. /data/ext/cargo-vendor/{wasi-0.11.0+wasi-snapshot-preview1 → wasi-0.11.1+wasi-snapshot-preview1}/CODE_OF_CONDUCT.md +0 -0
  2277. /data/ext/cargo-vendor/{wasi-0.11.0+wasi-snapshot-preview1 → wasi-0.11.1+wasi-snapshot-preview1}/CONTRIBUTING.md +0 -0
  2278. /data/ext/cargo-vendor/{wasi-0.11.0+wasi-snapshot-preview1 → wasi-0.11.1+wasi-snapshot-preview1}/LICENSE-APACHE +0 -0
  2279. /data/ext/cargo-vendor/{wasi-0.11.0+wasi-snapshot-preview1 → wasi-0.11.1+wasi-snapshot-preview1}/LICENSE-Apache-2.0_WITH_LLVM-exception +0 -0
  2280. /data/ext/cargo-vendor/{wasi-0.11.0+wasi-snapshot-preview1 → wasi-0.11.1+wasi-snapshot-preview1}/LICENSE-MIT +0 -0
  2281. /data/ext/cargo-vendor/{wasi-0.11.0+wasi-snapshot-preview1 → wasi-0.11.1+wasi-snapshot-preview1}/ORG_CODE_OF_CONDUCT.md +0 -0
  2282. /data/ext/cargo-vendor/{wasi-0.11.0+wasi-snapshot-preview1 → wasi-0.11.1+wasi-snapshot-preview1}/README.md +0 -0
  2283. /data/ext/cargo-vendor/{wasi-0.11.0+wasi-snapshot-preview1 → wasi-0.11.1+wasi-snapshot-preview1}/SECURITY.md +0 -0
  2284. /data/ext/cargo-vendor/{wasi-0.11.0+wasi-snapshot-preview1 → wasi-0.11.1+wasi-snapshot-preview1}/src/lib.rs +0 -0
  2285. /data/ext/cargo-vendor/{wasi-0.11.0+wasi-snapshot-preview1 → wasi-0.11.1+wasi-snapshot-preview1}/src/lib_generated.rs +0 -0
@@ -1,2603 +0,0 @@
1
- // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
2
- // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
3
- // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
4
- // option. This file may not be copied, modified, or distributed
5
- // except according to those terms.
6
-
7
- //! Small vectors in various sizes. These store a certain number of elements inline, and fall back
8
- //! to the heap for larger allocations. This can be a useful optimization for improving cache
9
- //! locality and reducing allocator traffic for workloads that fit within the inline buffer.
10
- //!
11
- //! ## `no_std` support
12
- //!
13
- //! By default, `smallvec` does not depend on `std`. However, the optional
14
- //! `write` feature implements the `std::io::Write` trait for vectors of `u8`.
15
- //! When this feature is enabled, `smallvec` depends on `std`.
16
- //!
17
- //! ## Optional features
18
- //!
19
- //! ### `serde`
20
- //!
21
- //! When this optional dependency is enabled, `SmallVec` implements the `serde::Serialize` and
22
- //! `serde::Deserialize` traits.
23
- //!
24
- //! ### `write`
25
- //!
26
- //! When this feature is enabled, `SmallVec<[u8; _]>` implements the `std::io::Write` trait.
27
- //! This feature is not compatible with `#![no_std]` programs.
28
- //!
29
- //! ### `union`
30
- //!
31
- //! **This feature requires Rust 1.49.**
32
- //!
33
- //! When the `union` feature is enabled `smallvec` will track its state (inline or spilled)
34
- //! without the use of an enum tag, reducing the size of the `smallvec` by one machine word.
35
- //! This means that there is potentially no space overhead compared to `Vec`.
36
- //! Note that `smallvec` can still be larger than `Vec` if the inline buffer is larger than two
37
- //! machine words.
38
- //!
39
- //! To use this feature add `features = ["union"]` in the `smallvec` section of Cargo.toml.
40
- //! Note that this feature requires Rust 1.49.
41
- //!
42
- //! Tracking issue: [rust-lang/rust#55149](https://github.com/rust-lang/rust/issues/55149)
43
- //!
44
- //! ### `const_generics`
45
- //!
46
- //! **This feature requires Rust 1.51.**
47
- //!
48
- //! When this feature is enabled, `SmallVec` works with any arrays of any size, not just a fixed
49
- //! list of sizes.
50
- //!
51
- //! ### `const_new`
52
- //!
53
- //! **This feature requires Rust 1.51.**
54
- //!
55
- //! This feature exposes the functions [`SmallVec::new_const`], [`SmallVec::from_const`], and [`smallvec_inline`] which enables the `SmallVec` to be initialized from a const context.
56
- //! For details, see the
57
- //! [Rust Reference](https://doc.rust-lang.org/reference/const_eval.html#const-functions).
58
- //!
59
- //! ### `drain_filter`
60
- //!
61
- //! **This feature is unstable.** It may change to match the unstable `drain_filter` method in libstd.
62
- //!
63
- //! Enables the `drain_filter` method, which produces an iterator that calls a user-provided
64
- //! closure to determine which elements of the vector to remove and yield from the iterator.
65
- //!
66
- //! ### `drain_keep_rest`
67
- //!
68
- //! **This feature is unstable.** It may change to match the unstable `drain_keep_rest` method in libstd.
69
- //!
70
- //! Enables the `DrainFilter::keep_rest` method.
71
- //!
72
- //! ### `specialization`
73
- //!
74
- //! **This feature is unstable and requires a nightly build of the Rust toolchain.**
75
- //!
76
- //! When this feature is enabled, `SmallVec::from(slice)` has improved performance for slices
77
- //! of `Copy` types. (Without this feature, you can use `SmallVec::from_slice` to get optimal
78
- //! performance for `Copy` types.)
79
- //!
80
- //! Tracking issue: [rust-lang/rust#31844](https://github.com/rust-lang/rust/issues/31844)
81
- //!
82
- //! ### `may_dangle`
83
- //!
84
- //! **This feature is unstable and requires a nightly build of the Rust toolchain.**
85
- //!
86
- //! This feature makes the Rust compiler less strict about use of vectors that contain borrowed
87
- //! references. For details, see the
88
- //! [Rustonomicon](https://doc.rust-lang.org/1.42.0/nomicon/dropck.html#an-escape-hatch).
89
- //!
90
- //! Tracking issue: [rust-lang/rust#34761](https://github.com/rust-lang/rust/issues/34761)
91
-
92
- #![no_std]
93
- #![cfg_attr(docsrs, feature(doc_cfg))]
94
- #![cfg_attr(feature = "specialization", allow(incomplete_features))]
95
- #![cfg_attr(feature = "specialization", feature(specialization))]
96
- #![cfg_attr(feature = "may_dangle", feature(dropck_eyepatch))]
97
- #![cfg_attr(
98
- feature = "debugger_visualizer",
99
- feature(debugger_visualizer),
100
- debugger_visualizer(natvis_file = "../debug_metadata/smallvec.natvis")
101
- )]
102
- #![deny(missing_docs)]
103
-
104
- #[doc(hidden)]
105
- pub extern crate alloc;
106
-
107
- #[cfg(any(test, feature = "write"))]
108
- extern crate std;
109
-
110
- #[cfg(test)]
111
- mod tests;
112
-
113
- #[allow(deprecated)]
114
- use alloc::alloc::{Layout, LayoutErr};
115
- use alloc::boxed::Box;
116
- use alloc::{vec, vec::Vec};
117
- use core::borrow::{Borrow, BorrowMut};
118
- use core::cmp;
119
- use core::fmt;
120
- use core::hash::{Hash, Hasher};
121
- use core::hint::unreachable_unchecked;
122
- use core::iter::{repeat, FromIterator, FusedIterator, IntoIterator};
123
- use core::mem;
124
- use core::mem::MaybeUninit;
125
- use core::ops::{self, Range, RangeBounds};
126
- use core::ptr::{self, NonNull};
127
- use core::slice::{self, SliceIndex};
128
-
129
- #[cfg(feature = "malloc_size_of")]
130
- use malloc_size_of::{MallocShallowSizeOf, MallocSizeOf, MallocSizeOfOps};
131
-
132
- #[cfg(feature = "serde")]
133
- use serde::{
134
- de::{Deserialize, Deserializer, SeqAccess, Visitor},
135
- ser::{Serialize, SerializeSeq, Serializer},
136
- };
137
-
138
- #[cfg(feature = "serde")]
139
- use core::marker::PhantomData;
140
-
141
- #[cfg(feature = "write")]
142
- use std::io;
143
-
144
- #[cfg(feature = "drain_keep_rest")]
145
- use core::mem::ManuallyDrop;
146
-
147
- /// Creates a [`SmallVec`] containing the arguments.
148
- ///
149
- /// `smallvec!` allows `SmallVec`s to be defined with the same syntax as array expressions.
150
- /// There are two forms of this macro:
151
- ///
152
- /// - Create a [`SmallVec`] containing a given list of elements:
153
- ///
154
- /// ```
155
- /// # use smallvec::{smallvec, SmallVec};
156
- /// # fn main() {
157
- /// let v: SmallVec<[_; 128]> = smallvec![1, 2, 3];
158
- /// assert_eq!(v[0], 1);
159
- /// assert_eq!(v[1], 2);
160
- /// assert_eq!(v[2], 3);
161
- /// # }
162
- /// ```
163
- ///
164
- /// - Create a [`SmallVec`] from a given element and size:
165
- ///
166
- /// ```
167
- /// # use smallvec::{smallvec, SmallVec};
168
- /// # fn main() {
169
- /// let v: SmallVec<[_; 0x8000]> = smallvec![1; 3];
170
- /// assert_eq!(v, SmallVec::from_buf([1, 1, 1]));
171
- /// # }
172
- /// ```
173
- ///
174
- /// Note that unlike array expressions this syntax supports all elements
175
- /// which implement [`Clone`] and the number of elements doesn't have to be
176
- /// a constant.
177
- ///
178
- /// This will use `clone` to duplicate an expression, so one should be careful
179
- /// using this with types having a nonstandard `Clone` implementation. For
180
- /// example, `smallvec![Rc::new(1); 5]` will create a vector of five references
181
- /// to the same boxed integer value, not five references pointing to independently
182
- /// boxed integers.
183
- #[macro_export]
184
- macro_rules! smallvec {
185
- // count helper: transform any expression into 1
186
- (@one $x:expr) => (1usize);
187
- ($elem:expr; $n:expr) => ({
188
- $crate::SmallVec::from_elem($elem, $n)
189
- });
190
- ($($x:expr),*$(,)*) => ({
191
- let count = 0usize $(+ $crate::smallvec!(@one $x))*;
192
- #[allow(unused_mut)]
193
- let mut vec = $crate::SmallVec::new();
194
- if count <= vec.inline_size() {
195
- $(vec.push($x);)*
196
- vec
197
- } else {
198
- $crate::SmallVec::from_vec($crate::alloc::vec![$($x,)*])
199
- }
200
- });
201
- }
202
-
203
- /// Creates an inline [`SmallVec`] containing the arguments. This macro is enabled by the feature `const_new`.
204
- ///
205
- /// `smallvec_inline!` allows `SmallVec`s to be defined with the same syntax as array expressions in `const` contexts.
206
- /// The inline storage `A` will always be an array of the size specified by the arguments.
207
- /// There are two forms of this macro:
208
- ///
209
- /// - Create a [`SmallVec`] containing a given list of elements:
210
- ///
211
- /// ```
212
- /// # use smallvec::{smallvec_inline, SmallVec};
213
- /// # fn main() {
214
- /// const V: SmallVec<[i32; 3]> = smallvec_inline![1, 2, 3];
215
- /// assert_eq!(V[0], 1);
216
- /// assert_eq!(V[1], 2);
217
- /// assert_eq!(V[2], 3);
218
- /// # }
219
- /// ```
220
- ///
221
- /// - Create a [`SmallVec`] from a given element and size:
222
- ///
223
- /// ```
224
- /// # use smallvec::{smallvec_inline, SmallVec};
225
- /// # fn main() {
226
- /// const V: SmallVec<[i32; 3]> = smallvec_inline![1; 3];
227
- /// assert_eq!(V, SmallVec::from_buf([1, 1, 1]));
228
- /// # }
229
- /// ```
230
- ///
231
- /// Note that the behavior mimics that of array expressions, in contrast to [`smallvec`].
232
- #[cfg(feature = "const_new")]
233
- #[cfg_attr(docsrs, doc(cfg(feature = "const_new")))]
234
- #[macro_export]
235
- macro_rules! smallvec_inline {
236
- // count helper: transform any expression into 1
237
- (@one $x:expr) => (1usize);
238
- ($elem:expr; $n:expr) => ({
239
- $crate::SmallVec::<[_; $n]>::from_const([$elem; $n])
240
- });
241
- ($($x:expr),+ $(,)?) => ({
242
- const N: usize = 0usize $(+ $crate::smallvec_inline!(@one $x))*;
243
- $crate::SmallVec::<[_; N]>::from_const([$($x,)*])
244
- });
245
- }
246
-
247
- /// `panic!()` in debug builds, optimization hint in release.
248
- #[cfg(not(feature = "union"))]
249
- macro_rules! debug_unreachable {
250
- () => {
251
- debug_unreachable!("entered unreachable code")
252
- };
253
- ($e:expr) => {
254
- if cfg!(debug_assertions) {
255
- panic!($e);
256
- } else {
257
- unreachable_unchecked();
258
- }
259
- };
260
- }
261
-
262
- /// Trait to be implemented by a collection that can be extended from a slice
263
- ///
264
- /// ## Example
265
- ///
266
- /// ```rust
267
- /// use smallvec::{ExtendFromSlice, SmallVec};
268
- ///
269
- /// fn initialize<V: ExtendFromSlice<u8>>(v: &mut V) {
270
- /// v.extend_from_slice(b"Test!");
271
- /// }
272
- ///
273
- /// let mut vec = Vec::new();
274
- /// initialize(&mut vec);
275
- /// assert_eq!(&vec, b"Test!");
276
- ///
277
- /// let mut small_vec = SmallVec::<[u8; 8]>::new();
278
- /// initialize(&mut small_vec);
279
- /// assert_eq!(&small_vec as &[_], b"Test!");
280
- /// ```
281
- #[doc(hidden)]
282
- #[deprecated]
283
- pub trait ExtendFromSlice<T> {
284
- /// Extends a collection from a slice of its element type
285
- fn extend_from_slice(&mut self, other: &[T]);
286
- }
287
-
288
- #[allow(deprecated)]
289
- impl<T: Clone> ExtendFromSlice<T> for Vec<T> {
290
- fn extend_from_slice(&mut self, other: &[T]) {
291
- Vec::extend_from_slice(self, other)
292
- }
293
- }
294
-
295
- /// Error type for APIs with fallible heap allocation
296
- #[derive(Debug)]
297
- pub enum CollectionAllocErr {
298
- /// Overflow `usize::MAX` or other error during size computation
299
- CapacityOverflow,
300
- /// The allocator return an error
301
- AllocErr {
302
- /// The layout that was passed to the allocator
303
- layout: Layout,
304
- },
305
- }
306
-
307
- impl fmt::Display for CollectionAllocErr {
308
- fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
309
- write!(f, "Allocation error: {:?}", self)
310
- }
311
- }
312
-
313
- #[allow(deprecated)]
314
- impl From<LayoutErr> for CollectionAllocErr {
315
- fn from(_: LayoutErr) -> Self {
316
- CollectionAllocErr::CapacityOverflow
317
- }
318
- }
319
-
320
- fn infallible<T>(result: Result<T, CollectionAllocErr>) -> T {
321
- match result {
322
- Ok(x) => x,
323
- Err(CollectionAllocErr::CapacityOverflow) => panic!("capacity overflow"),
324
- Err(CollectionAllocErr::AllocErr { layout }) => alloc::alloc::handle_alloc_error(layout),
325
- }
326
- }
327
-
328
- /// FIXME: use `Layout::array` when we require a Rust version where it’s stable
329
- /// <https://github.com/rust-lang/rust/issues/55724>
330
- fn layout_array<T>(n: usize) -> Result<Layout, CollectionAllocErr> {
331
- let size = mem::size_of::<T>()
332
- .checked_mul(n)
333
- .ok_or(CollectionAllocErr::CapacityOverflow)?;
334
- let align = mem::align_of::<T>();
335
- Layout::from_size_align(size, align).map_err(|_| CollectionAllocErr::CapacityOverflow)
336
- }
337
-
338
- unsafe fn deallocate<T>(ptr: NonNull<T>, capacity: usize) {
339
- // This unwrap should succeed since the same did when allocating.
340
- let layout = layout_array::<T>(capacity).unwrap();
341
- alloc::alloc::dealloc(ptr.as_ptr() as *mut u8, layout)
342
- }
343
-
344
- /// An iterator that removes the items from a `SmallVec` and yields them by value.
345
- ///
346
- /// Returned from [`SmallVec::drain`][1].
347
- ///
348
- /// [1]: struct.SmallVec.html#method.drain
349
- pub struct Drain<'a, T: 'a + Array> {
350
- tail_start: usize,
351
- tail_len: usize,
352
- iter: slice::Iter<'a, T::Item>,
353
- vec: NonNull<SmallVec<T>>,
354
- }
355
-
356
- impl<'a, T: 'a + Array> fmt::Debug for Drain<'a, T>
357
- where
358
- T::Item: fmt::Debug,
359
- {
360
- fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
361
- f.debug_tuple("Drain").field(&self.iter.as_slice()).finish()
362
- }
363
- }
364
-
365
- unsafe impl<'a, T: Sync + Array> Sync for Drain<'a, T> {}
366
- unsafe impl<'a, T: Send + Array> Send for Drain<'a, T> {}
367
-
368
- impl<'a, T: 'a + Array> Iterator for Drain<'a, T> {
369
- type Item = T::Item;
370
-
371
- #[inline]
372
- fn next(&mut self) -> Option<T::Item> {
373
- self.iter
374
- .next()
375
- .map(|reference| unsafe { ptr::read(reference) })
376
- }
377
-
378
- #[inline]
379
- fn size_hint(&self) -> (usize, Option<usize>) {
380
- self.iter.size_hint()
381
- }
382
- }
383
-
384
- impl<'a, T: 'a + Array> DoubleEndedIterator for Drain<'a, T> {
385
- #[inline]
386
- fn next_back(&mut self) -> Option<T::Item> {
387
- self.iter
388
- .next_back()
389
- .map(|reference| unsafe { ptr::read(reference) })
390
- }
391
- }
392
-
393
- impl<'a, T: Array> ExactSizeIterator for Drain<'a, T> {
394
- #[inline]
395
- fn len(&self) -> usize {
396
- self.iter.len()
397
- }
398
- }
399
-
400
- impl<'a, T: Array> FusedIterator for Drain<'a, T> {}
401
-
402
- impl<'a, T: 'a + Array> Drop for Drain<'a, T> {
403
- fn drop(&mut self) {
404
- self.for_each(drop);
405
-
406
- if self.tail_len > 0 {
407
- unsafe {
408
- let source_vec = self.vec.as_mut();
409
-
410
- // memmove back untouched tail, update to new length
411
- let start = source_vec.len();
412
- let tail = self.tail_start;
413
- if tail != start {
414
- // as_mut_ptr creates a &mut, invalidating other pointers.
415
- // This pattern avoids calling it with a pointer already present.
416
- let ptr = source_vec.as_mut_ptr();
417
- let src = ptr.add(tail);
418
- let dst = ptr.add(start);
419
- ptr::copy(src, dst, self.tail_len);
420
- }
421
- source_vec.set_len(start + self.tail_len);
422
- }
423
- }
424
- }
425
- }
426
-
427
- #[cfg(feature = "drain_filter")]
428
- /// An iterator which uses a closure to determine if an element should be removed.
429
- ///
430
- /// Returned from [`SmallVec::drain_filter`][1].
431
- ///
432
- /// [1]: struct.SmallVec.html#method.drain_filter
433
- pub struct DrainFilter<'a, T, F>
434
- where
435
- F: FnMut(&mut T::Item) -> bool,
436
- T: Array,
437
- {
438
- vec: &'a mut SmallVec<T>,
439
- /// The index of the item that will be inspected by the next call to `next`.
440
- idx: usize,
441
- /// The number of items that have been drained (removed) thus far.
442
- del: usize,
443
- /// The original length of `vec` prior to draining.
444
- old_len: usize,
445
- /// The filter test predicate.
446
- pred: F,
447
- /// A flag that indicates a panic has occurred in the filter test predicate.
448
- /// This is used as a hint in the drop implementation to prevent consumption
449
- /// of the remainder of the `DrainFilter`. Any unprocessed items will be
450
- /// backshifted in the `vec`, but no further items will be dropped or
451
- /// tested by the filter predicate.
452
- panic_flag: bool,
453
- }
454
-
455
- #[cfg(feature = "drain_filter")]
456
- impl <T, F> fmt::Debug for DrainFilter<'_, T, F>
457
- where
458
- F: FnMut(&mut T::Item) -> bool,
459
- T: Array,
460
- T::Item: fmt::Debug,
461
- {
462
- fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
463
- f.debug_tuple("DrainFilter").field(&self.vec.as_slice()).finish()
464
- }
465
- }
466
-
467
- #[cfg(feature = "drain_filter")]
468
- impl <T, F> Iterator for DrainFilter<'_, T, F>
469
- where
470
- F: FnMut(&mut T::Item) -> bool,
471
- T: Array,
472
- {
473
- type Item = T::Item;
474
-
475
- fn next(&mut self) -> Option<T::Item>
476
- {
477
- unsafe {
478
- while self.idx < self.old_len {
479
- let i = self.idx;
480
- let v = slice::from_raw_parts_mut(self.vec.as_mut_ptr(), self.old_len);
481
- self.panic_flag = true;
482
- let drained = (self.pred)(&mut v[i]);
483
- self.panic_flag = false;
484
- // Update the index *after* the predicate is called. If the index
485
- // is updated prior and the predicate panics, the element at this
486
- // index would be leaked.
487
- self.idx += 1;
488
- if drained {
489
- self.del += 1;
490
- return Some(ptr::read(&v[i]));
491
- } else if self.del > 0 {
492
- let del = self.del;
493
- let src: *const Self::Item = &v[i];
494
- let dst: *mut Self::Item = &mut v[i - del];
495
- ptr::copy_nonoverlapping(src, dst, 1);
496
- }
497
- }
498
- None
499
- }
500
- }
501
-
502
- fn size_hint(&self) -> (usize, Option<usize>) {
503
- (0, Some(self.old_len - self.idx))
504
- }
505
- }
506
-
507
- #[cfg(feature = "drain_filter")]
508
- impl <T, F> Drop for DrainFilter<'_, T, F>
509
- where
510
- F: FnMut(&mut T::Item) -> bool,
511
- T: Array,
512
- {
513
- fn drop(&mut self) {
514
- struct BackshiftOnDrop<'a, 'b, T, F>
515
- where
516
- F: FnMut(&mut T::Item) -> bool,
517
- T: Array
518
- {
519
- drain: &'b mut DrainFilter<'a, T, F>,
520
- }
521
-
522
- impl<'a, 'b, T, F> Drop for BackshiftOnDrop<'a, 'b, T, F>
523
- where
524
- F: FnMut(&mut T::Item) -> bool,
525
- T: Array
526
- {
527
- fn drop(&mut self) {
528
- unsafe {
529
- if self.drain.idx < self.drain.old_len && self.drain.del > 0 {
530
- // This is a pretty messed up state, and there isn't really an
531
- // obviously right thing to do. We don't want to keep trying
532
- // to execute `pred`, so we just backshift all the unprocessed
533
- // elements and tell the vec that they still exist. The backshift
534
- // is required to prevent a double-drop of the last successfully
535
- // drained item prior to a panic in the predicate.
536
- let ptr = self.drain.vec.as_mut_ptr();
537
- let src = ptr.add(self.drain.idx);
538
- let dst = src.sub(self.drain.del);
539
- let tail_len = self.drain.old_len - self.drain.idx;
540
- src.copy_to(dst, tail_len);
541
- }
542
- self.drain.vec.set_len(self.drain.old_len - self.drain.del);
543
- }
544
- }
545
- }
546
-
547
- let backshift = BackshiftOnDrop { drain: self };
548
-
549
- // Attempt to consume any remaining elements if the filter predicate
550
- // has not yet panicked. We'll backshift any remaining elements
551
- // whether we've already panicked or if the consumption here panics.
552
- if !backshift.drain.panic_flag {
553
- backshift.drain.for_each(drop);
554
- }
555
- }
556
- }
557
-
558
- #[cfg(feature = "drain_keep_rest")]
559
- impl <T, F> DrainFilter<'_, T, F>
560
- where
561
- F: FnMut(&mut T::Item) -> bool,
562
- T: Array
563
- {
564
- /// Keep unyielded elements in the source `Vec`.
565
- ///
566
- /// # Examples
567
- ///
568
- /// ```
569
- /// # use smallvec::{smallvec, SmallVec};
570
- ///
571
- /// let mut vec: SmallVec<[char; 2]> = smallvec!['a', 'b', 'c'];
572
- /// let mut drain = vec.drain_filter(|_| true);
573
- ///
574
- /// assert_eq!(drain.next().unwrap(), 'a');
575
- ///
576
- /// // This call keeps 'b' and 'c' in the vec.
577
- /// drain.keep_rest();
578
- ///
579
- /// // If we wouldn't call `keep_rest()`,
580
- /// // `vec` would be empty.
581
- /// assert_eq!(vec, SmallVec::<[char; 2]>::from_slice(&['b', 'c']));
582
- /// ```
583
- pub fn keep_rest(self)
584
- {
585
- // At this moment layout looks like this:
586
- //
587
- // _____________________/-- old_len
588
- // / \
589
- // [kept] [yielded] [tail]
590
- // \_______/ ^-- idx
591
- // \-- del
592
- //
593
- // Normally `Drop` impl would drop [tail] (via .for_each(drop), ie still calling `pred`)
594
- //
595
- // 1. Move [tail] after [kept]
596
- // 2. Update length of the original vec to `old_len - del`
597
- // a. In case of ZST, this is the only thing we want to do
598
- // 3. Do *not* drop self, as everything is put in a consistent state already, there is nothing to do
599
- let mut this = ManuallyDrop::new(self);
600
-
601
- unsafe {
602
- // ZSTs have no identity, so we don't need to move them around.
603
- let needs_move = mem::size_of::<T>() != 0;
604
-
605
- if needs_move && this.idx < this.old_len && this.del > 0 {
606
- let ptr = this.vec.as_mut_ptr();
607
- let src = ptr.add(this.idx);
608
- let dst = src.sub(this.del);
609
- let tail_len = this.old_len - this.idx;
610
- src.copy_to(dst, tail_len);
611
- }
612
-
613
- let new_len = this.old_len - this.del;
614
- this.vec.set_len(new_len);
615
- }
616
- }
617
- }
618
-
619
- #[cfg(feature = "union")]
620
- union SmallVecData<A: Array> {
621
- inline: core::mem::ManuallyDrop<MaybeUninit<A>>,
622
- heap: (NonNull<A::Item>, usize),
623
- }
624
-
625
- #[cfg(all(feature = "union", feature = "const_new"))]
626
- impl<T, const N: usize> SmallVecData<[T; N]> {
627
- #[cfg_attr(docsrs, doc(cfg(feature = "const_new")))]
628
- #[inline]
629
- const fn from_const(inline: MaybeUninit<[T; N]>) -> Self {
630
- SmallVecData {
631
- inline: core::mem::ManuallyDrop::new(inline),
632
- }
633
- }
634
- }
635
-
636
- #[cfg(feature = "union")]
637
- impl<A: Array> SmallVecData<A> {
638
- #[inline]
639
- unsafe fn inline(&self) -> ConstNonNull<A::Item> {
640
- ConstNonNull::new(self.inline.as_ptr() as *const A::Item).unwrap()
641
- }
642
- #[inline]
643
- unsafe fn inline_mut(&mut self) -> NonNull<A::Item> {
644
- NonNull::new(self.inline.as_mut_ptr() as *mut A::Item).unwrap()
645
- }
646
- #[inline]
647
- fn from_inline(inline: MaybeUninit<A>) -> SmallVecData<A> {
648
- SmallVecData {
649
- inline: core::mem::ManuallyDrop::new(inline),
650
- }
651
- }
652
- #[inline]
653
- unsafe fn into_inline(self) -> MaybeUninit<A> {
654
- core::mem::ManuallyDrop::into_inner(self.inline)
655
- }
656
- #[inline]
657
- unsafe fn heap(&self) -> (ConstNonNull<A::Item>, usize) {
658
- (ConstNonNull(self.heap.0), self.heap.1)
659
- }
660
- #[inline]
661
- unsafe fn heap_mut(&mut self) -> (NonNull<A::Item>, &mut usize) {
662
- let h = &mut self.heap;
663
- (h.0, &mut h.1)
664
- }
665
- #[inline]
666
- fn from_heap(ptr: NonNull<A::Item>, len: usize) -> SmallVecData<A> {
667
- SmallVecData { heap: (ptr, len) }
668
- }
669
- }
670
-
671
- #[cfg(not(feature = "union"))]
672
- enum SmallVecData<A: Array> {
673
- Inline(MaybeUninit<A>),
674
- // Using NonNull and NonZero here allows to reduce size of `SmallVec`.
675
- Heap {
676
- // Since we never allocate on heap
677
- // unless our capacity is bigger than inline capacity
678
- // heap capacity cannot be less than 1.
679
- // Therefore, pointer cannot be null too.
680
- ptr: NonNull<A::Item>,
681
- len: usize,
682
- },
683
- }
684
-
685
- #[cfg(all(not(feature = "union"), feature = "const_new"))]
686
- impl<T, const N: usize> SmallVecData<[T; N]> {
687
- #[cfg_attr(docsrs, doc(cfg(feature = "const_new")))]
688
- #[inline]
689
- const fn from_const(inline: MaybeUninit<[T; N]>) -> Self {
690
- SmallVecData::Inline(inline)
691
- }
692
- }
693
-
694
- #[cfg(not(feature = "union"))]
695
- impl<A: Array> SmallVecData<A> {
696
- #[inline]
697
- unsafe fn inline(&self) -> ConstNonNull<A::Item> {
698
- match self {
699
- SmallVecData::Inline(a) => ConstNonNull::new(a.as_ptr() as *const A::Item).unwrap(),
700
- _ => debug_unreachable!(),
701
- }
702
- }
703
- #[inline]
704
- unsafe fn inline_mut(&mut self) -> NonNull<A::Item> {
705
- match self {
706
- SmallVecData::Inline(a) => NonNull::new(a.as_mut_ptr() as *mut A::Item).unwrap(),
707
- _ => debug_unreachable!(),
708
- }
709
- }
710
- #[inline]
711
- fn from_inline(inline: MaybeUninit<A>) -> SmallVecData<A> {
712
- SmallVecData::Inline(inline)
713
- }
714
- #[inline]
715
- unsafe fn into_inline(self) -> MaybeUninit<A> {
716
- match self {
717
- SmallVecData::Inline(a) => a,
718
- _ => debug_unreachable!(),
719
- }
720
- }
721
- #[inline]
722
- unsafe fn heap(&self) -> (ConstNonNull<A::Item>, usize) {
723
- match self {
724
- SmallVecData::Heap { ptr, len } => (ConstNonNull(*ptr), *len),
725
- _ => debug_unreachable!(),
726
- }
727
- }
728
- #[inline]
729
- unsafe fn heap_mut(&mut self) -> (NonNull<A::Item>, &mut usize) {
730
- match self {
731
- SmallVecData::Heap { ptr, len } => (*ptr, len),
732
- _ => debug_unreachable!(),
733
- }
734
- }
735
- #[inline]
736
- fn from_heap(ptr: NonNull<A::Item>, len: usize) -> SmallVecData<A> {
737
- SmallVecData::Heap { ptr, len }
738
- }
739
- }
740
-
741
- unsafe impl<A: Array + Send> Send for SmallVecData<A> {}
742
- unsafe impl<A: Array + Sync> Sync for SmallVecData<A> {}
743
-
744
- /// A `Vec`-like container that can store a small number of elements inline.
745
- ///
746
- /// `SmallVec` acts like a vector, but can store a limited amount of data inline within the
747
- /// `SmallVec` struct rather than in a separate allocation. If the data exceeds this limit, the
748
- /// `SmallVec` will "spill" its data onto the heap, allocating a new buffer to hold it.
749
- ///
750
- /// The amount of data that a `SmallVec` can store inline depends on its backing store. The backing
751
- /// store can be any type that implements the `Array` trait; usually it is a small fixed-sized
752
- /// array. For example a `SmallVec<[u64; 8]>` can hold up to eight 64-bit integers inline.
753
- ///
754
- /// ## Example
755
- ///
756
- /// ```rust
757
- /// use smallvec::SmallVec;
758
- /// let mut v = SmallVec::<[u8; 4]>::new(); // initialize an empty vector
759
- ///
760
- /// // The vector can hold up to 4 items without spilling onto the heap.
761
- /// v.extend(0..4);
762
- /// assert_eq!(v.len(), 4);
763
- /// assert!(!v.spilled());
764
- ///
765
- /// // Pushing another element will force the buffer to spill:
766
- /// v.push(4);
767
- /// assert_eq!(v.len(), 5);
768
- /// assert!(v.spilled());
769
- /// ```
770
- pub struct SmallVec<A: Array> {
771
- // The capacity field is used to determine which of the storage variants is active:
772
- // If capacity <= Self::inline_capacity() then the inline variant is used and capacity holds the current length of the vector (number of elements actually in use).
773
- // If capacity > Self::inline_capacity() then the heap variant is used and capacity holds the size of the memory allocation.
774
- capacity: usize,
775
- data: SmallVecData<A>,
776
- }
777
-
778
- impl<A: Array> SmallVec<A> {
779
- /// Construct an empty vector
780
- #[inline]
781
- pub fn new() -> SmallVec<A> {
782
- // Try to detect invalid custom implementations of `Array`. Hopefully,
783
- // this check should be optimized away entirely for valid ones.
784
- assert!(
785
- mem::size_of::<A>() == A::size() * mem::size_of::<A::Item>()
786
- && mem::align_of::<A>() >= mem::align_of::<A::Item>()
787
- );
788
- SmallVec {
789
- capacity: 0,
790
- data: SmallVecData::from_inline(MaybeUninit::uninit()),
791
- }
792
- }
793
-
794
- /// Construct an empty vector with enough capacity pre-allocated to store at least `n`
795
- /// elements.
796
- ///
797
- /// Will create a heap allocation only if `n` is larger than the inline capacity.
798
- ///
799
- /// ```
800
- /// # use smallvec::SmallVec;
801
- ///
802
- /// let v: SmallVec<[u8; 3]> = SmallVec::with_capacity(100);
803
- ///
804
- /// assert!(v.is_empty());
805
- /// assert!(v.capacity() >= 100);
806
- /// ```
807
- #[inline]
808
- pub fn with_capacity(n: usize) -> Self {
809
- let mut v = SmallVec::new();
810
- v.reserve_exact(n);
811
- v
812
- }
813
-
814
- /// Construct a new `SmallVec` from a `Vec<A::Item>`.
815
- ///
816
- /// Elements will be copied to the inline buffer if `vec.capacity() <= Self::inline_capacity()`.
817
- ///
818
- /// ```rust
819
- /// use smallvec::SmallVec;
820
- ///
821
- /// let vec = vec![1, 2, 3, 4, 5];
822
- /// let small_vec: SmallVec<[_; 3]> = SmallVec::from_vec(vec);
823
- ///
824
- /// assert_eq!(&*small_vec, &[1, 2, 3, 4, 5]);
825
- /// ```
826
- #[inline]
827
- pub fn from_vec(mut vec: Vec<A::Item>) -> SmallVec<A> {
828
- if vec.capacity() <= Self::inline_capacity() {
829
- // Cannot use Vec with smaller capacity
830
- // because we use value of `Self::capacity` field as indicator.
831
- unsafe {
832
- let mut data = SmallVecData::<A>::from_inline(MaybeUninit::uninit());
833
- let len = vec.len();
834
- vec.set_len(0);
835
- ptr::copy_nonoverlapping(vec.as_ptr(), data.inline_mut().as_ptr(), len);
836
-
837
- SmallVec {
838
- capacity: len,
839
- data,
840
- }
841
- }
842
- } else {
843
- let (ptr, cap, len) = (vec.as_mut_ptr(), vec.capacity(), vec.len());
844
- mem::forget(vec);
845
- let ptr = NonNull::new(ptr)
846
- // See docs: https://doc.rust-lang.org/std/vec/struct.Vec.html#method.as_mut_ptr
847
- .expect("Cannot be null by `Vec` invariant");
848
-
849
- SmallVec {
850
- capacity: cap,
851
- data: SmallVecData::from_heap(ptr, len),
852
- }
853
- }
854
- }
855
-
856
- /// Constructs a new `SmallVec` on the stack from an `A` without
857
- /// copying elements.
858
- ///
859
- /// ```rust
860
- /// use smallvec::SmallVec;
861
- ///
862
- /// let buf = [1, 2, 3, 4, 5];
863
- /// let small_vec: SmallVec<_> = SmallVec::from_buf(buf);
864
- ///
865
- /// assert_eq!(&*small_vec, &[1, 2, 3, 4, 5]);
866
- /// ```
867
- #[inline]
868
- pub fn from_buf(buf: A) -> SmallVec<A> {
869
- SmallVec {
870
- capacity: A::size(),
871
- data: SmallVecData::from_inline(MaybeUninit::new(buf)),
872
- }
873
- }
874
-
875
- /// Constructs a new `SmallVec` on the stack from an `A` without
876
- /// copying elements. Also sets the length, which must be less or
877
- /// equal to the size of `buf`.
878
- ///
879
- /// ```rust
880
- /// use smallvec::SmallVec;
881
- ///
882
- /// let buf = [1, 2, 3, 4, 5, 0, 0, 0];
883
- /// let small_vec: SmallVec<_> = SmallVec::from_buf_and_len(buf, 5);
884
- ///
885
- /// assert_eq!(&*small_vec, &[1, 2, 3, 4, 5]);
886
- /// ```
887
- #[inline]
888
- pub fn from_buf_and_len(buf: A, len: usize) -> SmallVec<A> {
889
- assert!(len <= A::size());
890
- unsafe { SmallVec::from_buf_and_len_unchecked(MaybeUninit::new(buf), len) }
891
- }
892
-
893
- /// Constructs a new `SmallVec` on the stack from an `A` without
894
- /// copying elements. Also sets the length. The user is responsible
895
- /// for ensuring that `len <= A::size()`.
896
- ///
897
- /// ```rust
898
- /// use smallvec::SmallVec;
899
- /// use std::mem::MaybeUninit;
900
- ///
901
- /// let buf = [1, 2, 3, 4, 5, 0, 0, 0];
902
- /// let small_vec: SmallVec<_> = unsafe {
903
- /// SmallVec::from_buf_and_len_unchecked(MaybeUninit::new(buf), 5)
904
- /// };
905
- ///
906
- /// assert_eq!(&*small_vec, &[1, 2, 3, 4, 5]);
907
- /// ```
908
- #[inline]
909
- pub unsafe fn from_buf_and_len_unchecked(buf: MaybeUninit<A>, len: usize) -> SmallVec<A> {
910
- SmallVec {
911
- capacity: len,
912
- data: SmallVecData::from_inline(buf),
913
- }
914
- }
915
-
916
- /// Sets the length of a vector.
917
- ///
918
- /// This will explicitly set the size of the vector, without actually
919
- /// modifying its buffers, so it is up to the caller to ensure that the
920
- /// vector is actually the specified size.
921
- pub unsafe fn set_len(&mut self, new_len: usize) {
922
- let (_, len_ptr, _) = self.triple_mut();
923
- *len_ptr = new_len;
924
- }
925
-
926
- /// The maximum number of elements this vector can hold inline
927
- #[inline]
928
- fn inline_capacity() -> usize {
929
- if mem::size_of::<A::Item>() > 0 {
930
- A::size()
931
- } else {
932
- // For zero-size items code like `ptr.add(offset)` always returns the same pointer.
933
- // Therefore all items are at the same address,
934
- // and any array size has capacity for infinitely many items.
935
- // The capacity is limited by the bit width of the length field.
936
- //
937
- // `Vec` also does this:
938
- // https://github.com/rust-lang/rust/blob/1.44.0/src/liballoc/raw_vec.rs#L186
939
- //
940
- // In our case, this also ensures that a smallvec of zero-size items never spills,
941
- // and we never try to allocate zero bytes which `std::alloc::alloc` disallows.
942
- core::usize::MAX
943
- }
944
- }
945
-
946
- /// The maximum number of elements this vector can hold inline
947
- #[inline]
948
- pub fn inline_size(&self) -> usize {
949
- Self::inline_capacity()
950
- }
951
-
952
- /// The number of elements stored in the vector
953
- #[inline]
954
- pub fn len(&self) -> usize {
955
- self.triple().1
956
- }
957
-
958
- /// Returns `true` if the vector is empty
959
- #[inline]
960
- pub fn is_empty(&self) -> bool {
961
- self.len() == 0
962
- }
963
-
964
- /// The number of items the vector can hold without reallocating
965
- #[inline]
966
- pub fn capacity(&self) -> usize {
967
- self.triple().2
968
- }
969
-
970
- /// Returns a tuple with (data ptr, len, capacity)
971
- /// Useful to get all `SmallVec` properties with a single check of the current storage variant.
972
- #[inline]
973
- fn triple(&self) -> (ConstNonNull<A::Item>, usize, usize) {
974
- unsafe {
975
- if self.spilled() {
976
- let (ptr, len) = self.data.heap();
977
- (ptr, len, self.capacity)
978
- } else {
979
- (self.data.inline(), self.capacity, Self::inline_capacity())
980
- }
981
- }
982
- }
983
-
984
- /// Returns a tuple with (data ptr, len ptr, capacity)
985
- #[inline]
986
- fn triple_mut(&mut self) -> (NonNull<A::Item>, &mut usize, usize) {
987
- unsafe {
988
- if self.spilled() {
989
- let (ptr, len_ptr) = self.data.heap_mut();
990
- (ptr, len_ptr, self.capacity)
991
- } else {
992
- (
993
- self.data.inline_mut(),
994
- &mut self.capacity,
995
- Self::inline_capacity(),
996
- )
997
- }
998
- }
999
- }
1000
-
1001
- /// Returns `true` if the data has spilled into a separate heap-allocated buffer.
1002
- #[inline]
1003
- pub fn spilled(&self) -> bool {
1004
- self.capacity > Self::inline_capacity()
1005
- }
1006
-
1007
- /// Creates a draining iterator that removes the specified range in the vector
1008
- /// and yields the removed items.
1009
- ///
1010
- /// Note 1: The element range is removed even if the iterator is only
1011
- /// partially consumed or not consumed at all.
1012
- ///
1013
- /// Note 2: It is unspecified how many elements are removed from the vector
1014
- /// if the `Drain` value is leaked.
1015
- ///
1016
- /// # Panics
1017
- ///
1018
- /// Panics if the starting point is greater than the end point or if
1019
- /// the end point is greater than the length of the vector.
1020
- pub fn drain<R>(&mut self, range: R) -> Drain<'_, A>
1021
- where
1022
- R: RangeBounds<usize>,
1023
- {
1024
- use core::ops::Bound::*;
1025
-
1026
- let len = self.len();
1027
- let start = match range.start_bound() {
1028
- Included(&n) => n,
1029
- Excluded(&n) => n.checked_add(1).expect("Range start out of bounds"),
1030
- Unbounded => 0,
1031
- };
1032
- let end = match range.end_bound() {
1033
- Included(&n) => n.checked_add(1).expect("Range end out of bounds"),
1034
- Excluded(&n) => n,
1035
- Unbounded => len,
1036
- };
1037
-
1038
- assert!(start <= end);
1039
- assert!(end <= len);
1040
-
1041
- unsafe {
1042
- self.set_len(start);
1043
-
1044
- let range_slice = slice::from_raw_parts(self.as_ptr().add(start), end - start);
1045
-
1046
- Drain {
1047
- tail_start: end,
1048
- tail_len: len - end,
1049
- iter: range_slice.iter(),
1050
- // Since self is a &mut, passing it to a function would invalidate the slice iterator.
1051
- vec: NonNull::new_unchecked(self as *mut _),
1052
- }
1053
- }
1054
- }
1055
-
1056
- #[cfg(feature = "drain_filter")]
1057
- /// Creates an iterator which uses a closure to determine if an element should be removed.
1058
- ///
1059
- /// If the closure returns true, the element is removed and yielded. If the closure returns
1060
- /// false, the element will remain in the vector and will not be yielded by the iterator.
1061
- ///
1062
- /// Using this method is equivalent to the following code:
1063
- /// ```
1064
- /// # use smallvec::SmallVec;
1065
- /// # let some_predicate = |x: &mut i32| { *x == 2 || *x == 3 || *x == 6 };
1066
- /// # let mut vec: SmallVec<[i32; 8]> = SmallVec::from_slice(&[1i32, 2, 3, 4, 5, 6]);
1067
- /// let mut i = 0;
1068
- /// while i < vec.len() {
1069
- /// if some_predicate(&mut vec[i]) {
1070
- /// let val = vec.remove(i);
1071
- /// // your code here
1072
- /// } else {
1073
- /// i += 1;
1074
- /// }
1075
- /// }
1076
- ///
1077
- /// # assert_eq!(vec, SmallVec::<[i32; 8]>::from_slice(&[1i32, 4, 5]));
1078
- /// ```
1079
- /// ///
1080
- /// But `drain_filter` is easier to use. `drain_filter` is also more efficient,
1081
- /// because it can backshift the elements of the array in bulk.
1082
- ///
1083
- /// Note that `drain_filter` also lets you mutate every element in the filter closure,
1084
- /// regardless of whether you choose to keep or remove it.
1085
- ///
1086
- /// # Examples
1087
- ///
1088
- /// Splitting an array into evens and odds, reusing the original allocation:
1089
- ///
1090
- /// ```
1091
- /// # use smallvec::SmallVec;
1092
- /// let mut numbers: SmallVec<[i32; 16]> = SmallVec::from_slice(&[1i32, 2, 3, 4, 5, 6, 8, 9, 11, 13, 14, 15]);
1093
- ///
1094
- /// let evens = numbers.drain_filter(|x| *x % 2 == 0).collect::<SmallVec<[i32; 16]>>();
1095
- /// let odds = numbers;
1096
- ///
1097
- /// assert_eq!(evens, SmallVec::<[i32; 16]>::from_slice(&[2i32, 4, 6, 8, 14]));
1098
- /// assert_eq!(odds, SmallVec::<[i32; 16]>::from_slice(&[1i32, 3, 5, 9, 11, 13, 15]));
1099
- /// ```
1100
- pub fn drain_filter<F>(&mut self, filter: F) -> DrainFilter<'_, A, F,>
1101
- where
1102
- F: FnMut(&mut A::Item) -> bool,
1103
- {
1104
- let old_len = self.len();
1105
-
1106
- // Guard against us getting leaked (leak amplification)
1107
- unsafe {
1108
- self.set_len(0);
1109
- }
1110
-
1111
- DrainFilter { vec: self, idx: 0, del: 0, old_len, pred: filter, panic_flag: false }
1112
- }
1113
-
1114
- /// Append an item to the vector.
1115
- #[inline]
1116
- pub fn push(&mut self, value: A::Item) {
1117
- unsafe {
1118
- let (mut ptr, mut len, cap) = self.triple_mut();
1119
- if *len == cap {
1120
- self.reserve_one_unchecked();
1121
- let (heap_ptr, heap_len) = self.data.heap_mut();
1122
- ptr = heap_ptr;
1123
- len = heap_len;
1124
- }
1125
- ptr::write(ptr.as_ptr().add(*len), value);
1126
- *len += 1;
1127
- }
1128
- }
1129
-
1130
- /// Remove an item from the end of the vector and return it, or None if empty.
1131
- #[inline]
1132
- pub fn pop(&mut self) -> Option<A::Item> {
1133
- unsafe {
1134
- let (ptr, len_ptr, _) = self.triple_mut();
1135
- let ptr: *const _ = ptr.as_ptr();
1136
- if *len_ptr == 0 {
1137
- return None;
1138
- }
1139
- let last_index = *len_ptr - 1;
1140
- *len_ptr = last_index;
1141
- Some(ptr::read(ptr.add(last_index)))
1142
- }
1143
- }
1144
-
1145
- /// Moves all the elements of `other` into `self`, leaving `other` empty.
1146
- ///
1147
- /// # Example
1148
- ///
1149
- /// ```
1150
- /// # use smallvec::{SmallVec, smallvec};
1151
- /// let mut v0: SmallVec<[u8; 16]> = smallvec![1, 2, 3];
1152
- /// let mut v1: SmallVec<[u8; 32]> = smallvec![4, 5, 6];
1153
- /// v0.append(&mut v1);
1154
- /// assert_eq!(*v0, [1, 2, 3, 4, 5, 6]);
1155
- /// assert_eq!(*v1, []);
1156
- /// ```
1157
- pub fn append<B>(&mut self, other: &mut SmallVec<B>)
1158
- where
1159
- B: Array<Item = A::Item>,
1160
- {
1161
- self.extend(other.drain(..))
1162
- }
1163
-
1164
- /// Re-allocate to set the capacity to `max(new_cap, inline_size())`.
1165
- ///
1166
- /// Panics if `new_cap` is less than the vector's length
1167
- /// or if the capacity computation overflows `usize`.
1168
- pub fn grow(&mut self, new_cap: usize) {
1169
- infallible(self.try_grow(new_cap))
1170
- }
1171
-
1172
- /// Re-allocate to set the capacity to `max(new_cap, inline_size())`.
1173
- ///
1174
- /// Panics if `new_cap` is less than the vector's length
1175
- pub fn try_grow(&mut self, new_cap: usize) -> Result<(), CollectionAllocErr> {
1176
- unsafe {
1177
- let unspilled = !self.spilled();
1178
- let (ptr, &mut len, cap) = self.triple_mut();
1179
- assert!(new_cap >= len);
1180
- if new_cap <= Self::inline_capacity() {
1181
- if unspilled {
1182
- return Ok(());
1183
- }
1184
- self.data = SmallVecData::from_inline(MaybeUninit::uninit());
1185
- ptr::copy_nonoverlapping(ptr.as_ptr(), self.data.inline_mut().as_ptr(), len);
1186
- self.capacity = len;
1187
- deallocate(ptr, cap);
1188
- } else if new_cap != cap {
1189
- let layout = layout_array::<A::Item>(new_cap)?;
1190
- debug_assert!(layout.size() > 0);
1191
- let new_alloc;
1192
- if unspilled {
1193
- new_alloc = NonNull::new(alloc::alloc::alloc(layout))
1194
- .ok_or(CollectionAllocErr::AllocErr { layout })?
1195
- .cast();
1196
- ptr::copy_nonoverlapping(ptr.as_ptr(), new_alloc.as_ptr(), len);
1197
- } else {
1198
- // This should never fail since the same succeeded
1199
- // when previously allocating `ptr`.
1200
- let old_layout = layout_array::<A::Item>(cap)?;
1201
-
1202
- let new_ptr =
1203
- alloc::alloc::realloc(ptr.as_ptr() as *mut u8, old_layout, layout.size());
1204
- new_alloc = NonNull::new(new_ptr)
1205
- .ok_or(CollectionAllocErr::AllocErr { layout })?
1206
- .cast();
1207
- }
1208
- self.data = SmallVecData::from_heap(new_alloc, len);
1209
- self.capacity = new_cap;
1210
- }
1211
- Ok(())
1212
- }
1213
- }
1214
-
1215
- /// Reserve capacity for `additional` more elements to be inserted.
1216
- ///
1217
- /// May reserve more space to avoid frequent reallocations.
1218
- ///
1219
- /// Panics if the capacity computation overflows `usize`.
1220
- #[inline]
1221
- pub fn reserve(&mut self, additional: usize) {
1222
- infallible(self.try_reserve(additional))
1223
- }
1224
-
1225
- /// Internal method used to grow in push() and insert(), where we know already we have to grow.
1226
- #[cold]
1227
- fn reserve_one_unchecked(&mut self) {
1228
- debug_assert_eq!(self.len(), self.capacity());
1229
- let new_cap = self.len()
1230
- .checked_add(1)
1231
- .and_then(usize::checked_next_power_of_two)
1232
- .expect("capacity overflow");
1233
- infallible(self.try_grow(new_cap))
1234
- }
1235
-
1236
- /// Reserve capacity for `additional` more elements to be inserted.
1237
- ///
1238
- /// May reserve more space to avoid frequent reallocations.
1239
- pub fn try_reserve(&mut self, additional: usize) -> Result<(), CollectionAllocErr> {
1240
- // prefer triple_mut() even if triple() would work so that the optimizer removes duplicated
1241
- // calls to it from callers.
1242
- let (_, &mut len, cap) = self.triple_mut();
1243
- if cap - len >= additional {
1244
- return Ok(());
1245
- }
1246
- let new_cap = len
1247
- .checked_add(additional)
1248
- .and_then(usize::checked_next_power_of_two)
1249
- .ok_or(CollectionAllocErr::CapacityOverflow)?;
1250
- self.try_grow(new_cap)
1251
- }
1252
-
1253
- /// Reserve the minimum capacity for `additional` more elements to be inserted.
1254
- ///
1255
- /// Panics if the new capacity overflows `usize`.
1256
- pub fn reserve_exact(&mut self, additional: usize) {
1257
- infallible(self.try_reserve_exact(additional))
1258
- }
1259
-
1260
- /// Reserve the minimum capacity for `additional` more elements to be inserted.
1261
- pub fn try_reserve_exact(&mut self, additional: usize) -> Result<(), CollectionAllocErr> {
1262
- let (_, &mut len, cap) = self.triple_mut();
1263
- if cap - len >= additional {
1264
- return Ok(());
1265
- }
1266
- let new_cap = len
1267
- .checked_add(additional)
1268
- .ok_or(CollectionAllocErr::CapacityOverflow)?;
1269
- self.try_grow(new_cap)
1270
- }
1271
-
1272
- /// Shrink the capacity of the vector as much as possible.
1273
- ///
1274
- /// When possible, this will move data from an external heap buffer to the vector's inline
1275
- /// storage.
1276
- pub fn shrink_to_fit(&mut self) {
1277
- if !self.spilled() {
1278
- return;
1279
- }
1280
- let len = self.len();
1281
- if self.inline_size() >= len {
1282
- unsafe {
1283
- let (ptr, len) = self.data.heap();
1284
- self.data = SmallVecData::from_inline(MaybeUninit::uninit());
1285
- ptr::copy_nonoverlapping(ptr.as_ptr(), self.data.inline_mut().as_ptr(), len);
1286
- deallocate(ptr.0, self.capacity);
1287
- self.capacity = len;
1288
- }
1289
- } else if self.capacity() > len {
1290
- self.grow(len);
1291
- }
1292
- }
1293
-
1294
- /// Shorten the vector, keeping the first `len` elements and dropping the rest.
1295
- ///
1296
- /// If `len` is greater than or equal to the vector's current length, this has no
1297
- /// effect.
1298
- ///
1299
- /// This does not re-allocate. If you want the vector's capacity to shrink, call
1300
- /// `shrink_to_fit` after truncating.
1301
- pub fn truncate(&mut self, len: usize) {
1302
- unsafe {
1303
- let (ptr, len_ptr, _) = self.triple_mut();
1304
- let ptr = ptr.as_ptr();
1305
- while len < *len_ptr {
1306
- let last_index = *len_ptr - 1;
1307
- *len_ptr = last_index;
1308
- ptr::drop_in_place(ptr.add(last_index));
1309
- }
1310
- }
1311
- }
1312
-
1313
- /// Extracts a slice containing the entire vector.
1314
- ///
1315
- /// Equivalent to `&s[..]`.
1316
- pub fn as_slice(&self) -> &[A::Item] {
1317
- self
1318
- }
1319
-
1320
- /// Extracts a mutable slice of the entire vector.
1321
- ///
1322
- /// Equivalent to `&mut s[..]`.
1323
- pub fn as_mut_slice(&mut self) -> &mut [A::Item] {
1324
- self
1325
- }
1326
-
1327
- /// Remove the element at position `index`, replacing it with the last element.
1328
- ///
1329
- /// This does not preserve ordering, but is O(1).
1330
- ///
1331
- /// Panics if `index` is out of bounds.
1332
- #[inline]
1333
- pub fn swap_remove(&mut self, index: usize) -> A::Item {
1334
- let len = self.len();
1335
- self.swap(len - 1, index);
1336
- self.pop()
1337
- .unwrap_or_else(|| unsafe { unreachable_unchecked() })
1338
- }
1339
-
1340
- /// Remove all elements from the vector.
1341
- #[inline]
1342
- pub fn clear(&mut self) {
1343
- self.truncate(0);
1344
- }
1345
-
1346
- /// Remove and return the element at position `index`, shifting all elements after it to the
1347
- /// left.
1348
- ///
1349
- /// Panics if `index` is out of bounds.
1350
- pub fn remove(&mut self, index: usize) -> A::Item {
1351
- unsafe {
1352
- let (ptr, len_ptr, _) = self.triple_mut();
1353
- let len = *len_ptr;
1354
- assert!(index < len);
1355
- *len_ptr = len - 1;
1356
- let ptr = ptr.as_ptr().add(index);
1357
- let item = ptr::read(ptr);
1358
- ptr::copy(ptr.add(1), ptr, len - index - 1);
1359
- item
1360
- }
1361
- }
1362
-
1363
- /// Insert an element at position `index`, shifting all elements after it to the right.
1364
- ///
1365
- /// Panics if `index > len`.
1366
- pub fn insert(&mut self, index: usize, element: A::Item) {
1367
- unsafe {
1368
- let (mut ptr, mut len_ptr, cap) = self.triple_mut();
1369
- if *len_ptr == cap {
1370
- self.reserve_one_unchecked();
1371
- let (heap_ptr, heap_len_ptr) = self.data.heap_mut();
1372
- ptr = heap_ptr;
1373
- len_ptr = heap_len_ptr;
1374
- }
1375
- let mut ptr = ptr.as_ptr();
1376
- let len = *len_ptr;
1377
- if index > len {
1378
- panic!("index exceeds length");
1379
- }
1380
- // SAFETY: add is UB if index > len, but we panicked first
1381
- ptr = ptr.add(index);
1382
- if index < len {
1383
- // Shift element to the right of `index`.
1384
- ptr::copy(ptr, ptr.add(1), len - index);
1385
- }
1386
- *len_ptr = len + 1;
1387
- ptr::write(ptr, element);
1388
- }
1389
- }
1390
-
1391
- /// Insert multiple elements at position `index`, shifting all following elements toward the
1392
- /// back.
1393
- pub fn insert_many<I: IntoIterator<Item = A::Item>>(&mut self, index: usize, iterable: I) {
1394
- let mut iter = iterable.into_iter();
1395
- if index == self.len() {
1396
- return self.extend(iter);
1397
- }
1398
-
1399
- let (lower_size_bound, _) = iter.size_hint();
1400
- assert!(lower_size_bound <= core::isize::MAX as usize); // Ensure offset is indexable
1401
- assert!(index + lower_size_bound >= index); // Protect against overflow
1402
-
1403
- let mut num_added = 0;
1404
- let old_len = self.len();
1405
- assert!(index <= old_len);
1406
-
1407
- unsafe {
1408
- // Reserve space for `lower_size_bound` elements.
1409
- self.reserve(lower_size_bound);
1410
- let start = self.as_mut_ptr();
1411
- let ptr = start.add(index);
1412
-
1413
- // Move the trailing elements.
1414
- ptr::copy(ptr, ptr.add(lower_size_bound), old_len - index);
1415
-
1416
- // In case the iterator panics, don't double-drop the items we just copied above.
1417
- self.set_len(0);
1418
- let mut guard = DropOnPanic {
1419
- start,
1420
- skip: index..(index + lower_size_bound),
1421
- len: old_len + lower_size_bound,
1422
- };
1423
-
1424
- // The set_len above invalidates the previous pointers, so we must re-create them.
1425
- let start = self.as_mut_ptr();
1426
- let ptr = start.add(index);
1427
-
1428
- while num_added < lower_size_bound {
1429
- let element = match iter.next() {
1430
- Some(x) => x,
1431
- None => break,
1432
- };
1433
- let cur = ptr.add(num_added);
1434
- ptr::write(cur, element);
1435
- guard.skip.start += 1;
1436
- num_added += 1;
1437
- }
1438
-
1439
- if num_added < lower_size_bound {
1440
- // Iterator provided fewer elements than the hint. Move the tail backward.
1441
- ptr::copy(
1442
- ptr.add(lower_size_bound),
1443
- ptr.add(num_added),
1444
- old_len - index,
1445
- );
1446
- }
1447
- // There are no more duplicate or uninitialized slots, so the guard is not needed.
1448
- self.set_len(old_len + num_added);
1449
- mem::forget(guard);
1450
- }
1451
-
1452
- // Insert any remaining elements one-by-one.
1453
- for element in iter {
1454
- self.insert(index + num_added, element);
1455
- num_added += 1;
1456
- }
1457
-
1458
- struct DropOnPanic<T> {
1459
- start: *mut T,
1460
- skip: Range<usize>, // Space we copied-out-of, but haven't written-to yet.
1461
- len: usize,
1462
- }
1463
-
1464
- impl<T> Drop for DropOnPanic<T> {
1465
- fn drop(&mut self) {
1466
- for i in 0..self.len {
1467
- if !self.skip.contains(&i) {
1468
- unsafe {
1469
- ptr::drop_in_place(self.start.add(i));
1470
- }
1471
- }
1472
- }
1473
- }
1474
- }
1475
- }
1476
-
1477
- /// Convert a `SmallVec` to a `Vec`, without reallocating if the `SmallVec` has already spilled onto
1478
- /// the heap.
1479
- pub fn into_vec(mut self) -> Vec<A::Item> {
1480
- if self.spilled() {
1481
- unsafe {
1482
- let (ptr, &mut len) = self.data.heap_mut();
1483
- let v = Vec::from_raw_parts(ptr.as_ptr(), len, self.capacity);
1484
- mem::forget(self);
1485
- v
1486
- }
1487
- } else {
1488
- self.into_iter().collect()
1489
- }
1490
- }
1491
-
1492
- /// Converts a `SmallVec` into a `Box<[T]>` without reallocating if the `SmallVec` has already spilled
1493
- /// onto the heap.
1494
- ///
1495
- /// Note that this will drop any excess capacity.
1496
- pub fn into_boxed_slice(self) -> Box<[A::Item]> {
1497
- self.into_vec().into_boxed_slice()
1498
- }
1499
-
1500
- /// Convert the `SmallVec` into an `A` if possible. Otherwise return `Err(Self)`.
1501
- ///
1502
- /// This method returns `Err(Self)` if the `SmallVec` is too short (and the `A` contains uninitialized elements),
1503
- /// or if the `SmallVec` is too long (and all the elements were spilled to the heap).
1504
- pub fn into_inner(self) -> Result<A, Self> {
1505
- if self.spilled() || self.len() != A::size() {
1506
- // Note: A::size, not Self::inline_capacity
1507
- Err(self)
1508
- } else {
1509
- unsafe {
1510
- let data = ptr::read(&self.data);
1511
- mem::forget(self);
1512
- Ok(data.into_inline().assume_init())
1513
- }
1514
- }
1515
- }
1516
-
1517
- /// Retains only the elements specified by the predicate.
1518
- ///
1519
- /// In other words, remove all elements `e` such that `f(&e)` returns `false`.
1520
- /// This method operates in place and preserves the order of the retained
1521
- /// elements.
1522
- pub fn retain<F: FnMut(&mut A::Item) -> bool>(&mut self, mut f: F) {
1523
- let mut del = 0;
1524
- let len = self.len();
1525
- for i in 0..len {
1526
- if !f(&mut self[i]) {
1527
- del += 1;
1528
- } else if del > 0 {
1529
- self.swap(i - del, i);
1530
- }
1531
- }
1532
- self.truncate(len - del);
1533
- }
1534
-
1535
- /// Retains only the elements specified by the predicate.
1536
- ///
1537
- /// This method is identical in behaviour to [`retain`]; it is included only
1538
- /// to maintain api-compatibility with `std::Vec`, where the methods are
1539
- /// separate for historical reasons.
1540
- pub fn retain_mut<F: FnMut(&mut A::Item) -> bool>(&mut self, f: F) {
1541
- self.retain(f)
1542
- }
1543
-
1544
- /// Removes consecutive duplicate elements.
1545
- pub fn dedup(&mut self)
1546
- where
1547
- A::Item: PartialEq<A::Item>,
1548
- {
1549
- self.dedup_by(|a, b| a == b);
1550
- }
1551
-
1552
- /// Removes consecutive duplicate elements using the given equality relation.
1553
- pub fn dedup_by<F>(&mut self, mut same_bucket: F)
1554
- where
1555
- F: FnMut(&mut A::Item, &mut A::Item) -> bool,
1556
- {
1557
- // See the implementation of Vec::dedup_by in the
1558
- // standard library for an explanation of this algorithm.
1559
- let len = self.len();
1560
- if len <= 1 {
1561
- return;
1562
- }
1563
-
1564
- let ptr = self.as_mut_ptr();
1565
- let mut w: usize = 1;
1566
-
1567
- unsafe {
1568
- for r in 1..len {
1569
- let p_r = ptr.add(r);
1570
- let p_wm1 = ptr.add(w - 1);
1571
- if !same_bucket(&mut *p_r, &mut *p_wm1) {
1572
- if r != w {
1573
- let p_w = p_wm1.add(1);
1574
- mem::swap(&mut *p_r, &mut *p_w);
1575
- }
1576
- w += 1;
1577
- }
1578
- }
1579
- }
1580
-
1581
- self.truncate(w);
1582
- }
1583
-
1584
- /// Removes consecutive elements that map to the same key.
1585
- pub fn dedup_by_key<F, K>(&mut self, mut key: F)
1586
- where
1587
- F: FnMut(&mut A::Item) -> K,
1588
- K: PartialEq<K>,
1589
- {
1590
- self.dedup_by(|a, b| key(a) == key(b));
1591
- }
1592
-
1593
- /// Resizes the `SmallVec` in-place so that `len` is equal to `new_len`.
1594
- ///
1595
- /// If `new_len` is greater than `len`, the `SmallVec` is extended by the difference, with each
1596
- /// additional slot filled with the result of calling the closure `f`. The return values from `f`
1597
- /// will end up in the `SmallVec` in the order they have been generated.
1598
- ///
1599
- /// If `new_len` is less than `len`, the `SmallVec` is simply truncated.
1600
- ///
1601
- /// This method uses a closure to create new values on every push. If you'd rather `Clone` a given
1602
- /// value, use `resize`. If you want to use the `Default` trait to generate values, you can pass
1603
- /// `Default::default()` as the second argument.
1604
- ///
1605
- /// Added for `std::vec::Vec` compatibility (added in Rust 1.33.0)
1606
- ///
1607
- /// ```
1608
- /// # use smallvec::{smallvec, SmallVec};
1609
- /// let mut vec : SmallVec<[_; 4]> = smallvec![1, 2, 3];
1610
- /// vec.resize_with(5, Default::default);
1611
- /// assert_eq!(&*vec, &[1, 2, 3, 0, 0]);
1612
- ///
1613
- /// let mut vec : SmallVec<[_; 4]> = smallvec![];
1614
- /// let mut p = 1;
1615
- /// vec.resize_with(4, || { p *= 2; p });
1616
- /// assert_eq!(&*vec, &[2, 4, 8, 16]);
1617
- /// ```
1618
- pub fn resize_with<F>(&mut self, new_len: usize, f: F)
1619
- where
1620
- F: FnMut() -> A::Item,
1621
- {
1622
- let old_len = self.len();
1623
- if old_len < new_len {
1624
- let mut f = f;
1625
- let additional = new_len - old_len;
1626
- self.reserve(additional);
1627
- for _ in 0..additional {
1628
- self.push(f());
1629
- }
1630
- } else if old_len > new_len {
1631
- self.truncate(new_len);
1632
- }
1633
- }
1634
-
1635
- /// Creates a `SmallVec` directly from the raw components of another
1636
- /// `SmallVec`.
1637
- ///
1638
- /// # Safety
1639
- ///
1640
- /// This is highly unsafe, due to the number of invariants that aren't
1641
- /// checked:
1642
- ///
1643
- /// * `ptr` needs to have been previously allocated via `SmallVec` for its
1644
- /// spilled storage (at least, it's highly likely to be incorrect if it
1645
- /// wasn't).
1646
- /// * `ptr`'s `A::Item` type needs to be the same size and alignment that
1647
- /// it was allocated with
1648
- /// * `length` needs to be less than or equal to `capacity`.
1649
- /// * `capacity` needs to be the capacity that the pointer was allocated
1650
- /// with.
1651
- ///
1652
- /// Violating these may cause problems like corrupting the allocator's
1653
- /// internal data structures.
1654
- ///
1655
- /// Additionally, `capacity` must be greater than the amount of inline
1656
- /// storage `A` has; that is, the new `SmallVec` must need to spill over
1657
- /// into heap allocated storage. This condition is asserted against.
1658
- ///
1659
- /// The ownership of `ptr` is effectively transferred to the
1660
- /// `SmallVec` which may then deallocate, reallocate or change the
1661
- /// contents of memory pointed to by the pointer at will. Ensure
1662
- /// that nothing else uses the pointer after calling this
1663
- /// function.
1664
- ///
1665
- /// # Examples
1666
- ///
1667
- /// ```
1668
- /// # use smallvec::{smallvec, SmallVec};
1669
- /// use std::mem;
1670
- /// use std::ptr;
1671
- ///
1672
- /// fn main() {
1673
- /// let mut v: SmallVec<[_; 1]> = smallvec![1, 2, 3];
1674
- ///
1675
- /// // Pull out the important parts of `v`.
1676
- /// let p = v.as_mut_ptr();
1677
- /// let len = v.len();
1678
- /// let cap = v.capacity();
1679
- /// let spilled = v.spilled();
1680
- ///
1681
- /// unsafe {
1682
- /// // Forget all about `v`. The heap allocation that stored the
1683
- /// // three values won't be deallocated.
1684
- /// mem::forget(v);
1685
- ///
1686
- /// // Overwrite memory with [4, 5, 6].
1687
- /// //
1688
- /// // This is only safe if `spilled` is true! Otherwise, we are
1689
- /// // writing into the old `SmallVec`'s inline storage on the
1690
- /// // stack.
1691
- /// assert!(spilled);
1692
- /// for i in 0..len {
1693
- /// ptr::write(p.add(i), 4 + i);
1694
- /// }
1695
- ///
1696
- /// // Put everything back together into a SmallVec with a different
1697
- /// // amount of inline storage, but which is still less than `cap`.
1698
- /// let rebuilt = SmallVec::<[_; 2]>::from_raw_parts(p, len, cap);
1699
- /// assert_eq!(&*rebuilt, &[4, 5, 6]);
1700
- /// }
1701
- /// }
1702
- #[inline]
1703
- pub unsafe fn from_raw_parts(ptr: *mut A::Item, length: usize, capacity: usize) -> SmallVec<A> {
1704
- // SAFETY: We require caller to provide same ptr as we alloc
1705
- // and we never alloc null pointer.
1706
- let ptr = unsafe {
1707
- debug_assert!(!ptr.is_null(), "Called `from_raw_parts` with null pointer.");
1708
- NonNull::new_unchecked(ptr)
1709
- };
1710
- assert!(capacity > Self::inline_capacity());
1711
- SmallVec {
1712
- capacity,
1713
- data: SmallVecData::from_heap(ptr, length),
1714
- }
1715
- }
1716
-
1717
- /// Returns a raw pointer to the vector's buffer.
1718
- pub fn as_ptr(&self) -> *const A::Item {
1719
- // We shadow the slice method of the same name to avoid going through
1720
- // `deref`, which creates an intermediate reference that may place
1721
- // additional safety constraints on the contents of the slice.
1722
- self.triple().0.as_ptr()
1723
- }
1724
-
1725
- /// Returns a raw mutable pointer to the vector's buffer.
1726
- pub fn as_mut_ptr(&mut self) -> *mut A::Item {
1727
- // We shadow the slice method of the same name to avoid going through
1728
- // `deref_mut`, which creates an intermediate reference that may place
1729
- // additional safety constraints on the contents of the slice.
1730
- self.triple_mut().0.as_ptr()
1731
- }
1732
- }
1733
-
1734
- impl<A: Array> SmallVec<A>
1735
- where
1736
- A::Item: Copy,
1737
- {
1738
- /// Copy the elements from a slice into a new `SmallVec`.
1739
- ///
1740
- /// For slices of `Copy` types, this is more efficient than `SmallVec::from(slice)`.
1741
- pub fn from_slice(slice: &[A::Item]) -> Self {
1742
- let len = slice.len();
1743
- if len <= Self::inline_capacity() {
1744
- SmallVec {
1745
- capacity: len,
1746
- data: SmallVecData::from_inline(unsafe {
1747
- let mut data: MaybeUninit<A> = MaybeUninit::uninit();
1748
- ptr::copy_nonoverlapping(
1749
- slice.as_ptr(),
1750
- data.as_mut_ptr() as *mut A::Item,
1751
- len,
1752
- );
1753
- data
1754
- }),
1755
- }
1756
- } else {
1757
- let mut b = slice.to_vec();
1758
- let cap = b.capacity();
1759
- let ptr = NonNull::new(b.as_mut_ptr()).expect("Vec always contain non null pointers.");
1760
- mem::forget(b);
1761
- SmallVec {
1762
- capacity: cap,
1763
- data: SmallVecData::from_heap(ptr, len),
1764
- }
1765
- }
1766
- }
1767
-
1768
- /// Copy elements from a slice into the vector at position `index`, shifting any following
1769
- /// elements toward the back.
1770
- ///
1771
- /// For slices of `Copy` types, this is more efficient than `insert`.
1772
- #[inline]
1773
- pub fn insert_from_slice(&mut self, index: usize, slice: &[A::Item]) {
1774
- self.reserve(slice.len());
1775
-
1776
- let len = self.len();
1777
- assert!(index <= len);
1778
-
1779
- unsafe {
1780
- let slice_ptr = slice.as_ptr();
1781
- let ptr = self.as_mut_ptr().add(index);
1782
- ptr::copy(ptr, ptr.add(slice.len()), len - index);
1783
- ptr::copy_nonoverlapping(slice_ptr, ptr, slice.len());
1784
- self.set_len(len + slice.len());
1785
- }
1786
- }
1787
-
1788
- /// Copy elements from a slice and append them to the vector.
1789
- ///
1790
- /// For slices of `Copy` types, this is more efficient than `extend`.
1791
- #[inline]
1792
- pub fn extend_from_slice(&mut self, slice: &[A::Item]) {
1793
- let len = self.len();
1794
- self.insert_from_slice(len, slice);
1795
- }
1796
- }
1797
-
1798
- impl<A: Array> SmallVec<A>
1799
- where
1800
- A::Item: Clone,
1801
- {
1802
- /// Resizes the vector so that its length is equal to `len`.
1803
- ///
1804
- /// If `len` is less than the current length, the vector simply truncated.
1805
- ///
1806
- /// If `len` is greater than the current length, `value` is appended to the
1807
- /// vector until its length equals `len`.
1808
- pub fn resize(&mut self, len: usize, value: A::Item) {
1809
- let old_len = self.len();
1810
-
1811
- if len > old_len {
1812
- self.extend(repeat(value).take(len - old_len));
1813
- } else {
1814
- self.truncate(len);
1815
- }
1816
- }
1817
-
1818
- /// Creates a `SmallVec` with `n` copies of `elem`.
1819
- /// ```
1820
- /// use smallvec::SmallVec;
1821
- ///
1822
- /// let v = SmallVec::<[char; 128]>::from_elem('d', 2);
1823
- /// assert_eq!(v, SmallVec::from_buf(['d', 'd']));
1824
- /// ```
1825
- pub fn from_elem(elem: A::Item, n: usize) -> Self {
1826
- if n > Self::inline_capacity() {
1827
- vec![elem; n].into()
1828
- } else {
1829
- let mut v = SmallVec::<A>::new();
1830
- unsafe {
1831
- let (ptr, len_ptr, _) = v.triple_mut();
1832
- let ptr = ptr.as_ptr();
1833
- let mut local_len = SetLenOnDrop::new(len_ptr);
1834
-
1835
- for i in 0..n {
1836
- ::core::ptr::write(ptr.add(i), elem.clone());
1837
- local_len.increment_len(1);
1838
- }
1839
- }
1840
- v
1841
- }
1842
- }
1843
- }
1844
-
1845
- impl<A: Array> ops::Deref for SmallVec<A> {
1846
- type Target = [A::Item];
1847
- #[inline]
1848
- fn deref(&self) -> &[A::Item] {
1849
- unsafe {
1850
- let (ptr, len, _) = self.triple();
1851
- slice::from_raw_parts(ptr.as_ptr(), len)
1852
- }
1853
- }
1854
- }
1855
-
1856
- impl<A: Array> ops::DerefMut for SmallVec<A> {
1857
- #[inline]
1858
- fn deref_mut(&mut self) -> &mut [A::Item] {
1859
- unsafe {
1860
- let (ptr, &mut len, _) = self.triple_mut();
1861
- slice::from_raw_parts_mut(ptr.as_ptr(), len)
1862
- }
1863
- }
1864
- }
1865
-
1866
- impl<A: Array> AsRef<[A::Item]> for SmallVec<A> {
1867
- #[inline]
1868
- fn as_ref(&self) -> &[A::Item] {
1869
- self
1870
- }
1871
- }
1872
-
1873
- impl<A: Array> AsMut<[A::Item]> for SmallVec<A> {
1874
- #[inline]
1875
- fn as_mut(&mut self) -> &mut [A::Item] {
1876
- self
1877
- }
1878
- }
1879
-
1880
- impl<A: Array> Borrow<[A::Item]> for SmallVec<A> {
1881
- #[inline]
1882
- fn borrow(&self) -> &[A::Item] {
1883
- self
1884
- }
1885
- }
1886
-
1887
- impl<A: Array> BorrowMut<[A::Item]> for SmallVec<A> {
1888
- #[inline]
1889
- fn borrow_mut(&mut self) -> &mut [A::Item] {
1890
- self
1891
- }
1892
- }
1893
-
1894
- #[cfg(feature = "write")]
1895
- #[cfg_attr(docsrs, doc(cfg(feature = "write")))]
1896
- impl<A: Array<Item = u8>> io::Write for SmallVec<A> {
1897
- #[inline]
1898
- fn write(&mut self, buf: &[u8]) -> io::Result<usize> {
1899
- self.extend_from_slice(buf);
1900
- Ok(buf.len())
1901
- }
1902
-
1903
- #[inline]
1904
- fn write_all(&mut self, buf: &[u8]) -> io::Result<()> {
1905
- self.extend_from_slice(buf);
1906
- Ok(())
1907
- }
1908
-
1909
- #[inline]
1910
- fn flush(&mut self) -> io::Result<()> {
1911
- Ok(())
1912
- }
1913
- }
1914
-
1915
- #[cfg(feature = "serde")]
1916
- #[cfg_attr(docsrs, doc(cfg(feature = "serde")))]
1917
- impl<A: Array> Serialize for SmallVec<A>
1918
- where
1919
- A::Item: Serialize,
1920
- {
1921
- fn serialize<S: Serializer>(&self, serializer: S) -> Result<S::Ok, S::Error> {
1922
- let mut state = serializer.serialize_seq(Some(self.len()))?;
1923
- for item in self {
1924
- state.serialize_element(&item)?;
1925
- }
1926
- state.end()
1927
- }
1928
- }
1929
-
1930
- #[cfg(feature = "serde")]
1931
- #[cfg_attr(docsrs, doc(cfg(feature = "serde")))]
1932
- impl<'de, A: Array> Deserialize<'de> for SmallVec<A>
1933
- where
1934
- A::Item: Deserialize<'de>,
1935
- {
1936
- fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error> {
1937
- deserializer.deserialize_seq(SmallVecVisitor {
1938
- phantom: PhantomData,
1939
- })
1940
- }
1941
- }
1942
-
1943
- #[cfg(feature = "serde")]
1944
- struct SmallVecVisitor<A> {
1945
- phantom: PhantomData<A>,
1946
- }
1947
-
1948
- #[cfg(feature = "serde")]
1949
- impl<'de, A: Array> Visitor<'de> for SmallVecVisitor<A>
1950
- where
1951
- A::Item: Deserialize<'de>,
1952
- {
1953
- type Value = SmallVec<A>;
1954
-
1955
- fn expecting(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
1956
- formatter.write_str("a sequence")
1957
- }
1958
-
1959
- fn visit_seq<B>(self, mut seq: B) -> Result<Self::Value, B::Error>
1960
- where
1961
- B: SeqAccess<'de>,
1962
- {
1963
- use serde::de::Error;
1964
- let len = seq.size_hint().unwrap_or(0);
1965
- let mut values = SmallVec::new();
1966
- values.try_reserve(len).map_err(B::Error::custom)?;
1967
-
1968
- while let Some(value) = seq.next_element()? {
1969
- values.push(value);
1970
- }
1971
-
1972
- Ok(values)
1973
- }
1974
- }
1975
-
1976
- #[cfg(feature = "malloc_size_of")]
1977
- impl<A: Array> MallocShallowSizeOf for SmallVec<A> {
1978
- fn shallow_size_of(&self, ops: &mut MallocSizeOfOps) -> usize {
1979
- if self.spilled() {
1980
- unsafe { ops.malloc_size_of(self.as_ptr()) }
1981
- } else {
1982
- 0
1983
- }
1984
- }
1985
- }
1986
-
1987
- #[cfg(feature = "malloc_size_of")]
1988
- impl<A> MallocSizeOf for SmallVec<A>
1989
- where
1990
- A: Array,
1991
- A::Item: MallocSizeOf,
1992
- {
1993
- fn size_of(&self, ops: &mut MallocSizeOfOps) -> usize {
1994
- let mut n = self.shallow_size_of(ops);
1995
- for elem in self.iter() {
1996
- n += elem.size_of(ops);
1997
- }
1998
- n
1999
- }
2000
- }
2001
-
2002
- #[cfg(feature = "specialization")]
2003
- trait SpecFrom<A: Array, S> {
2004
- fn spec_from(slice: S) -> SmallVec<A>;
2005
- }
2006
-
2007
- #[cfg(feature = "specialization")]
2008
- mod specialization;
2009
-
2010
- #[cfg(feature = "arbitrary")]
2011
- mod arbitrary;
2012
-
2013
- #[cfg(feature = "specialization")]
2014
- impl<'a, A: Array> SpecFrom<A, &'a [A::Item]> for SmallVec<A>
2015
- where
2016
- A::Item: Copy,
2017
- {
2018
- #[inline]
2019
- fn spec_from(slice: &'a [A::Item]) -> SmallVec<A> {
2020
- SmallVec::from_slice(slice)
2021
- }
2022
- }
2023
-
2024
- impl<'a, A: Array> From<&'a [A::Item]> for SmallVec<A>
2025
- where
2026
- A::Item: Clone,
2027
- {
2028
- #[cfg(not(feature = "specialization"))]
2029
- #[inline]
2030
- fn from(slice: &'a [A::Item]) -> SmallVec<A> {
2031
- slice.iter().cloned().collect()
2032
- }
2033
-
2034
- #[cfg(feature = "specialization")]
2035
- #[inline]
2036
- fn from(slice: &'a [A::Item]) -> SmallVec<A> {
2037
- SmallVec::spec_from(slice)
2038
- }
2039
- }
2040
-
2041
- impl<A: Array> From<Vec<A::Item>> for SmallVec<A> {
2042
- #[inline]
2043
- fn from(vec: Vec<A::Item>) -> SmallVec<A> {
2044
- SmallVec::from_vec(vec)
2045
- }
2046
- }
2047
-
2048
- impl<A: Array> From<A> for SmallVec<A> {
2049
- #[inline]
2050
- fn from(array: A) -> SmallVec<A> {
2051
- SmallVec::from_buf(array)
2052
- }
2053
- }
2054
-
2055
- impl<A: Array, I: SliceIndex<[A::Item]>> ops::Index<I> for SmallVec<A> {
2056
- type Output = I::Output;
2057
-
2058
- fn index(&self, index: I) -> &I::Output {
2059
- &(**self)[index]
2060
- }
2061
- }
2062
-
2063
- impl<A: Array, I: SliceIndex<[A::Item]>> ops::IndexMut<I> for SmallVec<A> {
2064
- fn index_mut(&mut self, index: I) -> &mut I::Output {
2065
- &mut (&mut **self)[index]
2066
- }
2067
- }
2068
-
2069
- #[allow(deprecated)]
2070
- impl<A: Array> ExtendFromSlice<A::Item> for SmallVec<A>
2071
- where
2072
- A::Item: Copy,
2073
- {
2074
- fn extend_from_slice(&mut self, other: &[A::Item]) {
2075
- SmallVec::extend_from_slice(self, other)
2076
- }
2077
- }
2078
-
2079
- impl<A: Array> FromIterator<A::Item> for SmallVec<A> {
2080
- #[inline]
2081
- fn from_iter<I: IntoIterator<Item = A::Item>>(iterable: I) -> SmallVec<A> {
2082
- let mut v = SmallVec::new();
2083
- v.extend(iterable);
2084
- v
2085
- }
2086
- }
2087
-
2088
- impl<A: Array> Extend<A::Item> for SmallVec<A> {
2089
- fn extend<I: IntoIterator<Item = A::Item>>(&mut self, iterable: I) {
2090
- let mut iter = iterable.into_iter();
2091
- let (lower_size_bound, _) = iter.size_hint();
2092
- self.reserve(lower_size_bound);
2093
-
2094
- unsafe {
2095
- let (ptr, len_ptr, cap) = self.triple_mut();
2096
- let ptr = ptr.as_ptr();
2097
- let mut len = SetLenOnDrop::new(len_ptr);
2098
- while len.get() < cap {
2099
- if let Some(out) = iter.next() {
2100
- ptr::write(ptr.add(len.get()), out);
2101
- len.increment_len(1);
2102
- } else {
2103
- return;
2104
- }
2105
- }
2106
- }
2107
-
2108
- for elem in iter {
2109
- self.push(elem);
2110
- }
2111
- }
2112
- }
2113
-
2114
- impl<A: Array> fmt::Debug for SmallVec<A>
2115
- where
2116
- A::Item: fmt::Debug,
2117
- {
2118
- fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
2119
- f.debug_list().entries(self.iter()).finish()
2120
- }
2121
- }
2122
-
2123
- impl<A: Array> Default for SmallVec<A> {
2124
- #[inline]
2125
- fn default() -> SmallVec<A> {
2126
- SmallVec::new()
2127
- }
2128
- }
2129
-
2130
- #[cfg(feature = "may_dangle")]
2131
- unsafe impl<#[may_dangle] A: Array> Drop for SmallVec<A> {
2132
- fn drop(&mut self) {
2133
- unsafe {
2134
- if self.spilled() {
2135
- let (ptr, &mut len) = self.data.heap_mut();
2136
- Vec::from_raw_parts(ptr.as_ptr(), len, self.capacity);
2137
- } else {
2138
- ptr::drop_in_place(&mut self[..]);
2139
- }
2140
- }
2141
- }
2142
- }
2143
-
2144
- #[cfg(not(feature = "may_dangle"))]
2145
- impl<A: Array> Drop for SmallVec<A> {
2146
- fn drop(&mut self) {
2147
- unsafe {
2148
- if self.spilled() {
2149
- let (ptr, &mut len) = self.data.heap_mut();
2150
- drop(Vec::from_raw_parts(ptr.as_ptr(), len, self.capacity));
2151
- } else {
2152
- ptr::drop_in_place(&mut self[..]);
2153
- }
2154
- }
2155
- }
2156
- }
2157
-
2158
- impl<A: Array> Clone for SmallVec<A>
2159
- where
2160
- A::Item: Clone,
2161
- {
2162
- #[inline]
2163
- fn clone(&self) -> SmallVec<A> {
2164
- SmallVec::from(self.as_slice())
2165
- }
2166
-
2167
- fn clone_from(&mut self, source: &Self) {
2168
- // Inspired from `impl Clone for Vec`.
2169
-
2170
- // drop anything that will not be overwritten
2171
- self.truncate(source.len());
2172
-
2173
- // self.len <= other.len due to the truncate above, so the
2174
- // slices here are always in-bounds.
2175
- let (init, tail) = source.split_at(self.len());
2176
-
2177
- // reuse the contained values' allocations/resources.
2178
- self.clone_from_slice(init);
2179
- self.extend(tail.iter().cloned());
2180
- }
2181
- }
2182
-
2183
- impl<A: Array, B: Array> PartialEq<SmallVec<B>> for SmallVec<A>
2184
- where
2185
- A::Item: PartialEq<B::Item>,
2186
- {
2187
- #[inline]
2188
- fn eq(&self, other: &SmallVec<B>) -> bool {
2189
- self[..] == other[..]
2190
- }
2191
- }
2192
-
2193
- impl<A: Array> Eq for SmallVec<A> where A::Item: Eq {}
2194
-
2195
- impl<A: Array> PartialOrd for SmallVec<A>
2196
- where
2197
- A::Item: PartialOrd,
2198
- {
2199
- #[inline]
2200
- fn partial_cmp(&self, other: &SmallVec<A>) -> Option<cmp::Ordering> {
2201
- PartialOrd::partial_cmp(&**self, &**other)
2202
- }
2203
- }
2204
-
2205
- impl<A: Array> Ord for SmallVec<A>
2206
- where
2207
- A::Item: Ord,
2208
- {
2209
- #[inline]
2210
- fn cmp(&self, other: &SmallVec<A>) -> cmp::Ordering {
2211
- Ord::cmp(&**self, &**other)
2212
- }
2213
- }
2214
-
2215
- impl<A: Array> Hash for SmallVec<A>
2216
- where
2217
- A::Item: Hash,
2218
- {
2219
- fn hash<H: Hasher>(&self, state: &mut H) {
2220
- (**self).hash(state)
2221
- }
2222
- }
2223
-
2224
- unsafe impl<A: Array> Send for SmallVec<A> where A::Item: Send {}
2225
-
2226
- /// An iterator that consumes a `SmallVec` and yields its items by value.
2227
- ///
2228
- /// Returned from [`SmallVec::into_iter`][1].
2229
- ///
2230
- /// [1]: struct.SmallVec.html#method.into_iter
2231
- pub struct IntoIter<A: Array> {
2232
- data: SmallVec<A>,
2233
- current: usize,
2234
- end: usize,
2235
- }
2236
-
2237
- impl<A: Array> fmt::Debug for IntoIter<A>
2238
- where
2239
- A::Item: fmt::Debug,
2240
- {
2241
- fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
2242
- f.debug_tuple("IntoIter").field(&self.as_slice()).finish()
2243
- }
2244
- }
2245
-
2246
- impl<A: Array + Clone> Clone for IntoIter<A>
2247
- where
2248
- A::Item: Clone,
2249
- {
2250
- fn clone(&self) -> IntoIter<A> {
2251
- SmallVec::from(self.as_slice()).into_iter()
2252
- }
2253
- }
2254
-
2255
- impl<A: Array> Drop for IntoIter<A> {
2256
- fn drop(&mut self) {
2257
- for _ in self {}
2258
- }
2259
- }
2260
-
2261
- impl<A: Array> Iterator for IntoIter<A> {
2262
- type Item = A::Item;
2263
-
2264
- #[inline]
2265
- fn next(&mut self) -> Option<A::Item> {
2266
- if self.current == self.end {
2267
- None
2268
- } else {
2269
- unsafe {
2270
- let current = self.current;
2271
- self.current += 1;
2272
- Some(ptr::read(self.data.as_ptr().add(current)))
2273
- }
2274
- }
2275
- }
2276
-
2277
- #[inline]
2278
- fn size_hint(&self) -> (usize, Option<usize>) {
2279
- let size = self.end - self.current;
2280
- (size, Some(size))
2281
- }
2282
- }
2283
-
2284
- impl<A: Array> DoubleEndedIterator for IntoIter<A> {
2285
- #[inline]
2286
- fn next_back(&mut self) -> Option<A::Item> {
2287
- if self.current == self.end {
2288
- None
2289
- } else {
2290
- unsafe {
2291
- self.end -= 1;
2292
- Some(ptr::read(self.data.as_ptr().add(self.end)))
2293
- }
2294
- }
2295
- }
2296
- }
2297
-
2298
- impl<A: Array> ExactSizeIterator for IntoIter<A> {}
2299
- impl<A: Array> FusedIterator for IntoIter<A> {}
2300
-
2301
- impl<A: Array> IntoIter<A> {
2302
- /// Returns the remaining items of this iterator as a slice.
2303
- pub fn as_slice(&self) -> &[A::Item] {
2304
- let len = self.end - self.current;
2305
- unsafe { core::slice::from_raw_parts(self.data.as_ptr().add(self.current), len) }
2306
- }
2307
-
2308
- /// Returns the remaining items of this iterator as a mutable slice.
2309
- pub fn as_mut_slice(&mut self) -> &mut [A::Item] {
2310
- let len = self.end - self.current;
2311
- unsafe { core::slice::from_raw_parts_mut(self.data.as_mut_ptr().add(self.current), len) }
2312
- }
2313
- }
2314
-
2315
- impl<A: Array> IntoIterator for SmallVec<A> {
2316
- type IntoIter = IntoIter<A>;
2317
- type Item = A::Item;
2318
- fn into_iter(mut self) -> Self::IntoIter {
2319
- unsafe {
2320
- // Set SmallVec len to zero as `IntoIter` drop handles dropping of the elements
2321
- let len = self.len();
2322
- self.set_len(0);
2323
- IntoIter {
2324
- data: self,
2325
- current: 0,
2326
- end: len,
2327
- }
2328
- }
2329
- }
2330
- }
2331
-
2332
- impl<'a, A: Array> IntoIterator for &'a SmallVec<A> {
2333
- type IntoIter = slice::Iter<'a, A::Item>;
2334
- type Item = &'a A::Item;
2335
- fn into_iter(self) -> Self::IntoIter {
2336
- self.iter()
2337
- }
2338
- }
2339
-
2340
- impl<'a, A: Array> IntoIterator for &'a mut SmallVec<A> {
2341
- type IntoIter = slice::IterMut<'a, A::Item>;
2342
- type Item = &'a mut A::Item;
2343
- fn into_iter(self) -> Self::IntoIter {
2344
- self.iter_mut()
2345
- }
2346
- }
2347
-
2348
- /// Types that can be used as the backing store for a [`SmallVec`].
2349
- pub unsafe trait Array {
2350
- /// The type of the array's elements.
2351
- type Item;
2352
- /// Returns the number of items the array can hold.
2353
- fn size() -> usize;
2354
- }
2355
-
2356
- /// Set the length of the vec when the `SetLenOnDrop` value goes out of scope.
2357
- ///
2358
- /// Copied from <https://github.com/rust-lang/rust/pull/36355>
2359
- struct SetLenOnDrop<'a> {
2360
- len: &'a mut usize,
2361
- local_len: usize,
2362
- }
2363
-
2364
- impl<'a> SetLenOnDrop<'a> {
2365
- #[inline]
2366
- fn new(len: &'a mut usize) -> Self {
2367
- SetLenOnDrop {
2368
- local_len: *len,
2369
- len,
2370
- }
2371
- }
2372
-
2373
- #[inline]
2374
- fn get(&self) -> usize {
2375
- self.local_len
2376
- }
2377
-
2378
- #[inline]
2379
- fn increment_len(&mut self, increment: usize) {
2380
- self.local_len += increment;
2381
- }
2382
- }
2383
-
2384
- impl<'a> Drop for SetLenOnDrop<'a> {
2385
- #[inline]
2386
- fn drop(&mut self) {
2387
- *self.len = self.local_len;
2388
- }
2389
- }
2390
-
2391
- #[cfg(feature = "const_new")]
2392
- impl<T, const N: usize> SmallVec<[T; N]> {
2393
- /// Construct an empty vector.
2394
- ///
2395
- /// This is a `const` version of [`SmallVec::new`] that is enabled by the feature `const_new`, with the limitation that it only works for arrays.
2396
- #[cfg_attr(docsrs, doc(cfg(feature = "const_new")))]
2397
- #[inline]
2398
- pub const fn new_const() -> Self {
2399
- SmallVec {
2400
- capacity: 0,
2401
- data: SmallVecData::from_const(MaybeUninit::uninit()),
2402
- }
2403
- }
2404
-
2405
- /// The array passed as an argument is moved to be an inline version of `SmallVec`.
2406
- ///
2407
- /// This is a `const` version of [`SmallVec::from_buf`] that is enabled by the feature `const_new`, with the limitation that it only works for arrays.
2408
- #[cfg_attr(docsrs, doc(cfg(feature = "const_new")))]
2409
- #[inline]
2410
- pub const fn from_const(items: [T; N]) -> Self {
2411
- SmallVec {
2412
- capacity: N,
2413
- data: SmallVecData::from_const(MaybeUninit::new(items)),
2414
- }
2415
- }
2416
-
2417
- /// Constructs a new `SmallVec` on the stack from an array without
2418
- /// copying elements. Also sets the length. The user is responsible
2419
- /// for ensuring that `len <= N`.
2420
- ///
2421
- /// This is a `const` version of [`SmallVec::from_buf_and_len_unchecked`] that is enabled by the feature `const_new`, with the limitation that it only works for arrays.
2422
- #[cfg_attr(docsrs, doc(cfg(feature = "const_new")))]
2423
- #[inline]
2424
- pub const unsafe fn from_const_with_len_unchecked(items: [T; N], len: usize) -> Self {
2425
- SmallVec {
2426
- capacity: len,
2427
- data: SmallVecData::from_const(MaybeUninit::new(items)),
2428
- }
2429
- }
2430
- }
2431
-
2432
- #[cfg(feature = "const_generics")]
2433
- #[cfg_attr(docsrs, doc(cfg(feature = "const_generics")))]
2434
- unsafe impl<T, const N: usize> Array for [T; N] {
2435
- type Item = T;
2436
- #[inline]
2437
- fn size() -> usize {
2438
- N
2439
- }
2440
- }
2441
-
2442
- #[cfg(not(feature = "const_generics"))]
2443
- macro_rules! impl_array(
2444
- ($($size:expr),+) => {
2445
- $(
2446
- unsafe impl<T> Array for [T; $size] {
2447
- type Item = T;
2448
- #[inline]
2449
- fn size() -> usize { $size }
2450
- }
2451
- )+
2452
- }
2453
- );
2454
-
2455
- #[cfg(not(feature = "const_generics"))]
2456
- impl_array!(
2457
- 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25,
2458
- 26, 27, 28, 29, 30, 31, 32, 36, 0x40, 0x60, 0x80, 0x100, 0x200, 0x400, 0x600, 0x800, 0x1000,
2459
- 0x2000, 0x4000, 0x6000, 0x8000, 0x10000, 0x20000, 0x40000, 0x60000, 0x80000, 0x10_0000
2460
- );
2461
-
2462
- /// Convenience trait for constructing a `SmallVec`
2463
- pub trait ToSmallVec<A: Array> {
2464
- /// Construct a new `SmallVec` from a slice.
2465
- fn to_smallvec(&self) -> SmallVec<A>;
2466
- }
2467
-
2468
- impl<A: Array> ToSmallVec<A> for [A::Item]
2469
- where
2470
- A::Item: Copy,
2471
- {
2472
- #[inline]
2473
- fn to_smallvec(&self) -> SmallVec<A> {
2474
- SmallVec::from_slice(self)
2475
- }
2476
- }
2477
-
2478
- // Immutable counterpart for `NonNull<T>`.
2479
- #[repr(transparent)]
2480
- struct ConstNonNull<T>(NonNull<T>);
2481
-
2482
- impl<T> ConstNonNull<T> {
2483
- #[inline]
2484
- fn new(ptr: *const T) -> Option<Self> {
2485
- NonNull::new(ptr as *mut T).map(Self)
2486
- }
2487
- #[inline]
2488
- fn as_ptr(self) -> *const T {
2489
- self.0.as_ptr()
2490
- }
2491
- }
2492
-
2493
- impl<T> Clone for ConstNonNull<T> {
2494
- #[inline]
2495
- fn clone(&self) -> Self {
2496
- *self
2497
- }
2498
- }
2499
-
2500
- impl<T> Copy for ConstNonNull<T> {}
2501
-
2502
- #[cfg(feature = "impl_bincode")]
2503
- use bincode::{
2504
- de::{BorrowDecoder, Decode, Decoder, read::Reader},
2505
- enc::{Encode, Encoder, write::Writer},
2506
- error::{DecodeError, EncodeError},
2507
- BorrowDecode,
2508
- };
2509
-
2510
- #[cfg(feature = "impl_bincode")]
2511
- impl<A, Context> Decode<Context> for SmallVec<A>
2512
- where
2513
- A: Array,
2514
- A::Item: Decode<Context>,
2515
- {
2516
- fn decode<D: Decoder<Context = Context>>(decoder: &mut D) -> Result<Self, DecodeError> {
2517
- use core::convert::TryInto;
2518
- let len = u64::decode(decoder)?;
2519
- let len = len.try_into().map_err(|_| DecodeError::OutsideUsizeRange(len))?;
2520
- decoder.claim_container_read::<A::Item>(len)?;
2521
-
2522
- let mut vec = SmallVec::with_capacity(len);
2523
- if unty::type_equal::<A::Item, u8>() {
2524
- // Initialize the smallvec's buffer. Note that we need to do this through
2525
- // the raw pointer as we cannot name the type [u8; N] even though A::Item is u8.
2526
- let ptr = vec.as_mut_ptr();
2527
- // SAFETY: A::Item is u8 and the smallvec has been allocated with enough capacity
2528
- unsafe {
2529
- core::ptr::write_bytes(ptr, 0, len);
2530
- vec.set_len(len);
2531
- }
2532
- // Read the data into the smallvec's buffer.
2533
- let slice = vec.as_mut_slice();
2534
- // SAFETY: A::Item is u8
2535
- let slice = unsafe { core::mem::transmute::<&mut [A::Item], &mut [u8]>(slice) };
2536
- decoder.reader().read(slice)?;
2537
- } else {
2538
- for _ in 0..len {
2539
- decoder.unclaim_bytes_read(core::mem::size_of::<A::Item>());
2540
- vec.push(A::Item::decode(decoder)?);
2541
- }
2542
- }
2543
- Ok(vec)
2544
- }
2545
- }
2546
-
2547
- #[cfg(feature = "impl_bincode")]
2548
- impl<'de, A, Context> BorrowDecode<'de, Context> for SmallVec<A>
2549
- where
2550
- A: Array,
2551
- A::Item: BorrowDecode<'de, Context>,
2552
- {
2553
- fn borrow_decode<D: BorrowDecoder<'de, Context = Context>>(decoder: &mut D) -> Result<Self, DecodeError> {
2554
- use core::convert::TryInto;
2555
- let len = u64::decode(decoder)?;
2556
- let len = len.try_into().map_err(|_| DecodeError::OutsideUsizeRange(len))?;
2557
- decoder.claim_container_read::<A::Item>(len)?;
2558
-
2559
- let mut vec = SmallVec::with_capacity(len);
2560
- if unty::type_equal::<A::Item, u8>() {
2561
- // Initialize the smallvec's buffer. Note that we need to do this through
2562
- // the raw pointer as we cannot name the type [u8; N] even though A::Item is u8.
2563
- let ptr = vec.as_mut_ptr();
2564
- // SAFETY: A::Item is u8 and the smallvec has been allocated with enough capacity
2565
- unsafe {
2566
- core::ptr::write_bytes(ptr, 0, len);
2567
- vec.set_len(len);
2568
- }
2569
- // Read the data into the smallvec's buffer.
2570
- let slice = vec.as_mut_slice();
2571
- // SAFETY: A::Item is u8
2572
- let slice = unsafe { core::mem::transmute::<&mut [A::Item], &mut [u8]>(slice) };
2573
- decoder.reader().read(slice)?;
2574
- } else {
2575
- for _ in 0..len {
2576
- decoder.unclaim_bytes_read(core::mem::size_of::<A::Item>());
2577
- vec.push(A::Item::borrow_decode(decoder)?);
2578
- }
2579
- }
2580
- Ok(vec)
2581
- }
2582
- }
2583
-
2584
- #[cfg(feature = "impl_bincode")]
2585
- impl<A> Encode for SmallVec<A>
2586
- where
2587
- A: Array,
2588
- A::Item: Encode,
2589
- {
2590
- fn encode<E: Encoder>(&self, encoder: &mut E) -> Result<(), EncodeError> {
2591
- (self.len() as u64).encode(encoder)?;
2592
- if unty::type_equal::<A::Item, u8>() {
2593
- // Safety: A::Item is u8
2594
- let slice: &[u8] = unsafe { core::mem::transmute(self.as_slice()) };
2595
- encoder.writer().write(slice)?;
2596
- } else {
2597
- for item in self.iter() {
2598
- item.encode(encoder)?;
2599
- }
2600
- }
2601
- Ok(())
2602
- }
2603
- }