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,3108 +0,0 @@
1
- use crate::{Equivalent, TryReserveError};
2
- use core::hash::{BuildHasher, Hash};
3
- use core::iter::{Chain, FusedIterator};
4
- use core::ops::{BitAnd, BitAndAssign, BitOr, BitOrAssign, BitXor, BitXorAssign, Sub, SubAssign};
5
- use core::{fmt, mem};
6
- use map::make_hash;
7
-
8
- use super::map::{self, HashMap, Keys};
9
- use crate::raw::{Allocator, Global, RawExtractIf};
10
- use crate::DefaultHashBuilder;
11
-
12
- // Future Optimization (FIXME!)
13
- // =============================
14
- //
15
- // Iteration over zero sized values is a noop. There is no need
16
- // for `bucket.val` in the case of HashSet. I suppose we would need HKT
17
- // to get rid of it properly.
18
-
19
- /// A hash set implemented as a `HashMap` where the value is `()`.
20
- ///
21
- /// As with the [`HashMap`] type, a `HashSet` requires that the elements
22
- /// implement the [`Eq`] and [`Hash`] traits. This can frequently be achieved by
23
- /// using `#[derive(PartialEq, Eq, Hash)]`. If you implement these yourself,
24
- /// it is important that the following property holds:
25
- ///
26
- /// ```text
27
- /// k1 == k2 -> hash(k1) == hash(k2)
28
- /// ```
29
- ///
30
- /// In other words, if two keys are equal, their hashes must be equal.
31
- ///
32
- ///
33
- /// It is a logic error for an item to be modified in such a way that the
34
- /// item's hash, as determined by the [`Hash`] trait, or its equality, as
35
- /// determined by the [`Eq`] trait, changes while it is in the set. This is
36
- /// normally only possible through [`Cell`], [`RefCell`], global state, I/O, or
37
- /// unsafe code.
38
- ///
39
- /// It is also a logic error for the [`Hash`] implementation of a key to panic.
40
- /// This is generally only possible if the trait is implemented manually. If a
41
- /// panic does occur then the contents of the `HashSet` may become corrupted and
42
- /// some items may be dropped from the table.
43
- ///
44
- /// # Examples
45
- ///
46
- /// ```
47
- /// use hashbrown::HashSet;
48
- /// // Type inference lets us omit an explicit type signature (which
49
- /// // would be `HashSet<String>` in this example).
50
- /// let mut books = HashSet::new();
51
- ///
52
- /// // Add some books.
53
- /// books.insert("A Dance With Dragons".to_string());
54
- /// books.insert("To Kill a Mockingbird".to_string());
55
- /// books.insert("The Odyssey".to_string());
56
- /// books.insert("The Great Gatsby".to_string());
57
- ///
58
- /// // Check for a specific one.
59
- /// if !books.contains("The Winds of Winter") {
60
- /// println!("We have {} books, but The Winds of Winter ain't one.",
61
- /// books.len());
62
- /// }
63
- ///
64
- /// // Remove a book.
65
- /// books.remove("The Odyssey");
66
- ///
67
- /// // Iterate over everything.
68
- /// for book in &books {
69
- /// println!("{}", book);
70
- /// }
71
- /// ```
72
- ///
73
- /// The easiest way to use `HashSet` with a custom type is to derive
74
- /// [`Eq`] and [`Hash`]. We must also derive [`PartialEq`]. This will in the
75
- /// future be implied by [`Eq`].
76
- ///
77
- /// ```
78
- /// use hashbrown::HashSet;
79
- /// #[derive(Hash, Eq, PartialEq, Debug)]
80
- /// struct Viking {
81
- /// name: String,
82
- /// power: usize,
83
- /// }
84
- ///
85
- /// let mut vikings = HashSet::new();
86
- ///
87
- /// vikings.insert(Viking { name: "Einar".to_string(), power: 9 });
88
- /// vikings.insert(Viking { name: "Einar".to_string(), power: 9 });
89
- /// vikings.insert(Viking { name: "Olaf".to_string(), power: 4 });
90
- /// vikings.insert(Viking { name: "Harald".to_string(), power: 8 });
91
- ///
92
- /// // Use derived implementation to print the vikings.
93
- /// for x in &vikings {
94
- /// println!("{:?}", x);
95
- /// }
96
- /// ```
97
- ///
98
- /// A `HashSet` with fixed list of elements can be initialized from an array:
99
- ///
100
- /// ```
101
- /// use hashbrown::HashSet;
102
- ///
103
- /// let viking_names: HashSet<&'static str> =
104
- /// [ "Einar", "Olaf", "Harald" ].into_iter().collect();
105
- /// // use the values stored in the set
106
- /// ```
107
- ///
108
- /// [`Cell`]: https://doc.rust-lang.org/std/cell/struct.Cell.html
109
- /// [`Eq`]: https://doc.rust-lang.org/std/cmp/trait.Eq.html
110
- /// [`Hash`]: https://doc.rust-lang.org/std/hash/trait.Hash.html
111
- /// [`HashMap`]: struct.HashMap.html
112
- /// [`PartialEq`]: https://doc.rust-lang.org/std/cmp/trait.PartialEq.html
113
- /// [`RefCell`]: https://doc.rust-lang.org/std/cell/struct.RefCell.html
114
- pub struct HashSet<T, S = DefaultHashBuilder, A: Allocator = Global> {
115
- pub(crate) map: HashMap<T, (), S, A>,
116
- }
117
-
118
- impl<T: Clone, S: Clone, A: Allocator + Clone> Clone for HashSet<T, S, A> {
119
- fn clone(&self) -> Self {
120
- HashSet {
121
- map: self.map.clone(),
122
- }
123
- }
124
-
125
- fn clone_from(&mut self, source: &Self) {
126
- self.map.clone_from(&source.map);
127
- }
128
- }
129
-
130
- #[cfg(feature = "default-hasher")]
131
- impl<T> HashSet<T, DefaultHashBuilder> {
132
- /// Creates an empty `HashSet`.
133
- ///
134
- /// The hash set is initially created with a capacity of 0, so it will not allocate until it
135
- /// is first inserted into.
136
- ///
137
- /// # HashDoS resistance
138
- ///
139
- /// The `hash_builder` normally use a fixed key by default and that does
140
- /// not allow the `HashSet` to be protected against attacks such as [`HashDoS`].
141
- /// Users who require HashDoS resistance should explicitly use
142
- /// [`std::collections::hash_map::RandomState`]
143
- /// as the hasher when creating a [`HashSet`], for example with
144
- /// [`with_hasher`](HashSet::with_hasher) method.
145
- ///
146
- /// [`HashDoS`]: https://en.wikipedia.org/wiki/Collision_attack
147
- /// [`std::collections::hash_map::RandomState`]: https://doc.rust-lang.org/std/collections/hash_map/struct.RandomState.html
148
- ///
149
- /// # Examples
150
- ///
151
- /// ```
152
- /// use hashbrown::HashSet;
153
- /// let set: HashSet<i32> = HashSet::new();
154
- /// ```
155
- #[cfg_attr(feature = "inline-more", inline)]
156
- pub fn new() -> Self {
157
- Self {
158
- map: HashMap::new(),
159
- }
160
- }
161
-
162
- /// Creates an empty `HashSet` with the specified capacity.
163
- ///
164
- /// The hash set will be able to hold at least `capacity` elements without
165
- /// reallocating. If `capacity` is 0, the hash set will not allocate.
166
- ///
167
- /// # HashDoS resistance
168
- ///
169
- /// The `hash_builder` normally use a fixed key by default and that does
170
- /// not allow the `HashSet` to be protected against attacks such as [`HashDoS`].
171
- /// Users who require HashDoS resistance should explicitly use
172
- /// [`std::collections::hash_map::RandomState`]
173
- /// as the hasher when creating a [`HashSet`], for example with
174
- /// [`with_capacity_and_hasher`](HashSet::with_capacity_and_hasher) method.
175
- ///
176
- /// [`HashDoS`]: https://en.wikipedia.org/wiki/Collision_attack
177
- /// [`std::collections::hash_map::RandomState`]: https://doc.rust-lang.org/std/collections/hash_map/struct.RandomState.html
178
- ///
179
- /// # Examples
180
- ///
181
- /// ```
182
- /// use hashbrown::HashSet;
183
- /// let set: HashSet<i32> = HashSet::with_capacity(10);
184
- /// assert!(set.capacity() >= 10);
185
- /// ```
186
- #[cfg_attr(feature = "inline-more", inline)]
187
- pub fn with_capacity(capacity: usize) -> Self {
188
- Self {
189
- map: HashMap::with_capacity(capacity),
190
- }
191
- }
192
- }
193
-
194
- #[cfg(feature = "default-hasher")]
195
- impl<T: Hash + Eq, A: Allocator> HashSet<T, DefaultHashBuilder, A> {
196
- /// Creates an empty `HashSet`.
197
- ///
198
- /// The hash set is initially created with a capacity of 0, so it will not allocate until it
199
- /// is first inserted into.
200
- ///
201
- /// # HashDoS resistance
202
- ///
203
- /// The `hash_builder` normally use a fixed key by default and that does
204
- /// not allow the `HashSet` to be protected against attacks such as [`HashDoS`].
205
- /// Users who require HashDoS resistance should explicitly use
206
- /// [`std::collections::hash_map::RandomState`]
207
- /// as the hasher when creating a [`HashSet`], for example with
208
- /// [`with_hasher_in`](HashSet::with_hasher_in) method.
209
- ///
210
- /// [`HashDoS`]: https://en.wikipedia.org/wiki/Collision_attack
211
- /// [`std::collections::hash_map::RandomState`]: https://doc.rust-lang.org/std/collections/hash_map/struct.RandomState.html
212
- ///
213
- /// # Examples
214
- ///
215
- /// ```
216
- /// use hashbrown::HashSet;
217
- /// let set: HashSet<i32> = HashSet::new();
218
- /// ```
219
- #[cfg_attr(feature = "inline-more", inline)]
220
- pub fn new_in(alloc: A) -> Self {
221
- Self {
222
- map: HashMap::new_in(alloc),
223
- }
224
- }
225
-
226
- /// Creates an empty `HashSet` with the specified capacity.
227
- ///
228
- /// The hash set will be able to hold at least `capacity` elements without
229
- /// reallocating. If `capacity` is 0, the hash set will not allocate.
230
- ///
231
- /// # HashDoS resistance
232
- ///
233
- /// The `hash_builder` normally use a fixed key by default and that does
234
- /// not allow the `HashSet` to be protected against attacks such as [`HashDoS`].
235
- /// Users who require HashDoS resistance should explicitly use
236
- /// [`std::collections::hash_map::RandomState`]
237
- /// as the hasher when creating a [`HashSet`], for example with
238
- /// [`with_capacity_and_hasher_in`](HashSet::with_capacity_and_hasher_in) method.
239
- ///
240
- /// [`HashDoS`]: https://en.wikipedia.org/wiki/Collision_attack
241
- /// [`std::collections::hash_map::RandomState`]: https://doc.rust-lang.org/std/collections/hash_map/struct.RandomState.html
242
- ///
243
- /// # Examples
244
- ///
245
- /// ```
246
- /// use hashbrown::HashSet;
247
- /// let set: HashSet<i32> = HashSet::with_capacity(10);
248
- /// assert!(set.capacity() >= 10);
249
- /// ```
250
- #[cfg_attr(feature = "inline-more", inline)]
251
- pub fn with_capacity_in(capacity: usize, alloc: A) -> Self {
252
- Self {
253
- map: HashMap::with_capacity_in(capacity, alloc),
254
- }
255
- }
256
- }
257
-
258
- impl<T, S, A: Allocator> HashSet<T, S, A> {
259
- /// Returns the number of elements the set can hold without reallocating.
260
- ///
261
- /// # Examples
262
- ///
263
- /// ```
264
- /// use hashbrown::HashSet;
265
- /// let set: HashSet<i32> = HashSet::with_capacity(100);
266
- /// assert!(set.capacity() >= 100);
267
- /// ```
268
- #[cfg_attr(feature = "inline-more", inline)]
269
- pub fn capacity(&self) -> usize {
270
- self.map.capacity()
271
- }
272
-
273
- /// An iterator visiting all elements in arbitrary order.
274
- /// The iterator element type is `&'a T`.
275
- ///
276
- /// # Examples
277
- ///
278
- /// ```
279
- /// use hashbrown::HashSet;
280
- /// let mut set = HashSet::new();
281
- /// set.insert("a");
282
- /// set.insert("b");
283
- ///
284
- /// // Will print in an arbitrary order.
285
- /// for x in set.iter() {
286
- /// println!("{}", x);
287
- /// }
288
- /// ```
289
- #[cfg_attr(feature = "inline-more", inline)]
290
- pub fn iter(&self) -> Iter<'_, T> {
291
- Iter {
292
- iter: self.map.keys(),
293
- }
294
- }
295
-
296
- /// Returns the number of elements in the set.
297
- ///
298
- /// # Examples
299
- ///
300
- /// ```
301
- /// use hashbrown::HashSet;
302
- ///
303
- /// let mut v = HashSet::new();
304
- /// assert_eq!(v.len(), 0);
305
- /// v.insert(1);
306
- /// assert_eq!(v.len(), 1);
307
- /// ```
308
- #[cfg_attr(feature = "inline-more", inline)]
309
- pub fn len(&self) -> usize {
310
- self.map.len()
311
- }
312
-
313
- /// Returns `true` if the set contains no elements.
314
- ///
315
- /// # Examples
316
- ///
317
- /// ```
318
- /// use hashbrown::HashSet;
319
- ///
320
- /// let mut v = HashSet::new();
321
- /// assert!(v.is_empty());
322
- /// v.insert(1);
323
- /// assert!(!v.is_empty());
324
- /// ```
325
- #[cfg_attr(feature = "inline-more", inline)]
326
- pub fn is_empty(&self) -> bool {
327
- self.map.is_empty()
328
- }
329
-
330
- /// Clears the set, returning all elements in an iterator.
331
- ///
332
- /// # Examples
333
- ///
334
- /// ```
335
- /// use hashbrown::HashSet;
336
- ///
337
- /// let mut set: HashSet<_> = [1, 2, 3].into_iter().collect();
338
- /// assert!(!set.is_empty());
339
- ///
340
- /// // print 1, 2, 3 in an arbitrary order
341
- /// for i in set.drain() {
342
- /// println!("{}", i);
343
- /// }
344
- ///
345
- /// assert!(set.is_empty());
346
- /// ```
347
- #[cfg_attr(feature = "inline-more", inline)]
348
- pub fn drain(&mut self) -> Drain<'_, T, A> {
349
- Drain {
350
- iter: self.map.drain(),
351
- }
352
- }
353
-
354
- /// Retains only the elements specified by the predicate.
355
- ///
356
- /// In other words, remove all elements `e` such that `f(&e)` returns `false`.
357
- ///
358
- /// # Examples
359
- ///
360
- /// ```
361
- /// use hashbrown::HashSet;
362
- ///
363
- /// let xs = [1,2,3,4,5,6];
364
- /// let mut set: HashSet<i32> = xs.into_iter().collect();
365
- /// set.retain(|&k| k % 2 == 0);
366
- /// assert_eq!(set.len(), 3);
367
- /// ```
368
- pub fn retain<F>(&mut self, mut f: F)
369
- where
370
- F: FnMut(&T) -> bool,
371
- {
372
- self.map.retain(|k, _| f(k));
373
- }
374
-
375
- /// Drains elements which are true under the given predicate,
376
- /// and returns an iterator over the removed items.
377
- ///
378
- /// In other words, move all elements `e` such that `f(&e)` returns `true` out
379
- /// into another iterator.
380
- ///
381
- /// If the returned `ExtractIf` is not exhausted, e.g. because it is dropped without iterating
382
- /// or the iteration short-circuits, then the remaining elements will be retained.
383
- /// Use [`retain()`] with a negated predicate if you do not need the returned iterator.
384
- ///
385
- /// [`retain()`]: HashSet::retain
386
- ///
387
- /// # Examples
388
- ///
389
- /// ```
390
- /// use hashbrown::HashSet;
391
- ///
392
- /// let mut set: HashSet<i32> = (0..8).collect();
393
- /// let drained: HashSet<i32> = set.extract_if(|v| v % 2 == 0).collect();
394
- ///
395
- /// let mut evens = drained.into_iter().collect::<Vec<_>>();
396
- /// let mut odds = set.into_iter().collect::<Vec<_>>();
397
- /// evens.sort();
398
- /// odds.sort();
399
- ///
400
- /// assert_eq!(evens, vec![0, 2, 4, 6]);
401
- /// assert_eq!(odds, vec![1, 3, 5, 7]);
402
- /// ```
403
- #[cfg_attr(feature = "inline-more", inline)]
404
- pub fn extract_if<F>(&mut self, f: F) -> ExtractIf<'_, T, F, A>
405
- where
406
- F: FnMut(&T) -> bool,
407
- {
408
- ExtractIf {
409
- f,
410
- inner: RawExtractIf {
411
- iter: unsafe { self.map.table.iter() },
412
- table: &mut self.map.table,
413
- },
414
- }
415
- }
416
-
417
- /// Clears the set, removing all values.
418
- ///
419
- /// # Examples
420
- ///
421
- /// ```
422
- /// use hashbrown::HashSet;
423
- ///
424
- /// let mut v = HashSet::new();
425
- /// v.insert(1);
426
- /// v.clear();
427
- /// assert!(v.is_empty());
428
- /// ```
429
- #[cfg_attr(feature = "inline-more", inline)]
430
- pub fn clear(&mut self) {
431
- self.map.clear();
432
- }
433
- }
434
-
435
- impl<T, S> HashSet<T, S, Global> {
436
- /// Creates a new empty hash set which will use the given hasher to hash
437
- /// keys.
438
- ///
439
- /// The hash set is initially created with a capacity of 0, so it will not
440
- /// allocate until it is first inserted into.
441
- ///
442
- /// # HashDoS resistance
443
- ///
444
- /// The `hash_builder` normally use a fixed key by default and that does
445
- /// not allow the `HashSet` to be protected against attacks such as [`HashDoS`].
446
- /// Users who require HashDoS resistance should explicitly use
447
- /// [`std::collections::hash_map::RandomState`]
448
- /// as the hasher when creating a [`HashSet`].
449
- ///
450
- /// The `hash_builder` passed should implement the [`BuildHasher`] trait for
451
- /// the `HashSet` to be useful, see its documentation for details.
452
- ///
453
- /// [`HashDoS`]: https://en.wikipedia.org/wiki/Collision_attack
454
- /// [`std::collections::hash_map::RandomState`]: https://doc.rust-lang.org/std/collections/hash_map/struct.RandomState.html
455
- /// [`BuildHasher`]: https://doc.rust-lang.org/std/hash/trait.BuildHasher.html
456
- ///
457
- /// # Examples
458
- ///
459
- /// ```
460
- /// use hashbrown::HashSet;
461
- /// use hashbrown::DefaultHashBuilder;
462
- ///
463
- /// let s = DefaultHashBuilder::default();
464
- /// let mut set = HashSet::with_hasher(s);
465
- /// set.insert(2);
466
- /// ```
467
- #[cfg_attr(feature = "inline-more", inline)]
468
- #[cfg_attr(feature = "rustc-dep-of-std", rustc_const_stable_indirect)]
469
- pub const fn with_hasher(hasher: S) -> Self {
470
- Self {
471
- map: HashMap::with_hasher(hasher),
472
- }
473
- }
474
-
475
- /// Creates an empty `HashSet` with the specified capacity, using
476
- /// `hasher` to hash the keys.
477
- ///
478
- /// The hash set will be able to hold at least `capacity` elements without
479
- /// reallocating. If `capacity` is 0, the hash set will not allocate.
480
- ///
481
- /// # HashDoS resistance
482
- ///
483
- /// The `hash_builder` normally use a fixed key by default and that does
484
- /// not allow the `HashSet` to be protected against attacks such as [`HashDoS`].
485
- /// Users who require HashDoS resistance should explicitly use
486
- /// [`std::collections::hash_map::RandomState`]
487
- /// as the hasher when creating a [`HashSet`].
488
- ///
489
- /// The `hash_builder` passed should implement the [`BuildHasher`] trait for
490
- /// the `HashSet` to be useful, see its documentation for details.
491
- ///
492
- /// [`HashDoS`]: https://en.wikipedia.org/wiki/Collision_attack
493
- /// [`std::collections::hash_map::RandomState`]: https://doc.rust-lang.org/std/collections/hash_map/struct.RandomState.html
494
- /// [`BuildHasher`]: https://doc.rust-lang.org/std/hash/trait.BuildHasher.html
495
- ///
496
- /// # Examples
497
- ///
498
- /// ```
499
- /// use hashbrown::HashSet;
500
- /// use hashbrown::DefaultHashBuilder;
501
- ///
502
- /// let s = DefaultHashBuilder::default();
503
- /// let mut set = HashSet::with_capacity_and_hasher(10, s);
504
- /// set.insert(1);
505
- /// ```
506
- #[cfg_attr(feature = "inline-more", inline)]
507
- pub fn with_capacity_and_hasher(capacity: usize, hasher: S) -> Self {
508
- Self {
509
- map: HashMap::with_capacity_and_hasher(capacity, hasher),
510
- }
511
- }
512
- }
513
-
514
- impl<T, S, A> HashSet<T, S, A>
515
- where
516
- A: Allocator,
517
- {
518
- /// Returns a reference to the underlying allocator.
519
- #[inline]
520
- pub fn allocator(&self) -> &A {
521
- self.map.allocator()
522
- }
523
-
524
- /// Creates a new empty hash set which will use the given hasher to hash
525
- /// keys.
526
- ///
527
- /// The hash set is initially created with a capacity of 0, so it will not
528
- /// allocate until it is first inserted into.
529
- ///
530
- /// # HashDoS resistance
531
- ///
532
- /// The `hash_builder` normally use a fixed key by default and that does
533
- /// not allow the `HashSet` to be protected against attacks such as [`HashDoS`].
534
- /// Users who require HashDoS resistance should explicitly use
535
- /// [`std::collections::hash_map::RandomState`]
536
- /// as the hasher when creating a [`HashSet`].
537
- ///
538
- /// The `hash_builder` passed should implement the [`BuildHasher`] trait for
539
- /// the `HashSet` to be useful, see its documentation for details.
540
- ///
541
- /// [`HashDoS`]: https://en.wikipedia.org/wiki/Collision_attack
542
- /// [`std::collections::hash_map::RandomState`]: https://doc.rust-lang.org/std/collections/hash_map/struct.RandomState.html
543
- /// [`BuildHasher`]: https://doc.rust-lang.org/std/hash/trait.BuildHasher.html
544
- ///
545
- /// # Examples
546
- ///
547
- /// ```
548
- /// use hashbrown::HashSet;
549
- /// use hashbrown::DefaultHashBuilder;
550
- ///
551
- /// let s = DefaultHashBuilder::default();
552
- /// let mut set = HashSet::with_hasher(s);
553
- /// set.insert(2);
554
- /// ```
555
- #[cfg_attr(feature = "inline-more", inline)]
556
- #[cfg_attr(feature = "rustc-dep-of-std", rustc_const_stable_indirect)]
557
- pub const fn with_hasher_in(hasher: S, alloc: A) -> Self {
558
- Self {
559
- map: HashMap::with_hasher_in(hasher, alloc),
560
- }
561
- }
562
-
563
- /// Creates an empty `HashSet` with the specified capacity, using
564
- /// `hasher` to hash the keys.
565
- ///
566
- /// The hash set will be able to hold at least `capacity` elements without
567
- /// reallocating. If `capacity` is 0, the hash set will not allocate.
568
- ///
569
- /// # HashDoS resistance
570
- ///
571
- /// The `hash_builder` normally use a fixed key by default and that does
572
- /// not allow the `HashSet` to be protected against attacks such as [`HashDoS`].
573
- /// Users who require HashDoS resistance should explicitly use
574
- /// [`std::collections::hash_map::RandomState`]
575
- /// as the hasher when creating a [`HashSet`].
576
- ///
577
- /// The `hash_builder` passed should implement the [`BuildHasher`] trait for
578
- /// the `HashSet` to be useful, see its documentation for details.
579
- ///
580
- /// [`HashDoS`]: https://en.wikipedia.org/wiki/Collision_attack
581
- /// [`std::collections::hash_map::RandomState`]: https://doc.rust-lang.org/std/collections/hash_map/struct.RandomState.html
582
- /// [`BuildHasher`]: https://doc.rust-lang.org/std/hash/trait.BuildHasher.html
583
- ///
584
- /// # Examples
585
- ///
586
- /// ```
587
- /// use hashbrown::HashSet;
588
- /// use hashbrown::DefaultHashBuilder;
589
- ///
590
- /// let s = DefaultHashBuilder::default();
591
- /// let mut set = HashSet::with_capacity_and_hasher(10, s);
592
- /// set.insert(1);
593
- /// ```
594
- #[cfg_attr(feature = "inline-more", inline)]
595
- pub fn with_capacity_and_hasher_in(capacity: usize, hasher: S, alloc: A) -> Self {
596
- Self {
597
- map: HashMap::with_capacity_and_hasher_in(capacity, hasher, alloc),
598
- }
599
- }
600
-
601
- /// Returns a reference to the set's [`BuildHasher`].
602
- ///
603
- /// [`BuildHasher`]: https://doc.rust-lang.org/std/hash/trait.BuildHasher.html
604
- ///
605
- /// # Examples
606
- ///
607
- /// ```
608
- /// use hashbrown::HashSet;
609
- /// use hashbrown::DefaultHashBuilder;
610
- ///
611
- /// let hasher = DefaultHashBuilder::default();
612
- /// let set: HashSet<i32> = HashSet::with_hasher(hasher);
613
- /// let hasher: &DefaultHashBuilder = set.hasher();
614
- /// ```
615
- #[cfg_attr(feature = "inline-more", inline)]
616
- pub fn hasher(&self) -> &S {
617
- self.map.hasher()
618
- }
619
- }
620
-
621
- impl<T, S, A> HashSet<T, S, A>
622
- where
623
- T: Eq + Hash,
624
- S: BuildHasher,
625
- A: Allocator,
626
- {
627
- /// Reserves capacity for at least `additional` more elements to be inserted
628
- /// in the `HashSet`. The collection may reserve more space to avoid
629
- /// frequent reallocations.
630
- ///
631
- /// # Panics
632
- ///
633
- /// Panics if the new capacity exceeds [`isize::MAX`] bytes and [`abort`] the program
634
- /// in case of allocation error. Use [`try_reserve`](HashSet::try_reserve) instead
635
- /// if you want to handle memory allocation failure.
636
- ///
637
- /// [`isize::MAX`]: https://doc.rust-lang.org/std/primitive.isize.html
638
- /// [`abort`]: https://doc.rust-lang.org/alloc/alloc/fn.handle_alloc_error.html
639
- ///
640
- /// # Examples
641
- ///
642
- /// ```
643
- /// use hashbrown::HashSet;
644
- /// let mut set: HashSet<i32> = HashSet::new();
645
- /// set.reserve(10);
646
- /// assert!(set.capacity() >= 10);
647
- /// ```
648
- #[cfg_attr(feature = "inline-more", inline)]
649
- pub fn reserve(&mut self, additional: usize) {
650
- self.map.reserve(additional);
651
- }
652
-
653
- /// Tries to reserve capacity for at least `additional` more elements to be inserted
654
- /// in the given `HashSet<K,V>`. The collection may reserve more space to avoid
655
- /// frequent reallocations.
656
- ///
657
- /// # Errors
658
- ///
659
- /// If the capacity overflows, or the allocator reports a failure, then an error
660
- /// is returned.
661
- ///
662
- /// # Examples
663
- ///
664
- /// ```
665
- /// use hashbrown::HashSet;
666
- /// let mut set: HashSet<i32> = HashSet::new();
667
- /// set.try_reserve(10).expect("why is the test harness OOMing on 10 bytes?");
668
- /// ```
669
- #[cfg_attr(feature = "inline-more", inline)]
670
- pub fn try_reserve(&mut self, additional: usize) -> Result<(), TryReserveError> {
671
- self.map.try_reserve(additional)
672
- }
673
-
674
- /// Shrinks the capacity of the set as much as possible. It will drop
675
- /// down as much as possible while maintaining the internal rules
676
- /// and possibly leaving some space in accordance with the resize policy.
677
- ///
678
- /// # Examples
679
- ///
680
- /// ```
681
- /// use hashbrown::HashSet;
682
- ///
683
- /// let mut set = HashSet::with_capacity(100);
684
- /// set.insert(1);
685
- /// set.insert(2);
686
- /// assert!(set.capacity() >= 100);
687
- /// set.shrink_to_fit();
688
- /// assert!(set.capacity() >= 2);
689
- /// ```
690
- #[cfg_attr(feature = "inline-more", inline)]
691
- pub fn shrink_to_fit(&mut self) {
692
- self.map.shrink_to_fit();
693
- }
694
-
695
- /// Shrinks the capacity of the set with a lower limit. It will drop
696
- /// down no lower than the supplied limit while maintaining the internal rules
697
- /// and possibly leaving some space in accordance with the resize policy.
698
- ///
699
- /// Panics if the current capacity is smaller than the supplied
700
- /// minimum capacity.
701
- ///
702
- /// # Examples
703
- ///
704
- /// ```
705
- /// use hashbrown::HashSet;
706
- ///
707
- /// let mut set = HashSet::with_capacity(100);
708
- /// set.insert(1);
709
- /// set.insert(2);
710
- /// assert!(set.capacity() >= 100);
711
- /// set.shrink_to(10);
712
- /// assert!(set.capacity() >= 10);
713
- /// set.shrink_to(0);
714
- /// assert!(set.capacity() >= 2);
715
- /// ```
716
- #[cfg_attr(feature = "inline-more", inline)]
717
- pub fn shrink_to(&mut self, min_capacity: usize) {
718
- self.map.shrink_to(min_capacity);
719
- }
720
-
721
- /// Visits the values representing the difference,
722
- /// i.e., the values that are in `self` but not in `other`.
723
- ///
724
- /// # Examples
725
- ///
726
- /// ```
727
- /// use hashbrown::HashSet;
728
- /// let a: HashSet<_> = [1, 2, 3].into_iter().collect();
729
- /// let b: HashSet<_> = [4, 2, 3, 4].into_iter().collect();
730
- ///
731
- /// // Can be seen as `a - b`.
732
- /// for x in a.difference(&b) {
733
- /// println!("{}", x); // Print 1
734
- /// }
735
- ///
736
- /// let diff: HashSet<_> = a.difference(&b).collect();
737
- /// assert_eq!(diff, [1].iter().collect());
738
- ///
739
- /// // Note that difference is not symmetric,
740
- /// // and `b - a` means something else:
741
- /// let diff: HashSet<_> = b.difference(&a).collect();
742
- /// assert_eq!(diff, [4].iter().collect());
743
- /// ```
744
- #[cfg_attr(feature = "inline-more", inline)]
745
- pub fn difference<'a>(&'a self, other: &'a Self) -> Difference<'a, T, S, A> {
746
- Difference {
747
- iter: self.iter(),
748
- other,
749
- }
750
- }
751
-
752
- /// Visits the values representing the symmetric difference,
753
- /// i.e., the values that are in `self` or in `other` but not in both.
754
- ///
755
- /// # Examples
756
- ///
757
- /// ```
758
- /// use hashbrown::HashSet;
759
- /// let a: HashSet<_> = [1, 2, 3].into_iter().collect();
760
- /// let b: HashSet<_> = [4, 2, 3, 4].into_iter().collect();
761
- ///
762
- /// // Print 1, 4 in arbitrary order.
763
- /// for x in a.symmetric_difference(&b) {
764
- /// println!("{}", x);
765
- /// }
766
- ///
767
- /// let diff1: HashSet<_> = a.symmetric_difference(&b).collect();
768
- /// let diff2: HashSet<_> = b.symmetric_difference(&a).collect();
769
- ///
770
- /// assert_eq!(diff1, diff2);
771
- /// assert_eq!(diff1, [1, 4].iter().collect());
772
- /// ```
773
- #[cfg_attr(feature = "inline-more", inline)]
774
- pub fn symmetric_difference<'a>(&'a self, other: &'a Self) -> SymmetricDifference<'a, T, S, A> {
775
- SymmetricDifference {
776
- iter: self.difference(other).chain(other.difference(self)),
777
- }
778
- }
779
-
780
- /// Visits the values representing the intersection,
781
- /// i.e., the values that are both in `self` and `other`.
782
- ///
783
- /// # Examples
784
- ///
785
- /// ```
786
- /// use hashbrown::HashSet;
787
- /// let a: HashSet<_> = [1, 2, 3].into_iter().collect();
788
- /// let b: HashSet<_> = [4, 2, 3, 4].into_iter().collect();
789
- ///
790
- /// // Print 2, 3 in arbitrary order.
791
- /// for x in a.intersection(&b) {
792
- /// println!("{}", x);
793
- /// }
794
- ///
795
- /// let intersection: HashSet<_> = a.intersection(&b).collect();
796
- /// assert_eq!(intersection, [2, 3].iter().collect());
797
- /// ```
798
- #[cfg_attr(feature = "inline-more", inline)]
799
- pub fn intersection<'a>(&'a self, other: &'a Self) -> Intersection<'a, T, S, A> {
800
- let (smaller, larger) = if self.len() <= other.len() {
801
- (self, other)
802
- } else {
803
- (other, self)
804
- };
805
- Intersection {
806
- iter: smaller.iter(),
807
- other: larger,
808
- }
809
- }
810
-
811
- /// Visits the values representing the union,
812
- /// i.e., all the values in `self` or `other`, without duplicates.
813
- ///
814
- /// # Examples
815
- ///
816
- /// ```
817
- /// use hashbrown::HashSet;
818
- /// let a: HashSet<_> = [1, 2, 3].into_iter().collect();
819
- /// let b: HashSet<_> = [4, 2, 3, 4].into_iter().collect();
820
- ///
821
- /// // Print 1, 2, 3, 4 in arbitrary order.
822
- /// for x in a.union(&b) {
823
- /// println!("{}", x);
824
- /// }
825
- ///
826
- /// let union: HashSet<_> = a.union(&b).collect();
827
- /// assert_eq!(union, [1, 2, 3, 4].iter().collect());
828
- /// ```
829
- #[cfg_attr(feature = "inline-more", inline)]
830
- pub fn union<'a>(&'a self, other: &'a Self) -> Union<'a, T, S, A> {
831
- // We'll iterate one set in full, and only the remaining difference from the other.
832
- // Use the smaller set for the difference in order to reduce hash lookups.
833
- let (smaller, larger) = if self.len() <= other.len() {
834
- (self, other)
835
- } else {
836
- (other, self)
837
- };
838
- Union {
839
- iter: larger.iter().chain(smaller.difference(larger)),
840
- }
841
- }
842
-
843
- /// Returns `true` if the set contains a value.
844
- ///
845
- /// The value may be any borrowed form of the set's value type, but
846
- /// [`Hash`] and [`Eq`] on the borrowed form *must* match those for
847
- /// the value type.
848
- ///
849
- /// # Examples
850
- ///
851
- /// ```
852
- /// use hashbrown::HashSet;
853
- ///
854
- /// let set: HashSet<_> = [1, 2, 3].into_iter().collect();
855
- /// assert_eq!(set.contains(&1), true);
856
- /// assert_eq!(set.contains(&4), false);
857
- /// ```
858
- ///
859
- /// [`Eq`]: https://doc.rust-lang.org/std/cmp/trait.Eq.html
860
- /// [`Hash`]: https://doc.rust-lang.org/std/hash/trait.Hash.html
861
- #[cfg_attr(feature = "inline-more", inline)]
862
- pub fn contains<Q>(&self, value: &Q) -> bool
863
- where
864
- Q: Hash + Equivalent<T> + ?Sized,
865
- {
866
- self.map.contains_key(value)
867
- }
868
-
869
- /// Returns a reference to the value in the set, if any, that is equal to the given value.
870
- ///
871
- /// The value may be any borrowed form of the set's value type, but
872
- /// [`Hash`] and [`Eq`] on the borrowed form *must* match those for
873
- /// the value type.
874
- ///
875
- /// # Examples
876
- ///
877
- /// ```
878
- /// use hashbrown::HashSet;
879
- ///
880
- /// let set: HashSet<_> = [1, 2, 3].into_iter().collect();
881
- /// assert_eq!(set.get(&2), Some(&2));
882
- /// assert_eq!(set.get(&4), None);
883
- /// ```
884
- ///
885
- /// [`Eq`]: https://doc.rust-lang.org/std/cmp/trait.Eq.html
886
- /// [`Hash`]: https://doc.rust-lang.org/std/hash/trait.Hash.html
887
- #[cfg_attr(feature = "inline-more", inline)]
888
- pub fn get<Q>(&self, value: &Q) -> Option<&T>
889
- where
890
- Q: Hash + Equivalent<T> + ?Sized,
891
- {
892
- // Avoid `Option::map` because it bloats LLVM IR.
893
- match self.map.get_key_value(value) {
894
- Some((k, _)) => Some(k),
895
- None => None,
896
- }
897
- }
898
-
899
- /// Inserts the given `value` into the set if it is not present, then
900
- /// returns a reference to the value in the set.
901
- ///
902
- /// # Examples
903
- ///
904
- /// ```
905
- /// use hashbrown::HashSet;
906
- ///
907
- /// let mut set: HashSet<_> = [1, 2, 3].into_iter().collect();
908
- /// assert_eq!(set.len(), 3);
909
- /// assert_eq!(set.get_or_insert(2), &2);
910
- /// assert_eq!(set.get_or_insert(100), &100);
911
- /// assert_eq!(set.len(), 4); // 100 was inserted
912
- /// ```
913
- #[cfg_attr(feature = "inline-more", inline)]
914
- pub fn get_or_insert(&mut self, value: T) -> &T {
915
- let hash = make_hash(&self.map.hash_builder, &value);
916
- let bucket = match self.map.find_or_find_insert_slot(hash, &value) {
917
- Ok(bucket) => bucket,
918
- Err(slot) => unsafe { self.map.table.insert_in_slot(hash, slot, (value, ())) },
919
- };
920
- unsafe { &bucket.as_ref().0 }
921
- }
922
-
923
- /// Inserts a value computed from `f` into the set if the given `value` is
924
- /// not present, then returns a reference to the value in the set.
925
- ///
926
- /// # Examples
927
- ///
928
- /// ```
929
- /// use hashbrown::HashSet;
930
- ///
931
- /// let mut set: HashSet<String> = ["cat", "dog", "horse"]
932
- /// .iter().map(|&pet| pet.to_owned()).collect();
933
- ///
934
- /// assert_eq!(set.len(), 3);
935
- /// for &pet in &["cat", "dog", "fish"] {
936
- /// let value = set.get_or_insert_with(pet, str::to_owned);
937
- /// assert_eq!(value, pet);
938
- /// }
939
- /// assert_eq!(set.len(), 4); // a new "fish" was inserted
940
- /// ```
941
- ///
942
- /// The following example will panic because the new value doesn't match.
943
- ///
944
- /// ```should_panic
945
- /// let mut set = hashbrown::HashSet::new();
946
- /// set.get_or_insert_with("rust", |_| String::new());
947
- /// ```
948
- #[cfg_attr(feature = "inline-more", inline)]
949
- pub fn get_or_insert_with<Q, F>(&mut self, value: &Q, f: F) -> &T
950
- where
951
- Q: Hash + Equivalent<T> + ?Sized,
952
- F: FnOnce(&Q) -> T,
953
- {
954
- let hash = make_hash(&self.map.hash_builder, value);
955
- let bucket = match self.map.find_or_find_insert_slot(hash, value) {
956
- Ok(bucket) => bucket,
957
- Err(slot) => {
958
- let new = f(value);
959
- assert!(value.equivalent(&new), "new value is not equivalent");
960
- unsafe { self.map.table.insert_in_slot(hash, slot, (new, ())) }
961
- }
962
- };
963
- unsafe { &bucket.as_ref().0 }
964
- }
965
-
966
- /// Gets the given value's corresponding entry in the set for in-place manipulation.
967
- ///
968
- /// # Examples
969
- ///
970
- /// ```
971
- /// use hashbrown::HashSet;
972
- /// use hashbrown::hash_set::Entry::*;
973
- ///
974
- /// let mut singles = HashSet::new();
975
- /// let mut dupes = HashSet::new();
976
- ///
977
- /// for ch in "a short treatise on fungi".chars() {
978
- /// if let Vacant(dupe_entry) = dupes.entry(ch) {
979
- /// // We haven't already seen a duplicate, so
980
- /// // check if we've at least seen it once.
981
- /// match singles.entry(ch) {
982
- /// Vacant(single_entry) => {
983
- /// // We found a new character for the first time.
984
- /// single_entry.insert();
985
- /// }
986
- /// Occupied(single_entry) => {
987
- /// // We've already seen this once, "move" it to dupes.
988
- /// single_entry.remove();
989
- /// dupe_entry.insert();
990
- /// }
991
- /// }
992
- /// }
993
- /// }
994
- ///
995
- /// assert!(!singles.contains(&'t') && dupes.contains(&'t'));
996
- /// assert!(singles.contains(&'u') && !dupes.contains(&'u'));
997
- /// assert!(!singles.contains(&'v') && !dupes.contains(&'v'));
998
- /// ```
999
- #[cfg_attr(feature = "inline-more", inline)]
1000
- pub fn entry(&mut self, value: T) -> Entry<'_, T, S, A> {
1001
- match self.map.entry(value) {
1002
- map::Entry::Occupied(entry) => Entry::Occupied(OccupiedEntry { inner: entry }),
1003
- map::Entry::Vacant(entry) => Entry::Vacant(VacantEntry { inner: entry }),
1004
- }
1005
- }
1006
-
1007
- /// Returns `true` if `self` has no elements in common with `other`.
1008
- /// This is equivalent to checking for an empty intersection.
1009
- ///
1010
- /// # Examples
1011
- ///
1012
- /// ```
1013
- /// use hashbrown::HashSet;
1014
- ///
1015
- /// let a: HashSet<_> = [1, 2, 3].into_iter().collect();
1016
- /// let mut b = HashSet::new();
1017
- ///
1018
- /// assert_eq!(a.is_disjoint(&b), true);
1019
- /// b.insert(4);
1020
- /// assert_eq!(a.is_disjoint(&b), true);
1021
- /// b.insert(1);
1022
- /// assert_eq!(a.is_disjoint(&b), false);
1023
- /// ```
1024
- pub fn is_disjoint(&self, other: &Self) -> bool {
1025
- self.intersection(other).next().is_none()
1026
- }
1027
-
1028
- /// Returns `true` if the set is a subset of another,
1029
- /// i.e., `other` contains at least all the values in `self`.
1030
- ///
1031
- /// # Examples
1032
- ///
1033
- /// ```
1034
- /// use hashbrown::HashSet;
1035
- ///
1036
- /// let sup: HashSet<_> = [1, 2, 3].into_iter().collect();
1037
- /// let mut set = HashSet::new();
1038
- ///
1039
- /// assert_eq!(set.is_subset(&sup), true);
1040
- /// set.insert(2);
1041
- /// assert_eq!(set.is_subset(&sup), true);
1042
- /// set.insert(4);
1043
- /// assert_eq!(set.is_subset(&sup), false);
1044
- /// ```
1045
- pub fn is_subset(&self, other: &Self) -> bool {
1046
- self.len() <= other.len() && self.iter().all(|v| other.contains(v))
1047
- }
1048
-
1049
- /// Returns `true` if the set is a superset of another,
1050
- /// i.e., `self` contains at least all the values in `other`.
1051
- ///
1052
- /// # Examples
1053
- ///
1054
- /// ```
1055
- /// use hashbrown::HashSet;
1056
- ///
1057
- /// let sub: HashSet<_> = [1, 2].into_iter().collect();
1058
- /// let mut set = HashSet::new();
1059
- ///
1060
- /// assert_eq!(set.is_superset(&sub), false);
1061
- ///
1062
- /// set.insert(0);
1063
- /// set.insert(1);
1064
- /// assert_eq!(set.is_superset(&sub), false);
1065
- ///
1066
- /// set.insert(2);
1067
- /// assert_eq!(set.is_superset(&sub), true);
1068
- /// ```
1069
- #[cfg_attr(feature = "inline-more", inline)]
1070
- pub fn is_superset(&self, other: &Self) -> bool {
1071
- other.is_subset(self)
1072
- }
1073
-
1074
- /// Adds a value to the set.
1075
- ///
1076
- /// If the set did not have this value present, `true` is returned.
1077
- ///
1078
- /// If the set did have this value present, `false` is returned.
1079
- ///
1080
- /// # Examples
1081
- ///
1082
- /// ```
1083
- /// use hashbrown::HashSet;
1084
- ///
1085
- /// let mut set = HashSet::new();
1086
- ///
1087
- /// assert_eq!(set.insert(2), true);
1088
- /// assert_eq!(set.insert(2), false);
1089
- /// assert_eq!(set.len(), 1);
1090
- /// ```
1091
- #[cfg_attr(feature = "inline-more", inline)]
1092
- pub fn insert(&mut self, value: T) -> bool {
1093
- self.map.insert(value, ()).is_none()
1094
- }
1095
-
1096
- /// Insert a value the set without checking if the value already exists in the set.
1097
- ///
1098
- /// This operation is faster than regular insert, because it does not perform
1099
- /// lookup before insertion.
1100
- ///
1101
- /// This operation is useful during initial population of the set.
1102
- /// For example, when constructing a set from another set, we know
1103
- /// that values are unique.
1104
- ///
1105
- /// # Safety
1106
- ///
1107
- /// This operation is safe if a value does not exist in the set.
1108
- ///
1109
- /// However, if a value exists in the set already, the behavior is unspecified:
1110
- /// this operation may panic, loop forever, or any following operation with the set
1111
- /// may panic, loop forever or return arbitrary result.
1112
- ///
1113
- /// That said, this operation (and following operations) are guaranteed to
1114
- /// not violate memory safety.
1115
- ///
1116
- /// However this operation is still unsafe because the resulting `HashSet`
1117
- /// may be passed to unsafe code which does expect the set to behave
1118
- /// correctly, and would cause unsoundness as a result.
1119
- #[cfg_attr(feature = "inline-more", inline)]
1120
- pub unsafe fn insert_unique_unchecked(&mut self, value: T) -> &T {
1121
- self.map.insert_unique_unchecked(value, ()).0
1122
- }
1123
-
1124
- /// Adds a value to the set, replacing the existing value, if any, that is equal to the given
1125
- /// one. Returns the replaced value.
1126
- ///
1127
- /// # Examples
1128
- ///
1129
- /// ```
1130
- /// use hashbrown::HashSet;
1131
- ///
1132
- /// let mut set = HashSet::new();
1133
- /// set.insert(Vec::<i32>::new());
1134
- ///
1135
- /// assert_eq!(set.get(&[][..]).unwrap().capacity(), 0);
1136
- /// set.replace(Vec::with_capacity(10));
1137
- /// assert_eq!(set.get(&[][..]).unwrap().capacity(), 10);
1138
- /// ```
1139
- #[cfg_attr(feature = "inline-more", inline)]
1140
- pub fn replace(&mut self, value: T) -> Option<T> {
1141
- let hash = make_hash(&self.map.hash_builder, &value);
1142
- match self.map.find_or_find_insert_slot(hash, &value) {
1143
- Ok(bucket) => Some(mem::replace(unsafe { &mut bucket.as_mut().0 }, value)),
1144
- Err(slot) => {
1145
- unsafe {
1146
- self.map.table.insert_in_slot(hash, slot, (value, ()));
1147
- }
1148
- None
1149
- }
1150
- }
1151
- }
1152
-
1153
- /// Removes a value from the set. Returns whether the value was
1154
- /// present in the set.
1155
- ///
1156
- /// The value may be any borrowed form of the set's value type, but
1157
- /// [`Hash`] and [`Eq`] on the borrowed form *must* match those for
1158
- /// the value type.
1159
- ///
1160
- /// # Examples
1161
- ///
1162
- /// ```
1163
- /// use hashbrown::HashSet;
1164
- ///
1165
- /// let mut set = HashSet::new();
1166
- ///
1167
- /// set.insert(2);
1168
- /// assert_eq!(set.remove(&2), true);
1169
- /// assert_eq!(set.remove(&2), false);
1170
- /// ```
1171
- ///
1172
- /// [`Eq`]: https://doc.rust-lang.org/std/cmp/trait.Eq.html
1173
- /// [`Hash`]: https://doc.rust-lang.org/std/hash/trait.Hash.html
1174
- #[cfg_attr(feature = "inline-more", inline)]
1175
- pub fn remove<Q>(&mut self, value: &Q) -> bool
1176
- where
1177
- Q: Hash + Equivalent<T> + ?Sized,
1178
- {
1179
- self.map.remove(value).is_some()
1180
- }
1181
-
1182
- /// Removes and returns the value in the set, if any, that is equal to the given one.
1183
- ///
1184
- /// The value may be any borrowed form of the set's value type, but
1185
- /// [`Hash`] and [`Eq`] on the borrowed form *must* match those for
1186
- /// the value type.
1187
- ///
1188
- /// # Examples
1189
- ///
1190
- /// ```
1191
- /// use hashbrown::HashSet;
1192
- ///
1193
- /// let mut set: HashSet<_> = [1, 2, 3].into_iter().collect();
1194
- /// assert_eq!(set.take(&2), Some(2));
1195
- /// assert_eq!(set.take(&2), None);
1196
- /// ```
1197
- ///
1198
- /// [`Eq`]: https://doc.rust-lang.org/std/cmp/trait.Eq.html
1199
- /// [`Hash`]: https://doc.rust-lang.org/std/hash/trait.Hash.html
1200
- #[cfg_attr(feature = "inline-more", inline)]
1201
- pub fn take<Q>(&mut self, value: &Q) -> Option<T>
1202
- where
1203
- Q: Hash + Equivalent<T> + ?Sized,
1204
- {
1205
- // Avoid `Option::map` because it bloats LLVM IR.
1206
- match self.map.remove_entry(value) {
1207
- Some((k, _)) => Some(k),
1208
- None => None,
1209
- }
1210
- }
1211
-
1212
- /// Returns the total amount of memory allocated internally by the hash
1213
- /// set, in bytes.
1214
- ///
1215
- /// The returned number is informational only. It is intended to be
1216
- /// primarily used for memory profiling.
1217
- #[inline]
1218
- pub fn allocation_size(&self) -> usize {
1219
- self.map.allocation_size()
1220
- }
1221
- }
1222
-
1223
- impl<T, S, A> PartialEq for HashSet<T, S, A>
1224
- where
1225
- T: Eq + Hash,
1226
- S: BuildHasher,
1227
- A: Allocator,
1228
- {
1229
- fn eq(&self, other: &Self) -> bool {
1230
- if self.len() != other.len() {
1231
- return false;
1232
- }
1233
-
1234
- self.iter().all(|key| other.contains(key))
1235
- }
1236
- }
1237
-
1238
- impl<T, S, A> Eq for HashSet<T, S, A>
1239
- where
1240
- T: Eq + Hash,
1241
- S: BuildHasher,
1242
- A: Allocator,
1243
- {
1244
- }
1245
-
1246
- impl<T, S, A> fmt::Debug for HashSet<T, S, A>
1247
- where
1248
- T: fmt::Debug,
1249
- A: Allocator,
1250
- {
1251
- fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
1252
- f.debug_set().entries(self.iter()).finish()
1253
- }
1254
- }
1255
-
1256
- impl<T, S, A> From<HashMap<T, (), S, A>> for HashSet<T, S, A>
1257
- where
1258
- A: Allocator,
1259
- {
1260
- fn from(map: HashMap<T, (), S, A>) -> Self {
1261
- Self { map }
1262
- }
1263
- }
1264
-
1265
- impl<T, S, A> FromIterator<T> for HashSet<T, S, A>
1266
- where
1267
- T: Eq + Hash,
1268
- S: BuildHasher + Default,
1269
- A: Default + Allocator,
1270
- {
1271
- #[cfg_attr(feature = "inline-more", inline)]
1272
- fn from_iter<I: IntoIterator<Item = T>>(iter: I) -> Self {
1273
- let mut set = Self::with_hasher_in(Default::default(), Default::default());
1274
- set.extend(iter);
1275
- set
1276
- }
1277
- }
1278
-
1279
- // The default hasher is used to match the std implementation signature
1280
- #[cfg(feature = "default-hasher")]
1281
- impl<T, A, const N: usize> From<[T; N]> for HashSet<T, DefaultHashBuilder, A>
1282
- where
1283
- T: Eq + Hash,
1284
- A: Default + Allocator,
1285
- {
1286
- /// # Examples
1287
- ///
1288
- /// ```
1289
- /// use hashbrown::HashSet;
1290
- ///
1291
- /// let set1 = HashSet::from([1, 2, 3, 4]);
1292
- /// let set2: HashSet<_> = [1, 2, 3, 4].into();
1293
- /// assert_eq!(set1, set2);
1294
- /// ```
1295
- fn from(arr: [T; N]) -> Self {
1296
- arr.into_iter().collect()
1297
- }
1298
- }
1299
-
1300
- impl<T, S, A> Extend<T> for HashSet<T, S, A>
1301
- where
1302
- T: Eq + Hash,
1303
- S: BuildHasher,
1304
- A: Allocator,
1305
- {
1306
- #[cfg_attr(feature = "inline-more", inline)]
1307
- fn extend<I: IntoIterator<Item = T>>(&mut self, iter: I) {
1308
- self.map.extend(iter.into_iter().map(|k| (k, ())));
1309
- }
1310
-
1311
- #[inline]
1312
- #[cfg(feature = "nightly")]
1313
- fn extend_one(&mut self, k: T) {
1314
- self.map.insert(k, ());
1315
- }
1316
-
1317
- #[inline]
1318
- #[cfg(feature = "nightly")]
1319
- fn extend_reserve(&mut self, additional: usize) {
1320
- Extend::<(T, ())>::extend_reserve(&mut self.map, additional);
1321
- }
1322
- }
1323
-
1324
- impl<'a, T, S, A> Extend<&'a T> for HashSet<T, S, A>
1325
- where
1326
- T: 'a + Eq + Hash + Copy,
1327
- S: BuildHasher,
1328
- A: Allocator,
1329
- {
1330
- #[cfg_attr(feature = "inline-more", inline)]
1331
- fn extend<I: IntoIterator<Item = &'a T>>(&mut self, iter: I) {
1332
- self.extend(iter.into_iter().copied());
1333
- }
1334
-
1335
- #[inline]
1336
- #[cfg(feature = "nightly")]
1337
- fn extend_one(&mut self, k: &'a T) {
1338
- self.map.insert(*k, ());
1339
- }
1340
-
1341
- #[inline]
1342
- #[cfg(feature = "nightly")]
1343
- fn extend_reserve(&mut self, additional: usize) {
1344
- Extend::<(T, ())>::extend_reserve(&mut self.map, additional);
1345
- }
1346
- }
1347
-
1348
- impl<T, S, A> Default for HashSet<T, S, A>
1349
- where
1350
- S: Default,
1351
- A: Default + Allocator,
1352
- {
1353
- /// Creates an empty `HashSet<T, S>` with the `Default` value for the hasher.
1354
- #[cfg_attr(feature = "inline-more", inline)]
1355
- fn default() -> Self {
1356
- Self {
1357
- map: HashMap::default(),
1358
- }
1359
- }
1360
- }
1361
-
1362
- impl<T, S, A> BitOr<&HashSet<T, S, A>> for &HashSet<T, S, A>
1363
- where
1364
- T: Eq + Hash + Clone,
1365
- S: BuildHasher + Default,
1366
- A: Allocator + Default,
1367
- {
1368
- type Output = HashSet<T, S, A>;
1369
-
1370
- /// Returns the union of `self` and `rhs` as a new `HashSet<T, S>`.
1371
- ///
1372
- /// # Examples
1373
- ///
1374
- /// ```
1375
- /// use hashbrown::HashSet;
1376
- ///
1377
- /// let a: HashSet<_> = vec![1, 2, 3].into_iter().collect();
1378
- /// let b: HashSet<_> = vec![3, 4, 5].into_iter().collect();
1379
- ///
1380
- /// let set = &a | &b;
1381
- ///
1382
- /// let mut i = 0;
1383
- /// let expected = [1, 2, 3, 4, 5];
1384
- /// for x in &set {
1385
- /// assert!(expected.contains(x));
1386
- /// i += 1;
1387
- /// }
1388
- /// assert_eq!(i, expected.len());
1389
- /// ```
1390
- fn bitor(self, rhs: &HashSet<T, S, A>) -> HashSet<T, S, A> {
1391
- self.union(rhs).cloned().collect()
1392
- }
1393
- }
1394
-
1395
- impl<T, S, A> BitAnd<&HashSet<T, S, A>> for &HashSet<T, S, A>
1396
- where
1397
- T: Eq + Hash + Clone,
1398
- S: BuildHasher + Default,
1399
- A: Allocator + Default,
1400
- {
1401
- type Output = HashSet<T, S, A>;
1402
-
1403
- /// Returns the intersection of `self` and `rhs` as a new `HashSet<T, S>`.
1404
- ///
1405
- /// # Examples
1406
- ///
1407
- /// ```
1408
- /// use hashbrown::HashSet;
1409
- ///
1410
- /// let a: HashSet<_> = vec![1, 2, 3].into_iter().collect();
1411
- /// let b: HashSet<_> = vec![2, 3, 4].into_iter().collect();
1412
- ///
1413
- /// let set = &a & &b;
1414
- ///
1415
- /// let mut i = 0;
1416
- /// let expected = [2, 3];
1417
- /// for x in &set {
1418
- /// assert!(expected.contains(x));
1419
- /// i += 1;
1420
- /// }
1421
- /// assert_eq!(i, expected.len());
1422
- /// ```
1423
- fn bitand(self, rhs: &HashSet<T, S, A>) -> HashSet<T, S, A> {
1424
- self.intersection(rhs).cloned().collect()
1425
- }
1426
- }
1427
-
1428
- impl<T, S, A> BitXor<&HashSet<T, S, A>> for &HashSet<T, S, A>
1429
- where
1430
- T: Eq + Hash + Clone,
1431
- S: BuildHasher + Default,
1432
- A: Allocator + Default,
1433
- {
1434
- type Output = HashSet<T, S, A>;
1435
-
1436
- /// Returns the symmetric difference of `self` and `rhs` as a new `HashSet<T, S>`.
1437
- ///
1438
- /// # Examples
1439
- ///
1440
- /// ```
1441
- /// use hashbrown::HashSet;
1442
- ///
1443
- /// let a: HashSet<_> = vec![1, 2, 3].into_iter().collect();
1444
- /// let b: HashSet<_> = vec![3, 4, 5].into_iter().collect();
1445
- ///
1446
- /// let set = &a ^ &b;
1447
- ///
1448
- /// let mut i = 0;
1449
- /// let expected = [1, 2, 4, 5];
1450
- /// for x in &set {
1451
- /// assert!(expected.contains(x));
1452
- /// i += 1;
1453
- /// }
1454
- /// assert_eq!(i, expected.len());
1455
- /// ```
1456
- fn bitxor(self, rhs: &HashSet<T, S, A>) -> HashSet<T, S, A> {
1457
- self.symmetric_difference(rhs).cloned().collect()
1458
- }
1459
- }
1460
-
1461
- impl<T, S, A> Sub<&HashSet<T, S, A>> for &HashSet<T, S, A>
1462
- where
1463
- T: Eq + Hash + Clone,
1464
- S: BuildHasher + Default,
1465
- A: Allocator + Default,
1466
- {
1467
- type Output = HashSet<T, S, A>;
1468
-
1469
- /// Returns the difference of `self` and `rhs` as a new `HashSet<T, S>`.
1470
- ///
1471
- /// # Examples
1472
- ///
1473
- /// ```
1474
- /// use hashbrown::HashSet;
1475
- ///
1476
- /// let a: HashSet<_> = vec![1, 2, 3].into_iter().collect();
1477
- /// let b: HashSet<_> = vec![3, 4, 5].into_iter().collect();
1478
- ///
1479
- /// let set = &a - &b;
1480
- ///
1481
- /// let mut i = 0;
1482
- /// let expected = [1, 2];
1483
- /// for x in &set {
1484
- /// assert!(expected.contains(x));
1485
- /// i += 1;
1486
- /// }
1487
- /// assert_eq!(i, expected.len());
1488
- /// ```
1489
- fn sub(self, rhs: &HashSet<T, S, A>) -> HashSet<T, S, A> {
1490
- self.difference(rhs).cloned().collect()
1491
- }
1492
- }
1493
-
1494
- impl<T, S, A> BitOrAssign<&HashSet<T, S, A>> for HashSet<T, S, A>
1495
- where
1496
- T: Eq + Hash + Clone,
1497
- S: BuildHasher,
1498
- A: Allocator,
1499
- {
1500
- /// Modifies this set to contain the union of `self` and `rhs`.
1501
- ///
1502
- /// # Examples
1503
- ///
1504
- /// ```
1505
- /// use hashbrown::HashSet;
1506
- ///
1507
- /// let mut a: HashSet<_> = vec![1, 2, 3].into_iter().collect();
1508
- /// let b: HashSet<_> = vec![3, 4, 5].into_iter().collect();
1509
- ///
1510
- /// a |= &b;
1511
- ///
1512
- /// let mut i = 0;
1513
- /// let expected = [1, 2, 3, 4, 5];
1514
- /// for x in &a {
1515
- /// assert!(expected.contains(x));
1516
- /// i += 1;
1517
- /// }
1518
- /// assert_eq!(i, expected.len());
1519
- /// ```
1520
- fn bitor_assign(&mut self, rhs: &HashSet<T, S, A>) {
1521
- for item in rhs {
1522
- if !self.contains(item) {
1523
- self.insert(item.clone());
1524
- }
1525
- }
1526
- }
1527
- }
1528
-
1529
- impl<T, S, A> BitAndAssign<&HashSet<T, S, A>> for HashSet<T, S, A>
1530
- where
1531
- T: Eq + Hash + Clone,
1532
- S: BuildHasher,
1533
- A: Allocator,
1534
- {
1535
- /// Modifies this set to contain the intersection of `self` and `rhs`.
1536
- ///
1537
- /// # Examples
1538
- ///
1539
- /// ```
1540
- /// use hashbrown::HashSet;
1541
- ///
1542
- /// let mut a: HashSet<_> = vec![1, 2, 3].into_iter().collect();
1543
- /// let b: HashSet<_> = vec![2, 3, 4].into_iter().collect();
1544
- ///
1545
- /// a &= &b;
1546
- ///
1547
- /// let mut i = 0;
1548
- /// let expected = [2, 3];
1549
- /// for x in &a {
1550
- /// assert!(expected.contains(x));
1551
- /// i += 1;
1552
- /// }
1553
- /// assert_eq!(i, expected.len());
1554
- /// ```
1555
- fn bitand_assign(&mut self, rhs: &HashSet<T, S, A>) {
1556
- self.retain(|item| rhs.contains(item));
1557
- }
1558
- }
1559
-
1560
- impl<T, S, A> BitXorAssign<&HashSet<T, S, A>> for HashSet<T, S, A>
1561
- where
1562
- T: Eq + Hash + Clone,
1563
- S: BuildHasher,
1564
- A: Allocator,
1565
- {
1566
- /// Modifies this set to contain the symmetric difference of `self` and `rhs`.
1567
- ///
1568
- /// # Examples
1569
- ///
1570
- /// ```
1571
- /// use hashbrown::HashSet;
1572
- ///
1573
- /// let mut a: HashSet<_> = vec![1, 2, 3].into_iter().collect();
1574
- /// let b: HashSet<_> = vec![3, 4, 5].into_iter().collect();
1575
- ///
1576
- /// a ^= &b;
1577
- ///
1578
- /// let mut i = 0;
1579
- /// let expected = [1, 2, 4, 5];
1580
- /// for x in &a {
1581
- /// assert!(expected.contains(x));
1582
- /// i += 1;
1583
- /// }
1584
- /// assert_eq!(i, expected.len());
1585
- /// ```
1586
- fn bitxor_assign(&mut self, rhs: &HashSet<T, S, A>) {
1587
- for item in rhs {
1588
- let hash = make_hash(&self.map.hash_builder, item);
1589
- match self.map.find_or_find_insert_slot(hash, item) {
1590
- Ok(bucket) => unsafe {
1591
- self.map.table.remove(bucket);
1592
- },
1593
- Err(slot) => unsafe {
1594
- self.map
1595
- .table
1596
- .insert_in_slot(hash, slot, (item.clone(), ()));
1597
- },
1598
- }
1599
- }
1600
- }
1601
- }
1602
-
1603
- impl<T, S, A> SubAssign<&HashSet<T, S, A>> for HashSet<T, S, A>
1604
- where
1605
- T: Eq + Hash + Clone,
1606
- S: BuildHasher,
1607
- A: Allocator,
1608
- {
1609
- /// Modifies this set to contain the difference of `self` and `rhs`.
1610
- ///
1611
- /// # Examples
1612
- ///
1613
- /// ```
1614
- /// use hashbrown::HashSet;
1615
- ///
1616
- /// let mut a: HashSet<_> = vec![1, 2, 3].into_iter().collect();
1617
- /// let b: HashSet<_> = vec![3, 4, 5].into_iter().collect();
1618
- ///
1619
- /// a -= &b;
1620
- ///
1621
- /// let mut i = 0;
1622
- /// let expected = [1, 2];
1623
- /// for x in &a {
1624
- /// assert!(expected.contains(x));
1625
- /// i += 1;
1626
- /// }
1627
- /// assert_eq!(i, expected.len());
1628
- /// ```
1629
- fn sub_assign(&mut self, rhs: &HashSet<T, S, A>) {
1630
- if rhs.len() < self.len() {
1631
- for item in rhs {
1632
- self.remove(item);
1633
- }
1634
- } else {
1635
- self.retain(|item| !rhs.contains(item));
1636
- }
1637
- }
1638
- }
1639
-
1640
- /// An iterator over the items of a `HashSet`.
1641
- ///
1642
- /// This `struct` is created by the [`iter`] method on [`HashSet`].
1643
- /// See its documentation for more.
1644
- ///
1645
- /// [`HashSet`]: struct.HashSet.html
1646
- /// [`iter`]: struct.HashSet.html#method.iter
1647
- pub struct Iter<'a, K> {
1648
- iter: Keys<'a, K, ()>,
1649
- }
1650
-
1651
- /// An owning iterator over the items of a `HashSet`.
1652
- ///
1653
- /// This `struct` is created by the [`into_iter`] method on [`HashSet`]
1654
- /// (provided by the `IntoIterator` trait). See its documentation for more.
1655
- ///
1656
- /// [`HashSet`]: struct.HashSet.html
1657
- /// [`into_iter`]: struct.HashSet.html#method.into_iter
1658
- pub struct IntoIter<K, A: Allocator = Global> {
1659
- iter: map::IntoIter<K, (), A>,
1660
- }
1661
-
1662
- /// A draining iterator over the items of a `HashSet`.
1663
- ///
1664
- /// This `struct` is created by the [`drain`] method on [`HashSet`].
1665
- /// See its documentation for more.
1666
- ///
1667
- /// [`HashSet`]: struct.HashSet.html
1668
- /// [`drain`]: struct.HashSet.html#method.drain
1669
- pub struct Drain<'a, K, A: Allocator = Global> {
1670
- iter: map::Drain<'a, K, (), A>,
1671
- }
1672
-
1673
- /// A draining iterator over entries of a `HashSet` which don't satisfy the predicate `f`.
1674
- ///
1675
- /// This `struct` is created by the [`extract_if`] method on [`HashSet`]. See its
1676
- /// documentation for more.
1677
- ///
1678
- /// [`extract_if`]: struct.HashSet.html#method.extract_if
1679
- /// [`HashSet`]: struct.HashSet.html
1680
- #[must_use = "Iterators are lazy unless consumed"]
1681
- pub struct ExtractIf<'a, K, F, A: Allocator = Global>
1682
- where
1683
- F: FnMut(&K) -> bool,
1684
- {
1685
- f: F,
1686
- inner: RawExtractIf<'a, (K, ()), A>,
1687
- }
1688
-
1689
- /// A lazy iterator producing elements in the intersection of `HashSet`s.
1690
- ///
1691
- /// This `struct` is created by the [`intersection`] method on [`HashSet`].
1692
- /// See its documentation for more.
1693
- ///
1694
- /// [`HashSet`]: struct.HashSet.html
1695
- /// [`intersection`]: struct.HashSet.html#method.intersection
1696
- pub struct Intersection<'a, T, S, A: Allocator = Global> {
1697
- // iterator of the first set
1698
- iter: Iter<'a, T>,
1699
- // the second set
1700
- other: &'a HashSet<T, S, A>,
1701
- }
1702
-
1703
- /// A lazy iterator producing elements in the difference of `HashSet`s.
1704
- ///
1705
- /// This `struct` is created by the [`difference`] method on [`HashSet`].
1706
- /// See its documentation for more.
1707
- ///
1708
- /// [`HashSet`]: struct.HashSet.html
1709
- /// [`difference`]: struct.HashSet.html#method.difference
1710
- pub struct Difference<'a, T, S, A: Allocator = Global> {
1711
- // iterator of the first set
1712
- iter: Iter<'a, T>,
1713
- // the second set
1714
- other: &'a HashSet<T, S, A>,
1715
- }
1716
-
1717
- /// A lazy iterator producing elements in the symmetric difference of `HashSet`s.
1718
- ///
1719
- /// This `struct` is created by the [`symmetric_difference`] method on
1720
- /// [`HashSet`]. See its documentation for more.
1721
- ///
1722
- /// [`HashSet`]: struct.HashSet.html
1723
- /// [`symmetric_difference`]: struct.HashSet.html#method.symmetric_difference
1724
- pub struct SymmetricDifference<'a, T, S, A: Allocator = Global> {
1725
- iter: Chain<Difference<'a, T, S, A>, Difference<'a, T, S, A>>,
1726
- }
1727
-
1728
- /// A lazy iterator producing elements in the union of `HashSet`s.
1729
- ///
1730
- /// This `struct` is created by the [`union`] method on [`HashSet`].
1731
- /// See its documentation for more.
1732
- ///
1733
- /// [`HashSet`]: struct.HashSet.html
1734
- /// [`union`]: struct.HashSet.html#method.union
1735
- pub struct Union<'a, T, S, A: Allocator = Global> {
1736
- iter: Chain<Iter<'a, T>, Difference<'a, T, S, A>>,
1737
- }
1738
-
1739
- impl<'a, T, S, A: Allocator> IntoIterator for &'a HashSet<T, S, A> {
1740
- type Item = &'a T;
1741
- type IntoIter = Iter<'a, T>;
1742
-
1743
- #[cfg_attr(feature = "inline-more", inline)]
1744
- fn into_iter(self) -> Iter<'a, T> {
1745
- self.iter()
1746
- }
1747
- }
1748
-
1749
- impl<T, S, A: Allocator> IntoIterator for HashSet<T, S, A> {
1750
- type Item = T;
1751
- type IntoIter = IntoIter<T, A>;
1752
-
1753
- /// Creates a consuming iterator, that is, one that moves each value out
1754
- /// of the set in arbitrary order. The set cannot be used after calling
1755
- /// this.
1756
- ///
1757
- /// # Examples
1758
- ///
1759
- /// ```
1760
- /// use hashbrown::HashSet;
1761
- /// let mut set = HashSet::new();
1762
- /// set.insert("a".to_string());
1763
- /// set.insert("b".to_string());
1764
- ///
1765
- /// // Not possible to collect to a Vec<String> with a regular `.iter()`.
1766
- /// let v: Vec<String> = set.into_iter().collect();
1767
- ///
1768
- /// // Will print in an arbitrary order.
1769
- /// for x in &v {
1770
- /// println!("{}", x);
1771
- /// }
1772
- /// ```
1773
- #[cfg_attr(feature = "inline-more", inline)]
1774
- fn into_iter(self) -> IntoIter<T, A> {
1775
- IntoIter {
1776
- iter: self.map.into_iter(),
1777
- }
1778
- }
1779
- }
1780
-
1781
- impl<K> Clone for Iter<'_, K> {
1782
- #[cfg_attr(feature = "inline-more", inline)]
1783
- fn clone(&self) -> Self {
1784
- Iter {
1785
- iter: self.iter.clone(),
1786
- }
1787
- }
1788
- }
1789
- impl<K> Default for Iter<'_, K> {
1790
- #[cfg_attr(feature = "inline-more", inline)]
1791
- fn default() -> Self {
1792
- Iter {
1793
- iter: Default::default(),
1794
- }
1795
- }
1796
- }
1797
- impl<'a, K> Iterator for Iter<'a, K> {
1798
- type Item = &'a K;
1799
-
1800
- #[cfg_attr(feature = "inline-more", inline)]
1801
- fn next(&mut self) -> Option<&'a K> {
1802
- self.iter.next()
1803
- }
1804
- #[cfg_attr(feature = "inline-more", inline)]
1805
- fn size_hint(&self) -> (usize, Option<usize>) {
1806
- self.iter.size_hint()
1807
- }
1808
- #[cfg_attr(feature = "inline-more", inline)]
1809
- fn fold<B, F>(self, init: B, f: F) -> B
1810
- where
1811
- Self: Sized,
1812
- F: FnMut(B, Self::Item) -> B,
1813
- {
1814
- self.iter.fold(init, f)
1815
- }
1816
- }
1817
- impl<K> ExactSizeIterator for Iter<'_, K> {
1818
- #[cfg_attr(feature = "inline-more", inline)]
1819
- fn len(&self) -> usize {
1820
- self.iter.len()
1821
- }
1822
- }
1823
- impl<K> FusedIterator for Iter<'_, K> {}
1824
-
1825
- impl<K: fmt::Debug> fmt::Debug for Iter<'_, K> {
1826
- fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
1827
- f.debug_list().entries(self.clone()).finish()
1828
- }
1829
- }
1830
-
1831
- impl<K, A: Allocator> Default for IntoIter<K, A> {
1832
- #[cfg_attr(feature = "inline-more", inline)]
1833
- fn default() -> Self {
1834
- IntoIter {
1835
- iter: Default::default(),
1836
- }
1837
- }
1838
- }
1839
- impl<K, A: Allocator> Iterator for IntoIter<K, A> {
1840
- type Item = K;
1841
-
1842
- #[cfg_attr(feature = "inline-more", inline)]
1843
- fn next(&mut self) -> Option<K> {
1844
- // Avoid `Option::map` because it bloats LLVM IR.
1845
- match self.iter.next() {
1846
- Some((k, _)) => Some(k),
1847
- None => None,
1848
- }
1849
- }
1850
- #[cfg_attr(feature = "inline-more", inline)]
1851
- fn size_hint(&self) -> (usize, Option<usize>) {
1852
- self.iter.size_hint()
1853
- }
1854
- #[cfg_attr(feature = "inline-more", inline)]
1855
- fn fold<B, F>(self, init: B, mut f: F) -> B
1856
- where
1857
- Self: Sized,
1858
- F: FnMut(B, Self::Item) -> B,
1859
- {
1860
- self.iter.fold(init, |acc, (k, ())| f(acc, k))
1861
- }
1862
- }
1863
- impl<K, A: Allocator> ExactSizeIterator for IntoIter<K, A> {
1864
- #[cfg_attr(feature = "inline-more", inline)]
1865
- fn len(&self) -> usize {
1866
- self.iter.len()
1867
- }
1868
- }
1869
- impl<K, A: Allocator> FusedIterator for IntoIter<K, A> {}
1870
-
1871
- impl<K: fmt::Debug, A: Allocator> fmt::Debug for IntoIter<K, A> {
1872
- fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
1873
- let entries_iter = self.iter.iter().map(|(k, _)| k);
1874
- f.debug_list().entries(entries_iter).finish()
1875
- }
1876
- }
1877
-
1878
- impl<K, A: Allocator> Iterator for Drain<'_, K, A> {
1879
- type Item = K;
1880
-
1881
- #[cfg_attr(feature = "inline-more", inline)]
1882
- fn next(&mut self) -> Option<K> {
1883
- // Avoid `Option::map` because it bloats LLVM IR.
1884
- match self.iter.next() {
1885
- Some((k, _)) => Some(k),
1886
- None => None,
1887
- }
1888
- }
1889
- #[cfg_attr(feature = "inline-more", inline)]
1890
- fn size_hint(&self) -> (usize, Option<usize>) {
1891
- self.iter.size_hint()
1892
- }
1893
- #[cfg_attr(feature = "inline-more", inline)]
1894
- fn fold<B, F>(self, init: B, mut f: F) -> B
1895
- where
1896
- Self: Sized,
1897
- F: FnMut(B, Self::Item) -> B,
1898
- {
1899
- self.iter.fold(init, |acc, (k, ())| f(acc, k))
1900
- }
1901
- }
1902
- impl<K, A: Allocator> ExactSizeIterator for Drain<'_, K, A> {
1903
- #[cfg_attr(feature = "inline-more", inline)]
1904
- fn len(&self) -> usize {
1905
- self.iter.len()
1906
- }
1907
- }
1908
- impl<K, A: Allocator> FusedIterator for Drain<'_, K, A> {}
1909
-
1910
- impl<K: fmt::Debug, A: Allocator> fmt::Debug for Drain<'_, K, A> {
1911
- fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
1912
- let entries_iter = self.iter.iter().map(|(k, _)| k);
1913
- f.debug_list().entries(entries_iter).finish()
1914
- }
1915
- }
1916
-
1917
- impl<K, F, A: Allocator> Iterator for ExtractIf<'_, K, F, A>
1918
- where
1919
- F: FnMut(&K) -> bool,
1920
- {
1921
- type Item = K;
1922
-
1923
- #[cfg_attr(feature = "inline-more", inline)]
1924
- fn next(&mut self) -> Option<Self::Item> {
1925
- self.inner
1926
- .next(|&mut (ref k, ())| (self.f)(k))
1927
- .map(|(k, ())| k)
1928
- }
1929
-
1930
- #[inline]
1931
- fn size_hint(&self) -> (usize, Option<usize>) {
1932
- (0, self.inner.iter.size_hint().1)
1933
- }
1934
- }
1935
-
1936
- impl<K, F, A: Allocator> FusedIterator for ExtractIf<'_, K, F, A> where F: FnMut(&K) -> bool {}
1937
-
1938
- impl<T, S, A: Allocator> Clone for Intersection<'_, T, S, A> {
1939
- #[cfg_attr(feature = "inline-more", inline)]
1940
- fn clone(&self) -> Self {
1941
- Intersection {
1942
- iter: self.iter.clone(),
1943
- ..*self
1944
- }
1945
- }
1946
- }
1947
-
1948
- impl<'a, T, S, A> Iterator for Intersection<'a, T, S, A>
1949
- where
1950
- T: Eq + Hash,
1951
- S: BuildHasher,
1952
- A: Allocator,
1953
- {
1954
- type Item = &'a T;
1955
-
1956
- #[cfg_attr(feature = "inline-more", inline)]
1957
- fn next(&mut self) -> Option<&'a T> {
1958
- loop {
1959
- let elt = self.iter.next()?;
1960
- if self.other.contains(elt) {
1961
- return Some(elt);
1962
- }
1963
- }
1964
- }
1965
-
1966
- #[cfg_attr(feature = "inline-more", inline)]
1967
- fn size_hint(&self) -> (usize, Option<usize>) {
1968
- let (_, upper) = self.iter.size_hint();
1969
- (0, upper)
1970
- }
1971
-
1972
- #[cfg_attr(feature = "inline-more", inline)]
1973
- fn fold<B, F>(self, init: B, mut f: F) -> B
1974
- where
1975
- Self: Sized,
1976
- F: FnMut(B, Self::Item) -> B,
1977
- {
1978
- self.iter.fold(init, |acc, elt| {
1979
- if self.other.contains(elt) {
1980
- f(acc, elt)
1981
- } else {
1982
- acc
1983
- }
1984
- })
1985
- }
1986
- }
1987
-
1988
- impl<T, S, A> fmt::Debug for Intersection<'_, T, S, A>
1989
- where
1990
- T: fmt::Debug + Eq + Hash,
1991
- S: BuildHasher,
1992
- A: Allocator,
1993
- {
1994
- fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
1995
- f.debug_list().entries(self.clone()).finish()
1996
- }
1997
- }
1998
-
1999
- impl<T, S, A> FusedIterator for Intersection<'_, T, S, A>
2000
- where
2001
- T: Eq + Hash,
2002
- S: BuildHasher,
2003
- A: Allocator,
2004
- {
2005
- }
2006
-
2007
- impl<T, S, A: Allocator> Clone for Difference<'_, T, S, A> {
2008
- #[cfg_attr(feature = "inline-more", inline)]
2009
- fn clone(&self) -> Self {
2010
- Difference {
2011
- iter: self.iter.clone(),
2012
- ..*self
2013
- }
2014
- }
2015
- }
2016
-
2017
- impl<'a, T, S, A> Iterator for Difference<'a, T, S, A>
2018
- where
2019
- T: Eq + Hash,
2020
- S: BuildHasher,
2021
- A: Allocator,
2022
- {
2023
- type Item = &'a T;
2024
-
2025
- #[cfg_attr(feature = "inline-more", inline)]
2026
- fn next(&mut self) -> Option<&'a T> {
2027
- loop {
2028
- let elt = self.iter.next()?;
2029
- if !self.other.contains(elt) {
2030
- return Some(elt);
2031
- }
2032
- }
2033
- }
2034
-
2035
- #[cfg_attr(feature = "inline-more", inline)]
2036
- fn size_hint(&self) -> (usize, Option<usize>) {
2037
- let (lower, upper) = self.iter.size_hint();
2038
- (lower.saturating_sub(self.other.len()), upper)
2039
- }
2040
-
2041
- #[cfg_attr(feature = "inline-more", inline)]
2042
- fn fold<B, F>(self, init: B, mut f: F) -> B
2043
- where
2044
- Self: Sized,
2045
- F: FnMut(B, Self::Item) -> B,
2046
- {
2047
- self.iter.fold(init, |acc, elt| {
2048
- if self.other.contains(elt) {
2049
- acc
2050
- } else {
2051
- f(acc, elt)
2052
- }
2053
- })
2054
- }
2055
- }
2056
-
2057
- impl<T, S, A> FusedIterator for Difference<'_, T, S, A>
2058
- where
2059
- T: Eq + Hash,
2060
- S: BuildHasher,
2061
- A: Allocator,
2062
- {
2063
- }
2064
-
2065
- impl<T, S, A> fmt::Debug for Difference<'_, T, S, A>
2066
- where
2067
- T: fmt::Debug + Eq + Hash,
2068
- S: BuildHasher,
2069
- A: Allocator,
2070
- {
2071
- fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
2072
- f.debug_list().entries(self.clone()).finish()
2073
- }
2074
- }
2075
-
2076
- impl<T, S, A: Allocator> Clone for SymmetricDifference<'_, T, S, A> {
2077
- #[cfg_attr(feature = "inline-more", inline)]
2078
- fn clone(&self) -> Self {
2079
- SymmetricDifference {
2080
- iter: self.iter.clone(),
2081
- }
2082
- }
2083
- }
2084
-
2085
- impl<'a, T, S, A> Iterator for SymmetricDifference<'a, T, S, A>
2086
- where
2087
- T: Eq + Hash,
2088
- S: BuildHasher,
2089
- A: Allocator,
2090
- {
2091
- type Item = &'a T;
2092
-
2093
- #[cfg_attr(feature = "inline-more", inline)]
2094
- fn next(&mut self) -> Option<&'a T> {
2095
- self.iter.next()
2096
- }
2097
-
2098
- #[cfg_attr(feature = "inline-more", inline)]
2099
- fn size_hint(&self) -> (usize, Option<usize>) {
2100
- self.iter.size_hint()
2101
- }
2102
-
2103
- #[cfg_attr(feature = "inline-more", inline)]
2104
- fn fold<B, F>(self, init: B, f: F) -> B
2105
- where
2106
- Self: Sized,
2107
- F: FnMut(B, Self::Item) -> B,
2108
- {
2109
- self.iter.fold(init, f)
2110
- }
2111
- }
2112
-
2113
- impl<T, S, A> FusedIterator for SymmetricDifference<'_, T, S, A>
2114
- where
2115
- T: Eq + Hash,
2116
- S: BuildHasher,
2117
- A: Allocator,
2118
- {
2119
- }
2120
-
2121
- impl<T, S, A> fmt::Debug for SymmetricDifference<'_, T, S, A>
2122
- where
2123
- T: fmt::Debug + Eq + Hash,
2124
- S: BuildHasher,
2125
- A: Allocator,
2126
- {
2127
- fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
2128
- f.debug_list().entries(self.clone()).finish()
2129
- }
2130
- }
2131
-
2132
- impl<T, S, A: Allocator> Clone for Union<'_, T, S, A> {
2133
- #[cfg_attr(feature = "inline-more", inline)]
2134
- fn clone(&self) -> Self {
2135
- Union {
2136
- iter: self.iter.clone(),
2137
- }
2138
- }
2139
- }
2140
-
2141
- impl<T, S, A> FusedIterator for Union<'_, T, S, A>
2142
- where
2143
- T: Eq + Hash,
2144
- S: BuildHasher,
2145
- A: Allocator,
2146
- {
2147
- }
2148
-
2149
- impl<T, S, A> fmt::Debug for Union<'_, T, S, A>
2150
- where
2151
- T: fmt::Debug + Eq + Hash,
2152
- S: BuildHasher,
2153
- A: Allocator,
2154
- {
2155
- fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
2156
- f.debug_list().entries(self.clone()).finish()
2157
- }
2158
- }
2159
-
2160
- impl<'a, T, S, A> Iterator for Union<'a, T, S, A>
2161
- where
2162
- T: Eq + Hash,
2163
- S: BuildHasher,
2164
- A: Allocator,
2165
- {
2166
- type Item = &'a T;
2167
-
2168
- #[cfg_attr(feature = "inline-more", inline)]
2169
- fn next(&mut self) -> Option<&'a T> {
2170
- self.iter.next()
2171
- }
2172
-
2173
- #[cfg_attr(feature = "inline-more", inline)]
2174
- fn size_hint(&self) -> (usize, Option<usize>) {
2175
- self.iter.size_hint()
2176
- }
2177
-
2178
- #[cfg_attr(feature = "inline-more", inline)]
2179
- fn fold<B, F>(self, init: B, f: F) -> B
2180
- where
2181
- Self: Sized,
2182
- F: FnMut(B, Self::Item) -> B,
2183
- {
2184
- self.iter.fold(init, f)
2185
- }
2186
- }
2187
-
2188
- /// A view into a single entry in a set, which may either be vacant or occupied.
2189
- ///
2190
- /// This `enum` is constructed from the [`entry`] method on [`HashSet`].
2191
- ///
2192
- /// [`HashSet`]: struct.HashSet.html
2193
- /// [`entry`]: struct.HashSet.html#method.entry
2194
- ///
2195
- /// # Examples
2196
- ///
2197
- /// ```
2198
- /// use hashbrown::hash_set::{Entry, HashSet, OccupiedEntry};
2199
- ///
2200
- /// let mut set = HashSet::new();
2201
- /// set.extend(["a", "b", "c"]);
2202
- /// assert_eq!(set.len(), 3);
2203
- ///
2204
- /// // Existing value (insert)
2205
- /// let entry: Entry<_, _> = set.entry("a");
2206
- /// let _raw_o: OccupiedEntry<_, _> = entry.insert();
2207
- /// assert_eq!(set.len(), 3);
2208
- /// // Nonexistent value (insert)
2209
- /// set.entry("d").insert();
2210
- ///
2211
- /// // Existing value (or_insert)
2212
- /// set.entry("b").or_insert();
2213
- /// // Nonexistent value (or_insert)
2214
- /// set.entry("e").or_insert();
2215
- ///
2216
- /// println!("Our HashSet: {:?}", set);
2217
- ///
2218
- /// let mut vec: Vec<_> = set.iter().copied().collect();
2219
- /// // The `Iter` iterator produces items in arbitrary order, so the
2220
- /// // items must be sorted to test them against a sorted array.
2221
- /// vec.sort_unstable();
2222
- /// assert_eq!(vec, ["a", "b", "c", "d", "e"]);
2223
- /// ```
2224
- pub enum Entry<'a, T, S, A = Global>
2225
- where
2226
- A: Allocator,
2227
- {
2228
- /// An occupied entry.
2229
- ///
2230
- /// # Examples
2231
- ///
2232
- /// ```
2233
- /// use hashbrown::hash_set::{Entry, HashSet};
2234
- /// let mut set: HashSet<_> = ["a", "b"].into();
2235
- ///
2236
- /// match set.entry("a") {
2237
- /// Entry::Vacant(_) => unreachable!(),
2238
- /// Entry::Occupied(_) => { }
2239
- /// }
2240
- /// ```
2241
- Occupied(OccupiedEntry<'a, T, S, A>),
2242
-
2243
- /// A vacant entry.
2244
- ///
2245
- /// # Examples
2246
- ///
2247
- /// ```
2248
- /// use hashbrown::hash_set::{Entry, HashSet};
2249
- /// let mut set: HashSet<&str> = HashSet::new();
2250
- ///
2251
- /// match set.entry("a") {
2252
- /// Entry::Occupied(_) => unreachable!(),
2253
- /// Entry::Vacant(_) => { }
2254
- /// }
2255
- /// ```
2256
- Vacant(VacantEntry<'a, T, S, A>),
2257
- }
2258
-
2259
- impl<T: fmt::Debug, S, A: Allocator> fmt::Debug for Entry<'_, T, S, A> {
2260
- fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
2261
- match *self {
2262
- Entry::Vacant(ref v) => f.debug_tuple("Entry").field(v).finish(),
2263
- Entry::Occupied(ref o) => f.debug_tuple("Entry").field(o).finish(),
2264
- }
2265
- }
2266
- }
2267
-
2268
- /// A view into an occupied entry in a `HashSet`.
2269
- /// It is part of the [`Entry`] enum.
2270
- ///
2271
- /// [`Entry`]: enum.Entry.html
2272
- ///
2273
- /// # Examples
2274
- ///
2275
- /// ```
2276
- /// use hashbrown::hash_set::{Entry, HashSet, OccupiedEntry};
2277
- ///
2278
- /// let mut set = HashSet::new();
2279
- /// set.extend(["a", "b", "c"]);
2280
- ///
2281
- /// let _entry_o: OccupiedEntry<_, _> = set.entry("a").insert();
2282
- /// assert_eq!(set.len(), 3);
2283
- ///
2284
- /// // Existing key
2285
- /// match set.entry("a") {
2286
- /// Entry::Vacant(_) => unreachable!(),
2287
- /// Entry::Occupied(view) => {
2288
- /// assert_eq!(view.get(), &"a");
2289
- /// }
2290
- /// }
2291
- ///
2292
- /// assert_eq!(set.len(), 3);
2293
- ///
2294
- /// // Existing key (take)
2295
- /// match set.entry("c") {
2296
- /// Entry::Vacant(_) => unreachable!(),
2297
- /// Entry::Occupied(view) => {
2298
- /// assert_eq!(view.remove(), "c");
2299
- /// }
2300
- /// }
2301
- /// assert_eq!(set.get(&"c"), None);
2302
- /// assert_eq!(set.len(), 2);
2303
- /// ```
2304
- pub struct OccupiedEntry<'a, T, S, A: Allocator = Global> {
2305
- inner: map::OccupiedEntry<'a, T, (), S, A>,
2306
- }
2307
-
2308
- impl<T: fmt::Debug, S, A: Allocator> fmt::Debug for OccupiedEntry<'_, T, S, A> {
2309
- fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
2310
- f.debug_struct("OccupiedEntry")
2311
- .field("value", self.get())
2312
- .finish()
2313
- }
2314
- }
2315
-
2316
- /// A view into a vacant entry in a `HashSet`.
2317
- /// It is part of the [`Entry`] enum.
2318
- ///
2319
- /// [`Entry`]: enum.Entry.html
2320
- ///
2321
- /// # Examples
2322
- ///
2323
- /// ```
2324
- /// use hashbrown::hash_set::{Entry, HashSet, VacantEntry};
2325
- ///
2326
- /// let mut set = HashSet::<&str>::new();
2327
- ///
2328
- /// let entry_v: VacantEntry<_, _> = match set.entry("a") {
2329
- /// Entry::Vacant(view) => view,
2330
- /// Entry::Occupied(_) => unreachable!(),
2331
- /// };
2332
- /// entry_v.insert();
2333
- /// assert!(set.contains("a") && set.len() == 1);
2334
- ///
2335
- /// // Nonexistent key (insert)
2336
- /// match set.entry("b") {
2337
- /// Entry::Vacant(view) => { view.insert(); },
2338
- /// Entry::Occupied(_) => unreachable!(),
2339
- /// }
2340
- /// assert!(set.contains("b") && set.len() == 2);
2341
- /// ```
2342
- pub struct VacantEntry<'a, T, S, A: Allocator = Global> {
2343
- inner: map::VacantEntry<'a, T, (), S, A>,
2344
- }
2345
-
2346
- impl<T: fmt::Debug, S, A: Allocator> fmt::Debug for VacantEntry<'_, T, S, A> {
2347
- fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
2348
- f.debug_tuple("VacantEntry").field(self.get()).finish()
2349
- }
2350
- }
2351
-
2352
- impl<'a, T, S, A: Allocator> Entry<'a, T, S, A> {
2353
- /// Sets the value of the entry, and returns an `OccupiedEntry`.
2354
- ///
2355
- /// # Examples
2356
- ///
2357
- /// ```
2358
- /// use hashbrown::HashSet;
2359
- ///
2360
- /// let mut set: HashSet<&str> = HashSet::new();
2361
- /// let entry = set.entry("horseyland").insert();
2362
- ///
2363
- /// assert_eq!(entry.get(), &"horseyland");
2364
- /// ```
2365
- #[cfg_attr(feature = "inline-more", inline)]
2366
- pub fn insert(self) -> OccupiedEntry<'a, T, S, A>
2367
- where
2368
- T: Hash,
2369
- S: BuildHasher,
2370
- {
2371
- match self {
2372
- Entry::Occupied(entry) => entry,
2373
- Entry::Vacant(entry) => entry.insert(),
2374
- }
2375
- }
2376
-
2377
- /// Ensures a value is in the entry by inserting if it was vacant.
2378
- ///
2379
- /// # Examples
2380
- ///
2381
- /// ```
2382
- /// use hashbrown::HashSet;
2383
- ///
2384
- /// let mut set: HashSet<&str> = HashSet::new();
2385
- ///
2386
- /// // nonexistent key
2387
- /// set.entry("poneyland").or_insert();
2388
- /// assert!(set.contains("poneyland"));
2389
- ///
2390
- /// // existing key
2391
- /// set.entry("poneyland").or_insert();
2392
- /// assert!(set.contains("poneyland"));
2393
- /// assert_eq!(set.len(), 1);
2394
- /// ```
2395
- #[cfg_attr(feature = "inline-more", inline)]
2396
- pub fn or_insert(self)
2397
- where
2398
- T: Hash,
2399
- S: BuildHasher,
2400
- {
2401
- if let Entry::Vacant(entry) = self {
2402
- entry.insert();
2403
- }
2404
- }
2405
-
2406
- /// Returns a reference to this entry's value.
2407
- ///
2408
- /// # Examples
2409
- ///
2410
- /// ```
2411
- /// use hashbrown::HashSet;
2412
- ///
2413
- /// let mut set: HashSet<&str> = HashSet::new();
2414
- /// set.entry("poneyland").or_insert();
2415
- /// // existing key
2416
- /// assert_eq!(set.entry("poneyland").get(), &"poneyland");
2417
- /// // nonexistent key
2418
- /// assert_eq!(set.entry("horseland").get(), &"horseland");
2419
- /// ```
2420
- #[cfg_attr(feature = "inline-more", inline)]
2421
- pub fn get(&self) -> &T {
2422
- match *self {
2423
- Entry::Occupied(ref entry) => entry.get(),
2424
- Entry::Vacant(ref entry) => entry.get(),
2425
- }
2426
- }
2427
- }
2428
-
2429
- impl<T, S, A: Allocator> OccupiedEntry<'_, T, S, A> {
2430
- /// Gets a reference to the value in the entry.
2431
- ///
2432
- /// # Examples
2433
- ///
2434
- /// ```
2435
- /// use hashbrown::hash_set::{Entry, HashSet};
2436
- ///
2437
- /// let mut set: HashSet<&str> = HashSet::new();
2438
- /// set.entry("poneyland").or_insert();
2439
- ///
2440
- /// match set.entry("poneyland") {
2441
- /// Entry::Vacant(_) => panic!(),
2442
- /// Entry::Occupied(entry) => assert_eq!(entry.get(), &"poneyland"),
2443
- /// }
2444
- /// ```
2445
- #[cfg_attr(feature = "inline-more", inline)]
2446
- pub fn get(&self) -> &T {
2447
- self.inner.key()
2448
- }
2449
-
2450
- /// Takes the value out of the entry, and returns it.
2451
- /// Keeps the allocated memory for reuse.
2452
- ///
2453
- /// # Examples
2454
- ///
2455
- /// ```
2456
- /// use hashbrown::HashSet;
2457
- /// use hashbrown::hash_set::Entry;
2458
- ///
2459
- /// let mut set: HashSet<&str> = HashSet::new();
2460
- /// // The set is empty
2461
- /// assert!(set.is_empty() && set.capacity() == 0);
2462
- ///
2463
- /// set.entry("poneyland").or_insert();
2464
- /// let capacity_before_remove = set.capacity();
2465
- ///
2466
- /// if let Entry::Occupied(o) = set.entry("poneyland") {
2467
- /// assert_eq!(o.remove(), "poneyland");
2468
- /// }
2469
- ///
2470
- /// assert_eq!(set.contains("poneyland"), false);
2471
- /// // Now set hold none elements but capacity is equal to the old one
2472
- /// assert!(set.len() == 0 && set.capacity() == capacity_before_remove);
2473
- /// ```
2474
- #[cfg_attr(feature = "inline-more", inline)]
2475
- pub fn remove(self) -> T {
2476
- self.inner.remove_entry().0
2477
- }
2478
- }
2479
-
2480
- impl<'a, T, S, A: Allocator> VacantEntry<'a, T, S, A> {
2481
- /// Gets a reference to the value that would be used when inserting
2482
- /// through the `VacantEntry`.
2483
- ///
2484
- /// # Examples
2485
- ///
2486
- /// ```
2487
- /// use hashbrown::HashSet;
2488
- ///
2489
- /// let mut set: HashSet<&str> = HashSet::new();
2490
- /// assert_eq!(set.entry("poneyland").get(), &"poneyland");
2491
- /// ```
2492
- #[cfg_attr(feature = "inline-more", inline)]
2493
- pub fn get(&self) -> &T {
2494
- self.inner.key()
2495
- }
2496
-
2497
- /// Take ownership of the value.
2498
- ///
2499
- /// # Examples
2500
- ///
2501
- /// ```
2502
- /// use hashbrown::hash_set::{Entry, HashSet};
2503
- ///
2504
- /// let mut set: HashSet<&str> = HashSet::new();
2505
- ///
2506
- /// match set.entry("poneyland") {
2507
- /// Entry::Occupied(_) => panic!(),
2508
- /// Entry::Vacant(v) => assert_eq!(v.into_value(), "poneyland"),
2509
- /// }
2510
- /// ```
2511
- #[cfg_attr(feature = "inline-more", inline)]
2512
- pub fn into_value(self) -> T {
2513
- self.inner.into_key()
2514
- }
2515
-
2516
- /// Sets the value of the entry with the `VacantEntry`'s value.
2517
- ///
2518
- /// # Examples
2519
- ///
2520
- /// ```
2521
- /// use hashbrown::HashSet;
2522
- /// use hashbrown::hash_set::Entry;
2523
- ///
2524
- /// let mut set: HashSet<&str> = HashSet::new();
2525
- ///
2526
- /// if let Entry::Vacant(o) = set.entry("poneyland") {
2527
- /// o.insert();
2528
- /// }
2529
- /// assert!(set.contains("poneyland"));
2530
- /// ```
2531
- #[cfg_attr(feature = "inline-more", inline)]
2532
- pub fn insert(self) -> OccupiedEntry<'a, T, S, A>
2533
- where
2534
- T: Hash,
2535
- S: BuildHasher,
2536
- {
2537
- OccupiedEntry {
2538
- inner: self.inner.insert_entry(()),
2539
- }
2540
- }
2541
- }
2542
-
2543
- #[allow(dead_code)]
2544
- fn assert_covariance() {
2545
- fn set<'new>(v: HashSet<&'static str>) -> HashSet<&'new str> {
2546
- v
2547
- }
2548
- fn iter<'a, 'new>(v: Iter<'a, &'static str>) -> Iter<'a, &'new str> {
2549
- v
2550
- }
2551
- fn into_iter<'new, A: Allocator>(v: IntoIter<&'static str, A>) -> IntoIter<&'new str, A> {
2552
- v
2553
- }
2554
- fn difference<'a, 'new, A: Allocator>(
2555
- v: Difference<'a, &'static str, DefaultHashBuilder, A>,
2556
- ) -> Difference<'a, &'new str, DefaultHashBuilder, A> {
2557
- v
2558
- }
2559
- fn symmetric_difference<'a, 'new, A: Allocator>(
2560
- v: SymmetricDifference<'a, &'static str, DefaultHashBuilder, A>,
2561
- ) -> SymmetricDifference<'a, &'new str, DefaultHashBuilder, A> {
2562
- v
2563
- }
2564
- fn intersection<'a, 'new, A: Allocator>(
2565
- v: Intersection<'a, &'static str, DefaultHashBuilder, A>,
2566
- ) -> Intersection<'a, &'new str, DefaultHashBuilder, A> {
2567
- v
2568
- }
2569
- fn union<'a, 'new, A: Allocator>(
2570
- v: Union<'a, &'static str, DefaultHashBuilder, A>,
2571
- ) -> Union<'a, &'new str, DefaultHashBuilder, A> {
2572
- v
2573
- }
2574
- fn drain<'new, A: Allocator>(d: Drain<'static, &'static str, A>) -> Drain<'new, &'new str, A> {
2575
- d
2576
- }
2577
- }
2578
-
2579
- #[cfg(test)]
2580
- mod test_set {
2581
- use super::{make_hash, Equivalent, HashSet};
2582
- use crate::DefaultHashBuilder;
2583
- use std::vec::Vec;
2584
-
2585
- #[test]
2586
- fn test_zero_capacities() {
2587
- type HS = HashSet<i32>;
2588
-
2589
- let s = HS::new();
2590
- assert_eq!(s.capacity(), 0);
2591
-
2592
- let s = HS::default();
2593
- assert_eq!(s.capacity(), 0);
2594
-
2595
- let s = HS::with_hasher(DefaultHashBuilder::default());
2596
- assert_eq!(s.capacity(), 0);
2597
-
2598
- let s = HS::with_capacity(0);
2599
- assert_eq!(s.capacity(), 0);
2600
-
2601
- let s = HS::with_capacity_and_hasher(0, DefaultHashBuilder::default());
2602
- assert_eq!(s.capacity(), 0);
2603
-
2604
- let mut s = HS::new();
2605
- s.insert(1);
2606
- s.insert(2);
2607
- s.remove(&1);
2608
- s.remove(&2);
2609
- s.shrink_to_fit();
2610
- assert_eq!(s.capacity(), 0);
2611
-
2612
- let mut s = HS::new();
2613
- s.reserve(0);
2614
- assert_eq!(s.capacity(), 0);
2615
- }
2616
-
2617
- #[test]
2618
- fn test_disjoint() {
2619
- let mut xs = HashSet::new();
2620
- let mut ys = HashSet::new();
2621
- assert!(xs.is_disjoint(&ys));
2622
- assert!(ys.is_disjoint(&xs));
2623
- assert!(xs.insert(5));
2624
- assert!(ys.insert(11));
2625
- assert!(xs.is_disjoint(&ys));
2626
- assert!(ys.is_disjoint(&xs));
2627
- assert!(xs.insert(7));
2628
- assert!(xs.insert(19));
2629
- assert!(xs.insert(4));
2630
- assert!(ys.insert(2));
2631
- assert!(ys.insert(-11));
2632
- assert!(xs.is_disjoint(&ys));
2633
- assert!(ys.is_disjoint(&xs));
2634
- assert!(ys.insert(7));
2635
- assert!(!xs.is_disjoint(&ys));
2636
- assert!(!ys.is_disjoint(&xs));
2637
- }
2638
-
2639
- #[test]
2640
- fn test_subset_and_superset() {
2641
- let mut a = HashSet::new();
2642
- assert!(a.insert(0));
2643
- assert!(a.insert(5));
2644
- assert!(a.insert(11));
2645
- assert!(a.insert(7));
2646
-
2647
- let mut b = HashSet::new();
2648
- assert!(b.insert(0));
2649
- assert!(b.insert(7));
2650
- assert!(b.insert(19));
2651
- assert!(b.insert(250));
2652
- assert!(b.insert(11));
2653
- assert!(b.insert(200));
2654
-
2655
- assert!(!a.is_subset(&b));
2656
- assert!(!a.is_superset(&b));
2657
- assert!(!b.is_subset(&a));
2658
- assert!(!b.is_superset(&a));
2659
-
2660
- assert!(b.insert(5));
2661
-
2662
- assert!(a.is_subset(&b));
2663
- assert!(!a.is_superset(&b));
2664
- assert!(!b.is_subset(&a));
2665
- assert!(b.is_superset(&a));
2666
- }
2667
-
2668
- #[test]
2669
- fn test_iterate() {
2670
- let mut a = HashSet::new();
2671
- for i in 0..32 {
2672
- assert!(a.insert(i));
2673
- }
2674
- let mut observed: u32 = 0;
2675
- for k in &a {
2676
- observed |= 1 << *k;
2677
- }
2678
- assert_eq!(observed, 0xFFFF_FFFF);
2679
- }
2680
-
2681
- #[test]
2682
- fn test_intersection() {
2683
- let mut a = HashSet::new();
2684
- let mut b = HashSet::new();
2685
-
2686
- assert!(a.insert(11));
2687
- assert!(a.insert(1));
2688
- assert!(a.insert(3));
2689
- assert!(a.insert(77));
2690
- assert!(a.insert(103));
2691
- assert!(a.insert(5));
2692
- assert!(a.insert(-5));
2693
-
2694
- assert!(b.insert(2));
2695
- assert!(b.insert(11));
2696
- assert!(b.insert(77));
2697
- assert!(b.insert(-9));
2698
- assert!(b.insert(-42));
2699
- assert!(b.insert(5));
2700
- assert!(b.insert(3));
2701
-
2702
- let mut i = 0;
2703
- let expected = [3, 5, 11, 77];
2704
- for x in a.intersection(&b) {
2705
- assert!(expected.contains(x));
2706
- i += 1;
2707
- }
2708
- assert_eq!(i, expected.len());
2709
- }
2710
-
2711
- #[test]
2712
- fn test_difference() {
2713
- let mut a = HashSet::new();
2714
- let mut b = HashSet::new();
2715
-
2716
- assert!(a.insert(1));
2717
- assert!(a.insert(3));
2718
- assert!(a.insert(5));
2719
- assert!(a.insert(9));
2720
- assert!(a.insert(11));
2721
-
2722
- assert!(b.insert(3));
2723
- assert!(b.insert(9));
2724
-
2725
- let mut i = 0;
2726
- let expected = [1, 5, 11];
2727
- for x in a.difference(&b) {
2728
- assert!(expected.contains(x));
2729
- i += 1;
2730
- }
2731
- assert_eq!(i, expected.len());
2732
- }
2733
-
2734
- #[test]
2735
- fn test_symmetric_difference() {
2736
- let mut a = HashSet::new();
2737
- let mut b = HashSet::new();
2738
-
2739
- assert!(a.insert(1));
2740
- assert!(a.insert(3));
2741
- assert!(a.insert(5));
2742
- assert!(a.insert(9));
2743
- assert!(a.insert(11));
2744
-
2745
- assert!(b.insert(-2));
2746
- assert!(b.insert(3));
2747
- assert!(b.insert(9));
2748
- assert!(b.insert(14));
2749
- assert!(b.insert(22));
2750
-
2751
- let mut i = 0;
2752
- let expected = [-2, 1, 5, 11, 14, 22];
2753
- for x in a.symmetric_difference(&b) {
2754
- assert!(expected.contains(x));
2755
- i += 1;
2756
- }
2757
- assert_eq!(i, expected.len());
2758
- }
2759
-
2760
- #[test]
2761
- fn test_union() {
2762
- let mut a = HashSet::new();
2763
- let mut b = HashSet::new();
2764
-
2765
- assert!(a.insert(1));
2766
- assert!(a.insert(3));
2767
- assert!(a.insert(5));
2768
- assert!(a.insert(9));
2769
- assert!(a.insert(11));
2770
- assert!(a.insert(16));
2771
- assert!(a.insert(19));
2772
- assert!(a.insert(24));
2773
-
2774
- assert!(b.insert(-2));
2775
- assert!(b.insert(1));
2776
- assert!(b.insert(5));
2777
- assert!(b.insert(9));
2778
- assert!(b.insert(13));
2779
- assert!(b.insert(19));
2780
-
2781
- let mut i = 0;
2782
- let expected = [-2, 1, 3, 5, 9, 11, 13, 16, 19, 24];
2783
- for x in a.union(&b) {
2784
- assert!(expected.contains(x));
2785
- i += 1;
2786
- }
2787
- assert_eq!(i, expected.len());
2788
- }
2789
-
2790
- #[test]
2791
- fn test_from_map() {
2792
- let mut a = crate::HashMap::new();
2793
- a.insert(1, ());
2794
- a.insert(2, ());
2795
- a.insert(3, ());
2796
- a.insert(4, ());
2797
-
2798
- let a: HashSet<_> = a.into();
2799
-
2800
- assert_eq!(a.len(), 4);
2801
- assert!(a.contains(&1));
2802
- assert!(a.contains(&2));
2803
- assert!(a.contains(&3));
2804
- assert!(a.contains(&4));
2805
- }
2806
-
2807
- #[test]
2808
- fn test_from_iter() {
2809
- let xs = [1, 2, 2, 3, 4, 5, 6, 7, 8, 9];
2810
-
2811
- let set: HashSet<_> = xs.iter().copied().collect();
2812
-
2813
- for x in &xs {
2814
- assert!(set.contains(x));
2815
- }
2816
-
2817
- assert_eq!(set.iter().len(), xs.len() - 1);
2818
- }
2819
-
2820
- #[test]
2821
- fn test_move_iter() {
2822
- let hs = {
2823
- let mut hs = HashSet::new();
2824
-
2825
- hs.insert('a');
2826
- hs.insert('b');
2827
-
2828
- hs
2829
- };
2830
-
2831
- let v = hs.into_iter().collect::<Vec<char>>();
2832
- assert!(v == ['a', 'b'] || v == ['b', 'a']);
2833
- }
2834
-
2835
- #[test]
2836
- fn test_eq() {
2837
- // These constants once happened to expose a bug in insert().
2838
- // I'm keeping them around to prevent a regression.
2839
- let mut s1 = HashSet::new();
2840
-
2841
- s1.insert(1);
2842
- s1.insert(2);
2843
- s1.insert(3);
2844
-
2845
- let mut s2 = HashSet::new();
2846
-
2847
- s2.insert(1);
2848
- s2.insert(2);
2849
-
2850
- assert!(s1 != s2);
2851
-
2852
- s2.insert(3);
2853
-
2854
- assert_eq!(s1, s2);
2855
- }
2856
-
2857
- #[test]
2858
- fn test_show() {
2859
- let mut set = HashSet::new();
2860
- let empty = HashSet::<i32>::new();
2861
-
2862
- set.insert(1);
2863
- set.insert(2);
2864
-
2865
- let set_str = format!("{set:?}");
2866
-
2867
- assert!(set_str == "{1, 2}" || set_str == "{2, 1}");
2868
- assert_eq!(format!("{empty:?}"), "{}");
2869
- }
2870
-
2871
- #[test]
2872
- fn test_trivial_drain() {
2873
- let mut s = HashSet::<i32>::new();
2874
- for _ in s.drain() {}
2875
- assert!(s.is_empty());
2876
- drop(s);
2877
-
2878
- let mut s = HashSet::<i32>::new();
2879
- drop(s.drain());
2880
- assert!(s.is_empty());
2881
- }
2882
-
2883
- #[test]
2884
- fn test_drain() {
2885
- let mut s: HashSet<_> = (1..100).collect();
2886
-
2887
- // try this a bunch of times to make sure we don't screw up internal state.
2888
- for _ in 0..20 {
2889
- assert_eq!(s.len(), 99);
2890
-
2891
- {
2892
- let mut last_i = 0;
2893
- let mut d = s.drain();
2894
- for (i, x) in d.by_ref().take(50).enumerate() {
2895
- last_i = i;
2896
- assert!(x != 0);
2897
- }
2898
- assert_eq!(last_i, 49);
2899
- }
2900
-
2901
- if !s.is_empty() {
2902
- panic!("s should be empty!");
2903
- }
2904
-
2905
- // reset to try again.
2906
- s.extend(1..100);
2907
- }
2908
- }
2909
-
2910
- #[test]
2911
- fn test_replace() {
2912
- use core::hash;
2913
-
2914
- #[derive(Debug)]
2915
- #[allow(dead_code)]
2916
- struct Foo(&'static str, i32);
2917
-
2918
- impl PartialEq for Foo {
2919
- fn eq(&self, other: &Self) -> bool {
2920
- self.0 == other.0
2921
- }
2922
- }
2923
-
2924
- impl Eq for Foo {}
2925
-
2926
- impl hash::Hash for Foo {
2927
- fn hash<H: hash::Hasher>(&self, h: &mut H) {
2928
- self.0.hash(h);
2929
- }
2930
- }
2931
-
2932
- let mut s = HashSet::new();
2933
- assert_eq!(s.replace(Foo("a", 1)), None);
2934
- assert_eq!(s.len(), 1);
2935
- assert_eq!(s.replace(Foo("a", 2)), Some(Foo("a", 1)));
2936
- assert_eq!(s.len(), 1);
2937
-
2938
- let mut it = s.iter();
2939
- assert_eq!(it.next(), Some(&Foo("a", 2)));
2940
- assert_eq!(it.next(), None);
2941
- }
2942
-
2943
- #[test]
2944
- #[allow(clippy::needless_borrow)]
2945
- fn test_extend_ref() {
2946
- let mut a = HashSet::new();
2947
- a.insert(1);
2948
-
2949
- a.extend([2, 3, 4]);
2950
-
2951
- assert_eq!(a.len(), 4);
2952
- assert!(a.contains(&1));
2953
- assert!(a.contains(&2));
2954
- assert!(a.contains(&3));
2955
- assert!(a.contains(&4));
2956
-
2957
- let mut b = HashSet::new();
2958
- b.insert(5);
2959
- b.insert(6);
2960
-
2961
- a.extend(&b);
2962
-
2963
- assert_eq!(a.len(), 6);
2964
- assert!(a.contains(&1));
2965
- assert!(a.contains(&2));
2966
- assert!(a.contains(&3));
2967
- assert!(a.contains(&4));
2968
- assert!(a.contains(&5));
2969
- assert!(a.contains(&6));
2970
- }
2971
-
2972
- #[test]
2973
- fn test_retain() {
2974
- let xs = [1, 2, 3, 4, 5, 6];
2975
- let mut set: HashSet<i32> = xs.iter().copied().collect();
2976
- set.retain(|&k| k % 2 == 0);
2977
- assert_eq!(set.len(), 3);
2978
- assert!(set.contains(&2));
2979
- assert!(set.contains(&4));
2980
- assert!(set.contains(&6));
2981
- }
2982
-
2983
- #[test]
2984
- fn test_extract_if() {
2985
- {
2986
- let mut set: HashSet<i32> = (0..8).collect();
2987
- let drained = set.extract_if(|&k| k % 2 == 0);
2988
- let mut out = drained.collect::<Vec<_>>();
2989
- out.sort_unstable();
2990
- assert_eq!(vec![0, 2, 4, 6], out);
2991
- assert_eq!(set.len(), 4);
2992
- }
2993
- {
2994
- let mut set: HashSet<i32> = (0..8).collect();
2995
- set.extract_if(|&k| k % 2 == 0).for_each(drop);
2996
- assert_eq!(set.len(), 4, "Removes non-matching items on drop");
2997
- }
2998
- }
2999
-
3000
- #[test]
3001
- fn test_const_with_hasher() {
3002
- use core::hash::BuildHasher;
3003
- use std::collections::hash_map::DefaultHasher;
3004
-
3005
- #[derive(Clone)]
3006
- struct MyHasher;
3007
- impl BuildHasher for MyHasher {
3008
- type Hasher = DefaultHasher;
3009
-
3010
- fn build_hasher(&self) -> DefaultHasher {
3011
- DefaultHasher::new()
3012
- }
3013
- }
3014
-
3015
- const EMPTY_SET: HashSet<u32, MyHasher> = HashSet::with_hasher(MyHasher);
3016
-
3017
- let mut set = EMPTY_SET;
3018
- set.insert(19);
3019
- assert!(set.contains(&19));
3020
- }
3021
-
3022
- #[test]
3023
- fn rehash_in_place() {
3024
- let mut set = HashSet::new();
3025
-
3026
- for i in 0..224 {
3027
- set.insert(i);
3028
- }
3029
-
3030
- assert_eq!(
3031
- set.capacity(),
3032
- 224,
3033
- "The set must be at or close to capacity to trigger a re hashing"
3034
- );
3035
-
3036
- for i in 100..1400 {
3037
- set.remove(&(i - 100));
3038
- set.insert(i);
3039
- }
3040
- }
3041
-
3042
- #[test]
3043
- fn collect() {
3044
- // At the time of writing, this hits the ZST case in from_base_index
3045
- // (and without the `map`, it does not).
3046
- let mut _set: HashSet<_> = (0..3).map(|_| ()).collect();
3047
- }
3048
-
3049
- #[test]
3050
- fn test_allocation_info() {
3051
- assert_eq!(HashSet::<()>::new().allocation_size(), 0);
3052
- assert_eq!(HashSet::<u32>::new().allocation_size(), 0);
3053
- assert!(HashSet::<u32>::with_capacity(1).allocation_size() > core::mem::size_of::<u32>());
3054
- }
3055
-
3056
- #[test]
3057
- fn duplicate_insert() {
3058
- let mut set = HashSet::new();
3059
- set.insert(1);
3060
- set.get_or_insert_with(&1, |_| 1);
3061
- set.get_or_insert_with(&1, |_| 1);
3062
- assert!([1].iter().eq(set.iter()));
3063
- }
3064
-
3065
- #[test]
3066
- #[should_panic]
3067
- fn some_invalid_equivalent() {
3068
- use core::hash::{Hash, Hasher};
3069
- struct Invalid {
3070
- count: u32,
3071
- other: u32,
3072
- }
3073
-
3074
- struct InvalidRef {
3075
- count: u32,
3076
- other: u32,
3077
- }
3078
-
3079
- impl PartialEq for Invalid {
3080
- fn eq(&self, other: &Self) -> bool {
3081
- self.count == other.count && self.other == other.other
3082
- }
3083
- }
3084
- impl Eq for Invalid {}
3085
-
3086
- impl Equivalent<Invalid> for InvalidRef {
3087
- fn equivalent(&self, key: &Invalid) -> bool {
3088
- self.count == key.count && self.other == key.other
3089
- }
3090
- }
3091
- impl Hash for Invalid {
3092
- fn hash<H: Hasher>(&self, state: &mut H) {
3093
- self.count.hash(state);
3094
- }
3095
- }
3096
- impl Hash for InvalidRef {
3097
- fn hash<H: Hasher>(&self, state: &mut H) {
3098
- self.count.hash(state);
3099
- }
3100
- }
3101
- let mut set: HashSet<Invalid> = HashSet::new();
3102
- let key = InvalidRef { count: 1, other: 1 };
3103
- let value = Invalid { count: 1, other: 2 };
3104
- if make_hash(set.hasher(), &key) == make_hash(set.hasher(), &value) {
3105
- set.get_or_insert_with(&key, |_| value);
3106
- }
3107
- }
3108
- }